sep-yui 0.1.10 → 0.1.12
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 +17 -3
- package/dist/components/Calendar/DataPickerChoose.vue.d.ts +17 -3
- package/dist/components/Calendar/DatePicker.vue.d.ts +21 -12
- package/dist/components/Calendar/DatePickerRange.vue.d.ts +21 -12
- package/dist/components/Calendar/interfaces/interfaces.d.ts +3 -1
- package/dist/components/Modal/ModalAnimated.vue.d.ts +7 -3
- package/dist/components/Modal/enum/index.d.ts +4 -0
- package/dist/components/Modal/interface/interface.d.ts +4 -0
- package/dist/sep-yui.es.ts +3737 -3700
- package/dist/sep-yui.umd.ts +15 -15
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -1,12 +1,18 @@
|
|
1
1
|
import { IDatePickerProps, IRangeForDatePicker } from './interfaces/interfaces';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IDatePickerProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDatePickerProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
change: (value: Date | IRangeForDatePicker | null) => void;
|
5
7
|
click: () => void;
|
6
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDatePickerProps
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDatePickerProps>, {
|
9
|
+
dataTestid: string;
|
10
|
+
}>>> & {
|
7
11
|
onChange?: ((value: Date | IRangeForDatePicker | null) => any) | undefined;
|
8
12
|
onClick?: (() => any) | undefined;
|
9
|
-
}, {
|
13
|
+
}, {
|
14
|
+
dataTestid: string;
|
15
|
+
}, {}>;
|
10
16
|
export default _default;
|
11
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
12
18
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -17,3 +23,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
23
|
required: true;
|
18
24
|
};
|
19
25
|
};
|
26
|
+
type __VLS_WithDefaults<P, D> = {
|
27
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
28
|
+
default: D[K];
|
29
|
+
}> : P[K];
|
30
|
+
};
|
31
|
+
type __VLS_Prettify<T> = {
|
32
|
+
[K in keyof T]: T[K];
|
33
|
+
} & {};
|
@@ -1,12 +1,18 @@
|
|
1
1
|
import { IDatePickerChooserProps } from './interfaces/interfaces';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<IDatePickerChooserProps>, {
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDatePickerChooserProps>, {
|
4
|
+
dataTestid: string;
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
4
6
|
clear: () => void;
|
5
7
|
click: () => void;
|
6
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<IDatePickerChooserProps
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IDatePickerChooserProps>, {
|
9
|
+
dataTestid: string;
|
10
|
+
}>>> & {
|
7
11
|
onClick?: (() => any) | undefined;
|
8
12
|
onClear?: (() => any) | undefined;
|
9
|
-
}, {
|
13
|
+
}, {
|
14
|
+
dataTestid: string;
|
15
|
+
}, {}>;
|
10
16
|
export default _default;
|
11
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
12
18
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -17,3 +23,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
23
|
required: true;
|
18
24
|
};
|
19
25
|
};
|
26
|
+
type __VLS_WithDefaults<P, D> = {
|
27
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
28
|
+
default: D[K];
|
29
|
+
}> : P[K];
|
30
|
+
};
|
31
|
+
type __VLS_Prettify<T> = {
|
32
|
+
[K in keyof T]: T[K];
|
33
|
+
} & {};
|
@@ -1,9 +1,19 @@
|
|
1
1
|
|
2
2
|
declare const _default: import('vue').DefineComponent<{
|
3
3
|
modelValue: import('vue').PropType<Date | null>;
|
4
|
+
dataTestid: {
|
5
|
+
type: import('vue').PropType<string>;
|
6
|
+
default: string;
|
7
|
+
};
|
4
8
|
disabled: {
|
5
9
|
type: import('vue').PropType<boolean>;
|
6
10
|
};
|
11
|
+
isRange: {
|
12
|
+
type: import('vue').PropType<boolean>;
|
13
|
+
};
|
14
|
+
isSmall: {
|
15
|
+
type: import('vue').PropType<boolean>;
|
16
|
+
};
|
7
17
|
range: {
|
8
18
|
type: import('vue').PropType<import('./interfaces/interfaces').IRangeForDatePicker>;
|
9
19
|
};
|
@@ -23,12 +33,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
23
33
|
endDate: {
|
24
34
|
type: import('vue').PropType<Date | null>;
|
25
35
|
};
|
26
|
-
isRange: {
|
27
|
-
type: import('vue').PropType<boolean>;
|
28
|
-
};
|
29
|
-
isSmall: {
|
30
|
-
type: import('vue').PropType<boolean>;
|
31
|
-
};
|
32
36
|
}, {
|
33
37
|
clearChoose: () => void;
|
34
38
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
@@ -36,9 +40,19 @@ declare const _default: import('vue').DefineComponent<{
|
|
36
40
|
change: (value: Date | null) => void;
|
37
41
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
38
42
|
modelValue: import('vue').PropType<Date | null>;
|
43
|
+
dataTestid: {
|
44
|
+
type: import('vue').PropType<string>;
|
45
|
+
default: string;
|
46
|
+
};
|
39
47
|
disabled: {
|
40
48
|
type: import('vue').PropType<boolean>;
|
41
49
|
};
|
50
|
+
isRange: {
|
51
|
+
type: import('vue').PropType<boolean>;
|
52
|
+
};
|
53
|
+
isSmall: {
|
54
|
+
type: import('vue').PropType<boolean>;
|
55
|
+
};
|
42
56
|
range: {
|
43
57
|
type: import('vue').PropType<import('./interfaces/interfaces').IRangeForDatePicker>;
|
44
58
|
};
|
@@ -58,16 +72,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
58
72
|
endDate: {
|
59
73
|
type: import('vue').PropType<Date | null>;
|
60
74
|
};
|
61
|
-
isRange: {
|
62
|
-
type: import('vue').PropType<boolean>;
|
63
|
-
};
|
64
|
-
isSmall: {
|
65
|
-
type: import('vue').PropType<boolean>;
|
66
|
-
};
|
67
75
|
}>> & {
|
68
76
|
onChange?: ((value: Date | null) => any) | undefined;
|
69
77
|
onClear?: (() => any) | undefined;
|
70
78
|
}, {
|
79
|
+
dataTestid: string;
|
71
80
|
locale: string;
|
72
81
|
}, {}>;
|
73
82
|
export default _default;
|
@@ -3,9 +3,19 @@ import { IRangeForDatePicker } from './interfaces/interfaces';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<{
|
4
4
|
startDate: import('vue').PropType<any>;
|
5
5
|
endDate: import('vue').PropType<any>;
|
6
|
+
dataTestid: {
|
7
|
+
type: import('vue').PropType<string>;
|
8
|
+
default: string;
|
9
|
+
};
|
6
10
|
disabled: {
|
7
11
|
type: import('vue').PropType<boolean>;
|
8
12
|
};
|
13
|
+
isRange: {
|
14
|
+
type: import('vue').PropType<boolean>;
|
15
|
+
};
|
16
|
+
isSmall: {
|
17
|
+
type: import('vue').PropType<boolean>;
|
18
|
+
};
|
9
19
|
range: {
|
10
20
|
type: import('vue').PropType<IRangeForDatePicker>;
|
11
21
|
};
|
@@ -19,12 +29,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
19
29
|
setDate: {
|
20
30
|
type: import('vue').PropType<Date | null>;
|
21
31
|
};
|
22
|
-
isRange: {
|
23
|
-
type: import('vue').PropType<boolean>;
|
24
|
-
};
|
25
|
-
isSmall: {
|
26
|
-
type: import('vue').PropType<boolean>;
|
27
|
-
};
|
28
32
|
}, {
|
29
33
|
clear: () => void;
|
30
34
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
@@ -32,9 +36,19 @@ declare const _default: import('vue').DefineComponent<{
|
|
32
36
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
33
37
|
startDate: import('vue').PropType<any>;
|
34
38
|
endDate: import('vue').PropType<any>;
|
39
|
+
dataTestid: {
|
40
|
+
type: import('vue').PropType<string>;
|
41
|
+
default: string;
|
42
|
+
};
|
35
43
|
disabled: {
|
36
44
|
type: import('vue').PropType<boolean>;
|
37
45
|
};
|
46
|
+
isRange: {
|
47
|
+
type: import('vue').PropType<boolean>;
|
48
|
+
};
|
49
|
+
isSmall: {
|
50
|
+
type: import('vue').PropType<boolean>;
|
51
|
+
};
|
38
52
|
range: {
|
39
53
|
type: import('vue').PropType<IRangeForDatePicker>;
|
40
54
|
};
|
@@ -48,15 +62,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
48
62
|
setDate: {
|
49
63
|
type: import('vue').PropType<Date | null>;
|
50
64
|
};
|
51
|
-
isRange: {
|
52
|
-
type: import('vue').PropType<boolean>;
|
53
|
-
};
|
54
|
-
isSmall: {
|
55
|
-
type: import('vue').PropType<boolean>;
|
56
|
-
};
|
57
65
|
}>> & {
|
58
66
|
onChange?: ((value: IRangeForDatePicker) => any) | undefined;
|
59
67
|
}, {
|
68
|
+
dataTestid: string;
|
60
69
|
locale: string;
|
61
70
|
}, {}>;
|
62
71
|
export default _default;
|
@@ -1,18 +1,22 @@
|
|
1
|
-
import {
|
1
|
+
import { IModalProps } from './interface/interface';
|
2
|
+
import { ModalAnimateEnum } from './enum';
|
2
3
|
|
3
4
|
declare function __VLS_template(): {
|
4
5
|
default?(_: {}): any;
|
5
6
|
};
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IModalProps>, {
|
7
8
|
dataTestid: string;
|
9
|
+
animateType: ModalAnimateEnum;
|
8
10
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
9
11
|
close: () => void;
|
10
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
12
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IModalProps>, {
|
11
13
|
dataTestid: string;
|
14
|
+
animateType: ModalAnimateEnum;
|
12
15
|
}>>> & {
|
13
16
|
onClose?: (() => any) | undefined;
|
14
17
|
}, {
|
15
18
|
dataTestid: string;
|
19
|
+
animateType: ModalAnimateEnum;
|
16
20
|
}, {}>;
|
17
21
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
18
22
|
export default _default;
|
@@ -1,7 +1,11 @@
|
|
1
1
|
import { IDataTestIdProp } from '../../../common/dataTestidProps';
|
2
|
+
import { ModalAnimateEnum } from '../enum';
|
2
3
|
|
3
4
|
export interface IDialogProps extends IDataTestIdProp {
|
4
5
|
open: boolean;
|
5
6
|
width?: string;
|
6
7
|
height?: string;
|
7
8
|
}
|
9
|
+
export interface IModalProps extends IDialogProps {
|
10
|
+
animateType?: ModalAnimateEnum;
|
11
|
+
}
|