sep-yui 0.0.63 → 0.0.65
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/Checkbox/interface/interface.d.ts +1 -0
- package/dist/components/CopyIcon/CopyIcon.vue.d.ts +27 -0
- package/dist/components/CopyIcon/interface/interface.d.ts +3 -0
- package/dist/components/Icon/enum/enum.d.ts +2 -1
- package/dist/components/Icon/icons.d.ts +1 -0
- package/dist/components/Slider/Slider.vue.d.ts +3 -1
- package/dist/components/Slider/interface/interface.d.ts +0 -3
- package/dist/components/Textarea/Textarea.vue.d.ts +5 -2
- package/dist/components/Textarea/interface/interface.d.ts +1 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/sep-yui.es.ts +2935 -2900
- package/dist/sep-yui.umd.ts +34 -44
- package/dist/style.css +1 -1
- package/package.json +2 -3
@@ -0,0 +1,27 @@
|
|
1
|
+
import { ICopyIconProps } from './interface/interface';
|
2
|
+
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICopyIconProps>, {
|
4
|
+
content: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICopyIconProps>, {
|
6
|
+
content: string;
|
7
|
+
}>>>, {
|
8
|
+
content: string;
|
9
|
+
}, {}>;
|
10
|
+
export default _default;
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
12
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
15
|
+
} : {
|
16
|
+
type: import('vue').PropType<T[K]>;
|
17
|
+
required: true;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
type __VLS_WithDefaults<P, D> = {
|
21
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
22
|
+
default: D[K];
|
23
|
+
}> : P[K];
|
24
|
+
};
|
25
|
+
type __VLS_Prettify<T> = {
|
26
|
+
[K in keyof T]: T[K];
|
27
|
+
} & {};
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { ISliderProps } from './interface/interface';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {}>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {}>, {
|
4
|
+
setSlide: (index: number) => void;
|
5
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISliderProps>, {}>>>, {}, {}>;
|
4
6
|
export default _default;
|
5
7
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
6
8
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -2,14 +2,17 @@ import { ITextareaProps } from './interface/interface';
|
|
2
2
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
|
4
4
|
required: boolean;
|
5
|
+
modelValue: string;
|
5
6
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
6
|
-
|
7
|
+
"update:modelValue": (value: string) => void;
|
7
8
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
|
8
9
|
required: boolean;
|
10
|
+
modelValue: string;
|
9
11
|
}>>> & {
|
10
|
-
|
12
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
11
13
|
}, {
|
12
14
|
required: boolean;
|
15
|
+
modelValue: string;
|
13
16
|
}, {}>;
|
14
17
|
export default _default;
|
15
18
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -18,9 +18,10 @@ import { default as Checkbox } from './Checkbox/Checkbox.vue';
|
|
18
18
|
import { default as UserMenu } from './UserMenu/UserMenu.vue';
|
19
19
|
import { default as Textarea } from './Textarea/Textarea.vue';
|
20
20
|
import { default as PushNotification } from './Notification/Notification.vue';
|
21
|
+
import { default as CopyIcon } from './CopyIcon/CopyIcon.vue';
|
21
22
|
|
22
23
|
declare const _default: {
|
23
24
|
install: (app: App) => void;
|
24
25
|
};
|
25
26
|
export default _default;
|
26
|
-
export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Textarea, Filter, Icon, Search, PushNotification, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu };
|
27
|
+
export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Textarea, Filter, Icon, Search, PushNotification, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu, CopyIcon };
|