@ulu/frontend-vue 0.1.0-beta.9 → 0.1.1-beta.10

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 (285) hide show
  1. package/dist/{breakpoints-BbkGNxxt.js → breakpoints-BYSYcx8V.js} +1 -1
  2. package/dist/frontend-vue.css +1 -1
  3. package/dist/frontend-vue.js +82 -70
  4. package/dist/index-A7weElM_.js +7766 -0
  5. package/lib/components/collapsible/UluAccordion.vue +71 -53
  6. package/lib/components/collapsible/UluAccordionGroup.vue +54 -0
  7. package/lib/components/collapsible/UluCollapsible.vue +144 -0
  8. package/lib/components/collapsible/UluDropdown.vue +29 -29
  9. package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
  10. package/lib/components/elements/UluBadge.vue +51 -28
  11. package/lib/components/elements/UluBadgeStack.vue +8 -13
  12. package/lib/components/elements/UluButtonVerbose.vue +119 -0
  13. package/lib/components/elements/UluCard.vue +1 -1
  14. package/lib/components/elements/UluDefinitionList.vue +14 -17
  15. package/lib/components/elements/UluExternalLink.vue +21 -27
  16. package/lib/components/elements/UluIcon.vue +11 -1
  17. package/lib/components/elements/UluList.vue +53 -55
  18. package/lib/components/elements/UluSpokeSpinner.vue +12 -18
  19. package/lib/components/elements/UluTag.vue +35 -35
  20. package/lib/components/forms/UluFileDisplay.vue +49 -31
  21. package/lib/components/forms/UluFormFile.vue +37 -24
  22. package/lib/components/forms/UluFormMessage.vue +13 -10
  23. package/lib/components/forms/UluFormSelect.vue +28 -16
  24. package/lib/components/forms/UluFormText.vue +24 -15
  25. package/lib/components/forms/UluSearchForm.vue +11 -10
  26. package/lib/components/forms/UluSelectableMenu.vue +106 -0
  27. package/lib/components/index.js +4 -3
  28. package/lib/components/layout/UluTitleRail.vue +18 -0
  29. package/lib/components/layout/UluWhenBreakpoint.vue +9 -0
  30. package/lib/components/navigation/UluBreadcrumb.vue +9 -2
  31. package/lib/components/navigation/UluMenu.vue +13 -6
  32. package/lib/components/navigation/UluMenuStack.vue +50 -31
  33. package/lib/components/navigation/UluPager.vue +102 -0
  34. package/lib/components/systems/facets/ExampleFacetsWithPagination.vue +119 -0
  35. package/lib/components/systems/facets/UluFacetsActiveFilters.vue +84 -0
  36. package/lib/components/systems/facets/UluFacetsFilterLists.vue +97 -0
  37. package/lib/components/systems/facets/UluFacetsFilterPopovers.vue +125 -0
  38. package/lib/components/systems/facets/UluFacetsFilterSelects.vue +71 -0
  39. package/lib/components/systems/facets/UluFacetsHeaderLayout.vue +24 -0
  40. package/lib/components/systems/facets/UluFacetsList.vue +64 -34
  41. package/lib/components/systems/facets/UluFacetsResults.vue +63 -0
  42. package/lib/components/systems/facets/UluFacetsSearch.vue +27 -50
  43. package/lib/components/systems/facets/UluFacetsSidebarLayout.vue +90 -0
  44. package/lib/components/systems/facets/UluFacetsSort.vue +45 -0
  45. package/lib/components/systems/facets/_facets.scss +2 -3
  46. package/lib/components/systems/facets/_mock-data.js +40 -0
  47. package/lib/components/systems/facets/useFacets.js +394 -0
  48. package/lib/components/systems/index.js +14 -2
  49. package/lib/components/systems/scroll-anchors/UluScrollAnchors.vue +2 -1
  50. package/lib/components/systems/skeleton/UluShowSkeleton.vue +9 -8
  51. package/lib/components/systems/skeleton/UluSkeletonContent.vue +39 -43
  52. package/lib/components/systems/skeleton/UluSkeletonMedia.vue +4 -6
  53. package/lib/components/systems/skeleton/UluSkeletonText.vue +27 -0
  54. package/lib/components/systems/slider/UluImageSlideShow.vue +1 -1
  55. package/lib/components/systems/slider/UluSlideShow.vue +8 -3
  56. package/lib/components/systems/table-sticky/UluTableSticky.vue +7 -7
  57. package/lib/components/systems/table-sticky/UluTableStickyTable.vue +3 -3
  58. package/lib/components/visualizations/UluAnimateNumber.vue +7 -1
  59. package/lib/components/visualizations/UluProgressBar.vue +148 -74
  60. package/lib/components/visualizations/UluProgressCircle.vue +159 -0
  61. package/lib/composables/index.js +3 -1
  62. package/lib/composables/useDocumentTitle.js +61 -0
  63. package/lib/composables/usePagination.js +122 -0
  64. package/lib/index.js +1 -0
  65. package/lib/plugins/core/index.js +6 -1
  66. package/lib/plugins/popovers/UluPopover.vue +8 -3
  67. package/lib/plugins/toast/UluToast.vue +1 -1
  68. package/lib/plugins/toast/UluToastDisplay.vue +19 -2
  69. package/lib/utils/dom.js +12 -0
  70. package/lib/utils/index.js +2 -0
  71. package/lib/utils/{vue-router.js → router.js} +114 -30
  72. package/package.json +22 -12
  73. package/types/components/collapsible/UluAccordion.vue.d.ts +42 -0
  74. package/types/components/collapsible/UluAccordion.vue.d.ts.map +1 -0
  75. package/types/components/collapsible/UluAccordionGroup.vue.d.ts +19 -0
  76. package/types/components/collapsible/UluAccordionGroup.vue.d.ts.map +1 -0
  77. package/types/components/collapsible/UluCollapsible.vue.d.ts +40 -0
  78. package/types/components/collapsible/UluCollapsible.vue.d.ts.map +1 -0
  79. package/types/components/collapsible/UluDropdown.vue.d.ts +22 -0
  80. package/types/components/collapsible/UluDropdown.vue.d.ts.map +1 -0
  81. package/types/components/collapsible/UluModal.vue.d.ts +253 -0
  82. package/types/components/collapsible/UluModal.vue.d.ts.map +1 -0
  83. package/types/components/collapsible/UluOverflowPopover.vue.d.ts +18 -0
  84. package/types/components/collapsible/UluOverflowPopover.vue.d.ts.map +1 -0
  85. package/types/components/collapsible/UluTab.vue.d.ts +10 -0
  86. package/types/components/collapsible/UluTab.vue.d.ts.map +1 -0
  87. package/types/components/collapsible/UluTabGroup.vue.d.ts +18 -0
  88. package/types/components/collapsible/UluTabGroup.vue.d.ts.map +1 -0
  89. package/types/components/collapsible/UluTabList.vue.d.ts +10 -0
  90. package/types/components/collapsible/UluTabList.vue.d.ts.map +1 -0
  91. package/types/components/collapsible/UluTabPanel.vue.d.ts +10 -0
  92. package/types/components/collapsible/UluTabPanel.vue.d.ts.map +1 -0
  93. package/types/components/collapsible/UluTabPanels.vue.d.ts +10 -0
  94. package/types/components/collapsible/UluTabPanels.vue.d.ts.map +1 -0
  95. package/types/components/elements/UluAlert.vue.d.ts +147 -0
  96. package/types/components/elements/UluAlert.vue.d.ts.map +1 -0
  97. package/types/components/elements/UluBadge.vue.d.ts +30 -0
  98. package/types/components/elements/UluBadge.vue.d.ts.map +1 -0
  99. package/types/components/elements/UluBadgeStack.vue.d.ts +9 -0
  100. package/types/components/elements/UluBadgeStack.vue.d.ts.map +1 -0
  101. package/types/components/elements/UluButton.vue.d.ts +186 -0
  102. package/types/components/elements/UluButton.vue.d.ts.map +1 -0
  103. package/types/components/elements/UluButtonVerbose.vue.d.ts +126 -0
  104. package/types/components/elements/UluButtonVerbose.vue.d.ts.map +1 -0
  105. package/types/components/elements/UluCallout.vue.d.ts +27 -0
  106. package/types/components/elements/UluCallout.vue.d.ts.map +1 -0
  107. package/types/components/elements/UluCard.vue.d.ts +238 -0
  108. package/types/components/elements/UluCard.vue.d.ts.map +1 -0
  109. package/types/components/elements/UluDefinitionList.vue.d.ts +26 -0
  110. package/types/components/elements/UluDefinitionList.vue.d.ts.map +1 -0
  111. package/types/components/elements/UluExternalLink.vue.d.ts +25 -0
  112. package/types/components/elements/UluExternalLink.vue.d.ts.map +1 -0
  113. package/types/components/elements/UluIcon.vue.d.ts +11 -0
  114. package/types/components/elements/UluIcon.vue.d.ts.map +1 -0
  115. package/types/components/elements/UluList.vue.d.ts +37 -0
  116. package/types/components/elements/UluList.vue.d.ts.map +1 -0
  117. package/types/components/elements/UluMain.vue.d.ts +13 -0
  118. package/types/components/elements/UluMain.vue.d.ts.map +1 -0
  119. package/types/components/elements/UluSpokeSpinner.vue.d.ts +9 -0
  120. package/types/components/elements/UluSpokeSpinner.vue.d.ts.map +1 -0
  121. package/types/components/elements/UluTag.vue.d.ts +26 -0
  122. package/types/components/elements/UluTag.vue.d.ts.map +1 -0
  123. package/types/components/forms/UluFileDisplay.vue.d.ts +23 -0
  124. package/types/components/forms/UluFileDisplay.vue.d.ts.map +1 -0
  125. package/types/components/forms/UluFormFile.vue.d.ts +26 -0
  126. package/types/components/forms/UluFormFile.vue.d.ts.map +1 -0
  127. package/types/components/forms/UluFormMessage.vue.d.ts +18 -0
  128. package/types/components/forms/UluFormMessage.vue.d.ts.map +1 -0
  129. package/types/components/forms/UluFormSelect.vue.d.ts +24 -0
  130. package/types/components/forms/UluFormSelect.vue.d.ts.map +1 -0
  131. package/types/components/forms/UluFormText.vue.d.ts +22 -0
  132. package/types/components/forms/UluFormText.vue.d.ts.map +1 -0
  133. package/types/components/forms/UluSearchForm.vue.d.ts +9 -0
  134. package/types/components/forms/UluSearchForm.vue.d.ts.map +1 -0
  135. package/types/components/forms/UluSelectableMenu.vue.d.ts +30 -0
  136. package/types/components/forms/UluSelectableMenu.vue.d.ts.map +1 -0
  137. package/types/components/index.d.ts +48 -0
  138. package/types/components/layout/UluAdaptiveLayout.vue.d.ts +12 -0
  139. package/types/components/layout/UluAdaptiveLayout.vue.d.ts.map +1 -0
  140. package/types/components/layout/UluDataGrid.vue.d.ts +3 -0
  141. package/types/components/layout/UluDataGrid.vue.d.ts.map +1 -0
  142. package/types/components/layout/UluTitleRail.vue.d.ts +91 -0
  143. package/types/components/layout/UluTitleRail.vue.d.ts.map +1 -0
  144. package/types/components/layout/UluWhenBreakpoint.vue.d.ts +20 -0
  145. package/types/components/layout/UluWhenBreakpoint.vue.d.ts.map +1 -0
  146. package/types/components/navigation/UluBreadcrumb.vue.d.ts +71 -0
  147. package/types/components/navigation/UluBreadcrumb.vue.d.ts.map +1 -0
  148. package/types/components/navigation/UluMenu.vue.d.ts +142 -0
  149. package/types/components/navigation/UluMenu.vue.d.ts.map +1 -0
  150. package/types/components/navigation/UluMenuStack.vue.d.ts +19 -0
  151. package/types/components/navigation/UluMenuStack.vue.d.ts.map +1 -0
  152. package/types/components/navigation/UluNavStrip.vue.d.ts +138 -0
  153. package/types/components/navigation/UluNavStrip.vue.d.ts.map +1 -0
  154. package/types/components/navigation/UluPager.vue.d.ts +15 -0
  155. package/types/components/navigation/UluPager.vue.d.ts.map +1 -0
  156. package/types/components/navigation/UluSkipLink.vue.d.ts +3 -0
  157. package/types/components/navigation/UluSkipLink.vue.d.ts.map +1 -0
  158. package/types/components/systems/facets/ExampleFacetsWithPagination.vue.d.ts +3 -0
  159. package/types/components/systems/facets/ExampleFacetsWithPagination.vue.d.ts.map +1 -0
  160. package/types/components/systems/facets/UluFacetsActiveFilters.vue.d.ts +18 -0
  161. package/types/components/systems/facets/UluFacetsActiveFilters.vue.d.ts.map +1 -0
  162. package/types/components/systems/facets/UluFacetsFilterLists.vue.d.ts +27 -0
  163. package/types/components/systems/facets/UluFacetsFilterLists.vue.d.ts.map +1 -0
  164. package/types/components/systems/facets/UluFacetsFilterPopovers.vue.d.ts +25 -0
  165. package/types/components/systems/facets/UluFacetsFilterPopovers.vue.d.ts.map +1 -0
  166. package/types/components/systems/facets/UluFacetsFilterSelects.vue.d.ts +11 -0
  167. package/types/components/systems/facets/UluFacetsFilterSelects.vue.d.ts.map +1 -0
  168. package/types/components/systems/facets/UluFacetsHeaderLayout.vue.d.ts +12 -0
  169. package/types/components/systems/facets/UluFacetsHeaderLayout.vue.d.ts.map +1 -0
  170. package/types/components/systems/facets/UluFacetsList.vue.d.ts +21 -0
  171. package/types/components/systems/facets/UluFacetsList.vue.d.ts.map +1 -0
  172. package/types/components/systems/facets/UluFacetsResults.vue.d.ts +27 -0
  173. package/types/components/systems/facets/UluFacetsResults.vue.d.ts.map +1 -0
  174. package/types/components/systems/facets/UluFacetsSearch.vue.d.ts +15 -0
  175. package/types/components/systems/facets/UluFacetsSearch.vue.d.ts.map +1 -0
  176. package/types/components/systems/facets/UluFacetsSidebarLayout.vue.d.ts +22 -0
  177. package/types/components/systems/facets/UluFacetsSidebarLayout.vue.d.ts.map +1 -0
  178. package/types/components/systems/facets/UluFacetsSort.vue.d.ts +22 -0
  179. package/types/components/systems/facets/UluFacetsSort.vue.d.ts.map +1 -0
  180. package/types/components/systems/facets/_mock-data.d.ts +18 -0
  181. package/types/components/systems/facets/_mock-data.d.ts.map +1 -0
  182. package/types/components/systems/facets/useFacets.d.ts +57 -0
  183. package/types/components/systems/facets/useFacets.d.ts.map +1 -0
  184. package/types/components/systems/index.d.ts +25 -1
  185. package/types/components/systems/scroll-anchors/UluScrollAnchors.vue.d.ts +60 -0
  186. package/types/components/systems/scroll-anchors/UluScrollAnchors.vue.d.ts.map +1 -0
  187. package/types/components/systems/scroll-anchors/UluScrollAnchorsNav.vue.d.ts +15 -0
  188. package/types/components/systems/scroll-anchors/UluScrollAnchorsNav.vue.d.ts.map +1 -0
  189. package/types/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.d.ts +32 -0
  190. package/types/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.d.ts.map +1 -0
  191. package/types/components/systems/scroll-anchors/UluScrollAnchorsSection.vue.d.ts +50 -0
  192. package/types/components/systems/scroll-anchors/UluScrollAnchorsSection.vue.d.ts.map +1 -0
  193. package/types/components/systems/scroll-anchors/symbols.d.ts +3 -3
  194. package/types/components/systems/scroll-anchors/symbols.d.ts.map +1 -1
  195. package/types/components/systems/skeleton/UluShowSkeleton.vue.d.ts +16 -0
  196. package/types/components/systems/skeleton/UluShowSkeleton.vue.d.ts.map +1 -0
  197. package/types/components/systems/skeleton/UluSkeletonContent.vue.d.ts +9 -0
  198. package/types/components/systems/skeleton/UluSkeletonContent.vue.d.ts.map +1 -0
  199. package/types/components/systems/skeleton/UluSkeletonMedia.vue.d.ts +3 -0
  200. package/types/components/systems/skeleton/UluSkeletonMedia.vue.d.ts.map +1 -0
  201. package/types/components/systems/skeleton/UluSkeletonText.vue.d.ts +13 -0
  202. package/types/components/systems/skeleton/UluSkeletonText.vue.d.ts.map +1 -0
  203. package/types/components/systems/slider/UluImageSlideShow.vue.d.ts +130 -0
  204. package/types/components/systems/slider/UluImageSlideShow.vue.d.ts.map +1 -0
  205. package/types/components/systems/slider/UluSlideShow.vue.d.ts +205 -0
  206. package/types/components/systems/slider/UluSlideShow.vue.d.ts.map +1 -0
  207. package/types/components/systems/slider/UluSlideShowSlide.vue.d.ts +17 -0
  208. package/types/components/systems/slider/UluSlideShowSlide.vue.d.ts.map +1 -0
  209. package/types/components/systems/table-sticky/UluTableSticky.vue.d.ts +455 -0
  210. package/types/components/systems/table-sticky/UluTableSticky.vue.d.ts.map +1 -0
  211. package/types/components/systems/table-sticky/UluTableStickyRows.vue.d.ts +34 -0
  212. package/types/components/systems/table-sticky/UluTableStickyRows.vue.d.ts.map +1 -0
  213. package/types/components/systems/table-sticky/UluTableStickyTable.vue.d.ts +151 -0
  214. package/types/components/systems/table-sticky/UluTableStickyTable.vue.d.ts.map +1 -0
  215. package/types/components/utils/UluCondText.vue.d.ts +29 -0
  216. package/types/components/utils/UluCondText.vue.d.ts.map +1 -0
  217. package/types/components/utils/UluEmpty.vue.d.ts +3 -0
  218. package/types/components/utils/UluEmpty.vue.d.ts.map +1 -0
  219. package/types/components/utils/UluEmptyView.vue.d.ts +3 -0
  220. package/types/components/utils/UluEmptyView.vue.d.ts.map +1 -0
  221. package/types/components/utils/UluPlaceholderImage.vue.d.ts +61 -0
  222. package/types/components/utils/UluPlaceholderImage.vue.d.ts.map +1 -0
  223. package/types/components/utils/UluPlaceholderText.vue.d.ts +24 -0
  224. package/types/components/utils/UluPlaceholderText.vue.d.ts.map +1 -0
  225. package/types/components/utils/UluRouteAnnouncer.vue.d.ts +63 -0
  226. package/types/components/utils/UluRouteAnnouncer.vue.d.ts.map +1 -0
  227. package/types/components/visualizations/UluAnimateNumber.vue.d.ts +16 -0
  228. package/types/components/visualizations/UluAnimateNumber.vue.d.ts.map +1 -0
  229. package/types/components/visualizations/UluProgressBar.vue.d.ts +66 -0
  230. package/types/components/visualizations/UluProgressBar.vue.d.ts.map +1 -0
  231. package/types/components/visualizations/UluProgressCircle.vue.d.ts +48 -0
  232. package/types/components/visualizations/UluProgressCircle.vue.d.ts.map +1 -0
  233. package/types/composables/index.d.ts +2 -0
  234. package/types/composables/useBreakpointManager.d.ts +1 -1
  235. package/types/composables/useBreakpointManager.d.ts.map +1 -1
  236. package/types/composables/useDocumentTitle.d.ts +22 -0
  237. package/types/composables/useDocumentTitle.d.ts.map +1 -0
  238. package/types/composables/useIcon.d.ts +1 -1
  239. package/types/composables/useIcon.d.ts.map +1 -1
  240. package/types/composables/useModifiers.d.ts +1 -1
  241. package/types/composables/useModifiers.d.ts.map +1 -1
  242. package/types/composables/usePageTitle.d.ts +19 -0
  243. package/types/composables/usePageTitle.d.ts.map +1 -0
  244. package/types/composables/usePagination.d.ts +25 -0
  245. package/types/composables/usePagination.d.ts.map +1 -0
  246. package/types/composables/useWindowResize.d.ts +1 -1
  247. package/types/composables/useWindowResize.d.ts.map +1 -1
  248. package/types/index.d.ts +1 -0
  249. package/types/plugins/core/index.d.ts.map +1 -1
  250. package/types/plugins/modals/UluModalsDisplay.vue.d.ts +14 -0
  251. package/types/plugins/modals/UluModalsDisplay.vue.d.ts.map +1 -0
  252. package/types/plugins/modals/api.d.ts +7 -4
  253. package/types/plugins/modals/api.d.ts.map +1 -1
  254. package/types/plugins/popovers/UluPopover.vue.d.ts +54 -0
  255. package/types/plugins/popovers/UluPopover.vue.d.ts.map +1 -0
  256. package/types/plugins/popovers/UluTooltipDisplay.vue.d.ts +3 -0
  257. package/types/plugins/popovers/UluTooltipDisplay.vue.d.ts.map +1 -0
  258. package/types/plugins/popovers/UluTooltipPopover.vue.d.ts +3 -0
  259. package/types/plugins/popovers/UluTooltipPopover.vue.d.ts.map +1 -0
  260. package/types/plugins/popovers/defaults.d.ts +2 -2
  261. package/types/plugins/popovers/defaults.d.ts.map +1 -1
  262. package/types/plugins/popovers/manager.d.ts +50 -6
  263. package/types/plugins/popovers/manager.d.ts.map +1 -1
  264. package/types/plugins/popovers/useFollow.d.ts +4 -4
  265. package/types/plugins/popovers/useFollow.d.ts.map +1 -1
  266. package/types/plugins/toast/UluToast.vue.d.ts +52 -0
  267. package/types/plugins/toast/UluToast.vue.d.ts.map +1 -0
  268. package/types/plugins/toast/UluToastDisplay.vue.d.ts +13 -0
  269. package/types/plugins/toast/UluToastDisplay.vue.d.ts.map +1 -0
  270. package/types/plugins/toast/defaults.d.ts +39 -2
  271. package/types/plugins/toast/store.d.ts +65 -2
  272. package/types/plugins/toast/store.d.ts.map +1 -1
  273. package/types/utils/dom.d.ts +2 -1
  274. package/types/utils/dom.d.ts.map +1 -1
  275. package/types/utils/index.d.ts +3 -0
  276. package/types/utils/index.d.ts.map +1 -0
  277. package/types/utils/router.d.ts +144 -0
  278. package/types/utils/router.d.ts.map +1 -0
  279. package/dist/index-D3Uc6T5M.js +0 -6469
  280. package/lib/components/collapsible/UluCollapsibleRegion.vue +0 -278
  281. package/lib/components/forms/UluCheckboxMenu.vue +0 -36
  282. package/lib/components/systems/facets/UluFacets.vue +0 -380
  283. package/lib/components/systems/skeleton/UluSkeletonTextInline.vue +0 -9
  284. package/lib/components/visualizations/UluProgressDonut.vue +0 -97
  285. package/lib/utils/placeholder.js +0 -6
