@ulu/frontend-vue 0.1.0-beta.9 → 0.1.1-beta.2
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/{breakpoints-BbkGNxxt.js → breakpoints-DfGETUy5.js} +1 -1
- package/dist/frontend-vue.css +1 -1
- package/dist/frontend-vue.js +79 -68
- package/dist/index-94HkwBnP.js +7595 -0
- package/lib/components/collapsible/UluAccordion.vue +71 -53
- package/lib/components/collapsible/UluAccordionGroup.vue +54 -0
- package/lib/components/collapsible/UluCollapsible.vue +144 -0
- package/lib/components/collapsible/UluDropdown.vue +29 -29
- package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
- package/lib/components/elements/UluBadge.vue +51 -28
- package/lib/components/elements/UluBadgeStack.vue +8 -13
- package/lib/components/elements/UluButtonVerbose.vue +119 -0
- package/lib/components/elements/UluCard.vue +1 -1
- package/lib/components/elements/UluDefinitionList.vue +14 -17
- package/lib/components/elements/UluExternalLink.vue +21 -27
- package/lib/components/elements/UluIcon.vue +11 -1
- package/lib/components/elements/UluList.vue +53 -55
- package/lib/components/elements/UluSpokeSpinner.vue +12 -18
- package/lib/components/elements/UluTag.vue +35 -35
- package/lib/components/forms/UluFileDisplay.vue +49 -31
- package/lib/components/forms/UluFormFile.vue +37 -24
- package/lib/components/forms/UluFormMessage.vue +13 -10
- package/lib/components/forms/UluFormSelect.vue +28 -16
- package/lib/components/forms/UluFormText.vue +24 -15
- package/lib/components/forms/UluSearchForm.vue +11 -10
- package/lib/components/forms/UluSelectableMenu.vue +99 -0
- package/lib/components/index.js +4 -3
- package/lib/components/layout/UluTitleRail.vue +18 -0
- package/lib/components/layout/UluWhenBreakpoint.vue +9 -0
- package/lib/components/navigation/UluBreadcrumb.vue +9 -2
- package/lib/components/navigation/UluMenu.vue +8 -3
- package/lib/components/navigation/UluMenuStack.vue +3 -1
- package/lib/components/navigation/UluPager.vue +102 -0
- package/lib/components/systems/facets/ExampleFacetsWithPagination.vue +119 -0
- package/lib/components/systems/facets/UluFacetsFilterLists.vue +91 -0
- package/lib/components/systems/facets/UluFacetsFilterPopovers.vue +125 -0
- package/lib/components/systems/facets/UluFacetsFilterSelects.vue +71 -0
- package/lib/components/systems/facets/UluFacetsHeaderLayout.vue +24 -0
- package/lib/components/systems/facets/UluFacetsList.vue +62 -34
- package/lib/components/systems/facets/UluFacetsResults.vue +63 -0
- package/lib/components/systems/facets/UluFacetsSearch.vue +27 -50
- package/lib/components/systems/facets/UluFacetsSidebarLayout.vue +70 -0
- package/lib/components/systems/facets/UluFacetsSort.vue +45 -0
- package/lib/components/systems/facets/_facets.scss +2 -3
- package/lib/components/systems/facets/_mock-data.js +40 -0
- package/lib/components/systems/facets/useFacets.js +268 -0
- package/lib/components/systems/index.js +13 -2
- package/lib/components/systems/scroll-anchors/UluScrollAnchors.vue +2 -1
- package/lib/components/systems/skeleton/UluShowSkeleton.vue +9 -8
- package/lib/components/systems/skeleton/UluSkeletonContent.vue +39 -43
- package/lib/components/systems/skeleton/UluSkeletonMedia.vue +4 -6
- package/lib/components/systems/skeleton/UluSkeletonText.vue +27 -0
- package/lib/components/systems/slider/UluImageSlideShow.vue +1 -1
- package/lib/components/systems/slider/UluSlideShow.vue +8 -3
- package/lib/components/systems/table-sticky/UluTableSticky.vue +7 -7
- package/lib/components/systems/table-sticky/UluTableStickyTable.vue +3 -3
- package/lib/components/visualizations/UluAnimateNumber.vue +7 -1
- package/lib/components/visualizations/UluProgressBar.vue +148 -74
- package/lib/components/visualizations/UluProgressCircle.vue +159 -0
- package/lib/composables/index.js +3 -1
- package/lib/composables/useDocumentTitle.js +61 -0
- package/lib/composables/usePagination.js +122 -0
- package/lib/index.js +1 -0
- package/lib/plugins/core/index.js +6 -1
- package/lib/plugins/popovers/UluPopover.vue +8 -3
- package/lib/plugins/toast/UluToast.vue +1 -1
- package/lib/plugins/toast/UluToastDisplay.vue +19 -2
- package/lib/utils/dom.js +12 -0
- package/lib/utils/index.js +2 -0
- package/lib/utils/{vue-router.js → router.js} +114 -30
- package/package.json +17 -11
- package/types/components/systems/facets/_mock-data.d.ts +18 -0
- package/types/components/systems/facets/_mock-data.d.ts.map +1 -0
- package/types/components/systems/facets/useFacets.d.ts +39 -0
- package/types/components/systems/facets/useFacets.d.ts.map +1 -0
- package/types/components/systems/index.d.ts +1 -1
- package/types/composables/index.d.ts +2 -0
- package/types/composables/useDocumentTitle.d.ts +22 -0
- package/types/composables/useDocumentTitle.d.ts.map +1 -0
- package/types/composables/usePageTitle.d.ts +19 -0
- package/types/composables/usePageTitle.d.ts.map +1 -0
- package/types/composables/usePagination.d.ts +25 -0
- package/types/composables/usePagination.d.ts.map +1 -0
- package/types/index.d.ts +1 -0
- package/types/plugins/core/index.d.ts.map +1 -1
- package/types/utils/dom.d.ts +1 -0
- package/types/utils/dom.d.ts.map +1 -1
- package/types/utils/index.d.ts +3 -0
- package/types/utils/index.d.ts.map +1 -0
- package/types/utils/router.d.ts +144 -0
- package/types/utils/router.d.ts.map +1 -0
- package/dist/index-D3Uc6T5M.js +0 -6469
- package/lib/components/collapsible/UluCollapsibleRegion.vue +0 -278
- package/lib/components/forms/UluCheckboxMenu.vue +0 -36
- package/lib/components/systems/facets/UluFacets.vue +0 -380
- package/lib/components/systems/skeleton/UluSkeletonTextInline.vue +0 -9
- package/lib/components/visualizations/UluProgressDonut.vue +0 -97
- package/lib/utils/placeholder.js +0 -6
package/dist/frontend-vue.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
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%}.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-layout__body{display:grid;grid-template-columns:250px 1fr;gap:2rem}.facets-sidebar-layout--filters-hidden .facets-sidebar-layout__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}
|
package/dist/frontend-vue.js
CHANGED
|
@@ -1,77 +1,88 @@
|
|
|
1
|
-
import { _ as
|
|
1
|
+
import { _ as l, N as e, s as u, a1 as U, t, 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 w, a8 as y, ad as A, a9 as L, aa as v, ab as M, ac as x, H as B, I as C, J as R, K as f, L as D, B as I, am as N, C as E, D as j, R as q, S as G, U 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 Ua, an as ta, ao as oa, 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 ka, f as Ta, b as ga, 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 Ca, i as Ra } from "./index-94HkwBnP.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
3
|
+
l as UluAccordion,
|
|
4
4
|
e as UluAdaptiveLayout,
|
|
5
5
|
u as UluAlert,
|
|
6
6
|
U as UluAnimateNumber,
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
t as UluBadge,
|
|
8
|
+
o as UluBadgeStack,
|
|
9
9
|
i as UluBreadcrumb,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
c as
|
|
13
|
-
S as
|
|
14
|
-
d as
|
|
15
|
-
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
b as UluDefinitionList,
|
|
18
|
+
m as UluDropdown,
|
|
19
|
+
k as UluEmpty,
|
|
20
20
|
T as UluEmptyView,
|
|
21
|
-
|
|
22
|
-
P as
|
|
21
|
+
g as UluExternalLink,
|
|
22
|
+
P as UluFacetsFilterLists,
|
|
23
|
+
h as UluFacetsFilterPopovers,
|
|
24
|
+
w as UluFacetsFilterSelects,
|
|
25
|
+
y as UluFacetsHeaderLayout,
|
|
23
26
|
A as UluFacetsList,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
M as
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
I as
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
na as
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
27
|
+
L as UluFacetsResults,
|
|
28
|
+
v as UluFacetsSearch,
|
|
29
|
+
M as UluFacetsSidebarLayout,
|
|
30
|
+
x as UluFacetsSort,
|
|
31
|
+
B as UluFileDisplay,
|
|
32
|
+
C as UluFormFile,
|
|
33
|
+
R as UluFormMessage,
|
|
34
|
+
f as UluFormSelect,
|
|
35
|
+
D 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 UluProgressCircle,
|
|
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
|
+
Ua as UluSkipLink,
|
|
61
|
+
ta as UluSlideShow,
|
|
62
|
+
oa 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
|
+
ka as UluTitleRail,
|
|
74
|
+
Ta as breakpointsPlugin,
|
|
75
|
+
ga 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
|
+
Ca as useWindowResize,
|
|
87
|
+
Ra as utils
|
|
77
88
|
};
|