vitam-uikit-apps 0.1.3 → 0.1.6
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 +8 -33
- package/dist/types/components/Avatar/Avatar.vue.d.ts +2 -29
- package/dist/types/components/Badge/Badge.vue.d.ts +2 -29
- package/dist/types/components/Breadcrumb/Breadcrumb.vue.d.ts +5 -28
- package/dist/types/components/BurgerButton/BurgerButton.vue.d.ts +5 -34
- package/dist/types/components/Button/Button.vue.d.ts +7 -38
- package/dist/types/components/Card/Card.vue.d.ts +2 -29
- package/dist/types/components/Checkbox/Checkbox.vue.d.ts +7 -38
- package/dist/types/components/EmptyState/EmptyState.vue.d.ts +4 -25
- package/dist/types/components/Footer/Footer.vue.d.ts +2 -25
- package/dist/types/components/Input/Input.vue.d.ts +9 -40
- package/dist/types/components/Label/Label.vue.d.ts +4 -31
- package/dist/types/components/Modal/Modal.vue.d.ts +5 -34
- package/dist/types/components/NavBar/NavBar.stories.d.ts +1 -0
- package/dist/types/components/NavBar/NavBar.vue.d.ts +9 -31
- package/dist/types/components/NavMenu/NavMenu.stories.d.ts +1 -0
- package/dist/types/components/NavMenu/NavMenu.vue.d.ts +10 -34
- package/dist/types/components/Overlay/Overlay.vue.d.ts +5 -36
- package/dist/types/components/OverlayLoader/OverlayLoader.vue.d.ts +2 -31
- package/dist/types/components/Pagination/Pagination.vue.d.ts +6 -31
- package/dist/types/components/Pill/Pill.vue.d.ts +2 -25
- package/dist/types/components/RadioGroup/RadioGroup.vue.d.ts +7 -34
- package/dist/types/components/Selector/Selector.vue.d.ts +7 -36
- package/dist/types/components/SvgIcon/SvgIcon.vue.d.ts +6 -0
- package/dist/types/components/Switch/Switch.vue.d.ts +7 -34
- package/dist/types/components/Tabs/Tabs.vue.d.ts +7 -30
- package/dist/types/components/TextArea/TextArea.vue.d.ts +9 -42
- package/dist/types/components/Toast/Toast.vue.d.ts +6 -31
- package/dist/types/components/Tooltip/Tooltip.stories.d.ts +1 -0
- package/dist/types/components/Tooltip/Tooltip.vue.d.ts +4 -32
- package/dist/types/index.d.ts +0 -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 +998 -1112
- package/dist/vitam-uikit-apps.esm.js.map +1 -1
- package/package.json +3 -3
- package/dist/types/components/Table/Table.stories.d.ts +0 -11
- package/dist/types/components/Table/Table.vue.d.ts +0 -62
- package/dist/types/components/Table/index.d.ts +0 -1
- package/dist/types/components/TitleCard/TitleCard.stories.d.ts +0 -10
- package/dist/types/components/TitleCard/TitleCard.vue.d.ts +0 -50
- package/dist/types/components/TitleCard/index.d.ts +0 -1
|
@@ -12,58 +12,33 @@ interface Props {
|
|
|
12
12
|
modelValue?: string[];
|
|
13
13
|
variant?: StateVariant;
|
|
14
14
|
}
|
|
15
|
-
declare var
|
|
15
|
+
declare var __VLS_5: `item-${string}`, __VLS_6: {
|
|
16
16
|
item: AccordionItem;
|
|
17
17
|
};
|
|
18
18
|
type __VLS_Slots = {} & {
|
|
19
|
-
[K in NonNullable<typeof
|
|
19
|
+
[K in NonNullable<typeof __VLS_5>]?: (props: typeof __VLS_6) => any;
|
|
20
20
|
};
|
|
21
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
22
|
-
|
|
23
|
-
modelValue: () => never[];
|
|
24
|
-
variant: string;
|
|
25
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
-
"update:modelValue": (value: string[]) => void;
|
|
21
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (value: string[]) => any;
|
|
27
23
|
toggle: (payload: {
|
|
28
24
|
id: string;
|
|
29
25
|
open: boolean;
|
|
30
|
-
}) =>
|
|
31
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
32
|
-
multiple: boolean;
|
|
33
|
-
modelValue: () => never[];
|
|
34
|
-
variant: string;
|
|
35
|
-
}>>> & {
|
|
26
|
+
}) => any;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
36
28
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
37
29
|
onToggle?: ((payload: {
|
|
38
30
|
id: string;
|
|
39
31
|
open: boolean;
|
|
40
32
|
}) => any) | undefined;
|
|
41
|
-
}
|
|
33
|
+
}>, {
|
|
42
34
|
variant: StateVariant;
|
|
43
35
|
modelValue: string[];
|
|
44
36
|
multiple: boolean;
|
|
45
|
-
}, {}>;
|
|
37
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
46
38
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
47
39
|
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
40
|
type __VLS_WithSlots<T, S> = T & {
|
|
63
41
|
new (): {
|
|
64
42
|
$slots: S;
|
|
65
43
|
};
|
|
66
44
|
};
|
|
67
|
-
type __VLS_PrettifyLocal<T> = {
|
|
68
|
-
[K in keyof T]: T[K];
|
|
69
|
-
} & {};
|
|
@@ -9,37 +9,10 @@ interface Props {
|
|
|
9
9
|
variant?: StateVariant;
|
|
10
10
|
decorative?: boolean;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<
|
|
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
|
-
}>>>, {
|
|
12
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
23
13
|
variant: StateVariant;
|
|
24
14
|
size: "xs" | "sm" | "md" | "lg";
|
|
25
15
|
decorative: boolean;
|
|
26
16
|
shape: "circle" | "square";
|
|
27
|
-
}, {}>;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
18
|
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,37 +10,10 @@ interface Props {
|
|
|
10
10
|
decorative?: boolean;
|
|
11
11
|
ariaLabel?: string;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: import("vue").DefineComponent<
|
|
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
|
-
}>>>, {
|
|
13
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
24
14
|
variant: StateVariant;
|
|
25
15
|
size: BadgeSize;
|
|
26
16
|
max: number;
|
|
27
17
|
decorative: boolean;
|
|
28
|
-
}, {}>;
|
|
18
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
19
|
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,41 +10,18 @@ interface Props {
|
|
|
10
10
|
separator?: string;
|
|
11
11
|
variant?: StateVariant;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: import("vue").DefineComponent<
|
|
14
|
-
separator: string;
|
|
15
|
-
variant: string;
|
|
16
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
14
|
navigate: (payload: {
|
|
18
15
|
value?: string;
|
|
19
16
|
href?: string;
|
|
20
|
-
}) =>
|
|
21
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
22
|
-
separator: string;
|
|
23
|
-
variant: string;
|
|
24
|
-
}>>> & {
|
|
17
|
+
}) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
25
19
|
onNavigate?: ((payload: {
|
|
26
20
|
value?: string;
|
|
27
21
|
href?: string;
|
|
28
22
|
}) => any) | undefined;
|
|
29
|
-
}
|
|
23
|
+
}>, {
|
|
30
24
|
variant: StateVariant;
|
|
31
25
|
separator: string;
|
|
32
|
-
}, {}>;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
27
|
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,44 +9,15 @@ interface Props {
|
|
|
9
9
|
closedIconSrc: SvgIconSrc;
|
|
10
10
|
ariaControls?: string;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
}>>> & {
|
|
12
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
toggle: (nextState: boolean) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
27
15
|
onToggle?: ((nextState: boolean) => any) | undefined;
|
|
28
|
-
}
|
|
16
|
+
}>, {
|
|
29
17
|
variant: StateVariant;
|
|
30
18
|
disabled: boolean;
|
|
31
19
|
open: boolean;
|
|
32
20
|
labelOpen: string;
|
|
33
21
|
labelClose: string;
|
|
34
|
-
}, {}>;
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
23
|
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
|
-
} & {};
|
|
@@ -9,57 +9,26 @@ interface Props {
|
|
|
9
9
|
fullWidth?: boolean;
|
|
10
10
|
leftIconSrc?: SvgIconSrc;
|
|
11
11
|
}
|
|
12
|
-
declare var
|
|
12
|
+
declare var __VLS_4: {};
|
|
13
13
|
type __VLS_Slots = {} & {
|
|
14
|
-
default?: (props: typeof
|
|
14
|
+
default?: (props: typeof __VLS_4) => any;
|
|
15
15
|
};
|
|
16
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
}>>> & {
|
|
16
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
click: (event: MouseEvent) => any;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
33
19
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
34
|
-
}
|
|
20
|
+
}>, {
|
|
35
21
|
variant: StateVariant;
|
|
36
22
|
size: SizeToken;
|
|
37
23
|
disabled: boolean;
|
|
38
24
|
loading: boolean;
|
|
39
25
|
type: "button" | "submit" | "reset";
|
|
40
26
|
fullWidth: boolean;
|
|
41
|
-
}, {}>;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
28
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
43
29
|
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
|
-
};
|
|
58
30
|
type __VLS_WithSlots<T, S> = T & {
|
|
59
31
|
new (): {
|
|
60
32
|
$slots: S;
|
|
61
33
|
};
|
|
62
34
|
};
|
|
63
|
-
type __VLS_PrettifyLocal<T> = {
|
|
64
|
-
[K in keyof T]: T[K];
|
|
65
|
-
} & {};
|
|
@@ -15,43 +15,16 @@ type __VLS_Slots = {} & {
|
|
|
15
15
|
} & {
|
|
16
16
|
footer?: (props: typeof __VLS_5) => any;
|
|
17
17
|
};
|
|
18
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
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
|
-
}>>>, {
|
|
18
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
29
19
|
variant: StateVariant;
|
|
30
20
|
surface: CardSurface;
|
|
31
21
|
padding: CardPadding;
|
|
32
22
|
interactive: boolean;
|
|
33
|
-
}, {}>;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
24
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
35
25
|
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
26
|
type __VLS_WithSlots<T, S> = T & {
|
|
51
27
|
new (): {
|
|
52
28
|
$slots: S;
|
|
53
29
|
};
|
|
54
30
|
};
|
|
55
|
-
type __VLS_PrettifyLocal<T> = {
|
|
56
|
-
[K in keyof T]: T[K];
|
|
57
|
-
} & {};
|
|
@@ -11,49 +11,18 @@ interface Props {
|
|
|
11
11
|
variant?: StateVariant;
|
|
12
12
|
id?: string;
|
|
13
13
|
}
|
|
14
|
-
declare const _default: import("vue").DefineComponent<
|
|
15
|
-
modelValue: boolean;
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
}>>> & {
|
|
32
|
-
onChange?: ((value: boolean) => any) | undefined;
|
|
14
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: boolean) => any;
|
|
16
|
+
change: (value: boolean) => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
33
18
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
34
|
-
|
|
19
|
+
onChange?: ((value: boolean) => any) | undefined;
|
|
20
|
+
}>, {
|
|
35
21
|
variant: StateVariant;
|
|
36
22
|
size: CheckboxSize;
|
|
37
23
|
disabled: boolean;
|
|
38
24
|
modelValue: boolean;
|
|
39
25
|
required: boolean;
|
|
40
26
|
indeterminate: boolean;
|
|
41
|
-
}, {}>;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
28
|
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
|
-
} & {};
|
|
@@ -5,38 +5,17 @@ interface Props {
|
|
|
5
5
|
variant?: StateVariant;
|
|
6
6
|
leftIconSrc?: SvgIconSrc;
|
|
7
7
|
}
|
|
8
|
-
declare var
|
|
8
|
+
declare var __VLS_4: {};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
|
-
actions?: (props: typeof
|
|
10
|
+
actions?: (props: typeof __VLS_4) => any;
|
|
11
11
|
};
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
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
|
-
}>>>, {
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
17
13
|
variant: StateVariant;
|
|
18
|
-
}, {}>;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
15
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
20
16
|
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
|
-
};
|
|
35
17
|
type __VLS_WithSlots<T, S> = T & {
|
|
36
18
|
new (): {
|
|
37
19
|
$slots: S;
|
|
38
20
|
};
|
|
39
21
|
};
|
|
40
|
-
type __VLS_PrettifyLocal<T> = {
|
|
41
|
-
[K in keyof T]: T[K];
|
|
42
|
-
} & {};
|
|
@@ -16,37 +16,14 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
} & {
|
|
17
17
|
right?: (props: typeof __VLS_3) => any;
|
|
18
18
|
};
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
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
|
-
}>>>, {
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
26
20
|
links: FooterLink[];
|
|
27
21
|
compact: boolean;
|
|
28
|
-
}, {}>;
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
23
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
30
24
|
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
|
-
};
|
|
45
25
|
type __VLS_WithSlots<T, S> = T & {
|
|
46
26
|
new (): {
|
|
47
27
|
$slots: S;
|
|
48
28
|
};
|
|
49
29
|
};
|
|
50
|
-
type __VLS_PrettifyLocal<T> = {
|
|
51
|
-
[K in keyof T]: T[K];
|
|
52
|
-
} & {};
|
|
@@ -14,51 +14,20 @@ interface Props {
|
|
|
14
14
|
variant?: StateVariant;
|
|
15
15
|
id?: string;
|
|
16
16
|
}
|
|
17
|
-
declare const _default: import("vue").DefineComponent<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
}>>> & {
|
|
36
|
-
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
37
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
17
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
"update:modelValue": (value: string | number) => any;
|
|
19
|
+
blur: (event: FocusEvent) => any;
|
|
20
|
+
focus: (event: FocusEvent) => any;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
38
22
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
39
|
-
|
|
23
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
24
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
25
|
+
}>, {
|
|
40
26
|
variant: StateVariant;
|
|
41
27
|
size: SizeToken;
|
|
42
28
|
disabled: boolean;
|
|
43
29
|
type: "text" | "email" | "password" | "number" | "search";
|
|
44
30
|
readonly: boolean;
|
|
45
31
|
required: boolean;
|
|
46
|
-
}, {}>;
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
47
33
|
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
|
-
} & {};
|
|
@@ -8,47 +8,20 @@ interface Props {
|
|
|
8
8
|
required?: boolean;
|
|
9
9
|
leftIconSrc?: SvgIconSrc;
|
|
10
10
|
}
|
|
11
|
-
declare var
|
|
11
|
+
declare var __VLS_4: {};
|
|
12
12
|
type __VLS_Slots = {} & {
|
|
13
|
-
default?: (props: typeof
|
|
13
|
+
default?: (props: typeof __VLS_4) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
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
|
-
}>>>, {
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
26
16
|
variant: StateVariant;
|
|
27
17
|
size: SizeToken;
|
|
28
18
|
disabled: boolean;
|
|
29
19
|
required: boolean;
|
|
30
|
-
}, {}>;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
21
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
32
22
|
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
|
-
};
|
|
47
23
|
type __VLS_WithSlots<T, S> = T & {
|
|
48
24
|
new (): {
|
|
49
25
|
$slots: S;
|
|
50
26
|
};
|
|
51
27
|
};
|
|
52
|
-
type __VLS_PrettifyLocal<T> = {
|
|
53
|
-
[K in keyof T]: T[K];
|
|
54
|
-
} & {};
|
|
@@ -16,50 +16,21 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
} & {
|
|
17
17
|
footer?: (props: typeof __VLS_9) => any;
|
|
18
18
|
};
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
}>>> & {
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
close: () => any;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
34
22
|
onClose?: (() => any) | undefined;
|
|
35
|
-
}
|
|
23
|
+
}>, {
|
|
36
24
|
variant: StateVariant;
|
|
37
25
|
size: ModalSize;
|
|
38
26
|
open: boolean;
|
|
39
27
|
closeOnEsc: boolean;
|
|
40
28
|
closeOnOverlay: boolean;
|
|
41
|
-
}, {}>;
|
|
29
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
30
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
43
31
|
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
|
-
};
|
|
58
32
|
type __VLS_WithSlots<T, S> = T & {
|
|
59
33
|
new (): {
|
|
60
34
|
$slots: S;
|
|
61
35
|
};
|
|
62
36
|
};
|
|
63
|
-
type __VLS_PrettifyLocal<T> = {
|
|
64
|
-
[K in keyof T]: T[K];
|
|
65
|
-
} & {};
|