@@ -0,0 +1,34 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ rows: ArrayConstructor;
3
+ rowColumns: ArrayConstructor;
4
+ columnWidth: StringConstructor;
5
+ optionalAttr: FunctionConstructor;
6
+ resolveClasses: FunctionConstructor;
7
+ getCellHeaders: FunctionConstructor;
8
+ value: FunctionConstructor;
9
+ isActual: BooleanConstructor;
10
+ classes: ObjectConstructor;
11
+ foot: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
+ rows: ArrayConstructor;
17
+ rowColumns: ArrayConstructor;
18
+ columnWidth: StringConstructor;
19
+ optionalAttr: FunctionConstructor;
20
+ resolveClasses: FunctionConstructor;
21
+ getCellHeaders: FunctionConstructor;
22
+ value: FunctionConstructor;
23
+ isActual: BooleanConstructor;
24
+ classes: ObjectConstructor;
25
+ foot: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ }>> & Readonly<{}>, {
30
+ isActual: boolean;
31
+ foot: boolean;
32
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
33
+ export default _default;
34
+ //# sourceMappingURL=UluTableStickyRows.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluTableStickyRows.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/table-sticky/UluTableStickyRows.vue"],"names":[],"mappings":""}
@@ -0,0 +1,151 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ resolveClasses: FunctionConstructor;
3
+ classes: {
4
+ type: ObjectConstructor;
5
+ default: () => {};
6
+ };
7
+ caption: StringConstructor;
8
+ idPrefix: StringConstructor;
9
+ headerRows: {
10
+ type: ArrayConstructor;
11
+ required: true;
12
+ };
13
+ rows: ArrayConstructor;
14
+ footerRows: ArrayConstructor;
15
+ rowColumns: ArrayConstructor;
16
+ /**
17
+ * Is the actual table not a clone for sticky headers
18
+ */
19
+ isActual: {
20
+ type: BooleanConstructor;
21
+ };
22
+ columnWidth: {
23
+ type: StringConstructor;
24
+ };
25
+ /**
26
+ * Optional user overridden value getter (for rows)
27
+ * @param {Object} row The current row
28
+ * @param {Object} column The current column in the row
29
+ */
30
+ getRowValue: {
31
+ type: FunctionConstructor;
32
+ default: ({ row, column }: {
33
+ row: any;
34
+ column: any;
35
+ }) => any;
36
+ };
37
+ /**
38
+ * Optional user overridden value getter (for rows)
39
+ * @param {Object} row The current row
40
+ * @param {Object} column The current column in the row
41
+ */
42
+ getColumnTitle: {
43
+ type: FunctionConstructor;
44
+ default: ({ column }: {
45
+ column: any;
46
+ }) => any;
47
+ };
48
+ }>, {}, {
49
+ headerRefs: {};
50
+ }, {}, {
51
+ handleSortFocus(column: any, isFocused: any): void;
52
+ addHeaderRef(column: any, el: any): void;
53
+ /**
54
+ * False is no longer not printed
55
+ */
56
+ optionalAttr(val: any): any;
57
+ value({ row, column, rowIndex }: {
58
+ row: any;
59
+ column: any;
60
+ rowIndex: any;
61
+ }): any;
62
+ getCellHeaders(column: any, rowIndex: any): string;
63
+ getHeaderHeaders(column: any): any;
64
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
65
+ resolveClasses: FunctionConstructor;
66
+ classes: {
67
+ type: ObjectConstructor;
68
+ default: () => {};
69
+ };
70
+ caption: StringConstructor;
71
+ idPrefix: StringConstructor;
72
+ headerRows: {
73
+ type: ArrayConstructor;
74
+ required: true;
75
+ };
76
+ rows: ArrayConstructor;
77
+ footerRows: ArrayConstructor;
78
+ rowColumns: ArrayConstructor;
79
+ /**
80
+ * Is the actual table not a clone for sticky headers
81
+ */
82
+ isActual: {
83
+ type: BooleanConstructor;
84
+ };
85
+ columnWidth: {
86
+ type: StringConstructor;
87
+ };
88
+ /**
89
+ * Optional user overridden value getter (for rows)
90
+ * @param {Object} row The current row
91
+ * @param {Object} column The current column in the row
92
+ */
93
+ getRowValue: {
94
+ type: FunctionConstructor;
95
+ default: ({ row, column }: {
96
+ row: any;
97
+ column: any;
98
+ }) => any;
99
+ };
100
+ /**
101
+ * Optional user overridden value getter (for rows)
102
+ * @param {Object} row The current row
103
+ * @param {Object} column The current column in the row
104
+ */
105
+ getColumnTitle: {
106
+ type: FunctionConstructor;
107
+ default: ({ column }: {
108
+ column: any;
109
+ }) => any;
110
+ };
111
+ }>> & Readonly<{}>, {
112
+ classes: Record<string, any>;
113
+ isActual: boolean;
114
+ getRowValue: Function;
115
+ getColumnTitle: Function;
116
+ }, {}, {
117
+ UluTableStickyRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
118
+ rows: ArrayConstructor;
119
+ rowColumns: ArrayConstructor;
120
+ columnWidth: StringConstructor;
121
+ optionalAttr: FunctionConstructor;
122
+ resolveClasses: FunctionConstructor;
123
+ getCellHeaders: FunctionConstructor;
124
+ value: FunctionConstructor;
125
+ isActual: BooleanConstructor;
126
+ classes: ObjectConstructor;
127
+ foot: {
128
+ type: BooleanConstructor;
129
+ default: boolean;
130
+ };
131
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
132
+ rows: ArrayConstructor;
133
+ rowColumns: ArrayConstructor;
134
+ columnWidth: StringConstructor;
135
+ optionalAttr: FunctionConstructor;
136
+ resolveClasses: FunctionConstructor;
137
+ getCellHeaders: FunctionConstructor;
138
+ value: FunctionConstructor;
139
+ isActual: BooleanConstructor;
140
+ classes: ObjectConstructor;
141
+ foot: {
142
+ type: BooleanConstructor;
143
+ default: boolean;
144
+ };
145
+ }>> & Readonly<{}>, {
146
+ isActual: boolean;
147
+ foot: boolean;
148
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
149
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
150
+ export default _default;
151
+ //# sourceMappingURL=UluTableStickyTable.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluTableStickyTable.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/table-sticky/UluTableStickyTable.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;IAmQM;;OAEG;;;;;;;IAOH;;;;OAIG;;;;;;;;IAKH;;;;OAIG;;;;;;;;;;;;IA4BH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;IApDH;;OAEG;;;;;;;IAOH;;;;OAIG;;;;;;;;IAKH;;;;OAIG"}
@@ -0,0 +1,29 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ /**
3
+ * Text to print in element
4
+ */
5
+ text: (ObjectConstructor | StringConstructor | ArrayConstructor | NumberConstructor)[];
6
+ /**
7
+ * Element type to render (ie. h1, h2, p, etc)
8
+ */
9
+ element: {
10
+ type: StringConstructor;
11
+ default: string;
12
+ };
13
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
14
+ /**
15
+ * Text to print in element
16
+ */
17
+ text: (ObjectConstructor | StringConstructor | ArrayConstructor | NumberConstructor)[];
18
+ /**
19
+ * Element type to render (ie. h1, h2, p, etc)
20
+ */
21
+ element: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ }>> & Readonly<{}>, {
26
+ element: string;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
28
+ export default _default;
29
+ //# sourceMappingURL=UluCondText.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluCondText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluCondText.vue"],"names":[],"mappings":";IAmCM;;OAEG;;IAEH;;OAEG;;;;;;IANH;;OAEG;;IAEH;;OAEG"}
@@ -0,0 +1,3 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
3
+ //# sourceMappingURL=UluEmpty.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluEmpty.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluEmpty.vue"],"names":[],"mappings":";AA+BA,wBACG"}
@@ -0,0 +1,3 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
3
+ //# sourceMappingURL=UluEmptyView.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluEmptyView.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluEmptyView.vue"],"names":[],"mappings":";AAuCA,wBACG"}
@@ -0,0 +1,61 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ imageId: StringConstructor;
3
+ /**
4
+ * Width of the image
5
+ */
6
+ width: {
7
+ type: (StringConstructor | NumberConstructor)[];
8
+ default: string;
9
+ };
10
+ /**
11
+ * Height of the image
12
+ */
13
+ height: {
14
+ type: (StringConstructor | NumberConstructor)[];
15
+ default: string;
16
+ };
17
+ /**
18
+ * Alt text for placeholder image
19
+ */
20
+ alt: StringConstructor;
21
+ /**
22
+ * Random size
23
+ */
24
+ random: BooleanConstructor;
25
+ }>, {}, {}, {
26
+ src(): string;
27
+ size(): {
28
+ width: any;
29
+ height: any;
30
+ };
31
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
32
+ imageId: StringConstructor;
33
+ /**
34
+ * Width of the image
35
+ */
36
+ width: {
37
+ type: (StringConstructor | NumberConstructor)[];
38
+ default: string;
39
+ };
40
+ /**
41
+ * Height of the image
42
+ */
43
+ height: {
44
+ type: (StringConstructor | NumberConstructor)[];
45
+ default: string;
46
+ };
47
+ /**
48
+ * Alt text for placeholder image
49
+ */
50
+ alt: StringConstructor;
51
+ /**
52
+ * Random size
53
+ */
54
+ random: BooleanConstructor;
55
+ }>> & Readonly<{}>, {
56
+ height: string | number;
57
+ width: string | number;
58
+ random: boolean;
59
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
60
+ export default _default;
61
+ //# sourceMappingURL=UluPlaceholderImage.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluPlaceholderImage.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluPlaceholderImage.vue"],"names":[],"mappings":";;IA2DM;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;IAEH;;OAEG;;;;;;;;;;IApBH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;IAEH;;OAEG"}
@@ -0,0 +1,24 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ amount: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ element: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ amount: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ element: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ }>> & Readonly<{}>, {
20
+ element: string;
21
+ amount: number;
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ export default _default;
24
+ //# sourceMappingURL=UluPlaceholderText.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluPlaceholderText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluPlaceholderText.vue"],"names":[],"mappings":""}
@@ -0,0 +1,63 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ /**
3
+ * Allow user to bypass this functionality
4
+ * - Function should return true if the page should be annouced
5
+ * - Function is passed (to, from, $route) => {}
6
+ * - to/from are path strings
7
+ */
8
+ validator: {
9
+ type: FunctionConstructor;
10
+ default: () => boolean;
11
+ };
12
+ /**
13
+ * Array of paths to exclude
14
+ * - Can be exact path "/about"
15
+ * - Or can be path with wildcard "/about/*" (match all paths under about)
16
+ */
17
+ exclude: {
18
+ type: ArrayConstructor;
19
+ default: () => never[];
20
+ };
21
+ /**
22
+ * Function to retrieve routes title
23
+ */
24
+ getTitle: {
25
+ type: FunctionConstructor;
26
+ default: (route: any) => any;
27
+ };
28
+ }>, {}, {}, {
29
+ title(): any;
30
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
31
+ /**
32
+ * Allow user to bypass this functionality
33
+ * - Function should return true if the page should be annouced
34
+ * - Function is passed (to, from, $route) => {}
35
+ * - to/from are path strings
36
+ */
37
+ validator: {
38
+ type: FunctionConstructor;
39
+ default: () => boolean;
40
+ };
41
+ /**
42
+ * Array of paths to exclude
43
+ * - Can be exact path "/about"
44
+ * - Or can be path with wildcard "/about/*" (match all paths under about)
45
+ */
46
+ exclude: {
47
+ type: ArrayConstructor;
48
+ default: () => never[];
49
+ };
50
+ /**
51
+ * Function to retrieve routes title
52
+ */
53
+ getTitle: {
54
+ type: FunctionConstructor;
55
+ default: (route: any) => any;
56
+ };
57
+ }>> & Readonly<{}>, {
58
+ validator: Function;
59
+ exclude: unknown[];
60
+ getTitle: Function;
61
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
62
+ export default _default;
63
+ //# sourceMappingURL=UluRouteAnnouncer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluRouteAnnouncer.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluRouteAnnouncer.vue"],"names":[],"mappings":";IAuFM;;;;;OAKG;;;;;IAKH;;;;OAIG;;;;;IAKH;;OAEG;;;;;;;;IArBH;;;;;OAKG;;;;;IAKH;;;;OAIG;;;;;IAKH;;OAEG"}
@@ -0,0 +1,16 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ /**
3
+ * The target number to animate to.
4
+ */
5
+ value: NumberConstructor;
6
+ }>, {}, {
7
+ currentValue: number | undefined;
8
+ tweenValue: number | undefined;
9
+ }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ /**
11
+ * The target number to animate to.
12
+ */
13
+ value: NumberConstructor;
14
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
15
+ export default _default;
16
+ //# sourceMappingURL=UluAnimateNumber.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluAnimateNumber.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/visualizations/UluAnimateNumber.vue"],"names":[],"mappings":";IAiDM;;OAEG;;;;;;IAFH;;OAEG"}
@@ -0,0 +1,66 @@
1
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
2
+ export default _default;
3
+ type __VLS_WithSlots<T, S> = T & (new () => {
4
+ $slots: S;
5
+ });
6
+ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
+ $props: Partial<typeof props>;
8
+ classes: Record<string, any>;
9
+ small: boolean;
10
+ labelHidden: boolean;
11
+ amount: number;
12
+ labelElement: string;
13
+ total: number;
14
+ deficit: number;
15
+ positive: boolean;
16
+ negative: boolean;
17
+ loader: boolean;
18
+ indeterminate: boolean;
19
+ noValues: boolean;
20
+ amountInHeader: boolean;
21
+ label?: string | undefined;
22
+ formatValue?: Function | undefined;
23
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
24
+ type __VLS_Slots = {
25
+ label?: ((props: {}) => any) | undefined;
26
+ } & {
27
+ valueAmount?: ((props: {
28
+ value: number;
29
+ }) => any) | undefined;
30
+ } & {
31
+ icon?: ((props: {}) => any) | undefined;
32
+ } & {
33
+ valueAmount?: ((props: {
34
+ value: number;
35
+ }) => any) | undefined;
36
+ } & {
37
+ valueDeficit?: ((props: {
38
+ value: number;
39
+ }) => any) | undefined;
40
+ } & {
41
+ valueTotal?: ((props: {
42
+ value: number;
43
+ }) => any) | undefined;
44
+ };
45
+ /**
46
+ * A linear progress bar to display progress, with support for various styles and a deficit indicator.
47
+ * @slot icon - A slot for placing an icon in the header, typically to indicate status.
48
+ */
49
+ declare const props: {
50
+ readonly classes: Record<string, any>;
51
+ readonly small: boolean;
52
+ readonly labelHidden: boolean;
53
+ readonly amount: number;
54
+ readonly labelElement: string;
55
+ readonly total: number;
56
+ readonly deficit: number;
57
+ readonly positive: boolean;
58
+ readonly negative: boolean;
59
+ readonly loader: boolean;
60
+ readonly indeterminate: boolean;
61
+ readonly noValues: boolean;
62
+ readonly amountInHeader: boolean;
63
+ readonly label?: string | undefined;
64
+ readonly formatValue?: Function | undefined;
65
+ };
66
+ //# sourceMappingURL=UluProgressBar.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluProgressBar.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/visualizations/UluProgressBar.vue"],"names":[],"mappings":"wBA+dqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;;;;2OAErC;;;;;;;;;;;;;;;;;;;;;;AAlTH;;;GAGG;AACH;;;;;;;;;;;;;;;;EAgFG"}
@@ -0,0 +1,48 @@
1
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
2
+ export default _default;
3
+ type __VLS_WithSlots<T, S> = T & (new () => {
4
+ $slots: S;
5
+ });
6
+ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
+ $props: Partial<typeof props>;
8
+ label: string;
9
+ small: boolean;
10
+ duration: number;
11
+ easing: string;
12
+ formatValue: Function;
13
+ percentage: number;
14
+ noValue: boolean;
15
+ outside: boolean;
16
+ outsideBelow: boolean;
17
+ status: string;
18
+ pieStyle: boolean;
19
+ noMask: boolean;
20
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
21
+ type __VLS_Slots = {
22
+ value?: ((props: {
23
+ value: number;
24
+ }) => any) | undefined;
25
+ } & {
26
+ value?: ((props: {
27
+ value: number;
28
+ }) => any) | undefined;
29
+ };
30
+ /**
31
+ * A circular progress indicator component.
32
+ * @slot value - The value display. Overrides the `formatValue` prop.
33
+ */
34
+ declare const props: {
35
+ readonly label: string;
36
+ readonly small: boolean;
37
+ readonly duration: number;
38
+ readonly easing: string;
39
+ readonly formatValue: Function;
40
+ readonly percentage: number;
41
+ readonly noValue: boolean;
42
+ readonly outside: boolean;
43
+ readonly outsideBelow: boolean;
44
+ readonly status: string;
45
+ readonly pieStyle: boolean;
46
+ readonly noMask: boolean;
47
+ };
48
+ //# sourceMappingURL=UluProgressCircle.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UluProgressCircle.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/visualizations/UluProgressCircle.vue"],"names":[],"mappings":"wBAoZqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;2OAErC;;;;;;;;;;AAhPH;;;GAGG;AACH;;;;;;;;;;;;;EAoEG"}
@@ -3,4 +3,6 @@ export { useModifiers } from "./useModifiers.js";
3
3
  export { useWindowResize } from "./useWindowResize.js";
