@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,26 @@
|
|
|
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
|
+
label: string;
|
|
10
|
+
labelHidden: boolean;
|
|
11
|
+
noClasses: boolean;
|
|
12
|
+
multiple: boolean;
|
|
13
|
+
inputAttrs?: Record<string, any> | 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
|
+
label?: ((props: {}) => any) | undefined;
|
|
17
|
+
};
|
|
18
|
+
declare const emit: (event: "file-change", ...args: any[]) => void;
|
|
19
|
+
declare const __VLS_props: {
|
|
20
|
+
readonly label: string;
|
|
21
|
+
readonly labelHidden: boolean;
|
|
22
|
+
readonly noClasses: boolean;
|
|
23
|
+
readonly multiple: boolean;
|
|
24
|
+
readonly inputAttrs?: Record<string, any> | undefined;
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=UluFormFile.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFormFile.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/forms/UluFormFile.vue"],"names":[],"mappings":"wBAqKqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;;2OAG3C;;;;AAxED,mEAA0C;AA1B1C;;;;;;EAwBG"}
|
|
@@ -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
|
+
$props: Partial<typeof __VLS_props>;
|
|
8
|
+
warning: boolean;
|
|
9
|
+
error: boolean;
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
type __VLS_Slots = {
|
|
12
|
+
default?: ((props: {}) => any) | undefined;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_props: {
|
|
15
|
+
readonly warning: boolean;
|
|
16
|
+
readonly error: boolean;
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=UluFormMessage.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFormMessage.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/forms/UluFormMessage.vue"],"names":[],"mappings":"wBAoGqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;2OAE3C;;;;AA1ED;;;EASG"}
|
|
@@ -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 __VLS_emit;
|
|
8
|
+
$props: Partial<typeof __VLS_props>;
|
|
9
|
+
labelHidden: boolean;
|
|
10
|
+
options?: unknown[] | undefined;
|
|
11
|
+
label?: string | undefined;
|
|
12
|
+
modelValue?: string | undefined;
|
|
13
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
type __VLS_Slots = {
|
|
15
|
+
default?: ((props: {}) => any) | undefined;
|
|
16
|
+
};
|
|
17
|
+
declare const __VLS_emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
18
|
+
declare const __VLS_props: {
|
|
19
|
+
readonly labelHidden: boolean;
|
|
20
|
+
readonly options?: unknown[] | undefined;
|
|
21
|
+
readonly label?: string | undefined;
|
|
22
|
+
readonly modelValue?: string | undefined;
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=UluFormSelect.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFormSelect.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/forms/UluFormSelect.vue"],"names":[],"mappings":"wBA6JqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,UAAU;YADhB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;2OAG3C;;;;AAlFD,+EAAsD;AAnBtD;;;;;EAiBG"}
|
|
@@ -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 __VLS_emit;
|
|
8
|
+
$props: Partial<typeof __VLS_props>;
|
|
9
|
+
labelHidden: boolean;
|
|
10
|
+
label?: string | undefined;
|
|
11
|
+
modelValue?: string | undefined;
|
|
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 __VLS_emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
17
|
+
declare const __VLS_props: {
|
|
18
|
+
readonly labelHidden: boolean;
|
|
19
|
+
readonly label?: string | undefined;
|
|
20
|
+
readonly modelValue?: string | undefined;
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=UluFormText.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluFormText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/forms/UluFormText.vue"],"names":[],"mappings":"wBAqIqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,UAAU;YADhB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;2OAG3C;;;;AAtED,+EAAsD;AAftD;;;;EAaG"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof __VLS_props>;
|
|
3
|
+
placeholder: string;
|
|
4
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
export default _default;
|
|
6
|
+
declare const __VLS_props: {
|
|
7
|
+
readonly placeholder: string;
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=UluSearchForm.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSearchForm.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/forms/UluSearchForm.vue"],"names":[],"mappings":";YAgHmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;AA9E5C;;EAQG"}
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
type: string;
|
|
10
|
+
compact: boolean;
|
|
11
|
+
hideInputs: boolean;
|
|
12
|
+
options?: unknown[] | undefined;
|
|
13
|
+
legend?: string | undefined;
|
|
14
|
+
modelValue?: string | unknown[] | undefined;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
type __VLS_Slots = {
|
|
17
|
+
default?: ((props: {
|
|
18
|
+
option: unknown;
|
|
19
|
+
}) => any) | undefined;
|
|
20
|
+
};
|
|
21
|
+
declare const emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
22
|
+
declare const props: {
|
|
23
|
+
readonly type: string;
|
|
24
|
+
readonly compact: boolean;
|
|
25
|
+
readonly hideInputs: boolean;
|
|
26
|
+
readonly options?: unknown[] | undefined;
|
|
27
|
+
readonly legend?: string | undefined;
|
|
28
|
+
readonly modelValue?: string | unknown[] | undefined;
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=UluSelectableMenu.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSelectableMenu.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/forms/UluSelectableMenu.vue"],"names":[],"mappings":"wBAmSqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;2OAGrC;;;;;;AAvJH,yEAAgD;AA9BhD;;;;;;;EA4BG"}
|
|
@@ -1,2 +1,52 @@
|
|
|
1
|
+
export { default as UluAccordion } from "./collapsible/UluAccordion.vue";
|
|
2
|
+
export { default as UluCollapsible } from "./collapsible/UluCollapsible.vue";
|
|
3
|
+
export { default as UluDropdown } from "./collapsible/UluDropdown.vue";
|
|
4
|
+
export { default as UluModal } from "./collapsible/UluModal.vue";
|
|
5
|
+
export { default as UluOverflowPopover } from "./collapsible/UluOverflowPopover.vue";
|
|
6
|
+
export { default as UluTab } from "./collapsible/UluTab.vue";
|
|
7
|
+
export { default as UluTabGroup } from "./collapsible/UluTabGroup.vue";
|
|
8
|
+
export { default as UluTabList } from "./collapsible/UluTabList.vue";
|
|
9
|
+
export { default as UluTabPanel } from "./collapsible/UluTabPanel.vue";
|
|
10
|
+
export { default as UluTabPanels } from "./collapsible/UluTabPanels.vue";
|
|
11
|
+
export { default as UluAlert } from "./elements/UluAlert.vue";
|
|
12
|
+
export { default as UluBadge } from "./elements/UluBadge.vue";
|
|
13
|
+
export { default as UluBadgeStack } from "./elements/UluBadgeStack.vue";
|
|
14
|
+
export { default as UluButton } from "./elements/UluButton.vue";
|
|
15
|
+
export { default as UluButtonVerbose } from "./elements/UluButtonVerbose.vue";
|
|
16
|
+
export { default as UluCallout } from "./elements/UluCallout.vue";
|
|
17
|
+
export { default as UluCard } from "./elements/UluCard.vue";
|
|
18
|
+
export { default as UluDefinitionList } from "./elements/UluDefinitionList.vue";
|
|
19
|
+
export { default as UluExternalLink } from "./elements/UluExternalLink.vue";
|
|
20
|
+
export { default as UluIcon } from "./elements/UluIcon.vue";
|
|
21
|
+
export { default as UluList } from "./elements/UluList.vue";
|
|
22
|
+
export { default as UluMain } from "./elements/UluMain.vue";
|
|
23
|
+
export { default as UluSpokeSpinner } from "./elements/UluSpokeSpinner.vue";
|
|
24
|
+
export { default as UluTag } from "./elements/UluTag.vue";
|
|
25
|
+
export { default as UluSelectableMenu } from "./forms/UluSelectableMenu.vue";
|
|
26
|
+
export { default as UluFileDisplay } from "./forms/UluFileDisplay.vue";
|
|
27
|
+
export { default as UluFormFile } from "./forms/UluFormFile.vue";
|
|
28
|
+
export { default as UluFormMessage } from "./forms/UluFormMessage.vue";
|
|
29
|
+
export { default as UluFormSelect } from "./forms/UluFormSelect.vue";
|
|
30
|
+
export { default as UluFormText } from "./forms/UluFormText.vue";
|
|
31
|
+
export { default as UluSearchForm } from "./forms/UluSearchForm.vue";
|
|
32
|
+
export { default as UluAdaptiveLayout } from "./layout/UluAdaptiveLayout.vue";
|
|
33
|
+
export { default as UluDataGrid } from "./layout/UluDataGrid.vue";
|
|
34
|
+
export { default as UluTitleRail } from "./layout/UluTitleRail.vue";
|
|
35
|
+
export { default as UluBreadcrumb } from "./navigation/UluBreadcrumb.vue";
|
|
36
|
+
export { default as UluMenu } from "./navigation/UluMenu.vue";
|
|
37
|
+
export { default as UluMenuStack } from "./navigation/UluMenuStack.vue";
|
|
38
|
+
export { default as UluNavStrip } from "./navigation/UluNavStrip.vue";
|
|
39
|
+
export { default as UluSkipLink } from "./navigation/UluSkipLink.vue";
|
|
40
|
+
export { default as UluConditionalText } from "./utils/UluConditionalText.vue";
|
|
41
|
+
export { default as UluConditionalWrapper } from "./utils/UluConditionalWrapper.vue";
|
|
42
|
+
export { default as UluEmpty } from "./utils/UluEmpty.vue";
|
|
43
|
+
export { default as UluEmptyView } from "./utils/UluEmptyView.vue";
|
|
44
|
+
export { default as UluPlaceholderImage } from "./utils/UluPlaceholderImage.vue";
|
|
45
|
+
export { default as UluPlaceholderText } from "./utils/UluPlaceholderText.vue";
|
|
46
|
+
export { default as UluRouteAnnouncer } from "./utils/UluRouteAnnouncer.vue";
|
|
47
|
+
export { default as UluSanityRichText } from "./utils/UluSanityRichText.vue";
|
|
48
|
+
export { default as UluAnimateNumber } from "./visualizations/UluAnimateNumber.vue";
|
|
49
|
+
export { default as UluProgressBar } from "./visualizations/UluProgressBar.vue";
|
|
50
|
+
export { default as UluProgressCircle } from "./visualizations/UluProgressCircle.vue";
|
|
1
51
|
export * from "./systems/index.js";
|
|
2
52
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -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
|
+
default?: ((props: {}) => any) | undefined;
|
|
9
|
+
} & {
|
|
10
|
+
mobile?: ((props: {}) => any) | undefined;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=UluAdaptiveLayout.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluAdaptiveLayout.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/layout/UluAdaptiveLayout.vue"],"names":[],"mappings":"wBAqDqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AAJzB,6SACG"}
|
|
@@ -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=UluDataGrid.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluDataGrid.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/layout/UluDataGrid.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Icon to display next to the title.
|
|
4
|
+
*/
|
|
5
|
+
icon: StringConstructor;
|
|
6
|
+
/**
|
|
7
|
+
* The alignment of the icon with the title.
|
|
8
|
+
*/
|
|
9
|
+
iconAlign: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* Classes for the different elements in the component.
|
|
15
|
+
*/
|
|
16
|
+
classes: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
default: () => {
|
|
19
|
+
title: string;
|
|
20
|
+
icon: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* The title to display.
|
|
25
|
+
*/
|
|
26
|
+
title: StringConstructor;
|
|
27
|
+
/**
|
|
28
|
+
* The HTML element to use for the title.
|
|
29
|
+
*/
|
|
30
|
+
titleElement: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* If true, a rule will be displayed under the title.
|
|
36
|
+
*/
|
|
37
|
+
rule: BooleanConstructor;
|
|
38
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
/**
|
|
40
|
+
* Icon to display next to the title.
|
|
41
|
+
*/
|
|
42
|
+
icon: StringConstructor;
|
|
43
|
+
/**
|
|
44
|
+
* The alignment of the icon with the title.
|
|
45
|
+
*/
|
|
46
|
+
iconAlign: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Classes for the different elements in the component.
|
|
52
|
+
*/
|
|
53
|
+
classes: {
|
|
54
|
+
type: ObjectConstructor;
|
|
55
|
+
default: () => {
|
|
56
|
+
title: string;
|
|
57
|
+
icon: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* The title to display.
|
|
62
|
+
*/
|
|
63
|
+
title: StringConstructor;
|
|
64
|
+
/**
|
|
65
|
+
* The HTML element to use for the title.
|
|
66
|
+
*/
|
|
67
|
+
titleElement: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* If true, a rule will be displayed under the title.
|
|
73
|
+
*/
|
|
74
|
+
rule: BooleanConstructor;
|
|
75
|
+
}>> & Readonly<{}>, {
|
|
76
|
+
classes: Record<string, any>;
|
|
77
|
+
titleElement: string;
|
|
78
|
+
rule: boolean;
|
|
79
|
+
iconAlign: string;
|
|
80
|
+
}, {}, {
|
|
81
|
+
UluIcon: import("vue").DefineComponent<{}, {
|
|
82
|
+
$props: Partial<{
|
|
83
|
+
readonly spaced: boolean;
|
|
84
|
+
readonly icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
85
|
+
}>;
|
|
86
|
+
spaced: boolean;
|
|
87
|
+
icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
88
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
89
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
90
|
+
export default _default;
|
|
91
|
+
//# sourceMappingURL=UluTitleRail.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluTitleRail.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/layout/UluTitleRail.vue"],"names":[],"mappings":";IAwFM;;OAEG;;IAEH;;OAEG;;;;;IAKH;;OAEG;;;;;;;;IAQH;;OAEG;;IAEH;;OAEG;;;;;IAKH;;OAEG;;;IAlCH;;OAEG;;IAEH;;OAEG;;;;;IAKH;;OAEG;;;;;;;;IAQH;;OAEG;;IAEH;;OAEG;;;;;IAKH;;OAEG"}
|
|
@@ -0,0 +1,20 @@
|
|
|
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 props>;
|
|
8
|
+
max?: string | undefined;
|
|
9
|
+
min?: string | undefined;
|
|
10
|
+
only?: string | undefined;
|
|
11
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
type __VLS_Slots = {
|
|
13
|
+
default?: ((props: {}) => any) | undefined;
|
|
14
|
+
};
|
|
15
|
+
declare const props: {
|
|
16
|
+
readonly max?: string | undefined;
|
|
17
|
+
readonly min?: string | undefined;
|
|
18
|
+
readonly only?: string | undefined;
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=UluWhenBreakpoint.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluWhenBreakpoint.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/layout/UluWhenBreakpoint.vue"],"names":[],"mappings":"wBAwNqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;2OAErC;;;;AAzHD;;;;EAaG"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Array of breadcrumb items.
|
|
4
|
+
* Each item is an object: { title: String, to: [String, Object], current: Boolean }
|
|
5
|
+
*/
|
|
6
|
+
items: {
|
|
7
|
+
type: ArrayConstructor;
|
|
8
|
+
default: () => never[];
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Icon to use as a separator.
|
|
12
|
+
*/
|
|
13
|
+
separatorIcon: StringConstructor;
|
|
14
|
+
/**
|
|
15
|
+
* Classes object to be applied to elements.
|
|
16
|
+
* Keys: nav, list, item, link, icon
|
|
17
|
+
*/
|
|
18
|
+
classes: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: () => {
|
|
21
|
+
nav: string;
|
|
22
|
+
list: string;
|
|
23
|
+
item: string;
|
|
24
|
+
link: string;
|
|
25
|
+
current: string;
|
|
26
|
+
separator: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
/**
|
|
31
|
+
* Array of breadcrumb items.
|
|
32
|
+
* Each item is an object: { title: String, to: [String, Object], current: Boolean }
|
|
33
|
+
*/
|
|
34
|
+
items: {
|
|
35
|
+
type: ArrayConstructor;
|
|
36
|
+
default: () => never[];
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Icon to use as a separator.
|
|
40
|
+
*/
|
|
41
|
+
separatorIcon: StringConstructor;
|
|
42
|
+
/**
|
|
43
|
+
* Classes object to be applied to elements.
|
|
44
|
+
* Keys: nav, list, item, link, icon
|
|
45
|
+
*/
|
|
46
|
+
classes: {
|
|
47
|
+
type: ObjectConstructor;
|
|
48
|
+
default: () => {
|
|
49
|
+
nav: string;
|
|
50
|
+
list: string;
|
|
51
|
+
item: string;
|
|
52
|
+
link: string;
|
|
53
|
+
current: string;
|
|
54
|
+
separator: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{}>, {
|
|
58
|
+
classes: Record<string, any>;
|
|
59
|
+
items: unknown[];
|
|
60
|
+
}, {}, {
|
|
61
|
+
UluIcon: import("vue").DefineComponent<{}, {
|
|
62
|
+
$props: Partial<{
|
|
63
|
+
readonly spaced: boolean;
|
|
64
|
+
readonly icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
65
|
+
}>;
|
|
66
|
+
spaced: boolean;
|
|
67
|
+
icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
68
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
69
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
70
|
+
export default _default;
|
|
71
|
+
//# sourceMappingURL=UluBreadcrumb.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluBreadcrumb.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/navigation/UluBreadcrumb.vue"],"names":[],"mappings":";IA0FM;;;OAGG;;;;;IAKH;;OAEG;;IAEH;;;OAGG;;;;;;;;;;;;;IAfH;;;OAGG;;;;;IAKH;;OAEG;;IAEH;;;OAGG"}
|
|
@@ -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"}
|