@ulu/frontend-vue 0.1.0-beta.9 → 0.1.1-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{breakpoints-BbkGNxxt.js → breakpoints-BYSYcx8V.js} +1 -1
- package/dist/frontend-vue.css +1 -1
- package/dist/frontend-vue.js +82 -70
- package/dist/index-A7weElM_.js +7766 -0
- package/lib/components/collapsible/UluAccordion.vue +71 -53
- package/lib/components/collapsible/UluAccordionGroup.vue +54 -0
- package/lib/components/collapsible/UluCollapsible.vue +144 -0
- package/lib/components/collapsible/UluDropdown.vue +29 -29
- package/lib/components/collapsible/UluOverflowPopover.vue +1 -1
- package/lib/components/elements/UluBadge.vue +51 -28
- package/lib/components/elements/UluBadgeStack.vue +8 -13
- package/lib/components/elements/UluButtonVerbose.vue +119 -0
- package/lib/components/elements/UluCard.vue +1 -1
- package/lib/components/elements/UluDefinitionList.vue +14 -17
- package/lib/components/elements/UluExternalLink.vue +21 -27
- package/lib/components/elements/UluIcon.vue +11 -1
- package/lib/components/elements/UluList.vue +53 -55
- package/lib/components/elements/UluSpokeSpinner.vue +12 -18
- package/lib/components/elements/UluTag.vue +35 -35
- package/lib/components/forms/UluFileDisplay.vue +49 -31
- package/lib/components/forms/UluFormFile.vue +37 -24
- package/lib/components/forms/UluFormMessage.vue +13 -10
- package/lib/components/forms/UluFormSelect.vue +28 -16
- package/lib/components/forms/UluFormText.vue +24 -15
- package/lib/components/forms/UluSearchForm.vue +11 -10
- package/lib/components/forms/UluSelectableMenu.vue +106 -0
- package/lib/components/index.js +4 -3
- package/lib/components/layout/UluTitleRail.vue +18 -0
- package/lib/components/layout/UluWhenBreakpoint.vue +9 -0
- package/lib/components/navigation/UluBreadcrumb.vue +9 -2
- package/lib/components/navigation/UluMenu.vue +13 -6
- package/lib/components/navigation/UluMenuStack.vue +50 -31
- package/lib/components/navigation/UluPager.vue +102 -0
- package/lib/components/systems/facets/ExampleFacetsWithPagination.vue +119 -0
- package/lib/components/systems/facets/UluFacetsActiveFilters.vue +84 -0
- package/lib/components/systems/facets/UluFacetsFilterLists.vue +97 -0
- package/lib/components/systems/facets/UluFacetsFilterPopovers.vue +125 -0
- package/lib/components/systems/facets/UluFacetsFilterSelects.vue +71 -0
- package/lib/components/systems/facets/UluFacetsHeaderLayout.vue +24 -0
- package/lib/components/systems/facets/UluFacetsList.vue +64 -34
- package/lib/components/systems/facets/UluFacetsResults.vue +63 -0
- package/lib/components/systems/facets/UluFacetsSearch.vue +27 -50
- package/lib/components/systems/facets/UluFacetsSidebarLayout.vue +90 -0
- package/lib/components/systems/facets/UluFacetsSort.vue +45 -0
- package/lib/components/systems/facets/_facets.scss +2 -3
- package/lib/components/systems/facets/_mock-data.js +40 -0
- package/lib/components/systems/facets/useFacets.js +394 -0
- package/lib/components/systems/index.js +14 -2
- package/lib/components/systems/scroll-anchors/UluScrollAnchors.vue +2 -1
- package/lib/components/systems/skeleton/UluShowSkeleton.vue +9 -8
- package/lib/components/systems/skeleton/UluSkeletonContent.vue +39 -43
- package/lib/components/systems/skeleton/UluSkeletonMedia.vue +4 -6
- package/lib/components/systems/skeleton/UluSkeletonText.vue +27 -0
- package/lib/components/systems/slider/UluImageSlideShow.vue +1 -1
- package/lib/components/systems/slider/UluSlideShow.vue +8 -3
- package/lib/components/systems/table-sticky/UluTableSticky.vue +7 -7
- package/lib/components/systems/table-sticky/UluTableStickyTable.vue +3 -3
- package/lib/components/visualizations/UluAnimateNumber.vue +7 -1
- package/lib/components/visualizations/UluProgressBar.vue +148 -74
- package/lib/components/visualizations/UluProgressCircle.vue +159 -0
- package/lib/composables/index.js +3 -1
- package/lib/composables/useDocumentTitle.js +61 -0
- package/lib/composables/usePagination.js +122 -0
- package/lib/index.js +1 -0
- package/lib/plugins/core/index.js +6 -1
- package/lib/plugins/popovers/UluPopover.vue +8 -3
- package/lib/plugins/toast/UluToast.vue +1 -1
- package/lib/plugins/toast/UluToastDisplay.vue +19 -2
- package/lib/utils/dom.js +12 -0
- package/lib/utils/index.js +2 -0
- package/lib/utils/{vue-router.js → router.js} +114 -30
- package/package.json +22 -12
- package/types/components/collapsible/UluAccordion.vue.d.ts +42 -0
- package/types/components/collapsible/UluAccordion.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluAccordionGroup.vue.d.ts +19 -0
- package/types/components/collapsible/UluAccordionGroup.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluCollapsible.vue.d.ts +40 -0
- package/types/components/collapsible/UluCollapsible.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluDropdown.vue.d.ts +22 -0
- package/types/components/collapsible/UluDropdown.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluModal.vue.d.ts +253 -0
- package/types/components/collapsible/UluModal.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluOverflowPopover.vue.d.ts +18 -0
- package/types/components/collapsible/UluOverflowPopover.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTab.vue.d.ts +10 -0
- package/types/components/collapsible/UluTab.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabGroup.vue.d.ts +18 -0
- package/types/components/collapsible/UluTabGroup.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabList.vue.d.ts +10 -0
- package/types/components/collapsible/UluTabList.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabPanel.vue.d.ts +10 -0
- package/types/components/collapsible/UluTabPanel.vue.d.ts.map +1 -0
- package/types/components/collapsible/UluTabPanels.vue.d.ts +10 -0
- package/types/components/collapsible/UluTabPanels.vue.d.ts.map +1 -0
- package/types/components/elements/UluAlert.vue.d.ts +147 -0
- package/types/components/elements/UluAlert.vue.d.ts.map +1 -0
- package/types/components/elements/UluBadge.vue.d.ts +30 -0
- package/types/components/elements/UluBadge.vue.d.ts.map +1 -0
- package/types/components/elements/UluBadgeStack.vue.d.ts +9 -0
- package/types/components/elements/UluBadgeStack.vue.d.ts.map +1 -0
- package/types/components/elements/UluButton.vue.d.ts +186 -0
- package/types/components/elements/UluButton.vue.d.ts.map +1 -0
- package/types/components/elements/UluButtonVerbose.vue.d.ts +126 -0
- package/types/components/elements/UluButtonVerbose.vue.d.ts.map +1 -0
- package/types/components/elements/UluCallout.vue.d.ts +27 -0
- package/types/components/elements/UluCallout.vue.d.ts.map +1 -0
- package/types/components/elements/UluCard.vue.d.ts +238 -0
- package/types/components/elements/UluCard.vue.d.ts.map +1 -0
- package/types/components/elements/UluDefinitionList.vue.d.ts +26 -0
- package/types/components/elements/UluDefinitionList.vue.d.ts.map +1 -0
- package/types/components/elements/UluExternalLink.vue.d.ts +25 -0
- package/types/components/elements/UluExternalLink.vue.d.ts.map +1 -0
- package/types/components/elements/UluIcon.vue.d.ts +11 -0
- package/types/components/elements/UluIcon.vue.d.ts.map +1 -0
- package/types/components/elements/UluList.vue.d.ts +37 -0
- package/types/components/elements/UluList.vue.d.ts.map +1 -0
- package/types/components/elements/UluMain.vue.d.ts +13 -0
- package/types/components/elements/UluMain.vue.d.ts.map +1 -0
- package/types/components/elements/UluSpokeSpinner.vue.d.ts +9 -0
- package/types/components/elements/UluSpokeSpinner.vue.d.ts.map +1 -0
- package/types/components/elements/UluTag.vue.d.ts +26 -0
- package/types/components/elements/UluTag.vue.d.ts.map +1 -0
- package/types/components/forms/UluFileDisplay.vue.d.ts +23 -0
- package/types/components/forms/UluFileDisplay.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormFile.vue.d.ts +26 -0
- package/types/components/forms/UluFormFile.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormMessage.vue.d.ts +18 -0
- package/types/components/forms/UluFormMessage.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormSelect.vue.d.ts +24 -0
- package/types/components/forms/UluFormSelect.vue.d.ts.map +1 -0
- package/types/components/forms/UluFormText.vue.d.ts +22 -0
- package/types/components/forms/UluFormText.vue.d.ts.map +1 -0
- package/types/components/forms/UluSearchForm.vue.d.ts +9 -0
- package/types/components/forms/UluSearchForm.vue.d.ts.map +1 -0
- package/types/components/forms/UluSelectableMenu.vue.d.ts +30 -0
- package/types/components/forms/UluSelectableMenu.vue.d.ts.map +1 -0
- package/types/components/index.d.ts +48 -0
- package/types/components/layout/UluAdaptiveLayout.vue.d.ts +12 -0
- package/types/components/layout/UluAdaptiveLayout.vue.d.ts.map +1 -0
- package/types/components/layout/UluDataGrid.vue.d.ts +3 -0
- package/types/components/layout/UluDataGrid.vue.d.ts.map +1 -0
- package/types/components/layout/UluTitleRail.vue.d.ts +91 -0
- package/types/components/layout/UluTitleRail.vue.d.ts.map +1 -0
- package/types/components/layout/UluWhenBreakpoint.vue.d.ts +20 -0
- package/types/components/layout/UluWhenBreakpoint.vue.d.ts.map +1 -0
- package/types/components/navigation/UluBreadcrumb.vue.d.ts +71 -0
- package/types/components/navigation/UluBreadcrumb.vue.d.ts.map +1 -0
- package/types/components/navigation/UluMenu.vue.d.ts +142 -0
- package/types/components/navigation/UluMenu.vue.d.ts.map +1 -0
- package/types/components/navigation/UluMenuStack.vue.d.ts +19 -0
- package/types/components/navigation/UluMenuStack.vue.d.ts.map +1 -0
- package/types/components/navigation/UluNavStrip.vue.d.ts +138 -0
- package/types/components/navigation/UluNavStrip.vue.d.ts.map +1 -0
- package/types/components/navigation/UluPager.vue.d.ts +15 -0
- package/types/components/navigation/UluPager.vue.d.ts.map +1 -0
- package/types/components/navigation/UluSkipLink.vue.d.ts +3 -0
- package/types/components/navigation/UluSkipLink.vue.d.ts.map +1 -0
- package/types/components/systems/facets/ExampleFacetsWithPagination.vue.d.ts +3 -0
- package/types/components/systems/facets/ExampleFacetsWithPagination.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsActiveFilters.vue.d.ts +18 -0
- package/types/components/systems/facets/UluFacetsActiveFilters.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterLists.vue.d.ts +27 -0
- package/types/components/systems/facets/UluFacetsFilterLists.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterPopovers.vue.d.ts +25 -0
- package/types/components/systems/facets/UluFacetsFilterPopovers.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsFilterSelects.vue.d.ts +11 -0
- package/types/components/systems/facets/UluFacetsFilterSelects.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsHeaderLayout.vue.d.ts +12 -0
- package/types/components/systems/facets/UluFacetsHeaderLayout.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsList.vue.d.ts +21 -0
- package/types/components/systems/facets/UluFacetsList.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsResults.vue.d.ts +27 -0
- package/types/components/systems/facets/UluFacetsResults.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsSearch.vue.d.ts +15 -0
- package/types/components/systems/facets/UluFacetsSearch.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsSidebarLayout.vue.d.ts +22 -0
- package/types/components/systems/facets/UluFacetsSidebarLayout.vue.d.ts.map +1 -0
- package/types/components/systems/facets/UluFacetsSort.vue.d.ts +22 -0
- package/types/components/systems/facets/UluFacetsSort.vue.d.ts.map +1 -0
- package/types/components/systems/facets/_mock-data.d.ts +18 -0
- package/types/components/systems/facets/_mock-data.d.ts.map +1 -0
- package/types/components/systems/facets/useFacets.d.ts +57 -0
- package/types/components/systems/facets/useFacets.d.ts.map +1 -0
- package/types/components/systems/index.d.ts +25 -1
- package/types/components/systems/scroll-anchors/UluScrollAnchors.vue.d.ts +60 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchors.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNav.vue.d.ts +15 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNav.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.d.ts +32 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsSection.vue.d.ts +50 -0
- package/types/components/systems/scroll-anchors/UluScrollAnchorsSection.vue.d.ts.map +1 -0
- package/types/components/systems/scroll-anchors/symbols.d.ts +3 -3
- package/types/components/systems/scroll-anchors/symbols.d.ts.map +1 -1
- package/types/components/systems/skeleton/UluShowSkeleton.vue.d.ts +16 -0
- package/types/components/systems/skeleton/UluShowSkeleton.vue.d.ts.map +1 -0
- package/types/components/systems/skeleton/UluSkeletonContent.vue.d.ts +9 -0
- package/types/components/systems/skeleton/UluSkeletonContent.vue.d.ts.map +1 -0
- package/types/components/systems/skeleton/UluSkeletonMedia.vue.d.ts +3 -0
- package/types/components/systems/skeleton/UluSkeletonMedia.vue.d.ts.map +1 -0
- package/types/components/systems/skeleton/UluSkeletonText.vue.d.ts +13 -0
- package/types/components/systems/skeleton/UluSkeletonText.vue.d.ts.map +1 -0
- package/types/components/systems/slider/UluImageSlideShow.vue.d.ts +130 -0
- package/types/components/systems/slider/UluImageSlideShow.vue.d.ts.map +1 -0
- package/types/components/systems/slider/UluSlideShow.vue.d.ts +205 -0
- package/types/components/systems/slider/UluSlideShow.vue.d.ts.map +1 -0
- package/types/components/systems/slider/UluSlideShowSlide.vue.d.ts +17 -0
- package/types/components/systems/slider/UluSlideShowSlide.vue.d.ts.map +1 -0
- package/types/components/systems/table-sticky/UluTableSticky.vue.d.ts +455 -0
- package/types/components/systems/table-sticky/UluTableSticky.vue.d.ts.map +1 -0
- package/types/components/systems/table-sticky/UluTableStickyRows.vue.d.ts +34 -0
- package/types/components/systems/table-sticky/UluTableStickyRows.vue.d.ts.map +1 -0
- package/types/components/systems/table-sticky/UluTableStickyTable.vue.d.ts +151 -0
- package/types/components/systems/table-sticky/UluTableStickyTable.vue.d.ts.map +1 -0
- package/types/components/utils/UluCondText.vue.d.ts +29 -0
- package/types/components/utils/UluCondText.vue.d.ts.map +1 -0
- package/types/components/utils/UluEmpty.vue.d.ts +3 -0
- package/types/components/utils/UluEmpty.vue.d.ts.map +1 -0
- package/types/components/utils/UluEmptyView.vue.d.ts +3 -0
- package/types/components/utils/UluEmptyView.vue.d.ts.map +1 -0
- package/types/components/utils/UluPlaceholderImage.vue.d.ts +61 -0
- package/types/components/utils/UluPlaceholderImage.vue.d.ts.map +1 -0
- package/types/components/utils/UluPlaceholderText.vue.d.ts +24 -0
- package/types/components/utils/UluPlaceholderText.vue.d.ts.map +1 -0
- package/types/components/utils/UluRouteAnnouncer.vue.d.ts +63 -0
- package/types/components/utils/UluRouteAnnouncer.vue.d.ts.map +1 -0
- package/types/components/visualizations/UluAnimateNumber.vue.d.ts +16 -0
- package/types/components/visualizations/UluAnimateNumber.vue.d.ts.map +1 -0
- package/types/components/visualizations/UluProgressBar.vue.d.ts +66 -0
- package/types/components/visualizations/UluProgressBar.vue.d.ts.map +1 -0
- package/types/components/visualizations/UluProgressCircle.vue.d.ts +48 -0
- package/types/components/visualizations/UluProgressCircle.vue.d.ts.map +1 -0
- package/types/composables/index.d.ts +2 -0
- package/types/composables/useBreakpointManager.d.ts +1 -1
- package/types/composables/useBreakpointManager.d.ts.map +1 -1
- package/types/composables/useDocumentTitle.d.ts +22 -0
- package/types/composables/useDocumentTitle.d.ts.map +1 -0
- package/types/composables/useIcon.d.ts +1 -1
- package/types/composables/useIcon.d.ts.map +1 -1
- package/types/composables/useModifiers.d.ts +1 -1
- package/types/composables/useModifiers.d.ts.map +1 -1
- package/types/composables/usePageTitle.d.ts +19 -0
- package/types/composables/usePageTitle.d.ts.map +1 -0
- package/types/composables/usePagination.d.ts +25 -0
- package/types/composables/usePagination.d.ts.map +1 -0
- package/types/composables/useWindowResize.d.ts +1 -1
- package/types/composables/useWindowResize.d.ts.map +1 -1
- package/types/index.d.ts +1 -0
- package/types/plugins/core/index.d.ts.map +1 -1
- package/types/plugins/modals/UluModalsDisplay.vue.d.ts +14 -0
- package/types/plugins/modals/UluModalsDisplay.vue.d.ts.map +1 -0
- package/types/plugins/modals/api.d.ts +7 -4
- package/types/plugins/modals/api.d.ts.map +1 -1
- package/types/plugins/popovers/UluPopover.vue.d.ts +54 -0
- package/types/plugins/popovers/UluPopover.vue.d.ts.map +1 -0
- package/types/plugins/popovers/UluTooltipDisplay.vue.d.ts +3 -0
- package/types/plugins/popovers/UluTooltipDisplay.vue.d.ts.map +1 -0
- package/types/plugins/popovers/UluTooltipPopover.vue.d.ts +3 -0
- package/types/plugins/popovers/UluTooltipPopover.vue.d.ts.map +1 -0
- package/types/plugins/popovers/defaults.d.ts +2 -2
- package/types/plugins/popovers/defaults.d.ts.map +1 -1
- package/types/plugins/popovers/manager.d.ts +50 -6
- package/types/plugins/popovers/manager.d.ts.map +1 -1
- package/types/plugins/popovers/useFollow.d.ts +4 -4
- package/types/plugins/popovers/useFollow.d.ts.map +1 -1
- package/types/plugins/toast/UluToast.vue.d.ts +52 -0
- package/types/plugins/toast/UluToast.vue.d.ts.map +1 -0
- package/types/plugins/toast/UluToastDisplay.vue.d.ts +13 -0
- package/types/plugins/toast/UluToastDisplay.vue.d.ts.map +1 -0
- package/types/plugins/toast/defaults.d.ts +39 -2
- package/types/plugins/toast/store.d.ts +65 -2
- package/types/plugins/toast/store.d.ts.map +1 -1
- package/types/utils/dom.d.ts +2 -1
- package/types/utils/dom.d.ts.map +1 -1
- package/types/utils/index.d.ts +3 -0
- package/types/utils/index.d.ts.map +1 -0
- package/types/utils/router.d.ts +144 -0
- package/types/utils/router.d.ts.map +1 -0
- package/dist/index-D3Uc6T5M.js +0 -6469
- package/lib/components/collapsible/UluCollapsibleRegion.vue +0 -278
- package/lib/components/forms/UluCheckboxMenu.vue +0 -36
- package/lib/components/systems/facets/UluFacets.vue +0 -380
- package/lib/components/systems/skeleton/UluSkeletonTextInline.vue +0 -9
- package/lib/components/visualizations/UluProgressDonut.vue +0 -97
- package/lib/utils/placeholder.js +0 -6
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
rows: ArrayConstructor;
|
|
3
|
+
rowColumns: ArrayConstructor;
|
|
4
|
+
columnWidth: StringConstructor;
|
|
5
|
+
optionalAttr: FunctionConstructor;
|
|
6
|
+
resolveClasses: FunctionConstructor;
|
|
7
|
+
getCellHeaders: FunctionConstructor;
|
|
8
|
+
value: FunctionConstructor;
|
|
9
|
+
isActual: BooleanConstructor;
|
|
10
|
+
classes: ObjectConstructor;
|
|
11
|
+
foot: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
rows: ArrayConstructor;
|
|
17
|
+
rowColumns: ArrayConstructor;
|
|
18
|
+
columnWidth: StringConstructor;
|
|
19
|
+
optionalAttr: FunctionConstructor;
|
|
20
|
+
resolveClasses: FunctionConstructor;
|
|
21
|
+
getCellHeaders: FunctionConstructor;
|
|
22
|
+
value: FunctionConstructor;
|
|
23
|
+
isActual: BooleanConstructor;
|
|
24
|
+
classes: ObjectConstructor;
|
|
25
|
+
foot: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
isActual: boolean;
|
|
31
|
+
foot: boolean;
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
33
|
+
export default _default;
|
|
34
|
+
//# sourceMappingURL=UluTableStickyRows.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluTableStickyRows.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/table-sticky/UluTableStickyRows.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
resolveClasses: FunctionConstructor;
|
|
3
|
+
classes: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default: () => {};
|
|
6
|
+
};
|
|
7
|
+
caption: StringConstructor;
|
|
8
|
+
idPrefix: StringConstructor;
|
|
9
|
+
headerRows: {
|
|
10
|
+
type: ArrayConstructor;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
rows: ArrayConstructor;
|
|
14
|
+
footerRows: ArrayConstructor;
|
|
15
|
+
rowColumns: ArrayConstructor;
|
|
16
|
+
/**
|
|
17
|
+
* Is the actual table not a clone for sticky headers
|
|
18
|
+
*/
|
|
19
|
+
isActual: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
};
|
|
22
|
+
columnWidth: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Optional user overridden value getter (for rows)
|
|
27
|
+
* @param {Object} row The current row
|
|
28
|
+
* @param {Object} column The current column in the row
|
|
29
|
+
*/
|
|
30
|
+
getRowValue: {
|
|
31
|
+
type: FunctionConstructor;
|
|
32
|
+
default: ({ row, column }: {
|
|
33
|
+
row: any;
|
|
34
|
+
column: any;
|
|
35
|
+
}) => any;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Optional user overridden value getter (for rows)
|
|
39
|
+
* @param {Object} row The current row
|
|
40
|
+
* @param {Object} column The current column in the row
|
|
41
|
+
*/
|
|
42
|
+
getColumnTitle: {
|
|
43
|
+
type: FunctionConstructor;
|
|
44
|
+
default: ({ column }: {
|
|
45
|
+
column: any;
|
|
46
|
+
}) => any;
|
|
47
|
+
};
|
|
48
|
+
}>, {}, {
|
|
49
|
+
headerRefs: {};
|
|
50
|
+
}, {}, {
|
|
51
|
+
handleSortFocus(column: any, isFocused: any): void;
|
|
52
|
+
addHeaderRef(column: any, el: any): void;
|
|
53
|
+
/**
|
|
54
|
+
* False is no longer not printed
|
|
55
|
+
*/
|
|
56
|
+
optionalAttr(val: any): any;
|
|
57
|
+
value({ row, column, rowIndex }: {
|
|
58
|
+
row: any;
|
|
59
|
+
column: any;
|
|
60
|
+
rowIndex: any;
|
|
61
|
+
}): any;
|
|
62
|
+
getCellHeaders(column: any, rowIndex: any): string;
|
|
63
|
+
getHeaderHeaders(column: any): any;
|
|
64
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
+
resolveClasses: FunctionConstructor;
|
|
66
|
+
classes: {
|
|
67
|
+
type: ObjectConstructor;
|
|
68
|
+
default: () => {};
|
|
69
|
+
};
|
|
70
|
+
caption: StringConstructor;
|
|
71
|
+
idPrefix: StringConstructor;
|
|
72
|
+
headerRows: {
|
|
73
|
+
type: ArrayConstructor;
|
|
74
|
+
required: true;
|
|
75
|
+
};
|
|
76
|
+
rows: ArrayConstructor;
|
|
77
|
+
footerRows: ArrayConstructor;
|
|
78
|
+
rowColumns: ArrayConstructor;
|
|
79
|
+
/**
|
|
80
|
+
* Is the actual table not a clone for sticky headers
|
|
81
|
+
*/
|
|
82
|
+
isActual: {
|
|
83
|
+
type: BooleanConstructor;
|
|
84
|
+
};
|
|
85
|
+
columnWidth: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* Optional user overridden value getter (for rows)
|
|
90
|
+
* @param {Object} row The current row
|
|
91
|
+
* @param {Object} column The current column in the row
|
|
92
|
+
*/
|
|
93
|
+
getRowValue: {
|
|
94
|
+
type: FunctionConstructor;
|
|
95
|
+
default: ({ row, column }: {
|
|
96
|
+
row: any;
|
|
97
|
+
column: any;
|
|
98
|
+
}) => any;
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Optional user overridden value getter (for rows)
|
|
102
|
+
* @param {Object} row The current row
|
|
103
|
+
* @param {Object} column The current column in the row
|
|
104
|
+
*/
|
|
105
|
+
getColumnTitle: {
|
|
106
|
+
type: FunctionConstructor;
|
|
107
|
+
default: ({ column }: {
|
|
108
|
+
column: any;
|
|
109
|
+
}) => any;
|
|
110
|
+
};
|
|
111
|
+
}>> & Readonly<{}>, {
|
|
112
|
+
classes: Record<string, any>;
|
|
113
|
+
isActual: boolean;
|
|
114
|
+
getRowValue: Function;
|
|
115
|
+
getColumnTitle: Function;
|
|
116
|
+
}, {}, {
|
|
117
|
+
UluTableStickyRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
118
|
+
rows: ArrayConstructor;
|
|
119
|
+
rowColumns: ArrayConstructor;
|
|
120
|
+
columnWidth: StringConstructor;
|
|
121
|
+
optionalAttr: FunctionConstructor;
|
|
122
|
+
resolveClasses: FunctionConstructor;
|
|
123
|
+
getCellHeaders: FunctionConstructor;
|
|
124
|
+
value: FunctionConstructor;
|
|
125
|
+
isActual: BooleanConstructor;
|
|
126
|
+
classes: ObjectConstructor;
|
|
127
|
+
foot: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
131
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
132
|
+
rows: ArrayConstructor;
|
|
133
|
+
rowColumns: ArrayConstructor;
|
|
134
|
+
columnWidth: StringConstructor;
|
|
135
|
+
optionalAttr: FunctionConstructor;
|
|
136
|
+
resolveClasses: FunctionConstructor;
|
|
137
|
+
getCellHeaders: FunctionConstructor;
|
|
138
|
+
value: FunctionConstructor;
|
|
139
|
+
isActual: BooleanConstructor;
|
|
140
|
+
classes: ObjectConstructor;
|
|
141
|
+
foot: {
|
|
142
|
+
type: BooleanConstructor;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
}>> & Readonly<{}>, {
|
|
146
|
+
isActual: boolean;
|
|
147
|
+
foot: boolean;
|
|
148
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
149
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
150
|
+
export default _default;
|
|
151
|
+
//# sourceMappingURL=UluTableStickyTable.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluTableStickyTable.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/table-sticky/UluTableStickyTable.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;IAmQM;;OAEG;;;;;;;IAOH;;;;OAIG;;;;;;;;IAKH;;;;OAIG;;;;;;;;;;;;IA4BH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;IApDH;;OAEG;;;;;;;IAOH;;;;OAIG;;;;;;;;IAKH;;;;OAIG"}
|
|
@@ -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=UluCondText.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluCondText.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/utils/UluCondText.vue"],"names":[],"mappings":";IAmCM;;OAEG;;IAEH;;OAEG;;;;;;IANH;;OAEG;;IAEH;;OAEG"}
|
|
@@ -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 annouced
|
|
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 annouced
|
|
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,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"}
|
|
@@ -3,4 +3,6 @@ export { useModifiers } from "./useModifiers.js";
|
|
|
3
3
|
export { useWindowResize } from "./useWindowResize.js";
|
|
4
4
|
export { useRequiredInject } from "./useRequiredInject.js";
|
|
5
5
|
export { useBreakpointManager } from "./useBreakpointManager.js";
|
|
6
|
+
export { usePagination } from "./usePagination.js";
|
|
7
|
+
export { useDocumentTitle } from "./useDocumentTitle.js";
|
|
6
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A composable to manage the document title.
|
|
3
|
+
*
|
|
4
|
+
* When called with a `title` option, it sets a dynamic title for the current page.
|
|
5
|
+
* This is for use within specific components.
|
|
6
|
+
*
|
|
7
|
+
* When called without a `title` option (typically in App.vue), it manages the
|
|
8
|
+
* document title for the whole app, using titles from components or route meta.
|
|
9
|
+
*
|
|
10
|
+
* @param {object} options
|
|
11
|
+
* @param {import('vue').Ref<string> | string} [options.title] - The dynamic title to set for the current page.
|
|
12
|
+
* @param {string} [options.titleTemplate='%s'] - The template for the document title, e.g., '%s | My Site'.
|
|
13
|
+
* @param {Function} [options.useRoute=defaultUseRoute] - Injectable `useRoute` for testing.
|
|
14
|
+
* @param {Function} [options.useHead=defaultUseHead] - Injectable `useHead` for testing.
|
|
15
|
+
*/
|
|
16
|
+
export function useDocumentTitle(options?: {
|
|
17
|
+
title?: string | import("vue").Ref<string, string> | undefined;
|
|
18
|
+
titleTemplate?: string | undefined;
|
|
19
|
+
useRoute?: Function | undefined;
|
|
20
|
+
useHead?: Function | undefined;
|
|
21
|
+
}): void;
|
|
22
|
+
//# sourceMappingURL=useDocumentTitle.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A composable to set the title for the current page/route from within its component.
|
|
3
|
+
* This provides a single source of truth for a page's title, which can be
|
|
4
|
+
* consumed by various parts of the application (e.g., breadcrumbs, document title).
|
|
5
|
+
* @param {import('vue').Ref<string> | string} title The title to set for the current page. Can be a ref, computed, or a plain string.
|
|
6
|
+
* @param {{ useRoute: Function }} options For dependency injection in tests/stories.
|
|
7
|
+
*/
|
|
8
|
+
export function usePageTitle(title: import("vue").Ref<string> | string, { useRoute }?: {
|
|
9
|
+
useRoute: Function;
|
|
10
|
+
}): void;
|
|
11
|
+
/**
|
|
12
|
+
* Gets the dynamically set page title for a given path.
|
|
13
|
+
* For internal use by consumers like breadcrumb or document title utilities.
|
|
14
|
+
* @param {string} path The route path to look up.
|
|
15
|
+
* @returns {string | undefined}
|
|
16
|
+
*/
|
|
17
|
+
export function getPageTitle(path: string): string | undefined;
|
|
18
|
+
export const pageTitles: {};
|
|
19
|
+
//# sourceMappingURL=usePageTitle.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePageTitle.d.ts","sourceRoot":"","sources":["../../lib/composables/usePageTitle.js"],"names":[],"mappings":"AAOA;;;;;;GAMG;AACH,oCAHW,OAAO,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,GAAG,MAAM,iBAClC;IAAE,QAAQ,WAAU;CAAE,QAchC;AAED;;;;;GAKG;AACH,mCAHW,MAAM,GACJ,MAAM,GAAG,SAAS,CAI9B;AA/BD,4BAAuC"}
|