sep-yui 0.1.0 → 0.1.2
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/Input/Input.vue.d.ts +3 -0
- package/dist/components/Input/interface/interface.d.ts +1 -0
- package/dist/components/InputNumber/InputNumber.vue.d.ts +3 -0
- package/dist/components/InputNumber/interface/interface.d.ts +1 -0
- package/dist/components/Popover/Popover.vue.d.ts +6 -2
- package/dist/components/Popover/interface/interface.d.ts +1 -0
- package/dist/components/Textarea/Textarea.vue.d.ts +3 -0
- package/dist/components/Textarea/interface/interface.d.ts +1 -0
- package/dist/sep-yui.es.ts +544 -536
- package/dist/sep-yui.umd.ts +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
7
7
|
inputMessage: string;
|
8
8
|
modelValue: string;
|
9
9
|
hideClearButton: boolean;
|
10
|
+
modelModifiers: () => {};
|
10
11
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
11
12
|
"update:modelValue": (value: string) => void;
|
12
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputProps>, {
|
@@ -15,12 +16,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
15
16
|
inputMessage: string;
|
16
17
|
modelValue: string;
|
17
18
|
hideClearButton: boolean;
|
19
|
+
modelModifiers: () => {};
|
18
20
|
}>>> & {
|
19
21
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
20
22
|
}, {
|
21
23
|
type: TextFieldEnum;
|
22
24
|
required: boolean;
|
23
25
|
modelValue: string;
|
26
|
+
modelModifiers: object;
|
24
27
|
inputMessage: string;
|
25
28
|
hideClearButton: boolean;
|
26
29
|
}, {}>;
|
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
6
6
|
min: number;
|
7
7
|
max: number;
|
8
8
|
size: SizesEnum;
|
9
|
+
modelModifiers: () => {};
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
10
11
|
"update:modelValue": (value: number) => void;
|
11
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputNumberProps>, {
|
@@ -13,11 +14,13 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
13
14
|
min: number;
|
14
15
|
max: number;
|
15
16
|
size: SizesEnum;
|
17
|
+
modelModifiers: () => {};
|
16
18
|
}>>> & {
|
17
19
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
18
20
|
}, {
|
19
21
|
size: SizesEnum.small | SizesEnum.medium;
|
20
22
|
modelValue: number;
|
23
|
+
modelModifiers: object;
|
21
24
|
min: number;
|
22
25
|
max: number;
|
23
26
|
}, {}>;
|
@@ -5,11 +5,15 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
5
5
|
iconName: IconNameEnum;
|
6
6
|
options: () => never[];
|
7
7
|
tooltip: string;
|
8
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
9
|
+
close: () => void;
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
|
9
11
|
iconName: IconNameEnum;
|
10
12
|
options: () => never[];
|
11
13
|
tooltip: string;
|
12
|
-
}
|
14
|
+
}>>> & {
|
15
|
+
onClose?: (() => any) | undefined;
|
16
|
+
}, {
|
13
17
|
options: IPopoverOption[];
|
14
18
|
tooltip: string;
|
15
19
|
iconName: IconNameEnum;
|
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
6
6
|
modelValue: string;
|
7
7
|
readonly: boolean;
|
8
8
|
type: TextareaTypeEnum;
|
9
|
+
modelModifiers: () => {};
|
9
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
10
11
|
"update:modelValue": (value: string) => void;
|
11
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
|
@@ -13,12 +14,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
13
14
|
modelValue: string;
|
14
15
|
readonly: boolean;
|
15
16
|
type: TextareaTypeEnum;
|
17
|
+
modelModifiers: () => {};
|
16
18
|
}>>> & {
|
17
19
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
18
20
|
}, {
|
19
21
|
type: TextareaTypeEnum;
|
20
22
|
required: boolean;
|
21
23
|
modelValue: string;
|
24
|
+
modelModifiers: object;
|
22
25
|
readonly: boolean;
|
23
26
|
}, {}>;
|
24
27
|
export default _default;
|