@dpa-id-components/dpa-shared-components 9.5.2 → 9.8.0
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/bookmark-CBbie78X.mjs +19 -0
- package/dist/bookmark-fill-CijlGeem.mjs +19 -0
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +120 -98
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +27 -24
- package/dist/dpa-shared-components.mjs +6255 -6231
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -32,18 +32,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
32
32
|
cancel?: string;
|
|
33
33
|
submit?: string;
|
|
34
34
|
firstAvailableDate?: number;
|
|
35
|
-
minDate?: Date;
|
|
35
|
+
minDate?: Date | string;
|
|
36
36
|
maxDate?: Date;
|
|
37
|
-
autoRange?: number |
|
|
38
|
-
maxRange?: number | string |
|
|
37
|
+
autoRange?: string | number | undefined;
|
|
38
|
+
maxRange?: number | string | undefined;
|
|
39
39
|
activeState?: boolean;
|
|
40
40
|
disabledState?: boolean;
|
|
41
41
|
monthPicker?: boolean;
|
|
42
|
-
customFormatCallback
|
|
42
|
+
customFormatCallback: any;
|
|
43
43
|
inputLabel?: string;
|
|
44
44
|
iconLeft?: (typeof iconNames)[number] | null;
|
|
45
45
|
utc?: boolean;
|
|
46
|
-
teleport?: boolean | string
|
|
46
|
+
teleport?: boolean | string;
|
|
47
47
|
closeOnScroll?: boolean;
|
|
48
48
|
enableQuickfilterToggle?: boolean;
|
|
49
49
|
}>, {
|
|
@@ -65,19 +65,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
65
65
|
cancel: string;
|
|
66
66
|
submit: string;
|
|
67
67
|
firstAvailableDate: number;
|
|
68
|
-
minDate: Date;
|
|
69
|
-
maxDate:
|
|
70
|
-
autoRange:
|
|
71
|
-
maxRange:
|
|
68
|
+
minDate: () => Date;
|
|
69
|
+
maxDate: undefined;
|
|
70
|
+
autoRange: undefined;
|
|
71
|
+
maxRange: undefined;
|
|
72
72
|
activeState: boolean;
|
|
73
73
|
disabledState: boolean;
|
|
74
74
|
monthPicker: boolean;
|
|
75
75
|
inputLabel: string;
|
|
76
76
|
iconLeft: null;
|
|
77
77
|
utc: boolean;
|
|
78
|
-
teleport:
|
|
78
|
+
teleport: undefined;
|
|
79
79
|
closeOnScroll: boolean;
|
|
80
80
|
enableQuickfilterToggle: boolean;
|
|
81
|
+
customFormatCallback: undefined;
|
|
81
82
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
82
83
|
"date-changed": (date: Date | [Date, Date]) => void;
|
|
83
84
|
close: () => void;
|
|
@@ -106,18 +107,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
106
107
|
cancel?: string;
|
|
107
108
|
submit?: string;
|
|
108
109
|
firstAvailableDate?: number;
|
|
109
|
-
minDate?: Date;
|
|
110
|
+
minDate?: Date | string;
|
|
110
111
|
maxDate?: Date;
|
|
111
|
-
autoRange?: number |
|
|
112
|
-
maxRange?: number | string |
|
|
112
|
+
autoRange?: string | number | undefined;
|
|
113
|
+
maxRange?: number | string | undefined;
|
|
113
114
|
activeState?: boolean;
|
|
114
115
|
disabledState?: boolean;
|
|
115
116
|
monthPicker?: boolean;
|
|
116
|
-
customFormatCallback
|
|
117
|
+
customFormatCallback: any;
|
|
117
118
|
inputLabel?: string;
|
|
118
119
|
iconLeft?: (typeof iconNames)[number] | null;
|
|
119
120
|
utc?: boolean;
|
|
120
|
-
teleport?: boolean | string
|
|
121
|
+
teleport?: boolean | string;
|
|
121
122
|
closeOnScroll?: boolean;
|
|
122
123
|
enableQuickfilterToggle?: boolean;
|
|
123
124
|
}>, {
|
|
@@ -139,19 +140,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
139
140
|
cancel: string;
|
|
140
141
|
submit: string;
|
|
141
142
|
firstAvailableDate: number;
|
|
142
|
-
minDate: Date;
|
|
143
|
-
maxDate:
|
|
144
|
-
autoRange:
|
|
145
|
-
maxRange:
|
|
143
|
+
minDate: () => Date;
|
|
144
|
+
maxDate: undefined;
|
|
145
|
+
autoRange: undefined;
|
|
146
|
+
maxRange: undefined;
|
|
146
147
|
activeState: boolean;
|
|
147
148
|
disabledState: boolean;
|
|
148
149
|
monthPicker: boolean;
|
|
149
150
|
inputLabel: string;
|
|
150
151
|
iconLeft: null;
|
|
151
152
|
utc: boolean;
|
|
152
|
-
teleport:
|
|
153
|
+
teleport: undefined;
|
|
153
154
|
closeOnScroll: boolean;
|
|
154
155
|
enableQuickfilterToggle: boolean;
|
|
156
|
+
customFormatCallback: undefined;
|
|
155
157
|
}>>> & {
|
|
156
158
|
onReset?: (() => any) | undefined;
|
|
157
159
|
onClose?: (() => any) | undefined;
|
|
@@ -181,16 +183,17 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
181
183
|
actionArea: boolean;
|
|
182
184
|
actionAreaExtraContent: string;
|
|
183
185
|
firstAvailableDate: number;
|
|
184
|
-
minDate: Date;
|
|
186
|
+
minDate: Date | string;
|
|
185
187
|
maxDate: Date;
|
|
186
|
-
autoRange:
|
|
187
|
-
maxRange:
|
|
188
|
+
autoRange: string | number;
|
|
189
|
+
maxRange: string | number;
|
|
188
190
|
activeState: boolean;
|
|
189
191
|
disabledState: boolean;
|
|
190
192
|
monthPicker: boolean;
|
|
193
|
+
customFormatCallback: any;
|
|
191
194
|
inputLabel: string;
|
|
192
195
|
utc: boolean;
|
|
193
|
-
teleport: boolean | string
|
|
196
|
+
teleport: boolean | string;
|
|
194
197
|
closeOnScroll: boolean;
|
|
195
198
|
enableQuickfilterToggle: boolean;
|
|
196
199
|
}, {}>;
|