@ulu/frontend-vue 0.1.0-beta.3 → 0.1.0-beta.30

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 (151) hide show
  1. package/README.md +113 -2
  2. package/dist/{breakpoints-Cq2oSdYS.js → breakpoints-O2rDlMRj.js} +1 -1
  3. package/dist/frontend-vue.css +1 -1
  4. package/dist/frontend-vue.js +78 -72
  5. package/dist/index-BkFIm5Ds.js +6941 -0
  6. package/lib/components/collapsible/UluAccordion.vue +1 -1
  7. package/lib/components/collapsible/UluModal.vue +4 -5
  8. package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
  9. package/lib/components/elements/UluAlert.vue +1 -2
  10. package/lib/components/elements/UluBadge.vue +27 -28
  11. package/lib/components/elements/UluBadgeStack.vue +8 -13
  12. package/lib/components/elements/UluButton.vue +2 -2
  13. package/lib/components/elements/UluButtonVerbose.vue +119 -0
  14. package/lib/components/elements/UluCard.vue +1 -1
  15. package/lib/components/elements/UluDefinitionList.vue +14 -17
  16. package/lib/components/elements/UluExternalLink.vue +22 -29
  17. package/lib/components/elements/UluIcon.vue +22 -17
  18. package/lib/components/elements/UluList.vue +53 -55
  19. package/lib/components/elements/UluSpokeSpinner.vue +12 -18
  20. package/lib/components/elements/UluTag.vue +35 -35
  21. package/lib/components/forms/UluFileDisplay.vue +40 -31
  22. package/lib/components/forms/UluFormFile.vue +22 -24
  23. package/lib/components/forms/UluFormMessage.vue +7 -10
  24. package/lib/components/forms/UluFormSelect.vue +16 -16
  25. package/lib/components/forms/UluFormText.vue +15 -15
  26. package/lib/components/forms/UluSearchForm.vue +8 -10
  27. package/lib/components/forms/UluSelectableMenu.vue +78 -0
  28. package/lib/components/index.js +2 -2
  29. package/lib/components/layout/UluAdaptiveLayout.vue +3 -5
  30. package/lib/components/layout/UluTitleRail.vue +9 -5
  31. package/lib/components/layout/UluWhenBreakpoint.vue +71 -77
  32. package/lib/components/navigation/UluBreadcrumb.vue +10 -4
  33. package/lib/components/navigation/UluMenu.vue +3 -3
  34. package/lib/components/navigation/UluPager.vue +102 -0
  35. package/lib/components/systems/facets/ExampleFacetsWithPagination.vue +119 -0
  36. package/lib/components/systems/facets/UluFacetsFilterLists.vue +84 -0
  37. package/lib/components/systems/facets/UluFacetsFilterPopovers.vue +112 -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 +61 -33
  41. package/lib/components/systems/facets/UluFacetsResults.vue +63 -0
  42. package/lib/components/systems/facets/UluFacetsSearch.vue +26 -49
  43. package/lib/components/systems/facets/UluFacetsSidebarLayout.vue +31 -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 +229 -0
  48. package/lib/components/systems/index.js +13 -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 +8 -8
  57. package/lib/components/systems/table-sticky/UluTableStickyTable.vue +3 -3
  58. package/lib/composables/index.js +4 -1
  59. package/lib/composables/useDocumentTitle.js +61 -0
  60. package/lib/composables/usePagination.js +122 -0
  61. package/lib/composables/useRequiredInject.js +26 -0
  62. package/lib/index.js +1 -1
  63. package/lib/meta.js +14 -0
  64. package/lib/plugins/core/index.js +91 -0
  65. package/lib/plugins/index.js +1 -0
  66. package/lib/plugins/popovers/UluPopover.vue +3 -1
  67. package/lib/plugins/toast/UluToast.vue +2 -2
  68. package/lib/utils/index.js +2 -0
  69. package/lib/utils/{vue-router.js → router.js} +114 -30
  70. package/package.json +38 -13
  71. package/types/components/index.d.ts +2 -0
  72. package/types/components/index.d.ts.map +1 -0
  73. package/types/components/systems/facets/_mock-data.d.ts +18 -0
  74. package/types/components/systems/facets/_mock-data.d.ts.map +1 -0
  75. package/types/components/systems/facets/useFacets.d.ts +39 -0
  76. package/types/components/systems/facets/useFacets.d.ts.map +1 -0
  77. package/types/components/systems/index.d.ts +2 -0
  78. package/types/components/systems/index.d.ts.map +1 -0
  79. package/types/components/systems/scroll-anchors/symbols.d.ts +7 -0
  80. package/types/components/systems/scroll-anchors/symbols.d.ts.map +1 -0
  81. package/types/composables/index.d.ts +8 -0
  82. package/types/composables/index.d.ts.map +1 -0
  83. package/types/composables/useBreakpointManager.d.ts +8 -0
  84. package/types/composables/useBreakpointManager.d.ts.map +1 -0
  85. package/types/composables/useDocumentTitle.d.ts +22 -0
  86. package/types/composables/useDocumentTitle.d.ts.map +1 -0
  87. package/types/composables/useIcon.d.ts +6 -0
  88. package/types/composables/useIcon.d.ts.map +1 -0
  89. package/types/composables/useModifiers.d.ts +69 -0
  90. package/types/composables/useModifiers.d.ts.map +1 -0
  91. package/types/composables/usePageTitle.d.ts +19 -0
  92. package/types/composables/usePageTitle.d.ts.map +1 -0
  93. package/types/composables/usePagination.d.ts +25 -0
  94. package/types/composables/usePagination.d.ts.map +1 -0
  95. package/types/composables/useRequiredInject.d.ts +8 -0
  96. package/types/composables/useRequiredInject.d.ts.map +1 -0
  97. package/types/composables/useWindowResize.d.ts +6 -0
  98. package/types/composables/useWindowResize.d.ts.map +1 -0
  99. package/types/index.d.ts +5 -0
  100. package/types/index.d.ts.map +1 -0
  101. package/types/meta.d.ts +10 -0
  102. package/types/meta.d.ts.map +1 -0
  103. package/types/plugins/breakpoints/index.d.ts +2 -0
  104. package/types/plugins/breakpoints/index.d.ts.map +1 -0
  105. package/types/plugins/core/index.d.ts +3 -0
  106. package/types/plugins/core/index.d.ts.map +1 -0
  107. package/types/plugins/index.d.ts +6 -0
  108. package/types/plugins/index.d.ts.map +1 -0
  109. package/types/plugins/modals/api.d.ts +34 -0
  110. package/types/plugins/modals/api.d.ts.map +1 -0
  111. package/types/plugins/modals/index.d.ts +28 -0
  112. package/types/plugins/modals/index.d.ts.map +1 -0
  113. package/types/plugins/modals/useModals.d.ts +2 -0
  114. package/types/plugins/modals/useModals.d.ts.map +1 -0
  115. package/types/plugins/popovers/defaults.d.ts +14 -0
  116. package/types/plugins/popovers/defaults.d.ts.map +1 -0
  117. package/types/plugins/popovers/directive.d.ts +8 -0
  118. package/types/plugins/popovers/directive.d.ts.map +1 -0
  119. package/types/plugins/popovers/index.d.ts +7 -0
  120. package/types/plugins/popovers/index.d.ts.map +1 -0
  121. package/types/plugins/popovers/manager.d.ts +52 -0
  122. package/types/plugins/popovers/manager.d.ts.map +1 -0
  123. package/types/plugins/popovers/useFollow.d.ts +31 -0
  124. package/types/plugins/popovers/useFollow.d.ts.map +1 -0
  125. package/types/plugins/popovers/utils.d.ts +2 -0
  126. package/types/plugins/popovers/utils.d.ts.map +1 -0
  127. package/types/plugins/toast/defaults.d.ts +15 -0
  128. package/types/plugins/toast/defaults.d.ts.map +1 -0
  129. package/types/plugins/toast/index.d.ts +5 -0
  130. package/types/plugins/toast/index.d.ts.map +1 -0
  131. package/types/plugins/toast/store.d.ts +22 -0
  132. package/types/plugins/toast/store.d.ts.map +1 -0
  133. package/types/plugins/toast/useToast.d.ts +2 -0
  134. package/types/plugins/toast/useToast.d.ts.map +1 -0
  135. package/types/utils/dom.d.ts +8 -0
  136. package/types/utils/dom.d.ts.map +1 -0
  137. package/types/utils/index.d.ts +3 -0
  138. package/types/utils/index.d.ts.map +1 -0
  139. package/types/utils/placeholder.d.ts +8 -0
  140. package/types/utils/placeholder.d.ts.map +1 -0
  141. package/types/utils/router.d.ts +144 -0
  142. package/types/utils/router.d.ts.map +1 -0
  143. package/types/utils/vue-router.d.ts +122 -0
  144. package/types/utils/vue-router.d.ts.map +1 -0
  145. package/dist/index-CMGxe_M1.js +0 -6466
  146. package/lib/components/forms/UluCheckboxMenu.vue +0 -36
  147. package/lib/components/forms/UluFormDropzone.vue +0 -62
  148. package/lib/components/systems/facets/UluFacets.vue +0 -380
  149. package/lib/components/systems/skeleton/UluSkeletonTextInline.vue +0 -9
  150. package/lib/settings.js +0 -119
  151. package/lib/utils/placeholder.js +0 -6
