@cnamts/synapse 0.0.3-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.
Files changed (300) hide show
  1. package/dist/design-system-v3.d.ts +1461 -68
  2. package/dist/design-system-v3.js +4775 -1673
  3. package/dist/design-system-v3.umd.cjs +10 -1
  4. package/dist/style.css +1 -1
  5. package/package.json +6 -2
  6. package/src/assets/tokens.scss +0 -1
  7. package/src/components/Alert/Accessibilite.mdx +14 -0
  8. package/src/components/Alert/Accessibilite.stories.ts +166 -0
  9. package/src/components/Alert/AccessibiliteItems.ts +152 -0
  10. package/src/components/Alert/Alert.mdx +1 -1
  11. package/src/components/Alert/Alert.stories.ts +91 -1
  12. package/src/components/Alert/constants/ExpertiseLevelEnum.ts +4 -0
  13. package/src/components/BackBtn/Accessibilite.mdx +14 -0
  14. package/src/components/BackBtn/Accessibilite.stories.ts +166 -0
  15. package/src/components/BackBtn/AccessibiliteItems.ts +132 -0
  16. package/src/components/BackBtn/BackBtn.mdx +1 -1
  17. package/src/components/BackBtn/BackBtn.stories.ts +84 -1
  18. package/src/components/BackBtn/constants/ExpertiseLevelEnum.ts +4 -0
  19. package/src/components/BackToTopBtn/Accessibilite.mdx +14 -0
  20. package/src/components/BackToTopBtn/Accessibilite.stories.ts +166 -0
  21. package/src/components/BackToTopBtn/AccessibiliteItems.ts +82 -0
  22. package/src/components/BackToTopBtn/BackToTopBtn.mdx +3 -3
  23. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +172 -11
  24. package/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.ts +4 -0
  25. package/src/components/CollapsibleList/Accessibilite.mdx +14 -0
  26. package/src/components/CollapsibleList/Accessibilite.stories.ts +166 -0
  27. package/src/components/CollapsibleList/AccessibiliteItems.ts +129 -0
  28. package/src/components/CollapsibleList/CollapsibleList.mdx +2 -2
  29. package/src/components/CollapsibleList/CollapsibleList.stories.ts +37 -1
  30. package/src/components/CollapsibleList/constants/ExpertiseLevelEnum.ts +4 -0
  31. package/src/components/CopyBtn/Accessibilite.mdx +14 -0
  32. package/src/components/CopyBtn/Accessibilite.stories.ts +166 -0
  33. package/src/components/CopyBtn/AccessibiliteItems.ts +135 -0
  34. package/src/components/CopyBtn/CopyBtn.mdx +1 -1
  35. package/src/components/CopyBtn/CopyBtn.stories.ts +120 -1
  36. package/src/components/CopyBtn/CopyBtn.vue +1 -1
  37. package/src/components/CopyBtn/config.ts +2 -0
  38. package/src/components/CopyBtn/constants/ExpertiseLevelEnum.ts +4 -0
  39. package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +44 -0
  40. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +606 -0
  41. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +246 -0
  42. package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +168 -0
  43. package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +40 -0
  44. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +420 -0
  45. package/src/components/Customs/{CustomInputSelect/CustomInputSelect.vue → SyInputSelect/SyInputSelect.vue} +89 -54
  46. package/src/components/Customs/SyInputSelect/config.ts +10 -0
  47. package/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.ts +140 -0
  48. package/src/components/Customs/{CustomSelect/CustomSelect.mdx → SySelect/SySelect.mdx} +10 -10
  49. package/src/components/Customs/SySelect/SySelect.stories.ts +338 -0
  50. package/src/components/Customs/{CustomSelect/CustomSelect.vue → SySelect/SySelect.vue} +34 -11
  51. package/src/components/Customs/{CustomInputSelect/tests/CustomInputSelect.spec.ts → SySelect/tests/SySelect.spec.ts} +48 -71
  52. package/src/components/Customs/SyTextField/SyTextField.mdx +44 -0
  53. package/src/components/Customs/SyTextField/SyTextField.stories.ts +403 -0
  54. package/src/components/Customs/SyTextField/SyTextField.vue +110 -0
  55. package/src/components/Customs/SyTextField/tests/SyTextField.spec.ts +93 -0
  56. package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +57 -0
  57. package/src/components/Customs/SyTextField/types.d.ts +3 -0
  58. package/src/components/DataList/DataList.mdx +77 -0
  59. package/src/components/DataList/DataList.stories.ts +960 -0
  60. package/src/components/DataList/DataList.vue +140 -0
  61. package/src/components/DataList/DataListLoading/DataListLoading.vue +56 -0
  62. package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +23 -0
  63. package/src/components/DataList/locales.ts +3 -0
  64. package/src/components/DataList/tests/DataList.spec.ts +194 -0
  65. package/src/components/DataList/types.d.ts +23 -0
  66. package/src/components/DataListGroup/DataListGroup.mdx +77 -0
  67. package/src/components/DataListGroup/DataListGroup.stories.ts +987 -0
  68. package/src/components/DataListGroup/DataListGroup.vue +59 -0
  69. package/src/components/DataListGroup/tests/DataListGroup.spec.ts +54 -0
  70. package/src/components/DataListGroup/tests/data/dataListGroupItems.ts +41 -0
  71. package/src/components/DataListGroup/types.d.ts +15 -0
  72. package/src/components/DataListItem/DataListItem.vue +135 -0
  73. package/src/components/DataListItem/config.ts +17 -0
  74. package/src/components/DataListItem/locales.ts +3 -0
  75. package/src/components/DataListItem/tests/DataListItem.spec.ts +156 -0
  76. package/src/components/DataListItem/types.d.ts +23 -0
  77. package/src/components/DialogBox/DialogBox.mdx +14 -0
  78. package/src/components/DialogBox/DialogBox.stories.ts +798 -0
  79. package/src/components/DialogBox/DialogBox.vue +181 -0
  80. package/src/components/DialogBox/config.ts +25 -0
  81. package/src/components/DialogBox/locales.ts +5 -0
  82. package/src/components/DialogBox/tests/DialogBox.spec.ts +329 -0
  83. package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +46 -0
  84. package/src/components/DownloadBtn/Accessibilite.mdx +14 -0
  85. package/src/components/DownloadBtn/Accessibilite.stories.ts +166 -0
  86. package/src/components/DownloadBtn/AccessibiliteItems.ts +129 -0
  87. package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
  88. package/src/components/DownloadBtn/DownloadBtn.stories.ts +207 -2
  89. package/src/components/DownloadBtn/constants/ExpertiseLevelEnum.ts +4 -0
  90. package/src/components/ErrorPage/ErrorPage.mdx +21 -0
  91. package/src/components/ErrorPage/ErrorPage.stories.ts +133 -0
  92. package/src/components/ErrorPage/ErrorPage.vue +93 -0
  93. package/src/components/ErrorPage/locales.ts +5 -0
  94. package/src/components/ErrorPage/tests/ErrorPage.spec.ts +40 -0
  95. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +78 -0
  96. package/src/components/FooterBar/FooterBar.mdx +2 -2
  97. package/src/components/FooterBar/FooterBar.stories.ts +557 -9
  98. package/src/components/FooterBar/config.ts +2 -3
  99. package/src/components/FooterBar/tests/FooterBar.spec.ts +1 -1
  100. package/src/components/FooterBar/tests/FooterBarConfig.spec.ts +1 -1
  101. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +2 -2
  102. package/src/components/FranceConnectBtn/Accessibilite.mdx +14 -0
  103. package/src/components/FranceConnectBtn/Accessibilite.stories.ts +194 -0
  104. package/src/components/FranceConnectBtn/AccessibiliteItems.ts +199 -0
  105. package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
  106. package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +58 -1
  107. package/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.ts +4 -0
  108. package/src/components/HeaderBar/HeaderBar.mdx +164 -45
  109. package/src/components/HeaderBar/HeaderBar.stories.ts +618 -16
  110. package/src/components/HeaderBar/HeaderBar.vue +60 -22
  111. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.mdx +433 -0
  112. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.stories.ts +1089 -0
  113. package/src/components/HeaderBar/{HeaderComplexMenu/HeaderComplexMenu.vue → HeaderBurgerMenu/HeaderBurgerMenu.vue} +74 -45
  114. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.mdx +38 -0
  115. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +89 -0
  116. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +1 -1
  117. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.mdx +17 -0
  118. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +121 -0
  119. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/HeaderMenuSection.vue +2 -2
  120. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/tests/HeaderMenuSection.spec.ts +1 -3
  121. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.mdx +43 -0
  122. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +261 -0
  123. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/HeaderSubMenu.vue +17 -3
  124. package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/tests/HeaderSubMenu.spec.ts +1 -1
  125. package/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.ts +180 -0
  126. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +13 -0
  127. package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +13 -0
  128. package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +62 -25
  129. package/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.ts +49 -1
  130. package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +19 -23
  131. package/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.ts +70 -0
  132. package/src/components/HeaderBar/Usages.mdx +85 -0
  133. package/src/components/HeaderBar/consts.scss +0 -1
  134. package/src/components/HeaderBar/tests/HeaderBar.spec.ts +8 -2
  135. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +5 -10
  136. package/src/components/HeaderLoading/HeaderLoading.mdx +28 -0
  137. package/src/components/HeaderLoading/HeaderLoading.stories.ts +62 -0
  138. package/src/components/HeaderLoading/HeaderLoading.vue +45 -0
  139. package/src/components/HeaderLoading/tests/HeaderLoading.spec.ts +22 -0
  140. package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +128 -0
  141. package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +784 -0
  142. package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +194 -0
  143. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +74 -0
  144. package/src/components/HeaderNavigationBar/HorizontalNavbar/config.ts +18 -0
  145. package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +127 -0
  146. package/src/components/HeaderNavigationBar/types.ts +7 -0
  147. package/src/components/HeaderToolbar/HeaderToolbar.mdx +31 -0
  148. package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +343 -0
  149. package/src/components/HeaderToolbar/HeaderToolbar.vue +487 -0
  150. package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +230 -0
  151. package/src/components/HeaderToolbar/types.d.ts +20 -0
  152. package/src/components/LangBtn/Accessibilite.mdx +14 -0
  153. package/src/components/LangBtn/Accessibilite.stories.ts +166 -0
  154. package/src/components/LangBtn/AccessibiliteItems.ts +132 -0
  155. package/src/components/LangBtn/LangBtn.mdx +1 -1
  156. package/src/components/LangBtn/LangBtn.stories.ts +125 -8
  157. package/src/components/LangBtn/constants/ExpertiseLevelEnum.ts +4 -0
  158. package/src/components/LangBtn/tests/LangBtn.spec.ts +1 -1
  159. package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +1 -1
  160. package/src/components/Logo/Logo.mdx +2 -2
  161. package/src/components/Logo/Logo.stories.ts +147 -1
  162. package/src/components/LogoBrandSection/LogoBrandSection.mdx +14 -0
  163. package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +158 -0
  164. package/src/components/LogoBrandSection/LogoBrandSection.vue +312 -0
  165. package/src/components/LogoBrandSection/assets/ameli-pro.svg +1 -0
  166. package/src/components/LogoBrandSection/assets/ameli.svg +1 -0
  167. package/src/components/LogoBrandSection/assets/cnam.svg +1 -0
  168. package/src/components/LogoBrandSection/assets/compte-ameli.svg +1 -0
  169. package/src/components/LogoBrandSection/dividerDimensionsMapping.ts +14 -0
  170. package/src/components/LogoBrandSection/locales.ts +14 -0
  171. package/src/components/LogoBrandSection/secondaryLogoMapping.ts +24 -0
  172. package/src/components/LogoBrandSection/tests/LogoBrandSection.spec.ts +365 -0
  173. package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +14 -0
  174. package/src/components/LogoBrandSection/types.ts +8 -0
  175. package/src/components/MaintenancePage/MaintenancePage.mdx +11 -0
  176. package/src/components/MaintenancePage/MaintenancePage.stories.ts +41 -0
  177. package/src/components/MaintenancePage/MaintenancePage.vue +25 -0
  178. package/src/components/MaintenancePage/assets/maintenance.svg +1 -0
  179. package/src/components/MaintenancePage/index.ts +3 -0
  180. package/src/components/MaintenancePage/locales.ts +5 -0
  181. package/src/components/MaintenancePage/tests/MaintenancePage.spec.ts +12 -0
  182. package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +3 -0
  183. package/src/components/NotFoundPage/NotFoundPage.mdx +19 -0
  184. package/src/components/NotFoundPage/NotFoundPage.stories.ts +76 -0
  185. package/src/components/NotFoundPage/NotFoundPage.vue +52 -0
  186. package/src/components/NotFoundPage/assets/not-found.svg +1 -0
  187. package/src/components/NotFoundPage/locales.ts +6 -0
  188. package/src/components/NotFoundPage/tests/NotFoundPage.spec.ts +38 -0
  189. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +76 -0
  190. package/src/components/NotificationBar/Accessibilite.mdx +14 -0
  191. package/src/components/NotificationBar/Accessibilite.stories.ts +166 -0
  192. package/src/components/NotificationBar/AccessibiliteItems.ts +174 -0
  193. package/src/components/NotificationBar/NotificationBar.mdx +6 -6
  194. package/src/components/NotificationBar/NotificationBar.stories.ts +1 -1
  195. package/src/components/NotificationBar/NotificationBar.vue +2 -2
  196. package/src/components/NotificationBar/constants/ExpertiseLevelEnum.ts +4 -0
  197. package/src/components/NotificationBar/options.ts +1 -0
  198. package/src/components/NotificationBar/tests/NotificationBar.spec.ts +1 -1
  199. package/src/components/PageContainer/Accessibilite.mdx +14 -0
  200. package/src/components/PageContainer/Accessibilite.stories.ts +166 -0
  201. package/src/components/PageContainer/AccessibiliteItems.ts +52 -0
  202. package/src/components/PageContainer/PageContainer.mdx +1 -1
  203. package/src/components/PageContainer/PageContainer.stories.ts +86 -1
  204. package/src/components/PageContainer/constants/ExpertiseLevelEnum.ts +4 -0
  205. package/src/components/PhoneField/PhoneField.mdx +49 -0
  206. package/src/components/PhoneField/PhoneField.stories.ts +869 -0
  207. package/src/components/PhoneField/PhoneField.vue +230 -0
  208. package/src/components/PhoneField/indicatifs.ts +104 -0
  209. package/src/components/PhoneField/locales.ts +4 -0
  210. package/src/components/PhoneField/tests/PhoneField.spec.ts +179 -0
  211. package/src/components/SkipLink/Accessibilite.mdx +14 -0
  212. package/src/components/SkipLink/Accessibilite.stories.ts +167 -0
  213. package/src/components/SkipLink/AccessibiliteItems.ts +77 -0
  214. package/src/components/SkipLink/SkipLink.stories.ts +50 -1
  215. package/src/components/SkipLink/constants/ExpertiseLevelEnum.ts +4 -0
  216. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +33 -2
  217. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +38 -1
  218. package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +1 -1
  219. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
  220. package/src/components/SubHeader/SubHeader.mdx +31 -0
  221. package/src/components/SubHeader/SubHeader.stories.ts +1032 -0
  222. package/src/components/SubHeader/SubHeader.vue +185 -0
  223. package/src/components/SubHeader/config.ts +12 -0
  224. package/src/components/SubHeader/locales.ts +3 -0
  225. package/src/components/SubHeader/tests/SubHeader.spec.ts +144 -0
  226. package/src/components/UserMenuBtn/UserMenuBtn.mdx +35 -0
  227. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +438 -0
  228. package/src/components/UserMenuBtn/UserMenuBtn.vue +105 -0
  229. package/src/components/UserMenuBtn/config.ts +24 -0
  230. package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +125 -0
  231. package/src/components/index.ts +33 -7
  232. package/src/composables/index.ts +8 -0
  233. package/src/composables/rules/tests/useFieldValidation.spec.ts +82 -0
  234. package/src/composables/rules/useFieldValidation.ts +53 -0
  235. package/src/composables/widthable/index.ts +29 -0
  236. package/src/composables/widthable/tests/widthable.spec.ts +52 -0
  237. package/src/designTokens/index.ts +2 -0
  238. package/src/designTokens/tokens/cnam/cnamDarkTheme.ts +5 -0
  239. package/src/designTokens/tokens/cnam/cnamLightTheme.ts +3 -2
  240. package/src/main.ts +3 -0
  241. package/src/modules.d.ts +4 -0
  242. package/src/services/index.ts +1 -0
  243. package/src/stories/Demarrer/Accueil.mdx +10 -0
  244. package/src/stories/Demarrer/Accueil.stories.ts +76 -0
  245. package/src/stories/Demarrer/PolitiqueDeConfidentialite.mdx +9 -0
  246. package/src/stories/Demarrer/PolitiqueDeConfidentialite.stories.ts +20 -0
  247. package/src/stories/Fondamentaux/Arrondis.mdx +24 -0
  248. package/src/stories/{Guidelines → Fondamentaux}/Colors.mdx +1 -1
  249. package/src/stories/Fondamentaux/Conteneurs.mdx +7 -0
  250. package/src/stories/Fondamentaux/CustomisationEtThemes.mdx +7 -0
  251. package/src/stories/Fondamentaux/Elevations.mdx +14 -0
  252. package/src/stories/Fondamentaux/Espacements.mdx +29 -0
  253. package/src/stories/{Guidelines → Fondamentaux}/Introduction.mdx +1 -1
  254. package/src/stories/Fondamentaux/StylesTypographiques.mdx +33 -0
  255. package/src/stories/Fondamentaux/Typographie.mdx +58 -0
  256. package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +132 -0
  257. package/src/stories/GuideDuDev/moduleDeNotification.mdx +52 -48
  258. package/src/stories/GuideDuDev/vuetifyOptions.mdx +31 -28
  259. package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.mdx +1 -2
  260. package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.stories.ts +1 -1
  261. package/src/stories/{Fondamentaux → Guidelines}/EcoConception/Econception.stories.ts +2 -2
  262. package/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.ts +47 -0
  263. package/src/utils/functions/throttleDisplayFn/throttleDisplayFn.ts +26 -0
  264. package/src/utils/rules/exactLength/index.ts +33 -0
  265. package/src/utils/rules/exactLength/locales.ts +6 -0
  266. package/src/utils/rules/required/index.ts +25 -0
  267. package/src/utils/rules/required/locales.ts +5 -0
  268. package/src/utils/rules/required/ruleMessageHelper.ts +14 -0
  269. package/src/utils/rules/required/tests/index.spec.ts +47 -0
  270. package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +22 -0
  271. package/src/utils/rules/types.d.ts +15 -0
  272. package/src/components/Beta/beta.mdx +0 -5
  273. package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +0 -42
  274. package/src/components/Customs/CustomInputSelect/CustomInputSelect.stories.ts +0 -154
  275. package/src/components/Customs/CustomSelect/CustomSelect.stories.ts +0 -182
  276. package/src/components/Customs/CustomSelect/tests/CustomSelect.spec.ts +0 -236
  277. package/src/components/Deprecated/deprecated.mdx +0 -5
  278. package/src/components/HeaderBar/HeaderComplexMenu/HeaderComplexMenu.stories.ts +0 -272
  279. package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +0 -49
  280. package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +0 -56
  281. package/src/components/HeaderBar/HeaderComplexMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +0 -137
  282. package/src/components/HeaderBar/HeaderComplexMenu/tests/HeaderComplexMenu.spec.ts +0 -129
  283. package/src/components/HeaderBar/HeaderComplexMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +0 -18
  284. package/src/stories/Guidelines/CustomisationEtThemes.mdx +0 -3
  285. package/src/stories/Guidelines/Typo.mdx +0 -53
  286. package/src/stories/Home/Accueil.mdx +0 -7
  287. package/src/stories/Home/PolitiqueDeConfidentialite.mdx +0 -4
  288. package/src/stories/Home/synapse.webp +0 -0
  289. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/HeaderMenuItem.vue +0 -0
  290. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/HeaderMenuItem.spec.ts +0 -0
  291. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/conts.ts +0 -0
  292. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/locals.ts +0 -0
  293. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/tests/useHandleSubMenus.spec.ts +0 -0
  294. /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/useHandleSubMenus.ts +0 -0
  295. /package/src/components/Logo/{types.d.ts → types.ts} +0 -0
  296. /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/AccessibiliteItems.ts +0 -0
  297. /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/ExpertiseLevelEnum.ts +0 -0
  298. /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/RGAALevelEnum.ts +0 -0
  299. /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/EcoConception.mdx +0 -0
  300. /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/ecoDesignItems.ts +0 -0
