@ulu/frontend-vue 0.1.0-beta.5 → 0.1.0-beta.7

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 (74) hide show
  1. package/README.md +10 -2
  2. package/dist/{breakpoints-DVO2G7-7.js → breakpoints-SWofnYUx.js} +1 -1
  3. package/dist/frontend-vue.js +1 -1
  4. package/dist/{index-BPVCOXRL.js → index-CtdKSn3_.js} +326 -338
  5. package/lib/components/collapsible/UluAccordion.vue +1 -1
  6. package/lib/components/collapsible/UluModal.vue +4 -5
  7. package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
  8. package/lib/components/elements/UluAlert.vue +1 -2
  9. package/lib/components/elements/UluButton.vue +2 -2
  10. package/lib/components/elements/UluExternalLink.vue +1 -2
  11. package/lib/components/elements/UluIcon.vue +6 -11
  12. package/lib/components/elements/UluTag.vue +1 -1
  13. package/lib/components/layout/UluTitleRail.vue +2 -4
  14. package/lib/components/navigation/UluBreadcrumb.vue +1 -2
  15. package/lib/components/navigation/UluMenu.vue +1 -1
  16. package/lib/plugins/core/index.js +5 -5
  17. package/lib/plugins/toast/UluToast.vue +1 -1
  18. package/package.json +15 -5
  19. package/types/components/index.d.ts +2 -0
  20. package/types/components/index.d.ts.map +1 -0
  21. package/types/components/systems/index.d.ts +2 -0
  22. package/types/components/systems/index.d.ts.map +1 -0
  23. package/types/components/systems/scroll-anchors/symbols.d.ts +7 -0
  24. package/types/components/systems/scroll-anchors/symbols.d.ts.map +1 -0
  25. package/types/composables/index.d.ts +5 -0
  26. package/types/composables/index.d.ts.map +1 -0
  27. package/types/composables/useBreakpointManager.d.ts +8 -0
  28. package/types/composables/useBreakpointManager.d.ts.map +1 -0
  29. package/types/composables/useIcon.d.ts +6 -0
  30. package/types/composables/useIcon.d.ts.map +1 -0
  31. package/types/composables/useModifiers.d.ts +69 -0
  32. package/types/composables/useModifiers.d.ts.map +1 -0
  33. package/types/composables/useWindowResize.d.ts +6 -0
  34. package/types/composables/useWindowResize.d.ts.map +1 -0
  35. package/types/index.d.ts +4 -0
  36. package/types/index.d.ts.map +1 -0
  37. package/types/plugins/breakpoints/index.d.ts +2 -0
  38. package/types/plugins/breakpoints/index.d.ts.map +1 -0
  39. package/types/plugins/core/index.d.ts +3 -0
  40. package/types/plugins/core/index.d.ts.map +1 -0
  41. package/types/plugins/index.d.ts +6 -0
  42. package/types/plugins/index.d.ts.map +1 -0
  43. package/types/plugins/modals/api.d.ts +34 -0
  44. package/types/plugins/modals/api.d.ts.map +1 -0
  45. package/types/plugins/modals/index.d.ts +28 -0
  46. package/types/plugins/modals/index.d.ts.map +1 -0
  47. package/types/plugins/modals/useModals.d.ts +2 -0
  48. package/types/plugins/modals/useModals.d.ts.map +1 -0
  49. package/types/plugins/popovers/defaults.d.ts +14 -0
  50. package/types/plugins/popovers/defaults.d.ts.map +1 -0
  51. package/types/plugins/popovers/directive.d.ts +8 -0
  52. package/types/plugins/popovers/directive.d.ts.map +1 -0
  53. package/types/plugins/popovers/index.d.ts +7 -0
  54. package/types/plugins/popovers/index.d.ts.map +1 -0
  55. package/types/plugins/popovers/manager.d.ts +52 -0
  56. package/types/plugins/popovers/manager.d.ts.map +1 -0
  57. package/types/plugins/popovers/useFollow.d.ts +31 -0
  58. package/types/plugins/popovers/useFollow.d.ts.map +1 -0
  59. package/types/plugins/popovers/utils.d.ts +2 -0
  60. package/types/plugins/popovers/utils.d.ts.map +1 -0
  61. package/types/plugins/toast/defaults.d.ts +15 -0
  62. package/types/plugins/toast/defaults.d.ts.map +1 -0
  63. package/types/plugins/toast/index.d.ts +5 -0
  64. package/types/plugins/toast/index.d.ts.map +1 -0
  65. package/types/plugins/toast/store.d.ts +22 -0
  66. package/types/plugins/toast/store.d.ts.map +1 -0
  67. package/types/plugins/toast/useToast.d.ts +2 -0
  68. package/types/plugins/toast/useToast.d.ts.map +1 -0
  69. package/types/utils/dom.d.ts +8 -0
  70. package/types/utils/dom.d.ts.map +1 -0
  71. package/types/utils/placeholder.d.ts +8 -0
  72. package/types/utils/placeholder.d.ts.map +1 -0
  73. package/types/utils/vue-router.d.ts +122 -0
  74. package/types/utils/vue-router.d.ts.map +1 -0
package/README.md CHANGED
@@ -4,8 +4,16 @@ Vue component library for the [Ulu frontend](https://jscherbe.github.io/frontend
4
4
 
5
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
6
 
7
- - [Documentation](https://jscherbe.github.io/frontend-vue/)
7
+ - [Documentation / Demos](https://jscherbe.github.io/frontend-vue/)
8
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
+
9
17
 
10
18
  ## Installation
11
19
 
@@ -88,7 +96,7 @@ Components are designed to be imported individually. This approach is highly rec
88
96
  **Example:**
89
97
  ```vue
90
98
  <script setup>
91
- import { UluButton, UluAlert } from '@ulu/frontend-vue';
99
+ import { UluButton, UluAlert } from '@ulu/frontend-vue';
92
100
  </script>
93
101
 
94
102
  <template>
@@ -1,4 +1,4 @@
1
- import { l as o, r as h, a as p, g as v } from "./index-BPVCOXRL.js";
1
+ import { l as o, r as h, a as p, g as v } from "./index-CtdKSn3_.js";
2
2
  const k = {
3
3
  iconClassClose: "css-icon css-icon--close",
4
4
  iconClassDragX: "css-icon css-icon--drag-x",
@@ -1,4 +1,4 @@
1
- import { _ as s, L as u, q as e, $ as U, s as o, t as i, O as n, 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 f, P as D, Q as I, h as R, R as N, j as E, X as G, Y as j, a0 as z, a1 as O, Z as V, a5 as W, a6 as q, 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 ua, n as ea, o as Ua, p as oa, ag as ia, ah as na, ai as ta, D as ra, N as ca, e as Sa, i as da, c as ka, b as pa, d as ma, am as ba, aj as ga, ak as Ta, al as ha } from "./index-BPVCOXRL.js";
1
+ import { _ as s, L as u, q as e, $ as U, s as o, t as i, O as n, 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 f, P as D, Q as I, h as R, R as N, j as E, X as G, Y as j, a0 as z, a1 as O, Z as V, a5 as W, a6 as q, 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 ua, n as ea, o as Ua, p as oa, ag as ia, ah as na, ai as ta, D as ra, N as ca, e as Sa, i as da, c as ka, b as pa, d as ma, am as ba, aj as ga, ak as Ta, al as ha } from "./index-CtdKSn3_.js";
2
2
  export {
3
3
  s as UluAccordion,
4
4
  u as UluAdaptiveLayout,