@smui/paper
Advanced tools
Comparing version 6.0.0-beta.4 to 6.0.0-beta.5
@@ -6,2 +6,14 @@ # Change Log | ||
# [6.0.0-beta.5](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.4...v6.0.0-beta.5) (2021-12-10) | ||
### Features | ||
* new badge component ([65fcd64](https://github.com/hperrin/svelte-material-ui/commit/65fcd6455e6aa0f7ae553e96006c080b4d96d27f)) | ||
* new paper variants, unelevated and outlined ([8091b32](https://github.com/hperrin/svelte-material-ui/commit/8091b325923226ba639d5e69bf16fa3e25b84193)) | ||
# [6.0.0-beta.4](https://github.com/hperrin/svelte-material-ui/compare/v6.0.0-beta.3...v6.0.0-beta.4) (2021-11-25) | ||
@@ -8,0 +20,0 @@ |
@@ -10,3 +10,3 @@ /// <reference types="svelte2tsx/svelte-jsx" /> | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use' | 'class' | 'square' | 'color' | 'elevation' | 'transition'> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use' | 'class' | 'variant' | 'square' | 'color' | 'elevation' | 'transition'> & Component['$$prop_def']; | ||
} |
{ | ||
"name": "@smui/paper", | ||
"version": "6.0.0-beta.4", | ||
"version": "6.0.0-beta.5", | ||
"description": "Svelte Material UI - Paper", | ||
@@ -44,13 +44,13 @@ "type": "module", | ||
"@material/typography": "^13.0.0", | ||
"@smui/common": "^6.0.0-beta.4", | ||
"svelte2tsx": "^0.4.10" | ||
"@smui/common": "^6.0.0-beta.5", | ||
"svelte2tsx": "^0.4.11" | ||
}, | ||
"devDependencies": { | ||
"@tsconfig/svelte": "^2.0.1", | ||
"sass": "^1.43.4", | ||
"sass": "^1.44.0", | ||
"svelte-strip": "^1.0.0", | ||
"tslib": "^2.3.1", | ||
"typescript": "~4.4.4" | ||
"typescript": "^4.5.2" | ||
}, | ||
"gitHead": "469c6c9253b63f9152a38f3ee2f2ff465103aa44" | ||
"gitHead": "fa3f93de26f912d220701200b1025c87b80b7892" | ||
} |
@@ -25,2 +25,3 @@ # Svelte Material UI - Paper | ||
- `class`: `''` - A CSS class string. | ||
- `variant`: `"raised"` - The paper's style variant. ('raised', 'unelevated', or 'outlined') | ||
- `square`: `false` - Whether the component has square or rounded corners. | ||
@@ -27,0 +28,0 @@ - `color`: `'default'` - The component's color. ('primary', 'secondary', 'default', or a custom color string defined with SASS) |
@@ -12,5 +12,11 @@ import type Component from './Paper.svelte'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, | ||
'use' | 'class' | 'square' | 'color' | 'elevation' | 'transition' | ||
| 'use' | ||
| 'class' | ||
| 'variant' | ||
| 'square' | ||
| 'color' | ||
| 'elevation' | ||
| 'transition' | ||
> & | ||
Component['$$prop_def']; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
64628
545
54
Updated@smui/common@^6.0.0-beta.5
Updatedsvelte2tsx@^0.4.11