@@ -1,41 +1,201 @@
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 as DataListItem_2 } 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';
16
+ import { MenuItem } from './types';
9
17
  import { PropType } from 'vue';
10
18
  import { PublicProps } from 'vue';
11
19
  import { Ref } from 'vue';
12
20
  import { RouteLocationAsPathGeneric } from 'vue-router';
13
21
  import { RouteLocationAsRelativeGeneric } from 'vue-router';
14
- import { SocialMediaLink } from './types';
15
- import { SocialMediaLink as SocialMediaLink_2 } from '../SocialMediaLinks/types';
22
+ import { RouteLocationRaw } from 'vue-router';
23
+ import { RouteRecordRaw } from 'vue-router';
24
+ import { SelectItem } from './types';
25
+ import { SocialMediaLink } from '../SocialMediaLinks/types';
26
+ import { SocialMediaLink as SocialMediaLink_2 } from './types';
27
+ import { VariantStyle } from './types';
16
28
 
17
29
  declare type __VLS_PublicProps = {
18
30
  modelValue?: boolean;
19
31
  } & typeof __VLS_typeProps;
20
32
 
33
+ declare type __VLS_PublicProps_2 = {
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;
43
+ };
44
+
45
+ declare type __VLS_PublicProps_5 = {
46
+ 'burgerMenu'?: boolean;
47
+ } & typeof __VLS_typeProps_3;
48
+
21
49
  declare let __VLS_typeProps: {
22
50
  type?: 'success' | 'info' | 'warning' | 'error';
23
51
  closable?: boolean;
24
52
  variant?: 'tonal' | 'outlined';
25
53
  };
