@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,29 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Text to print in element
|
|
4
|
+
*/
|
|
5
|
+
text: (ObjectConstructor | StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
6
|
+
/**
|
|
7
|
+
* Element type to render (ie. h1, h2, p, etc)
|
|
8
|
+
*/
|
|
9
|
+
element: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
/**
|
|
15
|
+
* Text to print in element
|
|
16
|
+
*/
|
|
17
|
+
text: (ObjectConstructor | StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
18
|
+
/**
|
|
19
|
+
* Element type to render (ie. h1, h2, p, etc)
|
|
20
|
+
*/
|
|
21
|
+
element: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
}>> & Readonly<{}>, {
|
|
26
|
+
element: string;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
export default _default;
|
|
29
|
+
//# sourceMappingURL=UluConditionalText.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluConditionalText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluConditionalText.vue"],"names":[],"mappings":";IAmCM;;OAEG;;IAEH;;OAEG;;;;;;IANH;;OAEG;;IAEH;;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 __VLS_props>;
|
|
8
|
+
is: string | Function | Record<string, any>;
|
|
9
|
+
unwrapped: 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
|
+
default?: ((props: {}) => any) | undefined;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_props: {
|
|
17
|
+
readonly is: string | Function | Record<string, any>;
|
|
18
|
+
readonly unwrapped: boolean;
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=UluConditionalWrapper.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluConditionalWrapper.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluConditionalWrapper.vue"],"names":[],"mappings":"wBA0GqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;2OAE3C;;;;;;AA3ED;;;EAiBG"}
|
|
@@ -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=UluEmpty.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluEmpty.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluEmpty.vue"],"names":[],"mappings":";AA+BA,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=UluEmptyView.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluEmptyView.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluEmptyView.vue"],"names":[],"mappings":";AAuCA,wBACG"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
imageId: StringConstructor;
|
|
3
|
+
/**
|
|
4
|
+
* Width of the image
|
|
5
|
+
*/
|
|
6
|
+
width: {
|
|
7
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Height of the image
|
|
12
|
+
*/
|
|
13
|
+
height: {
|
|
14
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Alt text for placeholder image
|
|
19
|
+
*/
|
|
20
|
+
alt: StringConstructor;
|
|
21
|
+
/**
|
|
22
|
+
* Random size
|
|
23
|
+
*/
|
|
24
|
+
random: BooleanConstructor;
|
|
25
|
+
}>, {}, {}, {
|
|
26
|
+
src(): string;
|
|
27
|
+
size(): {
|
|
28
|
+
width: any;
|
|
29
|
+
height: any;
|
|
30
|
+
};
|
|
31
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
imageId: StringConstructor;
|
|
33
|
+
/**
|
|
34
|
+
* Width of the image
|
|
35
|
+
*/
|
|
36
|
+
width: {
|
|
37
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Height of the image
|
|
42
|
+
*/
|
|
43
|
+
height: {
|
|
44
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Alt text for placeholder image
|
|
49
|
+
*/
|
|
50
|
+
alt: StringConstructor;
|
|
51
|
+
/**
|
|
52
|
+
* Random size
|
|
53
|
+
*/
|
|
54
|
+
random: BooleanConstructor;
|
|
55
|
+
}>> & Readonly<{}>, {
|
|
56
|
+
height: string | number;
|
|
57
|
+
width: string | number;
|
|
58
|
+
random: boolean;
|
|
59
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
60
|
+
export default _default;
|
|
61
|
+
//# sourceMappingURL=UluPlaceholderImage.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluPlaceholderImage.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluPlaceholderImage.vue"],"names":[],"mappings":";;IA2DM;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;IAEH;;OAEG;;;;;;;;;;IApBH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;IAEH;;OAEG"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
amount: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
default: number;
|
|
5
|
+
};
|
|
6
|
+
element: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
amount: {
|
|
12
|
+
type: NumberConstructor;
|
|
13
|
+
default: number;
|
|
14
|
+
};
|
|
15
|
+
element: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
|
+
element: string;
|
|
21
|
+
amount: number;
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
export default _default;
|
|
24
|
+
//# sourceMappingURL=UluPlaceholderText.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluPlaceholderText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluPlaceholderText.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Allow user to bypass this functionality
|
|
4
|
+
* - Function should return true if the page should be announced
|
|
5
|
+
* - Function is passed (to, from, $route) => {}
|
|
6
|
+
* - to/from are path strings
|
|
7
|
+
*/
|
|
8
|
+
validator: {
|
|
9
|
+
type: FunctionConstructor;
|
|
10
|
+
default: () => boolean;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Array of paths to exclude
|
|
14
|
+
* - Can be exact path "/about"
|
|
15
|
+
* - Or can be path with wildcard "/about/*" (match all paths under about)
|
|
16
|
+
*/
|
|
17
|
+
exclude: {
|
|
18
|
+
type: ArrayConstructor;
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Function to retrieve routes title
|
|
23
|
+
*/
|
|
24
|
+
getTitle: {
|
|
25
|
+
type: FunctionConstructor;
|
|
26
|
+
default: (route: any) => any;
|
|
27
|
+
};
|
|
28
|
+
}>, {}, {}, {
|
|
29
|
+
title(): any;
|
|
30
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
/**
|
|
32
|
+
* Allow user to bypass this functionality
|
|
33
|
+
* - Function should return true if the page should be announced
|
|
34
|
+
* - Function is passed (to, from, $route) => {}
|
|
35
|
+
* - to/from are path strings
|
|
36
|
+
*/
|
|
37
|
+
validator: {
|
|
38
|
+
type: FunctionConstructor;
|
|
39
|
+
default: () => boolean;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Array of paths to exclude
|
|
43
|
+
* - Can be exact path "/about"
|
|
44
|
+
* - Or can be path with wildcard "/about/*" (match all paths under about)
|
|
45
|
+
*/
|
|
46
|
+
exclude: {
|
|
47
|
+
type: ArrayConstructor;
|
|
48
|
+
default: () => never[];
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Function to retrieve routes title
|
|
52
|
+
*/
|
|
53
|
+
getTitle: {
|
|
54
|
+
type: FunctionConstructor;
|
|
55
|
+
default: (route: any) => any;
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{}>, {
|
|
58
|
+
validator: Function;
|
|
59
|
+
exclude: unknown[];
|
|
60
|
+
getTitle: Function;
|
|
61
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
62
|
+
export default _default;
|
|
63
|
+
//# sourceMappingURL=UluRouteAnnouncer.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluRouteAnnouncer.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluRouteAnnouncer.vue"],"names":[],"mappings":";IAuFM;;;;;OAKG;;;;;IAKH;;;;OAIG;;;;;IAKH;;OAEG;;;;;;;;IArBH;;;;;OAKG;;;;;IAKH;;;;OAIG;;;;;IAKH;;OAEG"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof __VLS_props>;
|
|
3
|
+
noWrapper: boolean;
|
|
4
|
+
content?: unknown[] | undefined;
|
|
5
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
/**
|
|
8
|
+
* A component to render Sanity's Portable Text format.
|
|
9
|
+
* It requires the '@portabletext/vue' package to be installed by the consumer.
|
|
10
|
+
*/
|
|
11
|
+
declare const __VLS_props: {
|
|
12
|
+
readonly noWrapper: boolean;
|
|
13
|
+
readonly content?: unknown[] | undefined;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=UluSanityRichText.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSanityRichText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluSanityRichText.vue"],"names":[],"mappings":";YA4ImB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;AA9F5C;;;GAGG;AACH;;;EAYG"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* The target number to animate to.
|
|
4
|
+
*/
|
|
5
|
+
value: NumberConstructor;
|
|
6
|
+
}>, {}, {
|
|
7
|
+
currentValue: number | undefined;
|
|
8
|
+
tweenValue: number | undefined;
|
|
9
|
+
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
/**
|
|
11
|
+
* The target number to animate to.
|
|
12
|
+
*/
|
|
13
|
+
value: NumberConstructor;
|
|
14
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=UluAnimateNumber.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluAnimateNumber.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/visualizations/UluAnimateNumber.vue"],"names":[],"mappings":";IAiDM;;OAEG;;;;;;IAFH;;OAEG"}
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
classes: Record<string, any>;
|
|
9
|
+
small: boolean;
|
|
10
|
+
labelHidden: boolean;
|
|
11
|
+
amount: number;
|
|
12
|
+
labelElement: string;
|
|
13
|
+
total: number;
|
|
14
|
+
deficit: number;
|
|
15
|
+
positive: boolean;
|
|
16
|
+
negative: boolean;
|
|
17
|
+
loader: boolean;
|
|
18
|
+
indeterminate: boolean;
|
|
19
|
+
noValues: boolean;
|
|
20
|
+
amountInHeader: boolean;
|
|
21
|
+
label?: string | undefined;
|
|
22
|
+
formatValue?: Function | undefined;
|
|
23
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
|
+
type __VLS_Slots = {
|
|
25
|
+
label?: ((props: {}) => any) | undefined;
|
|
26
|
+
} & {
|
|
27
|
+
valueAmount?: ((props: {
|
|
28
|
+
value: number;
|
|
29
|
+
}) => any) | undefined;
|
|
30
|
+
} & {
|
|
31
|
+
icon?: ((props: {}) => any) | undefined;
|
|
32
|
+
} & {
|
|
33
|
+
valueAmount?: ((props: {
|
|
34
|
+
value: number;
|
|
35
|
+
}) => any) | undefined;
|
|
36
|
+
} & {
|
|
37
|
+
valueDeficit?: ((props: {
|
|
38
|
+
value: number;
|
|
39
|
+
}) => any) | undefined;
|
|
40
|
+
} & {
|
|
41
|
+
valueTotal?: ((props: {
|
|
42
|
+
value: number;
|
|
43
|
+
}) => any) | undefined;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* A linear progress bar to display progress, with support for various styles and a deficit indicator.
|
|
47
|
+
* @slot icon - A slot for placing an icon in the header, typically to indicate status.
|
|
48
|
+
*/
|
|
49
|
+
declare const props: {
|
|
50
|
+
readonly classes: Record<string, any>;
|
|
51
|
+
readonly small: boolean;
|
|
52
|
+
readonly labelHidden: boolean;
|
|
53
|
+
readonly amount: number;
|
|
54
|
+
readonly labelElement: string;
|
|
55
|
+
readonly total: number;
|
|
56
|
+
readonly deficit: number;
|
|
57
|
+
readonly positive: boolean;
|
|
58
|
+
readonly negative: boolean;
|
|
59
|
+
readonly loader: boolean;
|
|
60
|
+
readonly indeterminate: boolean;
|
|
61
|
+
readonly noValues: boolean;
|
|
62
|
+
readonly amountInHeader: boolean;
|
|
63
|
+
readonly label?: string | undefined;
|
|
64
|
+
readonly formatValue?: Function | undefined;
|
|
65
|
+
};
|
|
66
|
+
//# sourceMappingURL=UluProgressBar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluProgressBar.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/visualizations/UluProgressBar.vue"],"names":[],"mappings":"wBA+dqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;;;;2OAErC;;;;;;;;;;;;;;;;;;;;;;AAlTH;;;GAGG;AACH;;;;;;;;;;;;;;;;EAgFG"}
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
label: string;
|
|
9
|
+
small: boolean;
|
|
10
|
+
duration: number;
|
|
11
|
+
easing: string;
|
|
12
|
+
formatValue: Function;
|
|
13
|
+
percentage: number;
|
|
14
|
+
noValue: boolean;
|
|
15
|
+
outside: boolean;
|
|
16
|
+
outsideBelow: boolean;
|
|
17
|
+
status: string;
|
|
18
|
+
pieStyle: boolean;
|
|
19
|
+
noMask: boolean;
|
|
20
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
|
+
type __VLS_Slots = {
|
|
22
|
+
value?: ((props: {
|
|
23
|
+
value: number;
|
|
24
|
+
}) => any) | undefined;
|
|
25
|
+
} & {
|
|
26
|
+
value?: ((props: {
|
|
27
|
+
value: number;
|
|
28
|
+
}) => any) | undefined;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* A circular progress indicator component.
|
|
32
|
+
* @slot value - The value display. Overrides the `formatValue` prop.
|
|
33
|
+
*/
|
|
34
|
+
declare const props: {
|
|
35
|
+
readonly label: string;
|
|
36
|
+
readonly small: boolean;
|
|
37
|
+
readonly duration: number;
|
|
38
|
+
readonly easing: string;
|
|
39
|
+
readonly formatValue: Function;
|
|
40
|
+
readonly percentage: number;
|
|
41
|
+
readonly noValue: boolean;
|
|
42
|
+
readonly outside: boolean;
|
|
43
|
+
readonly outsideBelow: boolean;
|
|
44
|
+
readonly status: string;
|
|
45
|
+
readonly pieStyle: boolean;
|
|
46
|
+
readonly noMask: boolean;
|
|
47
|
+
};
|
|
48
|
+
//# sourceMappingURL=UluProgressCircle.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluProgressCircle.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/visualizations/UluProgressCircle.vue"],"names":[],"mappings":"wBAoZqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;2OAErC;;;;;;;;;;AAhPH;;;GAGG;AACH;;;;;;;;;;;;;EAoEG"}
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
* @param {Object} options Configuration options overrides
|
|
5
5
|
* @return {Object} { manager, active, direction } (all are null in SSR environment until init)
|
|
6
6
|
*/
|
|
7
|
-
export function useBreakpointManager(options:
|
|
7
|
+
export function useBreakpointManager(options: Object): Object;
|
|
8
8
|
//# sourceMappingURL=useBreakpointManager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useBreakpointManager.d.ts","sourceRoot":"","sources":["../../lib/composables/useBreakpointManager.js"],"names":[],"mappings":"AAoBA;;;;;GAKG;AACH,
|
|
1
|
+
{"version":3,"file":"useBreakpointManager.d.ts","sourceRoot":"","sources":["../../lib/composables/useBreakpointManager.js"],"names":[],"mappings":"AAoBA;;;;;GAKG;AACH,8CAHW,MAAM,GACL,MAAM,CA2CjB"}
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @param {Function} [options.useHead=defaultUseHead] - Injectable `useHead` for testing.
|
|
15
15
|
*/
|
|
16
16
|
export function useDocumentTitle(options?: {
|
|
17
|
-
title?: import("vue").Ref<string> |
|
|
18
|
-
titleTemplate?: string;
|
|
19
|
-
useRoute?: Function;
|
|
20
|
-
useHead?: Function;
|
|
17
|
+
title?: string | import("vue").Ref<string, string> | undefined;
|
|
18
|
+
titleTemplate?: string | undefined;
|
|
19
|
+
useRoute?: Function | undefined;
|
|
20
|
+
useHead?: Function | undefined;
|
|
21
21
|
}): void;
|
|
22
22
|
//# sourceMappingURL=useDocumentTitle.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useDocumentTitle.d.ts","sourceRoot":"","sources":["../../lib/composables/useDocumentTitle.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;GAcG;AACH,2CALG;IAAqD,KAAK
|
|
1
|
+
{"version":3,"file":"useDocumentTitle.d.ts","sourceRoot":"","sources":["../../lib/composables/useDocumentTitle.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;GAcG;AACH,2CALG;IAAqD,KAAK;IACjC,aAAa;IACX,QAAQ;IACR,OAAO;CACpC,QAsCA"}
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Utility composable for handling and formatting icon props for UluIcon.
|
|
3
3
|
* @returns {Object} An object with utility functions { getIconProps, getClassesFromDefinition }
|
|
4
4
|
*/
|
|
5
|
-
export function useIcon():
|
|
5
|
+
export function useIcon(): Object;
|
|
6
6
|
//# sourceMappingURL=useIcon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useIcon.d.ts","sourceRoot":"","sources":["../../lib/composables/useIcon.js"],"names":[],"mappings":"AAAA;;;GAGG;AACH
|
|
1
|
+
{"version":3,"file":"useIcon.d.ts","sourceRoot":"","sources":["../../lib/composables/useIcon.js"],"names":[],"mappings":"AAAA;;;GAGG;AACH,2BAFa,MAAM,CA2DlB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useModifiers.d.ts","sourceRoot":"","sources":["../../lib/composables/useModifiers.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,6DAtDG;IAAwB,KAAK,EAArB,MAAM;IACsC,SAAS,EAArD,MAAM,GAAG,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC;IAEuF,QAAQ,
|
|
1
|
+
{"version":3,"file":"useModifiers.d.ts","sourceRoot":"","sources":["../../lib/composables/useModifiers.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0DG;AACH,6DAtDG;IAAwB,KAAK,EAArB,MAAM;IACsC,SAAS,EAArD,MAAM,GAAG,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC;IAEuF,QAAQ;;;;;CAEzI,GAAU,MAAM,CA0ElB"}
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Composable function
|
|
3
3
|
* @return {Object} Contains reactive 'resizing' and two methods for calling callbacks (onResizeStart, onResizeEnd)
|
|
4
4
|
*/
|
|
5
|
-
export function useWindowResize():
|
|
5
|
+
export function useWindowResize(): Object;
|
|
6
6
|
//# sourceMappingURL=useWindowResize.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useWindowResize.d.ts","sourceRoot":"","sources":["../../lib/composables/useWindowResize.js"],"names":[],"mappings":"AAiDA;;;GAGG;AACH,
|
|
1
|
+
{"version":3,"file":"useWindowResize.d.ts","sourceRoot":"","sources":["../../lib/composables/useWindowResize.js"],"names":[],"mappings":"AAiDA;;;GAGG;AACH,mCAFY,MAAM,CAYjB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/plugins/core/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/plugins/core/index.js"],"names":[],"mappings":"AAmCA,mEAyDC;AA3DD,gCAA0D"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
open: boolean;
|
|
3
|
+
}, {
|
|
4
|
+
currentModal(): any;
|
|
5
|
+
currentProps(): any;
|
|
6
|
+
}, {
|
|
7
|
+
modalMounted(): void;
|
|
8
|
+
modalUnmounted(): void;
|
|
9
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("modal-unmount" | "modal-mount")[], "modal-unmount" | "modal-mount", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
10
|
+
"onModal-unmount"?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
"onModal-mount"?: ((...args: any[]) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
export default _default;
|
|
14
|
+
//# sourceMappingURL=UluModalsDisplay.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluModalsDisplay.vue.d.ts","sourceRoot":"","sources":["../../../lib/plugins/modals/UluModalsDisplay.vue"],"names":[],"mappings":""}
|
|
@@ -3,7 +3,7 @@ export namespace modalsState {
|
|
|
3
3
|
export { modals };
|
|
4
4
|
}
|
|
5
5
|
export function createApi(resolveModalOptions: any): {
|
|
6
|
-
open(name: any, props?:
|
|
6
|
+
open(name: any, props?: null): void;
|
|
7
7
|
/**
|
|
8
8
|
* Close the active modal
|
|
9
9
|
* @param {String|Node} focusTo The element or selector for an element to programmatically focus after modal close
|
|
@@ -14,7 +14,7 @@ export function createApi(resolveModalOptions: any): {
|
|
|
14
14
|
* Get a modal's config object by name
|
|
15
15
|
* @return {Object} Modal config object
|
|
16
16
|
*/
|
|
17
|
-
get(name: any):
|
|
17
|
+
get(name: any): Object;
|
|
18
18
|
/**
|
|
19
19
|
* Add a modal config
|
|
20
20
|
*/
|
|
@@ -23,12 +23,15 @@ export function createApi(resolveModalOptions: any): {
|
|
|
23
23
|
* Removes a modal config by name
|
|
24
24
|
* @return {Object} Modal that was removed
|
|
25
25
|
*/
|
|
26
|
-
remove(name: any):
|
|
26
|
+
remove(name: any): Object;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
29
|
* Reactive data from state
|
|
30
30
|
*/
|
|
31
|
-
declare const data:
|
|
31
|
+
declare const data: {
|
|
32
|
+
active: null;
|
|
33
|
+
activeProps: null;
|
|
34
|
+
};
|
|
32
35
|
declare const modals: any[];
|
|
33
36
|
export {};
|
|
34
37
|
//# sourceMappingURL=api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../lib/plugins/modals/api.js"],"names":[],"mappings":";;;;AA6BO;;IAML;;;;OAIG;;IAKH;;;OAGG;;
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../lib/plugins/modals/api.js"],"names":[],"mappings":";;;;AA6BO;;IAML;;;;OAIG;;IAKH;;;OAGG;oBADS,MAAM;IAUlB;;OAEG;;IAKH;;;OAGG;uBADS,MAAM;EAUlB;AAxDF;;GAEG;AACH;;;EAAyB;AAnBzB,4BAAkB"}
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
disabled: boolean;
|
|
10
|
+
noPadding: boolean;
|
|
11
|
+
startOpen: boolean;
|
|
12
|
+
activeClass: string;
|
|
13
|
+
classes: Record<string, any>;
|
|
14
|
+
clickOutsideCloses: boolean;
|
|
15
|
+
directFocus: Function;
|
|
16
|
+
size?: string | undefined;
|
|
17
|
+
tooltip?: string | undefined;
|
|
18
|
+
config?: Record<string, any> | undefined;
|
|
19
|
+
triggerText?: string | undefined;
|
|
20
|
+
triggerAlt?: string | undefined;
|
|
21
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
type __VLS_Slots = {
|
|
23
|
+
trigger?: ((props: {
|
|
24
|
+
isOpen: boolean;
|
|
25
|
+
close: () => void;
|
|
26
|
+
}) => any) | undefined;
|
|
27
|
+
} & {
|
|
28
|
+
default?: ((props: {
|
|
29
|
+
isOpen: boolean;
|
|
30
|
+
toggle: () => void;
|
|
31
|
+
close: () => void;
|
|
32
|
+
}) => any) | undefined;
|
|
33
|
+
} & {
|
|
34
|
+
footer?: ((props: {
|
|
35
|
+
close: () => void;
|
|
36
|
+
}) => any) | undefined;
|
|
37
|
+
};
|
|
38
|
+
declare const emit: (event: "toggle", ...args: any[]) => void;
|
|
39
|
+
declare const props: {
|
|
40
|
+
readonly disabled: boolean;
|
|
41
|
+
readonly noPadding: boolean;
|
|
42
|
+
readonly startOpen: boolean;
|
|
43
|
+
readonly activeClass: string;
|
|
44
|
+
readonly classes: Record<string, any>;
|
|
45
|
+
readonly clickOutsideCloses: boolean;
|
|
46
|
+
readonly directFocus: Function;
|
|
47
|
+
readonly size?: string | undefined;
|
|
48
|
+
readonly tooltip?: string | undefined;
|
|
49
|
+
readonly config?: Record<string, any> | undefined;
|
|
50
|
+
readonly triggerText?: string | undefined;
|
|
51
|
+
readonly triggerAlt?: string | undefined;
|
|
52
|
+
};
|
|
53
|
+
//# sourceMappingURL=UluPopover.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluPopover.vue.d.ts","sourceRoot":"","sources":["../../../lib/plugins/popovers/UluPopover.vue"],"names":[],"mappings":"wBAieqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AATzB;WAIkB,OAAO,IAAI;YADV,OAAO,CAAC,OAAO,KAAK,CAAC;;;;;;;;;;;;;2OAGrC;;;;;;;;;;;;;;;;;AAhRD,8DAAqC;AACrC;;;;;;;;;;;;;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=UluTooltipDisplay.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluTooltipDisplay.vue.d.ts","sourceRoot":"","sources":["../../../lib/plugins/popovers/UluTooltipDisplay.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluTooltipPopover.vue.d.ts","sourceRoot":"","sources":["../../../lib/plugins/popovers/UluTooltipPopover.vue"],"names":[],"mappings":""}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
|
-
let plugin:
|
|
2
|
+
let plugin: Object;
|
|
3
3
|
namespace popover {
|
|
4
4
|
let inline: boolean;
|
|
5
5
|
let delay: number;
|
|
@@ -8,7 +8,7 @@ declare namespace _default {
|
|
|
8
8
|
let offset: number;
|
|
9
9
|
let arrow: boolean;
|
|
10
10
|
}
|
|
11
|
-
let tooltip:
|
|
11
|
+
let tooltip: Object;
|
|
12
12
|
}
|
|
13
13
|
export default _default;
|
|
14
14
|
//# sourceMappingURL=defaults.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaults.d.ts","sourceRoot":"","sources":["../../../lib/plugins/popovers/defaults.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"defaults.d.ts","sourceRoot":"","sources":["../../../lib/plugins/popovers/defaults.js"],"names":[],"mappings":";gBAGY,MAAM;;;;;;;;;iBA4DN,MAAM"}
|