package/README.md CHANGED
@@ -1,9 +1,120 @@
1
1
  # @ulu/frontend-vue
2
2
 
3
- Vue component library for [Ulu frontend](https://jscherbe.github.io/frontend/).
3
+ Vue component library for the [Ulu frontend](https://jscherbe.github.io/frontend/) ecosystem.
4
4
 
5
- - [Documentation](https://jscherbe.github.io/frontend-vue/)
5
+ This library provides a set of reusable, themeable, and accessible Vue 3 components. It is designed to be modular, allowing you to import only the components and features you need, ensuring your application remains lightweight and performant.
6
+
7
+ - [Documentation / Demos](https://jscherbe.github.io/frontend-vue/)
6
8
  - [Change Log](CHANGELOG.md)
9
+ - [Installation](#installation)
10
+ - [General Usage](#usage)
11
+ - [1. SCSS Setup](#1-scss-setup)
12
+ - [2. Plugin Registration](#2-plugin-registration)
13
+ - [Core Plugin (Required)](#core-plugin-required)
14
+ - [Optional Plugins](#optional-plugins)
15
+ - [3. Component Usage](#3-component-usage)
16
+ - [Resources](#resources)
17
+ - [Snippets](#snippets)
18
+
19
+
20
+ ## Installation
21
+
22
+ Install the library and its required peer dependencies.
23
+
24
+ ```bash
25
+ npm install @ulu/frontend-vue
26
+ ```
27
+
28
+ ## Usage
29
+
30
+ Using the library involves three main steps: setting up the SCSS, registering the Vue plugins, and importing the components you need.
31
+
32
+ ### 1. SCSS Setup
33
+
34
+ Import the main stylesheet into your project's primary SCSS file. This will bring in all the necessary styles for the components.
35
+
36
+ ```scss
37
+ // Import Ulu Vue component styles
38
+ @use "@ulu/frontend-vue/scss" as ulu-vue;
39
+
40
+ // Configure
41
+ @include ulu-vue.plugin-toast-set((
42
+ "background-color" : gray
43
+ ));
44
+
45
+ // Output (plugins/component) stylesheets that you use
46
+ @include ulu-vue.plugin-toast-styles();
47
+ ```
48
+
49
+ ### 2. Plugin Registration
50
+
51
+ This library uses a plugin-based system to configure core features and functionality. You'll need to register them in your main application entry point (e.g., `src/main.js`).
52
+
53
+ #### Core Plugin (Required)
54
+
55
+ The `corePlugin` is **required** to set up the library's foundational settings, such as the icon system, which is used by many components.
56
+
57
+ ```javascript
58
+ // src/main.js
59
+ import { createApp } from 'vue';
60
+ import App from './App.vue';
61
+ import router from './router'; // Your vue-router instance
62
+
63
+ import { corePlugin } from '@ulu/frontend-vue';
64
+
65
+ const app = createApp(App);
66
+
67
+ app.use(router);
68
+
69
+ // Register the core plugin
70
+ app.use(corePlugin, {
71
+ // Optional: You can override default settings here.
72
+ // For example, to use FontAwesome's static CSS classes instead of the Vue component:
73
+ // fontAwesomeStatic: true,
74
+ });
75
+
76
+ app.mount('#app');
77
+ ```
78
+
79
+ #### Optional Plugins
80
+
81
+ Other plugins for features like responsive breakpoints, global modals, and toast notifications can be registered as needed.
82
+
83
+ ```javascript
84
+ // src/main.js
85
+ import { breakpointsPlugin, modalsPlugin, toastPlugin } from '@ulu/frontend-vue';
86
+
87
+ // ...
88
+ app.use(breakpointsPlugin);
89
+ app.use(modalsPlugin, { /* your global modal configurations */ });
90
+ app.use(toastPlugin, { /* default toast options */ });
91
+ // ...
92
+ ```
93
+
94
+ ### 3. Component Usage
95
+
96
+ Components are designed to be imported individually. This approach is highly recommended as it allows build tools like Vite or Webpack to **tree-shake** unused components, keeping your final application bundle as small as possible.
97
+
98
+ **Example:**
99
+ ```vue
100
+ <script setup>
101
+ import { UluButton, UluAlert } from '@ulu/frontend-vue';
102
+ </script>
103
+
104
+ <template>
105
+ <UluAlert type="success" title="Success!">
106
+ This is an alert component.
107
+ </UluAlert>
108
+
109
+ <UluButton primary to="/">Click Me</UluButton>
110
+ </template>
111
+ ```
112
+
113
+
114
+
7
115
 
116
+ # Resources
8
117
 
118
+ ## Snippets
9
119
 
120
+ - Snippets for vscode are available in the repo's at [/resources/vscode/](https://github.com/Jscherbe/frontend-vue/tree/main/resources/vscode)
@@ -1,4 +1,4 @@
1
- import { l as o, r as h, a as p, g as v } from "./index-CMGxe_M1.js";
1
+ import { l as o, r as h, a as p, g as v } from "./index-BkFIm5Ds.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
+ .UluFacetsDropdownFilters{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}.UluFacetsDropdownFilters__group{display:flex;gap:.5rem;align-items:center}.UluFacetsHeaderLayout__header{display:flex;gap:1rem;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap}.UluFacetsResults__list{list-style:none;padding:0}.UluFacetsFade-enter-active,.UluFacetsFade-leave-active{transition:opacity .25s ease}.UluFacetsFade-enter-from,.UluFacetsFade-leave-to{opacity:0}.UluFacetsSidebarLayout__body{display:grid;grid-template-columns:1fr;gap:2rem}@media (min-width: 768px){.UluFacetsSidebarLayout__body{grid-template-columns:250px 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,82 +1,88 @@
1
- import { _ as l, L as e, p as u, $ as o, q as U, s as t, O as n, t as i, u as r, v as S, D as c, U as d, T as g, M as p, w as k, e as m, V as T, W as b, x as h, a2 as F, a4 as P, a3 as A, E as w, F as y, G as M, H as v, I as x, J as B, y as D, ad as L, z as f, A as C, P as I, Q as R, f as N, R as E, h as z, X as G, Y as j, a0 as q, a1 as O, Z as V, a5 as W, a6 as H, a7 as J, a8 as K, K as Q, a9 as X, aa as Y, ab as Z, ac as _, S as $, ae as aa, af as sa, B as la, j as ea, k as ua, m as oa, n as Ua, o as ta, ag as na, ah as ia, ai as ra, C as Sa, N as ca, d as da, an as ga, as as pa, aq as ka, ap as ma, b as Ta, i as ba, c as ha, ar as Fa, ao as Pa, am as Aa, aj as wa, ak as ya, al as Ma } from "./index-CMGxe_M1.js";
1
+ import { _ as l, N as e, s as u, a1 as o, t, u as U, Q as i, v as r, w as n, x as c, y as S, U as d, W as F, O as p, z as b, h as m, X as g, Y as k, A as T, a5 as P, a6 as h, a7 as w, a8 as y, ad as A, a9 as L, aa as v, ab as M, ac as x, H as B, I as R, J as D, K as f, L as C, B as I, am as N, C as E, D as j, R as q, S as G, j as V, T as z, k as H, Z as O, $ as W, a2 as J, a3 as K, a0 as Q, ae as X, af as Y, ag as Z, ah as _, M as $, G as aa, ai as sa, aj as la, ak as ea, al as ua, V as oa, an as ta, ao as Ua, E as ia, m as ra, n as na, o as ca, p as Sa, q as da, ap as Fa, aq as pa, ar as ba, F as ma, P as ga, f as ka, b as Ta, d as Pa, c as ha, e as wa, aw as ya, ay as Aa, a4 as La, as as va, at as Ma, ax as xa, av as Ba, au as Ra, i as Da } from "./index-BkFIm5Ds.js";
2
2
  export {
3
3
  l as UluAccordion,
4
4
  e as UluAdaptiveLayout,
5
5
  u as UluAlert,
6
6
  o as UluAnimateNumber,
7
- U as UluBadge,
8
- t as UluBadgeStack,
9
- n as UluBreadcrumb,
10
- i as UluButton,
11
- r as UluCallout,
7
+ t as UluBadge,
8
+ U as UluBadgeStack,
9
+ i as UluBreadcrumb,
10
+ r as UluButton,
11
+ n as UluButtonVerbose,
12
+ c as UluCallout,
12
13
  S as UluCard,
13
- c as UluCheckboxMenu,
14
14
  d as UluCollapsibleRegion,
15
- g as UluCondText,
15
+ F as UluCondText,
16
16
  p as UluDataGrid,
17
- k as UluDefinitionList,
17
+ b as UluDefinitionList,
18
18
  m as UluDropdown,
19
- T as UluEmpty,
20
- b as UluEmptyView,
21
- h as UluExternalLink,
22
- F as UluFacets,
23
- P as UluFacetsList,
24
- A as UluFacetsSearch,
25
- w as UluFileDisplay,
26
- y as UluFormDropzone,
27
- M as UluFormFile,
28
- v as UluFormMessage,
29
- x as UluFormSelect,
30
- B as UluFormText,
31
- D as UluIcon,
32
- L as UluImageSlideShow,
33
- f as UluList,
34
- C as UluMain,
35
- I as UluMenu,
36
- R as UluMenuStack,
37
- N as UluModal,
38
- E as UluNavStrip,
39
- z as UluOverflowPopover,
40
- G as UluPlaceholderImage,
41
- j as UluPlaceholderText,
42
- q as UluProgressBar,
43
- O as UluProgressDonut,
44
- V as UluRouteAnnouncer,
45
- W as UluScrollAnchors,
46
- H as UluScrollAnchorsNav,
47
- J as UluScrollAnchorsNavAnimated,
48
- K as UluScrollAnchorsSection,
49
- Q as UluSearchForm,
50
- X as UluShowSkeleton,
51
- Y as UluSkeletonContent,
52
- Z as UluSkeletonMedia,
53
- _ as UluSkeletonTextInline,
54
- $ as UluSkipLink,
55
- aa as UluSlideShow,
56
- sa as UluSlideShowSlide,
57
- la as UluSpokeSpinner,
58
- ea as UluTab,
59
- ua as UluTabGroup,
60
- oa as UluTabList,
61
- Ua as UluTabPanel,
62
- ta as UluTabPanels,
63
- na as UluTableSticky,
64
- ia as UluTableStickyRows,
65
- ra as UluTableStickyTable,
66
- Sa as UluTag,
67
- ca as UluTitleRail,
68
- da as breakpointsPlugin,
69
- ga as getDefaultSettings,
70
- pa as getIconByType,
71
- ka as getSetting,
72
- ma as getSettings,
73
- Ta as modalsPlugin,
74
- ba as popoversPlugin,
75
- ha as toastPlugin,
76
- Fa as updateSetting,
77
- Pa as updateSettings,
78
- Aa as useBreakpointManager,
79
- wa as useIcon,
80
- ya as useModifiers,
81
- Ma as useWindowResize
19
+ g as UluEmpty,
20
+ k as UluEmptyView,
21
+ T as UluExternalLink,
22
+ P as UluFacetsFilterLists,
23
+ h as UluFacetsFilterPopovers,
24
+ w as UluFacetsFilterSelects,
25
+ y as UluFacetsHeaderLayout,
26
+ A as UluFacetsList,
27
+ L as UluFacetsResults,
28
+ v as UluFacetsSearch,
29
+ M as UluFacetsSidebarLayout,
30
+ x as UluFacetsSort,
31
+ B as UluFileDisplay,
32
+ R as UluFormFile,
33
+ D as UluFormMessage,
34
+ f as UluFormSelect,
35
+ C as UluFormText,
36
+ I as UluIcon,
37
+ N as UluImageSlideShow,
38
+ E as UluList,
39
+ j as UluMain,
40
+ q as UluMenu,
41
+ G as UluMenuStack,
42
+ V as UluModal,
43
+ z as UluNavStrip,
44
+ H as UluOverflowPopover,
45
+ O as UluPlaceholderImage,
46
+ W as UluPlaceholderText,
47
+ J as UluProgressBar,
48
+ K as UluProgressDonut,
49
+ Q as UluRouteAnnouncer,
50
+ X as UluScrollAnchors,
51
+ Y as UluScrollAnchorsNav,
52
+ Z as UluScrollAnchorsNavAnimated,
53
+ _ as UluScrollAnchorsSection,
54
+ $ as UluSearchForm,
55
+ aa as UluSelectableMenu,
56
+ sa as UluShowSkeleton,
57
+ la as UluSkeletonContent,
58
+ ea as UluSkeletonMedia,
59
+ ua as UluSkeletonText,
60
+ oa as UluSkipLink,
61
+ ta as UluSlideShow,
62
+ Ua as UluSlideShowSlide,
63
+ ia as UluSpokeSpinner,
64
+ ra as UluTab,
65
+ na as UluTabGroup,
66
+ ca as UluTabList,
67
+ Sa as UluTabPanel,
68
+ da as UluTabPanels,
69
+ Fa as UluTableSticky,
70
+ pa as UluTableStickyRows,
71
+ ba as UluTableStickyTable,
72
+ ma as UluTag,
73
+ ga as UluTitleRail,
74
+ ka as breakpointsPlugin,
75
+ Ta as corePlugin,
76
+ Pa as modalsPlugin,
77
+ ha as popoversPlugin,
78
+ wa as toastPlugin,
79
+ ya as useBreakpointManager,
80
+ Aa as useDocumentTitle,
81
+ La as useFacets,
82
+ va as useIcon,
83
+ Ma as useModifiers,
84
+ xa as usePagination,
85
+ Ba as useRequiredInject,
86
+ Ra as useWindowResize,
87
+ Da as utils
82
88
  };