26
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
+
27
91
  declare type __VLS_WithTemplateSlots<T, S> = T & {
28
92
  new (): {
29
93
  $slots: S;
30
94
  };
31
95
  };
32
96
 
97
+ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
98
+ new (): {
99
+ $slots: S;
100
+ };
101
+ };
102
+
103
+ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
104
+ new (): {
105
+ $slots: S;
106
+ };
107
+ };
108
+
109
+ declare type __VLS_WithTemplateSlots_12<T, S> = T & {
110
+ new (): {
111
+ $slots: S;
112
+ };
113
+ };
114
+
115
+ declare type __VLS_WithTemplateSlots_13<T, S> = T & {
116
+ new (): {
117
+ $slots: S;
118
+ };
119
+ };
120
+
121
+ declare type __VLS_WithTemplateSlots_14<T, S> = T & {
122
+ new (): {
123
+ $slots: S;
124
+ };
125
+ };
126
+
127
+ declare type __VLS_WithTemplateSlots_15<T, S> = T & {
128
+ new (): {
129
+ $slots: S;
130
+ };
131
+ };
132
+
133
+ declare type __VLS_WithTemplateSlots_16<T, S> = T & {
134
+ new (): {
135
+ $slots: S;
136
+ };
137
+ };
138
+
139
+ declare type __VLS_WithTemplateSlots_17<T, S> = T & {
140
+ new (): {
141
+ $slots: S;
142
+ };
143
+ };
144
+
145
+ declare type __VLS_WithTemplateSlots_18<T, S> = T & {
146
+ new (): {
147
+ $slots: S;
148
+ };
149
+ };
150
+
151
+ declare type __VLS_WithTemplateSlots_19<T, S> = T & {
152
+ new (): {
153
+ $slots: S;
154
+ };
155
+ };
156
+
33
157
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
34
158
  new (): {
35
159
  $slots: S;
36
160
  };
