@cnamts/synapse 0.0.3-alpha → 0.0.4-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 +712 -27
- package/dist/design-system-v3.js +2715 -1485
- package/dist/design-system-v3.umd.cjs +10 -1
- package/dist/style.css +1 -1
- package/package.json +5 -2
- package/src/components/Alert/Alert.mdx +1 -1
- package/src/components/Alert/Alert.stories.ts +91 -1
- package/src/components/BackBtn/BackBtn.mdx +1 -1
- package/src/components/BackBtn/BackBtn.stories.ts +84 -1
- package/src/components/BackToTopBtn/BackToTopBtn.mdx +3 -3
- package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +172 -11
- package/src/components/CollapsibleList/CollapsibleList.mdx +2 -2
- package/src/components/CollapsibleList/CollapsibleList.stories.ts +37 -1
- package/src/components/CopyBtn/CopyBtn.mdx +1 -1
- package/src/components/CopyBtn/CopyBtn.stories.ts +120 -1
- package/src/components/CopyBtn/CopyBtn.vue +1 -1
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +6 -8
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.stories.ts +270 -4
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.vue +80 -53
- package/src/components/Customs/CustomInputSelect/config.ts +10 -0
- package/src/components/Customs/CustomSelect/CustomSelect.mdx +3 -3
- package/src/components/Customs/CustomSelect/CustomSelect.stories.ts +158 -2
- package/src/components/Customs/CustomSelect/CustomSelect.vue +25 -6
- package/src/components/Customs/CustomTextField/CustomTextField.mdx +44 -0
- package/src/components/Customs/CustomTextField/CustomTextField.stories.ts +403 -0
- package/src/components/Customs/CustomTextField/CustomTextField.vue +110 -0
- package/src/components/Customs/CustomTextField/tests/CustomTextField.spec.ts +93 -0
- package/src/components/Customs/CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap +59 -0
- package/src/components/Customs/CustomTextField/types.d.ts +3 -0
- package/src/components/DataList/DataList.mdx +77 -0
- package/src/components/DataList/DataList.stories.ts +960 -0
- package/src/components/DataList/DataList.vue +140 -0
- package/src/components/DataList/DataListLoading/DataListLoading.vue +56 -0
- package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +23 -0
- package/src/components/DataList/locales.ts +3 -0
- package/src/components/DataList/tests/DataList.spec.ts +194 -0
- package/src/components/DataList/types.d.ts +23 -0
- package/src/components/DataListGroup/DataListGroup.mdx +77 -0
- package/src/components/DataListGroup/DataListGroup.stories.ts +987 -0
- package/src/components/DataListGroup/DataListGroup.vue +59 -0
- package/src/components/DataListGroup/tests/DataListGroup.spec.ts +54 -0
- package/src/components/DataListGroup/tests/data/dataListGroupItems.ts +41 -0
- package/src/components/DataListGroup/types.d.ts +15 -0
- package/src/components/DataListItem/DataListItem.vue +135 -0
- package/src/components/DataListItem/config.ts +17 -0
- package/src/components/DataListItem/locales.ts +3 -0
- package/src/components/DataListItem/tests/DataListItem.spec.ts +156 -0
- package/src/components/DataListItem/types.d.ts +23 -0
- package/src/components/DownloadBtn/Accessibilite.mdx +14 -0
- package/src/components/DownloadBtn/Accessibilite.stories.ts +166 -0
- package/src/components/DownloadBtn/AccessibiliteItems.ts +129 -0
- package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +207 -2
- package/src/components/DownloadBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FooterBar/FooterBar.mdx +2 -2
- package/src/components/FooterBar/FooterBar.stories.ts +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +58 -1
- package/src/components/HeaderBar/HeaderBar.mdx +164 -45
- package/src/components/HeaderBar/HeaderBar.stories.ts +559 -15
- package/src/components/HeaderBar/HeaderBar.vue +60 -22
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.mdx +433 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.stories.ts +1089 -0
- package/src/components/HeaderBar/{HeaderComplexMenu/HeaderComplexMenu.vue → HeaderBurgerMenu/HeaderBurgerMenu.vue} +74 -45
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.mdx +38 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +89 -0
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +1 -1
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.mdx +17 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +121 -0
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/HeaderMenuSection.vue +2 -2
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/tests/HeaderMenuSection.spec.ts +1 -3
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.mdx +43 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +261 -0
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/HeaderSubMenu.vue +17 -3
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/tests/HeaderSubMenu.spec.ts +1 -1
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.ts +180 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +13 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +13 -0
- package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +62 -25
- package/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.ts +49 -1
- package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +19 -23
- package/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.ts +70 -0
- package/src/components/HeaderBar/Usages.mdx +85 -0
- package/src/components/HeaderBar/consts.scss +0 -1
- package/src/components/HeaderBar/tests/HeaderBar.spec.ts +8 -2
- package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +5 -10
- package/src/components/HeaderLoading/HeaderLoading.mdx +28 -0
- package/src/components/HeaderLoading/HeaderLoading.stories.ts +62 -0
- package/src/components/HeaderLoading/HeaderLoading.vue +45 -0
- package/src/components/HeaderLoading/tests/HeaderLoading.spec.ts +22 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +128 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +784 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +194 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +74 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/config.ts +18 -0
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +127 -0
- package/src/components/HeaderNavigationBar/types.ts +7 -0
- package/src/components/HeaderToolbar/HeaderToolbar.mdx +31 -0
- package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +343 -0
- package/src/components/HeaderToolbar/HeaderToolbar.vue +487 -0
- package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +196 -0
- package/src/components/HeaderToolbar/types.d.ts +20 -0
- package/src/components/LangBtn/LangBtn.mdx +1 -1
- package/src/components/LangBtn/LangBtn.stories.ts +125 -8
- package/src/components/Logo/Logo.mdx +2 -2
- package/src/components/Logo/Logo.stories.ts +147 -1
- package/src/components/LogoBrandSection/LogoBrandSection.mdx +14 -0
- package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +158 -0
- package/src/components/LogoBrandSection/LogoBrandSection.vue +312 -0
- package/src/components/LogoBrandSection/assets/ameli-pro.svg +1 -0
- package/src/components/LogoBrandSection/assets/ameli.svg +1 -0
- package/src/components/LogoBrandSection/assets/cnam.svg +1 -0
- package/src/components/LogoBrandSection/assets/compte-ameli.svg +1 -0
- package/src/components/LogoBrandSection/dividerDimensionsMapping.ts +14 -0
- package/src/components/LogoBrandSection/locales.ts +14 -0
- package/src/components/LogoBrandSection/secondaryLogoMapping.ts +24 -0
- package/src/components/LogoBrandSection/tests/LogoBrandSection.spec.ts +365 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +14 -0
- package/src/components/LogoBrandSection/types.ts +8 -0
- package/src/components/NotificationBar/NotificationBar.mdx +6 -6
- package/src/components/NotificationBar/NotificationBar.stories.ts +1 -1
- package/src/components/NotificationBar/NotificationBar.vue +2 -2
- package/src/components/NotificationBar/tests/NotificationBar.spec.ts +1 -1
- package/src/components/PageContainer/PageContainer.mdx +1 -1
- package/src/components/PageContainer/PageContainer.stories.ts +86 -1
- package/src/components/PhoneField/PhoneField.mdx +49 -0
- package/src/components/PhoneField/PhoneField.stories.ts +869 -0
- package/src/components/PhoneField/PhoneField.vue +230 -0
- package/src/components/PhoneField/indicatifs.ts +104 -0
- package/src/components/PhoneField/locales.ts +4 -0
- package/src/components/PhoneField/tests/PhoneField.spec.ts +179 -0
- package/src/components/SkipLink/SkipLink.stories.ts +50 -1
- package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +28 -1
- package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +37 -1
- package/src/components/SubHeader/SubHeader.mdx +31 -0
- package/src/components/SubHeader/SubHeader.stories.ts +1032 -0
- package/src/components/SubHeader/SubHeader.vue +185 -0
- package/src/components/SubHeader/config.ts +12 -0
- package/src/components/SubHeader/locales.ts +3 -0
- package/src/components/SubHeader/tests/SubHeader.spec.ts +144 -0
- package/src/components/index.ts +24 -7
- package/src/composables/widthable/index.ts +29 -0
- package/src/composables/widthable/tests/widthable.spec.ts +52 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +2 -2
- package/src/main.ts +1 -0
- package/src/modules.d.ts +4 -0
- package/src/services/index.ts +1 -0
- package/src/stories/Demarrer/Accueil.mdx +10 -0
- package/src/stories/Demarrer/Accueil.stories.ts +76 -0
- package/src/stories/Demarrer/PolitiqueDeConfidentialite.mdx +9 -0
- package/src/stories/Demarrer/PolitiqueDeConfidentialite.stories.ts +20 -0
- package/src/stories/Fondamentaux/Accessibilite/Accessibilite.mdx +1 -2
- package/src/stories/Fondamentaux/Accessibilite/Accessibilite.stories.ts +1 -1
- package/src/stories/Fondamentaux/EcoConception/Econception.stories.ts +1 -1
- package/src/stories/GuideDuDev/moduleDeNotification.mdx +52 -48
- package/src/stories/GuideDuDev/vuetifyOptions.mdx +31 -28
- package/src/stories/Guidelines/CustomisationEtThemes.mdx +1 -1
- package/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.ts +47 -0
- package/src/utils/functions/throttleDisplayFn/throttleDisplayFn.ts +26 -0
- package/src/utils/rules/exactLength/index.ts +33 -0
- package/src/utils/rules/exactLength/locales.ts +6 -0
- package/src/utils/rules/required/index.ts +25 -0
- package/src/utils/rules/required/locales.ts +5 -0
- package/src/utils/rules/required/ruleMessageHelper.ts +14 -0
- package/src/utils/rules/required/tests/index.spec.ts +47 -0
- package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +22 -0
- package/src/utils/rules/types.d.ts +15 -0
- package/src/components/Beta/beta.mdx +0 -5
- package/src/components/Deprecated/deprecated.mdx +0 -5
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderComplexMenu.stories.ts +0 -272
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +0 -49
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +0 -56
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +0 -137
- package/src/components/HeaderBar/HeaderComplexMenu/tests/HeaderComplexMenu.spec.ts +0 -129
- package/src/components/HeaderBar/HeaderComplexMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +0 -18
- package/src/stories/Home/Accueil.mdx +0 -7
- package/src/stories/Home/PolitiqueDeConfidentialite.mdx +0 -4
- package/src/stories/Home/synapse.webp +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/HeaderMenuItem.vue +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/HeaderMenuItem.spec.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/conts.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/locals.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/tests/useHandleSubMenus.spec.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/useHandleSubMenus.ts +0 -0
- /package/src/components/Logo/{types.d.ts → types.ts} +0 -0
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { AxiosResponse } from 'axios';
|
|
2
|
+
import { ColorType } from './types';
|
|
2
3
|
import { ComponentOptionsMixin } from 'vue';
|
|
3
4
|
import { ComponentProvideOptions } from 'vue';
|
|
4
5
|
import { ComputedRef } from 'vue';
|
|
6
|
+
import { DataListGroupItems } from './types';
|
|
7
|
+
import { DataListGroupItems as DataListGroupItems_2 } from '../DataListGroup/types';
|
|
8
|
+
import { DataListIcons } from './types';
|
|
9
|
+
import { DataListIcons as DataListIcons_2 } from '../DataList/types';
|
|
10
|
+
import { DataListItem } from './types';
|
|
5
11
|
import { DefineComponent } from 'vue';
|
|
6
12
|
import { ExtractPropTypes } from 'vue';
|
|
13
|
+
import { IconType } from './types';
|
|
7
14
|
import { LinkItem } from './types';
|
|
8
15
|
import { ListItem } from './types';
|
|
9
16
|
import { PropType } from 'vue';
|
|
@@ -11,13 +18,19 @@ import { PublicProps } from 'vue';
|
|
|
11
18
|
import { Ref } from 'vue';
|
|
12
19
|
import { RouteLocationAsPathGeneric } from 'vue-router';
|
|
13
20
|
import { RouteLocationAsRelativeGeneric } from 'vue-router';
|
|
14
|
-
import {
|
|
15
|
-
import { SocialMediaLink
|
|
21
|
+
import { RouteLocationRaw } from 'vue-router';
|
|
22
|
+
import { SocialMediaLink } from '../SocialMediaLinks/types';
|
|
23
|
+
import { SocialMediaLink as SocialMediaLink_2 } from './types';
|
|
24
|
+
import { VariantStyle } from './types';
|
|
16
25
|
|
|
17
26
|
declare type __VLS_PublicProps = {
|
|
18
27
|
modelValue?: boolean;
|
|
19
28
|
} & typeof __VLS_typeProps;
|
|
20
29
|
|
|
30
|
+
declare type __VLS_PublicProps_2 = {
|
|
31
|
+
modelValue?: boolean;
|
|
32
|
+
};
|
|
33
|
+
|
|
21
34
|
declare let __VLS_typeProps: {
|
|
22
35
|
type?: 'success' | 'info' | 'warning' | 'error';
|
|
23
36
|
closable?: boolean;
|
|
@@ -30,6 +43,66 @@ declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
30
43
|
};
|
|
31
44
|
};
|
|
32
45
|
|
|
46
|
+
declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
47
|
+
new (): {
|
|
48
|
+
$slots: S;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
53
|
+
new (): {
|
|
54
|
+
$slots: S;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
declare type __VLS_WithTemplateSlots_12<T, S> = T & {
|
|
59
|
+
new (): {
|
|
60
|
+
$slots: S;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
declare type __VLS_WithTemplateSlots_13<T, S> = T & {
|
|
65
|
+
new (): {
|
|
66
|
+
$slots: S;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
71
|
+
new (): {
|
|
72
|
+
$slots: S;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
77
|
+
new (): {
|
|
78
|
+
$slots: S;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
declare type __VLS_WithTemplateSlots_16<T, S> = T & {
|
|
83
|
+
new (): {
|
|
84
|
+
$slots: S;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
declare type __VLS_WithTemplateSlots_17<T, S> = T & {
|
|
89
|
+
new (): {
|
|
90
|
+
$slots: S;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
declare type __VLS_WithTemplateSlots_18<T, S> = T & {
|
|
95
|
+
new (): {
|
|
96
|
+
$slots: S;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
declare type __VLS_WithTemplateSlots_19<T, S> = T & {
|
|
101
|
+
new (): {
|
|
102
|
+
$slots: S;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
|
|
33
106
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
34
107
|
new (): {
|
|
35
108
|
$slots: S;
|
|
@@ -78,7 +151,7 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
78
151
|
};
|
|
79
152
|
};
|
|
80
153
|
|
|
81
|
-
export declare const Alert:
|
|
154
|
+
export declare const Alert: __VLS_WithTemplateSlots<DefineComponent<__VLS_PublicProps, {
|
|
82
155
|
prependIcon: ComputedRef<string>;
|
|
83
156
|
dismissAlert: typeof dismissAlert;
|
|
84
157
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -94,7 +167,7 @@ variant: "tonal" | "outlined";
|
|
|
94
167
|
default?(_: {}): any;
|
|
95
168
|
}>;
|
|
96
169
|
|
|
97
|
-
export declare const BackBtn:
|
|
170
|
+
export declare const BackBtn: __VLS_WithTemplateSlots_2<DefineComponent< {
|
|
98
171
|
hideBackIcon?: boolean | undefined;
|
|
99
172
|
dark?: boolean | undefined;
|
|
100
173
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
@@ -105,7 +178,7 @@ dark?: boolean | undefined;
|
|
|
105
178
|
default?(_: {}): any;
|
|
106
179
|
}>;
|
|
107
180
|
|
|
108
|
-
export declare const BackToTopBtn:
|
|
181
|
+
export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<Props & CustomizableOptions, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props & CustomizableOptions> & Readonly<{}>, {
|
|
109
182
|
target: string;
|
|
110
183
|
threshold: number;
|
|
111
184
|
nudgeRight: string | number;
|
|
@@ -127,7 +200,7 @@ declare type ComponentsProps = Record<string, PropsList>;
|
|
|
127
200
|
|
|
128
201
|
declare function copy(): void;
|
|
129
202
|
|
|
130
|
-
export declare const CopyBtn:
|
|
203
|
+
export declare const CopyBtn: __VLS_WithTemplateSlots_4<DefineComponent<CustomizableOptions & {
|
|
131
204
|
ariaLabel?: string | undefined;
|
|
132
205
|
ariaOwns?: string | undefined;
|
|
133
206
|
textToCopy: string | (() => string);
|
|
@@ -153,10 +226,344 @@ tooltipDuration: number;
|
|
|
153
226
|
tooltip?(_: {}): any;
|
|
154
227
|
}>;
|
|
155
228
|
|
|
229
|
+
export declare const CustomInputSelect: DefineComponent<CustomizableOptions & {
|
|
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
|
+
|
|
156
262
|
declare interface CustomizableOptions {
|
|
157
263
|
vuetifyOptions?: ComponentsProps;
|
|
158
264
|
}
|
|
159
265
|
|
|
266
|
+
export declare const CustomSelect: DefineComponent<ExtractPropTypes< {
|
|
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< {
|
|
388
|
+
items: {
|
|
389
|
+
type: PropType<DataListItem[]>;
|
|
390
|
+
required: true;
|
|
391
|
+
};
|
|
392
|
+
icons: {
|
|
393
|
+
type: PropType<DataListIcons | undefined>;
|
|
394
|
+
default: undefined;
|
|
395
|
+
};
|
|
396
|
+
listTitle: {
|
|
397
|
+
type: StringConstructor;
|
|
398
|
+
default: undefined;
|
|
399
|
+
};
|
|
400
|
+
titleClass: {
|
|
401
|
+
type: StringConstructor;
|
|
402
|
+
default: string;
|
|
403
|
+
};
|
|
404
|
+
row: {
|
|
405
|
+
type: BooleanConstructor;
|
|
406
|
+
default: boolean;
|
|
407
|
+
};
|
|
408
|
+
placeholder: {
|
|
409
|
+
type: StringConstructor;
|
|
410
|
+
default: undefined;
|
|
411
|
+
};
|
|
412
|
+
loading: {
|
|
413
|
+
type: BooleanConstructor;
|
|
414
|
+
default: boolean;
|
|
415
|
+
};
|
|
416
|
+
itemsNumberLoading: {
|
|
417
|
+
type: NumberConstructor;
|
|
418
|
+
default: number;
|
|
419
|
+
};
|
|
420
|
+
headingLoading: {
|
|
421
|
+
type: BooleanConstructor;
|
|
422
|
+
default: boolean;
|
|
423
|
+
};
|
|
424
|
+
renderHtmlValue: {
|
|
425
|
+
type: BooleanConstructor;
|
|
426
|
+
default: boolean;
|
|
427
|
+
};
|
|
428
|
+
maxWidth: {
|
|
429
|
+
type: StringConstructor;
|
|
430
|
+
default: undefined;
|
|
431
|
+
};
|
|
432
|
+
minWidth: {
|
|
433
|
+
type: StringConstructor;
|
|
434
|
+
default: undefined;
|
|
435
|
+
};
|
|
436
|
+
width: {
|
|
437
|
+
type: StringConstructor;
|
|
438
|
+
default: undefined;
|
|
439
|
+
};
|
|
440
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
441
|
+
"click:item-action": (...args: any[]) => void;
|
|
442
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
443
|
+
items: {
|
|
444
|
+
type: PropType<DataListItem[]>;
|
|
445
|
+
required: true;
|
|
446
|
+
};
|
|
447
|
+
icons: {
|
|
448
|
+
type: PropType<DataListIcons | undefined>;
|
|
449
|
+
default: undefined;
|
|
450
|
+
};
|
|
451
|
+
listTitle: {
|
|
452
|
+
type: StringConstructor;
|
|
453
|
+
default: undefined;
|
|
454
|
+
};
|
|
455
|
+
titleClass: {
|
|
456
|
+
type: StringConstructor;
|
|
457
|
+
default: string;
|
|
458
|
+
};
|
|
459
|
+
row: {
|
|
460
|
+
type: BooleanConstructor;
|
|
461
|
+
default: boolean;
|
|
462
|
+
};
|
|
463
|
+
placeholder: {
|
|
464
|
+
type: StringConstructor;
|
|
465
|
+
default: undefined;
|
|
466
|
+
};
|
|
467
|
+
loading: {
|
|
468
|
+
type: BooleanConstructor;
|
|
469
|
+
default: boolean;
|
|
470
|
+
};
|
|
471
|
+
itemsNumberLoading: {
|
|
472
|
+
type: NumberConstructor;
|
|
473
|
+
default: number;
|
|
474
|
+
};
|
|
475
|
+
headingLoading: {
|
|
476
|
+
type: BooleanConstructor;
|
|
477
|
+
default: boolean;
|
|
478
|
+
};
|
|
479
|
+
renderHtmlValue: {
|
|
480
|
+
type: BooleanConstructor;
|
|
481
|
+
default: boolean;
|
|
482
|
+
};
|
|
483
|
+
maxWidth: {
|
|
484
|
+
type: StringConstructor;
|
|
485
|
+
default: undefined;
|
|
486
|
+
};
|
|
487
|
+
minWidth: {
|
|
488
|
+
type: StringConstructor;
|
|
489
|
+
default: undefined;
|
|
490
|
+
};
|
|
491
|
+
width: {
|
|
492
|
+
type: StringConstructor;
|
|
493
|
+
default: undefined;
|
|
494
|
+
};
|
|
495
|
+
}>> & Readonly<{
|
|
496
|
+
"onClick:item-action"?: ((...args: any[]) => any) | undefined;
|
|
497
|
+
}>, {
|
|
498
|
+
maxWidth: string;
|
|
499
|
+
minWidth: string;
|
|
500
|
+
width: string;
|
|
501
|
+
loading: boolean;
|
|
502
|
+
listTitle: string;
|
|
503
|
+
placeholder: string;
|
|
504
|
+
row: boolean;
|
|
505
|
+
renderHtmlValue: boolean;
|
|
506
|
+
icons: DataListIcons | undefined;
|
|
507
|
+
titleClass: string;
|
|
508
|
+
itemsNumberLoading: number;
|
|
509
|
+
headingLoading: boolean;
|
|
510
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
511
|
+
title?(_: {}): any;
|
|
512
|
+
}>;
|
|
513
|
+
|
|
514
|
+
export declare const DataListGroup: DefineComponent<ExtractPropTypes< {
|
|
515
|
+
items: {
|
|
516
|
+
type: PropType<DataListGroupItems>;
|
|
517
|
+
required: true;
|
|
518
|
+
};
|
|
519
|
+
icons: {
|
|
520
|
+
type: PropType<DataListIcons_2 | undefined>;
|
|
521
|
+
default: undefined;
|
|
522
|
+
};
|
|
523
|
+
itemWidth: {
|
|
524
|
+
type: StringConstructor;
|
|
525
|
+
default: string;
|
|
526
|
+
};
|
|
527
|
+
loading: {
|
|
528
|
+
type: BooleanConstructor;
|
|
529
|
+
default: boolean;
|
|
530
|
+
};
|
|
531
|
+
renderHtmlValue: {
|
|
532
|
+
type: BooleanConstructor;
|
|
533
|
+
default: boolean;
|
|
534
|
+
};
|
|
535
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
536
|
+
"click:list-item": (...args: any[]) => void;
|
|
537
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
538
|
+
items: {
|
|
539
|
+
type: PropType<DataListGroupItems>;
|
|
540
|
+
required: true;
|
|
541
|
+
};
|
|
542
|
+
icons: {
|
|
543
|
+
type: PropType<DataListIcons_2 | undefined>;
|
|
544
|
+
default: undefined;
|
|
545
|
+
};
|
|
546
|
+
itemWidth: {
|
|
547
|
+
type: StringConstructor;
|
|
548
|
+
default: string;
|
|
549
|
+
};
|
|
550
|
+
loading: {
|
|
551
|
+
type: BooleanConstructor;
|
|
552
|
+
default: boolean;
|
|
553
|
+
};
|
|
554
|
+
renderHtmlValue: {
|
|
555
|
+
type: BooleanConstructor;
|
|
556
|
+
default: boolean;
|
|
557
|
+
};
|
|
558
|
+
}>> & Readonly<{
|
|
559
|
+
"onClick:list-item"?: ((...args: any[]) => any) | undefined;
|
|
560
|
+
}>, {
|
|
561
|
+
loading: boolean;
|
|
562
|
+
renderHtmlValue: boolean;
|
|
563
|
+
itemWidth: string;
|
|
564
|
+
icons: DataListIcons_2 | undefined;
|
|
565
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
566
|
+
|
|
160
567
|
declare function dismissAlert(): void;
|
|
161
568
|
|
|
162
569
|
declare function download(): Promise<void>;
|
|
@@ -183,7 +590,9 @@ declare interface FileInfo {
|
|
|
183
590
|
type: string;
|
|
184
591
|
}
|
|
185
592
|
|
|
186
|
-
|
|
593
|
+
declare function focus_2(): void;
|
|
594
|
+
|
|
595
|
+
export declare const FooterBar: __VLS_WithTemplateSlots_8<DefineComponent<CustomizableOptions & {
|
|
187
596
|
a11yCompliance?: string | undefined;
|
|
188
597
|
linkItems?: LinkItem[] | null | undefined;
|
|
189
598
|
items?: LinkItem[] | null | undefined;
|
|
@@ -200,7 +609,7 @@ hideA11yLink?: boolean | undefined;
|
|
|
200
609
|
version?: string | undefined;
|
|
201
610
|
hideLogo?: boolean | undefined;
|
|
202
611
|
hideSocialMediaLinks?: boolean | undefined;
|
|
203
|
-
socialMediaLinks?:
|
|
612
|
+
socialMediaLinks?: SocialMediaLink[] | undefined;
|
|
204
613
|
light?: boolean | undefined;
|
|
205
614
|
}, {
|
|
206
615
|
logoSize: ComputedRef<"small" | "normal">;
|
|
@@ -221,7 +630,7 @@ hideA11yLink?: boolean | undefined;
|
|
|
221
630
|
version?: string | undefined;
|
|
222
631
|
hideLogo?: boolean | undefined;
|
|
223
632
|
hideSocialMediaLinks?: boolean | undefined;
|
|
224
|
-
socialMediaLinks?:
|
|
633
|
+
socialMediaLinks?: SocialMediaLink[] | undefined;
|
|
225
634
|
light?: boolean | undefined;
|
|
226
635
|
}> & Readonly<{}>, {
|
|
227
636
|
light: boolean;
|
|
@@ -241,7 +650,7 @@ hideA11yLink: boolean;
|
|
|
241
650
|
version: string;
|
|
242
651
|
hideLogo: boolean;
|
|
243
652
|
hideSocialMediaLinks: boolean;
|
|
244
|
-
socialMediaLinks:
|
|
653
|
+
socialMediaLinks: SocialMediaLink[];
|
|
245
654
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
246
655
|
logo?(_: {}): any;
|
|
247
656
|
default?(_: {}): any;
|
|
@@ -267,6 +676,183 @@ isConnectPlus: boolean;
|
|
|
267
676
|
*/
|
|
268
677
|
declare function getFileInfo(header: Record<string, string>): FileInfo;
|
|
269
678
|
|
|
679
|
+
export declare const HeaderBar: __VLS_WithTemplateSlots_9<DefineComponent< {
|
|
680
|
+
/** Keep the header visible */
|
|
681
|
+
sticky?: boolean | undefined;
|
|
682
|
+
/**
|
|
683
|
+
* Show the header at sticky only when the user scroll up in mobile
|
|
684
|
+
* Need 'sticky' at true,
|
|
685
|
+
*/
|
|
686
|
+
hideWhenDown?: boolean | undefined;
|
|
687
|
+
} & LogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
688
|
+
/** Keep the header visible */
|
|
689
|
+
sticky?: boolean | undefined;
|
|
690
|
+
/**
|
|
691
|
+
* Show the header at sticky only when the user scroll up in mobile
|
|
692
|
+
* Need 'sticky' at true,
|
|
693
|
+
*/
|
|
694
|
+
hideWhenDown?: boolean | undefined;
|
|
695
|
+
} & LogoProps> & Readonly<{}>, {
|
|
696
|
+
sticky: boolean;
|
|
697
|
+
serviceTitle: string;
|
|
698
|
+
serviceSubtitle: string;
|
|
699
|
+
hideWhenDown: boolean;
|
|
700
|
+
homeAriaLabel: string;
|
|
701
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
702
|
+
prepend: (props: SlotProps) => unknown;
|
|
703
|
+
append: (props: SlotProps) => unknown;
|
|
704
|
+
menu: (props: SlotProps) => unknown;
|
|
705
|
+
logo: (props: SlotProps & LogoProps) => unknown;
|
|
706
|
+
'logo-brand-content': (props: SlotProps & LogoProps) => unknown;
|
|
707
|
+
'header-side': (props: SlotProps) => unknown;
|
|
708
|
+
}> & {
|
|
709
|
+
prepend: (props: SlotProps) => unknown;
|
|
710
|
+
append: (props: SlotProps) => unknown;
|
|
711
|
+
menu: (props: SlotProps) => unknown;
|
|
712
|
+
logo: (props: SlotProps & LogoProps) => unknown;
|
|
713
|
+
'logo-brand-content': (props: SlotProps & LogoProps) => unknown;
|
|
714
|
+
'header-side': (props: SlotProps) => unknown;
|
|
715
|
+
}>;
|
|
716
|
+
|
|
717
|
+
export declare const HeaderBurgerMenu: __VLS_WithTemplateSlots_10<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
718
|
+
default?(_: {}): any;
|
|
719
|
+
}>;
|
|
720
|
+
|
|
721
|
+
export declare const HeaderLoading: DefineComponent<ExtractPropTypes< {
|
|
722
|
+
width: {
|
|
723
|
+
type: StringConstructor;
|
|
724
|
+
default: string;
|
|
725
|
+
};
|
|
726
|
+
height: {
|
|
727
|
+
type: StringConstructor;
|
|
728
|
+
default: string;
|
|
729
|
+
};
|
|
730
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
731
|
+
width: {
|
|
732
|
+
type: StringConstructor;
|
|
733
|
+
default: string;
|
|
734
|
+
};
|
|
735
|
+
height: {
|
|
736
|
+
type: StringConstructor;
|
|
737
|
+
default: string;
|
|
738
|
+
};
|
|
739
|
+
}>> & Readonly<{}>, {
|
|
740
|
+
height: string;
|
|
741
|
+
width: string;
|
|
742
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
743
|
+
|
|
744
|
+
export declare const HeaderLogo: __VLS_WithTemplateSlots_14<DefineComponent< {
|
|
745
|
+
ariaLabel?: string | undefined;
|
|
746
|
+
serviceTitle?: string | undefined;
|
|
747
|
+
serviceSubtitle?: string | undefined;
|
|
748
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
749
|
+
ariaLabel?: string | undefined;
|
|
750
|
+
serviceTitle?: string | undefined;
|
|
751
|
+
serviceSubtitle?: string | undefined;
|
|
752
|
+
}> & Readonly<{}>, {
|
|
753
|
+
ariaLabel: string;
|
|
754
|
+
serviceTitle: string;
|
|
755
|
+
serviceSubtitle: string;
|
|
756
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
757
|
+
'brand-content'?(): void;
|
|
758
|
+
}> & {
|
|
759
|
+
'brand-content'?(): void;
|
|
760
|
+
}>;
|
|
761
|
+
|
|
762
|
+
export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_2, {
|
|
763
|
+
focus: typeof focus_2;
|
|
764
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
765
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
766
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
767
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
768
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
769
|
+
|
|
770
|
+
export declare const HeaderMenuItem: __VLS_WithTemplateSlots_11<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
771
|
+
default?(_: {}): any;
|
|
772
|
+
}>;
|
|
773
|
+
|
|
774
|
+
export declare const HeaderMenuSection: __VLS_WithTemplateSlots_12<DefineComponent< {
|
|
775
|
+
title?: string | undefined;
|
|
776
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
777
|
+
title?: string | undefined;
|
|
778
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
779
|
+
default?(_: {}): any;
|
|
780
|
+
}>;
|
|
781
|
+
|
|
782
|
+
export declare const HeaderNavbar: __VLS_WithTemplateSlots_15<DefineComponent< {
|
|
783
|
+
homeAriaLabel?: string | undefined;
|
|
784
|
+
serviceTitle?: string | undefined;
|
|
785
|
+
serviceSubtitle?: string | undefined;
|
|
786
|
+
/** Keep the header visible */
|
|
787
|
+
sticky?: boolean | undefined;
|
|
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<{}>, {
|
|
823
|
+
items: NavigationItem[];
|
|
824
|
+
serviceTitle: string;
|
|
825
|
+
serviceSubtitle: string;
|
|
826
|
+
hideWhenDown: boolean;
|
|
827
|
+
homeAriaLabel: string;
|
|
828
|
+
maxHorizontalMenuItems: number;
|
|
829
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
830
|
+
logo: (props: SlotProps_2 & LogoProps_2) => unknown;
|
|
831
|
+
'logo-brand-content': (props: SlotProps_2 & LogoProps_2) => unknown;
|
|
832
|
+
'header-side': (props: SlotProps_2) => unknown;
|
|
833
|
+
'navigation-bar-prepend': () => unknown;
|
|
834
|
+
'navigation-bar-append': () => unknown;
|
|
835
|
+
'navigation-bar-content': () => unknown;
|
|
836
|
+
'navigation-menu-prepend': (props: SlotProps_2) => unknown;
|
|
837
|
+
'navigation-menu-append': (props: SlotProps_2) => unknown;
|
|
838
|
+
'navigation-menu-content': (props: SlotProps_2) => unknown;
|
|
839
|
+
}> & {
|
|
840
|
+
logo: (props: SlotProps_2 & LogoProps_2) => unknown;
|
|
841
|
+
'logo-brand-content': (props: SlotProps_2 & LogoProps_2) => unknown;
|
|
842
|
+
'header-side': (props: SlotProps_2) => unknown;
|
|
843
|
+
'navigation-bar-prepend': () => unknown;
|
|
844
|
+
'navigation-bar-append': () => unknown;
|
|
845
|
+
'navigation-bar-content': () => unknown;
|
|
846
|
+
'navigation-menu-prepend': (props: SlotProps_2) => unknown;
|
|
847
|
+
'navigation-menu-append': (props: SlotProps_2) => unknown;
|
|
848
|
+
'navigation-menu-content': (props: SlotProps_2) => unknown;
|
|
849
|
+
}>;
|
|
850
|
+
|
|
851
|
+
export declare const HeaderSubMenu: __VLS_WithTemplateSlots_13<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
852
|
+
title?(_: {}): any;
|
|
853
|
+
default?(_: {}): any;
|
|
854
|
+
}>;
|
|
855
|
+
|
|
270
856
|
export declare const LangBtn: DefineComponent<CustomizableOptions & {
|
|
271
857
|
modelValue?: string | undefined;
|
|
272
858
|
hideDownArrow?: boolean | undefined;
|
|
@@ -362,14 +948,32 @@ validator: (value: string) => boolean;
|
|
|
362
948
|
};
|
|
363
949
|
}>> & Readonly<{}>, {
|
|
364
950
|
size: "small" | "x-small" | "normal";
|
|
365
|
-
ariaLabel: string;
|
|
366
951
|
dark: boolean;
|
|
952
|
+
ariaLabel: string;
|
|
953
|
+
avatar: boolean;
|
|
367
954
|
hideSignature: boolean;
|
|
368
955
|
hideOrganism: boolean;
|
|
369
956
|
risquePro: boolean;
|
|
370
|
-
avatar: boolean;
|
|
371
957
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
372
958
|
|
|
959
|
+
declare type LogoProps = {
|
|
960
|
+
homeAriaLabel?: string;
|
|
961
|
+
serviceTitle?: string;
|
|
962
|
+
serviceSubtitle?: string;
|
|
963
|
+
};
|
|
964
|
+
|
|
965
|
+
declare type LogoProps_2 = {
|
|
966
|
+
homeAriaLabel?: string;
|
|
967
|
+
serviceTitle?: string;
|
|
968
|
+
serviceSubtitle?: string;
|
|
969
|
+
};
|
|
970
|
+
|
|
971
|
+
declare interface NavigationItem {
|
|
972
|
+
label: string;
|
|
973
|
+
href?: string;
|
|
974
|
+
to?: RouteLocationRaw;
|
|
975
|
+
}
|
|
976
|
+
|
|
373
977
|
declare interface Notification_2 {
|
|
374
978
|
id: string;
|
|
375
979
|
message: string;
|
|
@@ -377,10 +981,11 @@ declare interface Notification_2 {
|
|
|
377
981
|
timeout?: number;
|
|
378
982
|
icon?: string | null;
|
|
379
983
|
}
|
|
984
|
+
export { Notification_2 as Notification }
|
|
380
985
|
|
|
381
|
-
export declare const NotificationBar:
|
|
986
|
+
export declare const NotificationBar: __VLS_WithTemplateSlots_16<DefineComponent<CustomizableOptions & {
|
|
382
987
|
closeBtnText?: string | undefined;
|
|
383
|
-
rounded?: true | 0 |
|
|
988
|
+
rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xs" | "sm" | "lg" | "xl" | "shaped" | undefined;
|
|
384
989
|
bottom?: boolean | undefined;
|
|
385
990
|
}, {
|
|
386
991
|
openNotification: (notification: Notification_2) => void;
|
|
@@ -401,31 +1006,39 @@ smallCloseBtn: ComputedRef<boolean>;
|
|
|
401
1006
|
isVertical: ComputedRef<boolean>;
|
|
402
1007
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomizableOptions & {
|
|
403
1008
|
closeBtnText?: string | undefined;
|
|
404
|
-
rounded?: true | 0 |
|
|
1009
|
+
rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xs" | "sm" | "lg" | "xl" | "shaped" | undefined;
|
|
405
1010
|
bottom?: boolean | undefined;
|
|
406
1011
|
}> & Readonly<{}>, {
|
|
407
|
-
rounded: true | 0 |
|
|
1012
|
+
rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xs" | "sm" | "lg" | "xl" | "shaped";
|
|
408
1013
|
bottom: boolean;
|
|
409
1014
|
closeBtnText: string;
|
|
410
1015
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
411
1016
|
action?(_: {}): any;
|
|
412
1017
|
}>;
|
|
413
1018
|
|
|
414
|
-
export declare
|
|
415
|
-
|
|
416
|
-
|
|
1019
|
+
export declare namespace NotificationService {
|
|
1020
|
+
export {
|
|
1021
|
+
useNotificationService
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
declare type NumberOrNumberString = string | number | undefined;
|
|
1026
|
+
|
|
1027
|
+
export declare const PageContainer: __VLS_WithTemplateSlots_17<DefineComponent< {
|
|
1028
|
+
size?: "s" | "xl" | "l" | "m" | undefined;
|
|
1029
|
+
spacing?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
417
1030
|
color?: string | undefined;
|
|
418
1031
|
}, {
|
|
419
1032
|
spacingClass: ComputedRef<string>;
|
|
420
1033
|
containerSize: ComputedRef<number>;
|
|
421
1034
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
422
|
-
size?: "
|
|
423
|
-
spacing?: "
|
|
1035
|
+
size?: "s" | "xl" | "l" | "m" | undefined;
|
|
1036
|
+
spacing?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
424
1037
|
color?: string | undefined;
|
|
425
1038
|
}> & Readonly<{}>, {
|
|
426
|
-
size: "xl" | "l" | "m" | "s";
|
|
427
|
-
spacing: "xl" | "xs" | "sm" | "md" | "lg";
|
|
428
1039
|
color: string;
|
|
1040
|
+
size: "s" | "xl" | "l" | "m";
|
|
1041
|
+
spacing: "xs" | "sm" | "md" | "lg" | "xl";
|
|
429
1042
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
430
1043
|
default?(_: {}): any;
|
|
431
1044
|
}>;
|
|
@@ -444,7 +1057,7 @@ declare interface Props_2 {
|
|
|
444
1057
|
|
|
445
1058
|
declare type PropsList = Record<string, unknown>;
|
|
446
1059
|
|
|
447
|
-
export declare const SkipLink:
|
|
1060
|
+
export declare const SkipLink: __VLS_WithTemplateSlots_18<DefineComponent< {
|
|
448
1061
|
label?: string | undefined;
|
|
449
1062
|
target?: string | undefined;
|
|
450
1063
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
@@ -457,22 +1070,94 @@ target: string;
|
|
|
457
1070
|
default?(_: {}): any;
|
|
458
1071
|
}>;
|
|
459
1072
|
|
|
1073
|
+
declare type SlotProps = {
|
|
1074
|
+
menuOpen: boolean | undefined;
|
|
1075
|
+
};
|
|
1076
|
+
|
|
1077
|
+
declare type SlotProps_2 = {
|
|
1078
|
+
menuOpen: boolean | undefined;
|
|
1079
|
+
};
|
|
1080
|
+
|
|
460
1081
|
export declare const SocialMediaLinks: DefineComponent<ExtractPropTypes< {
|
|
461
1082
|
links: {
|
|
462
|
-
type: PropType<
|
|
1083
|
+
type: PropType<SocialMediaLink_2[]>;
|
|
463
1084
|
default: null;
|
|
464
1085
|
};
|
|
465
1086
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
466
1087
|
links: {
|
|
467
|
-
type: PropType<
|
|
1088
|
+
type: PropType<SocialMediaLink_2[]>;
|
|
468
1089
|
default: null;
|
|
469
1090
|
};
|
|
470
1091
|
}>> & Readonly<{}>, {
|
|
471
|
-
links:
|
|
1092
|
+
links: SocialMediaLink_2[];
|
|
472
1093
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
473
1094
|
|
|
474
1095
|
declare type State = 'idle' | 'loading' | 'success' | 'error';
|
|
475
1096
|
|
|
1097
|
+
export declare const SubHeader: __VLS_WithTemplateSlots_19<DefineComponent<CustomizableOptions & Widthable & {
|
|
1098
|
+
hideBackBtn: boolean;
|
|
1099
|
+
backBtnText?: string | undefined;
|
|
1100
|
+
titleText?: string | undefined;
|
|
1101
|
+
subTitleText?: string | undefined;
|
|
1102
|
+
dataListGroupItems?: DataListGroupItems_2 | undefined;
|
|
1103
|
+
loading?: boolean | undefined;
|
|
1104
|
+
renderHtmlValue?: boolean | undefined;
|
|
1105
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1106
|
+
"click:list-item": (...args: any[]) => void;
|
|
1107
|
+
back: (...args: any[]) => void;
|
|
1108
|
+
}, string, PublicProps, Readonly<CustomizableOptions & Widthable & {
|
|
1109
|
+
hideBackBtn: boolean;
|
|
1110
|
+
backBtnText?: string | undefined;
|
|
1111
|
+
titleText?: string | undefined;
|
|
1112
|
+
subTitleText?: string | undefined;
|
|
1113
|
+
dataListGroupItems?: DataListGroupItems_2 | undefined;
|
|
1114
|
+
loading?: boolean | undefined;
|
|
1115
|
+
renderHtmlValue?: boolean | undefined;
|
|
1116
|
+
}> & Readonly<{
|
|
1117
|
+
"onClick:list-item"?: ((...args: any[]) => any) | undefined;
|
|
1118
|
+
onBack?: ((...args: any[]) => any) | undefined;
|
|
1119
|
+
}>, {
|
|
1120
|
+
loading: boolean;
|
|
1121
|
+
renderHtmlValue: boolean;
|
|
1122
|
+
hideBackBtn: boolean;
|
|
1123
|
+
backBtnText: string;
|
|
1124
|
+
titleText: string;
|
|
1125
|
+
subTitleText: string;
|
|
1126
|
+
dataListGroupItems: DataListGroupItems_2;
|
|
1127
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1128
|
+
"back-btn"?(_: {}): any;
|
|
1129
|
+
"back-btn-icon"?(_: {}): any;
|
|
1130
|
+
title?(_: {}): any;
|
|
1131
|
+
"sub-title"?(_: {}): any;
|
|
1132
|
+
"additional-informations"?(_: {}): any;
|
|
1133
|
+
"right-content"?(_: {}): any;
|
|
1134
|
+
}>;
|
|
1135
|
+
|
|
476
1136
|
declare function updateLang(lang: string): void;
|
|
477
1137
|
|
|
1138
|
+
declare function useNotificationService(): {
|
|
1139
|
+
notificationQueue: Ref< {
|
|
1140
|
+
id: string;
|
|
1141
|
+
message: string;
|
|
1142
|
+
type: "error" | "success" | "info" | "warning";
|
|
1143
|
+
timeout?: number | undefined;
|
|
1144
|
+
icon?: string | null | undefined;
|
|
1145
|
+
}[], Notification_2[] | {
|
|
1146
|
+
id: string;
|
|
1147
|
+
message: string;
|
|
1148
|
+
type: "error" | "success" | "info" | "warning";
|
|
1149
|
+
timeout?: number | undefined;
|
|
1150
|
+
icon?: string | null | undefined;
|
|
1151
|
+
}[]>;
|
|
1152
|
+
addNotification: (notification: Notification_2) => void;
|
|
1153
|
+
removeNotification: (id: string) => void;
|
|
1154
|
+
clearQueue: () => void;
|
|
1155
|
+
};
|
|
1156
|
+
|
|
1157
|
+
declare interface Widthable {
|
|
1158
|
+
maxWidth?: NumberOrNumberString;
|
|
1159
|
+
minWidth?: NumberOrNumberString;
|
|
1160
|
+
width?: NumberOrNumberString;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
478
1163
|
export { }
|