@ulu/frontend-vue 0.5.3 → 0.5.4
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/dist/components/elements/UluCounterList.vue.d.ts +32 -0
- package/dist/components/elements/UluCounterList.vue.d.ts.map +1 -0
- package/dist/components/elements/UluCounterList.vue.js +77 -0
- package/dist/components/elements/UluDataTable.vue.d.ts +43 -0
- package/dist/components/elements/UluDataTable.vue.d.ts.map +1 -0
- package/dist/components/elements/UluDataTable.vue.js +114 -0
- package/dist/components/elements/UluDefinitionList.vue.d.ts +2 -2
- package/dist/components/elements/UluList.vue.d.ts +4 -0
- package/dist/components/elements/UluList.vue.d.ts.map +1 -1
- package/dist/components/elements/UluList.vue.js +40 -23
- package/dist/components/elements/UluListItem.vue.d.ts +4 -2
- package/dist/components/elements/UluListItem.vue.d.ts.map +1 -1
- package/dist/components/elements/UluListItem.vue.js +17 -10
- package/dist/components/elements/UluTable.vue.d.ts +48 -0
- package/dist/components/elements/UluTable.vue.d.ts.map +1 -0
- package/dist/components/elements/UluTable.vue.js +211 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/systems/table-sticky/UluTableSticky.vue.d.ts +104 -104
- package/dist/components/systems/table-sticky/UluTableSticky.vue.d.ts.map +1 -1
- package/dist/components/systems/table-sticky/UluTableSticky.vue.js +218 -256
- package/dist/components/systems/table-sticky/UluTableStickyRows.vue.d.ts +4 -4
- package/dist/components/systems/table-sticky/UluTableStickyTable.vue.d.ts +12 -12
- package/dist/components/utils/UluPlaceholderImage.vue.d.ts +2 -2
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/useTableData.d.ts +30 -0
- package/dist/composables/useTableData.d.ts.map +1 -0
- package/dist/composables/useTableData.js +68 -0
- package/dist/index.js +190 -182
- package/lib/components/elements/UluCounterList.vue +77 -0
- package/lib/components/elements/UluDataTable.vue +115 -0
- package/lib/components/elements/UluDefinitionList.vue +1 -1
- package/lib/components/elements/UluList.vue +23 -8
- package/lib/components/elements/UluListItem.vue +11 -6
- package/lib/components/elements/UluTable.vue +217 -0
- package/lib/components/index.js +3 -0
- package/lib/components/systems/table-sticky/UluTableSticky.vue +26 -171
- package/lib/composables/index.js +1 -0
- package/lib/composables/useTableData.js +189 -0
- package/package.json +3 -3
|
@@ -6,30 +6,30 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "column-sorted" | "actual-header-removed" | "actual-header-added", ...args: any[]) => void;
|
|
8
8
|
classes: Record<string, any>;
|
|
9
|
-
isActual: boolean;
|
|
10
9
|
headerRows: unknown[];
|
|
11
|
-
|
|
10
|
+
isActual: boolean;
|
|
12
11
|
rows?: unknown[] | undefined;
|
|
13
|
-
rowColumns?: unknown[] | undefined;
|
|
14
|
-
columnWidth?: string | undefined;
|
|
15
|
-
resolveClasses?: Function | undefined;
|
|
16
|
-
idPrefix?: string | undefined;
|
|
17
12
|
footerRows?: unknown[] | undefined;
|
|
13
|
+
idPrefix?: string | undefined;
|
|
14
|
+
caption?: string | undefined;
|
|
18
15
|
getRowValue?: Function | undefined;
|
|
19
16
|
getColumnTitle?: Function | undefined;
|
|
17
|
+
rowColumns?: unknown[] | undefined;
|
|
18
|
+
resolveClasses?: Function | undefined;
|
|
19
|
+
columnWidth?: string | undefined;
|
|
20
20
|
$props: {
|
|
21
21
|
readonly classes?: Record<string, any> | undefined;
|
|
22
|
-
readonly isActual?: boolean | undefined;
|
|
23
22
|
readonly headerRows?: unknown[] | undefined;
|
|
24
|
-
readonly
|
|
23
|
+
readonly isActual?: boolean | undefined;
|
|
25
24
|
readonly rows?: unknown[] | undefined;
|
|
26
|
-
readonly rowColumns?: unknown[] | undefined;
|
|
27
|
-
readonly columnWidth?: string | undefined;
|
|
28
|
-
readonly resolveClasses?: Function | undefined;
|
|
29
|
-
readonly idPrefix?: string | undefined;
|
|
30
25
|
readonly footerRows?: unknown[] | undefined;
|
|
26
|
+
readonly idPrefix?: string | undefined;
|
|
27
|
+
readonly caption?: string | undefined;
|
|
31
28
|
readonly getRowValue?: Function | undefined;
|
|
32
29
|
readonly getColumnTitle?: Function | undefined;
|
|
30
|
+
readonly rowColumns?: unknown[] | undefined;
|
|
31
|
+
readonly resolveClasses?: Function | undefined;
|
|
32
|
+
readonly columnWidth?: string | undefined;
|
|
33
33
|
};
|
|
34
34
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLTableElement>;
|
|
35
35
|
type __VLS_TemplateResult = {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
-
width: string | number;
|
|
3
2
|
height: string | number;
|
|
3
|
+
width: string | number;
|
|
4
4
|
random: boolean;
|
|
5
5
|
alt?: string | undefined;
|
|
6
6
|
imageId?: string | undefined;
|
|
7
7
|
$props: {
|
|
8
|
-
readonly width?: string | number | undefined;
|
|
9
8
|
readonly height?: string | number | undefined;
|
|
9
|
+
readonly width?: string | number | undefined;
|
|
10
10
|
readonly random?: boolean | undefined;
|
|
11
11
|
readonly alt?: string | undefined;
|
|
12
12
|
readonly imageId?: string | undefined;
|
|
@@ -6,4 +6,5 @@ export { useBreakpointManager } from './useBreakpointManager.js';
|
|
|
6
6
|
export { usePagination } from './usePagination.js';
|
|
7
7
|
export { useDocumentTitle } from './useDocumentTitle.js';
|
|
8
8
|
export { useUluFloating } from './useUluFloating.js';
|
|
9
|
+
export { useTableData } from './useTableData.js';
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Composable for managing and normalizing table data structures.
|
|
3
|
+
* Generates rows, columns, and accessibility attributes for complex tables.
|
|
4
|
+
*
|
|
5
|
+
* @param {Object} props - The component props containing columns, rows, footerRows, and idPrefix.
|
|
6
|
+
* @param {Function} [onChange] - Optional callback triggered when rows or columns data change (useful for layout recalculation).
|
|
7
|
+
*/
|
|
8
|
+
export function useTableData(props: Object, onChange?: Function): {
|
|
9
|
+
currentColumns: any;
|
|
10
|
+
currentRows: import('vue').Ref<any, any>;
|
|
11
|
+
currentFooterRows: import('vue').Ref<any, any>;
|
|
12
|
+
headerRows: import('vue').Ref<{
|
|
13
|
+
height: string;
|
|
14
|
+
boxHeight: null;
|
|
15
|
+
columns: never[];
|
|
16
|
+
id: string;
|
|
17
|
+
}[], {
|
|
18
|
+
height: string;
|
|
19
|
+
boxHeight: null;
|
|
20
|
+
columns: never[];
|
|
21
|
+
id: string;
|
|
22
|
+
}[] | {
|
|
23
|
+
height: string;
|
|
24
|
+
boxHeight: null;
|
|
25
|
+
columns: never[];
|
|
26
|
+
id: string;
|
|
27
|
+
}[]>;
|
|
28
|
+
rowColumns: import('vue').ComputedRef<any[]>;
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=useTableData.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useTableData.d.ts","sourceRoot":"","sources":["../../lib/composables/useTableData.js"],"names":[],"mappings":"AAEA;;;;;;GAMG;AACH,oCAHW,MAAM;;;;;;;;;;;;;;;;;;;;;EAsLhB"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { ref as f, computed as E, watch as m } from "vue";
|
|
2
|
+
function A(u, h = () => {
|
|
3
|
+
}) {
|
|
4
|
+
const w = (o) => {
|
|
5
|
+
let s = 0;
|
|
6
|
+
return () => `${u.idPrefix || "table"}-${o}-${++s}`;
|
|
7
|
+
}, R = () => {
|
|
8
|
+
if (!u.columns) return [];
|
|
9
|
+
const o = w("c"), s = (t, n) => {
|
|
10
|
+
const e = { ...t };
|
|
11
|
+
e.id = o(), e.parent = n, e.width = "auto", e.boxWidth = null, e.sortApplied = !1, e.sortAscending = !1, e.sortFocused = !1;
|
|
12
|
+
let r = [];
|
|
13
|
+
return n && (n.headers && n.headers.length ? r = [...n.headers] : r.push(n.id)), r.push(e.id), e.headers = r, e.columns ? e.columns = e.columns.map((c) => s(c, e)) : !e.key && !e.value && !e.slot && console.warn("useTableData: Missing 'key', 'value' or 'slot' in column configuration for", e), e;
|
|
14
|
+
};
|
|
15
|
+
return u.columns.map((t) => s(t, null));
|
|
16
|
+
}, g = (o, s) => {
|
|
17
|
+
const t = s.columns ? s.columns.reduce(g, 1) + 1 : 1;
|
|
18
|
+
return o > t ? o : t;
|
|
19
|
+
}, v = (o) => {
|
|
20
|
+
if (!o || o.length === 0) return [];
|
|
21
|
+
const s = w("hr"), t = o.reduce(g, 1), n = new Array(t).fill(null).map(() => ({
|
|
22
|
+
height: "auto",
|
|
23
|
+
boxHeight: null,
|
|
24
|
+
columns: [],
|
|
25
|
+
id: s()
|
|
26
|
+
}));
|
|
27
|
+
function e(r, c) {
|
|
28
|
+
const l = c.columns;
|
|
29
|
+
l && l.forEach((i) => e(1 + r, i)), c.rowspan = l ? 1 : t - r, c.colspan = l ? l.reduce((i, $) => i + $.colspan, 0) : 1, n[r].columns.push(c);
|
|
30
|
+
}
|
|
31
|
+
return o.forEach((r) => e(0, r)), n;
|
|
32
|
+
}, d = (o, s = !1) => {
|
|
33
|
+
if (!o) return [];
|
|
34
|
+
const t = w(s ? "fr" : "br");
|
|
35
|
+
return o.map((n) => ({
|
|
36
|
+
height: null,
|
|
37
|
+
boxHeight: null,
|
|
38
|
+
data: n,
|
|
39
|
+
id: t()
|
|
40
|
+
}));
|
|
41
|
+
}, a = f(R()), H = f(d(u.rows)), b = f(d(u.footerRows, !0)), x = f(v(a.value)), I = E(() => {
|
|
42
|
+
const o = a.value, s = [], t = (e) => {
|
|
43
|
+
e.columns ? e.columns.forEach(t) : s.push(e);
|
|
44
|
+
};
|
|
45
|
+
o.forEach(t);
|
|
46
|
+
let n = [];
|
|
47
|
+
return s.forEach((e, r) => {
|
|
48
|
+
const c = n.slice();
|
|
49
|
+
e.getRowHeaders = (l) => c.map((i) => i(l)).join(" "), e.rowHeader && (e.getRowHeaderId = (l) => `${u.idPrefix || "table"}-rh-${l}-${r}`, n.push(e.getRowHeaderId));
|
|
50
|
+
}), s;
|
|
51
|
+
});
|
|
52
|
+
return m(() => u.columns, () => {
|
|
53
|
+
a.value = R(), x.value = v(a.value), h();
|
|
54
|
+
}, { deep: !0 }), m(() => u.rows, () => {
|
|
55
|
+
H.value = d(u.rows), h();
|
|
56
|
+
}, { deep: !0 }), m(() => u.footerRows, () => {
|
|
57
|
+
b.value = d(u.footerRows, !0), h();
|
|
58
|
+
}, { deep: !0 }), {
|
|
59
|
+
currentColumns: a,
|
|
60
|
+
currentRows: H,
|
|
61
|
+
currentFooterRows: b,
|
|
62
|
+
headerRows: x,
|
|
63
|
+
rowColumns: I
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
export {
|
|
67
|
+
A as useTableData
|
|
68
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -8,11 +8,11 @@ import { default as U } from "./plugins/breakpoints/index.js";
|
|
|
8
8
|
import { default as n } from "./components/collapsible/UluAccordion.vue.js";
|
|
9
9
|
import { default as S } from "./components/collapsible/UluAccordionGroup.vue.js";
|
|
10
10
|
import { default as T } from "./components/collapsible/UluCollapsible.vue.js";
|
|
11
|
-
import { default as
|
|
11
|
+
import { default as A } from "./components/collapsible/UluDropdown.vue.js";
|
|
12
12
|
import { default as h } from "./components/collapsible/UluModal.vue.js";
|
|
13
13
|
import { default as P } from "./components/collapsible/UluOverflowPopover.vue.js";
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
14
|
+
import { default as C } from "./components/collapsible/UluTab.vue.js";
|
|
15
|
+
import { default as y } from "./components/collapsible/UluTabGroup.vue.js";
|
|
16
16
|
import { default as R } from "./components/collapsible/UluTabList.vue.js";
|
|
17
17
|
import { default as w } from "./components/collapsible/UluTabPanel.vue.js";
|
|
18
18
|
import { default as D } from "./components/collapsible/UluTabPanels.vue.js";
|
|
@@ -24,207 +24,215 @@ import { default as z } from "./components/elements/UluButtonVerbose.vue.js";
|
|
|
24
24
|
import { default as K } from "./components/elements/UluCallout.vue.js";
|
|
25
25
|
import { default as X } from "./components/elements/UluCaptionedFigure.vue.js";
|
|
26
26
|
import { default as Z } from "./components/elements/UluCard.vue.js";
|
|
27
|
-
import { default as $ } from "./components/elements/
|
|
28
|
-
import { default as oe } from "./components/elements/
|
|
29
|
-
import { default as te } from "./components/elements/
|
|
30
|
-
import { default as le } from "./components/elements/
|
|
31
|
-
import { default as fe } from "./components/elements/
|
|
32
|
-
import { default as me } from "./components/elements/
|
|
33
|
-
import { default as de } from "./components/elements/
|
|
34
|
-
import { default as Ue } from "./components/elements/
|
|
35
|
-
import { default as ne } from "./components/elements/
|
|
36
|
-
import { default as Se } from "./components/elements/
|
|
37
|
-
import { default as Te } from "./components/elements/
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as he } from "./components/elements/
|
|
40
|
-
import { default as Pe } from "./components/
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as Re } from "./components/forms/
|
|
44
|
-
import { default as we } from "./components/forms/
|
|
45
|
-
import { default as De } from "./components/forms/
|
|
46
|
-
import { default as Ee } from "./components/forms/
|
|
47
|
-
import { default as We } from "./components/forms/
|
|
48
|
-
import { default as He } from "./components/forms/
|
|
49
|
-
import { default as Ve } from "./components/forms/
|
|
50
|
-
import { default as ze } from "./components/forms/
|
|
51
|
-
import { default as Ke } from "./components/forms/
|
|
52
|
-
import { default as Xe } from "./components/forms/
|
|
53
|
-
import { default as Ze } from "./components/forms/
|
|
54
|
-
import { default as $e } from "./components/forms/
|
|
55
|
-
import { default as oo } from "./components/forms/
|
|
56
|
-
import { default as to } from "./components/
|
|
57
|
-
import { default as lo } from "./components/
|
|
58
|
-
import { default as fo } from "./components/
|
|
59
|
-
import { default as mo } from "./components/layout/
|
|
60
|
-
import { default as xo } from "./components/
|
|
61
|
-
import { default as io } from "./components/
|
|
62
|
-
import { default as co } from "./components/
|
|
63
|
-
import { default as Fo } from "./components/navigation/
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as ko } from "./components/
|
|
67
|
-
import { default as Lo } from "./components/
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as Io } from "./components/utils/
|
|
70
|
-
import { default as Mo } from "./components/utils/
|
|
71
|
-
import { default as Bo } from "./components/utils/
|
|
72
|
-
import { default as No } from "./components/
|
|
73
|
-
import { default as Go } from "./components/
|
|
74
|
-
import { default as qo } from "./components/
|
|
75
|
-
import { default as Oo } from "./components/
|
|
76
|
-
import { default as jo } from "./components/
|
|
77
|
-
import { default as Jo } from "./components/
|
|
78
|
-
import { default as Qo } from "./components/systems/facets/
|
|
79
|
-
import { default as Yo } from "./components/systems/facets/
|
|
80
|
-
import { default as _o } from "./components/systems/facets/
|
|
81
|
-
import { default as er } from "./components/systems/facets/
|
|
82
|
-
import { default as rr } from "./components/systems/facets/
|
|
83
|
-
import { default as ar } from "./components/systems/facets/
|
|
84
|
-
import { default as ur } from "./components/systems/facets/
|
|
85
|
-
import { default as sr } from "./components/systems/facets/
|
|
86
|
-
import { default as pr } from "./components/systems/
|
|
87
|
-
import { default as xr } from "./components/systems/
|
|
88
|
-
import { default as ir } from "./components/systems/
|
|
89
|
-
import { default as cr } from "./components/systems/scroll-anchors/
|
|
90
|
-
import { default as Fr } from "./components/systems/scroll-anchors/
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as kr } from "./components/systems/
|
|
94
|
-
import { default as Lr } from "./components/systems/skeleton/
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as Ir } from "./components/systems/
|
|
97
|
-
import { default as Mr } from "./components/systems/
|
|
98
|
-
import {
|
|
99
|
-
import { default as Nr } from "./components/
|
|
100
|
-
import { default as Gr } from "./components/
|
|
101
|
-
import {
|
|
102
|
-
import { default as Or } from "./components/
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
27
|
+
import { default as $ } from "./components/elements/UluDataTable.vue.js";
|
|
28
|
+
import { default as oe } from "./components/elements/UluDefinitionList.vue.js";
|
|
29
|
+
import { default as te } from "./components/elements/UluDefinitionListItem.vue.js";
|
|
30
|
+
import { default as le } from "./components/elements/UluExternalLink.vue.js";
|
|
31
|
+
import { default as fe } from "./components/elements/UluIcon.vue.js";
|
|
32
|
+
import { default as me } from "./components/elements/UluImage.vue.js";
|
|
33
|
+
import { default as de } from "./components/elements/UluList.vue.js";
|
|
34
|
+
import { default as Ue } from "./components/elements/UluListItem.vue.js";
|
|
35
|
+
import { default as ne } from "./components/elements/UluCounterList.vue.js";
|
|
36
|
+
import { default as Se } from "./components/elements/UluOverflowScroller.vue.js";
|
|
37
|
+
import { default as Te } from "./components/elements/UluRule.vue.js";
|
|
38
|
+
import { default as Ae } from "./components/elements/UluScrollSlider.vue.js";
|
|
39
|
+
import { default as he } from "./components/elements/UluSlider.vue.js";
|
|
40
|
+
import { default as Pe } from "./components/elements/UluSpokeSpinner.vue.js";
|
|
41
|
+
import { default as Ce } from "./components/elements/UluTable.vue.js";
|
|
42
|
+
import { default as ye } from "./components/elements/UluTag.vue.js";
|
|
43
|
+
import { default as Re } from "./components/forms/UluSelectableMenu.vue.js";
|
|
44
|
+
import { default as we } from "./components/forms/UluFileDisplay.vue.js";
|
|
45
|
+
import { default as De } from "./components/forms/UluFormFile.vue.js";
|
|
46
|
+
import { default as Ee } from "./components/forms/UluFormMessage.vue.js";
|
|
47
|
+
import { default as We } from "./components/forms/UluFormSelect.vue.js";
|
|
48
|
+
import { default as He } from "./components/forms/UluFormText.vue.js";
|
|
49
|
+
import { default as Ve } from "./components/forms/UluSearchForm.vue.js";
|
|
50
|
+
import { default as ze } from "./components/forms/UluForm.vue.js";
|
|
51
|
+
import { default as Ke } from "./components/forms/UluFormActions.vue.js";
|
|
52
|
+
import { default as Xe } from "./components/forms/UluFormCheckbox.vue.js";
|
|
53
|
+
import { default as Ze } from "./components/forms/UluFormFieldset.vue.js";
|
|
54
|
+
import { default as $e } from "./components/forms/UluFormItem.vue.js";
|
|
55
|
+
import { default as oo } from "./components/forms/UluFormItemsInline.vue.js";
|
|
56
|
+
import { default as to } from "./components/forms/UluFormRadio.vue.js";
|
|
57
|
+
import { default as lo } from "./components/forms/UluFormRequiredChar.vue.js";
|
|
58
|
+
import { default as fo } from "./components/forms/UluFormTextarea.vue.js";
|
|
59
|
+
import { default as mo } from "./components/layout/UluAdaptiveLayout.vue.js";
|
|
60
|
+
import { default as xo } from "./components/layout/UluDataGrid.vue.js";
|
|
61
|
+
import { default as io } from "./components/layout/UluTitleRail.vue.js";
|
|
62
|
+
import { default as co } from "./components/layout/UluWhenBreakpoint.vue.js";
|
|
63
|
+
import { default as Fo } from "./components/navigation/UluBreadcrumb.vue.js";
|
|
64
|
+
import { default as bo } from "./components/navigation/UluMenu.vue.js";
|
|
65
|
+
import { default as go } from "./components/navigation/UluMenuStack.vue.js";
|
|
66
|
+
import { default as ko } from "./components/navigation/UluNavStrip.vue.js";
|
|
67
|
+
import { default as Lo } from "./components/navigation/UluPager.vue.js";
|
|
68
|
+
import { default as vo } from "./components/utils/UluAction.vue.js";
|
|
69
|
+
import { default as Io } from "./components/utils/UluConditionalText.vue.js";
|
|
70
|
+
import { default as Mo } from "./components/utils/UluConditionalWrapper.vue.js";
|
|
71
|
+
import { default as Bo } from "./components/utils/UluPlaceholderImage.vue.js";
|
|
72
|
+
import { default as No } from "./components/utils/UluPlaceholderText.vue.js";
|
|
73
|
+
import { default as Go } from "./components/utils/UluRouteAnnouncer.vue.js";
|
|
74
|
+
import { default as qo } from "./components/utils/UluSanityRichText.vue.js";
|
|
75
|
+
import { default as Oo } from "./components/visualizations/UluAnimateNumber.vue.js";
|
|
76
|
+
import { default as jo } from "./components/visualizations/UluProgressBar.vue.js";
|
|
77
|
+
import { default as Jo } from "./components/visualizations/UluProgressCircle.vue.js";
|
|
78
|
+
import { default as Qo } from "./components/systems/facets/UluFacetsActiveFilters.vue.js";
|
|
79
|
+
import { default as Yo } from "./components/systems/facets/UluFacetsFilterLists.vue.js";
|
|
80
|
+
import { default as _o } from "./components/systems/facets/UluFacetsFilterAccordions.vue.js";
|
|
81
|
+
import { default as er } from "./components/systems/facets/UluFacetsFilterPopovers.vue.js";
|
|
82
|
+
import { default as rr } from "./components/systems/facets/UluFacetsFilterSelects.vue.js";
|
|
83
|
+
import { default as ar } from "./components/systems/facets/UluFacetsHeaderLayout.vue.js";
|
|
84
|
+
import { default as ur } from "./components/systems/facets/UluFacetsResults.vue.js";
|
|
85
|
+
import { default as sr } from "./components/systems/facets/UluFacetsSearch.vue.js";
|
|
86
|
+
import { default as pr } from "./components/systems/facets/UluFacetsSidebarLayout.vue.js";
|
|
87
|
+
import { default as xr } from "./components/systems/facets/UluFacetsSort.vue.js";
|
|
88
|
+
import { default as ir } from "./components/systems/facets/UluFacetsList.vue.js";
|
|
89
|
+
import { default as cr } from "./components/systems/scroll-anchors/UluScrollAnchors.vue.js";
|
|
90
|
+
import { default as Fr } from "./components/systems/scroll-anchors/UluScrollAnchorsNav.vue.js";
|
|
91
|
+
import { default as br } from "./components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.js";
|
|
92
|
+
import { default as gr } from "./components/systems/scroll-anchors/UluScrollAnchorsSection.vue.js";
|
|
93
|
+
import { default as kr } from "./components/systems/scroll-anchors/UluScrollAnchorsHeadlessSection.vue.js";
|
|
94
|
+
import { default as Lr } from "./components/systems/skeleton/UluShowSkeleton.vue.js";
|
|
95
|
+
import { default as vr } from "./components/systems/skeleton/UluSkeletonContent.vue.js";
|
|
96
|
+
import { default as Ir } from "./components/systems/skeleton/UluSkeletonMedia.vue.js";
|
|
97
|
+
import { default as Mr } from "./components/systems/skeleton/UluSkeletonText.vue.js";
|
|
98
|
+
import { default as Br } from "./components/systems/table-sticky/UluTableSticky.vue.js";
|
|
99
|
+
import { default as Nr } from "./components/systems/table-sticky/UluTableStickyRows.vue.js";
|
|
100
|
+
import { default as Gr } from "./components/systems/table-sticky/UluTableStickyTable.vue.js";
|
|
101
|
+
import { useTooltip as qr } from "./plugins/popovers/useTooltip.js";
|
|
102
|
+
import { default as Or } from "./components/elements/UluMain.vue.js";
|
|
103
|
+
import { default as jr } from "./components/navigation/UluSkipLink.vue.js";
|
|
104
|
+
import { default as Jr } from "./components/utils/UluEmpty.vue.js";
|
|
105
|
+
import { default as Qr } from "./components/utils/UluEmptyView.vue.js";
|
|
106
|
+
import { useFacets as Yr } from "./components/systems/facets/useFacets.js";
|
|
107
|
+
import { useScrollAnchors as _r } from "./components/systems/scroll-anchors/useScrollAnchors.js";
|
|
108
|
+
import { useScrollAnchorSection as et } from "./components/systems/scroll-anchors/useScrollAnchorSection.js";
|
|
109
|
+
import { useScrollAnchorSections as rt } from "./components/systems/scroll-anchors/useScrollAnchorSections.js";
|
|
110
|
+
import { useIcon as at } from "./composables/useIcon.js";
|
|
111
|
+
import { useModifiers as ut } from "./composables/useModifiers.js";
|
|
112
|
+
import { useWindowResize as st } from "./composables/useWindowResize.js";
|
|
113
|
+
import { useRequiredInject as pt } from "./composables/useRequiredInject.js";
|
|
114
|
+
import { useBreakpointManager as xt } from "./composables/useBreakpointManager.js";
|
|
115
|
+
import { usePagination as it } from "./composables/usePagination.js";
|
|
116
|
+
import { useDocumentTitle as ct } from "./composables/useDocumentTitle.js";
|
|
117
|
+
import { useUluFloating as Ft } from "./composables/useUluFloating.js";
|
|
118
|
+
import { useTableData as bt } from "./composables/useTableData.js";
|
|
115
119
|
export {
|
|
116
120
|
n as UluAccordion,
|
|
117
121
|
S as UluAccordionGroup,
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
vo as UluAction,
|
|
123
|
+
mo as UluAdaptiveLayout,
|
|
120
124
|
E as UluAlert,
|
|
121
|
-
|
|
125
|
+
Oo as UluAnimateNumber,
|
|
122
126
|
W as UluBadge,
|
|
123
127
|
H as UluBadgeStack,
|
|
124
|
-
|
|
128
|
+
Fo as UluBreadcrumb,
|
|
125
129
|
V as UluButton,
|
|
126
130
|
z as UluButtonVerbose,
|
|
127
131
|
K as UluCallout,
|
|
128
132
|
X as UluCaptionedFigure,
|
|
129
133
|
Z as UluCard,
|
|
130
134
|
T as UluCollapsible,
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
Yo as
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
135
|
+
Io as UluConditionalText,
|
|
136
|
+
Mo as UluConditionalWrapper,
|
|
137
|
+
ne as UluCounterList,
|
|
138
|
+
xo as UluDataGrid,
|
|
139
|
+
$ as UluDataTable,
|
|
140
|
+
oe as UluDefinitionList,
|
|
141
|
+
te as UluDefinitionListItem,
|
|
142
|
+
A as UluDropdown,
|
|
143
|
+
Jr as UluEmpty,
|
|
144
|
+
Qr as UluEmptyView,
|
|
145
|
+
le as UluExternalLink,
|
|
146
|
+
Qo as UluFacetsActiveFilters,
|
|
147
|
+
_o as UluFacetsFilterAccordions,
|
|
148
|
+
Yo as UluFacetsFilterLists,
|
|
149
|
+
er as UluFacetsFilterPopovers,
|
|
150
|
+
rr as UluFacetsFilterSelects,
|
|
151
|
+
ar as UluFacetsHeaderLayout,
|
|
152
|
+
ir as UluFacetsList,
|
|
153
|
+
ur as UluFacetsResults,
|
|
154
|
+
sr as UluFacetsSearch,
|
|
155
|
+
pr as UluFacetsSidebarLayout,
|
|
156
|
+
xr as UluFacetsSort,
|
|
157
|
+
we as UluFileDisplay,
|
|
158
|
+
ze as UluForm,
|
|
159
|
+
Ke as UluFormActions,
|
|
160
|
+
Xe as UluFormCheckbox,
|
|
161
|
+
Ze as UluFormFieldset,
|
|
162
|
+
De as UluFormFile,
|
|
163
|
+
$e as UluFormItem,
|
|
164
|
+
oo as UluFormItemsInline,
|
|
165
|
+
Ee as UluFormMessage,
|
|
166
|
+
to as UluFormRadio,
|
|
167
|
+
lo as UluFormRequiredChar,
|
|
168
|
+
We as UluFormSelect,
|
|
169
|
+
He as UluFormText,
|
|
170
|
+
fo as UluFormTextarea,
|
|
171
|
+
fe as UluIcon,
|
|
172
|
+
me as UluImage,
|
|
173
|
+
de as UluList,
|
|
174
|
+
Ue as UluListItem,
|
|
175
|
+
Or as UluMain,
|
|
176
|
+
bo as UluMenu,
|
|
177
|
+
go as UluMenuStack,
|
|
172
178
|
h as UluModal,
|
|
173
|
-
|
|
179
|
+
ko as UluNavStrip,
|
|
174
180
|
P as UluOverflowPopover,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
181
|
+
Se as UluOverflowScroller,
|
|
182
|
+
Lo as UluPager,
|
|
183
|
+
Bo as UluPlaceholderImage,
|
|
184
|
+
No as UluPlaceholderText,
|
|
185
|
+
jo as UluProgressBar,
|
|
186
|
+
Jo as UluProgressCircle,
|
|
187
|
+
Go as UluRouteAnnouncer,
|
|
188
|
+
Te as UluRule,
|
|
189
|
+
qo as UluSanityRichText,
|
|
190
|
+
cr as UluScrollAnchors,
|
|
191
|
+
kr as UluScrollAnchorsHeadlessSection,
|
|
192
|
+
Fr as UluScrollAnchorsNav,
|
|
193
|
+
br as UluScrollAnchorsNavAnimated,
|
|
194
|
+
gr as UluScrollAnchorsSection,
|
|
195
|
+
Ae as UluScrollSlider,
|
|
196
|
+
Ve as UluSearchForm,
|
|
197
|
+
Re as UluSelectableMenu,
|
|
198
|
+
Lr as UluShowSkeleton,
|
|
199
|
+
vr as UluSkeletonContent,
|
|
200
|
+
Ir as UluSkeletonMedia,
|
|
201
|
+
Mr as UluSkeletonText,
|
|
202
|
+
jr as UluSkipLink,
|
|
203
|
+
he as UluSlider,
|
|
204
|
+
Pe as UluSpokeSpinner,
|
|
205
|
+
C as UluTab,
|
|
206
|
+
y as UluTabGroup,
|
|
201
207
|
R as UluTabList,
|
|
202
208
|
w as UluTabPanel,
|
|
203
209
|
D as UluTabPanels,
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
+
Ce as UluTable,
|
|
211
|
+
Br as UluTableSticky,
|
|
212
|
+
Nr as UluTableStickyRows,
|
|
213
|
+
Gr as UluTableStickyTable,
|
|
214
|
+
ye as UluTag,
|
|
215
|
+
io as UluTitleRail,
|
|
216
|
+
co as UluWhenBreakpoint,
|
|
210
217
|
U as breakpointsPlugin,
|
|
211
218
|
t as corePlugin,
|
|
212
219
|
m as modalsPlugin,
|
|
213
220
|
l as popoversPlugin,
|
|
214
221
|
d as toastPlugin,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
222
|
+
xt as useBreakpointManager,
|
|
223
|
+
ct as useDocumentTitle,
|
|
224
|
+
Yr as useFacets,
|
|
225
|
+
at as useIcon,
|
|
226
|
+
ut as useModifiers,
|
|
227
|
+
it as usePagination,
|
|
228
|
+
pt as useRequiredInject,
|
|
229
|
+
et as useScrollAnchorSection,
|
|
230
|
+
rt as useScrollAnchorSections,
|
|
231
|
+
_r as useScrollAnchors,
|
|
232
|
+
bt as useTableData,
|
|
233
|
+
qr as useTooltip,
|
|
226
234
|
f as useTooltipFollow,
|
|
227
|
-
|
|
228
|
-
|
|
235
|
+
Ft as useUluFloating,
|
|
236
|
+
st as useWindowResize,
|
|
229
237
|
e as utils
|
|
230
238
|
};
|