@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
@@ -1,4 +1,4 @@
1
- import { l as o, r as h, a as p, g as v } from "./index-D3Uc6T5M.js";
1
+ import { l as o, r as h, a as p, g as v } from "./index-A7weElM_.js";
2
2
  const k = {
3
3
  iconClassClose: "css-icon css-icon--close",
4
4
  iconClassDragX: "css-icon css-icon--drag-x",
@@ -1 +1 @@
1
- .UluFacets__more-facets{display:flex;flex-direction:column}.UluFacets__more-facets.UluCollapsibleRegion--open .UluCollapsibleRegion__content,.UluFacets__more-facets.UluCollapsibleRegion--transitioning .UluCollapsibleRegion__content{order:-1}.UluFacetsFade-enter-active,.UluFacetsFade-leave-active{transition:opacity .25s ease}.UluFacetsFade-enter-from,.UluFacetsFade-leave-to{opacity:0}.scroll-anchors__rail{border-left:3px solid rgb(220,220,220);padding-left:1rem}.scroll-anchors__indicator{position:absolute;top:0;left:0;width:3px;background-color:#000}.scroll-anchors__indicator--can-transition{transition-property:height,transform;transition-timing-function:ease-in-out;transition-duration:.25s}
1
+ .toast-animation-move,.toast-animation-enter-active,.toast-animation-leave-active{transition:all .3s ease}.toast-animation-enter-from,.toast-animation-leave-to{opacity:0;transform:translate(30px)}.toast-animation-leave-active{position:absolute;width:100%}.ulu-facets-active-filters{display:flex;align-items:center;flex-wrap:wrap;gap:1rem;margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid #eee}.ulu-facets-active-filters__label{margin-right:.5rem}.ulu-facets-active-filters__items{display:flex;flex-wrap:wrap;gap:.5rem}.facets-dropdown-filters{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}.facets-dropdown-filters__group{display:flex;gap:.5rem;align-items:center}.facets-header-layout__header{display:flex;gap:1rem;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap}.facets-results__list{list-style:none;padding:0}.facets-fade-enter-active,.facets-fade-leave-active{transition:opacity .25s ease}.facets-fade-enter-from,.facets-fade-leave-to{opacity:0}.facets-sidebar__body{display:grid;grid-template-columns:250px 1fr;gap:2rem}.facets-sidebar--filters-hidden .facets-sidebar__body{grid-template-columns:1fr}.scroll-anchors__rail{border-left:3px solid rgb(220,220,220);padding-left:1rem}.scroll-anchors__indicator{position:absolute;top:0;left:0;width:3px;background-color:#000}.scroll-anchors__indicator--can-transition{transition-property:height,transform;transition-timing-function:ease-in-out;transition-duration:.25s}
@@ -1,77 +1,89 @@
1
- import { _ as s, L as e, q as u, $ as U, s as o, t as n, O as i, u as t, v as r, w as c, E as S, U as d, T as k, M as p, x as m, f as b, V as g, W as T, y as h, a2 as P, a4 as A, a3 as F, F as w, G as M, H as v, I as x, J as y, z as L, ad as B, A as C, B as I, P as R, Q as f, h as D, R as N, j as E, X as j, Y as G, a0 as q, a1 as z, Z as O, a5 as V, a6 as W, a7 as H, a8 as J, K, a9 as Q, aa as X, ab as Y, ac as Z, S as _, ae as $, af as aa, C as la, k as sa, m as ea, n as ua, o as Ua, p as oa, ag as na, ah as ia, ai as ta, D as ra, N as ca, e as Sa, i as da, c as ka, b as pa, d as ma, an as ba, aj as ga, ak as Ta, am as ha, al as Pa } from "./index-D3Uc6T5M.js";
1
+ import { _ as l, N as e, s as u, a1 as t, t as U, u as o, Q as i, v as r, w as n, x as c, y as S, h as d, W as F, O as p, z as b, j as m, X as k, Y as T, A as g, a5 as P, a6 as h, a7 as A, a8 as v, a9 as w, ae as y, aa as L, ab as M, ac as x, ad as B, H as C, I as R, J as f, K as D, L as I, B as N, an as E, C as j, D as q, R as z, S as G, U as V, T as H, k as O, Z as W, $ as J, a2 as K, a3 as Q, a0 as X, af as Y, ag as Z, ah as _, ai as $, M as aa, G as sa, aj as la, ak as ea, al as ua, am as ta, V as Ua, ao as oa, ap as ia, E as ra, m as na, n as ca, o as Sa, p as da, q as Fa, aq as pa, ar as ba, as as ma, F as ka, P as Ta, f as ga, b as Pa, d as ha, c as Aa, e as va, ax as wa, az as ya, a4 as La, at as Ma, au as xa, ay as Ba, aw as Ca, av as Ra, i as fa } from "./index-A7weElM_.js";
2
2
  export {
3
- s as UluAccordion,
3
+ l as UluAccordion,
4
4
  e as UluAdaptiveLayout,
5
5
  u as UluAlert,
6
- U as UluAnimateNumber,
7
- o as UluBadge,
8
- n as UluBadgeStack,
6
+ t as UluAnimateNumber,
7
+ U as UluBadge,
8
+ o as UluBadgeStack,
9
9
  i as UluBreadcrumb,
10
- t as UluButton,
11
- r as UluCallout,
12
- c as UluCard,
13
- S as UluCheckboxMenu,
14
- d as UluCollapsibleRegion,
15
- k as UluCondText,
10
+ r as UluButton,
11
+ n as UluButtonVerbose,
12
+ c as UluCallout,
13
+ S as UluCard,
14
+ d as UluCollapsible,
15
+ F as UluCondText,
16
16
  p as UluDataGrid,
17
- m as UluDefinitionList,
18
- b as UluDropdown,
19
- g as UluEmpty,
17
+ b as UluDefinitionList,
18
+ m as UluDropdown,
19
+ k as UluEmpty,
20
20
  T as UluEmptyView,
21
- h as UluExternalLink,
22
- P as UluFacets,
23
- A as UluFacetsList,
24
- F as UluFacetsSearch,
25
- w as UluFileDisplay,
26
- M as UluFormFile,
27
- v as UluFormMessage,
28
- x as UluFormSelect,
29
- y as UluFormText,
30
- L as UluIcon,
31
- B as UluImageSlideShow,
32
- C as UluList,
33
- I as UluMain,
34
- R as UluMenu,
35
- f as UluMenuStack,
36
- D as UluModal,
37
- N as UluNavStrip,
38
- E as UluOverflowPopover,
39
- j as UluPlaceholderImage,
40
- G as UluPlaceholderText,
41
- q as UluProgressBar,
42
- z as UluProgressDonut,
43
- O as UluRouteAnnouncer,
44
- V as UluScrollAnchors,
45
- W as UluScrollAnchorsNav,
46
- H as UluScrollAnchorsNavAnimated,
47
- J as UluScrollAnchorsSection,
48
- K as UluSearchForm,
49
- Q as UluShowSkeleton,
50
- X as UluSkeletonContent,
51
- Y as UluSkeletonMedia,
52
- Z as UluSkeletonTextInline,
53
- _ as UluSkipLink,
54
- $ as UluSlideShow,
55
- aa as UluSlideShowSlide,
56
- la as UluSpokeSpinner,
57
- sa as UluTab,
58
- ea as UluTabGroup,
59
- ua as UluTabList,
60
- Ua as UluTabPanel,
61
- oa as UluTabPanels,
62
- na as UluTableSticky,
63
- ia as UluTableStickyRows,
64
- ta as UluTableStickyTable,
65
- ra as UluTag,
66
- ca as UluTitleRail,
67
- Sa as breakpointsPlugin,
68
- da as corePlugin,
69
- ka as modalsPlugin,
70
- pa as popoversPlugin,
71
- ma as toastPlugin,
72
- ba as useBreakpointManager,
73
- ga as useIcon,
74
- Ta as useModifiers,
75
- ha as useRequiredInject,
76
- Pa as useWindowResize
21
+ g as UluExternalLink,
22
+ P as UluFacetsActiveFilters,
23
+ h as UluFacetsFilterLists,
24
+ A as UluFacetsFilterPopovers,
25
+ v as UluFacetsFilterSelects,
26
+ w as UluFacetsHeaderLayout,
27
+ y as UluFacetsList,
28
+ L as UluFacetsResults,
29
+ M as UluFacetsSearch,
30
+ x as UluFacetsSidebarLayout,
31
+ B as UluFacetsSort,
32
+ C as UluFileDisplay,
33
+ R as UluFormFile,
34
+ f as UluFormMessage,
35
+ D as UluFormSelect,
36
+ I as UluFormText,
37
+ N as UluIcon,
38
+ E as UluImageSlideShow,
39
+ j as UluList,
40
+ q as UluMain,
41
+ z as UluMenu,
42
+ G as UluMenuStack,
43
+ V as UluModal,
44
+ H as UluNavStrip,
45
+ O as UluOverflowPopover,
46
+ W as UluPlaceholderImage,
47
+ J as UluPlaceholderText,
48
+ K as UluProgressBar,
49
+ Q as UluProgressCircle,
50
+ X as UluRouteAnnouncer,
51
+ Y as UluScrollAnchors,
52
+ Z as UluScrollAnchorsNav,
53
+ _ as UluScrollAnchorsNavAnimated,
54
+ $ as UluScrollAnchorsSection,
55
+ aa as UluSearchForm,
56
+ sa as UluSelectableMenu,
57
+ la as UluShowSkeleton,
58
+ ea as UluSkeletonContent,
59
+ ua as UluSkeletonMedia,
60
+ ta as UluSkeletonText,
61
+ Ua as UluSkipLink,
62
+ oa as UluSlideShow,
63
+ ia as UluSlideShowSlide,
64
+ ra as UluSpokeSpinner,
65
+ na as UluTab,
66
+ ca as UluTabGroup,
67
+ Sa as UluTabList,
68
+ da as UluTabPanel,
69
+ Fa as UluTabPanels,
70
+ pa as UluTableSticky,
71
+ ba as UluTableStickyRows,
72
+ ma as UluTableStickyTable,
73
+ ka as UluTag,
74
+ Ta as UluTitleRail,
75
+ ga as breakpointsPlugin,
76
+ Pa as corePlugin,
77
+ ha as modalsPlugin,
78
+ Aa as popoversPlugin,
79
+ va as toastPlugin,
80
+ wa as useBreakpointManager,
81
+ ya as useDocumentTitle,
82
+ La as useFacets,
83
+ Ma as useIcon,
84
+ xa as useModifiers,
85
+ Ba as usePagination,
86
+ Ca as useRequiredInject,
87
+ Ra as useWindowResize,
88
+ fa as utils
77
89
  };