4
4
  export { useRequiredInject } from "./useRequiredInject.js";
5
5
  export { useBreakpointManager } from "./useBreakpointManager.js";
6
+ export { usePagination } from "./usePagination.js";
7
+ export { useDocumentTitle } from "./useDocumentTitle.js";
6
8
  //# sourceMappingURL=index.d.ts.map
@@ -4,5 +4,5 @@
4
4
  * @param {Object} options Configuration options overrides
5
5
  * @return {Object} { manager, active, direction } (all are null in SSR environment until init)
6
6
  */
7
- export function useBreakpointManager(options: any): any;
7
+ export function useBreakpointManager(options: Object): Object;
8
8
  //# sourceMappingURL=useBreakpointManager.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useBreakpointManager.d.ts","sourceRoot":"","sources":["../../lib/composables/useBreakpointManager.js"],"names":[],"mappings":"AAoBA;;;;;GAKG;AACH,wDAyCC"}
1
+ {"version":3,"file":"useBreakpointManager.d.ts","sourceRoot":"","sources":["../../lib/composables/useBreakpointManager.js"],"names":[],"mappings":"AAoBA;;;;;GAKG;AACH,8CAHW,MAAM,GACL,MAAM,CA2CjB"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * A composable to manage the document title.
3
+ *
4
+ * When called with a `title` option, it sets a dynamic title for the current page.
5
+ * This is for use within specific components.
6
+ *
7
+ * When called without a `title` option (typically in App.vue), it manages the
8
+ * document title for the whole app, using titles from components or route meta.
9
+ *
10
+ * @param {object} options
11
+ * @param {import('vue').Ref<string> | string} [options.title] - The dynamic title to set for the current page.
12
+ * @param {string} [options.titleTemplate='%s'] - The template for the document title, e.g., '%s | My Site'.
13
+ * @param {Function} [options.useRoute=defaultUseRoute] - Injectable `useRoute` for testing.
14
+ * @param {Function} [options.useHead=defaultUseHead] - Injectable `useHead` for testing.
15
+ */
16
+ export function useDocumentTitle(options?: {
17
+ title?: string | import("vue").Ref<string, string> | undefined;
18
+ titleTemplate?: string | undefined;
19
+ useRoute?: Function | undefined;
20
+ useHead?: Function | undefined;
21
+ }): void;
22
+ //# sourceMappingURL=useDocumentTitle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDocumentTitle.d.ts","sourceRoot":"","sources":["../../lib/composables/useDocumentTitle.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;GAcG;AACH,2CALG;IAAqD,KAAK;IACjC,aAAa;IACX,QAAQ;IACR,OAAO;CACpC,QAsCA"}
@@ -2,5 +2,5 @@
2
2
  * Utility composable for handling and formatting icon props for UluIcon.
3
3
  * @returns {Object} An object with utility functions { getIconProps, getClassesFromDefinition }
4
4
  */
5
- export function useIcon(): any;
5
+ export function useIcon(): Object;
6
6
  //# sourceMappingURL=useIcon.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useIcon.d.ts","sourceRoot":"","sources":["../../lib/composables/useIcon.js"],"names":[],"mappings":"AAAA;;;GAGG;AACH,+BAyDC"}
1
+ {"version":3,"file":"useIcon.d.ts","sourceRoot":"","sources":["../../lib/composables/useIcon.js"],"names":[],"mappings":"AAAA;;;GAGG;AACH,2BAFa,MAAM,CA2DlB"}
@@ -64,6 +64,6 @@ export function useModifiers({ props, baseClass, internal }: {
64
64
  [x: string]: any;
65
65
  } | import("vue").ComputedRef<string | string[] | {
66
66
  [x: string]: any;
67
- }>;
67
+ }> | undefined;
68
68
  }): object;
