@cnamts/synapse 0.0.4-alpha → 0.0.5-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 +932 -224
- package/dist/design-system-v3.js +3374 -1502
- package/dist/design-system-v3.umd.cjs +6 -6
- package/dist/style.css +1 -1
- package/package.json +2 -1
- package/src/assets/tokens.scss +0 -1
- package/src/components/Alert/Accessibilite.mdx +14 -0
- package/src/components/Alert/Accessibilite.stories.ts +166 -0
- package/src/components/Alert/AccessibiliteItems.ts +152 -0
- package/src/components/Alert/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/BackBtn/Accessibilite.mdx +14 -0
- package/src/components/BackBtn/Accessibilite.stories.ts +166 -0
- package/src/components/BackBtn/AccessibiliteItems.ts +132 -0
- package/src/components/BackBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/BackToTopBtn/Accessibilite.mdx +14 -0
- package/src/components/BackToTopBtn/Accessibilite.stories.ts +166 -0
- package/src/components/BackToTopBtn/AccessibiliteItems.ts +82 -0
- package/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CollapsibleList/Accessibilite.mdx +14 -0
- package/src/components/CollapsibleList/Accessibilite.stories.ts +166 -0
- package/src/components/CollapsibleList/AccessibiliteItems.ts +129 -0
- package/src/components/CollapsibleList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CopyBtn/Accessibilite.mdx +14 -0
- package/src/components/CopyBtn/Accessibilite.stories.ts +166 -0
- package/src/components/CopyBtn/AccessibiliteItems.ts +135 -0
- package/src/components/CopyBtn/config.ts +2 -0
- package/src/components/CopyBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +44 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +606 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +246 -0
- package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +168 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +40 -0
- package/src/components/Customs/{CustomInputSelect/CustomInputSelect.stories.ts → SyInputSelect/SyInputSelect.stories.ts} +29 -29
- package/src/components/Customs/{CustomInputSelect/CustomInputSelect.vue → SyInputSelect/SyInputSelect.vue} +10 -2
- package/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.ts +140 -0
- package/src/components/Customs/{CustomSelect/CustomSelect.mdx → SySelect/SySelect.mdx} +8 -8
- package/src/components/Customs/{CustomSelect/CustomSelect.stories.ts → SySelect/SySelect.stories.ts} +25 -25
- package/src/components/Customs/{CustomSelect/CustomSelect.vue → SySelect/SySelect.vue} +9 -5
- package/src/components/Customs/{CustomInputSelect/tests/CustomInputSelect.spec.ts → SySelect/tests/SySelect.spec.ts} +48 -71
- package/src/components/Customs/SyTextField/SyTextField.mdx +44 -0
- package/src/components/Customs/{CustomTextField/CustomTextField.stories.ts → SyTextField/SyTextField.stories.ts} +34 -34
- package/src/components/Customs/{CustomTextField/tests/CustomTextField.spec.ts → SyTextField/tests/SyTextField.spec.ts} +3 -3
- package/src/components/Customs/{CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap → SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap} +3 -5
- package/src/components/DialogBox/DialogBox.mdx +14 -0
- package/src/components/DialogBox/DialogBox.stories.ts +798 -0
- package/src/components/DialogBox/DialogBox.vue +181 -0
- package/src/components/DialogBox/config.ts +25 -0
- package/src/components/DialogBox/locales.ts +5 -0
- package/src/components/DialogBox/tests/DialogBox.spec.ts +329 -0
- package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +46 -0
- package/src/components/ErrorPage/ErrorPage.mdx +21 -0
- package/src/components/ErrorPage/ErrorPage.stories.ts +133 -0
- package/src/components/ErrorPage/ErrorPage.vue +93 -0
- package/src/components/ErrorPage/locales.ts +5 -0
- package/src/components/ErrorPage/tests/ErrorPage.spec.ts +40 -0
- package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +78 -0
- package/src/components/FooterBar/FooterBar.stories.ts +556 -8
- package/src/components/FooterBar/config.ts +2 -3
- package/src/components/FooterBar/tests/FooterBar.spec.ts +1 -1
- package/src/components/FooterBar/tests/FooterBarConfig.spec.ts +1 -1
- package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +2 -2
- package/src/components/FranceConnectBtn/Accessibilite.mdx +14 -0
- package/src/components/FranceConnectBtn/Accessibilite.stories.ts +194 -0
- package/src/components/FranceConnectBtn/AccessibiliteItems.ts +199 -0
- package/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/HeaderBar.stories.ts +60 -2
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +6 -6
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +1 -1
- package/src/components/HeaderToolbar/HeaderToolbar.vue +2 -2
- package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +36 -2
- package/src/components/LangBtn/Accessibilite.mdx +14 -0
- package/src/components/LangBtn/Accessibilite.stories.ts +166 -0
- package/src/components/LangBtn/AccessibiliteItems.ts +132 -0
- package/src/components/LangBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/LangBtn/tests/LangBtn.spec.ts +1 -1
- package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +1 -1
- package/src/components/MaintenancePage/MaintenancePage.mdx +11 -0
- package/src/components/MaintenancePage/MaintenancePage.stories.ts +41 -0
- package/src/components/MaintenancePage/MaintenancePage.vue +25 -0
- package/src/components/MaintenancePage/assets/maintenance.svg +1 -0
- package/src/components/MaintenancePage/index.ts +3 -0
- package/src/components/MaintenancePage/locales.ts +5 -0
- package/src/components/MaintenancePage/tests/MaintenancePage.spec.ts +12 -0
- package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +3 -0
- package/src/components/NotFoundPage/NotFoundPage.mdx +19 -0
- package/src/components/NotFoundPage/NotFoundPage.stories.ts +76 -0
- package/src/components/NotFoundPage/NotFoundPage.vue +52 -0
- package/src/components/NotFoundPage/assets/not-found.svg +1 -0
- package/src/components/NotFoundPage/locales.ts +6 -0
- package/src/components/NotFoundPage/tests/NotFoundPage.spec.ts +38 -0
- package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +76 -0
- package/src/components/NotificationBar/Accessibilite.mdx +14 -0
- package/src/components/NotificationBar/Accessibilite.stories.ts +166 -0
- package/src/components/NotificationBar/AccessibiliteItems.ts +174 -0
- package/src/components/NotificationBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NotificationBar/options.ts +1 -0
- package/src/components/PageContainer/Accessibilite.mdx +14 -0
- package/src/components/PageContainer/Accessibilite.stories.ts +166 -0
- package/src/components/PageContainer/AccessibiliteItems.ts +52 -0
- package/src/components/PageContainer/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PhoneField/PhoneField.vue +5 -5
- package/src/components/PhoneField/tests/PhoneField.spec.ts +3 -3
- package/src/components/SkipLink/Accessibilite.mdx +14 -0
- package/src/components/SkipLink/Accessibilite.stories.ts +167 -0
- package/src/components/SkipLink/AccessibiliteItems.ts +77 -0
- package/src/components/SkipLink/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +17 -13
- package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +2 -1
- package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +1 -1
- package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
- package/src/components/SubHeader/SubHeader.vue +1 -1
- package/src/components/UserMenuBtn/UserMenuBtn.mdx +35 -0
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +438 -0
- package/src/components/UserMenuBtn/UserMenuBtn.vue +105 -0
- package/src/components/UserMenuBtn/config.ts +24 -0
- package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +125 -0
- package/src/components/index.ts +12 -3
- package/src/composables/index.ts +8 -0
- package/src/composables/rules/tests/useFieldValidation.spec.ts +82 -0
- package/src/composables/rules/useFieldValidation.ts +53 -0
- package/src/designTokens/index.ts +2 -0
- package/src/designTokens/tokens/cnam/cnamDarkTheme.ts +5 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +1 -0
- package/src/main.ts +2 -0
- package/src/stories/Fondamentaux/Arrondis.mdx +24 -0
- package/src/stories/{Guidelines → Fondamentaux}/Colors.mdx +1 -1
- package/src/stories/Fondamentaux/Conteneurs.mdx +7 -0
- package/src/stories/Fondamentaux/CustomisationEtThemes.mdx +7 -0
- package/src/stories/Fondamentaux/Elevations.mdx +14 -0
- package/src/stories/Fondamentaux/Espacements.mdx +29 -0
- package/src/stories/{Guidelines → Fondamentaux}/Introduction.mdx +1 -1
- package/src/stories/Fondamentaux/StylesTypographiques.mdx +33 -0
- package/src/stories/Fondamentaux/Typographie.mdx +58 -0
- package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +132 -0
- package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.stories.ts +1 -1
- package/src/stories/{Fondamentaux → Guidelines}/EcoConception/Econception.stories.ts +2 -2
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +0 -40
- package/src/components/Customs/CustomSelect/tests/CustomSelect.spec.ts +0 -236
- package/src/components/Customs/CustomTextField/CustomTextField.mdx +0 -44
- package/src/stories/Guidelines/CustomisationEtThemes.mdx +0 -3
- package/src/stories/Guidelines/Typo.mdx +0 -53
- /package/src/components/Customs/{CustomInputSelect → SyInputSelect}/config.ts +0 -0
- /package/src/components/Customs/{CustomTextField/CustomTextField.vue → SyTextField/SyTextField.vue} +0 -0
- /package/src/components/Customs/{CustomTextField → SyTextField}/types.d.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.mdx +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/AccessibiliteItems.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/ExpertiseLevelEnum.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/RGAALevelEnum.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/EcoConception.mdx +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/ecoDesignItems.ts +0 -0
|
@@ -7,18 +7,21 @@ import { DataListGroupItems } from './types';
|
|
|
7
7
|
import { DataListGroupItems as DataListGroupItems_2 } from '../DataListGroup/types';
|
|
8
8
|
import { DataListIcons } from './types';
|
|
9
9
|
import { DataListIcons as DataListIcons_2 } from '../DataList/types';
|
|
10
|
-
import { DataListItem } from './types';
|
|
10
|
+
import { DataListItem as DataListItem_2 } from './types';
|
|
11
11
|
import { DefineComponent } from 'vue';
|
|
12
12
|
import { ExtractPropTypes } from 'vue';
|
|
13
13
|
import { IconType } from './types';
|
|
14
14
|
import { LinkItem } from './types';
|
|
15
15
|
import { ListItem } from './types';
|
|
16
|
+
import { MenuItem } from './types';
|
|
16
17
|
import { PropType } from 'vue';
|
|
17
18
|
import { PublicProps } from 'vue';
|
|
18
19
|
import { Ref } from 'vue';
|
|
19
20
|
import { RouteLocationAsPathGeneric } from 'vue-router';
|
|
20
21
|
import { RouteLocationAsRelativeGeneric } from 'vue-router';
|
|
21
22
|
import { RouteLocationRaw } from 'vue-router';
|
|
23
|
+
import { RouteRecordRaw } from 'vue-router';
|
|
24
|
+
import { SelectItem } from './types';
|
|
22
25
|
import { SocialMediaLink } from '../SocialMediaLinks/types';
|
|
23
26
|
import { SocialMediaLink as SocialMediaLink_2 } from './types';
|
|
24
27
|
import { VariantStyle } from './types';
|
|
@@ -29,14 +32,62 @@ declare type __VLS_PublicProps = {
|
|
|
29
32
|
|
|
30
33
|
declare type __VLS_PublicProps_2 = {
|
|
31
34
|
modelValue?: boolean;
|
|
35
|
+
} & typeof __VLS_typeProps_2;
|
|
36
|
+
|
|
37
|
+
declare type __VLS_PublicProps_3 = {
|
|
38
|
+
modelValue?: boolean;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
declare type __VLS_PublicProps_4 = {
|
|
42
|
+
modelValue?: boolean;
|
|
32
43
|
};
|
|
33
44
|
|
|
45
|
+
declare type __VLS_PublicProps_5 = {
|
|
46
|
+
'burgerMenu'?: boolean;
|
|
47
|
+
} & typeof __VLS_typeProps_3;
|
|
48
|
+
|
|
34
49
|
declare let __VLS_typeProps: {
|
|
35
50
|
type?: 'success' | 'info' | 'warning' | 'error';
|
|
36
51
|
closable?: boolean;
|
|
37
52
|
variant?: 'tonal' | 'outlined';
|
|
38
53
|
};
|
|
39
54
|
|
|
55
|
+
declare let __VLS_typeProps_2: {
|
|
56
|
+
title?: string;
|
|
57
|
+
width?: string;
|
|
58
|
+
cancelBtnText?: string;
|
|
59
|
+
confirmBtnText?: string;
|
|
60
|
+
hideActions?: boolean;
|
|
61
|
+
persistent?: boolean;
|
|
62
|
+
} & CustomizableOptions;
|
|
63
|
+
|
|
64
|
+
declare let __VLS_typeProps_3: CustomizableOptions & {
|
|
65
|
+
homeAriaLabel?: string;
|
|
66
|
+
serviceTitle?: string;
|
|
67
|
+
serviceSubtitle?: string;
|
|
68
|
+
homeLink?: {
|
|
69
|
+
ariaLabel?: string;
|
|
70
|
+
to?: RouteLocationRaw;
|
|
71
|
+
href?: string;
|
|
72
|
+
};
|
|
73
|
+
/** Keep the header visible */
|
|
74
|
+
sticky?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* Show the header at sticky only when the user scroll up in mobile
|
|
77
|
+
* Need 'sticky' at true,
|
|
78
|
+
*/
|
|
79
|
+
hideWhenDown?: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* The number of item to shown in the horizontal menu before using
|
|
82
|
+
* the Burger menu (default: 6)
|
|
83
|
+
*/
|
|
84
|
+
maxHorizontalMenuItems?: number;
|
|
85
|
+
/**
|
|
86
|
+
* The items to show in the horizontal menu
|
|
87
|
+
*/
|
|
88
|
+
items?: NavigationItem[];
|
|
89
|
+
};
|
|
90
|
+
|
|
40
91
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
92
|
new (): {
|
|
42
93
|
$slots: S;
|
|
@@ -109,6 +160,42 @@ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
|
109
160
|
};
|
|
110
161
|
};
|
|
111
162
|
|
|
163
|
+
declare type __VLS_WithTemplateSlots_20<T, S> = T & {
|
|
164
|
+
new (): {
|
|
165
|
+
$slots: S;
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
declare type __VLS_WithTemplateSlots_21<T, S> = T & {
|
|
170
|
+
new (): {
|
|
171
|
+
$slots: S;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
declare type __VLS_WithTemplateSlots_22<T, S> = T & {
|
|
176
|
+
new (): {
|
|
177
|
+
$slots: S;
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
declare type __VLS_WithTemplateSlots_23<T, S> = T & {
|
|
182
|
+
new (): {
|
|
183
|
+
$slots: S;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
declare type __VLS_WithTemplateSlots_24<T, S> = T & {
|
|
188
|
+
new (): {
|
|
189
|
+
$slots: S;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
declare type __VLS_WithTemplateSlots_25<T, S> = T & {
|
|
194
|
+
new (): {
|
|
195
|
+
$slots: S;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
|
|
112
199
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
113
200
|
new (): {
|
|
114
201
|
$slots: S;
|
|
@@ -226,167 +313,13 @@ tooltipDuration: number;
|
|
|
226
313
|
tooltip?(_: {}): any;
|
|
227
314
|
}>;
|
|
228
315
|
|
|
229
|
-
export declare
|
|
230
|
-
modelValue?: string | Record<string, unknown> | null | undefined;
|
|
231
|
-
items?: string[] | Record<string, unknown>[] | undefined;
|
|
232
|
-
textKey?: string | undefined;
|
|
233
|
-
valueKey?: string | undefined;
|
|
234
|
-
label?: string | undefined;
|
|
235
|
-
outlined?: boolean | undefined;
|
|
236
|
-
required?: boolean | undefined;
|
|
237
|
-
errorMessages?: string | string[] | undefined;
|
|
238
|
-
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
239
|
-
"update:modelValue": (...args: any[]) => void;
|
|
240
|
-
}, string, PublicProps, Readonly<CustomizableOptions & {
|
|
241
|
-
modelValue?: string | Record<string, unknown> | null | undefined;
|
|
242
|
-
items?: string[] | Record<string, unknown>[] | undefined;
|
|
243
|
-
textKey?: string | undefined;
|
|
244
|
-
valueKey?: string | undefined;
|
|
245
|
-
label?: string | undefined;
|
|
246
|
-
outlined?: boolean | undefined;
|
|
247
|
-
required?: boolean | undefined;
|
|
248
|
-
errorMessages?: string | string[] | undefined;
|
|
249
|
-
}> & Readonly<{
|
|
250
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
251
|
-
}>, {
|
|
252
|
-
outlined: boolean;
|
|
253
|
-
modelValue: string | Record<string, unknown> | null;
|
|
254
|
-
label: string;
|
|
255
|
-
items: string[] | Record<string, unknown>[];
|
|
256
|
-
required: boolean;
|
|
257
|
-
textKey: string;
|
|
258
|
-
valueKey: string;
|
|
259
|
-
errorMessages: string | string[];
|
|
260
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
261
|
-
|
|
262
|
-
declare interface CustomizableOptions {
|
|
316
|
+
export declare interface CustomizableOptions {
|
|
263
317
|
vuetifyOptions?: ComponentsProps;
|
|
264
318
|
}
|
|
265
319
|
|
|
266
|
-
export declare const
|
|
267
|
-
modelValue: {
|
|
268
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
269
|
-
default: null;
|
|
270
|
-
};
|
|
271
|
-
items: {
|
|
272
|
-
type: ArrayConstructor;
|
|
273
|
-
default: () => never[];
|
|
274
|
-
};
|
|
275
|
-
label: {
|
|
276
|
-
type: StringConstructor;
|
|
277
|
-
default: string;
|
|
278
|
-
};
|
|
279
|
-
errorMessages: {
|
|
280
|
-
type: PropType<string | readonly string[]>;
|
|
281
|
-
default: () => never[];
|
|
282
|
-
};
|
|
283
|
-
required: {
|
|
284
|
-
type: BooleanConstructor;
|
|
285
|
-
default: boolean;
|
|
286
|
-
};
|
|
287
|
-
menuId: {
|
|
288
|
-
type: StringConstructor;
|
|
289
|
-
default: string;
|
|
290
|
-
};
|
|
291
|
-
outlined: {
|
|
292
|
-
type: BooleanConstructor;
|
|
293
|
-
default: boolean;
|
|
294
|
-
};
|
|
295
|
-
textKey: {
|
|
296
|
-
type: StringConstructor;
|
|
297
|
-
default: string;
|
|
298
|
-
};
|
|
299
|
-
valueKey: {
|
|
300
|
-
type: StringConstructor;
|
|
301
|
-
default: string;
|
|
302
|
-
};
|
|
303
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
304
|
-
"update:modelValue": (...args: any[]) => void;
|
|
305
|
-
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
306
|
-
modelValue: {
|
|
307
|
-
type: (ObjectConstructor | StringConstructor)[];
|
|
308
|
-
default: null;
|
|
309
|
-
};
|
|
310
|
-
items: {
|
|
311
|
-
type: ArrayConstructor;
|
|
312
|
-
default: () => never[];
|
|
313
|
-
};
|
|
314
|
-
label: {
|
|
315
|
-
type: StringConstructor;
|
|
316
|
-
default: string;
|
|
317
|
-
};
|
|
318
|
-
errorMessages: {
|
|
319
|
-
type: PropType<string | readonly string[]>;
|
|
320
|
-
default: () => never[];
|
|
321
|
-
};
|
|
322
|
-
required: {
|
|
323
|
-
type: BooleanConstructor;
|
|
324
|
-
default: boolean;
|
|
325
|
-
};
|
|
326
|
-
menuId: {
|
|
327
|
-
type: StringConstructor;
|
|
328
|
-
default: string;
|
|
329
|
-
};
|
|
330
|
-
outlined: {
|
|
331
|
-
type: BooleanConstructor;
|
|
332
|
-
default: boolean;
|
|
333
|
-
};
|
|
334
|
-
textKey: {
|
|
335
|
-
type: StringConstructor;
|
|
336
|
-
default: string;
|
|
337
|
-
};
|
|
338
|
-
valueKey: {
|
|
339
|
-
type: StringConstructor;
|
|
340
|
-
default: string;
|
|
341
|
-
};
|
|
342
|
-
}>> & Readonly<{
|
|
343
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
344
|
-
}>, {
|
|
345
|
-
outlined: boolean;
|
|
346
|
-
modelValue: string | Record<string, any>;
|
|
347
|
-
label: string;
|
|
348
|
-
items: unknown[];
|
|
349
|
-
required: boolean;
|
|
350
|
-
textKey: string;
|
|
351
|
-
valueKey: string;
|
|
352
|
-
errorMessages: string | readonly string[];
|
|
353
|
-
menuId: string;
|
|
354
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
355
|
-
|
|
356
|
-
export declare const CustomTextField: __VLS_WithTemplateSlots_5<DefineComponent< {
|
|
357
|
-
prependIcon?: IconType | undefined;
|
|
358
|
-
appendIcon?: IconType | undefined;
|
|
359
|
-
prependInnerIcon?: IconType | undefined;
|
|
360
|
-
appendInnerIcon?: IconType | undefined;
|
|
361
|
-
variantStyle?: VariantStyle | undefined;
|
|
362
|
-
color?: ColorType | undefined;
|
|
363
|
-
isClearable?: boolean | undefined;
|
|
364
|
-
showDivider?: boolean | undefined;
|
|
365
|
-
label?: string | undefined;
|
|
366
|
-
}, {
|
|
367
|
-
appendInnerIconColor: ComputedRef<"error" | "success" | "black">;
|
|
368
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
369
|
-
prependIcon?: IconType | undefined;
|
|
370
|
-
appendIcon?: IconType | undefined;
|
|
371
|
-
prependInnerIcon?: IconType | undefined;
|
|
372
|
-
appendInnerIcon?: IconType | undefined;
|
|
373
|
-
variantStyle?: VariantStyle | undefined;
|
|
374
|
-
color?: ColorType | undefined;
|
|
375
|
-
isClearable?: boolean | undefined;
|
|
376
|
-
showDivider?: boolean | undefined;
|
|
377
|
-
label?: string | undefined;
|
|
378
|
-
}> & Readonly<{}>, {
|
|
379
|
-
variantStyle: VariantStyle;
|
|
380
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
381
|
-
prepend?(_: {}): any;
|
|
382
|
-
append?(_: {}): any;
|
|
383
|
-
"prepend-inner"?(_: {}): any;
|
|
384
|
-
"append-inner"?(_: {}): any;
|
|
385
|
-
}>;
|
|
386
|
-
|
|
387
|
-
export declare const DataList: __VLS_WithTemplateSlots_6<DefineComponent<ExtractPropTypes< {
|
|
320
|
+
export declare const DataList: __VLS_WithTemplateSlots_7<DefineComponent<ExtractPropTypes< {
|
|
388
321
|
items: {
|
|
389
|
-
type: PropType<
|
|
322
|
+
type: PropType<DataListItem_2[]>;
|
|
390
323
|
required: true;
|
|
391
324
|
};
|
|
392
325
|
icons: {
|
|
@@ -441,7 +374,7 @@ default: undefined;
|
|
|
441
374
|
"click:item-action": (...args: any[]) => void;
|
|
442
375
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
443
376
|
items: {
|
|
444
|
-
type: PropType<
|
|
377
|
+
type: PropType<DataListItem_2[]>;
|
|
445
378
|
required: true;
|
|
446
379
|
};
|
|
447
380
|
icons: {
|
|
@@ -564,11 +497,77 @@ itemWidth: string;
|
|
|
564
497
|
icons: DataListIcons_2 | undefined;
|
|
565
498
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
566
499
|
|
|
500
|
+
export declare const DataListItem: __VLS_WithTemplateSlots_8<DefineComponent<CustomizableOptions & {
|
|
501
|
+
label: string;
|
|
502
|
+
value?: string | number | undefined;
|
|
503
|
+
action?: string | undefined;
|
|
504
|
+
placeholder?: string | undefined;
|
|
505
|
+
chip?: boolean | undefined;
|
|
506
|
+
icon?: string | undefined;
|
|
507
|
+
row?: boolean | undefined;
|
|
508
|
+
renderHtmlValue?: boolean | undefined;
|
|
509
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
510
|
+
"click:action": (...args: any[]) => void;
|
|
511
|
+
}, string, PublicProps, Readonly<CustomizableOptions & {
|
|
512
|
+
label: string;
|
|
513
|
+
value?: string | number | undefined;
|
|
514
|
+
action?: string | undefined;
|
|
515
|
+
placeholder?: string | undefined;
|
|
516
|
+
chip?: boolean | undefined;
|
|
517
|
+
icon?: string | undefined;
|
|
518
|
+
row?: boolean | undefined;
|
|
519
|
+
renderHtmlValue?: boolean | undefined;
|
|
520
|
+
}> & Readonly<{
|
|
521
|
+
"onClick:action"?: ((...args: any[]) => any) | undefined;
|
|
522
|
+
}>, {
|
|
523
|
+
icon: string;
|
|
524
|
+
label: string;
|
|
525
|
+
value: string | number;
|
|
526
|
+
placeholder: string;
|
|
527
|
+
action: string;
|
|
528
|
+
chip: boolean;
|
|
529
|
+
row: boolean;
|
|
530
|
+
renderHtmlValue: boolean;
|
|
531
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
532
|
+
icon?(_: {}): any;
|
|
533
|
+
value?(_: {
|
|
534
|
+
itemValue: string;
|
|
535
|
+
}): any;
|
|
536
|
+
action?(_: {}): any;
|
|
537
|
+
}>;
|
|
538
|
+
|
|
539
|
+
export declare const DialogBox: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
540
|
+
cancel: (...args: any[]) => void;
|
|
541
|
+
"update:modelValue": (...args: any[]) => void;
|
|
542
|
+
confirm: (...args: any[]) => void;
|
|
543
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
544
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
545
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
546
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
547
|
+
}>, {
|
|
548
|
+
width: string;
|
|
549
|
+
title: string;
|
|
550
|
+
hideActions: boolean;
|
|
551
|
+
persistent: boolean;
|
|
552
|
+
cancelBtnText: string;
|
|
553
|
+
confirmBtnText: string;
|
|
554
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
555
|
+
default?: (() => undefined) | undefined;
|
|
556
|
+
title?: (() => undefined) | undefined;
|
|
557
|
+
actions?: (() => undefined) | undefined;
|
|
558
|
+
}> & {
|
|
559
|
+
default?: (() => undefined) | undefined;
|
|
560
|
+
title?: (() => undefined) | undefined;
|
|
561
|
+
actions?: (() => undefined) | undefined;
|
|
562
|
+
}>;
|
|
563
|
+
|
|
567
564
|
declare function dismissAlert(): void;
|
|
568
565
|
|
|
566
|
+
declare type DisplayFormat = 'code' | 'code-abbreviation' | 'code-country' | 'country' | 'abbreviation';
|
|
567
|
+
|
|
569
568
|
declare function download(): Promise<void>;
|
|
570
569
|
|
|
571
|
-
export declare const DownloadBtn:
|
|
570
|
+
export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<Props_2 & CustomizableOptions, {
|
|
572
571
|
getFileInfo: typeof getFileInfo;
|
|
573
572
|
download: typeof download;
|
|
574
573
|
state: Ref<State, State>;
|
|
@@ -585,6 +584,39 @@ fallbackFilename: string;
|
|
|
585
584
|
default?(_: {}): any;
|
|
586
585
|
}>;
|
|
587
586
|
|
|
587
|
+
export declare const ErrorPage: __VLS_WithTemplateSlots_11<DefineComponent< {
|
|
588
|
+
pageTitle?: string | undefined;
|
|
589
|
+
message?: string | undefined;
|
|
590
|
+
code?: string | undefined;
|
|
591
|
+
codeErrorText?: string | undefined;
|
|
592
|
+
btnText?: string | undefined;
|
|
593
|
+
btnHref?: string | undefined;
|
|
594
|
+
btnLink?: string | RouteRecordRaw | undefined;
|
|
595
|
+
hideBtn?: boolean | undefined;
|
|
596
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
597
|
+
pageTitle?: string | undefined;
|
|
598
|
+
message?: string | undefined;
|
|
599
|
+
code?: string | undefined;
|
|
600
|
+
codeErrorText?: string | undefined;
|
|
601
|
+
btnText?: string | undefined;
|
|
602
|
+
btnHref?: string | undefined;
|
|
603
|
+
btnLink?: string | RouteRecordRaw | undefined;
|
|
604
|
+
hideBtn?: boolean | undefined;
|
|
605
|
+
}> & Readonly<{}>, {
|
|
606
|
+
code: string;
|
|
607
|
+
message: string;
|
|
608
|
+
pageTitle: string;
|
|
609
|
+
codeErrorText: string;
|
|
610
|
+
btnText: string;
|
|
611
|
+
btnHref: string;
|
|
612
|
+
btnLink: string | RouteRecordRaw;
|
|
613
|
+
hideBtn: boolean;
|
|
614
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
615
|
+
"additional-content"?(_: {}): any;
|
|
616
|
+
action?(_: {}): any;
|
|
617
|
+
illustration?(_: {}): any;
|
|
618
|
+
}>;
|
|
619
|
+
|
|
588
620
|
declare interface FileInfo {
|
|
589
621
|
name: string;
|
|
590
622
|
type: string;
|
|
@@ -592,7 +624,7 @@ declare interface FileInfo {
|
|
|
592
624
|
|
|
593
625
|
declare function focus_2(): void;
|
|
594
626
|
|
|
595
|
-
export declare const FooterBar:
|
|
627
|
+
export declare const FooterBar: __VLS_WithTemplateSlots_12<DefineComponent<CustomizableOptions & {
|
|
596
628
|
a11yCompliance?: string | undefined;
|
|
597
629
|
linkItems?: LinkItem[] | null | undefined;
|
|
598
630
|
items?: LinkItem[] | null | undefined;
|
|
@@ -676,7 +708,7 @@ isConnectPlus: boolean;
|
|
|
676
708
|
*/
|
|
677
709
|
declare function getFileInfo(header: Record<string, string>): FileInfo;
|
|
678
710
|
|
|
679
|
-
export declare const HeaderBar:
|
|
711
|
+
export declare const HeaderBar: __VLS_WithTemplateSlots_13<DefineComponent< {
|
|
680
712
|
/** Keep the header visible */
|
|
681
713
|
sticky?: boolean | undefined;
|
|
682
714
|
/**
|
|
@@ -684,6 +716,11 @@ sticky?: boolean | undefined;
|
|
|
684
716
|
* Need 'sticky' at true,
|
|
685
717
|
*/
|
|
686
718
|
hideWhenDown?: boolean | undefined;
|
|
719
|
+
homeLink?: {
|
|
720
|
+
ariaLabel?: string | undefined;
|
|
721
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
722
|
+
href?: string | undefined;
|
|
723
|
+
} | undefined;
|
|
687
724
|
} & LogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
688
725
|
/** Keep the header visible */
|
|
689
726
|
sticky?: boolean | undefined;
|
|
@@ -692,10 +729,24 @@ sticky?: boolean | undefined;
|
|
|
692
729
|
* Need 'sticky' at true,
|
|
693
730
|
*/
|
|
694
731
|
hideWhenDown?: boolean | undefined;
|
|
732
|
+
homeLink?: {
|
|
733
|
+
ariaLabel?: string | undefined;
|
|
734
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
735
|
+
href?: string | undefined;
|
|
736
|
+
} | undefined;
|
|
695
737
|
} & LogoProps> & Readonly<{}>, {
|
|
696
738
|
sticky: boolean;
|
|
697
739
|
serviceTitle: string;
|
|
698
740
|
serviceSubtitle: string;
|
|
741
|
+
homeLink: {
|
|
742
|
+
ariaLabel?: string | undefined;
|
|
743
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
744
|
+
href?: string | undefined;
|
|
745
|
+
} & {
|
|
746
|
+
ariaLabel?: string | undefined;
|
|
747
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
748
|
+
href?: string | undefined;
|
|
749
|
+
};
|
|
699
750
|
hideWhenDown: boolean;
|
|
700
751
|
homeAriaLabel: string;
|
|
701
752
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
@@ -714,7 +765,11 @@ homeAriaLabel: string;
|
|
|
714
765
|
'header-side': (props: SlotProps) => unknown;
|
|
715
766
|
}>;
|
|
716
767
|
|
|
717
|
-
export declare const HeaderBurgerMenu:
|
|
768
|
+
export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
769
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
770
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
771
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
772
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
718
773
|
default?(_: {}): any;
|
|
719
774
|
}>;
|
|
720
775
|
|
|
@@ -741,88 +796,74 @@ height: string;
|
|
|
741
796
|
width: string;
|
|
742
797
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
743
798
|
|
|
744
|
-
export declare const HeaderLogo:
|
|
799
|
+
export declare const HeaderLogo: __VLS_WithTemplateSlots_18<DefineComponent< {
|
|
745
800
|
ariaLabel?: string | undefined;
|
|
746
801
|
serviceTitle?: string | undefined;
|
|
747
802
|
serviceSubtitle?: string | undefined;
|
|
803
|
+
homeLink?: {
|
|
804
|
+
ariaLabel?: string | undefined;
|
|
805
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
806
|
+
href?: string | undefined;
|
|
807
|
+
} | undefined;
|
|
748
808
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
749
809
|
ariaLabel?: string | undefined;
|
|
750
810
|
serviceTitle?: string | undefined;
|
|
751
811
|
serviceSubtitle?: string | undefined;
|
|
812
|
+
homeLink?: {
|
|
813
|
+
ariaLabel?: string | undefined;
|
|
814
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
815
|
+
href?: string | undefined;
|
|
816
|
+
} | undefined;
|
|
752
817
|
}> & Readonly<{}>, {
|
|
753
818
|
ariaLabel: string;
|
|
754
819
|
serviceTitle: string;
|
|
755
820
|
serviceSubtitle: string;
|
|
821
|
+
homeLink: {
|
|
822
|
+
ariaLabel?: string | undefined;
|
|
823
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
824
|
+
href?: string | undefined;
|
|
825
|
+
};
|
|
756
826
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
757
827
|
'brand-content'?(): void;
|
|
758
828
|
}> & {
|
|
759
829
|
'brand-content'?(): void;
|
|
760
830
|
}>;
|
|
761
831
|
|
|
762
|
-
export declare const HeaderMenuBtn: DefineComponent<
|
|
832
|
+
export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_4, {
|
|
763
833
|
focus: typeof focus_2;
|
|
764
834
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
765
835
|
"update:modelValue": (modelValue: boolean) => any;
|
|
766
|
-
}, string, PublicProps, Readonly<
|
|
836
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
767
837
|
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
768
838
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
769
839
|
|
|
770
|
-
export declare const HeaderMenuItem:
|
|
840
|
+
export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
771
841
|
default?(_: {}): any;
|
|
772
842
|
}>;
|
|
773
843
|
|
|
774
|
-
export declare const HeaderMenuSection:
|
|
844
|
+
export declare const HeaderMenuSection: __VLS_WithTemplateSlots_16<DefineComponent< {
|
|
775
845
|
title?: string | undefined;
|
|
776
846
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
777
847
|
title?: string | undefined;
|
|
778
848
|
}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
849
|
+
title?(_: {}): any;
|
|
779
850
|
default?(_: {}): any;
|
|
780
851
|
}>;
|
|
781
852
|
|
|
782
|
-
export declare const
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
sticky
|
|
788
|
-
/**
|
|
789
|
-
* Show the header at sticky only when the user scroll up in mobile
|
|
790
|
-
* Need 'sticky' at true,
|
|
791
|
-
*/
|
|
792
|
-
hideWhenDown?: boolean | undefined;
|
|
793
|
-
/**
|
|
794
|
-
* The number of item to shown in the horizontal menu before using
|
|
795
|
-
* the Burger menu (default: 6)
|
|
796
|
-
*/
|
|
797
|
-
maxHorizontalMenuItems?: number | undefined;
|
|
798
|
-
/**
|
|
799
|
-
* The items to show in the horizontal menu
|
|
800
|
-
*/
|
|
801
|
-
items?: NavigationItem[] | undefined;
|
|
802
|
-
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
803
|
-
homeAriaLabel?: string | undefined;
|
|
804
|
-
serviceTitle?: string | undefined;
|
|
805
|
-
serviceSubtitle?: string | undefined;
|
|
806
|
-
/** Keep the header visible */
|
|
807
|
-
sticky?: boolean | undefined;
|
|
808
|
-
/**
|
|
809
|
-
* Show the header at sticky only when the user scroll up in mobile
|
|
810
|
-
* Need 'sticky' at true,
|
|
811
|
-
*/
|
|
812
|
-
hideWhenDown?: boolean | undefined;
|
|
813
|
-
/**
|
|
814
|
-
* The number of item to shown in the horizontal menu before using
|
|
815
|
-
* the Burger menu (default: 6)
|
|
816
|
-
*/
|
|
817
|
-
maxHorizontalMenuItems?: number | undefined;
|
|
818
|
-
/**
|
|
819
|
-
* The items to show in the horizontal menu
|
|
820
|
-
*/
|
|
821
|
-
items?: NavigationItem[] | undefined;
|
|
822
|
-
}> & Readonly<{}>, {
|
|
853
|
+
export declare const HeaderNavigationBar: __VLS_WithTemplateSlots_19<DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
854
|
+
"update:burgerMenu": (burgerMenu: boolean) => any;
|
|
855
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
856
|
+
"onUpdate:burgerMenu"?: ((burgerMenu: boolean) => any) | undefined;
|
|
857
|
+
}>, {
|
|
858
|
+
sticky: boolean;
|
|
823
859
|
items: NavigationItem[];
|
|
824
860
|
serviceTitle: string;
|
|
825
861
|
serviceSubtitle: string;
|
|
862
|
+
homeLink: {
|
|
863
|
+
ariaLabel?: string | undefined;
|
|
864
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
865
|
+
href?: string | undefined;
|
|
866
|
+
};
|
|
826
867
|
hideWhenDown: boolean;
|
|
827
868
|
homeAriaLabel: string;
|
|
828
869
|
maxHorizontalMenuItems: number;
|
|
@@ -848,11 +889,115 @@ maxHorizontalMenuItems: number;
|
|
|
848
889
|
'navigation-menu-content': (props: SlotProps_2) => unknown;
|
|
849
890
|
}>;
|
|
850
891
|
|
|
851
|
-
export declare const HeaderSubMenu:
|
|
892
|
+
export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
852
893
|
title?(_: {}): any;
|
|
853
894
|
default?(_: {}): any;
|
|
854
895
|
}>;
|
|
855
896
|
|
|
897
|
+
export declare const HeaderToolbar: __VLS_WithTemplateSlots_20<DefineComponent<ExtractPropTypes< {
|
|
898
|
+
leftMenu: {
|
|
899
|
+
type: PropType<MenuItem[]>;
|
|
900
|
+
default: () => ({
|
|
901
|
+
title: string;
|
|
902
|
+
href: string;
|
|
903
|
+
openInNewTab: boolean;
|
|
904
|
+
} | {
|
|
905
|
+
title: string;
|
|
906
|
+
href?: undefined;
|
|
907
|
+
openInNewTab?: undefined;
|
|
908
|
+
})[];
|
|
909
|
+
};
|
|
910
|
+
rightMenu: {
|
|
911
|
+
type: PropType<MenuItem[]>;
|
|
912
|
+
default: () => {
|
|
913
|
+
title: string;
|
|
914
|
+
href: string;
|
|
915
|
+
openInNewTab: boolean;
|
|
916
|
+
}[];
|
|
917
|
+
};
|
|
918
|
+
itemsSelectMenu: {
|
|
919
|
+
type: PropType<SelectItem[]>;
|
|
920
|
+
default: () => {
|
|
921
|
+
text: string;
|
|
922
|
+
value: string;
|
|
923
|
+
href: string;
|
|
924
|
+
openInNewTab: boolean;
|
|
925
|
+
}[];
|
|
926
|
+
};
|
|
927
|
+
ariaLeftMenu: {
|
|
928
|
+
type: StringConstructor;
|
|
929
|
+
default: string;
|
|
930
|
+
};
|
|
931
|
+
ariaRightMenu: {
|
|
932
|
+
type: StringConstructor;
|
|
933
|
+
default: string;
|
|
934
|
+
};
|
|
935
|
+
}>, {
|
|
936
|
+
hideOverlay: () => void;
|
|
937
|
+
handleLink: (index: number) => void;
|
|
938
|
+
checkActiveLink: (index: number) => void;
|
|
939
|
+
deleteActiveLink: () => void;
|
|
940
|
+
activeIndex: Ref<number | null, number | null>;
|
|
941
|
+
highlightMenu: Ref<boolean, boolean>;
|
|
942
|
+
showOverlay: Ref<boolean, boolean>;
|
|
943
|
+
getLinkComponent: (item: MenuItem) => string;
|
|
944
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
945
|
+
leftMenu: {
|
|
946
|
+
type: PropType<MenuItem[]>;
|
|
947
|
+
default: () => ({
|
|
948
|
+
title: string;
|
|
949
|
+
href: string;
|
|
950
|
+
openInNewTab: boolean;
|
|
951
|
+
} | {
|
|
952
|
+
title: string;
|
|
953
|
+
href?: undefined;
|
|
954
|
+
openInNewTab?: undefined;
|
|
955
|
+
})[];
|
|
956
|
+
};
|
|
957
|
+
rightMenu: {
|
|
958
|
+
type: PropType<MenuItem[]>;
|
|
959
|
+
default: () => {
|
|
960
|
+
title: string;
|
|
961
|
+
href: string;
|
|
962
|
+
openInNewTab: boolean;
|
|
963
|
+
}[];
|
|
964
|
+
};
|
|
965
|
+
itemsSelectMenu: {
|
|
966
|
+
type: PropType<SelectItem[]>;
|
|
967
|
+
default: () => {
|
|
968
|
+
text: string;
|
|
969
|
+
value: string;
|
|
970
|
+
href: string;
|
|
971
|
+
openInNewTab: boolean;
|
|
972
|
+
}[];
|
|
973
|
+
};
|
|
974
|
+
ariaLeftMenu: {
|
|
975
|
+
type: StringConstructor;
|
|
976
|
+
default: string;
|
|
977
|
+
};
|
|
978
|
+
ariaRightMenu: {
|
|
979
|
+
type: StringConstructor;
|
|
980
|
+
default: string;
|
|
981
|
+
};
|
|
982
|
+
}>> & Readonly<{}>, {
|
|
983
|
+
leftMenu: MenuItem[];
|
|
984
|
+
rightMenu: MenuItem[];
|
|
985
|
+
itemsSelectMenu: SelectItem[];
|
|
986
|
+
ariaLeftMenu: string;
|
|
987
|
+
ariaRightMenu: string;
|
|
988
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
989
|
+
"left-menu"?(_: {}): any;
|
|
990
|
+
"right-menu"?(_: {}): any;
|
|
991
|
+
}>;
|
|
992
|
+
|
|
993
|
+
declare type Indicatif = {
|
|
994
|
+
code: string;
|
|
995
|
+
abbreviation: string;
|
|
996
|
+
country: string;
|
|
997
|
+
mask?: string;
|
|
998
|
+
phoneLength: number;
|
|
999
|
+
};
|
|
1000
|
+
|
|
856
1001
|
export declare const LangBtn: DefineComponent<CustomizableOptions & {
|
|
857
1002
|
modelValue?: string | undefined;
|
|
858
1003
|
hideDownArrow?: boolean | undefined;
|
|
@@ -956,10 +1101,56 @@ hideOrganism: boolean;
|
|
|
956
1101
|
risquePro: boolean;
|
|
957
1102
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
958
1103
|
|
|
1104
|
+
export declare const LogoBrandSection: __VLS_WithTemplateSlots_21<DefineComponent< {
|
|
1105
|
+
theme?: Theme | undefined;
|
|
1106
|
+
serviceTitle?: string | undefined;
|
|
1107
|
+
serviceSubTitle?: string | undefined;
|
|
1108
|
+
mobileVersion?: boolean | undefined;
|
|
1109
|
+
reduceLogo?: boolean | undefined;
|
|
1110
|
+
homeLink?: {
|
|
1111
|
+
ariaLabel?: string | undefined;
|
|
1112
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
1113
|
+
href?: string | undefined;
|
|
1114
|
+
} | undefined;
|
|
1115
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
1116
|
+
theme?: Theme | undefined;
|
|
1117
|
+
serviceTitle?: string | undefined;
|
|
1118
|
+
serviceSubTitle?: string | undefined;
|
|
1119
|
+
mobileVersion?: boolean | undefined;
|
|
1120
|
+
reduceLogo?: boolean | undefined;
|
|
1121
|
+
homeLink?: {
|
|
1122
|
+
ariaLabel?: string | undefined;
|
|
1123
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
1124
|
+
href?: string | undefined;
|
|
1125
|
+
} | undefined;
|
|
1126
|
+
}> & Readonly<{}>, {
|
|
1127
|
+
theme: Theme;
|
|
1128
|
+
serviceTitle: string;
|
|
1129
|
+
homeLink: {
|
|
1130
|
+
ariaLabel?: string | undefined;
|
|
1131
|
+
to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
|
|
1132
|
+
href?: string | undefined;
|
|
1133
|
+
};
|
|
1134
|
+
serviceSubTitle: string;
|
|
1135
|
+
mobileVersion: boolean;
|
|
1136
|
+
reduceLogo: boolean;
|
|
1137
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
1138
|
+
default(): unknown;
|
|
1139
|
+
'brand-content'(): unknown;
|
|
1140
|
+
}> & {
|
|
1141
|
+
default(): unknown;
|
|
1142
|
+
'brand-content'(): unknown;
|
|
1143
|
+
}>;
|
|
1144
|
+
|
|
959
1145
|
declare type LogoProps = {
|
|
960
1146
|
homeAriaLabel?: string;
|
|
961
1147
|
serviceTitle?: string;
|
|
962
1148
|
serviceSubtitle?: string;
|
|
1149
|
+
homeLink?: {
|
|
1150
|
+
ariaLabel?: string;
|
|
1151
|
+
to?: RouteLocationRaw;
|
|
1152
|
+
href?: string;
|
|
1153
|
+
};
|
|
963
1154
|
};
|
|
964
1155
|
|
|
965
1156
|
declare type LogoProps_2 = {
|
|
@@ -968,12 +1159,16 @@ declare type LogoProps_2 = {
|
|
|
968
1159
|
serviceSubtitle?: string;
|
|
969
1160
|
};
|
|
970
1161
|
|
|
1162
|
+
export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1163
|
+
|
|
971
1164
|
declare interface NavigationItem {
|
|
972
1165
|
label: string;
|
|
973
1166
|
href?: string;
|
|
974
1167
|
to?: RouteLocationRaw;
|
|
975
1168
|
}
|
|
976
1169
|
|
|
1170
|
+
export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1171
|
+
|
|
977
1172
|
declare interface Notification_2 {
|
|
978
1173
|
id: string;
|
|
979
1174
|
message: string;
|
|
@@ -983,9 +1178,9 @@ declare interface Notification_2 {
|
|
|
983
1178
|
}
|
|
984
1179
|
export { Notification_2 as Notification }
|
|
985
1180
|
|
|
986
|
-
export declare const NotificationBar:
|
|
1181
|
+
export declare const NotificationBar: __VLS_WithTemplateSlots_22<DefineComponent<CustomizableOptions & {
|
|
987
1182
|
closeBtnText?: string | undefined;
|
|
988
|
-
rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "
|
|
1183
|
+
rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped" | undefined;
|
|
989
1184
|
bottom?: boolean | undefined;
|
|
990
1185
|
}, {
|
|
991
1186
|
openNotification: (notification: Notification_2) => void;
|
|
@@ -1006,10 +1201,10 @@ smallCloseBtn: ComputedRef<boolean>;
|
|
|
1006
1201
|
isVertical: ComputedRef<boolean>;
|
|
1007
1202
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomizableOptions & {
|
|
1008
1203
|
closeBtnText?: string | undefined;
|
|
1009
|
-
rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "
|
|
1204
|
+
rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped" | undefined;
|
|
1010
1205
|
bottom?: boolean | undefined;
|
|
1011
1206
|
}> & Readonly<{}>, {
|
|
1012
|
-
rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "
|
|
1207
|
+
rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped";
|
|
1013
1208
|
bottom: boolean;
|
|
1014
1209
|
closeBtnText: string;
|
|
1015
1210
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
@@ -1022,27 +1217,147 @@ export declare namespace NotificationService {
|
|
|
1022
1217
|
}
|
|
1023
1218
|
}
|
|
1024
1219
|
|
|
1025
|
-
declare type NumberOrNumberString = string | number | undefined;
|
|
1220
|
+
export declare type NumberOrNumberString = string | number | undefined;
|
|
1026
1221
|
|
|
1027
|
-
export declare const PageContainer:
|
|
1222
|
+
export declare const PageContainer: __VLS_WithTemplateSlots_23<DefineComponent< {
|
|
1028
1223
|
size?: "s" | "xl" | "l" | "m" | undefined;
|
|
1029
|
-
spacing?: "
|
|
1224
|
+
spacing?: "xl" | "xs" | "sm" | "md" | "lg" | undefined;
|
|
1030
1225
|
color?: string | undefined;
|
|
1031
1226
|
}, {
|
|
1032
1227
|
spacingClass: ComputedRef<string>;
|
|
1033
1228
|
containerSize: ComputedRef<number>;
|
|
1034
1229
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
1035
1230
|
size?: "s" | "xl" | "l" | "m" | undefined;
|
|
1036
|
-
spacing?: "
|
|
1231
|
+
spacing?: "xl" | "xs" | "sm" | "md" | "lg" | undefined;
|
|
1037
1232
|
color?: string | undefined;
|
|
1038
1233
|
}> & Readonly<{}>, {
|
|
1039
1234
|
color: string;
|
|
1040
1235
|
size: "s" | "xl" | "l" | "m";
|
|
1041
|
-
spacing: "
|
|
1236
|
+
spacing: "xl" | "xs" | "sm" | "md" | "lg";
|
|
1042
1237
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1043
1238
|
default?(_: {}): any;
|
|
1044
1239
|
}>;
|
|
1045
1240
|
|
|
1241
|
+
export declare const PhoneField: DefineComponent<ExtractPropTypes< {
|
|
1242
|
+
modelValue: {
|
|
1243
|
+
type: StringConstructor;
|
|
1244
|
+
default: string;
|
|
1245
|
+
};
|
|
1246
|
+
dialCodeModel: {
|
|
1247
|
+
type: PropType<string | Record<string, any>>;
|
|
1248
|
+
default: string;
|
|
1249
|
+
};
|
|
1250
|
+
required: {
|
|
1251
|
+
type: BooleanConstructor;
|
|
1252
|
+
default: boolean;
|
|
1253
|
+
};
|
|
1254
|
+
outlined: {
|
|
1255
|
+
type: BooleanConstructor;
|
|
1256
|
+
default: boolean;
|
|
1257
|
+
};
|
|
1258
|
+
outlinedIndicatif: {
|
|
1259
|
+
type: BooleanConstructor;
|
|
1260
|
+
default: boolean;
|
|
1261
|
+
};
|
|
1262
|
+
withCountryCode: {
|
|
1263
|
+
type: BooleanConstructor;
|
|
1264
|
+
default: boolean;
|
|
1265
|
+
};
|
|
1266
|
+
countryCodeRequired: {
|
|
1267
|
+
type: BooleanConstructor;
|
|
1268
|
+
default: boolean;
|
|
1269
|
+
};
|
|
1270
|
+
displayFormat: {
|
|
1271
|
+
type: PropType<DisplayFormat>;
|
|
1272
|
+
default: string;
|
|
1273
|
+
};
|
|
1274
|
+
customIndicatifs: {
|
|
1275
|
+
type: PropType<Indicatif[]>;
|
|
1276
|
+
default: () => never[];
|
|
1277
|
+
};
|
|
1278
|
+
useCustomIndicatifsOnly: {
|
|
1279
|
+
type: BooleanConstructor;
|
|
1280
|
+
default: boolean;
|
|
1281
|
+
};
|
|
1282
|
+
isValidatedOnBlur: {
|
|
1283
|
+
type: BooleanConstructor;
|
|
1284
|
+
default: boolean;
|
|
1285
|
+
};
|
|
1286
|
+
}>, {
|
|
1287
|
+
computedValue: ComputedRef<string>;
|
|
1288
|
+
dialCode: Ref<string | Record<string, any>, string | Record<string, any>>;
|
|
1289
|
+
phoneMask: Ref<string, string>;
|
|
1290
|
+
counter: Ref<number, number>;
|
|
1291
|
+
hasError: Ref<boolean, boolean>;
|
|
1292
|
+
phoneNumber: Ref<string, string>;
|
|
1293
|
+
mergedDialCodes: ComputedRef<Indicatif[]>;
|
|
1294
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1295
|
+
change: (...args: any[]) => void;
|
|
1296
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1297
|
+
"update:selectedDialCode": (...args: any[]) => void;
|
|
1298
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1299
|
+
modelValue: {
|
|
1300
|
+
type: StringConstructor;
|
|
1301
|
+
default: string;
|
|
1302
|
+
};
|
|
1303
|
+
dialCodeModel: {
|
|
1304
|
+
type: PropType<string | Record<string, any>>;
|
|
1305
|
+
default: string;
|
|
1306
|
+
};
|
|
1307
|
+
required: {
|
|
1308
|
+
type: BooleanConstructor;
|
|
1309
|
+
default: boolean;
|
|
1310
|
+
};
|
|
1311
|
+
outlined: {
|
|
1312
|
+
type: BooleanConstructor;
|
|
1313
|
+
default: boolean;
|
|
1314
|
+
};
|
|
1315
|
+
outlinedIndicatif: {
|
|
1316
|
+
type: BooleanConstructor;
|
|
1317
|
+
default: boolean;
|
|
1318
|
+
};
|
|
1319
|
+
withCountryCode: {
|
|
1320
|
+
type: BooleanConstructor;
|
|
1321
|
+
default: boolean;
|
|
1322
|
+
};
|
|
1323
|
+
countryCodeRequired: {
|
|
1324
|
+
type: BooleanConstructor;
|
|
1325
|
+
default: boolean;
|
|
1326
|
+
};
|
|
1327
|
+
displayFormat: {
|
|
1328
|
+
type: PropType<DisplayFormat>;
|
|
1329
|
+
default: string;
|
|
1330
|
+
};
|
|
1331
|
+
customIndicatifs: {
|
|
1332
|
+
type: PropType<Indicatif[]>;
|
|
1333
|
+
default: () => never[];
|
|
1334
|
+
};
|
|
1335
|
+
useCustomIndicatifsOnly: {
|
|
1336
|
+
type: BooleanConstructor;
|
|
1337
|
+
default: boolean;
|
|
1338
|
+
};
|
|
1339
|
+
isValidatedOnBlur: {
|
|
1340
|
+
type: BooleanConstructor;
|
|
1341
|
+
default: boolean;
|
|
1342
|
+
};
|
|
1343
|
+
}>> & Readonly<{
|
|
1344
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1345
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1346
|
+
"onUpdate:selectedDialCode"?: ((...args: any[]) => any) | undefined;
|
|
1347
|
+
}>, {
|
|
1348
|
+
outlined: boolean;
|
|
1349
|
+
modelValue: string;
|
|
1350
|
+
required: boolean;
|
|
1351
|
+
dialCodeModel: string | Record<string, any>;
|
|
1352
|
+
outlinedIndicatif: boolean;
|
|
1353
|
+
withCountryCode: boolean;
|
|
1354
|
+
countryCodeRequired: boolean;
|
|
1355
|
+
displayFormat: DisplayFormat;
|
|
1356
|
+
customIndicatifs: Indicatif[];
|
|
1357
|
+
useCustomIndicatifsOnly: boolean;
|
|
1358
|
+
isValidatedOnBlur: boolean;
|
|
1359
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1360
|
+
|
|
1046
1361
|
declare interface Props {
|
|
1047
1362
|
threshold?: number;
|
|
1048
1363
|
nudgeRight?: string | number;
|
|
@@ -1057,7 +1372,16 @@ declare interface Props_2 {
|
|
|
1057
1372
|
|
|
1058
1373
|
declare type PropsList = Record<string, unknown>;
|
|
1059
1374
|
|
|
1060
|
-
|
|
1375
|
+
declare type RuleOptions = {
|
|
1376
|
+
fieldName?: string;
|
|
1377
|
+
message?: string;
|
|
1378
|
+
length?: number;
|
|
1379
|
+
value?: number;
|
|
1380
|
+
pattern?: RegExp;
|
|
1381
|
+
ignoreSpace?: boolean;
|
|
1382
|
+
};
|
|
1383
|
+
|
|
1384
|
+
export declare const SkipLink: __VLS_WithTemplateSlots_24<DefineComponent< {
|
|
1061
1385
|
label?: string | undefined;
|
|
1062
1386
|
target?: string | undefined;
|
|
1063
1387
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
@@ -1094,8 +1418,8 @@ links: SocialMediaLink_2[];
|
|
|
1094
1418
|
|
|
1095
1419
|
declare type State = 'idle' | 'loading' | 'success' | 'error';
|
|
1096
1420
|
|
|
1097
|
-
export declare const SubHeader:
|
|
1098
|
-
hideBackBtn
|
|
1421
|
+
export declare const SubHeader: __VLS_WithTemplateSlots_25<DefineComponent<CustomizableOptions & Widthable & {
|
|
1422
|
+
hideBackBtn?: boolean | undefined;
|
|
1099
1423
|
backBtnText?: string | undefined;
|
|
1100
1424
|
titleText?: string | undefined;
|
|
1101
1425
|
subTitleText?: string | undefined;
|
|
@@ -1106,7 +1430,7 @@ renderHtmlValue?: boolean | undefined;
|
|
|
1106
1430
|
"click:list-item": (...args: any[]) => void;
|
|
1107
1431
|
back: (...args: any[]) => void;
|
|
1108
1432
|
}, string, PublicProps, Readonly<CustomizableOptions & Widthable & {
|
|
1109
|
-
hideBackBtn
|
|
1433
|
+
hideBackBtn?: boolean | undefined;
|
|
1110
1434
|
backBtnText?: string | undefined;
|
|
1111
1435
|
titleText?: string | undefined;
|
|
1112
1436
|
subTitleText?: string | undefined;
|
|
@@ -1133,8 +1457,338 @@ dataListGroupItems: DataListGroupItems_2;
|
|
|
1133
1457
|
"right-content"?(_: {}): any;
|
|
1134
1458
|
}>;
|
|
1135
1459
|
|
|
1460
|
+
export declare const SyBtnSelect: __VLS_WithTemplateSlots_5<DefineComponent<ExtractPropTypes< {
|
|
1461
|
+
modelValue: {
|
|
1462
|
+
type: (ObjectConstructor | StringConstructor | null)[];
|
|
1463
|
+
default: null;
|
|
1464
|
+
};
|
|
1465
|
+
menuItems: {
|
|
1466
|
+
type: ArrayConstructor;
|
|
1467
|
+
default: () => never[];
|
|
1468
|
+
};
|
|
1469
|
+
label: {
|
|
1470
|
+
type: StringConstructor;
|
|
1471
|
+
default: string;
|
|
1472
|
+
};
|
|
1473
|
+
required: {
|
|
1474
|
+
type: BooleanConstructor;
|
|
1475
|
+
default: boolean;
|
|
1476
|
+
};
|
|
1477
|
+
menuId: {
|
|
1478
|
+
type: StringConstructor;
|
|
1479
|
+
default: string;
|
|
1480
|
+
};
|
|
1481
|
+
textKey: {
|
|
1482
|
+
type: StringConstructor;
|
|
1483
|
+
default: string;
|
|
1484
|
+
};
|
|
1485
|
+
valueKey: {
|
|
1486
|
+
type: StringConstructor;
|
|
1487
|
+
default: string;
|
|
1488
|
+
};
|
|
1489
|
+
primaryInfo: {
|
|
1490
|
+
type: StringConstructor;
|
|
1491
|
+
default: string;
|
|
1492
|
+
};
|
|
1493
|
+
secondaryInfo: {
|
|
1494
|
+
type: StringConstructor;
|
|
1495
|
+
default: undefined;
|
|
1496
|
+
};
|
|
1497
|
+
hideIcon: {
|
|
1498
|
+
type: BooleanConstructor;
|
|
1499
|
+
default: boolean;
|
|
1500
|
+
};
|
|
1501
|
+
hideLogoutBtn: {
|
|
1502
|
+
type: BooleanConstructor;
|
|
1503
|
+
default: boolean;
|
|
1504
|
+
};
|
|
1505
|
+
isMobileView: {
|
|
1506
|
+
type: BooleanConstructor;
|
|
1507
|
+
default: boolean;
|
|
1508
|
+
};
|
|
1509
|
+
iconOnly: {
|
|
1510
|
+
type: BooleanConstructor;
|
|
1511
|
+
default: boolean;
|
|
1512
|
+
};
|
|
1513
|
+
options: {
|
|
1514
|
+
type: ObjectConstructor;
|
|
1515
|
+
default: () => {
|
|
1516
|
+
menu: {};
|
|
1517
|
+
btn: {};
|
|
1518
|
+
list: {};
|
|
1519
|
+
};
|
|
1520
|
+
};
|
|
1521
|
+
}>, {
|
|
1522
|
+
isOpen: Ref<boolean, boolean>;
|
|
1523
|
+
formattedItems: ComputedRef<unknown[]>;
|
|
1524
|
+
selectedItem: Ref<string | Record<string, unknown> | null, string | Record<string, unknown> | null>;
|
|
1525
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1526
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1527
|
+
logout: (...args: any[]) => void;
|
|
1528
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1529
|
+
modelValue: {
|
|
1530
|
+
type: (ObjectConstructor | StringConstructor | null)[];
|
|
1531
|
+
default: null;
|
|
1532
|
+
};
|
|
1533
|
+
menuItems: {
|
|
1534
|
+
type: ArrayConstructor;
|
|
1535
|
+
default: () => never[];
|
|
1536
|
+
};
|
|
1537
|
+
label: {
|
|
1538
|
+
type: StringConstructor;
|
|
1539
|
+
default: string;
|
|
1540
|
+
};
|
|
1541
|
+
required: {
|
|
1542
|
+
type: BooleanConstructor;
|
|
1543
|
+
default: boolean;
|
|
1544
|
+
};
|
|
1545
|
+
menuId: {
|
|
1546
|
+
type: StringConstructor;
|
|
1547
|
+
default: string;
|
|
1548
|
+
};
|
|
1549
|
+
textKey: {
|
|
1550
|
+
type: StringConstructor;
|
|
1551
|
+
default: string;
|
|
1552
|
+
};
|
|
1553
|
+
valueKey: {
|
|
1554
|
+
type: StringConstructor;
|
|
1555
|
+
default: string;
|
|
1556
|
+
};
|
|
1557
|
+
primaryInfo: {
|
|
1558
|
+
type: StringConstructor;
|
|
1559
|
+
default: string;
|
|
1560
|
+
};
|
|
1561
|
+
secondaryInfo: {
|
|
1562
|
+
type: StringConstructor;
|
|
1563
|
+
default: undefined;
|
|
1564
|
+
};
|
|
1565
|
+
hideIcon: {
|
|
1566
|
+
type: BooleanConstructor;
|
|
1567
|
+
default: boolean;
|
|
1568
|
+
};
|
|
1569
|
+
hideLogoutBtn: {
|
|
1570
|
+
type: BooleanConstructor;
|
|
1571
|
+
default: boolean;
|
|
1572
|
+
};
|
|
1573
|
+
isMobileView: {
|
|
1574
|
+
type: BooleanConstructor;
|
|
1575
|
+
default: boolean;
|
|
1576
|
+
};
|
|
1577
|
+
iconOnly: {
|
|
1578
|
+
type: BooleanConstructor;
|
|
1579
|
+
default: boolean;
|
|
1580
|
+
};
|
|
1581
|
+
options: {
|
|
1582
|
+
type: ObjectConstructor;
|
|
1583
|
+
default: () => {
|
|
1584
|
+
menu: {};
|
|
1585
|
+
btn: {};
|
|
1586
|
+
list: {};
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1589
|
+
}>> & Readonly<{
|
|
1590
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1591
|
+
onLogout?: ((...args: any[]) => any) | undefined;
|
|
1592
|
+
}>, {
|
|
1593
|
+
modelValue: string | Record<string, any> | null;
|
|
1594
|
+
label: string;
|
|
1595
|
+
options: Record<string, any>;
|
|
1596
|
+
required: boolean;
|
|
1597
|
+
menuItems: unknown[];
|
|
1598
|
+
menuId: string;
|
|
1599
|
+
textKey: string;
|
|
1600
|
+
valueKey: string;
|
|
1601
|
+
primaryInfo: string;
|
|
1602
|
+
secondaryInfo: string;
|
|
1603
|
+
hideIcon: boolean;
|
|
1604
|
+
hideLogoutBtn: boolean;
|
|
1605
|
+
isMobileView: boolean;
|
|
1606
|
+
iconOnly: boolean;
|
|
1607
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
1608
|
+
"prepend-icon"?(_: {}): any;
|
|
1609
|
+
"append-icon"?(_: {}): any;
|
|
1610
|
+
content?(_: {}): any;
|
|
1611
|
+
default?(_: {}): any;
|
|
1612
|
+
"footer-list-item"?(_: {}): any;
|
|
1613
|
+
}>;
|
|
1614
|
+
|
|
1615
|
+
export declare const SyInputSelect: DefineComponent<CustomizableOptions & {
|
|
1616
|
+
modelValue?: string | Record<string, unknown> | null | undefined;
|
|
1617
|
+
items?: string[] | Record<string, unknown>[] | undefined;
|
|
1618
|
+
textKey?: string | undefined;
|
|
1619
|
+
valueKey?: string | undefined;
|
|
1620
|
+
label?: string | undefined;
|
|
1621
|
+
outlined?: boolean | undefined;
|
|
1622
|
+
required?: boolean | undefined;
|
|
1623
|
+
errorMessages?: string | string[] | undefined;
|
|
1624
|
+
isHeaderToolbar?: boolean | undefined;
|
|
1625
|
+
}, {
|
|
1626
|
+
isOpen: Ref<boolean, boolean>;
|
|
1627
|
+
closeList: () => void;
|
|
1628
|
+
selectItem: (item: any) => void;
|
|
1629
|
+
selectedItem: Ref<string | Record<string, unknown> | null, string | Record<string, unknown> | null>;
|
|
1630
|
+
getItemText: (item: unknown) => any;
|
|
1631
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1632
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1633
|
+
}, string, PublicProps, Readonly<CustomizableOptions & {
|
|
1634
|
+
modelValue?: string | Record<string, unknown> | null | undefined;
|
|
1635
|
+
items?: string[] | Record<string, unknown>[] | undefined;
|
|
1636
|
+
textKey?: string | undefined;
|
|
1637
|
+
valueKey?: string | undefined;
|
|
1638
|
+
label?: string | undefined;
|
|
1639
|
+
outlined?: boolean | undefined;
|
|
1640
|
+
required?: boolean | undefined;
|
|
1641
|
+
errorMessages?: string | string[] | undefined;
|
|
1642
|
+
isHeaderToolbar?: boolean | undefined;
|
|
1643
|
+
}> & Readonly<{
|
|
1644
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1645
|
+
}>, {
|
|
1646
|
+
outlined: boolean;
|
|
1647
|
+
modelValue: string | Record<string, unknown> | null;
|
|
1648
|
+
label: string;
|
|
1649
|
+
items: string[] | Record<string, unknown>[];
|
|
1650
|
+
required: boolean;
|
|
1651
|
+
textKey: string;
|
|
1652
|
+
valueKey: string;
|
|
1653
|
+
errorMessages: string | string[];
|
|
1654
|
+
isHeaderToolbar: boolean;
|
|
1655
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1656
|
+
|
|
1657
|
+
export declare const SySelect: DefineComponent<ExtractPropTypes< {
|
|
1658
|
+
modelValue: {
|
|
1659
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
1660
|
+
default: null;
|
|
1661
|
+
};
|
|
1662
|
+
items: {
|
|
1663
|
+
type: ArrayConstructor;
|
|
1664
|
+
default: () => never[];
|
|
1665
|
+
};
|
|
1666
|
+
label: {
|
|
1667
|
+
type: StringConstructor;
|
|
1668
|
+
default: string;
|
|
1669
|
+
};
|
|
1670
|
+
errorMessages: {
|
|
1671
|
+
type: PropType<string | readonly string[]>;
|
|
1672
|
+
default: () => never[];
|
|
1673
|
+
};
|
|
1674
|
+
required: {
|
|
1675
|
+
type: BooleanConstructor;
|
|
1676
|
+
default: boolean;
|
|
1677
|
+
};
|
|
1678
|
+
menuId: {
|
|
1679
|
+
type: StringConstructor;
|
|
1680
|
+
default: string;
|
|
1681
|
+
};
|
|
1682
|
+
outlined: {
|
|
1683
|
+
type: BooleanConstructor;
|
|
1684
|
+
default: boolean;
|
|
1685
|
+
};
|
|
1686
|
+
textKey: {
|
|
1687
|
+
type: StringConstructor;
|
|
1688
|
+
default: string;
|
|
1689
|
+
};
|
|
1690
|
+
valueKey: {
|
|
1691
|
+
type: StringConstructor;
|
|
1692
|
+
default: string;
|
|
1693
|
+
};
|
|
1694
|
+
}>, {
|
|
1695
|
+
isOpen: Ref<boolean, boolean>;
|
|
1696
|
+
closeList: () => void;
|
|
1697
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1698
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1699
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1700
|
+
modelValue: {
|
|
1701
|
+
type: (ObjectConstructor | StringConstructor)[];
|
|
1702
|
+
default: null;
|
|
1703
|
+
};
|
|
1704
|
+
items: {
|
|
1705
|
+
type: ArrayConstructor;
|
|
1706
|
+
default: () => never[];
|
|
1707
|
+
};
|
|
1708
|
+
label: {
|
|
1709
|
+
type: StringConstructor;
|
|
1710
|
+
default: string;
|
|
1711
|
+
};
|
|
1712
|
+
errorMessages: {
|
|
1713
|
+
type: PropType<string | readonly string[]>;
|
|
1714
|
+
default: () => never[];
|
|
1715
|
+
};
|
|
1716
|
+
required: {
|
|
1717
|
+
type: BooleanConstructor;
|
|
1718
|
+
default: boolean;
|
|
1719
|
+
};
|
|
1720
|
+
menuId: {
|
|
1721
|
+
type: StringConstructor;
|
|
1722
|
+
default: string;
|
|
1723
|
+
};
|
|
1724
|
+
outlined: {
|
|
1725
|
+
type: BooleanConstructor;
|
|
1726
|
+
default: boolean;
|
|
1727
|
+
};
|
|
1728
|
+
textKey: {
|
|
1729
|
+
type: StringConstructor;
|
|
1730
|
+
default: string;
|
|
1731
|
+
};
|
|
1732
|
+
valueKey: {
|
|
1733
|
+
type: StringConstructor;
|
|
1734
|
+
default: string;
|
|
1735
|
+
};
|
|
1736
|
+
}>> & Readonly<{
|
|
1737
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1738
|
+
}>, {
|
|
1739
|
+
outlined: boolean;
|
|
1740
|
+
modelValue: string | Record<string, any>;
|
|
1741
|
+
label: string;
|
|
1742
|
+
items: unknown[];
|
|
1743
|
+
required: boolean;
|
|
1744
|
+
menuId: string;
|
|
1745
|
+
textKey: string;
|
|
1746
|
+
valueKey: string;
|
|
1747
|
+
errorMessages: string | readonly string[];
|
|
1748
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1749
|
+
|
|
1750
|
+
export declare const SyTextField: __VLS_WithTemplateSlots_6<DefineComponent< {
|
|
1751
|
+
prependIcon?: IconType | undefined;
|
|
1752
|
+
appendIcon?: IconType | undefined;
|
|
1753
|
+
prependInnerIcon?: IconType | undefined;
|
|
1754
|
+
appendInnerIcon?: IconType | undefined;
|
|
1755
|
+
variantStyle?: VariantStyle | undefined;
|
|
1756
|
+
color?: ColorType | undefined;
|
|
1757
|
+
isClearable?: boolean | undefined;
|
|
1758
|
+
showDivider?: boolean | undefined;
|
|
1759
|
+
label?: string | undefined;
|
|
1760
|
+
}, {
|
|
1761
|
+
appendInnerIconColor: ComputedRef<"error" | "success" | "black">;
|
|
1762
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
1763
|
+
prependIcon?: IconType | undefined;
|
|
1764
|
+
appendIcon?: IconType | undefined;
|
|
1765
|
+
prependInnerIcon?: IconType | undefined;
|
|
1766
|
+
appendInnerIcon?: IconType | undefined;
|
|
1767
|
+
variantStyle?: VariantStyle | undefined;
|
|
1768
|
+
color?: ColorType | undefined;
|
|
1769
|
+
isClearable?: boolean | undefined;
|
|
1770
|
+
showDivider?: boolean | undefined;
|
|
1771
|
+
label?: string | undefined;
|
|
1772
|
+
}> & Readonly<{}>, {
|
|
1773
|
+
variantStyle: VariantStyle;
|
|
1774
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1775
|
+
prepend?(_: {}): any;
|
|
1776
|
+
append?(_: {}): any;
|
|
1777
|
+
"prepend-inner"?(_: {}): any;
|
|
1778
|
+
"append-inner"?(_: {}): any;
|
|
1779
|
+
}>;
|
|
1780
|
+
|
|
1781
|
+
declare type Theme = 'ameli' | 'ameli-pro' | 'cnam' | 'compte-ameli' | 'compte-entreprise' | 'default' | 'risque-pro';
|
|
1782
|
+
|
|
1136
1783
|
declare function updateLang(lang: string): void;
|
|
1137
1784
|
|
|
1785
|
+
export declare function useFieldValidation(): {
|
|
1786
|
+
generateRules: (fieldRules: Array<{
|
|
1787
|
+
type: string;
|
|
1788
|
+
options?: RuleOptions;
|
|
1789
|
+
}>) => ValidationRule[];
|
|
1790
|
+
};
|
|
1791
|
+
|
|
1138
1792
|
declare function useNotificationService(): {
|
|
1139
1793
|
notificationQueue: Ref< {
|
|
1140
1794
|
id: string;
|
|
@@ -1154,7 +1808,61 @@ declare function useNotificationService(): {
|
|
|
1154
1808
|
clearQueue: () => void;
|
|
1155
1809
|
};
|
|
1156
1810
|
|
|
1157
|
-
declare
|
|
1811
|
+
export declare const UserMenuBtn: DefineComponent<CustomizableOptions & {
|
|
1812
|
+
modelValue: string | Record<string, any> | null | undefined;
|
|
1813
|
+
menuItems?: {
|
|
1814
|
+
text: string;
|
|
1815
|
+
value: string;
|
|
1816
|
+
}[] | undefined;
|
|
1817
|
+
additionalInformation?: string | undefined;
|
|
1818
|
+
fullName?: string | undefined;
|
|
1819
|
+
hideLogoutBtn?: boolean | undefined;
|
|
1820
|
+
logoutIcon?: string | undefined;
|
|
1821
|
+
isMobileView?: boolean | undefined;
|
|
1822
|
+
hideUserIcon?: boolean | undefined;
|
|
1823
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1824
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1825
|
+
logout: (...args: any[]) => void;
|
|
1826
|
+
}, string, PublicProps, Readonly<CustomizableOptions & {
|
|
1827
|
+
modelValue: string | Record<string, any> | null | undefined;
|
|
1828
|
+
menuItems?: {
|
|
1829
|
+
text: string;
|
|
1830
|
+
value: string;
|
|
1831
|
+
}[] | undefined;
|
|
1832
|
+
additionalInformation?: string | undefined;
|
|
1833
|
+
fullName?: string | undefined;
|
|
1834
|
+
hideLogoutBtn?: boolean | undefined;
|
|
1835
|
+
logoutIcon?: string | undefined;
|
|
1836
|
+
isMobileView?: boolean | undefined;
|
|
1837
|
+
hideUserIcon?: boolean | undefined;
|
|
1838
|
+
}> & Readonly<{
|
|
1839
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1840
|
+
onLogout?: ((...args: any[]) => any) | undefined;
|
|
1841
|
+
}>, {
|
|
1842
|
+
modelValue: string | Record<string, any> | null | undefined;
|
|
1843
|
+
menuItems: {
|
|
1844
|
+
text: string;
|
|
1845
|
+
value: string;
|
|
1846
|
+
}[];
|
|
1847
|
+
hideLogoutBtn: boolean;
|
|
1848
|
+
isMobileView: boolean;
|
|
1849
|
+
additionalInformation: string;
|
|
1850
|
+
fullName: string;
|
|
1851
|
+
logoutIcon: string;
|
|
1852
|
+
hideUserIcon: boolean;
|
|
1853
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1854
|
+
|
|
1855
|
+
export declare function useWidthable(props: {
|
|
1856
|
+
maxWidth?: NumberOrNumberString;
|
|
1857
|
+
minWidth?: NumberOrNumberString;
|
|
1858
|
+
width?: NumberOrNumberString;
|
|
1859
|
+
}): {
|
|
1860
|
+
widthStyles: ComputedRef<Record<string, string | undefined>>;
|
|
1861
|
+
};
|
|
1862
|
+
|
|
1863
|
+
declare type ValidationRule = (value: any) => string | boolean;
|
|
1864
|
+
|
|
1865
|
+
export declare interface Widthable {
|
|
1158
1866
|
maxWidth?: NumberOrNumberString;
|
|
1159
1867
|
minWidth?: NumberOrNumberString;
|
|
1160
1868
|
width?: NumberOrNumberString;
|