@v1nt1248/3nclient-lib 0.0.38 → 0.0.39
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/components/ui3n-badge-simple.vue.d.ts +4 -1
- package/dist/components/ui3n-badge.vue.d.ts +4 -1
- package/dist/components/ui3n-button.vue.d.ts +4 -1
- package/dist/components/ui3n-checkbox.vue.d.ts +6 -3
- package/dist/components/ui3n-chip.vue.d.ts +5 -2
- package/dist/components/ui3n-dialog.vue.d.ts +1 -1
- package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
- package/dist/components/ui3n-emoji.vue.d.ts +4 -1
- package/dist/components/ui3n-icon.vue.d.ts +1 -1
- package/dist/components/ui3n-input.vue.d.ts +1 -1
- package/dist/components/ui3n-list.vue.d.ts +6 -3
- package/dist/components/ui3n-menu.vue.d.ts +5 -2
- package/dist/components/ui3n-notification.vue.d.ts +1 -1
- package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
- package/dist/components/ui3n-table.vue.d.ts +1 -1
- package/dist/components/ui3n-tabs.vue.d.ts +4 -1
- package/dist/components/ui3n-text.vue.d.ts +2 -2
- package/dist/components/ui3n-virtual-scroll.vue.d.ts +6 -3
- package/dist/stories/Ui3nBadge.stories.d.ts +60 -96
- package/dist/stories/Ui3nButton.stories.d.ts +77 -113
- package/dist/stories/Ui3nCheckbox.stories.d.ts +100 -140
- package/dist/stories/Ui3nChip.stories.d.ts +300 -420
- package/dist/stories/Ui3nDialog.stories.d.ts +1 -1
- package/dist/stories/Ui3nDropFiles.stories.d.ts +32 -67
- package/dist/stories/Ui3nEmoji.stories.d.ts +1 -1
- package/dist/stories/Ui3nIcon.stories.d.ts +1 -1
- package/dist/stories/Ui3nInput.stories.d.ts +6 -6
- package/dist/stories/Ui3nList.stories.d.ts +3 -3
- package/dist/stories/Ui3nTabs.stories.d.ts +91 -130
- package/dist/style.css +1 -1
- package/dist/ui-3n-lib.js +2706 -2716
- package/package.json +38 -37
- package/src/components/ui3n-button.vue +7 -4
- package/src/components/ui3n-dialog.vue +12 -2
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
14
14
|
width: number;
|
|
15
15
|
height: number;
|
|
16
16
|
}) => void;
|
|
17
|
-
}, string, import("vue").
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBadgeSimpleProps>, {
|
|
18
18
|
dot: boolean;
|
|
19
19
|
value: string;
|
|
20
20
|
color: string;
|
|
@@ -45,3 +45,6 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
45
45
|
default: D[K];
|
|
46
46
|
}> : P[K];
|
|
47
47
|
};
|
|
48
|
+
type __VLS_Prettify<T> = {
|
|
49
|
+
[K in keyof T]: T[K];
|
|
50
|
+
} & {};
|
|
@@ -11,7 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
11
11
|
color: string;
|
|
12
12
|
textColor: string;
|
|
13
13
|
position: string;
|
|
14
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
14
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBadgeProps>, {
|
|
15
15
|
dot: boolean;
|
|
16
16
|
value: string;
|
|
17
17
|
color: string;
|
|
@@ -41,6 +41,9 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
41
41
|
default: D[K];
|
|
42
42
|
}> : P[K];
|
|
43
43
|
};
|
|
44
|
+
type __VLS_Prettify<T> = {
|
|
45
|
+
[K in keyof T]: T[K];
|
|
46
|
+
} & {};
|
|
44
47
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
48
|
new (): {
|
|
46
49
|
$slots: S;
|
|
@@ -9,18 +9,21 @@ export interface Ui3nButtonProps {
|
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export interface Ui3nButtonEmits {
|
|
12
|
+
(ev: 'init', value: HTMLButtonElement): void;
|
|
12
13
|
(ev: 'click', value: Event): void;
|
|
13
14
|
(ev: 'focus', value: Event): void;
|
|
14
15
|
(ev: 'blur', value: Event): void;
|
|
15
16
|
}
|
|
16
17
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nButtonProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
init: (value: HTMLButtonElement) => void;
|
|
17
19
|
click: (value: Event) => void;
|
|
18
20
|
focus: (value: Event) => void;
|
|
19
21
|
blur: (value: Event) => void;
|
|
20
|
-
}, string, import("vue").
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nButtonProps>>> & {
|
|
21
23
|
onFocus?: ((value: Event) => any) | undefined;
|
|
22
24
|
onBlur?: ((value: Event) => any) | undefined;
|
|
23
25
|
onClick?: ((value: Event) => any) | undefined;
|
|
26
|
+
onInit?: ((value: HTMLButtonElement) => any) | undefined;
|
|
24
27
|
}, {}, {}>, {
|
|
25
28
|
default?(_: {}): any;
|
|
26
29
|
}>;
|
|
@@ -26,7 +26,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
26
26
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
27
|
change: (value: Ui3nCheckboxValue) => void;
|
|
28
28
|
"update:modelValue": (value: Ui3nCheckboxValue) => void;
|
|
29
|
-
}, string, import("vue").
|
|
29
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nCheckboxProps>, {
|
|
30
30
|
modelValue: boolean;
|
|
31
31
|
checkedValue: boolean;
|
|
32
32
|
uncheckedValue: boolean;
|
|
@@ -39,13 +39,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
39
39
|
"onUpdate:modelValue"?: ((value: Ui3nCheckboxValue) => any) | undefined;
|
|
40
40
|
}, {
|
|
41
41
|
color: string;
|
|
42
|
+
size: string | number;
|
|
42
43
|
disabled: boolean;
|
|
43
44
|
modelValue: Ui3nCheckboxValue;
|
|
44
45
|
checkedValue: Ui3nCheckboxValue;
|
|
45
46
|
uncheckedValue: Ui3nCheckboxValue;
|
|
46
|
-
size: string | number;
|
|
47
47
|
indeterminate: boolean;
|
|
48
|
-
}, {}>, Readonly<Ui3nCheckboxSlots
|
|
48
|
+
}, {}>, Readonly<Ui3nCheckboxSlots> & Ui3nCheckboxSlots>;
|
|
49
49
|
export default _default;
|
|
50
50
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
51
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -61,6 +61,9 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
61
61
|
default: D[K];
|
|
62
62
|
}> : P[K];
|
|
63
63
|
};
|
|
64
|
+
type __VLS_Prettify<T> = {
|
|
65
|
+
[K in keyof T]: T[K];
|
|
66
|
+
} & {};
|
|
64
67
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
65
68
|
new (): {
|
|
66
69
|
$slots: S;
|
|
@@ -29,7 +29,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
29
29
|
textColor: string;
|
|
30
30
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
31
|
close: () => void;
|
|
32
|
-
}, string, import("vue").
|
|
32
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nChipProps>, {
|
|
33
33
|
height: number;
|
|
34
34
|
maxWidth: number;
|
|
35
35
|
plain: boolean;
|
|
@@ -49,7 +49,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
49
49
|
plain: boolean;
|
|
50
50
|
closeable: boolean;
|
|
51
51
|
textSize: string | number;
|
|
52
|
-
}, {}>, Readonly<Ui3nChipSlots
|
|
52
|
+
}, {}>, Readonly<Ui3nChipSlots> & Ui3nChipSlots>;
|
|
53
53
|
export default _default;
|
|
54
54
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
55
55
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -65,6 +65,9 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
65
65
|
default: D[K];
|
|
66
66
|
}> : P[K];
|
|
67
67
|
};
|
|
68
|
+
type __VLS_Prettify<T> = {
|
|
69
|
+
[K in keyof T]: T[K];
|
|
70
|
+
} & {};
|
|
68
71
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
69
72
|
new (): {
|
|
70
73
|
$slots: S;
|
|
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
41
41
|
confirm: (value?: any) => void;
|
|
42
42
|
cancel: (value?: any) => void;
|
|
43
43
|
"click-overlay": (value?: any) => void;
|
|
44
|
-
}, string, import("vue").
|
|
44
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nDialogComponentProps>>> & {
|
|
45
45
|
onClose?: ((value?: any) => any) | undefined;
|
|
46
46
|
onCancel?: ((value?: any) => any) | undefined;
|
|
47
47
|
onOpen?: ((value?: any) => any) | undefined;
|
|
@@ -8,7 +8,7 @@ export interface Ui3nDropFilesEmits {
|
|
|
8
8
|
}
|
|
9
9
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nDropFilesProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
10
|
select: (fileList: FileList) => void;
|
|
11
|
-
}, string, import("vue").
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nDropFilesProps>>> & {
|
|
12
12
|
onSelect?: ((fileList: FileList) => any) | undefined;
|
|
13
13
|
}, {}, {}>, {
|
|
14
14
|
default?(_: {}): any;
|
|
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
11
11
|
readonly: boolean;
|
|
12
12
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
13
|
click: (value: Event) => void;
|
|
14
|
-
}, string, import("vue").
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nEmojiProps>, {
|
|
15
15
|
size: number;
|
|
16
16
|
readonly: boolean;
|
|
17
17
|
}>>> & {
|
|
@@ -35,3 +35,6 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
35
35
|
default: D[K];
|
|
36
36
|
}> : P[K];
|
|
37
37
|
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
@@ -16,7 +16,7 @@ export interface Ui3nIconEmits {
|
|
|
16
16
|
}
|
|
17
17
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
click: (value: Event) => void;
|
|
19
|
-
}, string, import("vue").
|
|
19
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nIconProps>>> & {
|
|
20
20
|
onClick?: ((value: Event) => any) | undefined;
|
|
21
21
|
}, {}, {}>;
|
|
22
22
|
export default _default;
|
|
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
26
26
|
change: (value: string) => void;
|
|
27
27
|
"update:value": (value: string) => void;
|
|
28
28
|
"update:valid": (value: boolean) => void;
|
|
29
|
-
}, string, import("vue").
|
|
29
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nInputProps>>> & {
|
|
30
30
|
onFocus?: ((value: Event) => any) | undefined;
|
|
31
31
|
onBlur?: ((value: Event) => any) | undefined;
|
|
32
32
|
onChange?: ((value: string) => any) | undefined;
|
|
@@ -30,7 +30,7 @@ declare const _default: <T extends {
|
|
|
30
30
|
items: T[];
|
|
31
31
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
32
32
|
attrs: any;
|
|
33
|
-
slots: Readonly<Ui3nListSlots<T
|
|
33
|
+
slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
|
|
34
34
|
emit: Ui3nListEmits<T>;
|
|
35
35
|
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
36
36
|
props: {
|
|
@@ -45,7 +45,7 @@ declare const _default: <T extends {
|
|
|
45
45
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
46
46
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
47
47
|
attrs: any;
|
|
48
|
-
slots: Readonly<Ui3nListSlots<T
|
|
48
|
+
slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
|
|
49
49
|
emit: Ui3nListEmits<T>;
|
|
50
50
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
51
51
|
[key: string]: any;
|
|
@@ -63,8 +63,11 @@ declare const _default: <T extends {
|
|
|
63
63
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
64
64
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
65
65
|
attrs: any;
|
|
66
|
-
slots: Readonly<Ui3nListSlots<T
|
|
66
|
+
slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
|
|
67
67
|
emit: Ui3nListEmits<T>;
|
|
68
68
|
} | undefined;
|
|
69
69
|
};
|
|
70
70
|
export default _default;
|
|
71
|
+
type __VLS_Prettify<T> = {
|
|
72
|
+
[K in keyof T]: T[K];
|
|
73
|
+
} & {};
|
|
@@ -28,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
28
|
close: () => void;
|
|
29
29
|
closed: () => void;
|
|
30
30
|
"click-outside": () => void;
|
|
31
|
-
}, string, import("vue").
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nMenuProps>, {
|
|
32
32
|
offsetX: number;
|
|
33
33
|
offsetY: number;
|
|
34
34
|
closeOnClick: boolean;
|
|
@@ -46,7 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
46
46
|
offsetY: number;
|
|
47
47
|
closeOnClick: boolean;
|
|
48
48
|
closeOnClickOutside: boolean;
|
|
49
|
-
}, {}>, Readonly<Ui3nMenuSlots
|
|
49
|
+
}, {}>, Readonly<Ui3nMenuSlots> & Ui3nMenuSlots>;
|
|
50
50
|
export default _default;
|
|
51
51
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
52
52
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -62,6 +62,9 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
62
62
|
default: D[K];
|
|
63
63
|
}> : P[K];
|
|
64
64
|
};
|
|
65
|
+
type __VLS_Prettify<T> = {
|
|
66
|
+
[K in keyof T]: T[K];
|
|
67
|
+
} & {};
|
|
65
68
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
66
69
|
new (): {
|
|
67
70
|
$slots: S;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Ui3nNotificationProps } from '../constants';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>>>, {}, {}>;
|
|
3
3
|
export default _default;
|
|
4
4
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
5
5
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -3,7 +3,7 @@ export interface Ui3nTableSortIconProps {
|
|
|
3
3
|
color?: string;
|
|
4
4
|
value: 'asc' | 'desc';
|
|
5
5
|
}
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>>>, {}, {}>;
|
|
7
7
|
export default _default;
|
|
8
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
9
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -16,7 +16,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
16
16
|
action: EntityAction;
|
|
17
17
|
entity: ListingEntryTypeExtended;
|
|
18
18
|
}) => void;
|
|
19
|
-
}, string, import("vue").
|
|
19
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableProps>>> & {
|
|
20
20
|
onGo?: ((name: string) => any) | undefined;
|
|
21
21
|
onAction?: ((value: {
|
|
22
22
|
action: EntityAction;
|
|
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
23
|
indicatorPosition: string;
|
|
24
24
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (val: number) => void;
|
|
26
|
-
}, string, import("vue").
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nTabsProps>, {
|
|
27
27
|
modelValue: number;
|
|
28
28
|
itemDirection: string;
|
|
29
29
|
activeColor: string;
|
|
@@ -59,6 +59,9 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
59
59
|
default: D[K];
|
|
60
60
|
}> : P[K];
|
|
61
61
|
};
|
|
62
|
+
type __VLS_Prettify<T> = {
|
|
63
|
+
[K in keyof T]: T[K];
|
|
64
|
+
} & {};
|
|
62
65
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
63
66
|
new (): {
|
|
64
67
|
$slots: S;
|
|
@@ -22,12 +22,12 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
22
22
|
blur: (value: Event) => void;
|
|
23
23
|
"update:text": (value: string) => void;
|
|
24
24
|
"update:valid": (value: boolean) => void;
|
|
25
|
-
}, string, import("vue").
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTextProps>>> & {
|
|
26
26
|
onFocus?: ((value: Event) => any) | undefined;
|
|
27
27
|
onBlur?: ((value: Event) => any) | undefined;
|
|
28
28
|
onInput?: ((value: string) => any) | undefined;
|
|
29
|
-
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
30
29
|
onInit?: ((value: HTMLTextAreaElement) => any) | undefined;
|
|
30
|
+
"onUpdate:valid"?: ((value: boolean) => any) | undefined;
|
|
31
31
|
"onUpdate:text"?: ((value: string) => any) | undefined;
|
|
32
32
|
}, {}, {}>;
|
|
33
33
|
export default _default;
|
|
@@ -14,7 +14,7 @@ declare const _default: <T extends {
|
|
|
14
14
|
renderAhread?: number | undefined;
|
|
15
15
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
16
16
|
attrs: any;
|
|
17
|
-
slots: Readonly<Ui3nVirtualScrollSlots<T
|
|
17
|
+
slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
|
|
18
18
|
emit: any;
|
|
19
19
|
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
20
20
|
props: {
|
|
@@ -24,7 +24,7 @@ declare const _default: <T extends {
|
|
|
24
24
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
25
25
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
26
26
|
attrs: any;
|
|
27
|
-
slots: Readonly<Ui3nVirtualScrollSlots<T
|
|
27
|
+
slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
|
|
28
28
|
emit: any;
|
|
29
29
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
30
30
|
[key: string]: any;
|
|
@@ -37,8 +37,11 @@ declare const _default: <T extends {
|
|
|
37
37
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
38
38
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
39
39
|
attrs: any;
|
|
40
|
-
slots: Readonly<Ui3nVirtualScrollSlots<T
|
|
40
|
+
slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
|
|
41
41
|
emit: any;
|
|
42
42
|
} | undefined;
|
|
43
43
|
};
|
|
44
44
|
export default _default;
|
|
45
|
+
type __VLS_Prettify<T> = {
|
|
46
|
+
[K in keyof T]: T[K];
|
|
47
|
+
} & {};
|
|
@@ -4,104 +4,62 @@ declare const meta: Meta<typeof Ui3nBadge>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
export declare const Badge_Simple: StoryObj<typeof meta>;
|
|
6
6
|
export declare const Use_Slot: StoryFn<{
|
|
7
|
-
new (...args: any[]): {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
|
|
16
|
-
}> & Omit<{
|
|
17
|
-
readonly dot: boolean;
|
|
18
|
-
readonly value: string | number;
|
|
19
|
-
readonly color: string;
|
|
20
|
-
readonly textColor: string;
|
|
21
|
-
readonly position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
|
|
22
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
-
dot: {
|
|
24
|
-
type: import("vue").PropType<boolean>;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
value: {
|
|
28
|
-
type: import("vue").PropType<string | number>;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
color: {
|
|
32
|
-
type: import("vue").PropType<string>;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
textColor: {
|
|
36
|
-
type: import("vue").PropType<string>;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
position: {
|
|
40
|
-
type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
}>>, "dot" | "value" | "color" | "textColor" | "position">;
|
|
44
|
-
$attrs: {
|
|
45
|
-
[x: string]: unknown;
|
|
7
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
dot: {
|
|
9
|
+
type: import("vue").PropType<boolean>;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
value: {
|
|
13
|
+
type: import("vue").PropType<string | number>;
|
|
14
|
+
default: string;
|
|
46
15
|
};
|
|
47
|
-
|
|
48
|
-
|
|
16
|
+
color: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
default: string;
|
|
49
19
|
};
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
79
|
-
dot: boolean;
|
|
80
|
-
value: string | number;
|
|
81
|
-
color: string;
|
|
82
|
-
textColor: string;
|
|
83
|
-
position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
|
|
84
|
-
}, {}, string, {}> & {
|
|
85
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
92
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
93
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
94
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
95
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
96
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
97
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
98
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
99
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
20
|
+
textColor: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
position: {
|
|
25
|
+
type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
dot: {
|
|
30
|
+
type: import("vue").PropType<boolean>;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
value: {
|
|
34
|
+
type: import("vue").PropType<string | number>;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
color: {
|
|
38
|
+
type: import("vue").PropType<string>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
textColor: {
|
|
42
|
+
type: import("vue").PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
position: {
|
|
46
|
+
type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
|
|
47
|
+
default: string;
|
|
100
48
|
};
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
49
|
+
}>>, {
|
|
50
|
+
dot: boolean;
|
|
51
|
+
value: string | number;
|
|
52
|
+
color: string;
|
|
53
|
+
textColor: string;
|
|
54
|
+
position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
|
|
55
|
+
}, true, {}, {}, {
|
|
56
|
+
P: {};
|
|
57
|
+
B: {};
|
|
58
|
+
D: {};
|
|
59
|
+
C: {};
|
|
60
|
+
M: {};
|
|
61
|
+
Defaults: {};
|
|
62
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
105
63
|
dot: {
|
|
106
64
|
type: import("vue").PropType<boolean>;
|
|
107
65
|
default: boolean;
|
|
@@ -122,7 +80,13 @@ export declare const Use_Slot: StoryFn<{
|
|
|
122
80
|
type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
|
|
123
81
|
default: string;
|
|
124
82
|
};
|
|
125
|
-
}
|
|
83
|
+
}>>, {}, {}, {}, {}, {
|
|
84
|
+
dot: boolean;
|
|
85
|
+
value: string | number;
|
|
86
|
+
color: string;
|
|
87
|
+
textColor: string;
|
|
88
|
+
position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
|
|
89
|
+
}>;
|
|
126
90
|
__isFragment?: undefined;
|
|
127
91
|
__isTeleport?: undefined;
|
|
128
92
|
__isSuspense?: undefined;
|