37
161
  };
38
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
+
39
199
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
40
200
  new (): {
41
201
  $slots: S;
@@ -78,7 +238,7 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
78
238
  };
79
239
  };
80
240
 
81
- export declare const Alert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_PublicProps, {
241
+ export declare const Alert: __VLS_WithTemplateSlots<DefineComponent<__VLS_PublicProps, {
82
242
  prependIcon: ComputedRef<string>;
83
243
  dismissAlert: typeof dismissAlert;
84
244
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
@@ -94,7 +254,7 @@ variant: "tonal" | "outlined";
94
254
  default?(_: {}): any;
95
255
  }>;
96
256
 
97
- export declare const BackBtn: __VLS_WithTemplateSlots_6<DefineComponent< {
257
+ export declare const BackBtn: __VLS_WithTemplateSlots_2<DefineComponent< {
98
258
  hideBackIcon?: boolean | undefined;
99
259
  dark?: boolean | undefined;
100
260
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
@@ -105,7 +265,7 @@ dark?: boolean | undefined;
105
265
  default?(_: {}): any;
106
266
  }>;
107
267
 
108
- export declare const BackToTopBtn: __VLS_WithTemplateSlots_5<DefineComponent<Props & CustomizableOptions, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props & CustomizableOptions> & Readonly<{}>, {
268
+ export declare const BackToTopBtn: __VLS_WithTemplateSlots_3<DefineComponent<Props & CustomizableOptions, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props & CustomizableOptions> & Readonly<{}>, {
109
269
  target: string;
110
270
  threshold: number;
111
271
  nudgeRight: string | number;
@@ -127,7 +287,7 @@ declare type ComponentsProps = Record<string, PropsList>;
127
287
 
128
288
  declare function copy(): void;
129
289
 
130
- export declare const CopyBtn: __VLS_WithTemplateSlots_3<DefineComponent<CustomizableOptions & {
290
+ export declare const CopyBtn: __VLS_WithTemplateSlots_4<DefineComponent<CustomizableOptions & {
131
291
  ariaLabel?: string | undefined;
132
292
  ariaOwns?: string | undefined;
133
293
  textToCopy: string | (() => string);
@@ -153,15 +313,261 @@ tooltipDuration: number;
153
313
  tooltip?(_: {}): any;
154
314
  }>;
155
315
 
156
- declare interface CustomizableOptions {
316
+ export declare interface CustomizableOptions {
157
317
  vuetifyOptions?: ComponentsProps;
158
318
  }
159
319
 
320
+ export declare const DataList: __VLS_WithTemplateSlots_7<DefineComponent<ExtractPropTypes< {
321
+ items: {
322
+ type: PropType<DataListItem_2[]>;
323
+ required: true;
324
+ };
325
+ icons: {
326
+ type: PropType<DataListIcons | undefined>;
327
+ default: undefined;
328
+ };
329
+ listTitle: {
330
+ type: StringConstructor;
331
+ default: undefined;
332
+ };
333
+ titleClass: {
334
+ type: StringConstructor;
335
+ default: string;
336
+ };
337
+ row: {
338
+ type: BooleanConstructor;
339
+ default: boolean;
340
+ };
341
+ placeholder: {
342
+ type: StringConstructor;
343
+ default: undefined;
344
+ };
345
+ loading: {
346
+ type: BooleanConstructor;
347
+ default: boolean;
348
+ };
349
+ itemsNumberLoading: {
350
+ type: NumberConstructor;
351
+ default: number;
352
+ };
353
+ headingLoading: {
354
+ type: BooleanConstructor;
355
+ default: boolean;
356
+ };
357
+ renderHtmlValue: {
358
+ type: BooleanConstructor;
359
+ default: boolean;
360
+ };
361
+ maxWidth: {
362
+ type: StringConstructor;
363
+ default: undefined;
364
+ };
365
+ minWidth: {
366
+ type: StringConstructor;
367
+ default: undefined;
368
+ };
369
+ width: {
370
+ type: StringConstructor;
371
+ default: undefined;
372
+ };
373
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
374
+ "click:item-action": (...args: any[]) => void;
375
+ }, string, PublicProps, Readonly<ExtractPropTypes< {
376
+ items: {
377
+ type: PropType<DataListItem_2[]>;
378
+ required: true;
379
+ };
380
+ icons: {
381
+ type: PropType<DataListIcons | undefined>;
382
+ default: undefined;
383
+ };
384
+ listTitle: {
385
+ type: StringConstructor;
386
+ default: undefined;
387
+ };
388
+ titleClass: {
389
+ type: StringConstructor;
390
+ default: string;
391
+ };
392
+ row: {
393
+ type: BooleanConstructor;
394
+ default: boolean;
395
+ };
396
+ placeholder: {
397
+ type: StringConstructor;
398
+ default: undefined;
399
+ };
400
+ loading: {
401
+ type: BooleanConstructor;
402
+ default: boolean;
403
+ };
404
+ itemsNumberLoading: {
405
+ type: NumberConstructor;
406
+ default: number;
407
+ };
408
+ headingLoading: {
409
+ type: BooleanConstructor;
410
+ default: boolean;
411
+ };
412
+ renderHtmlValue: {
413
+ type: BooleanConstructor;
414
+ default: boolean;
415
+ };
416
+ maxWidth: {
417
+ type: StringConstructor;
418
+ default: undefined;
419
+ };
420
+ minWidth: {
421
+ type: StringConstructor;
422
+ default: undefined;
423
+ };
424
+ width: {
425
+ type: StringConstructor;
426
+ default: undefined;
427
+ };
428
+ }>> & Readonly<{
429
+ "onClick:item-action"?: ((...args: any[]) => any) | undefined;
430
+ }>, {
431
+ maxWidth: string;
432
+ minWidth: string;
433
+ width: string;
434
+ loading: boolean;
435
+ listTitle: string;
436
+ placeholder: string;
437
+ row: boolean;
438
+ renderHtmlValue: boolean;
439
+ icons: DataListIcons | undefined;
440
+ titleClass: string;
441
+ itemsNumberLoading: number;
442
+ headingLoading: boolean;
443
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
444
+ title?(_: {}): any;
445
+ }>;
446
+
447
+ export declare const DataListGroup: DefineComponent<ExtractPropTypes< {
448
+ items: {
449
+ type: PropType<DataListGroupItems>;
450
+ required: true;
451
+ };
452
+ icons: {
453
+ type: PropType<DataListIcons_2 | undefined>;
454
+ default: undefined;
455
+ };
456
+ itemWidth: {
457
+ type: StringConstructor;
458
+ default: string;
459
+ };
460
+ loading: {
461
+ type: BooleanConstructor;
462
+ default: boolean;
463
+ };
464
+ renderHtmlValue: {
465
+ type: BooleanConstructor;
466
+ default: boolean;
467
+ };
468
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
469
+ "click:list-item": (...args: any[]) => void;
470
+ }, string, PublicProps, Readonly<ExtractPropTypes< {
471
+ items: {
472
+ type: PropType<DataListGroupItems>;
473
+ required: true;
474
+ };
475
+ icons: {
476
+ type: PropType<DataListIcons_2 | undefined>;
477
+ default: undefined;
478
+ };
479
+ itemWidth: {
480
+ type: StringConstructor;
481
+ default: string;
482
+ };
483
+ loading: {
484
+ type: BooleanConstructor;
485
+ default: boolean;
486
+ };
487
+ renderHtmlValue: {
488
+ type: BooleanConstructor;
489
+ default: boolean;
490
+ };
491
+ }>> & Readonly<{
492
+ "onClick:list-item"?: ((...args: any[]) => any) | undefined;
493
+ }>, {
494
+ loading: boolean;
495
+ renderHtmlValue: boolean;
496
+ itemWidth: string;
497
+ icons: DataListIcons_2 | undefined;
498
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
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
+
160
564
  declare function dismissAlert(): void;
161
565
 
566
+ declare type DisplayFormat = 'code' | 'code-abbreviation' | 'code-country' | 'country' | 'abbreviation';
567
+
162
568
  declare function download(): Promise<void>;
163
569
 
164
- export declare const DownloadBtn: __VLS_WithTemplateSlots_7<DefineComponent<Props_2 & CustomizableOptions, {
570
+ export declare const DownloadBtn: __VLS_WithTemplateSlots_10<DefineComponent<Props_2 & CustomizableOptions, {
165
571
  getFileInfo: typeof getFileInfo;
166
572
  download: typeof download;
167
573
  state: Ref<State, State>;
@@ -178,12 +584,47 @@ fallbackFilename: string;
178
584
  default?(_: {}): any;
179
585
  }>;
180
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
+
181
620
  declare interface FileInfo {
182
621
  name: string;
183
622
  type: string;
184
623
  }
185
624
 
186
- export declare const FooterBar: __VLS_WithTemplateSlots_9<DefineComponent<CustomizableOptions & {
625
+ declare function focus_2(): void;
626
+
627
+ export declare const FooterBar: __VLS_WithTemplateSlots_12<DefineComponent<CustomizableOptions & {
187
628
  a11yCompliance?: string | undefined;
188
629
  linkItems?: LinkItem[] | null | undefined;
189
630
  items?: LinkItem[] | null | undefined;
@@ -200,7 +641,7 @@ hideA11yLink?: boolean | undefined;
200
641
  version?: string | undefined;
201
642
  hideLogo?: boolean | undefined;
202
643
  hideSocialMediaLinks?: boolean | undefined;
203
- socialMediaLinks?: SocialMediaLink_2[] | undefined;
644
+ socialMediaLinks?: SocialMediaLink[] | undefined;
204
645
  light?: boolean | undefined;
205
646
  }, {
206
647
  logoSize: ComputedRef<"small" | "normal">;
@@ -221,7 +662,7 @@ hideA11yLink?: boolean | undefined;
221
662
  version?: string | undefined;
222
663
  hideLogo?: boolean | undefined;
223
664
  hideSocialMediaLinks?: boolean | undefined;
224
- socialMediaLinks?: SocialMediaLink_2[] | undefined;
665
+ socialMediaLinks?: SocialMediaLink[] | undefined;
225
666
  light?: boolean | undefined;
226
667
  }> & Readonly<{}>, {
227
668
  light: boolean;
@@ -241,7 +682,7 @@ hideA11yLink: boolean;
241
682
  version: string;
242
683
  hideLogo: boolean;
243
684
  hideSocialMediaLinks: boolean;
244
- socialMediaLinks: SocialMediaLink_2[];
685
+ socialMediaLinks: SocialMediaLink[];
245
686
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
246
687
  logo?(_: {}): any;
247
688
  default?(_: {}): any;
@@ -267,50 +708,340 @@ isConnectPlus: boolean;
267
708
  */
268
709
  declare function getFileInfo(header: Record<string, string>): FileInfo;
269
710
 
270
- export declare const LangBtn: DefineComponent<CustomizableOptions & {
271
- modelValue?: string | undefined;
272
- hideDownArrow?: boolean | undefined;
711
+ export declare const HeaderBar: __VLS_WithTemplateSlots_13<DefineComponent< {
712
+ /** Keep the header visible */
713
+ sticky?: boolean | undefined;
714
+ /**
715
+ * Show the header at sticky only when the user scroll up in mobile
716
+ * Need 'sticky' at true,
717
+ */
718
+ hideWhenDown?: boolean | undefined;
719
+ homeLink?: {
273
720
  ariaLabel?: string | undefined;
274
- ariaOwns?: string | undefined;
275
- availableLanguages?: string[] | "*" | undefined;
276
- }, {
277
- currentLangData: ComputedRef< {
278
- name: string;
279
- label: string;
280
- }>;
281
- updateLang: typeof updateLang;
282
- selectedLanguage: Ref<string, string>;
283
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
284
- change: (...args: any[]) => void;
285
- "update:modelValue": (...args: any[]) => void;
286
- }, string, PublicProps, Readonly<CustomizableOptions & {
287
- modelValue?: string | undefined;
288
- hideDownArrow?: boolean | undefined;
721
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
722
+ href?: string | undefined;
723
+ } | undefined;
724
+ } & LogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
725
+ /** Keep the header visible */
726
+ sticky?: boolean | undefined;
727
+ /**
728
+ * Show the header at sticky only when the user scroll up in mobile
729
+ * Need 'sticky' at true,
730
+ */
731
+ hideWhenDown?: boolean | undefined;
732
+ homeLink?: {
289
733
  ariaLabel?: string | undefined;
290
- ariaOwns?: string | undefined;
291
- availableLanguages?: string[] | "*" | undefined;
292
- }> & Readonly<{
293
- onChange?: ((...args: any[]) => any) | undefined;
294
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
295
- }>, {
296
- modelValue: string;
297
- ariaLabel: string;
298
- ariaOwns: string;
299
- hideDownArrow: boolean;
300
- availableLanguages: string[] | "*";
301
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
302
-
303
- export declare const Logo: DefineComponent<ExtractPropTypes< {
304
- hideSignature: {
305
- type: BooleanConstructor;
306
- default: boolean;
307
- };
308
- hideOrganism: {
309
- type: BooleanConstructor;
310
- default: boolean;
734
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
735
+ href?: string | undefined;
736
+ } | undefined;
737
+ } & LogoProps> & Readonly<{}>, {
738
+ sticky: boolean;
739
+ serviceTitle: string;
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;
311
749
  };
312
- risquePro: {
313
- type: BooleanConstructor;
750
+ hideWhenDown: boolean;
751
+ homeAriaLabel: string;
752
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
753
+ prepend: (props: SlotProps) => unknown;
754
+ append: (props: SlotProps) => unknown;
755
+ menu: (props: SlotProps) => unknown;
756
+ logo: (props: SlotProps & LogoProps) => unknown;
757
+ 'logo-brand-content': (props: SlotProps & LogoProps) => unknown;
758
+ 'header-side': (props: SlotProps) => unknown;
759
+ }> & {
760
+ prepend: (props: SlotProps) => unknown;
761
+ append: (props: SlotProps) => unknown;
762
+ menu: (props: SlotProps) => unknown;
763
+ logo: (props: SlotProps & LogoProps) => unknown;
764
+ 'logo-brand-content': (props: SlotProps & LogoProps) => unknown;
765
+ 'header-side': (props: SlotProps) => unknown;
766
+ }>;
767
+
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>, {
773
+ default?(_: {}): any;
774
+ }>;
775
+
776
+ export declare const HeaderLoading: DefineComponent<ExtractPropTypes< {
777
+ width: {
778
+ type: StringConstructor;
779
+ default: string;
780
+ };
781
+ height: {
782
+ type: StringConstructor;
783
+ default: string;
784
+ };
785
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
786
+ width: {
787
+ type: StringConstructor;
788
+ default: string;
789
+ };
790
+ height: {
791
+ type: StringConstructor;
792
+ default: string;
793
+ };
794
+ }>> & Readonly<{}>, {
795
+ height: string;
796
+ width: string;
797
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
798
+
799
+ export declare const HeaderLogo: __VLS_WithTemplateSlots_18<DefineComponent< {
800
+ ariaLabel?: string | undefined;
801
+ serviceTitle?: string | undefined;
802
+ serviceSubtitle?: string | undefined;
803
+ homeLink?: {
804
+ ariaLabel?: string | undefined;
805
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
806
+ href?: string | undefined;
807
+ } | undefined;
808
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
809
+ ariaLabel?: string | undefined;
810
+ serviceTitle?: string | undefined;
811
+ serviceSubtitle?: string | undefined;
812
+ homeLink?: {
813
+ ariaLabel?: string | undefined;
814
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
815
+ href?: string | undefined;
816
+ } | undefined;
817
+ }> & Readonly<{}>, {
818
+ ariaLabel: string;
819
+ serviceTitle: string;
820
+ serviceSubtitle: string;
821
+ homeLink: {
822
+ ariaLabel?: string | undefined;
823
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
824
+ href?: string | undefined;
825
+ };
826
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
827
+ 'brand-content'?(): void;
828
+ }> & {
829
+ 'brand-content'?(): void;
830
+ }>;
831
+
832
+ export declare const HeaderMenuBtn: DefineComponent<__VLS_PublicProps_4, {
833
+ focus: typeof focus_2;
834
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
835
+ "update:modelValue": (modelValue: boolean) => any;
836
+ }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
837
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
838
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
839
+
840
+ export declare const HeaderMenuItem: __VLS_WithTemplateSlots_15<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
841
+ default?(_: {}): any;
842
+ }>;
843
+
844
+ export declare const HeaderMenuSection: __VLS_WithTemplateSlots_16<DefineComponent< {
845
+ title?: string | undefined;
846
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
847
+ title?: string | undefined;
848
+ }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
849
+ title?(_: {}): any;
850
+ default?(_: {}): any;
851
+ }>;
852
+
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;
859
+ items: NavigationItem[];
860
+ serviceTitle: string;
861
+ serviceSubtitle: string;
862
+ homeLink: {
863
+ ariaLabel?: string | undefined;
864
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined;
865
+ href?: string | undefined;
866
+ };
867
+ hideWhenDown: boolean;
868
+ homeAriaLabel: string;
869
+ maxHorizontalMenuItems: number;
870
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
871
+ logo: (props: SlotProps_2 & LogoProps_2) => unknown;
872
+ 'logo-brand-content': (props: SlotProps_2 & LogoProps_2) => unknown;
873
+ 'header-side': (props: SlotProps_2) => unknown;
874
+ 'navigation-bar-prepend': () => unknown;
875
+ 'navigation-bar-append': () => unknown;
876
+ 'navigation-bar-content': () => unknown;
877
+ 'navigation-menu-prepend': (props: SlotProps_2) => unknown;
878
+ 'navigation-menu-append': (props: SlotProps_2) => unknown;
879
+ 'navigation-menu-content': (props: SlotProps_2) => unknown;
880
+ }> & {
881
+ logo: (props: SlotProps_2 & LogoProps_2) => unknown;
882
+ 'logo-brand-content': (props: SlotProps_2 & LogoProps_2) => unknown;
883
+ 'header-side': (props: SlotProps_2) => unknown;
884
+ 'navigation-bar-prepend': () => unknown;
885
+ 'navigation-bar-append': () => unknown;
886
+ 'navigation-bar-content': () => unknown;
887
+ 'navigation-menu-prepend': (props: SlotProps_2) => unknown;
888
+ 'navigation-menu-append': (props: SlotProps_2) => unknown;
889
+ 'navigation-menu-content': (props: SlotProps_2) => unknown;
890
+ }>;
891
+
892
+ export declare const HeaderSubMenu: __VLS_WithTemplateSlots_17<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
893
+ title?(_: {}): any;
894
+ default?(_: {}): any;
895
+ }>;
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
+
1001
+ export declare const LangBtn: DefineComponent<CustomizableOptions & {
1002
+ modelValue?: string | undefined;
1003
+ hideDownArrow?: boolean | undefined;
1004
+ ariaLabel?: string | undefined;
1005
+ ariaOwns?: string | undefined;
1006
+ availableLanguages?: string[] | "*" | undefined;
1007
+ }, {
1008
+ currentLangData: ComputedRef< {
1009
+ name: string;
1010
+ label: string;
1011
+ }>;
1012
+ updateLang: typeof updateLang;
1013
+ selectedLanguage: Ref<string, string>;
1014
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1015
+ change: (...args: any[]) => void;
1016
+ "update:modelValue": (...args: any[]) => void;
1017
+ }, string, PublicProps, Readonly<CustomizableOptions & {
1018
+ modelValue?: string | undefined;
1019
+ hideDownArrow?: boolean | undefined;
1020
+ ariaLabel?: string | undefined;
1021
+ ariaOwns?: string | undefined;
1022
+ availableLanguages?: string[] | "*" | undefined;
1023
+ }> & Readonly<{
1024
+ onChange?: ((...args: any[]) => any) | undefined;
1025
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1026
+ }>, {
1027
+ modelValue: string;
1028
+ ariaLabel: string;
1029
+ ariaOwns: string;
1030
+ hideDownArrow: boolean;
1031
+ availableLanguages: string[] | "*";
1032
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1033
+
1034
+ export declare const Logo: DefineComponent<ExtractPropTypes< {
1035
+ hideSignature: {
1036
+ type: BooleanConstructor;
1037
+ default: boolean;
1038
+ };
1039
+ hideOrganism: {
1040
+ type: BooleanConstructor;
1041
+ default: boolean;
1042
+ };
1043
+ risquePro: {
1044
+ type: BooleanConstructor;
314
1045
  default: boolean;
315
1046
  };
316
1047
  ariaLabel: {
@@ -362,14 +1093,82 @@ validator: (value: string) => boolean;
362
1093
  };
363
1094
  }>> & Readonly<{}>, {
364
1095
  size: "small" | "x-small" | "normal";
365
- ariaLabel: string;
366
1096
  dark: boolean;
1097
+ ariaLabel: string;
1098
+ avatar: boolean;
367
1099
  hideSignature: boolean;
368
1100
  hideOrganism: boolean;
369
1101
  risquePro: boolean;
370
- avatar: boolean;
371
1102
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
372
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
+
1145
+ declare type LogoProps = {
1146
+ homeAriaLabel?: string;
1147
+ serviceTitle?: string;
1148
+ serviceSubtitle?: string;
1149
+ homeLink?: {
1150
+ ariaLabel?: string;
1151
+ to?: RouteLocationRaw;
1152
+ href?: string;
1153
+ };
1154
+ };
1155
+
1156
+ declare type LogoProps_2 = {
1157
+ homeAriaLabel?: string;
1158
+ serviceTitle?: string;
1159
+ serviceSubtitle?: string;
1160
+ };
1161
+
1162
+ export declare const MaintenancePage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1163
+
1164
+ declare interface NavigationItem {
1165
+ label: string;
1166
+ href?: string;
1167
+ to?: RouteLocationRaw;
1168
+ }
1169
+
1170
+ export declare const NotFoundPage: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1171
+
373
1172
  declare interface Notification_2 {
374
1173
  id: string;
375
1174
  message: string;
@@ -377,10 +1176,11 @@ declare interface Notification_2 {
377
1176
  timeout?: number;
378
1177
  icon?: string | null;
379
1178
  }
1179
+ export { Notification_2 as Notification }
380
1180
 
381
- export declare const NotificationBar: __VLS_WithTemplateSlots_8<DefineComponent<CustomizableOptions & {
1181
+ export declare const NotificationBar: __VLS_WithTemplateSlots_22<DefineComponent<CustomizableOptions & {
382
1182
  closeBtnText?: string | undefined;
383
- rounded?: true | 0 | "xl" | "xs" | "sm" | "lg" | 1 | 2 | 3 | 4 | "circle" | "pill" | "shaped" | undefined;
1183
+ rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped" | undefined;
384
1184
  bottom?: boolean | undefined;
385
1185
  }, {
386
1186
  openNotification: (notification: Notification_2) => void;
@@ -401,35 +1201,163 @@ smallCloseBtn: ComputedRef<boolean>;
401
1201
  isVertical: ComputedRef<boolean>;
402
1202
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomizableOptions & {
403
1203
  closeBtnText?: string | undefined;
404
- rounded?: true | 0 | "xl" | "xs" | "sm" | "lg" | 1 | 2 | 3 | 4 | "circle" | "pill" | "shaped" | undefined;
1204
+ rounded?: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped" | undefined;
405
1205
  bottom?: boolean | undefined;
406
1206
  }> & Readonly<{}>, {
407
- rounded: true | 0 | "xl" | "xs" | "sm" | "lg" | 1 | 2 | 3 | 4 | "circle" | "pill" | "shaped";
1207
+ rounded: true | 0 | 1 | 2 | 3 | 4 | "circle" | "pill" | "xl" | "xs" | "sm" | "lg" | "shaped";
408
1208
  bottom: boolean;
409
1209
  closeBtnText: string;
410
1210
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
411
1211
  action?(_: {}): any;
412
1212
  }>;
413
1213
 
414
- export declare const PageContainer: __VLS_WithTemplateSlots<DefineComponent< {
415
- size?: "xl" | "l" | "m" | "s" | undefined;
1214
+ export declare namespace NotificationService {
1215
+ export {
1216
+ useNotificationService
1217
+ }
1218
+ }
1219
+
1220
+ export declare type NumberOrNumberString = string | number | undefined;
1221
+
1222
+ export declare const PageContainer: __VLS_WithTemplateSlots_23<DefineComponent< {
1223
+ size?: "s" | "xl" | "l" | "m" | undefined;
416
1224
  spacing?: "xl" | "xs" | "sm" | "md" | "lg" | undefined;
417
1225
  color?: string | undefined;
418
1226
  }, {
419
1227
  spacingClass: ComputedRef<string>;
420
1228
  containerSize: ComputedRef<number>;
421
1229
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
422
- size?: "xl" | "l" | "m" | "s" | undefined;
1230
+ size?: "s" | "xl" | "l" | "m" | undefined;
423
1231
  spacing?: "xl" | "xs" | "sm" | "md" | "lg" | undefined;
424
1232
  color?: string | undefined;
425
1233
  }> & Readonly<{}>, {
426
- size: "xl" | "l" | "m" | "s";
427
- spacing: "xl" | "xs" | "sm" | "md" | "lg";
428
1234
  color: string;
1235
+ size: "s" | "xl" | "l" | "m";
1236
+ spacing: "xl" | "xs" | "sm" | "md" | "lg";
429
1237
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
430
1238
  default?(_: {}): any;
431
1239
  }>;
432
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
+
433
1361
  declare interface Props {
434
1362
  threshold?: number;
435
1363
  nudgeRight?: string | number;
@@ -444,7 +1372,16 @@ declare interface Props_2 {
444
1372
 
445
1373
  declare type PropsList = Record<string, unknown>;
446
1374
 
447
- export declare const SkipLink: __VLS_WithTemplateSlots_4<DefineComponent< {
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< {
448
1385
  label?: string | undefined;
449
1386
  target?: string | undefined;
450
1387
  }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
@@ -457,22 +1394,478 @@ target: string;
457
1394
  default?(_: {}): any;
458
1395
  }>;
459
1396
 
1397
+ declare type SlotProps = {
1398
+ menuOpen: boolean | undefined;
1399
+ };
1400
+
1401
+ declare type SlotProps_2 = {
1402
+ menuOpen: boolean | undefined;
1403
+ };
1404
+
460
1405
  export declare const SocialMediaLinks: DefineComponent<ExtractPropTypes< {
461
1406
  links: {
462
- type: PropType<SocialMediaLink[]>;
1407
+ type: PropType<SocialMediaLink_2[]>;
463
1408
  default: null;
464
1409
  };
465
1410
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
466
1411
  links: {
467
- type: PropType<SocialMediaLink[]>;
1412
+ type: PropType<SocialMediaLink_2[]>;
468
1413
  default: null;
469
1414
  };
470
1415
  }>> & Readonly<{}>, {
471
- links: SocialMediaLink[];
1416
+ links: SocialMediaLink_2[];
472
1417
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
473
1418
 
474
1419
  declare type State = 'idle' | 'loading' | 'success' | 'error';
475
1420
 
1421
+ export declare const SubHeader: __VLS_WithTemplateSlots_25<DefineComponent<CustomizableOptions & Widthable & {
1422
+ hideBackBtn?: boolean | undefined;
1423
+ backBtnText?: string | undefined;
1424
+ titleText?: string | undefined;
1425
+ subTitleText?: string | undefined;
1426
+ dataListGroupItems?: DataListGroupItems_2 | undefined;
1427
+ loading?: boolean | undefined;
1428
+ renderHtmlValue?: boolean | undefined;
1429
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1430
+ "click:list-item": (...args: any[]) => void;
1431
+ back: (...args: any[]) => void;
1432
+ }, string, PublicProps, Readonly<CustomizableOptions & Widthable & {
1433
+ hideBackBtn?: boolean | undefined;
1434
+ backBtnText?: string | undefined;
1435
+ titleText?: string | undefined;
1436
+ subTitleText?: string | undefined;
1437
+ dataListGroupItems?: DataListGroupItems_2 | undefined;
1438
+ loading?: boolean | undefined;
1439
+ renderHtmlValue?: boolean | undefined;
1440
+ }> & Readonly<{
1441
+ "onClick:list-item"?: ((...args: any[]) => any) | undefined;
1442
+ onBack?: ((...args: any[]) => any) | undefined;
1443
+ }>, {
1444
+ loading: boolean;
1445
+ renderHtmlValue: boolean;
1446
+ hideBackBtn: boolean;
1447
+ backBtnText: string;
1448
+ titleText: string;
1449
+ subTitleText: string;
1450
+ dataListGroupItems: DataListGroupItems_2;
1451
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
1452
+ "back-btn"?(_: {}): any;
1453
+ "back-btn-icon"?(_: {}): any;
1454
+ title?(_: {}): any;
1455
+ "sub-title"?(_: {}): any;
1456
+ "additional-informations"?(_: {}): any;
1457
+ "right-content"?(_: {}): any;
1458
+ }>;
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
+
476
1783
  declare function updateLang(lang: string): void;
477
1784
 
1785
+ export declare function useFieldValidation(): {
1786
+ generateRules: (fieldRules: Array<{
1787
+ type: string;
1788
+ options?: RuleOptions;
1789
+ }>) => ValidationRule[];
1790
+ };
1791
+
1792
+ declare function useNotificationService(): {
1793
+ notificationQueue: Ref< {
1794
+ id: string;
1795
+ message: string;
1796
+ type: "error" | "success" | "info" | "warning";
1797
+ timeout?: number | undefined;
1798
+ icon?: string | null | undefined;
1799
+ }[], Notification_2[] | {
1800
+ id: string;
1801
+ message: string;
1802
+ type: "error" | "success" | "info" | "warning";
1803
+ timeout?: number | undefined;
1804
+ icon?: string | null | undefined;
1805
+ }[]>;
1806
+ addNotification: (notification: Notification_2) => void;
1807
+ removeNotification: (id: string) => void;
1808
+ clearQueue: () => void;
1809
+ };
1810
+
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 {
1866
+ maxWidth?: NumberOrNumberString;
1867
+ minWidth?: NumberOrNumberString;
1868
+ width?: NumberOrNumberString;
1869
+ }
1870
+
478
1871
  export { }