@ulu/frontend-vue 0.1.1-beta.2 → 0.1.1-beta.21
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-DfGETUy5.js → breakpoints-BK5cY325.js} +1 -1
- package/dist/frontend-vue.css +1 -1
- package/dist/frontend-vue.js +78 -74
- package/dist/{index-94HkwBnP.js → index-CzaotMwA.js} +2457 -2061
- package/lib/components/collapsible/UluAccordion.vue +9 -9
- package/lib/components/collapsible/UluCollapsible.vue +9 -24
- package/lib/components/elements/UluCard.vue +172 -157
- package/lib/components/elements/UluDefinitionList.vue +55 -3
- package/lib/components/forms/UluSelectableMenu.vue +8 -1
- package/lib/components/index.js +3 -1
- package/lib/components/navigation/UluMenu.vue +5 -3
- package/lib/components/navigation/UluMenuStack.vue +47 -30
- package/lib/components/systems/facets/UluFacetsActiveFilters.vue +104 -0
- package/lib/components/systems/facets/UluFacetsFilterAccordions.vue +94 -0
- package/lib/components/systems/facets/UluFacetsFilterLists.vue +15 -11
- package/lib/components/systems/facets/UluFacetsList.vue +3 -1
- package/lib/components/systems/facets/UluFacetsSearch.vue +1 -1
- package/lib/components/systems/facets/UluFacetsSidebarLayout.vue +32 -12
- package/lib/components/systems/facets/useFacets.js +166 -40
- package/lib/components/systems/index.js +2 -0
- package/lib/components/systems/slider/UluSlideShow.vue +2 -2
- package/lib/components/utils/{UluCondText.vue → UluConditionalText.vue} +1 -1
- package/lib/components/utils/UluConditionalWrapper.vue +29 -0
- package/lib/components/utils/UluRouteAnnouncer.vue +1 -1
- package/lib/components/utils/UluSanityRichText.vue +41 -0
- package/lib/components/visualizations/UluProgressCircle.vue +1 -1
- package/lib/plugins/core/index.js +3 -2
- package/lib/plugins/popovers/UluPopover.vue +1 -1
- package/package.json +13 -8
- package/types/components/collapsible/UluAccordion.vue.d.ts +41 -0
- package/types/components/collapsible/UluAccordion.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluAccordionGroup.vue.d.ts +19 -0
- package/types/components/collapsible/UluAccordionGroup.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluCollapsible.vue.d.ts +39 -0
- package/types/components/collapsible/UluCollapsible.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluDropdown.vue.d.ts +22 -0
- package/types/components/collapsible/UluDropdown.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluModal.vue.d.ts +253 -0
- package/types/components/collapsible/UluModal.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluOverflowPopover.vue.d.ts +18 -0
- package/types/components/collapsible/UluOverflowPopover.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTab.vue.d.ts +10 -0
- package/types/components/collapsible/UluTab.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabGroup.vue.d.ts +18 -0
- package/types/components/collapsible/UluTabGroup.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabList.vue.d.ts +10 -0
- package/types/components/collapsible/UluTabList.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabPanel.vue.d.ts +10 -0
- package/types/components/collapsible/UluTabPanel.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabPanels.vue.d.ts +10 -0
- package/types/components/collapsible/UluTabPanels.vue.d.ts.map +1 -0
- package/types/components/elements/UluAlert.vue.d.ts +147 -0
- package/types/components/elements/UluAlert.vue.d.ts.map +1 -0
- package/types/components/elements/UluBadge.vue.d.ts +30 -0
- package/types/components/elements/UluBadge.vue.d.ts.map +1 -0
- package/types/components/elements/UluBadgeStack.vue.d.ts +9 -0
- package/types/components/elements/UluBadgeStack.vue.d.ts.map +1 -0
- package/types/components/elements/UluButton.vue.d.ts +186 -0
- package/types/components/elements/UluButton.vue.d.ts.map +1 -0
- package/types/components/elements/UluButtonVerbose.vue.d.ts +126 -0
- package/types/components/elements/UluButtonVerbose.vue.d.ts.map +1 -0
- package/types/components/elements/UluCallout.vue.d.ts +27 -0
- package/types/components/elements/UluCallout.vue.d.ts.map +1 -0
- package/types/components/elements/UluCard.vue.d.ts +66 -0
- package/types/components/elements/UluCard.vue.d.ts.map +1 -0
- package/types/components/elements/UluDefinitionList.vue.d.ts +42 -0
- package/types/components/elements/UluDefinitionList.vue.d.ts.map +1 -0
- package/types/components/elements/UluExternalLink.vue.d.ts +25 -0
- package/types/components/elements/UluExternalLink.vue.d.ts.map +1 -0
- package/types/components/elements/UluIcon.vue.d.ts +11 -0
- package/types/components/elements/UluIcon.vue.d.ts.map +1 -0
- package/types/components/elements/UluList.vue.d.ts +37 -0
- package/types/components/elements/UluList.vue.d.ts.map +1 -0
- package/types/components/elements/UluMain.vue.d.ts +13 -0
- package/types/components/elements/UluMain.vue.d.ts.map +1 -0
- package/types/components/elements/UluSpokeSpinner.vue.d.ts +9 -0
- package/types/components/elements/UluSpokeSpinner.vue.d.ts.map +1 -0
- package/types/components/elements/UluTag.vue.d.ts +26 -0
- package/types/components/elements/UluTag.vue.d.ts.map +1 -0
- package/types/components/forms/UluFileDisplay.vue.d.ts +23 -0
- package/types/components/forms/UluFileDisplay.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormFile.vue.d.ts +26 -0
- package/types/components/forms/UluFormFile.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormMessage.vue.d.ts +18 -0
- package/types/components/forms/UluFormMessage.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormSelect.vue.d.ts +24 -0
- package/types/components/forms/UluFormSelect.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormText.vue.d.ts +22 -0
- package/types/components/forms/UluFormText.vue.d.ts.map +1 -0
- package/types/components/forms/UluSearchForm.vue.d.ts +9 -0
- package/types/components/forms/UluSearchForm.vue.d.ts.map +1 -0
- package/types/components/forms/UluSelectableMenu.vue.d.ts +30 -0
- package/types/components/forms/UluSelectableMenu.vue.d.ts.map +1 -0
- package/types/components/index.d.ts +50 -0
- package/types/components/layout/UluAdaptiveLayout.vue.d.ts +12 -0
- package/types/components/layout/UluAdaptiveLayout.vue.d.ts.map +1 -0
- package/types/components/layout/UluDataGrid.vue.d.ts +3 -0
- package/types/components/layout/UluDataGrid.vue.d.ts.map +1 -0
- package/types/components/layout/UluTitleRail.vue.d.ts +91 -0
- package/types/components/layout/UluTitleRail.vue.d.ts.map +1 -0
- package/types/components/layout/UluWhenBreakpoint.vue.d.ts +20 -0
- package/types/components/layout/UluWhenBreakpoint.vue.d.ts.map +1 -0
- package/types/components/navigation/UluBreadcrumb.vue.d.ts +71 -0
- package/types/components/navigation/UluBreadcrumb.vue.d.ts.map +1 -0
- package/types/components/navigation/UluMenu.vue.d.ts +142 -0
- package/types/components/navigation/UluMenu.vue.d.ts.map +1 -0
- package/types/components/navigation/UluMenuStack.vue.d.ts +19 -0
- package/types/components/navigation/UluMenuStack.vue.d.ts.map +1 -0
- package/types/components/navigation/UluNavStrip.vue.d.ts +138 -0
- package/types/components/navigation/UluNavStrip.vue.d.ts.map +1 -0
- package/types/components/navigation/UluPager.vue.d.ts +15 -0
- package/types/components/navigation/UluPager.vue.d.ts.map +1 -0
- package/types/components/navigation/UluSkipLink.vue.d.ts +3 -0
- package/types/components/navigation/UluSkipLink.vue.d.ts.map +1 -0
- package/types/components/systems/facets/ExampleFacetsWithPagination.vue.d.ts +3 -0
- package/types/components/systems/facets/ExampleFacetsWithPagination.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsActiveFilters.vue.d.ts +24 -0
- package/types/components/systems/facets/UluFacetsActiveFilters.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterAccordions.vue.d.ts +29 -0
- package/types/components/systems/facets/UluFacetsFilterAccordions.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterLists.vue.d.ts +27 -0
- package/types/components/systems/facets/UluFacetsFilterLists.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterPopovers.vue.d.ts +25 -0
- package/types/components/systems/facets/UluFacetsFilterPopovers.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterSelects.vue.d.ts +11 -0
- package/types/components/systems/facets/UluFacetsFilterSelects.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsHeaderLayout.vue.d.ts +12 -0
- package/types/components/systems/facets/UluFacetsHeaderLayout.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsList.vue.d.ts +21 -0
- package/types/components/systems/facets/UluFacetsList.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsResults.vue.d.ts +27 -0
- package/types/components/systems/facets/UluFacetsResults.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsSearch.vue.d.ts +15 -0
- package/types/components/systems/facets/UluFacetsSearch.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsSidebarLayout.vue.d.ts +22 -0
- package/types/components/systems/facets/UluFacetsSidebarLayout.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsSort.vue.d.ts +22 -0
- package/types/components/systems/facets/UluFacetsSort.vue.d.ts.map +1 -0
- package/types/components/systems/facets/useFacets.d.ts +30 -12
- package/types/components/systems/facets/useFacets.d.ts.map +1 -1
- package/types/components/systems/index.d.ts +25 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchors.vue.d.ts +60 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchors.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNav.vue.d.ts +15 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNav.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.d.ts +32 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsSection.vue.d.ts +50 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsSection.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/symbols.d.ts +3 -3
- package/types/components/systems/scroll-anchors/symbols.d.ts.map +1 -1
- package/types/components/systems/skeleton/UluShowSkeleton.vue.d.ts +16 -0
- package/types/components/systems/skeleton/UluShowSkeleton.vue.d.ts.map +1 -0
- package/types/components/systems/skeleton/UluSkeletonContent.vue.d.ts +9 -0
- package/types/components/systems/skeleton/UluSkeletonContent.vue.d.ts.map +1 -0
- package/types/components/systems/skeleton/UluSkeletonMedia.vue.d.ts +3 -0
- package/types/components/systems/skeleton/UluSkeletonMedia.vue.d.ts.map +1 -0
- package/types/components/systems/skeleton/UluSkeletonText.vue.d.ts +13 -0
- package/types/components/systems/skeleton/UluSkeletonText.vue.d.ts.map +1 -0
- package/types/components/systems/slider/UluImageSlideShow.vue.d.ts +130 -0
- package/types/components/systems/slider/UluImageSlideShow.vue.d.ts.map +1 -0
- package/types/components/systems/slider/UluSlideShow.vue.d.ts +205 -0
- package/types/components/systems/slider/UluSlideShow.vue.d.ts.map +1 -0
- package/types/components/systems/slider/UluSlideShowSlide.vue.d.ts +17 -0
- package/types/components/systems/slider/UluSlideShowSlide.vue.d.ts.map +1 -0
- package/types/components/systems/table-sticky/UluTableSticky.vue.d.ts +455 -0
- package/types/components/systems/table-sticky/UluTableSticky.vue.d.ts.map +1 -0
- package/types/components/systems/table-sticky/UluTableStickyRows.vue.d.ts +34 -0
- package/types/components/systems/table-sticky/UluTableStickyRows.vue.d.ts.map +1 -0
- package/types/components/systems/table-sticky/UluTableStickyTable.vue.d.ts +151 -0
- package/types/components/systems/table-sticky/UluTableStickyTable.vue.d.ts.map +1 -0
- package/types/components/utils/UluCondText.vue.d.ts +29 -0
- package/types/components/utils/UluCondText.vue.d.ts.map +1 -0
- package/types/components/utils/UluConditionalText.vue.d.ts +29 -0
- package/types/components/utils/UluConditionalText.vue.d.ts.map +1 -0
- package/types/components/utils/UluConditionalWrapper.vue.d.ts +20 -0
- package/types/components/utils/UluConditionalWrapper.vue.d.ts.map +1 -0
- package/types/components/utils/UluEmpty.vue.d.ts +3 -0
- package/types/components/utils/UluEmpty.vue.d.ts.map +1 -0
- package/types/components/utils/UluEmptyView.vue.d.ts +3 -0
- package/types/components/utils/UluEmptyView.vue.d.ts.map +1 -0
- package/types/components/utils/UluPlaceholderImage.vue.d.ts +61 -0
- package/types/components/utils/UluPlaceholderImage.vue.d.ts.map +1 -0
- package/types/components/utils/UluPlaceholderText.vue.d.ts +24 -0
- package/types/components/utils/UluPlaceholderText.vue.d.ts.map +1 -0
- package/types/components/utils/UluRouteAnnouncer.vue.d.ts +63 -0
- package/types/components/utils/UluRouteAnnouncer.vue.d.ts.map +1 -0
- package/types/components/utils/UluSanityRichText.vue.d.ts +15 -0
- package/types/components/utils/UluSanityRichText.vue.d.ts.map +1 -0
- package/types/components/visualizations/UluAnimateNumber.vue.d.ts +16 -0
- package/types/components/visualizations/UluAnimateNumber.vue.d.ts.map +1 -0
- package/types/components/visualizations/UluProgressBar.vue.d.ts +66 -0
- package/types/components/visualizations/UluProgressBar.vue.d.ts.map +1 -0
- package/types/components/visualizations/UluProgressCircle.vue.d.ts +48 -0
- package/types/components/visualizations/UluProgressCircle.vue.d.ts.map +1 -0
- package/types/composables/useBreakpointManager.d.ts +1 -1
- package/types/composables/useBreakpointManager.d.ts.map +1 -1
- package/types/composables/useDocumentTitle.d.ts +4 -4
- package/types/composables/useDocumentTitle.d.ts.map +1 -1
- package/types/composables/useIcon.d.ts +1 -1
- package/types/composables/useIcon.d.ts.map +1 -1
- package/types/composables/useModifiers.d.ts +1 -1
- package/types/composables/useModifiers.d.ts.map +1 -1
- package/types/composables/useWindowResize.d.ts +1 -1
- package/types/composables/useWindowResize.d.ts.map +1 -1
- package/types/plugins/core/index.d.ts.map +1 -1
- package/types/plugins/modals/UluModalsDisplay.vue.d.ts +14 -0
- package/types/plugins/modals/UluModalsDisplay.vue.d.ts.map +1 -0
- package/types/plugins/modals/api.d.ts +7 -4
- package/types/plugins/modals/api.d.ts.map +1 -1
- package/types/plugins/popovers/UluPopover.vue.d.ts +53 -0
- package/types/plugins/popovers/UluPopover.vue.d.ts.map +1 -0
- package/types/plugins/popovers/UluTooltipDisplay.vue.d.ts +3 -0
- package/types/plugins/popovers/UluTooltipDisplay.vue.d.ts.map +1 -0
- package/types/plugins/popovers/UluTooltipPopover.vue.d.ts +3 -0
- package/types/plugins/popovers/UluTooltipPopover.vue.d.ts.map +1 -0
- package/types/plugins/popovers/defaults.d.ts +2 -2
- package/types/plugins/popovers/defaults.d.ts.map +1 -1
- package/types/plugins/popovers/manager.d.ts +50 -6
- package/types/plugins/popovers/manager.d.ts.map +1 -1
- package/types/plugins/popovers/useFollow.d.ts +4 -4
- package/types/plugins/popovers/useFollow.d.ts.map +1 -1
- package/types/plugins/toast/UluToast.vue.d.ts +52 -0
- package/types/plugins/toast/UluToast.vue.d.ts.map +1 -0
- package/types/plugins/toast/UluToastDisplay.vue.d.ts +13 -0
- package/types/plugins/toast/UluToastDisplay.vue.d.ts.map +1 -0
- package/types/plugins/toast/defaults.d.ts +39 -2
- package/types/plugins/toast/store.d.ts +65 -2
- package/types/plugins/toast/store.d.ts.map +1 -1
- package/types/utils/dom.d.ts +1 -1
- package/types/utils/dom.d.ts.map +1 -1
- package/types/utils/router.d.ts +15 -15
- package/types/utils/router.d.ts.map +1 -1
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Array of items for list (uses UluMenu, see structure there)
|
|
4
|
+
*/
|
|
5
|
+
items: ArrayConstructor;
|
|
6
|
+
/**
|
|
7
|
+
* Center aligned
|
|
8
|
+
*/
|
|
9
|
+
center: BooleanConstructor;
|
|
10
|
+
/**
|
|
11
|
+
* Right aligned
|
|
12
|
+
*/
|
|
13
|
+
right: BooleanConstructor;
|
|
14
|
+
/**
|
|
15
|
+
* Rule nav strip style
|
|
16
|
+
*/
|
|
17
|
+
rule: BooleanConstructor;
|
|
18
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
/**
|
|
20
|
+
* Array of items for list (uses UluMenu, see structure there)
|
|
21
|
+
*/
|
|
22
|
+
items: ArrayConstructor;
|
|
23
|
+
/**
|
|
24
|
+
* Center aligned
|
|
25
|
+
*/
|
|
26
|
+
center: BooleanConstructor;
|
|
27
|
+
/**
|
|
28
|
+
* Right aligned
|
|
29
|
+
*/
|
|
30
|
+
right: BooleanConstructor;
|
|
31
|
+
/**
|
|
32
|
+
* Rule nav strip style
|
|
33
|
+
*/
|
|
34
|
+
rule: BooleanConstructor;
|
|
35
|
+
}>> & Readonly<{}>, {
|
|
36
|
+
right: boolean;
|
|
37
|
+
center: boolean;
|
|
38
|
+
rule: boolean;
|
|
39
|
+
}, {}, {
|
|
40
|
+
UluMenu: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
41
|
+
items: ArrayConstructor;
|
|
42
|
+
classes: {
|
|
43
|
+
type: ObjectConstructor;
|
|
44
|
+
default: () => {};
|
|
45
|
+
};
|
|
46
|
+
iconOnly: BooleanConstructor;
|
|
47
|
+
noChildren: BooleanConstructor;
|
|
48
|
+
}>, {}, {}, {}, {
|
|
49
|
+
handleItemClick(event: any, item: any): void;
|
|
50
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "item-click"[], "item-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
|
+
items: ArrayConstructor;
|
|
52
|
+
classes: {
|
|
53
|
+
type: ObjectConstructor;
|
|
54
|
+
default: () => {};
|
|
55
|
+
};
|
|
56
|
+
iconOnly: BooleanConstructor;
|
|
57
|
+
noChildren: BooleanConstructor;
|
|
58
|
+
}>> & Readonly<{
|
|
59
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
}>, {
|
|
61
|
+
classes: Record<string, any>;
|
|
62
|
+
iconOnly: boolean;
|
|
63
|
+
noChildren: boolean;
|
|
64
|
+
}, {}, {
|
|
65
|
+
UluIcon: import("vue").DefineComponent<{}, {
|
|
66
|
+
$props: Partial<{
|
|
67
|
+
readonly spaced: boolean;
|
|
68
|
+
readonly icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
69
|
+
}>;
|
|
70
|
+
spaced: boolean;
|
|
71
|
+
icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
72
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
73
|
+
UluTag: {
|
|
74
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
75
|
+
$props: Partial<{
|
|
76
|
+
readonly counter: boolean;
|
|
77
|
+
readonly size?: string | undefined;
|
|
78
|
+
readonly type?: string | undefined;
|
|
79
|
+
readonly text?: string | number | undefined;
|
|
80
|
+
readonly icon?: string | unknown[] | undefined;
|
|
81
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
82
|
+
}>;
|
|
83
|
+
counter: boolean;
|
|
84
|
+
size?: string | undefined;
|
|
85
|
+
type?: string | undefined;
|
|
86
|
+
text?: string | number | undefined;
|
|
87
|
+
icon?: string | unknown[] | undefined;
|
|
88
|
+
modifiers?: string | unknown[] | undefined;
|
|
89
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
90
|
+
P: {};
|
|
91
|
+
B: {};
|
|
92
|
+
D: {};
|
|
93
|
+
C: {};
|
|
94
|
+
M: {};
|
|
95
|
+
Defaults: {};
|
|
96
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
97
|
+
$props: Partial<{
|
|
98
|
+
readonly counter: boolean;
|
|
99
|
+
readonly size?: string | undefined;
|
|
100
|
+
readonly type?: string | undefined;
|
|
101
|
+
readonly text?: string | number | undefined;
|
|
102
|
+
readonly icon?: string | unknown[] | undefined;
|
|
103
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
104
|
+
}>;
|
|
105
|
+
counter: boolean;
|
|
106
|
+
size?: string | undefined;
|
|
107
|
+
type?: string | undefined;
|
|
108
|
+
text?: string | number | undefined;
|
|
109
|
+
icon?: string | unknown[] | undefined;
|
|
110
|
+
modifiers?: string | unknown[] | undefined;
|
|
111
|
+
}, {}, {}, {}, {}>;
|
|
112
|
+
__isFragment?: never;
|
|
113
|
+
__isTeleport?: never;
|
|
114
|
+
__isSuspense?: never;
|
|
115
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
116
|
+
$props: Partial<{
|
|
117
|
+
readonly counter: boolean;
|
|
118
|
+
readonly size?: string | undefined;
|
|
119
|
+
readonly type?: string | undefined;
|
|
120
|
+
readonly text?: string | number | undefined;
|
|
121
|
+
readonly icon?: string | unknown[] | undefined;
|
|
122
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
123
|
+
}>;
|
|
124
|
+
counter: boolean;
|
|
125
|
+
size?: string | undefined;
|
|
126
|
+
type?: string | undefined;
|
|
127
|
+
text?: string | number | undefined;
|
|
128
|
+
icon?: string | unknown[] | undefined;
|
|
129
|
+
modifiers?: string | unknown[] | undefined;
|
|
130
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
131
|
+
$slots: {
|
|
132
|
+
default?: (props: {}) => any;
|
|
133
|
+
};
|
|
134
|
+
});
|
|
135
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
136
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
137
|
+
export default _default;
|
|
138
|
+
//# sourceMappingURL=UluNavStrip.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluNavStrip.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/navigation/UluNavStrip.vue"],"names":[],"mappings":";IAwDM;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;;IAdH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
items: Record<string, any>;
|
|
4
|
+
titleElement: string;
|
|
5
|
+
current: number;
|
|
6
|
+
ellipses: Record<string, any>;
|
|
7
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
export default _default;
|
|
9
|
+
declare const props: {
|
|
10
|
+
readonly items: Record<string, any>;
|
|
11
|
+
readonly titleElement: string;
|
|
12
|
+
readonly current: number;
|
|
13
|
+
readonly ellipses: Record<string, any>;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=UluPager.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluPager.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/navigation/UluPager.vue"],"names":[],"mappings":";YA6bmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;AAjVxC;;;;;EA6BG"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
3
|
+
//# sourceMappingURL=UluSkipLink.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSkipLink.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/navigation/UluSkipLink.vue"],"names":[],"mappings":";AAoCA,wBACG"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
3
|
+
//# sourceMappingURL=ExampleFacetsWithPagination.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExampleFacetsWithPagination.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/ExampleFacetsWithPagination.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$emit: typeof emit;
|
|
8
|
+
$props: Partial<typeof props>;
|
|
9
|
+
classes: Record<string, any>;
|
|
10
|
+
labelElement: string;
|
|
11
|
+
selectedFacets: unknown[];
|
|
12
|
+
removeIcon: string;
|
|
13
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
type __VLS_Slots = {
|
|
15
|
+
label?: ((props: {}) => any) | undefined;
|
|
16
|
+
};
|
|
17
|
+
declare const emit: (event: "facet-change" | "clear-filters", ...args: any[]) => void;
|
|
18
|
+
declare const props: {
|
|
19
|
+
readonly classes: Record<string, any>;
|
|
20
|
+
readonly labelElement: string;
|
|
21
|
+
readonly selectedFacets: unknown[];
|
|
22
|
+
readonly removeIcon: string;
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=UluFacetsActiveFilters.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsActiveFilters.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsActiveFilters.vue"],"names":[],"mappings":"wBAmTqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;2OAGrC;;;;AA7JD,sFAA4D;AAxC5D;;;;;EAsCG"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$emit: typeof emit;
|
|
8
|
+
$props: Partial<typeof __VLS_props>;
|
|
9
|
+
classes: Record<string, any>;
|
|
10
|
+
compact: boolean;
|
|
11
|
+
maxVisible: number;
|
|
12
|
+
facets: unknown[];
|
|
13
|
+
accordionModifiers?: string | unknown[] | undefined;
|
|
14
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
type __VLS_Slots = {
|
|
16
|
+
groupTrigger?: ((props: {
|
|
17
|
+
group: unknown;
|
|
18
|
+
isOpen: boolean | undefined;
|
|
19
|
+
}) => any) | undefined;
|
|
20
|
+
};
|
|
21
|
+
declare const emit: (event: "facet-change", ...args: any[]) => void;
|
|
22
|
+
declare const __VLS_props: {
|
|
23
|
+
readonly classes: Record<string, any>;
|
|
24
|
+
readonly compact: boolean;
|
|
25
|
+
readonly maxVisible: number;
|
|
26
|
+
readonly facets: unknown[];
|
|
27
|
+
readonly accordionModifiers?: string | unknown[] | undefined;
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=UluFacetsFilterAccordions.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsFilterAccordions.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsFilterAccordions.vue"],"names":[],"mappings":"wBAkTqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;;2OAG3C;;;;;;;AA/KD,oEAA2C;AAhC3C;;;;;;EA8BG"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$emit: typeof emit;
|
|
8
|
+
$props: Partial<typeof __VLS_props>;
|
|
9
|
+
classes: Record<string, any>;
|
|
10
|
+
compact: boolean;
|
|
11
|
+
maxVisible: number;
|
|
12
|
+
facets: unknown[];
|
|
13
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
type __VLS_Slots = {
|
|
15
|
+
groupTrigger?: ((props: {
|
|
16
|
+
group: unknown;
|
|
17
|
+
isOpen: boolean | undefined;
|
|
18
|
+
}) => any) | undefined;
|
|
19
|
+
};
|
|
20
|
+
declare const emit: (event: "facet-change", ...args: any[]) => void;
|
|
21
|
+
declare const __VLS_props: {
|
|
22
|
+
readonly classes: Record<string, any>;
|
|
23
|
+
readonly compact: boolean;
|
|
24
|
+
readonly maxVisible: number;
|
|
25
|
+
readonly facets: unknown[];
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=UluFacetsFilterLists.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsFilterLists.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsFilterLists.vue"],"names":[],"mappings":"wBAyTqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;2OAG3C;;;;;;;AAzLD,oEAA2C;AA5B3C;;;;;EA0BG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$emit: typeof emit;
|
|
8
|
+
$props: Partial<typeof props>;
|
|
9
|
+
classes: Record<string, any>;
|
|
10
|
+
hideInputs: boolean;
|
|
11
|
+
facets: unknown[];
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
type __VLS_Slots = {
|
|
14
|
+
trigger?: ((props: {
|
|
15
|
+
group: unknown;
|
|
16
|
+
label: any;
|
|
17
|
+
}) => any) | undefined;
|
|
18
|
+
};
|
|
19
|
+
declare const emit: (event: "facet-change", ...args: any[]) => void;
|
|
20
|
+
declare const props: {
|
|
21
|
+
readonly classes: Record<string, any>;
|
|
22
|
+
readonly hideInputs: boolean;
|
|
23
|
+
readonly facets: unknown[];
|
|
24
|
+
};
|
|
25
|
+
//# sourceMappingURL=UluFacetsFilterPopovers.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsFilterPopovers.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsFilterPopovers.vue"],"names":[],"mappings":"wBAwWqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;2OAGrC;;;;;;;AA1MH,oEAA2C;AA3B3C;;;;EAyBG"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$emit: typeof emit;
|
|
3
|
+
$props: Partial<typeof props>;
|
|
4
|
+
facets: unknown[];
|
|
5
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
declare const emit: (event: "facet-change", ...args: any[]) => void;
|
|
8
|
+
declare const props: {
|
|
9
|
+
readonly facets: unknown[];
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=UluFacetsFilterSelects.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsFilterSelects.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsFilterSelects.vue"],"names":[],"mappings":";WA+KkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;AA9FxC,oEAA2C;AAP3C;;EAKG"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
type __VLS_Slots = {
|
|
8
|
+
header?: ((props: {}) => any) | undefined;
|
|
9
|
+
} & {
|
|
10
|
+
main?: ((props: {}) => any) | undefined;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=UluFacetsHeaderLayout.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsHeaderLayout.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsHeaderLayout.vue"],"names":[],"mappings":"wBA4EqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AAJzB,6SACG"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$emit: typeof emit;
|
|
3
|
+
$props: Partial<typeof props>;
|
|
4
|
+
type: string;
|
|
5
|
+
compact: boolean;
|
|
6
|
+
children?: unknown[] | undefined;
|
|
7
|
+
modelValue?: string | unknown[] | undefined;
|
|
8
|
+
groupUid?: string | undefined;
|
|
9
|
+
groupName?: string | undefined;
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
export default _default;
|
|
12
|
+
declare const emit: (event: "facet-change", ...args: any[]) => void;
|
|
13
|
+
declare const props: {
|
|
14
|
+
readonly type: string;
|
|
15
|
+
readonly compact: boolean;
|
|
16
|
+
readonly children?: unknown[] | undefined;
|
|
17
|
+
readonly modelValue?: string | unknown[] | undefined;
|
|
18
|
+
readonly groupUid?: string | undefined;
|
|
19
|
+
readonly groupName?: string | undefined;
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=UluFacetsList.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsList.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsList.vue"],"names":[],"mappings":";WAsMkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;AA/GxC,oEAA2C;AAZ3C;;;;;;;EAUG"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$props: Partial<typeof __VLS_props>;
|
|
8
|
+
classes: Record<string, any>;
|
|
9
|
+
tag: string;
|
|
10
|
+
items: unknown[];
|
|
11
|
+
transitionName: string;
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
type __VLS_Slots = {
|
|
14
|
+
item?: ((props: {
|
|
15
|
+
item: unknown;
|
|
16
|
+
index: number;
|
|
17
|
+
}) => any) | undefined;
|
|
18
|
+
} & {
|
|
19
|
+
empty?: ((props: {}) => any) | undefined;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_props: {
|
|
22
|
+
readonly classes: Record<string, any>;
|
|
23
|
+
readonly tag: string;
|
|
24
|
+
readonly items: unknown[];
|
|
25
|
+
readonly transitionName: string;
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=UluFacetsResults.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsResults.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsResults.vue"],"names":[],"mappings":"wBAkLqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;2OAE3C;;;;;;;;;AAhHD;;;;;EAiBG"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$emit: typeof emit;
|
|
3
|
+
$props: Partial<typeof props>;
|
|
4
|
+
classes: Record<string, any>;
|
|
5
|
+
placeholder: string;
|
|
6
|
+
modelValue?: string | undefined;
|
|
7
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
export default _default;
|
|
9
|
+
declare const emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
10
|
+
declare const props: {
|
|
11
|
+
readonly classes: Record<string, any>;
|
|
12
|
+
readonly placeholder: string;
|
|
13
|
+
readonly modelValue?: string | undefined;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=UluFacetsSearch.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsSearch.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsSearch.vue"],"names":[],"mappings":";WAgIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;AAnEtC,yEAAgD;AAZhD;;;;EAUG"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$props: Partial<typeof __VLS_props>;
|
|
8
|
+
classes: Record<string, any>;
|
|
9
|
+
mobileButtonText: string;
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
type __VLS_Slots = {
|
|
12
|
+
header?: ((props: {}) => any) | undefined;
|
|
13
|
+
} & {
|
|
14
|
+
main?: ((props: {}) => any) | undefined;
|
|
15
|
+
} & {
|
|
16
|
+
sidebar?: ((props: {}) => any) | undefined;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_props: {
|
|
19
|
+
readonly classes: Record<string, any>;
|
|
20
|
+
readonly mobileButtonText: string;
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=UluFacetsSidebarLayout.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsSidebarLayout.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsSidebarLayout.vue"],"names":[],"mappings":"wBAqRqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;2OAE3C;;;;;;;;AAtLD;;;EAgBE"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
$emit: typeof emit;
|
|
8
|
+
$props: Partial<typeof __VLS_props>;
|
|
9
|
+
classes: Record<string, any>;
|
|
10
|
+
modelValue: string;
|
|
11
|
+
sortTypes: Record<string, any>;
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
type __VLS_Slots = {
|
|
14
|
+
default?: ((props: {}) => any) | undefined;
|
|
15
|
+
};
|
|
16
|
+
declare const emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
17
|
+
declare const __VLS_props: {
|
|
18
|
+
readonly classes: Record<string, any>;
|
|
19
|
+
readonly modelValue: string;
|
|
20
|
+
readonly sortTypes: Record<string, any>;
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=UluFacetsSort.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFacetsSort.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/UluFacetsSort.vue"],"names":[],"mappings":"wBAiJqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,WAAW,CAAC;;;;2OAG3C;;;;AA9ED,yEAAgD;AAfhD;;;;EAaG"}
|
|
@@ -11,22 +11,40 @@
|
|
|
11
11
|
* @param {Object} [options.searchOptions={}] - Configuration options for Fuse.js.
|
|
12
12
|
* @param {Function} [options.getItemFacet] - A function to retrieve facet information from an item. Should always return an array of values.
|
|
13
13
|
* @param {Function} [options.getSortValue] - A function to get the value to sort by from an item.
|
|
14
|
+
* @param {String} [options.countMode='none'] - The mode for calculating facet counts. Can be 'none', 'simple', or 'intuitive'.
|
|
14
15
|
*/
|
|
15
|
-
export function useFacets(allItems: import("vue").Ref<Array<
|
|
16
|
-
initialFacets?: any[];
|
|
17
|
-
facetFields?: any[];
|
|
18
|
-
initialSearchValue?: string;
|
|
19
|
-
initialSortType?: string;
|
|
20
|
-
noDefaultSorts?: boolean;
|
|
21
|
-
extraSortTypes?:
|
|
22
|
-
searchOptions?:
|
|
23
|
-
getItemFacet?: Function;
|
|
24
|
-
getSortValue?: Function;
|
|
16
|
+
export function useFacets(allItems: import("vue").Ref<Array<Object>>, options?: {
|
|
17
|
+
initialFacets?: any[] | undefined;
|
|
18
|
+
facetFields?: any[] | undefined;
|
|
19
|
+
initialSearchValue?: string | undefined;
|
|
20
|
+
initialSortType?: string | undefined;
|
|
21
|
+
noDefaultSorts?: boolean | undefined;
|
|
22
|
+
extraSortTypes?: Object | undefined;
|
|
23
|
+
searchOptions?: Object | undefined;
|
|
24
|
+
getItemFacet?: Function | undefined;
|
|
25
|
+
getSortValue?: Function | undefined;
|
|
26
|
+
countMode?: string | undefined;
|
|
25
27
|
}): {
|
|
26
|
-
facets: import("vue").Ref<
|
|
28
|
+
facets: import("vue").Ref<never[], never[]>;
|
|
27
29
|
searchValue: import("vue").Ref<string, string>;
|
|
28
30
|
selectedSort: import("vue").Ref<string, string>;
|
|
29
|
-
sortTypes: import("vue").ComputedRef<
|
|
31
|
+
sortTypes: import("vue").ComputedRef<{
|
|
32
|
+
constructor: Function;
|
|
33
|
+
toString(): string;
|
|
34
|
+
toLocaleString(): string;
|
|
35
|
+
valueOf(): Object;
|
|
36
|
+
hasOwnProperty(v: PropertyKey): boolean;
|
|
37
|
+
isPrototypeOf(v: Object): boolean;
|
|
38
|
+
propertyIsEnumerable(v: PropertyKey): boolean;
|
|
39
|
+
az?: {
|
|
40
|
+
text: string;
|
|
41
|
+
sort: (items: any) => any;
|
|
42
|
+
} | undefined;
|
|
43
|
+
za?: {
|
|
44
|
+
text: string;
|
|
45
|
+
sort: (items: any) => any;
|
|
46
|
+
} | undefined;
|
|
47
|
+
}>;
|
|
30
48
|
displayItems: import("vue").ComputedRef<any>;
|
|
31
49
|
selectedFacets: import("vue").ComputedRef<any[]>;
|
|
32
50
|
clearFilters: () => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useFacets.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/useFacets.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useFacets.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/useFacets.js"],"names":[],"mappings":"AA+GA;;;;;;;;;;;;;;GAcG;AACH,oCAbW,OAAO,KAAK,EAAE,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,YAExC;IAAwB,aAAa;IACb,WAAW;IACV,kBAAkB;IAClB,eAAe;IACd,cAAc;IACf,cAAc;IACd,aAAa;IACX,YAAY;IACZ,YAAY;IACd,SAAS;CACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4QA"}
|
|
@@ -1,2 +1,27 @@
|
|
|
1
1
|
export { useFacets } from "./facets/useFacets.js";
|
|
2
|
+
export { default as UluFacetsActiveFilters } from "./facets/UluFacetsActiveFilters.vue";
|
|
3
|
+
export { default as UluFacetsFilterLists } from "./facets/UluFacetsFilterLists.vue";
|
|
4
|
+
export { default as UluFacetsFilterAccordions } from "./facets/UluFacetsFilterAccordions.vue";
|
|
5
|
+
export { default as UluFacetsFilterPopovers } from "./facets/UluFacetsFilterPopovers.vue";
|
|
6
|
+
export { default as UluFacetsFilterSelects } from "./facets/UluFacetsFilterSelects.vue";
|
|
7
|
+
export { default as UluFacetsHeaderLayout } from "./facets/UluFacetsHeaderLayout.vue";
|
|
8
|
+
export { default as UluFacetsResults } from "./facets/UluFacetsResults.vue";
|
|
9
|
+
export { default as UluFacetsSearch } from "./facets/UluFacetsSearch.vue";
|
|
10
|
+
export { default as UluFacetsSidebarLayout } from "./facets/UluFacetsSidebarLayout.vue";
|
|
11
|
+
export { default as UluFacetsSort } from "./facets/UluFacetsSort.vue";
|
|
12
|
+
export { default as UluFacetsList } from "./facets/UluFacetsList.vue";
|
|
13
|
+
export { default as UluScrollAnchors } from "./scroll-anchors/UluScrollAnchors.vue";
|
|
14
|
+
export { default as UluScrollAnchorsNav } from "./scroll-anchors/UluScrollAnchorsNav.vue";
|
|
15
|
+
export { default as UluScrollAnchorsNavAnimated } from "./scroll-anchors/UluScrollAnchorsNavAnimated.vue";
|
|
16
|
+
export { default as UluScrollAnchorsSection } from "./scroll-anchors/UluScrollAnchorsSection.vue";
|
|
17
|
+
export { default as UluShowSkeleton } from "./skeleton/UluShowSkeleton.vue";
|
|
18
|
+
export { default as UluSkeletonContent } from "./skeleton/UluSkeletonContent.vue";
|
|
19
|
+
export { default as UluSkeletonMedia } from "./skeleton/UluSkeletonMedia.vue";
|
|
20
|
+
export { default as UluSkeletonText } from "./skeleton/UluSkeletonText.vue";
|
|
21
|
+
export { default as UluImageSlideShow } from "./slider/UluImageSlideShow.vue";
|
|
22
|
+
export { default as UluSlideShow } from "./slider/UluSlideShow.vue";
|
|
23
|
+
export { default as UluSlideShowSlide } from "./slider/UluSlideShowSlide.vue";
|
|
24
|
+
export { default as UluTableSticky } from "./table-sticky/UluTableSticky.vue";
|
|
25
|
+
export { default as UluTableStickyRows } from "./table-sticky/UluTableStickyRows.vue";
|
|
26
|
+
export { default as UluTableStickyTable } from "./table-sticky/UluTableStickyTable.vue";
|
|
2
27
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
firstItemActive: BooleanConstructor;
|
|
3
|
+
/**
|
|
4
|
+
* Observe
|
|
5
|
+
*/
|
|
6
|
+
observerOptions: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
default: () => {
|
|
9
|
+
root: null;
|
|
10
|
+
threshhold: number[];
|
|
11
|
+
rootMargin: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {
|
|
15
|
+
isMounted: boolean;
|
|
16
|
+
sections: never[];
|
|
17
|
+
}, {}, {
|
|
18
|
+
update(): void;
|
|
19
|
+
getSectionIndex(el: any): number;
|
|
20
|
+
/**
|
|
21
|
+
* Sets up a new observer to watch the section visibility
|
|
22
|
+
*/
|
|
23
|
+
createObserver(): void;
|
|
24
|
+
/**
|
|
25
|
+
* Add all slide elements as targets in observer
|
|
26
|
+
*/
|
|
27
|
+
observeItems(): void;
|
|
28
|
+
removeActive(except?: null): void;
|
|
29
|
+
/**
|
|
30
|
+
* Remove observer and it's internal DOM references (GC)
|
|
31
|
+
*/
|
|
32
|
+
destroyObserver(): void;
|
|
33
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "section-change"[], "section-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
firstItemActive: BooleanConstructor;
|
|
35
|
+
/**
|
|
36
|
+
* Observe
|
|
37
|
+
*/
|
|
38
|
+
observerOptions: {
|
|
39
|
+
type: ObjectConstructor;
|
|
40
|
+
default: () => {
|
|
41
|
+
root: null;
|
|
42
|
+
threshhold: number[];
|
|
43
|
+
rootMargin: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}>> & Readonly<{
|
|
47
|
+
"onSection-change"?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
}>, {
|
|
49
|
+
firstItemActive: boolean;
|
|
50
|
+
observerOptions: Record<string, any>;
|
|
51
|
+
}, {}, {}, {}, string, () => {
|
|
52
|
+
[SECTIONS]: import("vue").ComputedRef<never[]>;
|
|
53
|
+
[REGISTER]: (instance: any) => void;
|
|
54
|
+
[UNREGISTER]: (instance: any) => void;
|
|
55
|
+
}, true, {}, any>;
|
|
56
|
+
export default _default;
|
|
57
|
+
import { SECTIONS } from "./symbols.js";
|
|
58
|
+
import { REGISTER } from "./symbols.js";
|
|
59
|
+
import { UNREGISTER } from "./symbols.js";
|
|
60
|
+
//# sourceMappingURL=UluScrollAnchors.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluScrollAnchors.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/scroll-anchors/UluScrollAnchors.vue"],"names":[],"mappings":";;IAiKM;;OAEG;;;;;;;;;;;;;;;IAyDH;;OAEG;;IAoCH;;OAEG;;;IAiBH;;OAEG;;;;IAtHH;;OAEG;;;;;;;;;;;;;;;;;;;;yBARwC,cAAc;yBAAd,cAAc;2BAAd,cAAc"}
|