@pksep/yui 0.1.284 → 0.1.286
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/Calendar/Calendar.vue.d.ts +1 -1
- package/dist/components/Calendar/DataPickerChoose.vue.d.ts +1 -1
- package/dist/components/Calendar/DatePicker.vue.d.ts +2 -2
- package/dist/components/Checkbox/Checkbox.vue.d.ts +1 -1
- package/dist/components/Icon/enum/enum.d.ts +2 -1
- package/dist/components/Icon/icons.d.ts +1 -0
- package/dist/components/Input/interface/interface.d.ts +2 -2
- package/dist/components/Preview/PdfPreview.vue.d.ts +1 -1
- package/dist/components/Preview/VideoPreview.vue.d.ts +1 -1
- package/dist/components/Radio/Radio.vue.d.ts +1 -3
- package/dist/components/Table/Table.vue.d.ts +8 -12
- package/dist/components/UserMenu/UserMenu.vue.d.ts +2 -2
- package/dist/components/UserMenu/UserMenuList.vue.d.ts +5 -2
- package/dist/sep-yui.es.ts +43922 -42952
- package/dist/sep-yui.umd.ts +440 -296
- package/dist/style.css +1 -1
- package/package.json +43 -42
|
@@ -8,8 +8,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDatePickerProps>, {
|
|
9
9
|
dataTestid: string;
|
|
10
10
|
}>>> & Readonly<{
|
|
11
|
-
onChange?: ((value: Date | IRangeForDatePicker | null) => any) | undefined;
|
|
12
11
|
onClick?: (() => any) | undefined;
|
|
12
|
+
onChange?: ((value: Date | IRangeForDatePicker | null) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
14
|
dataTestid: string;
|
|
15
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -55,8 +55,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
55
55
|
type: import('vue').PropType<boolean>;
|
|
56
56
|
};
|
|
57
57
|
}>> & Readonly<{
|
|
58
|
-
onChange?: ((value: string | Date | null | undefined) => any) | undefined;
|
|
59
58
|
onClick?: (() => any) | undefined;
|
|
59
|
+
onChange?: ((value: string | Date | null | undefined) => any) | undefined;
|
|
60
60
|
onClear?: (() => any) | undefined;
|
|
61
61
|
}>, {
|
|
62
62
|
dataTestid: string;
|
|
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
15
15
|
type: import('vue').PropType<boolean>;
|
|
16
16
|
};
|
|
17
17
|
range: {
|
|
18
|
-
type: import('vue').PropType<import('
|
|
18
|
+
type: import('vue').PropType<import('..').IRangeForDatePicker>;
|
|
19
19
|
};
|
|
20
20
|
locale: {
|
|
21
21
|
type: import('vue').PropType<string>;
|
|
@@ -60,7 +60,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
60
60
|
type: import('vue').PropType<boolean>;
|
|
61
61
|
};
|
|
62
62
|
range: {
|
|
63
|
-
type: import('vue').PropType<import('
|
|
63
|
+
type: import('vue').PropType<import('..').IRangeForDatePicker>;
|
|
64
64
|
};
|
|
65
65
|
locale: {
|
|
66
66
|
type: import('vue').PropType<string>;
|
|
@@ -19,8 +19,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
19
|
dataTestid: string;
|
|
20
20
|
color: CheckboxColorEnum;
|
|
21
21
|
}>>> & Readonly<{
|
|
22
|
-
onChange?: ((isChecked: boolean) => any) | undefined;
|
|
23
22
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23
|
+
onChange?: ((isChecked: boolean) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
25
|
color: CheckboxColorEnum;
|
|
26
26
|
dataTestid: string;
|
|
@@ -13,6 +13,7 @@ export declare const chevronDown: IVectorIcon;
|
|
|
13
13
|
export declare const chevronRight: IVectorIcon;
|
|
14
14
|
export declare const chevronLeft: IVectorIcon;
|
|
15
15
|
export declare const chevronUp: IVectorIcon;
|
|
16
|
+
export declare const checked: IVectorIcon;
|
|
16
17
|
export declare const checkbox: IVectorIcon;
|
|
17
18
|
export declare const dark: IVectorIcon;
|
|
18
19
|
export declare const exitBig: IVectorIcon;
|
|
@@ -3,13 +3,13 @@ import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
|
|
3
3
|
|
|
4
4
|
export interface IInputProps extends IDataTestIdProp {
|
|
5
5
|
placeholder?: string;
|
|
6
|
-
inputMessage
|
|
6
|
+
inputMessage?: string;
|
|
7
7
|
type?: TextFieldEnum;
|
|
8
8
|
required?: boolean;
|
|
9
9
|
modelValue?: string;
|
|
10
10
|
hideClearButton?: boolean;
|
|
11
11
|
autocomplete?: string;
|
|
12
|
-
modelModifiers
|
|
12
|
+
modelModifiers?: object;
|
|
13
13
|
}
|
|
14
14
|
export interface IInputEmit {
|
|
15
15
|
(e: 'update:modelValue', value: string): void;
|
|
@@ -7,8 +7,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
load: () => void;
|
|
8
8
|
error: (error: unknown) => void;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IPdfPreviewProps>>> & Readonly<{
|
|
10
|
-
onError?: ((error: unknown) => any) | undefined;
|
|
11
10
|
onLoad?: (() => any) | undefined;
|
|
11
|
+
onError?: ((error: unknown) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13
13
|
export default _default;
|
|
14
14
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -6,8 +6,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
src: string | undefined;
|
|
8
8
|
}>>> & Readonly<{
|
|
9
|
-
onError?: ((error: Event) => any) | undefined;
|
|
10
9
|
onLoad?: (() => any) | undefined;
|
|
10
|
+
onError?: ((error: Event) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
12
|
export default _default;
|
|
13
13
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -8,9 +8,7 @@ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], _
|
|
|
8
8
|
attrs: any;
|
|
9
9
|
slots: ReturnType<() => {}>;
|
|
10
10
|
emit: typeof __VLS_emit;
|
|
11
|
-
}>) => import('vue').VNode
|
|
12
|
-
[key: string]: any;
|
|
13
|
-
}> & {
|
|
11
|
+
}>) => import('vue').VNode & {
|
|
14
12
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
15
13
|
};
|
|
16
14
|
export default _default;
|
|
@@ -31,9 +31,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
31
31
|
readonly "onUnmount-paginate"?: ((isCanPagiante: boolean) => any) | undefined;
|
|
32
32
|
readonly "onOn-mounted"?: (() => any) | undefined;
|
|
33
33
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "isShowVerticalScroll" | "isShowHorizontalScroll">;
|
|
34
|
-
$attrs:
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
34
|
+
$attrs: import('vue').Attrs;
|
|
37
35
|
$refs: {
|
|
38
36
|
[x: string]: unknown;
|
|
39
37
|
};
|
|
@@ -105,11 +103,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
105
103
|
"onUnmount-scroll"?: ((event: Event) => any) | undefined;
|
|
106
104
|
"onUnmount-paginate"?: ((isCanPagiante: boolean) => any) | undefined;
|
|
107
105
|
"onOn-mounted"?: (() => any) | undefined;
|
|
108
|
-
}>, "scrollToTop" | "setHeightSlot" | "slotRef" | ("isShowVerticalScroll" | "isShowHorizontalScroll")> &
|
|
106
|
+
}>, "scrollToTop" | "setHeightSlot" | "slotRef" | ("isShowVerticalScroll" | "isShowHorizontalScroll")> & {
|
|
109
107
|
scrollToTop: () => void;
|
|
110
108
|
setHeightSlot: () => void;
|
|
111
|
-
slotRef:
|
|
112
|
-
}
|
|
109
|
+
slotRef: HTMLElement | null;
|
|
110
|
+
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
113
111
|
$slots: {
|
|
114
112
|
default?(_: {}): any;
|
|
115
113
|
};
|
|
@@ -126,9 +124,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
126
124
|
readonly "onUnmount-paginate"?: ((isCanPagiante: boolean) => any) | undefined;
|
|
127
125
|
readonly "onOn-mounted"?: (() => any) | undefined;
|
|
128
126
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "isShowVerticalScroll" | "isShowHorizontalScroll">;
|
|
129
|
-
$attrs:
|
|
130
|
-
[x: string]: unknown;
|
|
131
|
-
};
|
|
127
|
+
$attrs: import('vue').Attrs;
|
|
132
128
|
$refs: {
|
|
133
129
|
[x: string]: unknown;
|
|
134
130
|
};
|
|
@@ -200,11 +196,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
200
196
|
"onUnmount-scroll"?: ((event: Event) => any) | undefined;
|
|
201
197
|
"onUnmount-paginate"?: ((isCanPagiante: boolean) => any) | undefined;
|
|
202
198
|
"onOn-mounted"?: (() => any) | undefined;
|
|
203
|
-
}>, "scrollToTop" | "setHeightSlot" | "slotRef" | ("isShowVerticalScroll" | "isShowHorizontalScroll")> &
|
|
199
|
+
}>, "scrollToTop" | "setHeightSlot" | "slotRef" | ("isShowVerticalScroll" | "isShowHorizontalScroll")> & {
|
|
204
200
|
scrollToTop: () => void;
|
|
205
201
|
setHeightSlot: () => void;
|
|
206
|
-
slotRef:
|
|
207
|
-
}
|
|
202
|
+
slotRef: HTMLElement | null;
|
|
203
|
+
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
208
204
|
$slots: {
|
|
209
205
|
default?(_: {}): any;
|
|
210
206
|
};
|
|
@@ -7,14 +7,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
8
|
click: (type: MenuTypeEnum) => void;
|
|
9
9
|
"unmount-qr-auth": () => void;
|
|
10
|
-
|
|
10
|
+
"theme-change": (value: boolean) => void;
|
|
11
11
|
languageSwitch: (value: IChangeSwitchEmit) => void;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {
|
|
13
13
|
dataTestid: string;
|
|
14
14
|
}>>> & Readonly<{
|
|
15
15
|
onClick?: ((type: MenuTypeEnum) => any) | undefined;
|
|
16
16
|
"onUnmount-qr-auth"?: (() => any) | undefined;
|
|
17
|
-
|
|
17
|
+
"onTheme-change"?: ((value: boolean) => any) | undefined;
|
|
18
18
|
onLanguageSwitch?: ((value: IChangeSwitchEmit) => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
20
|
dataTestid: string;
|
|
@@ -4,20 +4,23 @@ import { IMenuProps } from './interface/interface';
|
|
|
4
4
|
|
|
5
5
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {
|
|
6
6
|
dataTestid: string;
|
|
7
|
+
isBlackTheme: boolean;
|
|
7
8
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
9
|
click: (type: MenuTypeEnum) => void;
|
|
9
10
|
"unmount-qr-auth": () => void;
|
|
10
|
-
|
|
11
|
+
"theme-change": () => void;
|
|
11
12
|
languageSwitch: (value: IChangeSwitchEmit) => void;
|
|
12
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IMenuProps>, {
|
|
13
14
|
dataTestid: string;
|
|
15
|
+
isBlackTheme: boolean;
|
|
14
16
|
}>>> & Readonly<{
|
|
15
17
|
onClick?: ((type: MenuTypeEnum) => any) | undefined;
|
|
16
18
|
"onUnmount-qr-auth"?: (() => any) | undefined;
|
|
17
|
-
|
|
19
|
+
"onTheme-change"?: (() => any) | undefined;
|
|
18
20
|
onLanguageSwitch?: ((value: IChangeSwitchEmit) => any) | undefined;
|
|
19
21
|
}>, {
|
|
20
22
|
dataTestid: string;
|
|
23
|
+
isBlackTheme: boolean;
|
|
21
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
22
25
|
export default _default;
|
|
23
26
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|