@smui/common
Advanced tools
Comparing version 5.0.0-beta.0 to 5.0.0-beta.1
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './A.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLAnchorElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLAnchorElement>>, 'use' | 'href'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLAnchorElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | 'href' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -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" /> |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Aside.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Button.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLButtonElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLButtonElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLButtonElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -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 @@ |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -11,3 +12,3 @@ import type Component from './CommonIcon.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<ReturnType<C['getElement']>>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<ReturnType<C['getElement']>>>, 'use' | 'class' | 'on' | 'component'> & Component['$$prop_def']; | ||
} |
@@ -16,5 +16,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<ReturnType<C['getElement']>>>, | ||
keyof Component['$$prop_def'] | ||
'use' | 'class' | 'on' | 'component' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -11,3 +12,3 @@ import type Component from './CommonLabel.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<ReturnType<C['getElement']>>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<ReturnType<C['getElement']>>>, 'use' | 'class' | 'component'> & Component['$$prop_def']; | ||
} |
@@ -16,5 +16,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<ReturnType<C['getElement']>>>, | ||
keyof Component['$$prop_def'] | ||
'use' | 'class' | 'component' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Div.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Em.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Footer.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './H1.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './H2.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './H3.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './H4.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './H5.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './H6.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHeadingElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Header.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Hr.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHRElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHRElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLHRElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLHRElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './I.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Img.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLImageElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLImageElement>>, 'use' | 'alt'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLImageElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | 'alt' | ||
> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Li.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLLIElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLLIElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLLIElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLLIElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Main.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Nav.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './P.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLParagraphElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLParagraphElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLParagraphElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
Component['$$prop_def']; | ||
} |
{ | ||
"name": "@smui/common", | ||
"version": "5.0.0-beta.0", | ||
"version": "5.0.0-beta.1", | ||
"description": "Svelte Material UI - Common", | ||
@@ -19,2 +19,3 @@ "type": "module", | ||
"build": "tsc", | ||
"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", | ||
@@ -40,6 +41,7 @@ "test": "echo \"Error: no test specified\" && exit 1" | ||
"svelte": "^3.35.0", | ||
"svelte2tsx": "^0.4.6", | ||
"tslib": "^2.3.1", | ||
"typescript": "^4.4.2" | ||
}, | ||
"gitHead": "64f517242b78ff75df7865fc80f16d1a5c39bcaf" | ||
"gitHead": "d3dd658904e6955c1e0b3d57a849fb645d93e8a1" | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Section.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Span.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLSpanElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLSpanElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLSpanElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLSpanElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Strong.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Svg.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<SVGSVGElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<SVGSVGElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -11,7 +11,4 @@ import type { SMUIComponent } from './smui.d'; | ||
*/ | ||
$$prop_def: Omit< | ||
Partial<svelte.JSX.HTMLAttributes<SVGSVGElement>>, | ||
keyof Component['$$prop_def'] | ||
> & | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<SVGSVGElement>>, 'use'> & | ||
Component['$$prop_def']; | ||
} |
@@ -0,1 +1,2 @@ | ||
/// <reference types="svelte2tsx/svelte-jsx" /> | ||
import type { SMUIComponent } from './smui.d'; | ||
@@ -10,3 +11,3 @@ import type Component from './Ul.svelte'; | ||
*/ | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLUListElement>>, keyof Component['$$prop_def']> & Component['$$prop_def']; | ||
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLUListElement>>, 'use'> & Component['$$prop_def']; | ||
} |
@@ -13,5 +13,5 @@ import type { SMUIComponent } from './smui.d'; | ||
Partial<svelte.JSX.HTMLAttributes<HTMLUListElement>>, | ||
keyof Component['$$prop_def'] | ||
'use' | ||
> & | ||
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
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
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
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
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
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
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
136222
0
7
1781
+ Addedsvelte2tsx@^0.4.6
+ Addeddedent-js@1.0.1(transitive)
+ Addedlower-case@2.0.2(transitive)
+ Addedno-case@3.0.4(transitive)
+ Addedpascal-case@3.1.2(transitive)
+ Addedsvelte2tsx@0.4.14(transitive)