@ulu/frontend-vue 0.1.0-beta.9 → 0.1.1-beta.10
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-BYSYcx8V.js} +1 -1
- package/dist/frontend-vue.css +1 -1
- package/dist/frontend-vue.js +82 -70
- package/dist/index-A7weElM_.js +7766 -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 +106 -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 +13 -6
- package/lib/components/navigation/UluMenuStack.vue +50 -31
- package/lib/components/navigation/UluPager.vue +102 -0
- package/lib/components/systems/facets/ExampleFacetsWithPagination.vue +119 -0
- package/lib/components/systems/facets/UluFacetsActiveFilters.vue +84 -0
- package/lib/components/systems/facets/UluFacetsFilterLists.vue +97 -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 +64 -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 +90 -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 +394 -0
- package/lib/components/systems/index.js +14 -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 +22 -12
- package/types/components/collapsible/UluAccordion.vue.d.ts +42 -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 +40 -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 +238 -0
- package/types/components/elements/UluCard.vue.d.ts.map +1 -0
- package/types/components/elements/UluDefinitionList.vue.d.ts +26 -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 +48 -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 +18 -0
- package/types/components/systems/facets/UluFacetsActiveFilters.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/_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 +57 -0
- package/types/components/systems/facets/useFacets.d.ts.map +1 -0
- package/types/components/systems/index.d.ts +25 -1
- 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/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/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/index.d.ts +2 -0
- package/types/composables/useBreakpointManager.d.ts +1 -1
- package/types/composables/useBreakpointManager.d.ts.map +1 -1
- package/types/composables/useDocumentTitle.d.ts +22 -0
- package/types/composables/useDocumentTitle.d.ts.map +1 -0
- 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/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/composables/useWindowResize.d.ts +1 -1
- package/types/composables/useWindowResize.d.ts.map +1 -1
- package/types/index.d.ts +1 -0
- 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 +54 -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 +2 -1
- 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
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Items Array of Objects for each link
|
|
4
|
+
* [{
|
|
5
|
+
* title: String (title of link)
|
|
6
|
+
* icon: Icon definition passed to UluIcon
|
|
7
|
+
* tag: Tag appearing after link text (count/etc), pass props you want bound to tag
|
|
8
|
+
* tooltip: Add tooltip to menu item (pass options for tooltip), unless iconOnly than the title is presented in the tooltip
|
|
9
|
+
* href: Will result in <a>
|
|
10
|
+
* click: Will be called on click and result in <button>
|
|
11
|
+
* to: Will result in <a> and use vue-router router-link component
|
|
12
|
+
* }]
|
|
13
|
+
*/
|
|
14
|
+
items: ArrayConstructor;
|
|
15
|
+
/**
|
|
16
|
+
* Classes object to add class bindings to the different elements
|
|
17
|
+
* - { list, item, link, linkActive, linkExactActive, linkIcon, linkText }
|
|
18
|
+
*/
|
|
19
|
+
classes: {
|
|
20
|
+
type: ObjectConstructor;
|
|
21
|
+
default: () => {};
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Use icon only version of menu
|
|
25
|
+
*/
|
|
26
|
+
iconOnly: BooleanConstructor;
|
|
27
|
+
/**
|
|
28
|
+
* Do not print menu items children recursively
|
|
29
|
+
*/
|
|
30
|
+
noChildren: BooleanConstructor;
|
|
31
|
+
}>, {}, {}, {}, {
|
|
32
|
+
handleItemClick(event: any, item: any): void;
|
|
33
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "item-click"[], "item-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
/**
|
|
35
|
+
* Items Array of Objects for each link
|
|
36
|
+
* [{
|
|
37
|
+
* title: String (title of link)
|
|
38
|
+
* icon: Icon definition passed to UluIcon
|
|
39
|
+
* tag: Tag appearing after link text (count/etc), pass props you want bound to tag
|
|
40
|
+
* tooltip: Add tooltip to menu item (pass options for tooltip), unless iconOnly than the title is presented in the tooltip
|
|
41
|
+
* href: Will result in <a>
|
|
42
|
+
* click: Will be called on click and result in <button>
|
|
43
|
+
* to: Will result in <a> and use vue-router router-link component
|
|
44
|
+
* }]
|
|
45
|
+
*/
|
|
46
|
+
items: ArrayConstructor;
|
|
47
|
+
/**
|
|
48
|
+
* Classes object to add class bindings to the different elements
|
|
49
|
+
* - { list, item, link, linkActive, linkExactActive, linkIcon, linkText }
|
|
50
|
+
*/
|
|
51
|
+
classes: {
|
|
52
|
+
type: ObjectConstructor;
|
|
53
|
+
default: () => {};
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Use icon only version of menu
|
|
57
|
+
*/
|
|
58
|
+
iconOnly: BooleanConstructor;
|
|
59
|
+
/**
|
|
60
|
+
* Do not print menu items children recursively
|
|
61
|
+
*/
|
|
62
|
+
noChildren: BooleanConstructor;
|
|
63
|
+
}>> & Readonly<{
|
|
64
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
|
65
|
+
}>, {
|
|
66
|
+
classes: Record<string, any>;
|
|
67
|
+
iconOnly: boolean;
|
|
68
|
+
noChildren: boolean;
|
|
69
|
+
}, {}, {
|
|
70
|
+
UluIcon: import("vue").DefineComponent<{}, {
|
|
71
|
+
$props: Partial<{
|
|
72
|
+
readonly spaced: boolean;
|
|
73
|
+
readonly icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
74
|
+
}>;
|
|
75
|
+
spaced: boolean;
|
|
76
|
+
icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
77
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
78
|
+
UluTag: {
|
|
79
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
80
|
+
$props: Partial<{
|
|
81
|
+
readonly counter: boolean;
|
|
82
|
+
readonly size?: string | undefined;
|
|
83
|
+
readonly type?: string | undefined;
|
|
84
|
+
readonly text?: string | number | undefined;
|
|
85
|
+
readonly icon?: string | unknown[] | undefined;
|
|
86
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
87
|
+
}>;
|
|
88
|
+
counter: boolean;
|
|
89
|
+
size?: string | undefined;
|
|
90
|
+
type?: string | undefined;
|
|
91
|
+
text?: string | number | undefined;
|
|
92
|
+
icon?: string | unknown[] | undefined;
|
|
93
|
+
modifiers?: string | unknown[] | undefined;
|
|
94
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
95
|
+
P: {};
|
|
96
|
+
B: {};
|
|
97
|
+
D: {};
|
|
98
|
+
C: {};
|
|
99
|
+
M: {};
|
|
100
|
+
Defaults: {};
|
|
101
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
102
|
+
$props: Partial<{
|
|
103
|
+
readonly counter: boolean;
|
|
104
|
+
readonly size?: string | undefined;
|
|
105
|
+
readonly type?: string | undefined;
|
|
106
|
+
readonly text?: string | number | undefined;
|
|
107
|
+
readonly icon?: string | unknown[] | undefined;
|
|
108
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
109
|
+
}>;
|
|
110
|
+
counter: boolean;
|
|
111
|
+
size?: string | undefined;
|
|
112
|
+
type?: string | undefined;
|
|
113
|
+
text?: string | number | undefined;
|
|
114
|
+
icon?: string | unknown[] | undefined;
|
|
115
|
+
modifiers?: string | unknown[] | undefined;
|
|
116
|
+
}, {}, {}, {}, {}>;
|
|
117
|
+
__isFragment?: never;
|
|
118
|
+
__isTeleport?: never;
|
|
119
|
+
__isSuspense?: never;
|
|
120
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
121
|
+
$props: Partial<{
|
|
122
|
+
readonly counter: boolean;
|
|
123
|
+
readonly size?: string | undefined;
|
|
124
|
+
readonly type?: string | undefined;
|
|
125
|
+
readonly text?: string | number | undefined;
|
|
126
|
+
readonly icon?: string | unknown[] | undefined;
|
|
127
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
128
|
+
}>;
|
|
129
|
+
counter: boolean;
|
|
130
|
+
size?: string | undefined;
|
|
131
|
+
type?: string | undefined;
|
|
132
|
+
text?: string | number | undefined;
|
|
133
|
+
icon?: string | unknown[] | undefined;
|
|
134
|
+
modifiers?: string | unknown[] | undefined;
|
|
135
|
+
}, {}, {}, {}, 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 () => {
|
|
136
|
+
$slots: {
|
|
137
|
+
default?: (props: {}) => any;
|
|
138
|
+
};
|
|
139
|
+
});
|
|
140
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
141
|
+
export default _default;
|
|
142
|
+
//# sourceMappingURL=UluMenu.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluMenu.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/navigation/UluMenu.vue"],"names":[],"mappings":";IAoIM;;;;;;;;;;;OAWG;;IAEH;;;OAGG;;;;;IAKH;;OAEG;;IAEH;;OAEG;;;;;IA3BH;;;;;;;;;;;OAWG;;IAEH;;;OAGG;;;;;IAKH;;OAEG;;IAEH;;OAEG"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
noChildren: boolean;
|
|
4
|
+
containerElement: string;
|
|
5
|
+
hanging: boolean;
|
|
6
|
+
compact: boolean;
|
|
7
|
+
modifiers?: string | unknown[] | undefined;
|
|
8
|
+
items?: unknown[] | undefined;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
export default _default;
|
|
11
|
+
declare const props: {
|
|
12
|
+
readonly noChildren: boolean;
|
|
13
|
+
readonly containerElement: string;
|
|
14
|
+
readonly hanging: boolean;
|
|
15
|
+
readonly compact: boolean;
|
|
16
|
+
readonly modifiers?: string | unknown[] | undefined;
|
|
17
|
+
readonly items?: unknown[] | undefined;
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=UluMenuStack.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluMenuStack.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/navigation/UluMenuStack.vue"],"names":[],"mappings":";YA+LmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;AAtHtC;;;;;;;EA4BG"}
|
|
@@ -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,18 @@
|
|
|
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
|
+
selectedFacets: unknown[];
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
type __VLS_Slots = {
|
|
12
|
+
label?: ((props: {}) => any) | undefined;
|
|
13
|
+
};
|
|
14
|
+
declare const emit: (event: "facet-change" | "clear-filters", ...args: any[]) => void;
|
|
15
|
+
declare const props: {
|
|
16
|
+
readonly selectedFacets: unknown[];
|
|
17
|
+
};
|
|
18
|
+
//# 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":"wBA2OqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;2OAGrC;;;;AAtIH,sFAA4D;AAV5D;;EAQG"}
|
|
@@ -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
|
+
groupToggle?: ((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":"wBAgUqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;2OAG3C;;;;;;;AA9LD,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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export const initialMockFacets: {
|
|
2
|
+
name: string;
|
|
3
|
+
uid: string;
|
|
4
|
+
open: boolean;
|
|
5
|
+
children: {
|
|
6
|
+
uid: string;
|
|
7
|
+
label: string;
|
|
8
|
+
}[];
|
|
9
|
+
}[];
|
|
10
|
+
export const mockItems: {
|
|
11
|
+
id: number;
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
category: string[];
|
|
15
|
+
author: string[];
|
|
16
|
+
date: Date;
|
|
17
|
+
}[];
|
|
18
|
+
//# sourceMappingURL=_mock-data.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_mock-data.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/facets/_mock-data.js"],"names":[],"mappings":"AAAA;;;;;;;;IAwBE;AAEF;;;;;;;IAaE"}
|