@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.
- package/README.md +10 -2
- package/dist/{breakpoints-DVO2G7-7.js → breakpoints-SWofnYUx.js} +1 -1
- package/dist/frontend-vue.js +1 -1
- package/dist/{index-BPVCOXRL.js → index-CtdKSn3_.js} +326 -338
- package/lib/components/collapsible/UluAccordion.vue +1 -1
- package/lib/components/collapsible/UluModal.vue +4 -5
- package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
- package/lib/components/elements/UluAlert.vue +1 -2
- package/lib/components/elements/UluButton.vue +2 -2
- package/lib/components/elements/UluExternalLink.vue +1 -2
- package/lib/components/elements/UluIcon.vue +6 -11
- package/lib/components/elements/UluTag.vue +1 -1
- package/lib/components/layout/UluTitleRail.vue +2 -4
- package/lib/components/navigation/UluBreadcrumb.vue +1 -2
- package/lib/components/navigation/UluMenu.vue +1 -1
- package/lib/plugins/core/index.js +5 -5
- package/lib/plugins/toast/UluToast.vue +1 -1
- package/package.json +15 -5
- package/types/components/index.d.ts +2 -0
- package/types/components/index.d.ts.map +1 -0
- package/types/components/systems/index.d.ts +2 -0
- package/types/components/systems/index.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/symbols.d.ts +7 -0
- package/types/components/systems/scroll-anchors/symbols.d.ts.map +1 -0
- package/types/composables/index.d.ts +5 -0
- package/types/composables/index.d.ts.map +1 -0
- package/types/composables/useBreakpointManager.d.ts +8 -0
- package/types/composables/useBreakpointManager.d.ts.map +1 -0
- package/types/composables/useIcon.d.ts +6 -0
- package/types/composables/useIcon.d.ts.map +1 -0
- package/types/composables/useModifiers.d.ts +69 -0
- package/types/composables/useModifiers.d.ts.map +1 -0
- package/types/composables/useWindowResize.d.ts +6 -0
- package/types/composables/useWindowResize.d.ts.map +1 -0
- package/types/index.d.ts +4 -0
- package/types/index.d.ts.map +1 -0
- package/types/plugins/breakpoints/index.d.ts +2 -0
- package/types/plugins/breakpoints/index.d.ts.map +1 -0
- package/types/plugins/core/index.d.ts +3 -0
- package/types/plugins/core/index.d.ts.map +1 -0
- package/types/plugins/index.d.ts +6 -0
- package/types/plugins/index.d.ts.map +1 -0
- package/types/plugins/modals/api.d.ts +34 -0
- package/types/plugins/modals/api.d.ts.map +1 -0
- package/types/plugins/modals/index.d.ts +28 -0
- package/types/plugins/modals/index.d.ts.map +1 -0
- package/types/plugins/modals/useModals.d.ts +2 -0
- package/types/plugins/modals/useModals.d.ts.map +1 -0
- package/types/plugins/popovers/defaults.d.ts +14 -0
- package/types/plugins/popovers/defaults.d.ts.map +1 -0
- package/types/plugins/popovers/directive.d.ts +8 -0
- package/types/plugins/popovers/directive.d.ts.map +1 -0
- package/types/plugins/popovers/index.d.ts +7 -0
- package/types/plugins/popovers/index.d.ts.map +1 -0
- package/types/plugins/popovers/manager.d.ts +52 -0
- package/types/plugins/popovers/manager.d.ts.map +1 -0
- package/types/plugins/popovers/useFollow.d.ts +31 -0
- package/types/plugins/popovers/useFollow.d.ts.map +1 -0
- package/types/plugins/popovers/utils.d.ts +2 -0
- package/types/plugins/popovers/utils.d.ts.map +1 -0
- package/types/plugins/toast/defaults.d.ts +15 -0
- package/types/plugins/toast/defaults.d.ts.map +1 -0
- package/types/plugins/toast/index.d.ts +5 -0
- package/types/plugins/toast/index.d.ts.map +1 -0
- package/types/plugins/toast/store.d.ts +22 -0
- package/types/plugins/toast/store.d.ts.map +1 -0
- package/types/plugins/toast/useToast.d.ts +2 -0
- package/types/plugins/toast/useToast.d.ts.map +1 -0
- package/types/utils/dom.d.ts +8 -0
- package/types/utils/dom.d.ts.map +1 -0
- package/types/utils/placeholder.d.ts +8 -0
- package/types/utils/placeholder.d.ts.map +1 -0
- package/types/utils/vue-router.d.ts +122 -0
- 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>
|
package/dist/frontend-vue.js
CHANGED
|
@@ -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-
|
|
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,
|