@smui/paper
Advanced tools
Comparing version 5.0.0-beta.0 to 5.0.0-beta.1
@@ -1,7 +0,2 @@ | ||
declare namespace svelte.JSX { | ||
interface HTMLAttributes<T> {} | ||
} | ||
declare module '*.svelte' { | ||
export { SvelteComponentDev as default } from 'svelte/internal'; | ||
} | ||
/// <reference types="svelte" /> | ||
/// <reference types="svelte2tsx/svelte-jsx" /> |
@@ -6,2 +6,14 @@ # Change Log | ||
# [5.0.0-beta.1](https://github.com/hperrin/svelte-material-ui/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-09-14) | ||
### Bug Fixes | ||
* correctly provide html attributes ([048a11d](https://github.com/hperrin/svelte-material-ui/commit/048a11d0d84707a90a0ccde794b7c31155b71ca9)) | ||
* some type issues and simpler ambient declarations ([44e2cea](https://github.com/hperrin/svelte-material-ui/commit/44e2cea7764733c97e629fa3d2498516cd0756b1)) | ||
# [5.0.0-beta.0](https://github.com/hperrin/svelte-material-ui/compare/v4.2.0...v5.0.0-beta.0) (2021-09-14) | ||
@@ -8,0 +20,0 @@ |
{ | ||
"name": "@smui/paper", | ||
"version": "5.0.0-beta.0", | ||
"version": "5.0.0-beta.1", | ||
"description": "Svelte Material UI - Paper", | ||
@@ -21,2 +21,3 @@ "type": "module", | ||
"build:sass": "sass --no-source-map -I node_modules -I ../../node_modules _style.scss bare.css", | ||
"clean": "git status --ignored -u --porcelain . | grep -v node_modules/ | grep -e '^!! ' | sed 's/^!! packages\\/[a-z-]*\\///g' | tr '\\n' ' ' | xargs rm", | ||
"prepare": "npm run build", | ||
@@ -43,3 +44,4 @@ "test": "echo \"Error: no test specified\" && exit 1" | ||
"@material/typography": "^11.0.0", | ||
"@smui/common": "^5.0.0-beta.0" | ||
"@smui/common": "^5.0.0-beta.1", | ||
"svelte2tsx": "^0.4.6" | ||
}, | ||
@@ -52,3 +54,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "64f517242b78ff75df7865fc80f16d1a5c39bcaf" | ||
"gitHead": "d3dd658904e6955c1e0b3d57a849fb645d93e8a1" | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type Component from './Paper.svelte'; | ||
@@ -9,3 +10,3 @@ export declare class PaperComponentDev extends Component { | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use' | 'class' | 'square' | 'color' | 'elevation' | 'transition'> & Component['$$prop_def']; | ||
} |
@@ -12,5 +12,5 @@ import type Component from './Paper.svelte'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | 'class' | 'square' | 'color' | 'elevation' | 'transition' | ||
> & | ||
Component['$$prop_def']; | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54318
7
531
+ Addedsvelte2tsx@^0.4.6
Updated@smui/common@^5.0.0-beta.1