@bethinkpl/design-system 26.0.0 → 26.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (265) hide show
  1. package/.github/workflows/build-to-review-on-trigger.yml +2 -2
  2. package/.github/workflows/storybook.yml +1 -0
  3. package/dist/design-system.umd.cjs +18 -18
  4. package/dist/design-system.umd.cjs.map +1 -1
  5. package/dist/lib/js/components/BadgeScore/BadgeScore.vue.d.ts +86 -8
  6. package/dist/lib/js/components/Banner/Banner.vue.d.ts +1169 -9
  7. package/dist/lib/js/components/Buttons/Button/Button.vue.d.ts +90 -8
  8. package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +436 -9
  9. package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +89 -6
  10. package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +258 -6
  11. package/dist/lib/js/components/Chip/Chip.vue.d.ts +787 -9
  12. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +787 -1
  13. package/dist/lib/js/components/DatePickers/DatePickerBox/DatePickerBox.vue.d.ts +315 -1
  14. package/dist/lib/js/components/Divider/Divider.vue.d.ts +5 -5
  15. package/dist/lib/js/components/Drawer/Drawer.vue.d.ts +5 -5
  16. package/dist/lib/js/components/Drawer/DrawerContent/DrawerContent.vue.d.ts +1 -1
  17. package/dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts +48 -4
  18. package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +2542 -1
  19. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +85 -8
  20. package/dist/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue.d.ts +1 -1
  21. package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +1099 -9
  22. package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +434 -5
  23. package/dist/lib/js/components/Dropdown/Dropdown.vue.d.ts +31 -1
  24. package/dist/lib/js/components/Form/Checkbox/Checkbox.vue.d.ts +118 -9
  25. package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +118 -9
  26. package/dist/lib/js/components/Form/SelectionControl/SelectionControl.vue.d.ts +89 -9
  27. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +898 -9
  28. package/dist/lib/js/components/Headers/PageHeader/PageHeader.vue.d.ts +50 -8
  29. package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +836 -9
  30. package/dist/lib/js/components/IconText/IconText.vue.d.ts +112 -1
  31. package/dist/lib/js/components/Icons/FeatureIcon/FeatureIcon.vue.d.ts +85 -8
  32. package/dist/lib/js/components/Icons/Icon/Icon.vue.d.ts +7 -5
  33. package/dist/lib/js/components/Image/Image.vue.d.ts +48 -14
  34. package/dist/lib/js/components/Layouts/ThreeColumnLayout/ThreeColumnLayout.vue.d.ts +12 -9
  35. package/dist/lib/js/components/LoadingBar/LoadingBar.vue.d.ts +5 -5
  36. package/dist/lib/js/components/Modal/Modal.vue.d.ts +85 -6
  37. package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +1161 -9
  38. package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +1443 -9
  39. package/dist/lib/js/components/Outline/OutlineDivider/OutlineDivider.vue.d.ts +48 -4
  40. package/dist/lib/js/components/Outline/OutlineItem/OutlineItem.vue.d.ts +95 -8
  41. package/dist/lib/js/components/Outline/OutlineSectionHeader/OutlineSectionHeader.vue.d.ts +3 -3
  42. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +1051 -9
  43. package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +325 -1
  44. package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +309 -1
  45. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +926 -9
  46. package/dist/lib/js/components/RichList/GroupRichListItem/GroupRichListItem.vue.d.ts +7 -7
  47. package/dist/lib/js/components/RichList/RichListItem/RichListItem.consts.d.ts +2 -0
  48. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +473 -9
  49. package/dist/lib/js/components/SectionTitle/SectionTitle.vue.d.ts +4 -4
  50. package/dist/lib/js/components/SelectList/SelectList.vue.d.ts +1 -1
  51. package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +89 -8
  52. package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +45 -1
  53. package/dist/lib/js/components/SelectList/SelectListItemTile/SelectListItemTile.vue.d.ts +433 -4
  54. package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +323 -8
  55. package/dist/lib/js/components/SelectList/SelectListSectionTitle/SelectListSectionTitle.vue.d.ts +4 -4
  56. package/dist/lib/js/components/SelectionTile/SelectionTile.vue.d.ts +849 -9
  57. package/dist/lib/js/components/Skeleton/Skeleton.vue.d.ts +8 -6
  58. package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +83 -4
  59. package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +83 -4
  60. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +1567 -9
  61. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +1946 -1
  62. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionTextarea.vue.d.ts +6 -6
  63. package/dist/lib/js/components/SurveyToggle/SurveyToggle.vue.d.ts +88 -8
  64. package/dist/lib/js/components/Switch/Switch.vue.d.ts +93 -9
  65. package/dist/lib/js/components/TabItem/TabItem.vue.d.ts +102 -1
  66. package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +48 -5
  67. package/dist/lib/js/components/Tile/Tile.vue.d.ts +84 -5
  68. package/dist/lib/js/components/Toggles/CounterToggle/CounterToggle.vue.d.ts +86 -8
  69. package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +96 -9
  70. package/dist/lib/js/components/Tooltip/Tooltip.vue.d.ts +5 -7
  71. package/dist/lib/js/composables/hover-state.d.ts +11 -0
  72. package/dist/lib/js/utils/device.d.ts +1 -0
  73. package/docs/.nojekyll +0 -0
  74. package/docs/assets/AccessStatus-CZ2wkKUN.js +1 -0
  75. package/docs/assets/{AccessStatus.stories-A4chErGN.js → AccessStatus.stories-DqLttI6G.js} +1 -1
  76. package/docs/assets/BadgeScore-Cb8Vr0p3.js +1 -0
  77. package/docs/assets/{BadgeScore.stories-BPXCKVhC.js → BadgeScore.stories-VUIYoC0K.js} +1 -1
  78. package/docs/assets/{Banner-pfk44IPM.js → Banner-C_-ztwHr.js} +1 -1
  79. package/docs/assets/{Banner.stories-c-gBrIO8.js → Banner.stories-DEpqpjNt.js} +2 -2
  80. package/docs/assets/{BasicRichListItem-AsTA4Bbi.js → BasicRichListItem-CL431QeF.js} +1 -1
  81. package/docs/assets/{BasicRichListItem.stories-Czwcv5qI.js → BasicRichListItem.stories-DJhpvSDZ.js} +2 -2
  82. package/docs/assets/BlockadeStatus-D0rB6KRL.js +1 -0
  83. package/docs/assets/{BlockedeStatus.stories-D1nV7jtn.js → BlockedeStatus.stories--W5rj6m4.js} +1 -1
  84. package/docs/assets/{Button-CsOCHUpA.js → Button-BfC5uvwA.js} +1 -1
  85. package/docs/assets/{Button.stories-DgRYxfVM.js → Button.stories-CI72rNoF.js} +1 -1
  86. package/docs/assets/{Card-0zLvVdOd.js → Card-BNrHU9qb.js} +1 -1
  87. package/docs/assets/{Card.stories-Cgb9afRr.js → Card.stories-Tu0NJeHc.js} +1 -1
  88. package/docs/assets/{CardExpandable-BcHS7iI4.js → CardExpandable-CyaYxO0k.js} +1 -1
  89. package/docs/assets/{CardExpandable.stories-ClQ_GXJM.js → CardExpandable.stories-BnMu24tF.js} +1 -1
  90. package/docs/assets/Checkbox-Bqk4dEqh.js +1 -0
  91. package/docs/assets/{Checkbox.stories-B5xH1dQS.js → Checkbox.stories-D8ttSHbp.js} +1 -1
  92. package/docs/assets/{Chip-DseOCaPi.js → Chip-DBH11WGD.js} +1 -1
  93. package/docs/assets/Chip.stories-Dd2KHKo0.js +43 -0
  94. package/docs/assets/{Color-ERTF36HU-CEwQ7ils.js → Color-ERTF36HU-Dpy8vc_W.js} +1 -1
  95. package/docs/assets/{Colors.stories--ryhtG1d.js → Colors.stories-V9xulpl8.js} +1 -1
  96. package/docs/assets/{ColorsThemes.stories-B2HLeH6E.js → ColorsThemes.stories-DULXUm6A.js} +1 -1
  97. package/docs/assets/{ColorsTokensLms.stories-PMBYT2Fm.js → ColorsTokensLms.stories-D7S65YJS.js} +1 -1
  98. package/docs/assets/{ColorsTokensPrimaryBodywork.stories-lUhDu8iE.js → ColorsTokensPrimaryBodywork.stories-D_vwh3Jq.js} +1 -1
  99. package/docs/assets/{ColorsTokensPrimaryWnl.stories-BOkFFvy-.js → ColorsTokensPrimaryWnl.stories-BXkcRNQy.js} +1 -1
  100. package/docs/assets/CounterToggle-RylBZadb.js +1 -0
  101. package/docs/assets/{CounterToggle.stories-D0X3HsZN.js → CounterToggle.stories-D_-AsS4y.js} +1 -1
  102. package/docs/assets/{DatePicker-DbSgTVrt.js → DatePicker-5MRZAjkX.js} +1 -1
  103. package/docs/assets/{DatePicker.stories-D8DNdcyv.js → DatePicker.stories-D7a156oj.js} +1 -1
  104. package/docs/assets/{Divider-DTjC3ra5.js → Divider-BPqXVinF.js} +1 -1
  105. package/docs/assets/{Divider.stories-BNCc0JbE.js → Divider.stories-D-I6wDB1.js} +1 -1
  106. package/docs/assets/{DocsRenderer-CFRXHY34-CNTnQBH9.js → DocsRenderer-CFRXHY34-C1Auldw2.js} +5 -5
  107. package/docs/assets/{Drawer-BYqj8cV4.js → Drawer-DbwdfqO9.js} +1 -1
  108. package/docs/assets/{Drawer.stories-BNJN0Caf.js → Drawer.stories-CA7ckJHC.js} +1 -1
  109. package/docs/assets/{DrawerContent-COb49qeQ.js → DrawerContent-BGc6gxGX.js} +1 -1
  110. package/docs/assets/{DrawerContent.stories-Gr488XWC.js → DrawerContent.stories-DQul9BkA.js} +1 -1
  111. package/docs/assets/{DrawerDivider-D9zRMkgT.js → DrawerDivider-CtJq0tq6.js} +1 -1
  112. package/docs/assets/{DrawerDivider.stories-DaQB6xx1.js → DrawerDivider.stories-DM3Aqadb.js} +1 -1
  113. package/docs/assets/DrawerHeader-B5vYU2PL.js +1 -0
  114. package/docs/assets/{DrawerHeader.stories-B-kfnc8L.js → DrawerHeader.stories-cpfS-wBt.js} +2 -2
  115. package/docs/assets/{DrawerListItem-BzhOaTw8.js → DrawerListItem-0fUrCEXt.js} +1 -1
  116. package/docs/assets/{DrawerListItem.stories-BR2imSXv.js → DrawerListItem.stories-CmJW1Uss.js} +1 -1
  117. package/docs/assets/{DrawerListItemGroup-BCNB2SNG.js → DrawerListItemGroup-CLrc_eJs.js} +1 -1
  118. package/docs/assets/{DrawerListItemGroup.stories-BfJA4Bq4.js → DrawerListItemGroup.stories-bG34xd5v.js} +1 -1
  119. package/docs/assets/{DrawerSection-Ch4ErDvj.js → DrawerSection-DFvcNR71.js} +1 -1
  120. package/docs/assets/{DrawerSection.stories-Ef8aAdAo.js → DrawerSection.stories-DVELqRM_.js} +3 -3
  121. package/docs/assets/{DrawerTile-CeAdewpT.js → DrawerTile-BJkMh2fU.js} +1 -1
  122. package/docs/assets/{DrawerTile.stories-uxygnddh.js → DrawerTile.stories-B8kWqDLf.js} +1 -1
  123. package/docs/assets/{Dropdown-DS0OpB3n.js → Dropdown-Dt2QFB2U.js} +1 -1
  124. package/docs/assets/{Dropdown.stories-936LE7zU.js → Dropdown.stories-CDrmWXHI.js} +1 -1
  125. package/docs/assets/{FeatureIcon-CxqWcu_D.js → FeatureIcon-B47w4DBU.js} +1 -1
  126. package/docs/assets/{FeatureIcon.stories-C6RgjKe5.js → FeatureIcon.stories-DfNuwkfR.js} +1 -1
  127. package/docs/assets/GroupRichListItem-DSTlJwlb.js +1 -0
  128. package/docs/assets/{GroupRichListItem.stories-Bvk4uehJ.js → GroupRichListItem.stories-C82L7KHk.js} +1 -1
  129. package/docs/assets/Icon-6eu_szpS.js +761 -0
  130. package/docs/assets/{Icon.stories-ClMbmaEN.js → Icon.stories-D0Y2RyrD.js} +1 -1
  131. package/docs/assets/IconButton-BO-CETCB.js +1 -0
  132. package/docs/assets/{IconButton.stories-BDjR2DI5.js → IconButton.stories-C6kjifNZ.js} +4 -4
  133. package/docs/assets/{IconText-BEY1NH1U.js → IconText-DF43QOY-.js} +1 -1
  134. package/docs/assets/{IconText.stories-o_hUTU4U.js → IconText.stories-B7IYW_LU.js} +1 -1
  135. package/docs/assets/Image-DjWPx_Cm.js +1 -0
  136. package/docs/assets/{Image.stories-Ca8vDRY9.js → Image.stories-Cs6xAQBK.js} +1 -1
  137. package/docs/assets/{ItemsList-DIgoGL1q.js → ItemsList-BRCXeyjX.js} +1 -1
  138. package/docs/assets/LoadingBar-COnzT5gw.js +1 -0
  139. package/docs/assets/{LoadingBar.stories-B_rq-VmX.js → LoadingBar.stories-Bc3-cddz.js} +1 -1
  140. package/docs/assets/{Modal-BE0wtlkL.js → Modal-Bw0n_JyW.js} +1 -1
  141. package/docs/assets/Modal.stories-Ba9D4xGC.js +53 -0
  142. package/docs/assets/{ModalDialog-BORyZP_f.js → ModalDialog-BXp9X1p5.js} +1 -1
  143. package/docs/assets/ModalDialog.stories-DfA5ze67.js +43 -0
  144. package/docs/assets/{NumberInCircle-BDH9jzjw.js → NumberInCircle-2qc4scqu.js} +1 -1
  145. package/docs/assets/{NumberInCircle.stories-BrAgc3AY.js → NumberInCircle.stories-DEPoFSIH.js} +1 -1
  146. package/docs/assets/{OutlineDivider-Dov4emm3.js → OutlineDivider-Bxh-mzNl.js} +1 -1
  147. package/docs/assets/{OutlineDivider.stories-CaUbTOLr.js → OutlineDivider.stories-QIoOaFJB.js} +1 -1
  148. package/docs/assets/{OutlineItem-CFzKBXAq.js → OutlineItem-BjXpo06D.js} +1 -1
  149. package/docs/assets/{OutlineItem.stories-CVKGFFnl.js → OutlineItem.stories-BUu6aPfL.js} +2 -2
  150. package/docs/assets/OutlineSectionHeader-hAHWOzLF.js +1 -0
  151. package/docs/assets/{OutlineSectionHeader.stories-DbVI05WC.js → OutlineSectionHeader.stories-GdEbBs1U.js} +1 -1
  152. package/docs/assets/OverlayHeader-BzKvZZD3.js +1 -0
  153. package/docs/assets/{OverlayHeader.stories-B3naHNtq.js → OverlayHeader.stories-DZaoIDUF.js} +2 -2
  154. package/docs/assets/{PageHeader-BIBHdf3F.js → PageHeader-XjqUaNsz.js} +1 -1
  155. package/docs/assets/{PageHeader.stories-5b6D1obn.js → PageHeader.stories-C8lNq9Gy.js} +1 -1
  156. package/docs/assets/{Pagination-D09pUv2L.js → Pagination-_AHUDwwL.js} +1 -1
  157. package/docs/assets/{Pagination.stories-CftgxsGG.js → Pagination.stories-CMUAHShC.js} +2 -2
  158. package/docs/assets/{PopOver-CehHpqnB.js → PopOver-NPXfFzGB.js} +1 -1
  159. package/docs/assets/{PopOver.stories-DUevH-58.js → PopOver.stories--WLP9ABS.js} +1 -1
  160. package/docs/assets/ProgressBar-BiigfDAt.js +1 -0
  161. package/docs/assets/{ProgressBar.stories-CHHw9vdm.js → ProgressBar.stories-CaTLfTca.js} +1 -1
  162. package/docs/assets/{ProgressDonutChart-DCH6A4IP.js → ProgressDonutChart-BmTVWpWh.js} +1 -1
  163. package/docs/assets/{ProgressDonutChart.stories-BBth7N7p.js → ProgressDonutChart.stories-D_34I_ER.js} +1 -1
  164. package/docs/assets/RadioButton-BqvATv1T.js +1 -0
  165. package/docs/assets/{RadioButton.stories-BolvVgGo.js → RadioButton.stories-BpbTcL59.js} +1 -1
  166. package/docs/assets/{RichListItem.stories-DYhLiKRC.js → RichListItem.stories-C1DOwiaj.js} +2 -2
  167. package/docs/assets/{SectionHeader-BXQYUMZJ.js → SectionHeader-BzbLJwTE.js} +1 -1
  168. package/docs/assets/SectionHeader.stories-C3Dk3EQq.js +24 -0
  169. package/docs/assets/{SectionTitle-D5xtuuuO.js → SectionTitle-BGj1y63i.js} +1 -1
  170. package/docs/assets/{SectionTitle.stories-CSejCgQ5.js → SectionTitle.stories-BdUNgJ8M.js} +1 -1
  171. package/docs/assets/SelectList-CdwgpCxZ.js +1 -0
  172. package/docs/assets/{SelectList.stories-CH2vWeZ4.js → SelectList.stories-CkENU7xp.js} +1 -1
  173. package/docs/assets/{SelectListItem-BKwWlXCo.js → SelectListItem-B6bDi3OI.js} +1 -1
  174. package/docs/assets/{SelectListItem.stories-DBfd5lux.js → SelectListItem.stories-QbUrayaQ.js} +1 -1
  175. package/docs/assets/SelectListItemDivider-BSD2eI6K.js +1 -0
  176. package/docs/assets/{SelectListItemDivider.stories-Ca-S4U9X.js → SelectListItemDivider.stories-IhgBxgAM.js} +1 -1
  177. package/docs/assets/{SelectListItemTile-BzyPjJ19.js → SelectListItemTile-C_oqRlGz.js} +1 -1
  178. package/docs/assets/{SelectListItemTile.stories-D6R95vJo.js → SelectListItemTile.stories-Dn8gM40T.js} +1 -1
  179. package/docs/assets/{SelectListItemToggle-DKDUJYdT.js → SelectListItemToggle-C2Nyl3Jx.js} +1 -1
  180. package/docs/assets/{SelectListItemToggle.stories-DkgRkLc4.js → SelectListItemToggle.stories-n17klXWd.js} +1 -1
  181. package/docs/assets/SelectListSectionTitle-ntTJtQK2.js +1 -0
  182. package/docs/assets/{SelectListSectionTitle.stories-CUJ-nWui.js → SelectListSectionTitle.stories-DTi_MtTn.js} +1 -1
  183. package/docs/assets/{SelectionControl-CBn6SHix.js → SelectionControl-aaEuqhMt.js} +1 -1
  184. package/docs/assets/{SelectionTile-ofCDS758.js → SelectionTile-Bl618mwa.js} +2 -2
  185. package/docs/assets/{SelectionTile.stories-B-6k9_3U.js → SelectionTile.stories-C2OiBoE6.js} +1 -1
  186. package/docs/assets/{Skeleton-BHkfJzj2.js → Skeleton-yR2iGt-A.js} +1 -1
  187. package/docs/assets/{Skeleton.stories-B6m8A2m7.js → Skeleton.stories-D8E42zl1.js} +1 -1
  188. package/docs/assets/SurveyQuestionOpenEnded-DyGKPMyP.js +1 -0
  189. package/docs/assets/SurveyQuestionOpenEnded.stories-8WgkwYaH.js +20 -0
  190. package/docs/assets/SurveyQuestionScale-Cx65nLcq.js +1 -0
  191. package/docs/assets/{SurveyQuestionScale.stories-D5IZlUh2.js → SurveyQuestionScale.stories-BWzL4fMZ.js} +2 -2
  192. package/docs/assets/{SurveyToggle-B26OsXaf.js → SurveyToggle-CISyD5gz.js} +1 -1
  193. package/docs/assets/{SurveyToggle.stories-DFFSA_hl.js → SurveyToggle.stories-TJijEheH.js} +1 -1
  194. package/docs/assets/{Switch-B3HGIUG9.js → Switch-DkIgraJz.js} +1 -1
  195. package/docs/assets/{Switch.stories-DkphThGX.js → Switch.stories-C8PyEPpm.js} +1 -1
  196. package/docs/assets/{TabItem-B46Oc9X7.js → TabItem-Cc0CSUyr.js} +1 -1
  197. package/docs/assets/{TabItem.stories-DaWTf1cD.js → TabItem.stories-Bh1XNs3q.js} +1 -1
  198. package/docs/assets/{TextGroup-BuH6WCA9.js → TextGroup-DrSbeVN2.js} +1 -1
  199. package/docs/assets/{TextGroup.stories-BIwyCEXe.js → TextGroup.stories-BnbOUO2B.js} +1 -1
  200. package/docs/assets/{ThreeColumnLayout-CcqHOKBU.js → ThreeColumnLayout-NhAT4cZY.js} +1 -1
  201. package/docs/assets/{ThreeColumnLayout.stories-AgLGFFul.js → ThreeColumnLayout.stories-EL55MOL9.js} +1 -1
  202. package/docs/assets/{Tile-DIUUFinY.js → Tile-DXVTBx8j.js} +1 -1
  203. package/docs/assets/{Tile.sb.shared-BYUHFvZE.js → Tile.sb.shared-DAh00AIu.js} +1 -1
  204. package/docs/assets/{Tile.stories-DBSFQRYs.js → Tile.stories-xIzW0_NG.js} +1 -1
  205. package/docs/assets/{Toast.stories-B32fN79y.js → Toast.stories-COXItFcC.js} +1 -1
  206. package/docs/assets/{ToggleButton-D1caIRKN.js → ToggleButton-BCtYIja9.js} +1 -1
  207. package/docs/assets/{ToggleButton.stories-Ox_okeJj.js → ToggleButton.stories-CT0hACpK.js} +1 -1
  208. package/docs/assets/Tooltip-DrwiSTCm.js +1 -0
  209. package/docs/assets/{Tooltip.stories-Ew4UB8RG.js → Tooltip.stories-CEXpck3_.js} +6 -6
  210. package/docs/assets/{TypographyTokensLms.stories-BVVxQejO.js → TypographyTokensLms.stories-fssptMKG.js} +1 -1
  211. package/docs/assets/{TypographyVariables.stories--nfITZgH.js → TypographyVariables.stories-BhXf4d0y.js} +1 -1
  212. package/docs/assets/{Well-D6PXj9KY.js → Well--SGDk2ZR.js} +1 -1
  213. package/docs/assets/{Well.stories-Bs38rPx-.js → Well.stories-CASSIsWd.js} +1 -1
  214. package/docs/assets/device-9fgosCm4.js +1 -0
  215. package/docs/assets/entry-preview-DMbhNDVP.js +1 -0
  216. package/docs/assets/{entry-preview-docs-C4PrsFMa.js → entry-preview-docs-DJ-4bqb-.js} +1 -1
  217. package/docs/assets/{iframe-Bne3a0Lw.js → iframe-D34akK7Z.js} +7 -7
  218. package/docs/assets/{index-DufQPmIh.js → index-DZvDKoWL.js} +1 -1
  219. package/docs/assets/{index-DzskhL4A.js → index-DyXJjdHU.js} +1 -1
  220. package/docs/assets/preview-DYKWAT5n.js +64 -0
  221. package/docs/assets/{preview-Be9dTmNK.js → preview-MRHqGPUO.js} +2 -2
  222. package/docs/assets/string-CJTX2pVG.js +1 -0
  223. package/docs/assets/{vue-popper-Bw2qoyOw.js → vue-popper-BXSsmyj7.js} +1 -1
  224. package/docs/assets/vue.esm-bundler-DiF7B9b7.js +36 -0
  225. package/docs/iframe.html +1 -1
  226. package/docs/project.json +1 -1
  227. package/lib/js/components/Buttons/IconButton/IconButton.vue +11 -4
  228. package/lib/js/components/Image/Image.vue +0 -11
  229. package/lib/js/components/Outline/OutlineItem/OutlineItem.vue +1 -1
  230. package/lib/js/components/RichList/RichListItem/RichListItem.consts.ts +5 -7
  231. package/lib/js/components/RichList/RichListItem/RichListItem.vue +6 -2
  232. package/lib/js/components/Tooltip/Tooltip.vue +2 -10
  233. package/lib/js/composables/hover-state.ts +39 -0
  234. package/lib/js/utils/device.ts +7 -0
  235. package/package.json +3 -3
  236. package/docs/assets/AccessStatus-DmbUcfnj.js +0 -1
  237. package/docs/assets/BadgeScore-BemJYqyj.js +0 -1
  238. package/docs/assets/BlockadeStatus-BP14rd2v.js +0 -1
  239. package/docs/assets/Checkbox-iiCRqb9X.js +0 -1
  240. package/docs/assets/Chip.stories-EQIOA9T4.js +0 -43
  241. package/docs/assets/CounterToggle-D57390Gy.js +0 -1
  242. package/docs/assets/DrawerHeader-B6p3qZIF.js +0 -1
  243. package/docs/assets/GroupRichListItem-Cx3ap5HX.js +0 -1
  244. package/docs/assets/Icon-Dg-H1Zak.js +0 -762
  245. package/docs/assets/IconButton-tAYYPmG6.js +0 -1
  246. package/docs/assets/Image-CCtfgp-1.js +0 -1
  247. package/docs/assets/LoadingBar-pXWDoaGl.js +0 -1
  248. package/docs/assets/Modal.stories-DIdh26ZS.js +0 -53
  249. package/docs/assets/ModalDialog.stories-McGTQ_On.js +0 -43
  250. package/docs/assets/OutlineSectionHeader-D6c_-tKp.js +0 -1
  251. package/docs/assets/OverlayHeader-ChMYciZw.js +0 -1
  252. package/docs/assets/ProgressBar-BqJKO0Rg.js +0 -1
  253. package/docs/assets/RadioButton-D1hHJ5gw.js +0 -1
  254. package/docs/assets/SectionHeader.stories-Bk7_88fl.js +0 -24
  255. package/docs/assets/SelectList-CQ9CvqLg.js +0 -1
  256. package/docs/assets/SelectListItemDivider-CbO60ig_.js +0 -1
  257. package/docs/assets/SelectListSectionTitle-CF7GIQ3x.js +0 -1
  258. package/docs/assets/SurveyQuestionOpenEnded-CK5BMbQr.js +0 -1
  259. package/docs/assets/SurveyQuestionOpenEnded.stories-JDaZMHWo.js +0 -20
  260. package/docs/assets/SurveyQuestionScale-CqyqGA5t.js +0 -1
  261. package/docs/assets/Tooltip-448jplYO.js +0 -1
  262. package/docs/assets/entry-preview-BlDOKpbv.js +0 -1
  263. package/docs/assets/preview-CwXKFurl.js +0 -64
  264. package/docs/assets/string-CELe3esY.js +0 -1
  265. package/docs/assets/vue.esm-bundler-Dgz4BqwH.js +0 -7