69
69
  //# sourceMappingURL=useModifiers.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useModifiers.d.ts","sourceRoot":"","sources":["../../lib/composables/useModifiers.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,6DAtDG;IAAwB,KAAK,EAArB,MAAM;IACsC,SAAS,EAArD,MAAM,GAAG,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC;IAEuF,QAAQ,GAAjI,MAAM,GAAG,MAAM,EAAE,GAAG;YAAQ,MAAM,GAAE,GAAG;KAAC,GAAG,OAAO,KAAK,EAAE,WAAW,CAAC,MAAM,GAAG,MAAM,EAAE,GAAG;YAAQ,MAAM,GAAE,GAAG;KAAC,CAAC;CAEtH,GAAU,MAAM,CA0ElB"}
1
+ {"version":3,"file":"useModifiers.d.ts","sourceRoot":"","sources":["../../lib/composables/useModifiers.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,6DAtDG;IAAwB,KAAK,EAArB,MAAM;IACsC,SAAS,EAArD,MAAM,GAAG,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC;IAEuF,QAAQ;;;;;CAEzI,GAAU,MAAM,CA0ElB"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * A composable to set the title for the current page/route from within its component.
3
+ * This provides a single source of truth for a page's title, which can be
4
+ * consumed by various parts of the application (e.g., breadcrumbs, document title).
5
+ * @param {import('vue').Ref<string> | string} title The title to set for the current page. Can be a ref, computed, or a plain string.
6
+ * @param {{ useRoute: Function }} options For dependency injection in tests/stories.
7
+ */
8
+ export function usePageTitle(title: import("vue").Ref<string> | string, { useRoute }?: {
9
+ useRoute: Function;
10
+ }): void;
11
+ /**
12
+ * Gets the dynamically set page title for a given path.
13
+ * For internal use by consumers like breadcrumb or document title utilities.
14
+ * @param {string} path The route path to look up.
15
+ * @returns {string | undefined}
16
+ */
17
+ export function getPageTitle(path: string): string | undefined;
18
+ export const pageTitles: {};
19
+ //# sourceMappingURL=usePageTitle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePageTitle.d.ts","sourceRoot":"","sources":["../../lib/composables/usePageTitle.js"],"names":[],"mappings":"AAOA;;;;;;GAMG;AACH,oCAHW,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,GAAG,MAAM,iBAClC;IAAE,QAAQ,WAAU;CAAE,QAchC;AAED;;;;;GAKG;AACH,mCAHW,MAAM,GACJ,MAAM,GAAG,SAAS,CAI9B;AA/BD,4BAAuC"}