@cnamts/synapse 0.0.8-alpha → 0.0.10-alpha
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/design-system-v3.d.ts +1152 -127
- package/dist/design-system-v3.js +4888 -2605
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/settings.scss +1 -1
- package/src/components/ContextualMenu/Accessibilite.mdx +14 -0
- package/src/components/ContextualMenu/Accessibilite.stories.ts +191 -0
- package/src/components/ContextualMenu/AccessibiliteItems.ts +89 -0
- package/src/components/ContextualMenu/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SySelect/SySelect.stories.ts +7 -7
- package/src/components/Customs/SySelect/SySelect.vue +9 -4
- package/src/components/Customs/SySelect/tests/SySelect.spec.ts +2 -2
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +187 -2
- package/src/components/Customs/SyTextField/SyTextField.vue +185 -16
- package/src/components/Customs/SyTextField/tests/SyTextField.spec.ts +2 -4
- package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +18 -16
- package/src/components/Customs/SyTextField/types.d.ts +2 -2
- package/src/components/DatePicker/Accessibilite.mdx +14 -0
- package/src/components/DatePicker/Accessibilite.stories.ts +191 -0
- package/src/components/DatePicker/AccessibiliteItems.ts +233 -0
- package/src/components/DatePicker/DatePicker.mdx +186 -0
- package/src/components/DatePicker/DatePicker.stories.ts +787 -0
- package/src/components/DatePicker/DatePicker.vue +574 -0
- package/src/components/DatePicker/DateTextInput.vue +409 -0
- package/src/components/DatePicker/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DatePicker/tests/DatePicker.spec.ts +266 -0
- package/src/components/DialogBox/DialogBox.stories.ts +1 -1
- package/src/components/ExternalLinks/Accessibilite.mdx +14 -0
- package/src/components/ExternalLinks/Accessibilite.stories.ts +191 -0
- package/src/components/ExternalLinks/AccessibiliteItems.ts +197 -0
- package/src/components/ExternalLinks/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/ExternalLinks/tests/__snapshots__/ExternalLinks.spec.ts.snap +9 -9
- package/src/components/FileList/FileList.mdx +103 -0
- package/src/components/FileList/FileList.stories.ts +562 -0
- package/src/components/FileList/FileList.vue +78 -0
- package/src/components/FileList/UploadItem/UploadItem.vue +270 -0
- package/src/components/FileList/UploadItem/locales.ts +9 -0
- package/src/components/FileList/tests/FileList.spec.ts +176 -0
- package/src/components/FilePreview/FilePreview.mdx +82 -0
- package/src/components/FilePreview/FilePreview.stories.ts +242 -0
- package/src/components/FilePreview/FilePreview.vue +68 -0
- package/src/components/FilePreview/config.ts +10 -0
- package/src/components/FilePreview/locales.ts +4 -0
- package/src/components/FilePreview/tests/FilePreview.spec.ts +124 -0
- package/src/components/FilePreview/tests/__snapshots__/FilePreview.spec.ts.snap +11 -0
- package/src/components/FileUpload/FileUpload.mdx +165 -0
- package/src/components/FileUpload/FileUpload.stories.ts +429 -0
- package/src/components/FileUpload/FileUpload.vue +195 -0
- package/src/components/FileUpload/FileUploadContent.vue +109 -0
- package/src/components/FileUpload/locales.ts +10 -0
- package/src/components/FileUpload/tests/FileUpload.spec.ts +332 -0
- package/src/components/FileUpload/tests/__snapshots__/FileUpload.spec.ts.snap +7 -0
- package/src/components/FileUpload/useFileDrop.ts +23 -0
- package/src/components/FileUpload/validateFiles.ts +39 -0
- package/src/components/NirField/NirField.stories.ts +1 -1
- package/src/components/NirField/NirField.vue +2 -1
- package/src/components/PasswordField/Accessibilite.mdx +14 -0
- package/src/components/PasswordField/Accessibilite.stories.ts +191 -0
- package/src/components/PasswordField/AccessibiliteItems.ts +184 -0
- package/src/components/PasswordField/PasswordField.vue +3 -3
- package/src/components/PasswordField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PeriodField/PeriodField.mdx +32 -0
- package/src/components/PeriodField/PeriodField.stories.ts +807 -0
- package/src/components/PeriodField/PeriodField.vue +355 -0
- package/src/components/PeriodField/tests/PeriodField.spec.ts +348 -0
- package/src/components/PhoneField/PhoneField.vue +44 -60
- package/src/components/PhoneField/tests/PhoneField.spec.ts +0 -15
- package/src/components/RangeField/Accessibilite.mdx +14 -0
- package/src/components/RangeField/Accessibilite.stories.ts +191 -0
- package/src/components/RangeField/AccessibiliteItems.ts +179 -0
- package/src/components/RangeField/RangeField.mdx +54 -0
- package/src/components/RangeField/RangeField.stories.ts +189 -0
- package/src/components/RangeField/RangeField.vue +157 -0
- package/src/components/RangeField/RangeSlider/RangeSlider.vue +387 -0
- package/src/components/RangeField/RangeSlider/Tooltip/Tooltip.vue +64 -0
- package/src/components/RangeField/RangeSlider/tests/__snapshots__/rangeSlider.spec.ts.snap +27 -0
- package/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.ts +100 -0
- package/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.ts +246 -0
- package/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.ts +204 -0
- package/src/components/RangeField/RangeSlider/tests/useThumb.spec.ts +22 -0
- package/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.ts +233 -0
- package/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.ts +150 -0
- package/src/components/RangeField/RangeSlider/tests/useTrack.spec.ts +314 -0
- package/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.ts +32 -0
- package/src/components/RangeField/RangeSlider/types.ts +15 -0
- package/src/components/RangeField/RangeSlider/useMouseSlide.ts +109 -0
- package/src/components/RangeField/RangeSlider/useRangeSlider.ts +126 -0
- package/src/components/RangeField/RangeSlider/useThumb.ts +18 -0
- package/src/components/RangeField/RangeSlider/useThumbKeyboard.ts +84 -0
- package/src/components/RangeField/RangeSlider/useTooltipsNudge.ts +92 -0
- package/src/components/RangeField/RangeSlider/useTrack.ts +116 -0
- package/src/components/RangeField/RangeSlider/vAnimateClick.ts +19 -0
- package/src/components/RangeField/config.ts +7 -0
- package/src/components/RangeField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/RangeField/locales.ts +4 -0
- package/src/components/RangeField/tests/RangeField.spec.ts +224 -0
- package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +379 -0
- package/src/components/RatingPicker/Accessibilite.mdx +14 -0
- package/src/components/RatingPicker/Accessibilite.stories.ts +191 -0
- package/src/components/RatingPicker/AccessibiliteItems.ts +208 -0
- package/src/components/RatingPicker/EmotionPicker/EmotionPicker.vue +205 -0
- package/src/components/RatingPicker/EmotionPicker/locales.ts +3 -0
- package/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.ts +104 -0
- package/src/components/RatingPicker/EmotionPicker/tests/__snapshots__/EmotionPicker.spec.ts.snap +66 -0
- package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +159 -0
- package/src/components/RatingPicker/NumberPicker/locales.ts +4 -0
- package/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.ts +73 -0
- package/src/components/RatingPicker/NumberPicker/tests/__snapshots__/NumberPicker.spec.ts.snap +105 -0
- package/src/components/RatingPicker/Rating.ts +45 -0
- package/src/components/RatingPicker/RatingPicker.mdx +56 -0
- package/src/components/RatingPicker/RatingPicker.stories.ts +515 -0
- package/src/components/RatingPicker/RatingPicker.vue +122 -0
- package/src/components/RatingPicker/StarsPicker/StarsPicker.vue +116 -0
- package/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.ts +95 -0
- package/src/components/RatingPicker/StarsPicker/tests/__snapshots__/StarsPicker.spec.ts.snap +36 -0
- package/src/components/RatingPicker/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/RatingPicker/locales.ts +3 -0
- package/src/components/RatingPicker/tests/Rating.spec.ts +104 -0
- package/src/components/RatingPicker/tests/RatingPicker.spec.ts +187 -0
- package/src/components/RatingPicker/tests/__snapshots__/RatingPicker.spec.ts.snap +108 -0
- package/src/components/SearchListField/Accessibilite.mdx +14 -0
- package/src/components/SearchListField/Accessibilite.stories.ts +191 -0
- package/src/components/SearchListField/AccessibiliteItems.ts +310 -0
- package/src/components/SearchListField/SearchListField.mdx +74 -0
- package/src/components/SearchListField/SearchListField.stories.ts +126 -0
- package/src/components/SearchListField/SearchListField.vue +194 -0
- package/src/components/SearchListField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SearchListField/locales.ts +5 -0
- package/src/components/SearchListField/tests/SearchListField.spec.ts +323 -0
- package/src/components/SearchListField/types.d.ts +4 -0
- package/src/components/SelectBtnField/Accessibilite.mdx +14 -0
- package/src/components/SelectBtnField/Accessibilite.stories.ts +191 -0
- package/src/components/SelectBtnField/AccessibiliteItems.ts +191 -0
- package/src/components/SelectBtnField/SelectBtnField.mdx +50 -0
- package/src/components/SelectBtnField/SelectBtnField.stories.ts +763 -0
- package/src/components/SelectBtnField/SelectBtnField.vue +283 -0
- package/src/components/SelectBtnField/config.ts +11 -0
- package/src/components/SelectBtnField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SelectBtnField/tests/SelectBtnField.spec.ts +327 -0
- package/src/components/SelectBtnField/tests/__snapshots__/SelectBtnField.spec.ts.snap +125 -0
- package/src/components/SelectBtnField/types.d.ts +11 -0
- package/src/components/SyAlert/SyAlert.vue +11 -9
- package/src/components/TableToolbar/TableToolbar.mdx +130 -0
- package/src/components/TableToolbar/TableToolbar.stories.ts +935 -0
- package/src/components/TableToolbar/TableToolbar.vue +168 -0
- package/src/components/TableToolbar/config.ts +24 -0
- package/src/components/TableToolbar/locales.ts +6 -0
- package/src/components/TableToolbar/tests/TableToolbar.spec.ts +166 -0
- package/src/components/TableToolbar/tests/__snapshots__/TableToolbar.spec.ts.snap +359 -0
- package/src/components/index.ts +11 -1
- package/src/composables/rules/useFieldValidation.ts +174 -44
- package/src/designTokens/index.ts +3 -3
- package/src/stories/Fondamentaux/CustomisationEtThemes.mdx +52 -2
- package/src/utils/calcHumanFileSize/index.ts +12 -0
- package/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.ts +21 -0
|
@@ -29,6 +29,8 @@ import { RouteLocationAsPathGeneric } from 'vue-router';
|
|
|
29
29
|
import { RouteLocationAsRelativeGeneric } from 'vue-router';
|
|
30
30
|
import { RouteLocationRaw } from 'vue-router';
|
|
31
31
|
import { RouteRecordRaw } from 'vue-router';
|
|
32
|
+
import { SelectBtnItem } from './types';
|
|
33
|
+
import { SelectBtnValue } from './types';
|
|
32
34
|
import { SelectItem } from './types';
|
|
33
35
|
import { SocialMediaLink } from '../SocialMediaLinks/types';
|
|
34
36
|
import { SocialMediaLink as SocialMediaLink_2 } from './types';
|
|
@@ -36,11 +38,44 @@ import { default as SySelect } from './Customs/SySelect/SySelect.vue';
|
|
|
36
38
|
import { VariantStyle } from './types';
|
|
37
39
|
|
|
38
40
|
declare type __VLS_Props = {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
modelValue?: DateInput;
|
|
42
|
+
placeholder?: string;
|
|
43
|
+
format?: string;
|
|
44
|
+
dateFormatReturn?: string;
|
|
45
|
+
isBirthDate?: boolean;
|
|
46
|
+
showWeekNumber?: boolean;
|
|
47
|
+
required?: boolean;
|
|
48
|
+
displayRange?: boolean;
|
|
49
|
+
displayIcon?: boolean;
|
|
50
|
+
displayAppendIcon?: boolean;
|
|
51
|
+
customRules?: {
|
|
52
|
+
type: string;
|
|
53
|
+
options: RuleOptions;
|
|
54
|
+
}[];
|
|
55
|
+
customWarningRules?: {
|
|
56
|
+
type: string;
|
|
57
|
+
options: RuleOptions;
|
|
58
|
+
}[];
|
|
59
|
+
isDisabled?: boolean;
|
|
60
|
+
noIcon?: boolean;
|
|
61
|
+
noCalendar?: boolean;
|
|
62
|
+
isOutlined?: boolean;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
declare type __VLS_Props_10 = CustomizableOptions & {
|
|
66
|
+
modelValue?: Record<string, unknown> | string | null;
|
|
67
|
+
items?: Record<string, unknown>[] | string[];
|
|
68
|
+
textKey?: string;
|
|
69
|
+
valueKey?: string;
|
|
70
|
+
label?: string;
|
|
71
|
+
outlined?: boolean;
|
|
72
|
+
required?: boolean;
|
|
73
|
+
errorMessages?: string | string[];
|
|
74
|
+
isHeaderToolbar?: boolean;
|
|
41
75
|
};
|
|
42
76
|
|
|
43
|
-
declare type
|
|
77
|
+
declare type __VLS_Props_11 = {
|
|
78
|
+
modelValue?: string | number | null;
|
|
44
79
|
prependIcon?: IconType;
|
|
45
80
|
appendIcon?: IconType;
|
|
46
81
|
prependInnerIcon?: IconType;
|
|
@@ -51,10 +86,51 @@ declare type __VLS_Props_10 = {
|
|
|
51
86
|
showDivider?: boolean;
|
|
52
87
|
label?: string;
|
|
53
88
|
required?: boolean;
|
|
54
|
-
errorMessages?: string[];
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
89
|
+
errorMessages?: string[] | null;
|
|
90
|
+
isReadOnly?: boolean;
|
|
91
|
+
isActive?: boolean;
|
|
92
|
+
baseColor?: string;
|
|
93
|
+
bgColor?: string;
|
|
94
|
+
centerAffix?: boolean;
|
|
95
|
+
counter?: string | number | boolean;
|
|
96
|
+
counterValue?: number | ((value: any) => number);
|
|
97
|
+
density?: 'default' | 'comfortable' | 'compact';
|
|
98
|
+
direction?: 'horizontal' | 'vertical';
|
|
99
|
+
isDirty?: boolean;
|
|
100
|
+
isDisabled?: boolean;
|
|
101
|
+
isOnError?: boolean;
|
|
102
|
+
isFlat?: boolean;
|
|
103
|
+
isFocused?: boolean;
|
|
104
|
+
areDetailsHidden?: boolean | 'auto';
|
|
105
|
+
areSpinButtonsHidden?: boolean;
|
|
106
|
+
hint?: string;
|
|
107
|
+
id?: string;
|
|
108
|
+
loading?: string | boolean;
|
|
109
|
+
maxErrors?: string | number;
|
|
110
|
+
maxWidth?: string | number;
|
|
111
|
+
messages?: string | string[];
|
|
112
|
+
minWidth?: string | number;
|
|
113
|
+
name?: string;
|
|
114
|
+
displayPersistentClear?: boolean;
|
|
115
|
+
displayPersistentCounter?: boolean;
|
|
116
|
+
displayPersistentHint?: boolean;
|
|
117
|
+
displayPersistentPlaceholder?: boolean;
|
|
118
|
+
placeholder?: string;
|
|
119
|
+
prefix?: string;
|
|
120
|
+
isReversed?: boolean;
|
|
121
|
+
role?: string;
|
|
122
|
+
rounded?: string | number | boolean;
|
|
123
|
+
isOnSingleLine?: boolean;
|
|
124
|
+
suffix?: string;
|
|
125
|
+
theme?: string;
|
|
126
|
+
isTiled?: boolean;
|
|
127
|
+
type?: string;
|
|
128
|
+
width?: string | number;
|
|
129
|
+
displayAsterisk?: boolean;
|
|
130
|
+
noIcon?: boolean;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
declare type __VLS_Props_12 = CustomizableOptions & {
|
|
58
134
|
label: string;
|
|
59
135
|
value?: string | number;
|
|
60
136
|
action?: string;
|
|
@@ -65,9 +141,9 @@ declare type __VLS_Props_11 = CustomizableOptions & {
|
|
|
65
141
|
renderHtmlValue?: boolean;
|
|
66
142
|
};
|
|
67
143
|
|
|
68
|
-
declare type
|
|
144
|
+
declare type __VLS_Props_13 = Props_2 & CustomizableOptions;
|
|
69
145
|
|
|
70
|
-
declare type
|
|
146
|
+
declare type __VLS_Props_14 = {
|
|
71
147
|
pageTitle?: string;
|
|
72
148
|
message?: string;
|
|
73
149
|
code?: string;
|
|
@@ -78,7 +154,7 @@ declare type __VLS_Props_13 = {
|
|
|
78
154
|
hideBtn?: boolean;
|
|
79
155
|
};
|
|
80
156
|
|
|
81
|
-
declare type
|
|
157
|
+
declare type __VLS_Props_15 = CustomizableOptions & {
|
|
82
158
|
items: Array<{
|
|
83
159
|
text: string;
|
|
84
160
|
href: string;
|
|
@@ -92,7 +168,31 @@ declare type __VLS_Props_14 = CustomizableOptions & {
|
|
|
92
168
|
ariaOwns?: string;
|
|
93
169
|
};
|
|
94
170
|
|
|
95
|
-
declare type
|
|
171
|
+
declare type __VLS_Props_16 = {
|
|
172
|
+
uploadList: Item_2[];
|
|
173
|
+
locales?: typeof locales;
|
|
174
|
+
} & Widthable;
|
|
175
|
+
|
|
176
|
+
declare type __VLS_Props_17 = {
|
|
177
|
+
file?: File | Blob;
|
|
178
|
+
options?: {
|
|
179
|
+
pdf?: Record<string, string>;
|
|
180
|
+
image?: Record<string, string>;
|
|
181
|
+
};
|
|
182
|
+
locales?: typeof locales_2;
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
declare type __VLS_Props_18 = {
|
|
186
|
+
modelValue: File[];
|
|
187
|
+
disabled?: boolean;
|
|
188
|
+
multiple?: boolean;
|
|
189
|
+
fileSizeMax?: number;
|
|
190
|
+
fileSizeUnits?: Array<string>;
|
|
191
|
+
allowedExtensions?: Array<string>;
|
|
192
|
+
locales?: typeof locales_3;
|
|
193
|
+
} & Widthable;
|
|
194
|
+
|
|
195
|
+
declare type __VLS_Props_19 = CustomizableOptions & {
|
|
96
196
|
a11yCompliance?: string;
|
|
97
197
|
linkItems?: LinkItem[] | null;
|
|
98
198
|
items?: LinkItem[] | null;
|
|
@@ -113,13 +213,18 @@ declare type __VLS_Props_15 = CustomizableOptions & {
|
|
|
113
213
|
light?: boolean;
|
|
114
214
|
};
|
|
115
215
|
|
|
116
|
-
declare type
|
|
216
|
+
declare type __VLS_Props_2 = {
|
|
217
|
+
hideBackIcon?: boolean;
|
|
218
|
+
dark?: boolean;
|
|
219
|
+
};
|
|
220
|
+
|
|
221
|
+
declare type __VLS_Props_20 = {
|
|
117
222
|
href: string;
|
|
118
223
|
isConnectPlus?: boolean;
|
|
119
224
|
dark?: boolean;
|
|
120
225
|
};
|
|
121
226
|
|
|
122
|
-
declare type
|
|
227
|
+
declare type __VLS_Props_21 = {
|
|
123
228
|
/** Keep the header visible */
|
|
124
229
|
sticky?: boolean;
|
|
125
230
|
/**
|
|
@@ -134,11 +239,11 @@ declare type __VLS_Props_17 = {
|
|
|
134
239
|
};
|
|
135
240
|
} & LogoProps;
|
|
136
241
|
|
|
137
|
-
declare type
|
|
242
|
+
declare type __VLS_Props_22 = {
|
|
138
243
|
title?: string;
|
|
139
244
|
};
|
|
140
245
|
|
|
141
|
-
declare type
|
|
246
|
+
declare type __VLS_Props_23 = {
|
|
142
247
|
ariaLabel?: string;
|
|
143
248
|
serviceTitle?: string;
|
|
144
249
|
serviceSubtitle?: string;
|
|
@@ -149,9 +254,7 @@ declare type __VLS_Props_19 = {
|
|
|
149
254
|
};
|
|
150
255
|
};
|
|
151
256
|
|
|
152
|
-
declare type
|
|
153
|
-
|
|
154
|
-
declare type __VLS_Props_20 = CustomizableOptions & {
|
|
257
|
+
declare type __VLS_Props_24 = CustomizableOptions & {
|
|
155
258
|
homeAriaLabel?: string;
|
|
156
259
|
serviceTitle?: string;
|
|
157
260
|
serviceSubtitle?: string;
|
|
@@ -178,7 +281,7 @@ declare type __VLS_Props_20 = CustomizableOptions & {
|
|
|
178
281
|
items?: NavigationItem[];
|
|
179
282
|
};
|
|
180
283
|
|
|
181
|
-
declare type
|
|
284
|
+
declare type __VLS_Props_25 = CustomizableOptions & {
|
|
182
285
|
modelValue?: string;
|
|
183
286
|
hideDownArrow?: boolean;
|
|
184
287
|
ariaLabel?: string;
|
|
@@ -186,7 +289,7 @@ declare type __VLS_Props_21 = CustomizableOptions & {
|
|
|
186
289
|
availableLanguages?: string[] | AllLanguagesChar;
|
|
187
290
|
};
|
|
188
291
|
|
|
189
|
-
declare type
|
|
292
|
+
declare type __VLS_Props_26 = {
|
|
190
293
|
theme?: Theme;
|
|
191
294
|
serviceTitle?: string;
|
|
192
295
|
serviceSubTitle?: string;
|
|
@@ -199,31 +302,84 @@ declare type __VLS_Props_22 = {
|
|
|
199
302
|
};
|
|
200
303
|
};
|
|
201
304
|
|
|
202
|
-
declare type
|
|
305
|
+
declare type __VLS_Props_27 = {
|
|
203
306
|
btnText?: string;
|
|
204
307
|
btnHref?: string;
|
|
205
308
|
btnLink?: RouteRecordRaw | string;
|
|
206
309
|
hideBtn?: boolean;
|
|
207
310
|
};
|
|
208
311
|
|
|
209
|
-
declare type
|
|
312
|
+
declare type __VLS_Props_28 = CustomizableOptions & {
|
|
210
313
|
closeBtnText?: string;
|
|
211
314
|
rounded?: 0 | 1 | 2 | 3 | 4 | 'xs' | 'sm' | true | 'lg' | 'xl' | 'pill' | 'circle' | 'shaped';
|
|
212
315
|
bottom?: true | false;
|
|
213
316
|
};
|
|
214
317
|
|
|
215
|
-
declare type
|
|
318
|
+
declare type __VLS_Props_29 = {
|
|
216
319
|
size?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
|
|
217
320
|
spacing?: 'xl' | 'lg' | 'md' | 'sm' | 'xs';
|
|
218
321
|
color?: string;
|
|
219
322
|
};
|
|
220
323
|
|
|
221
|
-
declare type
|
|
324
|
+
declare type __VLS_Props_3 = Props & CustomizableOptions;
|
|
325
|
+
|
|
326
|
+
declare type __VLS_Props_30 = {
|
|
327
|
+
modelValue?: string | null;
|
|
328
|
+
outlined?: boolean;
|
|
329
|
+
required?: boolean;
|
|
330
|
+
isValidateOnBlur?: boolean;
|
|
331
|
+
customRules?: any;
|
|
332
|
+
} & CustomizableOptions;
|
|
333
|
+
|
|
334
|
+
declare type __VLS_Props_31 = {
|
|
335
|
+
modelValue?: PeriodValue;
|
|
336
|
+
placeholderFrom?: string;
|
|
337
|
+
placeholderTo?: string;
|
|
338
|
+
format?: string;
|
|
339
|
+
dateFormatReturn?: string;
|
|
340
|
+
showWeekNumber?: boolean;
|
|
341
|
+
required?: boolean;
|
|
342
|
+
displayIcon?: boolean;
|
|
343
|
+
displayAppendIcon?: boolean;
|
|
344
|
+
isDisabled?: boolean;
|
|
345
|
+
noIcon?: boolean;
|
|
346
|
+
noCalendar?: boolean;
|
|
347
|
+
isOutlined?: boolean;
|
|
348
|
+
showSuccessMessages?: boolean;
|
|
349
|
+
customRules?: {
|
|
350
|
+
type: string;
|
|
351
|
+
options: RuleOptions;
|
|
352
|
+
}[];
|
|
353
|
+
customWarningRules?: {
|
|
354
|
+
type: string;
|
|
355
|
+
options: RuleOptions;
|
|
356
|
+
}[];
|
|
357
|
+
};
|
|
358
|
+
|
|
359
|
+
declare type __VLS_Props_32 = CustomizableOptions & {
|
|
360
|
+
min?: number;
|
|
361
|
+
max?: number;
|
|
362
|
+
step?: number;
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
declare type __VLS_Props_33 = CustomizableOptions & {
|
|
366
|
+
modelValue?: SelectBtnValue;
|
|
367
|
+
items?: SelectBtnItem[];
|
|
368
|
+
label?: string;
|
|
369
|
+
multiple?: boolean;
|
|
370
|
+
inline?: boolean;
|
|
371
|
+
hint?: string;
|
|
372
|
+
error?: boolean;
|
|
373
|
+
errorMessages?: string[];
|
|
374
|
+
readonly?: boolean;
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
declare type __VLS_Props_34 = {
|
|
222
378
|
label?: string;
|
|
223
379
|
target?: string;
|
|
224
380
|
};
|
|
225
381
|
|
|
226
|
-
declare type
|
|
382
|
+
declare type __VLS_Props_35 = CustomizableOptions & Widthable & {
|
|
227
383
|
hideBackBtn?: boolean;
|
|
228
384
|
backBtnText?: string;
|
|
229
385
|
titleText?: string;
|
|
@@ -233,13 +389,13 @@ declare type __VLS_Props_27 = CustomizableOptions & Widthable & {
|
|
|
233
389
|
renderHtmlValue?: boolean;
|
|
234
390
|
};
|
|
235
391
|
|
|
236
|
-
declare type
|
|
392
|
+
declare type __VLS_Props_36 = {
|
|
237
393
|
type?: 'success' | 'info' | 'warning' | 'error';
|
|
238
394
|
closable?: boolean;
|
|
239
395
|
variant?: 'tonal' | 'outlined';
|
|
240
396
|
};
|
|
241
397
|
|
|
242
|
-
declare type
|
|
398
|
+
declare type __VLS_Props_37 = CustomizableOptions & {
|
|
243
399
|
menuItems?: MenuItem_3[];
|
|
244
400
|
additionalInformation?: string;
|
|
245
401
|
fullName?: string;
|
|
@@ -248,37 +404,29 @@ declare type __VLS_Props_29 = CustomizableOptions & {
|
|
|
248
404
|
hideUserIcon?: boolean;
|
|
249
405
|
};
|
|
250
406
|
|
|
251
|
-
declare type
|
|
407
|
+
declare type __VLS_Props_4 = {
|
|
252
408
|
listTitle: string | null;
|
|
253
409
|
items: ListItem[];
|
|
254
410
|
};
|
|
255
411
|
|
|
256
|
-
declare type
|
|
257
|
-
modelValue?: string | null;
|
|
258
|
-
outlined?: boolean;
|
|
259
|
-
required?: boolean;
|
|
260
|
-
isValidateOnBlur?: boolean;
|
|
261
|
-
customRules?: any;
|
|
262
|
-
} & CustomizableOptions;
|
|
263
|
-
|
|
264
|
-
declare type __VLS_Props_4 = {
|
|
412
|
+
declare type __VLS_Props_5 = {
|
|
265
413
|
items: MenuItem[];
|
|
266
414
|
};
|
|
267
415
|
|
|
268
|
-
declare type
|
|
416
|
+
declare type __VLS_Props_6 = CustomizableOptions & {
|
|
269
417
|
items?: CookiesItems;
|
|
270
418
|
};
|
|
271
419
|
|
|
272
|
-
declare type
|
|
420
|
+
declare type __VLS_Props_7 = {
|
|
273
421
|
type: CookieTypes;
|
|
274
422
|
tableItems: Cookie[];
|
|
275
423
|
};
|
|
276
424
|
|
|
277
|
-
declare type
|
|
425
|
+
declare type __VLS_Props_8 = {
|
|
278
426
|
items: Cookie[];
|
|
279
427
|
};
|
|
280
428
|
|
|
281
|
-
declare type
|
|
429
|
+
declare type __VLS_Props_9 = CustomizableOptions & {
|
|
282
430
|
ariaLabel?: string;
|
|
283
431
|
ariaOwns?: string;
|
|
284
432
|
textToCopy: (() => string) | string;
|
|
@@ -286,29 +434,17 @@ declare type __VLS_Props_8 = CustomizableOptions & {
|
|
|
286
434
|
tooltipDuration?: number;
|
|
287
435
|
};
|
|
288
436
|
|
|
289
|
-
declare type __VLS_Props_9 = CustomizableOptions & {
|
|
290
|
-
modelValue?: Record<string, unknown> | string | null;
|
|
291
|
-
items?: Record<string, unknown>[] | string[];
|
|
292
|
-
textKey?: string;
|
|
293
|
-
valueKey?: string;
|
|
294
|
-
label?: string;
|
|
295
|
-
outlined?: boolean;
|
|
296
|
-
required?: boolean;
|
|
297
|
-
errorMessages?: string | string[];
|
|
298
|
-
isHeaderToolbar?: boolean;
|
|
299
|
-
};
|
|
300
|
-
|
|
301
437
|
declare type __VLS_PublicProps = {
|
|
302
438
|
modelValue?: string | null;
|
|
303
|
-
} &
|
|
439
|
+
} & __VLS_Props_5;
|
|
304
440
|
|
|
305
441
|
declare type __VLS_PublicProps_2 = {
|
|
306
442
|
modelValue?: typeof active['value'];
|
|
307
|
-
} &
|
|
443
|
+
} & __VLS_Props_6;
|
|
308
444
|
|
|
309
445
|
declare type __VLS_PublicProps_3 = {
|
|
310
446
|
modelValue?: boolean | undefined;
|
|
311
|
-
} &
|
|
447
|
+
} & __VLS_Props_7;
|
|
312
448
|
|
|
313
449
|
declare type __VLS_PublicProps_4 = {
|
|
314
450
|
modelValue?: boolean;
|
|
@@ -320,15 +456,19 @@ declare type __VLS_PublicProps_5 = {
|
|
|
320
456
|
|
|
321
457
|
declare type __VLS_PublicProps_6 = {
|
|
322
458
|
'burgerMenu'?: boolean;
|
|
323
|
-
} &
|
|
459
|
+
} & __VLS_Props_24;
|
|
324
460
|
|
|
325
461
|
declare type __VLS_PublicProps_7 = {
|
|
326
|
-
modelValue?:
|
|
327
|
-
} &
|
|
462
|
+
modelValue?: Array<number>;
|
|
463
|
+
} & __VLS_Props_32;
|
|
328
464
|
|
|
329
465
|
declare type __VLS_PublicProps_8 = {
|
|
466
|
+
modelValue?: boolean;
|
|
467
|
+
} & __VLS_Props_36;
|
|
468
|
+
|
|
469
|
+
declare type __VLS_PublicProps_9 = {
|
|
330
470
|
modelValue?: MenuItem_3 | null;
|
|
331
|
-
} &
|
|
471
|
+
} & __VLS_Props_37;
|
|
332
472
|
|
|
333
473
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
334
474
|
new (): {
|
|
@@ -456,12 +596,36 @@ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
|
|
|
456
596
|
};
|
|
457
597
|
};
|
|
458
598
|
|
|
599
|
+
declare type __VLS_WithTemplateSlots_29<T, S> = T & {
|
|
600
|
+
new (): {
|
|
601
|
+
$slots: S;
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
|
|
459
605
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
460
606
|
new (): {
|
|
461
607
|
$slots: S;
|
|
462
608
|
};
|
|
463
609
|
};
|
|
464
610
|
|
|
611
|
+
declare type __VLS_WithTemplateSlots_30<T, S> = T & {
|
|
612
|
+
new (): {
|
|
613
|
+
$slots: S;
|
|
614
|
+
};
|
|
615
|
+
};
|
|
616
|
+
|
|
617
|
+
declare type __VLS_WithTemplateSlots_31<T, S> = T & {
|
|
618
|
+
new (): {
|
|
619
|
+
$slots: S;
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
|
|
623
|
+
declare type __VLS_WithTemplateSlots_32<T, S> = T & {
|
|
624
|
+
new (): {
|
|
625
|
+
$slots: S;
|
|
626
|
+
};
|
|
627
|
+
};
|
|
628
|
+
|
|
465
629
|
declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
466
630
|
new (): {
|
|
467
631
|
$slots: S;
|
|
@@ -500,12 +664,12 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
500
664
|
|
|
501
665
|
declare const active: ModelRef<boolean, string, boolean, boolean>;
|
|
502
666
|
|
|
503
|
-
export declare const BackBtn: __VLS_WithTemplateSlots<DefineComponent<
|
|
667
|
+
export declare const BackBtn: __VLS_WithTemplateSlots<DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
504
668
|
icon?(_: {}): any;
|
|
505
669
|
default?(_: {}): any;
|
|
506
670
|
}>;
|
|
507
671
|
|
|
508
|
-
export declare const BackToTopBtn: __VLS_WithTemplateSlots_2<DefineComponent<
|
|
672
|
+
export declare const BackToTopBtn: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
509
673
|
target: string;
|
|
510
674
|
threshold: number;
|
|
511
675
|
nudgeRight: string | number;
|
|
@@ -517,7 +681,7 @@ nudgeBottom: string | number;
|
|
|
517
681
|
|
|
518
682
|
export declare function checkNIR(nir: string): boolean;
|
|
519
683
|
|
|
520
|
-
export declare const CollapsibleList: DefineComponent<
|
|
684
|
+
export declare const CollapsibleList: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
521
685
|
|
|
522
686
|
declare type ComponentsProps = Record<string, PropsList>;
|
|
523
687
|
|
|
@@ -543,8 +707,8 @@ customize: (...args: any[]) => void;
|
|
|
543
707
|
"update:modelValue": (value: boolean) => void;
|
|
544
708
|
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
545
709
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
546
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
547
710
|
onAccept?: ((...args: any[]) => any) | undefined;
|
|
711
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
548
712
|
onReject?: ((...args: any[]) => any) | undefined;
|
|
549
713
|
onCustomize?: ((...args: any[]) => any) | undefined;
|
|
550
714
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, any>;
|
|
@@ -561,7 +725,7 @@ declare type CookiesItems = {
|
|
|
561
725
|
|
|
562
726
|
export { CookiesSelection }
|
|
563
727
|
|
|
564
|
-
export declare const CookiesTable: __VLS_WithTemplateSlots_5<DefineComponent<
|
|
728
|
+
export declare const CookiesTable: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Partial<Record<string, (_: {
|
|
565
729
|
cookie: Cookie;
|
|
566
730
|
}) => any>>>;
|
|
567
731
|
|
|
@@ -569,10 +733,10 @@ declare type CookieTypes = 'essentials' | 'functional' | 'analytics';
|
|
|
569
733
|
|
|
570
734
|
declare function copy(): void;
|
|
571
735
|
|
|
572
|
-
export declare const CopyBtn: __VLS_WithTemplateSlots_6<DefineComponent<
|
|
736
|
+
export declare const CopyBtn: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_Props_9, {
|
|
573
737
|
copy: typeof copy;
|
|
574
738
|
tooltip: Ref<boolean, boolean>;
|
|
575
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
739
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
|
|
576
740
|
ariaLabel: string;
|
|
577
741
|
ariaOwns: string;
|
|
578
742
|
textToCopy: string | (() => string);
|
|
@@ -701,9 +865,9 @@ default: undefined;
|
|
|
701
865
|
loading: boolean;
|
|
702
866
|
maxWidth: string;
|
|
703
867
|
minWidth: string;
|
|
868
|
+
placeholder: string;
|
|
704
869
|
width: string;
|
|
705
870
|
listTitle: string;
|
|
706
|
-
placeholder: string;
|
|
707
871
|
row: boolean;
|
|
708
872
|
renderHtmlValue: boolean;
|
|
709
873
|
icons: DataListIcons | undefined;
|
|
@@ -767,16 +931,16 @@ itemWidth: string;
|
|
|
767
931
|
icons: DataListIcons_2 | undefined;
|
|
768
932
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
769
933
|
|
|
770
|
-
export declare const DataListItem: __VLS_WithTemplateSlots_10<DefineComponent<
|
|
934
|
+
export declare const DataListItem: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
771
935
|
"click:action": (...args: any[]) => void;
|
|
772
|
-
}, string, PublicProps, Readonly<
|
|
936
|
+
}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
|
|
773
937
|
"onClick:action"?: ((...args: any[]) => any) | undefined;
|
|
774
938
|
}>, {
|
|
775
|
-
icon: string;
|
|
776
|
-
value: string | number;
|
|
777
939
|
label: string;
|
|
778
|
-
action: string;
|
|
779
940
|
placeholder: string;
|
|
941
|
+
value: string | number;
|
|
942
|
+
icon: string;
|
|
943
|
+
action: string;
|
|
780
944
|
chip: boolean;
|
|
781
945
|
row: boolean;
|
|
782
946
|
renderHtmlValue: boolean;
|
|
@@ -788,6 +952,131 @@ renderHtmlValue: boolean;
|
|
|
788
952
|
action?(_: {}): any;
|
|
789
953
|
}>;
|
|
790
954
|
|
|
955
|
+
declare type DateInput = string | string[] | null | object;
|
|
956
|
+
|
|
957
|
+
declare type DateInput_2 = string | null;
|
|
958
|
+
|
|
959
|
+
export declare const DatePicker: DefineComponent<__VLS_Props, {
|
|
960
|
+
validateOnSubmit: () => any;
|
|
961
|
+
isDatePickerVisible: Ref<boolean, boolean>;
|
|
962
|
+
selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
963
|
+
errorMessages: Ref<string[], string[]>;
|
|
964
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
965
|
+
initializeSelectedDates: typeof initializeSelectedDates;
|
|
966
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
967
|
+
"update:model-value": (value: DateValue) => any;
|
|
968
|
+
closed: () => any;
|
|
969
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
970
|
+
"onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
|
|
971
|
+
onClosed?: (() => any) | undefined;
|
|
972
|
+
}>, {
|
|
973
|
+
modelValue: DateInput;
|
|
974
|
+
required: boolean;
|
|
975
|
+
isDisabled: boolean;
|
|
976
|
+
placeholder: string;
|
|
977
|
+
noIcon: boolean;
|
|
978
|
+
format: string;
|
|
979
|
+
dateFormatReturn: string;
|
|
980
|
+
isBirthDate: boolean;
|
|
981
|
+
showWeekNumber: boolean;
|
|
982
|
+
displayRange: boolean;
|
|
983
|
+
displayIcon: boolean;
|
|
984
|
+
displayAppendIcon: boolean;
|
|
985
|
+
customRules: {
|
|
986
|
+
type: string;
|
|
987
|
+
options: RuleOptions;
|
|
988
|
+
}[];
|
|
989
|
+
customWarningRules: {
|
|
990
|
+
type: string;
|
|
991
|
+
options: RuleOptions;
|
|
992
|
+
}[];
|
|
993
|
+
noCalendar: boolean;
|
|
994
|
+
isOutlined: boolean;
|
|
995
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
996
|
+
dateTextInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
997
|
+
modelValue?: (string | [string, string]) | undefined;
|
|
998
|
+
displayFormat?: string | undefined;
|
|
999
|
+
returnFormat?: string | undefined;
|
|
1000
|
+
range?: boolean | undefined;
|
|
1001
|
+
placeholder?: string | undefined;
|
|
1002
|
+
rules?: {
|
|
1003
|
+
type: string;
|
|
1004
|
+
options: RuleOptions;
|
|
1005
|
+
}[] | undefined;
|
|
1006
|
+
warningRules?: {
|
|
1007
|
+
type: string;
|
|
1008
|
+
options: RuleOptions;
|
|
1009
|
+
}[] | undefined;
|
|
1010
|
+
required?: boolean | undefined;
|
|
1011
|
+
}> & Readonly<{
|
|
1012
|
+
"onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
|
|
1013
|
+
}>, {
|
|
1014
|
+
validate: () => void;
|
|
1015
|
+
validateOnSubmit: () => boolean;
|
|
1016
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1017
|
+
"update:modelValue": (value: string | [string, string]) => any;
|
|
1018
|
+
}, PublicProps, {
|
|
1019
|
+
modelValue: string | [string, string];
|
|
1020
|
+
required: boolean;
|
|
1021
|
+
placeholder: string;
|
|
1022
|
+
rules: {
|
|
1023
|
+
type: string;
|
|
1024
|
+
options: RuleOptions;
|
|
1025
|
+
}[];
|
|
1026
|
+
displayFormat: string;
|
|
1027
|
+
returnFormat: string;
|
|
1028
|
+
range: boolean;
|
|
1029
|
+
warningRules: {
|
|
1030
|
+
type: string;
|
|
1031
|
+
options: RuleOptions;
|
|
1032
|
+
}[];
|
|
1033
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1034
|
+
P: {};
|
|
1035
|
+
B: {};
|
|
1036
|
+
D: {};
|
|
1037
|
+
C: {};
|
|
1038
|
+
M: {};
|
|
1039
|
+
Defaults: {};
|
|
1040
|
+
}, Readonly<{
|
|
1041
|
+
modelValue?: (string | [string, string]) | undefined;
|
|
1042
|
+
displayFormat?: string | undefined;
|
|
1043
|
+
returnFormat?: string | undefined;
|
|
1044
|
+
range?: boolean | undefined;
|
|
1045
|
+
placeholder?: string | undefined;
|
|
1046
|
+
rules?: {
|
|
1047
|
+
type: string;
|
|
1048
|
+
options: RuleOptions;
|
|
1049
|
+
}[] | undefined;
|
|
1050
|
+
warningRules?: {
|
|
1051
|
+
type: string;
|
|
1052
|
+
options: RuleOptions;
|
|
1053
|
+
}[] | undefined;
|
|
1054
|
+
required?: boolean | undefined;
|
|
1055
|
+
}> & Readonly<{
|
|
1056
|
+
"onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
|
|
1057
|
+
}>, {
|
|
1058
|
+
validate: () => void;
|
|
1059
|
+
validateOnSubmit: () => boolean;
|
|
1060
|
+
}, {}, {}, {}, {
|
|
1061
|
+
modelValue: string | [string, string];
|
|
1062
|
+
required: boolean;
|
|
1063
|
+
placeholder: string;
|
|
1064
|
+
rules: {
|
|
1065
|
+
type: string;
|
|
1066
|
+
options: RuleOptions;
|
|
1067
|
+
}[];
|
|
1068
|
+
displayFormat: string;
|
|
1069
|
+
returnFormat: string;
|
|
1070
|
+
range: boolean;
|
|
1071
|
+
warningRules: {
|
|
1072
|
+
type: string;
|
|
1073
|
+
options: RuleOptions;
|
|
1074
|
+
}[];
|
|
1075
|
+
}> | null;
|
|
1076
|
+
}, HTMLDivElement>;
|
|
1077
|
+
|
|
1078
|
+
declare type DateValue = string | [string, string];
|
|
1079
|
+
|
|
791
1080
|
export { DialogBox }
|
|
792
1081
|
|
|
793
1082
|
declare function dismissAlert(): void;
|
|
@@ -796,14 +1085,14 @@ declare type DisplayFormat = 'code' | 'code-abbreviation' | 'code-country' | 'co
|
|
|
796
1085
|
|
|
797
1086
|
declare function download(): Promise<void>;
|
|
798
1087
|
|
|
799
|
-
export declare const DownloadBtn: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
1088
|
+
export declare const DownloadBtn: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_Props_13, {
|
|
800
1089
|
getFileInfo: typeof getFileInfo;
|
|
801
1090
|
download: typeof download;
|
|
802
1091
|
state: Ref<State, State>;
|
|
803
1092
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
804
1093
|
success: (...args: any[]) => void;
|
|
805
1094
|
error: (...args: any[]) => void;
|
|
806
|
-
}, string, PublicProps, Readonly<
|
|
1095
|
+
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
807
1096
|
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
808
1097
|
onError?: ((...args: any[]) => any) | undefined;
|
|
809
1098
|
}>, {
|
|
@@ -813,9 +1102,9 @@ fallbackFilename: string;
|
|
|
813
1102
|
default?(_: {}): any;
|
|
814
1103
|
}>;
|
|
815
1104
|
|
|
816
|
-
export declare const ErrorPage: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
817
|
-
message: string;
|
|
1105
|
+
export declare const ErrorPage: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
|
|
818
1106
|
code: string;
|
|
1107
|
+
message: string;
|
|
819
1108
|
pageTitle: string;
|
|
820
1109
|
codeErrorText: string;
|
|
821
1110
|
btnText: string;
|
|
@@ -828,11 +1117,11 @@ hideBtn: boolean;
|
|
|
828
1117
|
illustration?(_: {}): any;
|
|
829
1118
|
}>;
|
|
830
1119
|
|
|
831
|
-
export declare const ExternalLinks: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
832
|
-
position: "top left" | "top right" | "bottom left" | "bottom right";
|
|
1120
|
+
export declare const ExternalLinks: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
|
|
833
1121
|
fixed: boolean;
|
|
834
|
-
nudgeBottom: string | number;
|
|
835
1122
|
ariaLabel: string;
|
|
1123
|
+
position: "top left" | "top right" | "bottom left" | "bottom right";
|
|
1124
|
+
nudgeBottom: string | number;
|
|
836
1125
|
ariaOwns: string;
|
|
837
1126
|
btnText: string;
|
|
838
1127
|
nudgeTop: string | number;
|
|
@@ -845,11 +1134,88 @@ declare interface FileInfo {
|
|
|
845
1134
|
type: string;
|
|
846
1135
|
}
|
|
847
1136
|
|
|
1137
|
+
declare const FileList_2: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1138
|
+
delete: (item: Item_2) => any;
|
|
1139
|
+
upload: (item: Item_2) => any;
|
|
1140
|
+
preview: (item: Item_2) => any;
|
|
1141
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
1142
|
+
onDelete?: ((item: Item_2) => any) | undefined;
|
|
1143
|
+
onUpload?: ((item: Item_2) => any) | undefined;
|
|
1144
|
+
onPreview?: ((item: Item_2) => any) | undefined;
|
|
1145
|
+
}>, {
|
|
1146
|
+
locales: {
|
|
1147
|
+
optionalDocument: string;
|
|
1148
|
+
see: string;
|
|
1149
|
+
delete: string;
|
|
1150
|
+
uploading: string;
|
|
1151
|
+
success: string;
|
|
1152
|
+
error: string;
|
|
1153
|
+
errorOccurred: string;
|
|
1154
|
+
};
|
|
1155
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>, Partial<Record<`file-icon-${string}`, (_: {
|
|
1156
|
+
state: "success" | "error" | "loading" | "initial";
|
|
1157
|
+
}) => any>>>;
|
|
1158
|
+
export { FileList_2 as FileList }
|
|
1159
|
+
|
|
1160
|
+
export declare const FilePreview: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
1161
|
+
options: {
|
|
1162
|
+
pdf?: Record<string, string> | undefined;
|
|
1163
|
+
image?: Record<string, string> | undefined;
|
|
1164
|
+
};
|
|
1165
|
+
locales: {
|
|
1166
|
+
previewNotAvailable: string;
|
|
1167
|
+
previewTypeNotAvailable: string;
|
|
1168
|
+
};
|
|
1169
|
+
file: Blob | File;
|
|
1170
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1171
|
+
default?(_: {}): any;
|
|
1172
|
+
}>;
|
|
1173
|
+
|
|
1174
|
+
export declare const FileUpload: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_Props_18, {
|
|
1175
|
+
fileInput: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
1176
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1177
|
+
error: (value: string[]) => any;
|
|
1178
|
+
"update:modelValue": (value: File[]) => any;
|
|
1179
|
+
}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
|
|
1180
|
+
onError?: ((value: string[]) => any) | undefined;
|
|
1181
|
+
"onUpdate:modelValue"?: ((value: File[]) => any) | undefined;
|
|
1182
|
+
}>, {
|
|
1183
|
+
disabled: boolean;
|
|
1184
|
+
multiple: boolean;
|
|
1185
|
+
locales: {
|
|
1186
|
+
or: string;
|
|
1187
|
+
chooseFile: (multiple: boolean) => "Choisir des fichiers" | "Choisir un fichier";
|
|
1188
|
+
infoText: (max: string, ext: string[]) => string;
|
|
1189
|
+
fileSizeUnits: string[];
|
|
1190
|
+
dropFilesHere: (multiple: boolean) => string;
|
|
1191
|
+
errorSize: (fileName: string, max: string) => string;
|
|
1192
|
+
errorExtension: (fileName: string, ext: string[]) => string;
|
|
1193
|
+
};
|
|
1194
|
+
allowedExtensions: string[];
|
|
1195
|
+
fileSizeUnits: string[];
|
|
1196
|
+
fileSizeMax: number;
|
|
1197
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1198
|
+
dropZone: HTMLLabelElement;
|
|
1199
|
+
fileInput: HTMLInputElement;
|
|
1200
|
+
}, HTMLLabelElement>, Readonly<{
|
|
1201
|
+
default(): void;
|
|
1202
|
+
} & FileUploadContentSlots> & {
|
|
1203
|
+
default(): void;
|
|
1204
|
+
} & FileUploadContentSlots>;
|
|
1205
|
+
|
|
1206
|
+
declare interface FileUploadContentSlots {
|
|
1207
|
+
'icon'(): void;
|
|
1208
|
+
'action-text'(): void;
|
|
1209
|
+
'or'(): void;
|
|
1210
|
+
'button-text'(): void;
|
|
1211
|
+
'info-text'(): void;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
848
1214
|
declare function focus_2(): void;
|
|
849
1215
|
|
|
850
|
-
export declare const FooterBar:
|
|
1216
|
+
export declare const FooterBar: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_Props_19, {
|
|
851
1217
|
logoSize: ComputedRef<"small" | "normal">;
|
|
852
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
1218
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
|
|
853
1219
|
light: boolean;
|
|
854
1220
|
items: LinkItem[] | null;
|
|
855
1221
|
a11yCompliance: string;
|
|
@@ -875,7 +1241,7 @@ socialMediaLinks: SocialMediaLink[];
|
|
|
875
1241
|
append?(_: {}): any;
|
|
876
1242
|
}>;
|
|
877
1243
|
|
|
878
|
-
export declare const FranceConnectBtn: DefineComponent<
|
|
1244
|
+
export declare const FranceConnectBtn: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
|
|
879
1245
|
dark: boolean;
|
|
880
1246
|
isConnectPlus: boolean;
|
|
881
1247
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -885,7 +1251,7 @@ isConnectPlus: boolean;
|
|
|
885
1251
|
*/
|
|
886
1252
|
declare function getFileInfo(header: Record<string, string>): FileInfo;
|
|
887
1253
|
|
|
888
|
-
export declare const HeaderBar:
|
|
1254
|
+
export declare const HeaderBar: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
|
|
889
1255
|
sticky: boolean;
|
|
890
1256
|
serviceTitle: string;
|
|
891
1257
|
serviceSubtitle: string;
|
|
@@ -919,7 +1285,7 @@ headerSticky: HTMLDivElement;
|
|
|
919
1285
|
'header-side': (props: SlotProps) => unknown;
|
|
920
1286
|
}>;
|
|
921
1287
|
|
|
922
|
-
export declare const HeaderBurgerMenu:
|
|
1288
|
+
export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
923
1289
|
"update:modelValue": (value: boolean) => any;
|
|
924
1290
|
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
925
1291
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -997,11 +1363,11 @@ type: StringConstructor;
|
|
|
997
1363
|
default: string;
|
|
998
1364
|
};
|
|
999
1365
|
}>> & Readonly<{}>, {
|
|
1000
|
-
height: string;
|
|
1001
1366
|
width: string;
|
|
1367
|
+
height: string;
|
|
1002
1368
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1003
1369
|
|
|
1004
|
-
export declare const HeaderLogo:
|
|
1370
|
+
export declare const HeaderLogo: __VLS_WithTemplateSlots_23<DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
1005
1371
|
ariaLabel: string;
|
|
1006
1372
|
serviceTitle: string;
|
|
1007
1373
|
serviceSubtitle: string;
|
|
@@ -1026,16 +1392,16 @@ focus: typeof focus_2;
|
|
|
1026
1392
|
btn: HTMLButtonElement;
|
|
1027
1393
|
}, HTMLButtonElement>;
|
|
1028
1394
|
|
|
1029
|
-
export declare const HeaderMenuItem:
|
|
1395
|
+
export declare const HeaderMenuItem: __VLS_WithTemplateSlots_20<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLIElement>, {
|
|
1030
1396
|
default?(_: {}): any;
|
|
1031
1397
|
}>;
|
|
1032
1398
|
|
|
1033
|
-
export declare const HeaderMenuSection:
|
|
1399
|
+
export declare const HeaderMenuSection: __VLS_WithTemplateSlots_21<DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
1034
1400
|
title?(_: {}): any;
|
|
1035
1401
|
default?(_: {}): any;
|
|
1036
1402
|
}>;
|
|
1037
1403
|
|
|
1038
|
-
export declare const HeaderNavigationBar:
|
|
1404
|
+
export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_24<DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1039
1405
|
"update:burgerMenu": (value: boolean) => any;
|
|
1040
1406
|
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
1041
1407
|
"onUpdate:burgerMenu"?: ((value: boolean) => any) | undefined;
|
|
@@ -1074,12 +1440,12 @@ maxHorizontalMenuItems: number;
|
|
|
1074
1440
|
'navigation-menu-content': (props: SlotProps_2) => unknown;
|
|
1075
1441
|
}>;
|
|
1076
1442
|
|
|
1077
|
-
export declare const HeaderSubMenu:
|
|
1443
|
+
export declare const HeaderSubMenu: __VLS_WithTemplateSlots_22<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
1078
1444
|
title?(_: {}): any;
|
|
1079
1445
|
default?(_: {}): any;
|
|
1080
1446
|
}>;
|
|
1081
1447
|
|
|
1082
|
-
export declare const HeaderToolbar:
|
|
1448
|
+
export declare const HeaderToolbar: __VLS_WithTemplateSlots_25<DefineComponent<ExtractPropTypes< {
|
|
1083
1449
|
leftMenu: {
|
|
1084
1450
|
type: PropType<MenuItem_2[]>;
|
|
1085
1451
|
default: () => ({
|
|
@@ -1183,13 +1549,27 @@ declare type Indicatif = {
|
|
|
1183
1549
|
phoneLength: number;
|
|
1184
1550
|
};
|
|
1185
1551
|
|
|
1552
|
+
declare function initializeSelectedDates(modelValue: DateInput | null): Date | Date[] | null;
|
|
1553
|
+
|
|
1186
1554
|
export declare function isNIRKeyValid(nir: string): boolean;
|
|
1187
1555
|
|
|
1188
1556
|
declare type Item = string | Record<string, unknown>;
|
|
1189
1557
|
|
|
1558
|
+
declare interface Item_2 {
|
|
1559
|
+
id: string;
|
|
1560
|
+
title: string;
|
|
1561
|
+
state: string;
|
|
1562
|
+
fileName?: string;
|
|
1563
|
+
optional?: boolean;
|
|
1564
|
+
progress?: number;
|
|
1565
|
+
showUploadBtn?: boolean;
|
|
1566
|
+
showPreviewBtn?: boolean;
|
|
1567
|
+
showDeleteBtn?: boolean;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1190
1570
|
export declare const KEY_LENGTH = 2;
|
|
1191
1571
|
|
|
1192
|
-
export declare const LangBtn: DefineComponent<
|
|
1572
|
+
export declare const LangBtn: DefineComponent<__VLS_Props_25, {
|
|
1193
1573
|
currentLangData: ComputedRef< {
|
|
1194
1574
|
name: string;
|
|
1195
1575
|
label: string;
|
|
@@ -1199,7 +1579,7 @@ selectedLanguage: Ref<string, string>;
|
|
|
1199
1579
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1200
1580
|
change: (...args: any[]) => void;
|
|
1201
1581
|
"update:modelValue": (...args: any[]) => void;
|
|
1202
|
-
}, string, PublicProps, Readonly<
|
|
1582
|
+
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
1203
1583
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1204
1584
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1205
1585
|
}>, {
|
|
@@ -1210,6 +1590,31 @@ hideDownArrow: boolean;
|
|
|
1210
1590
|
availableLanguages: string[] | "*";
|
|
1211
1591
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1212
1592
|
|
|
1593
|
+
declare const locales: {
|
|
1594
|
+
optionalDocument: string;
|
|
1595
|
+
see: string;
|
|
1596
|
+
delete: string;
|
|
1597
|
+
uploading: string;
|
|
1598
|
+
success: string;
|
|
1599
|
+
error: string;
|
|
1600
|
+
errorOccurred: string;
|
|
1601
|
+
};
|
|
1602
|
+
|
|
1603
|
+
declare const locales_2: {
|
|
1604
|
+
previewNotAvailable: string;
|
|
1605
|
+
previewTypeNotAvailable: string;
|
|
1606
|
+
};
|
|
1607
|
+
|
|
1608
|
+
declare const locales_3: {
|
|
1609
|
+
or: string;
|
|
1610
|
+
chooseFile: (multiple: boolean) => "Choisir des fichiers" | "Choisir un fichier";
|
|
1611
|
+
infoText: (max: string, ext: string[]) => string;
|
|
1612
|
+
fileSizeUnits: string[];
|
|
1613
|
+
dropFilesHere: (multiple: boolean) => string;
|
|
1614
|
+
errorSize: (fileName: string, max: string) => string;
|
|
1615
|
+
errorExtension: (fileName: string, ext: string[]) => string;
|
|
1616
|
+
};
|
|
1617
|
+
|
|
1213
1618
|
export declare const Logo: DefineComponent<ExtractPropTypes< {
|
|
1214
1619
|
hideSignature: {
|
|
1215
1620
|
type: BooleanConstructor;
|
|
@@ -1271,16 +1676,16 @@ default: "normal";
|
|
|
1271
1676
|
validator: (value: string) => boolean;
|
|
1272
1677
|
};
|
|
1273
1678
|
}>> & Readonly<{}>, {
|
|
1274
|
-
dark: boolean;
|
|
1275
1679
|
size: "small" | "x-small" | "normal";
|
|
1276
1680
|
ariaLabel: string;
|
|
1681
|
+
dark: boolean;
|
|
1277
1682
|
avatar: boolean;
|
|
1278
1683
|
hideSignature: boolean;
|
|
1279
1684
|
hideOrganism: boolean;
|
|
1280
1685
|
risquePro: boolean;
|
|
1281
1686
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
1282
1687
|
|
|
1283
|
-
export declare const LogoBrandSection:
|
|
1688
|
+
export declare const LogoBrandSection: __VLS_WithTemplateSlots_26<DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
|
|
1284
1689
|
theme: Theme;
|
|
1285
1690
|
serviceTitle: string;
|
|
1286
1691
|
homeLink: {
|
|
@@ -1338,7 +1743,7 @@ declare interface NavigationItem {
|
|
|
1338
1743
|
|
|
1339
1744
|
export { NirField }
|
|
1340
1745
|
|
|
1341
|
-
export declare const NotFoundPage: DefineComponent<
|
|
1746
|
+
export declare const NotFoundPage: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
|
|
1342
1747
|
btnText: string;
|
|
1343
1748
|
btnHref: string;
|
|
1344
1749
|
btnLink: string | RouteRecordRaw;
|
|
@@ -1354,7 +1759,7 @@ declare interface Notification_2 {
|
|
|
1354
1759
|
}
|
|
1355
1760
|
export { Notification_2 as Notification }
|
|
1356
1761
|
|
|
1357
|
-
export declare const NotificationBar:
|
|
1762
|
+
export declare const NotificationBar: __VLS_WithTemplateSlots_27<DefineComponent<__VLS_Props_28, {
|
|
1358
1763
|
openNotification: (notification: Notification_2) => void;
|
|
1359
1764
|
handleClearNotification: () => void;
|
|
1360
1765
|
showNextNotification: () => void;
|
|
@@ -1371,7 +1776,7 @@ contentColor: string;
|
|
|
1371
1776
|
}>;
|
|
1372
1777
|
smallCloseBtn: ComputedRef<boolean>;
|
|
1373
1778
|
isVertical: ComputedRef<boolean>;
|
|
1374
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
1779
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
|
|
1375
1780
|
rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "lg" | "sm" | "xs" | "shaped";
|
|
1376
1781
|
bottom: boolean;
|
|
1377
1782
|
closeBtnText: string;
|
|
@@ -1389,10 +1794,10 @@ export declare const NUMBER_LENGTH = 13;
|
|
|
1389
1794
|
|
|
1390
1795
|
export declare type NumberOrNumberString = string | number | undefined;
|
|
1391
1796
|
|
|
1392
|
-
export declare const PageContainer:
|
|
1797
|
+
export declare const PageContainer: __VLS_WithTemplateSlots_28<DefineComponent<__VLS_Props_29, {
|
|
1393
1798
|
spacingClass: ComputedRef<string>;
|
|
1394
1799
|
containerSize: ComputedRef<number>;
|
|
1395
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
1800
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {
|
|
1396
1801
|
color: string;
|
|
1397
1802
|
size: "xl" | "lg" | "md" | "sm" | "xs";
|
|
1398
1803
|
spacing: "xl" | "lg" | "md" | "sm" | "xs";
|
|
@@ -1412,10 +1817,458 @@ onSubmit?: ((...args: any[]) => any) | undefined;
|
|
|
1412
1817
|
outlined: boolean;
|
|
1413
1818
|
modelValue: string | null;
|
|
1414
1819
|
required: boolean;
|
|
1415
|
-
isValidateOnBlur: boolean;
|
|
1416
1820
|
customRules: any;
|
|
1821
|
+
isValidateOnBlur: boolean;
|
|
1417
1822
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1418
1823
|
|
|
1824
|
+
export declare const PeriodField: DefineComponent<__VLS_Props_31, {
|
|
1825
|
+
validateOnSubmit: () => boolean;
|
|
1826
|
+
errors: Ref<string[], string[]>;
|
|
1827
|
+
successes: Ref<string[], string[]>;
|
|
1828
|
+
isValid: ComputedRef<boolean>;
|
|
1829
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1830
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1831
|
+
}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
|
|
1832
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1833
|
+
}>, {
|
|
1834
|
+
modelValue: PeriodValue;
|
|
1835
|
+
required: boolean;
|
|
1836
|
+
isDisabled: boolean;
|
|
1837
|
+
noIcon: boolean;
|
|
1838
|
+
format: string;
|
|
1839
|
+
dateFormatReturn: string;
|
|
1840
|
+
showWeekNumber: boolean;
|
|
1841
|
+
displayIcon: boolean;
|
|
1842
|
+
displayAppendIcon: boolean;
|
|
1843
|
+
customRules: {
|
|
1844
|
+
type: string;
|
|
1845
|
+
options: RuleOptions;
|
|
1846
|
+
}[];
|
|
1847
|
+
customWarningRules: {
|
|
1848
|
+
type: string;
|
|
1849
|
+
options: RuleOptions;
|
|
1850
|
+
}[];
|
|
1851
|
+
noCalendar: boolean;
|
|
1852
|
+
isOutlined: boolean;
|
|
1853
|
+
showSuccessMessages: boolean;
|
|
1854
|
+
placeholderFrom: string;
|
|
1855
|
+
placeholderTo: string;
|
|
1856
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1857
|
+
fromDateRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1858
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
1859
|
+
placeholder?: string | undefined;
|
|
1860
|
+
format?: string | undefined;
|
|
1861
|
+
dateFormatReturn?: string | undefined;
|
|
1862
|
+
isBirthDate?: boolean | undefined;
|
|
1863
|
+
showWeekNumber?: boolean | undefined;
|
|
1864
|
+
required?: boolean | undefined;
|
|
1865
|
+
displayRange?: boolean | undefined;
|
|
1866
|
+
displayIcon?: boolean | undefined;
|
|
1867
|
+
displayAppendIcon?: boolean | undefined;
|
|
1868
|
+
customRules?: {
|
|
1869
|
+
type: string;
|
|
1870
|
+
options: RuleOptions;
|
|
1871
|
+
}[] | undefined;
|
|
1872
|
+
customWarningRules?: {
|
|
1873
|
+
type: string;
|
|
1874
|
+
options: RuleOptions;
|
|
1875
|
+
}[] | undefined;
|
|
1876
|
+
isDisabled?: boolean | undefined;
|
|
1877
|
+
noIcon?: boolean | undefined;
|
|
1878
|
+
noCalendar?: boolean | undefined;
|
|
1879
|
+
isOutlined?: boolean | undefined;
|
|
1880
|
+
}> & Readonly<{
|
|
1881
|
+
"onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
|
|
1882
|
+
onClosed?: (() => any) | undefined;
|
|
1883
|
+
}>, {
|
|
1884
|
+
validateOnSubmit: () => any;
|
|
1885
|
+
isDatePickerVisible: Ref<boolean, boolean>;
|
|
1886
|
+
selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
1887
|
+
errorMessages: Ref<string[], string[]>;
|
|
1888
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
1889
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
1890
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1891
|
+
"update:model-value": (value: string | [string, string]) => any;
|
|
1892
|
+
closed: () => any;
|
|
1893
|
+
}, PublicProps, {
|
|
1894
|
+
modelValue: string | object | string[] | null;
|
|
1895
|
+
required: boolean;
|
|
1896
|
+
isDisabled: boolean;
|
|
1897
|
+
placeholder: string;
|
|
1898
|
+
noIcon: boolean;
|
|
1899
|
+
format: string;
|
|
1900
|
+
dateFormatReturn: string;
|
|
1901
|
+
isBirthDate: boolean;
|
|
1902
|
+
showWeekNumber: boolean;
|
|
1903
|
+
displayRange: boolean;
|
|
1904
|
+
displayIcon: boolean;
|
|
1905
|
+
displayAppendIcon: boolean;
|
|
1906
|
+
customRules: {
|
|
1907
|
+
type: string;
|
|
1908
|
+
options: RuleOptions;
|
|
1909
|
+
}[];
|
|
1910
|
+
customWarningRules: {
|
|
1911
|
+
type: string;
|
|
1912
|
+
options: RuleOptions;
|
|
1913
|
+
}[];
|
|
1914
|
+
noCalendar: boolean;
|
|
1915
|
+
isOutlined: boolean;
|
|
1916
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1917
|
+
dateTextInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1918
|
+
modelValue?: (string | [string, string]) | undefined;
|
|
1919
|
+
displayFormat?: string | undefined;
|
|
1920
|
+
returnFormat?: string | undefined;
|
|
1921
|
+
range?: boolean | undefined;
|
|
1922
|
+
placeholder?: string | undefined;
|
|
1923
|
+
rules?: {
|
|
1924
|
+
type: string;
|
|
1925
|
+
options: RuleOptions;
|
|
1926
|
+
}[] | undefined;
|
|
1927
|
+
warningRules?: {
|
|
1928
|
+
type: string;
|
|
1929
|
+
options: RuleOptions;
|
|
1930
|
+
}[] | undefined;
|
|
1931
|
+
required?: boolean | undefined;
|
|
1932
|
+
}> & Readonly<{
|
|
1933
|
+
"onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
|
|
1934
|
+
}>, {
|
|
1935
|
+
validate: () => void;
|
|
1936
|
+
validateOnSubmit: () => boolean;
|
|
1937
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1938
|
+
"update:modelValue": (value: string | [string, string]) => any;
|
|
1939
|
+
}, PublicProps, {
|
|
1940
|
+
modelValue: string | [string, string];
|
|
1941
|
+
required: boolean;
|
|
1942
|
+
placeholder: string;
|
|
1943
|
+
rules: {
|
|
1944
|
+
type: string;
|
|
1945
|
+
options: RuleOptions;
|
|
1946
|
+
}[];
|
|
1947
|
+
displayFormat: string;
|
|
1948
|
+
returnFormat: string;
|
|
1949
|
+
range: boolean;
|
|
1950
|
+
warningRules: {
|
|
1951
|
+
type: string;
|
|
1952
|
+
options: RuleOptions;
|
|
1953
|
+
}[];
|
|
1954
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1955
|
+
P: {};
|
|
1956
|
+
B: {};
|
|
1957
|
+
D: {};
|
|
1958
|
+
C: {};
|
|
1959
|
+
M: {};
|
|
1960
|
+
Defaults: {};
|
|
1961
|
+
}, Readonly<{
|
|
1962
|
+
modelValue?: (string | [string, string]) | undefined;
|
|
1963
|
+
displayFormat?: string | undefined;
|
|
1964
|
+
returnFormat?: string | undefined;
|
|
1965
|
+
range?: boolean | undefined;
|
|
1966
|
+
placeholder?: string | undefined;
|
|
1967
|
+
rules?: {
|
|
1968
|
+
type: string;
|
|
1969
|
+
options: RuleOptions;
|
|
1970
|
+
}[] | undefined;
|
|
1971
|
+
warningRules?: {
|
|
1972
|
+
type: string;
|
|
1973
|
+
options: RuleOptions;
|
|
1974
|
+
}[] | undefined;
|
|
1975
|
+
required?: boolean | undefined;
|
|
1976
|
+
}> & Readonly<{
|
|
1977
|
+
"onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
|
|
1978
|
+
}>, {
|
|
1979
|
+
validate: () => void;
|
|
1980
|
+
validateOnSubmit: () => boolean;
|
|
1981
|
+
}, {}, {}, {}, {
|
|
1982
|
+
modelValue: string | [string, string];
|
|
1983
|
+
required: boolean;
|
|
1984
|
+
placeholder: string;
|
|
1985
|
+
rules: {
|
|
1986
|
+
type: string;
|
|
1987
|
+
options: RuleOptions;
|
|
1988
|
+
}[];
|
|
1989
|
+
displayFormat: string;
|
|
1990
|
+
returnFormat: string;
|
|
1991
|
+
range: boolean;
|
|
1992
|
+
warningRules: {
|
|
1993
|
+
type: string;
|
|
1994
|
+
options: RuleOptions;
|
|
1995
|
+
}[];
|
|
1996
|
+
}> | null;
|
|
1997
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
1998
|
+
P: {};
|
|
1999
|
+
B: {};
|
|
2000
|
+
D: {};
|
|
2001
|
+
C: {};
|
|
2002
|
+
M: {};
|
|
2003
|
+
Defaults: {};
|
|
2004
|
+
}, Readonly<{
|
|
2005
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
2006
|
+
placeholder?: string | undefined;
|
|
2007
|
+
format?: string | undefined;
|
|
2008
|
+
dateFormatReturn?: string | undefined;
|
|
2009
|
+
isBirthDate?: boolean | undefined;
|
|
2010
|
+
showWeekNumber?: boolean | undefined;
|
|
2011
|
+
required?: boolean | undefined;
|
|
2012
|
+
displayRange?: boolean | undefined;
|
|
2013
|
+
displayIcon?: boolean | undefined;
|
|
2014
|
+
displayAppendIcon?: boolean | undefined;
|
|
2015
|
+
customRules?: {
|
|
2016
|
+
type: string;
|
|
2017
|
+
options: RuleOptions;
|
|
2018
|
+
}[] | undefined;
|
|
2019
|
+
customWarningRules?: {
|
|
2020
|
+
type: string;
|
|
2021
|
+
options: RuleOptions;
|
|
2022
|
+
}[] | undefined;
|
|
2023
|
+
isDisabled?: boolean | undefined;
|
|
2024
|
+
noIcon?: boolean | undefined;
|
|
2025
|
+
noCalendar?: boolean | undefined;
|
|
2026
|
+
isOutlined?: boolean | undefined;
|
|
2027
|
+
}> & Readonly<{
|
|
2028
|
+
"onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
|
|
2029
|
+
onClosed?: (() => any) | undefined;
|
|
2030
|
+
}>, {
|
|
2031
|
+
validateOnSubmit: () => any;
|
|
2032
|
+
isDatePickerVisible: Ref<boolean, boolean>;
|
|
2033
|
+
selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
2034
|
+
errorMessages: Ref<string[], string[]>;
|
|
2035
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
2036
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
2037
|
+
}, {}, {}, {}, {
|
|
2038
|
+
modelValue: string | object | string[] | null;
|
|
2039
|
+
required: boolean;
|
|
2040
|
+
isDisabled: boolean;
|
|
2041
|
+
placeholder: string;
|
|
2042
|
+
noIcon: boolean;
|
|
2043
|
+
format: string;
|
|
2044
|
+
dateFormatReturn: string;
|
|
2045
|
+
isBirthDate: boolean;
|
|
2046
|
+
showWeekNumber: boolean;
|
|
2047
|
+
displayRange: boolean;
|
|
2048
|
+
displayIcon: boolean;
|
|
2049
|
+
displayAppendIcon: boolean;
|
|
2050
|
+
customRules: {
|
|
2051
|
+
type: string;
|
|
2052
|
+
options: RuleOptions;
|
|
2053
|
+
}[];
|
|
2054
|
+
customWarningRules: {
|
|
2055
|
+
type: string;
|
|
2056
|
+
options: RuleOptions;
|
|
2057
|
+
}[];
|
|
2058
|
+
noCalendar: boolean;
|
|
2059
|
+
isOutlined: boolean;
|
|
2060
|
+
}> | null;
|
|
2061
|
+
toDateRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2062
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
2063
|
+
placeholder?: string | undefined;
|
|
2064
|
+
format?: string | undefined;
|
|
2065
|
+
dateFormatReturn?: string | undefined;
|
|
2066
|
+
isBirthDate?: boolean | undefined;
|
|
2067
|
+
showWeekNumber?: boolean | undefined;
|
|
2068
|
+
required?: boolean | undefined;
|
|
2069
|
+
displayRange?: boolean | undefined;
|
|
2070
|
+
displayIcon?: boolean | undefined;
|
|
2071
|
+
displayAppendIcon?: boolean | undefined;
|
|
2072
|
+
customRules?: {
|
|
2073
|
+
type: string;
|
|
2074
|
+
options: RuleOptions;
|
|
2075
|
+
}[] | undefined;
|
|
2076
|
+
customWarningRules?: {
|
|
2077
|
+
type: string;
|
|
2078
|
+
options: RuleOptions;
|
|
2079
|
+
}[] | undefined;
|
|
2080
|
+
isDisabled?: boolean | undefined;
|
|
2081
|
+
noIcon?: boolean | undefined;
|
|
2082
|
+
noCalendar?: boolean | undefined;
|
|
2083
|
+
isOutlined?: boolean | undefined;
|
|
2084
|
+
}> & Readonly<{
|
|
2085
|
+
"onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
|
|
2086
|
+
onClosed?: (() => any) | undefined;
|
|
2087
|
+
}>, {
|
|
2088
|
+
validateOnSubmit: () => any;
|
|
2089
|
+
isDatePickerVisible: Ref<boolean, boolean>;
|
|
2090
|
+
selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
2091
|
+
errorMessages: Ref<string[], string[]>;
|
|
2092
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
2093
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
2094
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2095
|
+
"update:model-value": (value: string | [string, string]) => any;
|
|
2096
|
+
closed: () => any;
|
|
2097
|
+
}, PublicProps, {
|
|
2098
|
+
modelValue: string | object | string[] | null;
|
|
2099
|
+
required: boolean;
|
|
2100
|
+
isDisabled: boolean;
|
|
2101
|
+
placeholder: string;
|
|
2102
|
+
noIcon: boolean;
|
|
2103
|
+
format: string;
|
|
2104
|
+
dateFormatReturn: string;
|
|
2105
|
+
isBirthDate: boolean;
|
|
2106
|
+
showWeekNumber: boolean;
|
|
2107
|
+
displayRange: boolean;
|
|
2108
|
+
displayIcon: boolean;
|
|
2109
|
+
displayAppendIcon: boolean;
|
|
2110
|
+
customRules: {
|
|
2111
|
+
type: string;
|
|
2112
|
+
options: RuleOptions;
|
|
2113
|
+
}[];
|
|
2114
|
+
customWarningRules: {
|
|
2115
|
+
type: string;
|
|
2116
|
+
options: RuleOptions;
|
|
2117
|
+
}[];
|
|
2118
|
+
noCalendar: boolean;
|
|
2119
|
+
isOutlined: boolean;
|
|
2120
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
2121
|
+
dateTextInputRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2122
|
+
modelValue?: (string | [string, string]) | undefined;
|
|
2123
|
+
displayFormat?: string | undefined;
|
|
2124
|
+
returnFormat?: string | undefined;
|
|
2125
|
+
range?: boolean | undefined;
|
|
2126
|
+
placeholder?: string | undefined;
|
|
2127
|
+
rules?: {
|
|
2128
|
+
type: string;
|
|
2129
|
+
options: RuleOptions;
|
|
2130
|
+
}[] | undefined;
|
|
2131
|
+
warningRules?: {
|
|
2132
|
+
type: string;
|
|
2133
|
+
options: RuleOptions;
|
|
2134
|
+
}[] | undefined;
|
|
2135
|
+
required?: boolean | undefined;
|
|
2136
|
+
}> & Readonly<{
|
|
2137
|
+
"onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
|
|
2138
|
+
}>, {
|
|
2139
|
+
validate: () => void;
|
|
2140
|
+
validateOnSubmit: () => boolean;
|
|
2141
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2142
|
+
"update:modelValue": (value: string | [string, string]) => any;
|
|
2143
|
+
}, PublicProps, {
|
|
2144
|
+
modelValue: string | [string, string];
|
|
2145
|
+
required: boolean;
|
|
2146
|
+
placeholder: string;
|
|
2147
|
+
rules: {
|
|
2148
|
+
type: string;
|
|
2149
|
+
options: RuleOptions;
|
|
2150
|
+
}[];
|
|
2151
|
+
displayFormat: string;
|
|
2152
|
+
returnFormat: string;
|
|
2153
|
+
range: boolean;
|
|
2154
|
+
warningRules: {
|
|
2155
|
+
type: string;
|
|
2156
|
+
options: RuleOptions;
|
|
2157
|
+
}[];
|
|
2158
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
2159
|
+
P: {};
|
|
2160
|
+
B: {};
|
|
2161
|
+
D: {};
|
|
2162
|
+
C: {};
|
|
2163
|
+
M: {};
|
|
2164
|
+
Defaults: {};
|
|
2165
|
+
}, Readonly<{
|
|
2166
|
+
modelValue?: (string | [string, string]) | undefined;
|
|
2167
|
+
displayFormat?: string | undefined;
|
|
2168
|
+
returnFormat?: string | undefined;
|
|
2169
|
+
range?: boolean | undefined;
|
|
2170
|
+
placeholder?: string | undefined;
|
|
2171
|
+
rules?: {
|
|
2172
|
+
type: string;
|
|
2173
|
+
options: RuleOptions;
|
|
2174
|
+
}[] | undefined;
|
|
2175
|
+
warningRules?: {
|
|
2176
|
+
type: string;
|
|
2177
|
+
options: RuleOptions;
|
|
2178
|
+
}[] | undefined;
|
|
2179
|
+
required?: boolean | undefined;
|
|
2180
|
+
}> & Readonly<{
|
|
2181
|
+
"onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined;
|
|
2182
|
+
}>, {
|
|
2183
|
+
validate: () => void;
|
|
2184
|
+
validateOnSubmit: () => boolean;
|
|
2185
|
+
}, {}, {}, {}, {
|
|
2186
|
+
modelValue: string | [string, string];
|
|
2187
|
+
required: boolean;
|
|
2188
|
+
placeholder: string;
|
|
2189
|
+
rules: {
|
|
2190
|
+
type: string;
|
|
2191
|
+
options: RuleOptions;
|
|
2192
|
+
}[];
|
|
2193
|
+
displayFormat: string;
|
|
2194
|
+
returnFormat: string;
|
|
2195
|
+
range: boolean;
|
|
2196
|
+
warningRules: {
|
|
2197
|
+
type: string;
|
|
2198
|
+
options: RuleOptions;
|
|
2199
|
+
}[];
|
|
2200
|
+
}> | null;
|
|
2201
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
2202
|
+
P: {};
|
|
2203
|
+
B: {};
|
|
2204
|
+
D: {};
|
|
2205
|
+
C: {};
|
|
2206
|
+
M: {};
|
|
2207
|
+
Defaults: {};
|
|
2208
|
+
}, Readonly<{
|
|
2209
|
+
modelValue?: (string | object | string[] | null) | undefined;
|
|
2210
|
+
placeholder?: string | undefined;
|
|
2211
|
+
format?: string | undefined;
|
|
2212
|
+
dateFormatReturn?: string | undefined;
|
|
2213
|
+
isBirthDate?: boolean | undefined;
|
|
2214
|
+
showWeekNumber?: boolean | undefined;
|
|
2215
|
+
required?: boolean | undefined;
|
|
2216
|
+
displayRange?: boolean | undefined;
|
|
2217
|
+
displayIcon?: boolean | undefined;
|
|
2218
|
+
displayAppendIcon?: boolean | undefined;
|
|
2219
|
+
customRules?: {
|
|
2220
|
+
type: string;
|
|
2221
|
+
options: RuleOptions;
|
|
2222
|
+
}[] | undefined;
|
|
2223
|
+
customWarningRules?: {
|
|
2224
|
+
type: string;
|
|
2225
|
+
options: RuleOptions;
|
|
2226
|
+
}[] | undefined;
|
|
2227
|
+
isDisabled?: boolean | undefined;
|
|
2228
|
+
noIcon?: boolean | undefined;
|
|
2229
|
+
noCalendar?: boolean | undefined;
|
|
2230
|
+
isOutlined?: boolean | undefined;
|
|
2231
|
+
}> & Readonly<{
|
|
2232
|
+
"onUpdate:model-value"?: ((value: string | [string, string]) => any) | undefined;
|
|
2233
|
+
onClosed?: (() => any) | undefined;
|
|
2234
|
+
}>, {
|
|
2235
|
+
validateOnSubmit: () => any;
|
|
2236
|
+
isDatePickerVisible: Ref<boolean, boolean>;
|
|
2237
|
+
selectedDates: Ref<Date | Date[] | null, Date | Date[] | null>;
|
|
2238
|
+
errorMessages: Ref<string[], string[]>;
|
|
2239
|
+
handleClickOutside: (event: MouseEvent) => void;
|
|
2240
|
+
initializeSelectedDates: (modelValue: string | object | string[] | null) => Date | Date[] | null;
|
|
2241
|
+
}, {}, {}, {}, {
|
|
2242
|
+
modelValue: string | object | string[] | null;
|
|
2243
|
+
required: boolean;
|
|
2244
|
+
isDisabled: boolean;
|
|
2245
|
+
placeholder: string;
|
|
2246
|
+
noIcon: boolean;
|
|
2247
|
+
format: string;
|
|
2248
|
+
dateFormatReturn: string;
|
|
2249
|
+
isBirthDate: boolean;
|
|
2250
|
+
showWeekNumber: boolean;
|
|
2251
|
+
displayRange: boolean;
|
|
2252
|
+
displayIcon: boolean;
|
|
2253
|
+
displayAppendIcon: boolean;
|
|
2254
|
+
customRules: {
|
|
2255
|
+
type: string;
|
|
2256
|
+
options: RuleOptions;
|
|
2257
|
+
}[];
|
|
2258
|
+
customWarningRules: {
|
|
2259
|
+
type: string;
|
|
2260
|
+
options: RuleOptions;
|
|
2261
|
+
}[];
|
|
2262
|
+
noCalendar: boolean;
|
|
2263
|
+
isOutlined: boolean;
|
|
2264
|
+
}> | null;
|
|
2265
|
+
}, HTMLDivElement>;
|
|
2266
|
+
|
|
2267
|
+
declare type PeriodValue = {
|
|
2268
|
+
from: DateInput_2;
|
|
2269
|
+
to: DateInput_2;
|
|
2270
|
+
};
|
|
2271
|
+
|
|
1419
2272
|
export declare const PhoneField: DefineComponent<ExtractPropTypes< {
|
|
1420
2273
|
modelValue: {
|
|
1421
2274
|
type: StringConstructor;
|
|
@@ -1526,11 +2379,11 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
1526
2379
|
outlined: boolean;
|
|
1527
2380
|
modelValue: string;
|
|
1528
2381
|
required: boolean;
|
|
2382
|
+
displayFormat: DisplayFormat;
|
|
1529
2383
|
dialCodeModel: string | Record<string, any>;
|
|
1530
2384
|
outlinedIndicatif: boolean;
|
|
1531
2385
|
withCountryCode: boolean;
|
|
1532
2386
|
countryCodeRequired: boolean;
|
|
1533
|
-
displayFormat: DisplayFormat;
|
|
1534
2387
|
customIndicatifs: Indicatif[];
|
|
1535
2388
|
useCustomIndicatifsOnly: boolean;
|
|
1536
2389
|
isValidatedOnBlur: boolean;
|
|
@@ -1550,21 +2403,130 @@ declare interface Props_2 {
|
|
|
1550
2403
|
|
|
1551
2404
|
declare type PropsList = Record<string, unknown>;
|
|
1552
2405
|
|
|
1553
|
-
declare
|
|
1554
|
-
|
|
2406
|
+
export declare const RangeField: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2407
|
+
"update:modelValue": (value: number[]) => any;
|
|
2408
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
2409
|
+
"onUpdate:modelValue"?: ((value: number[]) => any) | undefined;
|
|
2410
|
+
}>, {
|
|
2411
|
+
max: number;
|
|
2412
|
+
min: number;
|
|
2413
|
+
step: number;
|
|
2414
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2415
|
+
|
|
2416
|
+
export declare const RatingPicker: __VLS_WithTemplateSlots_29<DefineComponent<ExtractPropTypes< {
|
|
2417
|
+
type: {
|
|
2418
|
+
type: StringConstructor;
|
|
2419
|
+
required: true;
|
|
2420
|
+
validator: (value: string) => boolean;
|
|
2421
|
+
};
|
|
2422
|
+
label: {
|
|
2423
|
+
type: PropType<string | null>;
|
|
2424
|
+
default: null;
|
|
2425
|
+
};
|
|
2426
|
+
readonly: {
|
|
2427
|
+
type: BooleanConstructor;
|
|
2428
|
+
default: boolean;
|
|
2429
|
+
};
|
|
2430
|
+
itemLabels: {
|
|
2431
|
+
type: PropType<string[]>;
|
|
2432
|
+
default: null;
|
|
2433
|
+
};
|
|
2434
|
+
twoEmotions: {
|
|
2435
|
+
type: BooleanConstructor;
|
|
2436
|
+
default: boolean;
|
|
2437
|
+
};
|
|
2438
|
+
hideAlert: {
|
|
2439
|
+
type: BooleanConstructor;
|
|
2440
|
+
default: boolean;
|
|
2441
|
+
};
|
|
2442
|
+
modelValue: {
|
|
2443
|
+
type: NumberConstructor;
|
|
2444
|
+
default: number;
|
|
2445
|
+
};
|
|
2446
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2447
|
+
"update:modelValue": (...args: any[]) => void;
|
|
2448
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2449
|
+
type: {
|
|
2450
|
+
type: StringConstructor;
|
|
2451
|
+
required: true;
|
|
2452
|
+
validator: (value: string) => boolean;
|
|
2453
|
+
};
|
|
2454
|
+
label: {
|
|
2455
|
+
type: PropType<string | null>;
|
|
2456
|
+
default: null;
|
|
2457
|
+
};
|
|
2458
|
+
readonly: {
|
|
2459
|
+
type: BooleanConstructor;
|
|
2460
|
+
default: boolean;
|
|
2461
|
+
};
|
|
2462
|
+
itemLabels: {
|
|
2463
|
+
type: PropType<string[]>;
|
|
2464
|
+
default: null;
|
|
2465
|
+
};
|
|
2466
|
+
twoEmotions: {
|
|
2467
|
+
type: BooleanConstructor;
|
|
2468
|
+
default: boolean;
|
|
2469
|
+
};
|
|
2470
|
+
hideAlert: {
|
|
2471
|
+
type: BooleanConstructor;
|
|
2472
|
+
default: boolean;
|
|
2473
|
+
};
|
|
2474
|
+
modelValue: {
|
|
2475
|
+
type: NumberConstructor;
|
|
2476
|
+
default: number;
|
|
2477
|
+
};
|
|
2478
|
+
}>> & Readonly<{
|
|
2479
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2480
|
+
}>, {
|
|
2481
|
+
modelValue: number;
|
|
2482
|
+
label: string | null;
|
|
2483
|
+
readonly: boolean;
|
|
2484
|
+
itemLabels: string[];
|
|
2485
|
+
twoEmotions: boolean;
|
|
2486
|
+
hideAlert: boolean;
|
|
2487
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
2488
|
+
label?(_: {}): any;
|
|
2489
|
+
default?(_: {}): any;
|
|
2490
|
+
}>;
|
|
2491
|
+
|
|
2492
|
+
export declare type RuleOptions = {
|
|
1555
2493
|
message?: string;
|
|
1556
2494
|
successMessage?: string;
|
|
2495
|
+
warningMessage?: string;
|
|
2496
|
+
fieldName?: string;
|
|
2497
|
+
fieldIdentifier?: string;
|
|
2498
|
+
value?: any;
|
|
1557
2499
|
length?: number;
|
|
1558
|
-
value?: number;
|
|
1559
2500
|
pattern?: RegExp;
|
|
1560
2501
|
ignoreSpace?: boolean;
|
|
1561
|
-
|
|
2502
|
+
isWarning?: boolean;
|
|
1562
2503
|
validate?: (value: any) => boolean | string;
|
|
2504
|
+
date?: string | Date;
|
|
1563
2505
|
};
|
|
1564
2506
|
|
|
1565
|
-
export declare const
|
|
1566
|
-
|
|
2507
|
+
export declare const SelectBtnField: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2508
|
+
"update:modelValue": (...args: any[]) => void;
|
|
2509
|
+
"update:error": (...args: any[]) => void;
|
|
2510
|
+
"update:error-messages": (...args: any[]) => void;
|
|
2511
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
2512
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2513
|
+
"onUpdate:error"?: ((...args: any[]) => any) | undefined;
|
|
2514
|
+
"onUpdate:error-messages"?: ((...args: any[]) => any) | undefined;
|
|
2515
|
+
}>, {
|
|
2516
|
+
error: boolean;
|
|
2517
|
+
modelValue: SelectBtnValue;
|
|
1567
2518
|
label: string;
|
|
2519
|
+
errorMessages: string[];
|
|
2520
|
+
hint: string;
|
|
2521
|
+
readonly: boolean;
|
|
2522
|
+
multiple: boolean;
|
|
2523
|
+
items: SelectBtnItem[];
|
|
2524
|
+
inline: boolean;
|
|
2525
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2526
|
+
|
|
2527
|
+
export declare const SkipLink: __VLS_WithTemplateSlots_30<DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{}>, {
|
|
2528
|
+
label: string;
|
|
2529
|
+
target: string;
|
|
1568
2530
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1569
2531
|
skipLinkSpan: HTMLSpanElement;
|
|
1570
2532
|
}, HTMLDivElement>, {
|
|
@@ -1595,10 +2557,10 @@ links: SocialMediaLink_2[];
|
|
|
1595
2557
|
|
|
1596
2558
|
declare type State = 'idle' | 'loading' | 'success' | 'error';
|
|
1597
2559
|
|
|
1598
|
-
export declare const SubHeader:
|
|
2560
|
+
export declare const SubHeader: __VLS_WithTemplateSlots_31<DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1599
2561
|
"click:list-item": (...args: any[]) => void;
|
|
1600
2562
|
back: (...args: any[]) => void;
|
|
1601
|
-
}, string, PublicProps, Readonly<
|
|
2563
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
1602
2564
|
"onClick:list-item"?: ((...args: any[]) => any) | undefined;
|
|
1603
2565
|
onBack?: ((...args: any[]) => any) | undefined;
|
|
1604
2566
|
}>, {
|
|
@@ -1618,13 +2580,15 @@ dataListGroupItems: DataListGroupItems_2;
|
|
|
1618
2580
|
'right-content'?(_: {}): any;
|
|
1619
2581
|
}>;
|
|
1620
2582
|
|
|
1621
|
-
export declare const SyAlert:
|
|
2583
|
+
export declare const SyAlert: __VLS_WithTemplateSlots_32<DefineComponent<__VLS_PublicProps_8, {
|
|
1622
2584
|
prependIcon: ComputedRef<string>;
|
|
1623
2585
|
dismissAlert: typeof dismissAlert;
|
|
1624
2586
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1625
|
-
"
|
|
1626
|
-
|
|
2587
|
+
"click:close": (...args: any[]) => void;
|
|
2588
|
+
"update:modelValue": (value: boolean) => void;
|
|
2589
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
1627
2590
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2591
|
+
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
1628
2592
|
}>, {
|
|
1629
2593
|
type: "info" | "success" | "warning" | "error";
|
|
1630
2594
|
variant: "outlined" | "tonal";
|
|
@@ -1767,10 +2731,10 @@ list: {};
|
|
|
1767
2731
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1768
2732
|
onLogout?: ((...args: any[]) => any) | undefined;
|
|
1769
2733
|
}>, {
|
|
1770
|
-
options: Record<string, any>;
|
|
1771
|
-
label: string;
|
|
1772
2734
|
modelValue: string | Record<string, any> | null;
|
|
2735
|
+
label: string;
|
|
1773
2736
|
required: boolean;
|
|
2737
|
+
options: Record<string, any>;
|
|
1774
2738
|
menuItems: Item[];
|
|
1775
2739
|
menuId: string;
|
|
1776
2740
|
textKey: string;
|
|
@@ -1791,7 +2755,7 @@ buttonRef: HTMLDivElement;
|
|
|
1791
2755
|
'footer-list-item'?(_: {}): any;
|
|
1792
2756
|
}>;
|
|
1793
2757
|
|
|
1794
|
-
export declare const SyInputSelect: DefineComponent<
|
|
2758
|
+
export declare const SyInputSelect: DefineComponent<__VLS_Props_10, {
|
|
1795
2759
|
isOpen: Ref<boolean, boolean>;
|
|
1796
2760
|
closeList: () => void;
|
|
1797
2761
|
selectItem: (item: any) => void;
|
|
@@ -1799,15 +2763,15 @@ selectedItem: Ref<string | Record<string, unknown> | null, string | Record<strin
|
|
|
1799
2763
|
getItemText: (item: unknown) => any;
|
|
1800
2764
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1801
2765
|
"update:modelValue": (...args: any[]) => void;
|
|
1802
|
-
}, string, PublicProps, Readonly<
|
|
2766
|
+
}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
|
|
1803
2767
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1804
2768
|
}>, {
|
|
1805
2769
|
outlined: boolean;
|
|
1806
|
-
label: string;
|
|
1807
|
-
items: string[] | Record<string, unknown>[];
|
|
1808
2770
|
modelValue: string | Record<string, unknown> | null;
|
|
2771
|
+
label: string;
|
|
1809
2772
|
required: boolean;
|
|
1810
2773
|
errorMessages: string | string[];
|
|
2774
|
+
items: string[] | Record<string, unknown>[];
|
|
1811
2775
|
textKey: string;
|
|
1812
2776
|
valueKey: string;
|
|
1813
2777
|
isHeaderToolbar: boolean;
|
|
@@ -1817,10 +2781,70 @@ menu: HTMLDivElement;
|
|
|
1817
2781
|
|
|
1818
2782
|
export { SySelect }
|
|
1819
2783
|
|
|
1820
|
-
export declare const SyTextField: __VLS_WithTemplateSlots_8<DefineComponent<
|
|
1821
|
-
appendInnerIconColor: ComputedRef<"success" | "error" | "black">;
|
|
1822
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2784
|
+
export declare const SyTextField: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Props_11, {
|
|
2785
|
+
appendInnerIconColor: ComputedRef<"success" | "warning" | "error" | "black">;
|
|
2786
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2787
|
+
"update:model-value": (...args: any[]) => void;
|
|
2788
|
+
clear: (...args: any[]) => void;
|
|
2789
|
+
"prepend-icon-click": (...args: any[]) => void;
|
|
2790
|
+
"append-icon-click": (...args: any[]) => void;
|
|
2791
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
2792
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2793
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
2794
|
+
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2795
|
+
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2796
|
+
}>, {
|
|
2797
|
+
modelValue: string | number | null;
|
|
2798
|
+
prependIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
2799
|
+
appendIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
2800
|
+
prependInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
2801
|
+
appendInnerIcon: "info" | "success" | "warning" | "error" | "close" | "calendar";
|
|
1823
2802
|
variantStyle: VariantStyle;
|
|
2803
|
+
color: ColorType;
|
|
2804
|
+
isClearable: boolean;
|
|
2805
|
+
label: string;
|
|
2806
|
+
errorMessages: string[] | null;
|
|
2807
|
+
isReadOnly: boolean;
|
|
2808
|
+
isActive: boolean;
|
|
2809
|
+
baseColor: string;
|
|
2810
|
+
bgColor: string;
|
|
2811
|
+
centerAffix: boolean;
|
|
2812
|
+
counter: string | number | boolean;
|
|
2813
|
+
counterValue: number | ((value: any) => number);
|
|
2814
|
+
density: "default" | "comfortable" | "compact";
|
|
2815
|
+
direction: "horizontal" | "vertical";
|
|
2816
|
+
isDirty: boolean;
|
|
2817
|
+
isDisabled: boolean;
|
|
2818
|
+
isOnError: boolean;
|
|
2819
|
+
isFlat: boolean;
|
|
2820
|
+
isFocused: boolean;
|
|
2821
|
+
areDetailsHidden: boolean | "auto";
|
|
2822
|
+
areSpinButtonsHidden: boolean;
|
|
2823
|
+
hint: string;
|
|
2824
|
+
id: string;
|
|
2825
|
+
loading: string | boolean;
|
|
2826
|
+
maxErrors: string | number;
|
|
2827
|
+
maxWidth: string | number;
|
|
2828
|
+
messages: string | string[];
|
|
2829
|
+
minWidth: string | number;
|
|
2830
|
+
name: string;
|
|
2831
|
+
displayPersistentClear: boolean;
|
|
2832
|
+
displayPersistentCounter: boolean;
|
|
2833
|
+
displayPersistentHint: boolean;
|
|
2834
|
+
displayPersistentPlaceholder: boolean;
|
|
2835
|
+
placeholder: string;
|
|
2836
|
+
prefix: string;
|
|
2837
|
+
isReversed: boolean;
|
|
2838
|
+
role: string;
|
|
2839
|
+
rounded: string | number | boolean;
|
|
2840
|
+
isOnSingleLine: boolean;
|
|
2841
|
+
suffix: string;
|
|
2842
|
+
theme: string;
|
|
2843
|
+
isTiled: boolean;
|
|
2844
|
+
type: string;
|
|
2845
|
+
width: string | number;
|
|
2846
|
+
displayAsterisk: boolean;
|
|
2847
|
+
noIcon: boolean;
|
|
1824
2848
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1825
2849
|
prepend?(_: {}): any;
|
|
1826
2850
|
append?(_: {}): any;
|
|
@@ -1859,10 +2883,10 @@ export declare function useNotificationService(): {
|
|
|
1859
2883
|
clearQueue: () => void;
|
|
1860
2884
|
};
|
|
1861
2885
|
|
|
1862
|
-
export declare const UserMenuBtn: DefineComponent<
|
|
2886
|
+
export declare const UserMenuBtn: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1863
2887
|
logout: (...args: any[]) => void;
|
|
1864
2888
|
"update:modelValue": (value: MenuItem_3 | null) => void;
|
|
1865
|
-
}, string, PublicProps, Readonly<
|
|
2889
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
1866
2890
|
"onUpdate:modelValue"?: ((value: MenuItem_3 | null) => any) | undefined;
|
|
1867
2891
|
onLogout?: ((...args: any[]) => any) | undefined;
|
|
1868
2892
|
}>, {
|
|
@@ -1884,12 +2908,13 @@ export declare function useWidthable(props: {
|
|
|
1884
2908
|
|
|
1885
2909
|
declare function validateOnSubmit(): boolean;
|
|
1886
2910
|
|
|
1887
|
-
declare type ValidationResult = {
|
|
2911
|
+
export declare type ValidationResult = {
|
|
1888
2912
|
success?: string;
|
|
1889
2913
|
error?: string;
|
|
2914
|
+
warning?: string;
|
|
1890
2915
|
};
|
|
1891
2916
|
|
|
1892
|
-
declare type ValidationRule = (value: any) => ValidationResult;
|
|
2917
|
+
export declare type ValidationRule = (value: any) => ValidationResult;
|
|
1893
2918
|
|
|
1894
2919
|
export declare interface Widthable {
|
|
1895
2920
|
maxWidth?: NumberOrNumberString;
|