@@ -1,2 +1,113 @@
1
- declare const _default: import('vue').DefineComponent<unknown, object, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<unknown>, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {
2
+ ICON_SIZES: Readonly<{
3
+ XXX_SMALL: string;
4
+ XX_SMALL: string;
5
+ X_SMALL: string;
6
+ SMALL: string;
7
+ MEDIUM: string;
8
+ LARGE: string;
9
+ X_LARGE: string;
10
+ XX_LARGE: string;
11
+ }>;
12
+ ICON_TEXT_COLORS: Readonly<{
13
+ NEUTRAL_WEAK: string;
14
+ NEUTRAL: string;
15
+ }>;
16
+ ICON_TEXT_SIZES: Readonly<{
17
+ X_SMALL: string;
18
+ SMALL: string;
19
+ MEDIUM: string;
20
+ }>;
21
+ ICON_TEXT_STATES: Readonly<{
22
+ DEFAULT: string;
23
+ DISABLED: string;
24
+ }>;
25
+ }, {
26
+ iconSize(): string;
27
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {
28
+ size: string;
29
+ color: string;
30
+ state: string;
31
+ isInteractive: boolean;
32
+ isLabelBold: boolean;
33
+ }, {}, {
34
+ Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
35
+ icon: {
36
+ type: ObjectConstructor;
37
+ required: true;
38
+ validator(icon: unknown): boolean;
39
+ };
40
+ size: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ validator: (value: string) => boolean;
44
+ };
45
+ rotation: {
46
+ type: NumberConstructor;
47
+ default: null;
48
+ validator(value: number): boolean;
49
+ };
50
+ flippedVertical: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ flippedHorizontal: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ touchable: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ spinning: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ }>, {}, {}, {
67
+ sizeClassName(): string;
68
+ isFontawesomeIcon(): boolean;
69
+ rotationClass(): string | null;
70
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
71
+ icon: {
72
+ type: ObjectConstructor;
73
+ required: true;
74
+ validator(icon: unknown): boolean;
75
+ };
76
+ size: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ validator: (value: string) => boolean;
80
+ };
81
+ rotation: {
82
+ type: NumberConstructor;
83
+ default: null;
84
+ validator(value: number): boolean;
85
+ };
86
+ flippedVertical: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ };
90
+ flippedHorizontal: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
94
+ touchable: {
95
+ type: BooleanConstructor;
96
+ default: boolean;
97
+ };
98
+ spinning: {
99
+ type: BooleanConstructor;
100
+ default: boolean;
101
+ };
102
+ }>> & Readonly<{}>, {
103
+ rotation: number;
104
+ size: string;
105
+ flippedVertical: boolean;
106
+ flippedHorizontal: boolean;
107
+ touchable: boolean;
108
+ spinning: boolean;
109
+ }, {}, {
110
+ FontAwesomeIcon: import('vue').DefineComponent<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
111
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
112
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
113
  export default _default;
@@ -1,6 +1,4 @@
1
- declare const _default: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
2
- [x: string]: unknown;
3
- }>>, unknown, {
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {
4
2
  FEATURE_ICON_COLOR: Readonly<{
5
3
  DANGER: string;
6
4
  INFO: string;
@@ -18,9 +16,88 @@ declare const _default: import('vue').DefineComponent<Readonly<import('vue').Com
18
16
  }>;
19
17
  }, {
20
18
  iconSize(): string;
21
- }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, readonly string[] | Readonly<import('vue').ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
22
- [x: string]: unknown;
23
- }>>>>, {
24
- [x: number]: string;
25
- } | {}>;
19
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {
20
+ icon: Record<string, any>;
21
+ size: string;
22
+ doubleBackground: boolean;
23
+ }, {}, {
24
+ WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
25
+ icon: {
26
+ type: ObjectConstructor;
27
+ required: true;
28
+ validator(icon: unknown): boolean;
29
+ };
30
+ size: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ validator: (value: string) => boolean;
34
+ };
35
+ rotation: {
36
+ type: NumberConstructor;
37
+ default: null;
38
+ validator(value: number): boolean;
39
+ };
40
+ flippedVertical: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ flippedHorizontal: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ touchable: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ spinning: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
56
+ }>, {}, {}, {
57
+ sizeClassName(): string;
58
+ isFontawesomeIcon(): boolean;
59
+ rotationClass(): string | null;
60
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
61
+ icon: {
62
+ type: ObjectConstructor;
63
+ required: true;
64
+ validator(icon: unknown): boolean;
65
+ };
66
+ size: {
67
+ type: StringConstructor;
68
+ default: string;
69
+ validator: (value: string) => boolean;
70
+ };
71
+ rotation: {
72
+ type: NumberConstructor;
73
+ default: null;
74
+ validator(value: number): boolean;
75
+ };
76
+ flippedVertical: {
77
+ type: BooleanConstructor;
78
+ default: boolean;
79
+ };
80
+ flippedHorizontal: {
81
+ type: BooleanConstructor;
82
+ default: boolean;
83
+ };
84
+ touchable: {
85
+ type: BooleanConstructor;
86
+ default: boolean;
87
+ };
88
+ spinning: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
92
+ }>> & Readonly<{}>, {
93
+ rotation: number;
94
+ size: string;
95
+ flippedVertical: boolean;
96
+ flippedHorizontal: boolean;
97
+ touchable: boolean;
98
+ spinning: boolean;
99
+ }, {}, {
100
+ FontAwesomeIcon: import('vue').DefineComponent<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
101
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
102
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
103
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import('vue').DefineComponent<{
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
2
  icon: {
3
3
  type: ObjectConstructor;
4
4
  required: true;
@@ -30,11 +30,11 @@ declare const _default: import('vue').DefineComponent<{
30
30
  type: BooleanConstructor;
31
31
  default: boolean;
32
32
  };
33
- }, unknown, unknown, {
33
+ }>, {}, {}, {
34
34
  sizeClassName(): string;
35
35
  isFontawesomeIcon(): boolean;
36
36
  rotationClass(): string | null;
37
- }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
37
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
38
  icon: {
39
39
  type: ObjectConstructor;
40
40
  required: true;
@@ -66,12 +66,14 @@ declare const _default: import('vue').DefineComponent<{
66
66
  type: BooleanConstructor;
67
67
  default: boolean;
68
68
  };
69
- }>>, {
69
+ }>> & Readonly<{}>, {
70
70
  rotation: number;
71
71
  size: string;
72
72
  flippedVertical: boolean;
73
73
  flippedHorizontal: boolean;
74
74
  touchable: boolean;
75
75
  spinning: boolean;
76
- }>;
76
+ }, {}, {
77
+ FontAwesomeIcon: import('vue').DefineComponent<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
78
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
77
79
  export default _default;
@@ -1,10 +1,6 @@
1
1
  import { PropType } from 'vue';
2
2
 
3
- declare const _default: import('vue').DefineComponent<{
4
- accelerate: {
5
- type: BooleanConstructor;
6
- default: boolean;
7
- };
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
8
4
  fit: {
9
5
  type: PropType<string>;
10
6
  default: string;
@@ -13,7 +9,7 @@ declare const _default: import('vue').DefineComponent<{
13
9
  type: StringConstructor;
14
10
  required: true;
15
11
  };
16
- }, unknown, {
12
+ }>, {}, {
17
13
  isLoading: boolean;
18
14
  IMAGE_FITS: Readonly<{
19
15
  CONTAIN: string;
@@ -24,11 +20,7 @@ declare const _default: import('vue').DefineComponent<{
24
20
  MEDIUM: string;
25
21
  LARGE: string;
26
22
  }>;
27
- }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
28
- accelerate: {
29
- type: BooleanConstructor;
30
- default: boolean;
31
- };
23
+ }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
32
24
  fit: {
33
25
  type: PropType<string>;
34
26
  default: string;
@@ -37,8 +29,50 @@ declare const _default: import('vue').DefineComponent<{
37
29
  type: StringConstructor;
38
30
  required: true;
39
31
  };
40
- }>>, {
41
- accelerate: boolean;
32
+ }>> & Readonly<{}>, {
42
33
  fit: string;
43
- }>;
34
+ }, {}, {
35
+ DsSkeleton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
36
+ height: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ radius: {
41
+ type: PropType<string>;
42
+ default: string;
43
+ };
44
+ width: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ }>, {}, {
49
+ designTokens: {
50
+ animation: {
51
+ background: string;
52
+ };
53
+ background: string;
54
+ };
55
+ }, {
56
+ radiusTranslated(): string;
57
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
58
+ height: {
59
+ type: StringConstructor;
60
+ default: string;
61
+ };
62
+ radius: {
63
+ type: PropType<string>;
64
+ default: string;
65
+ };
66
+ width: {
67
+ type: StringConstructor;
68
+ default: string;
69
+ };
70
+ }>> & Readonly<{}>, {
71
+ radius: string;
72
+ width: string;
73
+ height: string;
74
+ }, {}, {
75
+ PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void, {}>;
76
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
77
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
44
78
  export default _default;
@@ -1,17 +1,20 @@
1
- declare const _default: import('vue').DefineComponent<Readonly<import('vue').ComponentPropsOptions<{
2
- [x: string]: unknown;
3
- }>>, unknown, {
1
+ import { ThreeColumnLayoutRightColumnSize } from './ThreeColumnLayout.consts';
2
+
3
+ declare const _default: import('vue').DefineComponent<{}, {}, {
4
4
  THREE_COLUMN_LAYOUT_RIGHT_COLUMN_SIZE: Readonly<{
5
5
  readonly MEDIUM: "medium";
6
6
  readonly LARGE: "large";
7
7
  }>;
8
8
  leftColumnVisibleMobile: boolean;
9
9
  rightColumnVisibleMobile: boolean;
10
- }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "overlay-clicked"[], "overlay-clicked", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<readonly string[] | import('vue').ExtractPropTypes<Readonly<import('vue').ComponentObjectPropsOptions<{
11
- [x: string]: unknown;
12
- }>>>> & {
10
+ }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "overlay-clicked"[], "overlay-clicked", import('vue').PublicProps, Readonly<{}> & Readonly<{
13
11
  "onOverlay-clicked"?: ((...args: any[]) => any) | undefined;
14
- }, {
15
- [x: number]: string;
16
- } | {}>;
12
+ }>, {
13
+ rightColumnSize: ThreeColumnLayoutRightColumnSize;
14
+ rightColumnVisible: boolean;
15
+ leftColumnVisible: boolean;
16
+ initialMobileRightColumnVisibleState: boolean;
17
+ initialMobileLeftColumnVisibleState: boolean;
18
+ contentWithoutPadding: boolean;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
20
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { PropType } from 'vue';
2
2
 
3
- declare const _default: import('vue').DefineComponent<{
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  color: {
5
5
  type: PropType<string>;
6
6
  default: string;
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<{
13
13
  type: StringConstructor;
14
14
  required: true;
15
15
  };
16
- }, unknown, {
16
+ }>, {}, {
17
17
  intervalId: number;
18
18
  width: number;
19
19
  }, {
@@ -22,7 +22,7 @@ declare const _default: import('vue').DefineComponent<{
22
22
  width: string;
23
23
  transition: string;
24
24
  };
25
- }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
25
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
26
26
  color: {
27
27
  type: PropType<string>;
28
28
  default: string;
@@ -35,8 +35,8 @@ declare const _default: import('vue').DefineComponent<{
35
35
  type: StringConstructor;
36
36
  required: true;
37
37
  };
38
- }>>, {
38
+ }>> & Readonly<{}>, {
39
39
  size: string;
40
40
  color: string;
41
- }>;
41
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
42
42
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import('vue').DefineComponent<{
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
2
  showHeader: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<{
7
7
  type: BooleanConstructor;
8
8
  default: boolean;
9
9
  };
10
- }, unknown, {
10
+ }>, {}, {
11
11
  ICONS: Readonly<{
12
12
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
13
13
  readonly RIBBON: VueConstructor<Vue>;
@@ -221,7 +221,7 @@ declare const _default: import('vue').DefineComponent<{
221
221
  X_LARGE: string;
222
222
  XX_LARGE: string;
223
223
  }>;
224
- }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "close-modal"[], "close-modal", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
224
+ }, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "close-modal"[], "close-modal", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
225
225
  showHeader: {
226
226
  type: BooleanConstructor;
227
227
  default: boolean;
@@ -230,10 +230,89 @@ declare const _default: import('vue').DefineComponent<{
230
230
  type: BooleanConstructor;
231
231
  default: boolean;
232
232
  };
233
- }>> & {
233
+ }>> & Readonly<{
234
234
  "onClose-modal"?: ((...args: any[]) => any) | undefined;
235
- }, {
235
+ }>, {
236
236
  showHeader: boolean;
237
237
  animateScrollingContent: boolean;
238
- }>;
238
+ }, {}, {
239
+ WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
240
+ icon: {
241
+ type: ObjectConstructor;
242
+ required: true;
243
+ validator(icon: unknown): boolean;
244
+ };
245
+ size: {
246
+ type: StringConstructor;
247
+ default: string;
248
+ validator: (value: string) => boolean;
249
+ };
250
+ rotation: {
251
+ type: NumberConstructor;
252
+ default: null;
253
+ validator(value: number): boolean;
254
+ };
255
+ flippedVertical: {
256
+ type: BooleanConstructor;
257
+ default: boolean;
258
+ };
259
+ flippedHorizontal: {
260
+ type: BooleanConstructor;
261
+ default: boolean;
262
+ };
263
+ touchable: {
264
+ type: BooleanConstructor;
265
+ default: boolean;
266
+ };
267
+ spinning: {
268
+ type: BooleanConstructor;
269
+ default: boolean;
270
+ };
271
+ }>, {}, {}, {
272
+ sizeClassName(): string;
273
+ isFontawesomeIcon(): boolean;
274
+ rotationClass(): string | null;
275
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
276
+ icon: {
277
+ type: ObjectConstructor;
278
+ required: true;
279
+ validator(icon: unknown): boolean;
280
+ };
281
+ size: {
282
+ type: StringConstructor;
283
+ default: string;
284
+ validator: (value: string) => boolean;
285
+ };
286
+ rotation: {
287
+ type: NumberConstructor;
288
+ default: null;
289
+ validator(value: number): boolean;
290
+ };
291
+ flippedVertical: {
292
+ type: BooleanConstructor;
293
+ default: boolean;
294
+ };
295
+ flippedHorizontal: {
296
+ type: BooleanConstructor;
297
+ default: boolean;
298
+ };
299
+ touchable: {
300
+ type: BooleanConstructor;
301
+ default: boolean;
302
+ };
303
+ spinning: {
304
+ type: BooleanConstructor;
305
+ default: boolean;
306
+ };
307
+ }>> & Readonly<{}>, {
308
+ rotation: number;
309
+ size: string;
310
+ flippedVertical: boolean;
311
+ flippedHorizontal: boolean;
312
+ touchable: boolean;
313
+ spinning: boolean;
314
+ }, {}, {
315
+ FontAwesomeIcon: import('vue').DefineComponent<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('@fortawesome/vue-fontawesome').FontAwesomeIconProps>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
316
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
317
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
239
318
  export default _default;