vitam-uikit-apps 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/components/Accordion/Accordion.vue.d.ts +31 -6
- package/dist/types/components/Avatar/Avatar.vue.d.ts +29 -2
- package/dist/types/components/Badge/Badge.vue.d.ts +29 -2
- package/dist/types/components/Breadcrumb/Breadcrumb.vue.d.ts +28 -5
- package/dist/types/components/BurgerButton/BurgerButton.vue.d.ts +34 -5
- package/dist/types/components/Button/Button.vue.d.ts +36 -5
- package/dist/types/components/Card/Card.vue.d.ts +29 -2
- package/dist/types/components/Checkbox/Checkbox.vue.d.ts +38 -7
- package/dist/types/components/EmptyState/EmptyState.vue.d.ts +23 -2
- package/dist/types/components/Footer/Footer.vue.d.ts +25 -2
- package/dist/types/components/Input/Input.vue.d.ts +40 -9
- package/dist/types/components/Label/Label.vue.d.ts +29 -2
- package/dist/types/components/Modal/Modal.vue.d.ts +34 -5
- package/dist/types/components/NavBar/NavBar.vue.d.ts +28 -5
- package/dist/types/components/NavMenu/NavMenu.vue.d.ts +31 -6
- package/dist/types/components/Overlay/Overlay.vue.d.ts +36 -5
- package/dist/types/components/OverlayLoader/OverlayLoader.vue.d.ts +31 -2
- package/dist/types/components/Pagination/Pagination.vue.d.ts +31 -6
- package/dist/types/components/Pill/Pill.vue.d.ts +25 -2
- package/dist/types/components/RadioGroup/RadioGroup.vue.d.ts +34 -7
- package/dist/types/components/Selector/Selector.vue.d.ts +36 -7
- package/dist/types/components/Switch/Switch.vue.d.ts +34 -7
- package/dist/types/components/Table/Table.vue.d.ts +33 -6
- package/dist/types/components/Tabs/Tabs.vue.d.ts +30 -7
- package/dist/types/components/TextArea/TextArea.vue.d.ts +42 -9
- package/dist/types/components/TitleCard/TitleCard.vue.d.ts +27 -2
- package/dist/types/components/Toast/Toast.vue.d.ts +31 -6
- package/dist/types/components/Tooltip/Tooltip.vue.d.ts +31 -2
- package/dist/vitam-uikit-apps.cjs.js +1 -1
- package/dist/vitam-uikit-apps.cjs.js.map +1 -1
- package/dist/vitam-uikit-apps.css +1 -1
- package/dist/vitam-uikit-apps.esm.js +981 -981
- package/dist/vitam-uikit-apps.esm.js.map +1 -1
- package/package.json +20 -20
|
@@ -18,27 +18,52 @@ declare var __VLS_2: `item-${string}`, __VLS_3: {
|
|
|
18
18
|
type __VLS_Slots = {} & {
|
|
19
19
|
[K in NonNullable<typeof __VLS_2>]?: (props: typeof __VLS_3) => any;
|
|
20
20
|
};
|
|
21
|
-
declare const __VLS_component: import("vue").DefineComponent<Props
|
|
22
|
-
|
|
21
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
22
|
+
multiple: boolean;
|
|
23
|
+
modelValue: () => never[];
|
|
24
|
+
variant: string;
|
|
25
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
+
"update:modelValue": (value: string[]) => void;
|
|
23
27
|
toggle: (payload: {
|
|
24
28
|
id: string;
|
|
25
29
|
open: boolean;
|
|
26
|
-
}) =>
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<Props
|
|
30
|
+
}) => void;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
32
|
+
multiple: boolean;
|
|
33
|
+
modelValue: () => never[];
|
|
34
|
+
variant: string;
|
|
35
|
+
}>>> & {
|
|
28
36
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
29
37
|
onToggle?: ((payload: {
|
|
30
38
|
id: string;
|
|
31
39
|
open: boolean;
|
|
32
40
|
}) => any) | undefined;
|
|
33
|
-
}
|
|
41
|
+
}, {
|
|
34
42
|
variant: StateVariant;
|
|
35
43
|
modelValue: string[];
|
|
36
44
|
multiple: boolean;
|
|
37
|
-
}, {}
|
|
45
|
+
}, {}>;
|
|
38
46
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
39
47
|
export default _default;
|
|
48
|
+
type __VLS_WithDefaults<P, D> = {
|
|
49
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
50
|
+
default: D[K];
|
|
51
|
+
}> : P[K];
|
|
52
|
+
};
|
|
53
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
+
type __VLS_TypePropsToOption<T> = {
|
|
55
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
|
+
} : {
|
|
58
|
+
type: import('vue').PropType<T[K]>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
40
62
|
type __VLS_WithSlots<T, S> = T & {
|
|
41
63
|
new (): {
|
|
42
64
|
$slots: S;
|
|
43
65
|
};
|
|
44
66
|
};
|
|
67
|
+
type __VLS_PrettifyLocal<T> = {
|
|
68
|
+
[K in keyof T]: T[K];
|
|
69
|
+
} & {};
|
|
@@ -9,10 +9,37 @@ interface Props {
|
|
|
9
9
|
variant?: StateVariant;
|
|
10
10
|
decorative?: boolean;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<
|
|
12
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
13
|
+
size: string;
|
|
14
|
+
shape: string;
|
|
15
|
+
variant: string;
|
|
16
|
+
decorative: boolean;
|
|
17
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
|
+
size: string;
|
|
19
|
+
shape: string;
|
|
20
|
+
variant: string;
|
|
21
|
+
decorative: boolean;
|
|
22
|
+
}>>>, {
|
|
13
23
|
variant: StateVariant;
|
|
14
24
|
size: "xs" | "sm" | "md" | "lg";
|
|
15
25
|
decorative: boolean;
|
|
16
26
|
shape: "circle" | "square";
|
|
17
|
-
}, {}
|
|
27
|
+
}, {}>;
|
|
18
28
|
export default _default;
|
|
29
|
+
type __VLS_WithDefaults<P, D> = {
|
|
30
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
31
|
+
default: D[K];
|
|
32
|
+
}> : P[K];
|
|
33
|
+
};
|
|
34
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
35
|
+
type __VLS_TypePropsToOption<T> = {
|
|
36
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
37
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
38
|
+
} : {
|
|
39
|
+
type: import('vue').PropType<T[K]>;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
type __VLS_PrettifyLocal<T> = {
|
|
44
|
+
[K in keyof T]: T[K];
|
|
45
|
+
} & {};
|
|
@@ -10,10 +10,37 @@ interface Props {
|
|
|
10
10
|
decorative?: boolean;
|
|
11
11
|
ariaLabel?: string;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: import("vue").DefineComponent<
|
|
13
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
14
|
+
max: number;
|
|
15
|
+
size: string;
|
|
16
|
+
variant: string;
|
|
17
|
+
decorative: boolean;
|
|
18
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
19
|
+
max: number;
|
|
20
|
+
size: string;
|
|
21
|
+
variant: string;
|
|
22
|
+
decorative: boolean;
|
|
23
|
+
}>>>, {
|
|
14
24
|
variant: StateVariant;
|
|
15
25
|
size: BadgeSize;
|
|
16
26
|
max: number;
|
|
17
27
|
decorative: boolean;
|
|
18
|
-
}, {}
|
|
28
|
+
}, {}>;
|
|
19
29
|
export default _default;
|
|
30
|
+
type __VLS_WithDefaults<P, D> = {
|
|
31
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
32
|
+
default: D[K];
|
|
33
|
+
}> : P[K];
|
|
34
|
+
};
|
|
35
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
36
|
+
type __VLS_TypePropsToOption<T> = {
|
|
37
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
38
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
39
|
+
} : {
|
|
40
|
+
type: import('vue').PropType<T[K]>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
type __VLS_PrettifyLocal<T> = {
|
|
45
|
+
[K in keyof T]: T[K];
|
|
46
|
+
} & {};
|
|
@@ -10,18 +10,41 @@ interface Props {
|
|
|
10
10
|
separator?: string;
|
|
11
11
|
variant?: StateVariant;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: import("vue").DefineComponent<Props
|
|
13
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
14
|
+
separator: string;
|
|
15
|
+
variant: string;
|
|
16
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
17
|
navigate: (payload: {
|
|
15
18
|
value?: string;
|
|
16
19
|
href?: string;
|
|
17
|
-
}) =>
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<Props
|
|
20
|
+
}) => void;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
22
|
+
separator: string;
|
|
23
|
+
variant: string;
|
|
24
|
+
}>>> & {
|
|
19
25
|
onNavigate?: ((payload: {
|
|
20
26
|
value?: string;
|
|
21
27
|
href?: string;
|
|
22
28
|
}) => any) | undefined;
|
|
23
|
-
}
|
|
29
|
+
}, {
|
|
24
30
|
variant: StateVariant;
|
|
25
31
|
separator: string;
|
|
26
|
-
}, {}
|
|
32
|
+
}, {}>;
|
|
27
33
|
export default _default;
|
|
34
|
+
type __VLS_WithDefaults<P, D> = {
|
|
35
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
36
|
+
default: D[K];
|
|
37
|
+
}> : P[K];
|
|
38
|
+
};
|
|
39
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
40
|
+
type __VLS_TypePropsToOption<T> = {
|
|
41
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
42
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
43
|
+
} : {
|
|
44
|
+
type: import('vue').PropType<T[K]>;
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
type __VLS_PrettifyLocal<T> = {
|
|
49
|
+
[K in keyof T]: T[K];
|
|
50
|
+
} & {};
|
|
@@ -9,15 +9,44 @@ interface Props {
|
|
|
9
9
|
closedIconSrc: SvgIconSrc;
|
|
10
10
|
ariaControls?: string;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<Props
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
13
|
+
open: boolean;
|
|
14
|
+
labelOpen: string;
|
|
15
|
+
labelClose: string;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
variant: string;
|
|
18
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
toggle: (nextState: boolean) => void;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
21
|
+
open: boolean;
|
|
22
|
+
labelOpen: string;
|
|
23
|
+
labelClose: string;
|
|
24
|
+
disabled: boolean;
|
|
25
|
+
variant: string;
|
|
26
|
+
}>>> & {
|
|
15
27
|
onToggle?: ((nextState: boolean) => any) | undefined;
|
|
16
|
-
}
|
|
28
|
+
}, {
|
|
17
29
|
variant: StateVariant;
|
|
18
30
|
disabled: boolean;
|
|
19
31
|
open: boolean;
|
|
20
32
|
labelOpen: string;
|
|
21
33
|
labelClose: string;
|
|
22
|
-
}, {}
|
|
34
|
+
}, {}>;
|
|
23
35
|
export default _default;
|
|
36
|
+
type __VLS_WithDefaults<P, D> = {
|
|
37
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
38
|
+
default: D[K];
|
|
39
|
+
}> : P[K];
|
|
40
|
+
};
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
|
+
} : {
|
|
46
|
+
type: import('vue').PropType<T[K]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
type __VLS_PrettifyLocal<T> = {
|
|
51
|
+
[K in keyof T]: T[K];
|
|
52
|
+
} & {};
|
|
@@ -13,22 +13,53 @@ declare var __VLS_1: {};
|
|
|
13
13
|
type __VLS_Slots = {} & {
|
|
14
14
|
default?: (props: typeof __VLS_1) => any;
|
|
15
15
|
};
|
|
16
|
-
declare const __VLS_component: import("vue").DefineComponent<Props
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
17
|
+
variant: string;
|
|
18
|
+
size: string;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
loading: boolean;
|
|
21
|
+
type: string;
|
|
22
|
+
fullWidth: boolean;
|
|
23
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
click: (event: MouseEvent) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
26
|
+
variant: string;
|
|
27
|
+
size: string;
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
loading: boolean;
|
|
30
|
+
type: string;
|
|
31
|
+
fullWidth: boolean;
|
|
32
|
+
}>>> & {
|
|
19
33
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
20
|
-
}
|
|
34
|
+
}, {
|
|
21
35
|
variant: StateVariant;
|
|
22
36
|
size: SizeToken;
|
|
23
37
|
disabled: boolean;
|
|
24
38
|
loading: boolean;
|
|
25
39
|
type: "button" | "submit" | "reset";
|
|
26
40
|
fullWidth: boolean;
|
|
27
|
-
}, {}
|
|
41
|
+
}, {}>;
|
|
28
42
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
29
43
|
export default _default;
|
|
44
|
+
type __VLS_WithDefaults<P, D> = {
|
|
45
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
46
|
+
default: D[K];
|
|
47
|
+
}> : P[K];
|
|
48
|
+
};
|
|
49
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
50
|
+
type __VLS_TypePropsToOption<T> = {
|
|
51
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
52
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
53
|
+
} : {
|
|
54
|
+
type: import('vue').PropType<T[K]>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
30
58
|
type __VLS_WithSlots<T, S> = T & {
|
|
31
59
|
new (): {
|
|
32
60
|
$slots: S;
|
|
33
61
|
};
|
|
34
62
|
};
|
|
63
|
+
type __VLS_PrettifyLocal<T> = {
|
|
64
|
+
[K in keyof T]: T[K];
|
|
65
|
+
} & {};
|
|
@@ -15,16 +15,43 @@ type __VLS_Slots = {} & {
|
|
|
15
15
|
} & {
|
|
16
16
|
footer?: (props: typeof __VLS_5) => any;
|
|
17
17
|
};
|
|
18
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
18
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
19
|
+
variant: string;
|
|
20
|
+
surface: string;
|
|
21
|
+
padding: string;
|
|
22
|
+
interactive: boolean;
|
|
23
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
24
|
+
variant: string;
|
|
25
|
+
surface: string;
|
|
26
|
+
padding: string;
|
|
27
|
+
interactive: boolean;
|
|
28
|
+
}>>>, {
|
|
19
29
|
variant: StateVariant;
|
|
20
30
|
surface: CardSurface;
|
|
21
31
|
padding: CardPadding;
|
|
22
32
|
interactive: boolean;
|
|
23
|
-
}, {}
|
|
33
|
+
}, {}>;
|
|
24
34
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
35
|
export default _default;
|
|
36
|
+
type __VLS_WithDefaults<P, D> = {
|
|
37
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
38
|
+
default: D[K];
|
|
39
|
+
}> : P[K];
|
|
40
|
+
};
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToOption<T> = {
|
|
43
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
44
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
45
|
+
} : {
|
|
46
|
+
type: import('vue').PropType<T[K]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
26
50
|
type __VLS_WithSlots<T, S> = T & {
|
|
27
51
|
new (): {
|
|
28
52
|
$slots: S;
|
|
29
53
|
};
|
|
30
54
|
};
|
|
55
|
+
type __VLS_PrettifyLocal<T> = {
|
|
56
|
+
[K in keyof T]: T[K];
|
|
57
|
+
} & {};
|
|
@@ -11,18 +11,49 @@ interface Props {
|
|
|
11
11
|
variant?: StateVariant;
|
|
12
12
|
id?: string;
|
|
13
13
|
}
|
|
14
|
-
declare const _default: import("vue").DefineComponent<Props
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
15
|
+
modelValue: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
required: boolean;
|
|
18
|
+
indeterminate: boolean;
|
|
19
|
+
size: string;
|
|
20
|
+
variant: string;
|
|
21
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (value: boolean) => void;
|
|
23
|
+
change: (value: boolean) => void;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
25
|
+
modelValue: boolean;
|
|
26
|
+
disabled: boolean;
|
|
27
|
+
required: boolean;
|
|
28
|
+
indeterminate: boolean;
|
|
29
|
+
size: string;
|
|
30
|
+
variant: string;
|
|
31
|
+
}>>> & {
|
|
19
32
|
onChange?: ((value: boolean) => any) | undefined;
|
|
20
|
-
|
|
33
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
34
|
+
}, {
|
|
21
35
|
variant: StateVariant;
|
|
22
36
|
size: CheckboxSize;
|
|
23
37
|
disabled: boolean;
|
|
24
38
|
modelValue: boolean;
|
|
25
39
|
required: boolean;
|
|
26
40
|
indeterminate: boolean;
|
|
27
|
-
}, {}
|
|
41
|
+
}, {}>;
|
|
28
42
|
export default _default;
|
|
43
|
+
type __VLS_WithDefaults<P, D> = {
|
|
44
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
45
|
+
default: D[K];
|
|
46
|
+
}> : P[K];
|
|
47
|
+
};
|
|
48
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
|
+
type __VLS_TypePropsToOption<T> = {
|
|
50
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
51
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
52
|
+
} : {
|
|
53
|
+
type: import('vue').PropType<T[K]>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
type __VLS_PrettifyLocal<T> = {
|
|
58
|
+
[K in keyof T]: T[K];
|
|
59
|
+
} & {};
|
|
@@ -9,13 +9,34 @@ declare var __VLS_1: {};
|
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
10
|
actions?: (props: typeof __VLS_1) => any;
|
|
11
11
|
};
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
13
|
+
variant: string;
|
|
14
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
15
|
+
variant: string;
|
|
16
|
+
}>>>, {
|
|
13
17
|
variant: StateVariant;
|
|
14
|
-
}, {}
|
|
18
|
+
}, {}>;
|
|
15
19
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
20
|
export default _default;
|
|
21
|
+
type __VLS_WithDefaults<P, D> = {
|
|
22
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
23
|
+
default: D[K];
|
|
24
|
+
}> : P[K];
|
|
25
|
+
};
|
|
26
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
+
type __VLS_TypePropsToOption<T> = {
|
|
28
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
+
} : {
|
|
31
|
+
type: import('vue').PropType<T[K]>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
type __VLS_WithSlots<T, S> = T & {
|
|
18
36
|
new (): {
|
|
19
37
|
$slots: S;
|
|
20
38
|
};
|
|
21
39
|
};
|
|
40
|
+
type __VLS_PrettifyLocal<T> = {
|
|
41
|
+
[K in keyof T]: T[K];
|
|
42
|
+
} & {};
|
|
@@ -16,14 +16,37 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
} & {
|
|
17
17
|
right?: (props: typeof __VLS_3) => any;
|
|
18
18
|
};
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
20
|
+
links: () => never[];
|
|
21
|
+
compact: boolean;
|
|
22
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
23
|
+
links: () => never[];
|
|
24
|
+
compact: boolean;
|
|
25
|
+
}>>>, {
|
|
20
26
|
links: FooterLink[];
|
|
21
27
|
compact: boolean;
|
|
22
|
-
}, {}
|
|
28
|
+
}, {}>;
|
|
23
29
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
24
30
|
export default _default;
|
|
31
|
+
type __VLS_WithDefaults<P, D> = {
|
|
32
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
33
|
+
default: D[K];
|
|
34
|
+
}> : P[K];
|
|
35
|
+
};
|
|
36
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
+
type __VLS_TypePropsToOption<T> = {
|
|
38
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
+
} : {
|
|
41
|
+
type: import('vue').PropType<T[K]>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
25
45
|
type __VLS_WithSlots<T, S> = T & {
|
|
26
46
|
new (): {
|
|
27
47
|
$slots: S;
|
|
28
48
|
};
|
|
29
49
|
};
|
|
50
|
+
type __VLS_PrettifyLocal<T> = {
|
|
51
|
+
[K in keyof T]: T[K];
|
|
52
|
+
} & {};
|
|
@@ -14,20 +14,51 @@ interface Props {
|
|
|
14
14
|
variant?: StateVariant;
|
|
15
15
|
id?: string;
|
|
16
16
|
}
|
|
17
|
-
declare const _default: import("vue").DefineComponent<Props
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
17
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
|
+
type: string;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
readonly: boolean;
|
|
21
|
+
required: boolean;
|
|
22
|
+
size: string;
|
|
23
|
+
variant: string;
|
|
24
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
+
"update:modelValue": (value: string | number) => void;
|
|
26
|
+
blur: (event: FocusEvent) => void;
|
|
27
|
+
focus: (event: FocusEvent) => void;
|
|
28
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
29
|
+
type: string;
|
|
30
|
+
disabled: boolean;
|
|
31
|
+
readonly: boolean;
|
|
32
|
+
required: boolean;
|
|
33
|
+
size: string;
|
|
34
|
+
variant: string;
|
|
35
|
+
}>>> & {
|
|
24
36
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
25
|
-
|
|
37
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
38
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
39
|
+
}, {
|
|
26
40
|
variant: StateVariant;
|
|
27
41
|
size: SizeToken;
|
|
28
42
|
disabled: boolean;
|
|
29
43
|
type: "text" | "email" | "password" | "number" | "search";
|
|
30
44
|
readonly: boolean;
|
|
31
45
|
required: boolean;
|
|
32
|
-
}, {}
|
|
46
|
+
}, {}>;
|
|
33
47
|
export default _default;
|
|
48
|
+
type __VLS_WithDefaults<P, D> = {
|
|
49
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
50
|
+
default: D[K];
|
|
51
|
+
}> : P[K];
|
|
52
|
+
};
|
|
53
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
+
type __VLS_TypePropsToOption<T> = {
|
|
55
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
|
+
} : {
|
|
58
|
+
type: import('vue').PropType<T[K]>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
type __VLS_PrettifyLocal<T> = {
|
|
63
|
+
[K in keyof T]: T[K];
|
|
64
|
+
} & {};
|
|
@@ -12,16 +12,43 @@ declare var __VLS_1: {};
|
|
|
12
12
|
type __VLS_Slots = {} & {
|
|
13
13
|
default?: (props: typeof __VLS_1) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
16
|
+
variant: string;
|
|
17
|
+
size: string;
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
required: boolean;
|
|
20
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
21
|
+
variant: string;
|
|
22
|
+
size: string;
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
required: boolean;
|
|
25
|
+
}>>>, {
|
|
16
26
|
variant: StateVariant;
|
|
17
27
|
size: SizeToken;
|
|
18
28
|
disabled: boolean;
|
|
19
29
|
required: boolean;
|
|
20
|
-
}, {}
|
|
30
|
+
}, {}>;
|
|
21
31
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
32
|
export default _default;
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
39
|
+
type __VLS_TypePropsToOption<T> = {
|
|
40
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
41
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
42
|
+
} : {
|
|
43
|
+
type: import('vue').PropType<T[K]>;
|
|
44
|
+
required: true;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
23
47
|
type __VLS_WithSlots<T, S> = T & {
|
|
24
48
|
new (): {
|
|
25
49
|
$slots: S;
|
|
26
50
|
};
|
|
27
51
|
};
|
|
52
|
+
type __VLS_PrettifyLocal<T> = {
|
|
53
|
+
[K in keyof T]: T[K];
|
|
54
|
+
} & {};
|
|
@@ -16,21 +16,50 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
} & {
|
|
17
17
|
footer?: (props: typeof __VLS_9) => any;
|
|
18
18
|
};
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<Props
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
20
|
+
open: boolean;
|
|
21
|
+
size: string;
|
|
22
|
+
variant: string;
|
|
23
|
+
closeOnEsc: boolean;
|
|
24
|
+
closeOnOverlay: boolean;
|
|
25
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
+
close: () => void;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
28
|
+
open: boolean;
|
|
29
|
+
size: string;
|
|
30
|
+
variant: string;
|
|
31
|
+
closeOnEsc: boolean;
|
|
32
|
+
closeOnOverlay: boolean;
|
|
33
|
+
}>>> & {
|
|
22
34
|
onClose?: (() => any) | undefined;
|
|
23
|
-
}
|
|
35
|
+
}, {
|
|
24
36
|
variant: StateVariant;
|
|
25
37
|
size: ModalSize;
|
|
26
38
|
open: boolean;
|
|
27
39
|
closeOnEsc: boolean;
|
|
28
40
|
closeOnOverlay: boolean;
|
|
29
|
-
}, {}
|
|
41
|
+
}, {}>;
|
|
30
42
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
43
|
export default _default;
|
|
44
|
+
type __VLS_WithDefaults<P, D> = {
|
|
45
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
46
|
+
default: D[K];
|
|
47
|
+
}> : P[K];
|
|
48
|
+
};
|
|
49
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
50
|
+
type __VLS_TypePropsToOption<T> = {
|
|
51
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
52
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
53
|
+
} : {
|
|
54
|
+
type: import('vue').PropType<T[K]>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
32
58
|
type __VLS_WithSlots<T, S> = T & {
|
|
33
59
|
new (): {
|
|
34
60
|
$slots: S;
|
|
35
61
|
};
|
|
36
62
|
};
|
|
63
|
+
type __VLS_PrettifyLocal<T> = {
|
|
64
|
+
[K in keyof T]: T[K];
|
|
65
|
+
} & {};
|