@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,15 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
element: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
element: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {
|
|
12
|
+
element: string;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
//# sourceMappingURL=UluScrollAnchorsNav.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluScrollAnchorsNav.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/scroll-anchors/UluScrollAnchorsNav.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Element to use for container
|
|
4
|
+
*/
|
|
5
|
+
element: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {
|
|
10
|
+
linkRefs: {};
|
|
11
|
+
indicatorAnimReady: boolean;
|
|
12
|
+
}, {
|
|
13
|
+
indicatorStyles(): false | {
|
|
14
|
+
y: any;
|
|
15
|
+
height: any;
|
|
16
|
+
initial: any;
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
addLinkRef(index: any, el: any): void;
|
|
20
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
/**
|
|
22
|
+
* Element to use for container
|
|
23
|
+
*/
|
|
24
|
+
element: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>> & Readonly<{}>, {
|
|
29
|
+
element: string;
|
|
30
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export default _default;
|
|
32
|
+
//# sourceMappingURL=UluScrollAnchorsNavAnimated.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluScrollAnchorsNavAnimated.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/scroll-anchors/UluScrollAnchorsNavAnimated.vue"],"names":[],"mappings":";IAqIM;;OAEG;;;;;;;;;;;;;;;;;IAFH;;OAEG"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
title: StringConstructor;
|
|
3
|
+
titleElement: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
titleClass: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
anchorId: StringConstructor;
|
|
12
|
+
wrapperClass: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
activeClass: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
}>, {}, {
|
|
21
|
+
titleId: string;
|
|
22
|
+
}, {
|
|
23
|
+
section(): any;
|
|
24
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
title: StringConstructor;
|
|
26
|
+
titleElement: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
titleClass: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
anchorId: StringConstructor;
|
|
35
|
+
wrapperClass: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
activeClass: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
activeClass: string;
|
|
45
|
+
titleElement: string;
|
|
46
|
+
titleClass: string;
|
|
47
|
+
wrapperClass: string;
|
|
48
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
|
+
export default _default;
|
|
50
|
+
//# sourceMappingURL=UluScrollAnchorsSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluScrollAnchorsSection.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/scroll-anchors/UluScrollAnchorsSection.vue"],"names":[],"mappings":""}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Symbol for register provide/inject
|
|
3
3
|
*/
|
|
4
|
-
export const REGISTER:
|
|
5
|
-
export const UNREGISTER:
|
|
6
|
-
export const SECTIONS:
|
|
4
|
+
export const REGISTER: unique symbol;
|
|
5
|
+
export const UNREGISTER: unique symbol;
|
|
6
|
+
export const SECTIONS: unique symbol;
|
|
7
7
|
//# sourceMappingURL=symbols.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"symbols.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/scroll-anchors/symbols.js"],"names":[],"mappings":"AAAA;;GAEG;AACH,
|
|
1
|
+
{"version":3,"file":"symbols.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/scroll-anchors/symbols.js"],"names":[],"mappings":"AAAA;;GAEG;AACH,qCAAiC;AACjC,uCAAmC;AACnC,qCAAiC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
when: boolean;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
type __VLS_Slots = {
|
|
11
|
+
default?: ((props: {}) => any) | undefined;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_props: {
|
|
14
|
+
readonly when: boolean;
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=UluShowSkeleton.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluShowSkeleton.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/skeleton/UluShowSkeleton.vue"],"names":[],"mappings":"wBA6EqB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;;qBAEpD,CAAC,EAAE,CAAC;;;AARzB;YAGmB,OAAO,CAAC,OAAO,WAAW,CAAC;;2OAE3C;;;;AA5DD;;EAKG"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
lines: number;
|
|
4
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
export default _default;
|
|
6
|
+
declare const props: {
|
|
7
|
+
readonly lines: number;
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=UluSkeletonContent.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSkeletonContent.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/skeleton/UluSkeletonContent.vue"],"names":[],"mappings":";YAoJmB,OAAO,CAAC,OAAO,KAAK,CAAC;;;;AAvFtC;;EAQG"}
|
|
@@ -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=UluSkeletonMedia.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSkeletonMedia.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/skeleton/UluSkeletonMedia.vue"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof __VLS_props>;
|
|
3
|
+
inline: boolean;
|
|
4
|
+
alt: boolean;
|
|
5
|
+
width?: string | undefined;
|
|
6
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
|
+
export default _default;
|
|
8
|
+
declare const __VLS_props: {
|
|
9
|
+
readonly inline: boolean;
|
|
10
|
+
readonly alt: boolean;
|
|
11
|
+
readonly width?: string | undefined;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=UluSkeletonText.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSkeletonText.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/skeleton/UluSkeletonText.vue"],"names":[],"mappings":";YAsFmB,OAAO,CAAC,OAAO,WAAW,CAAC;;;;;;AA1D5C;;;;EAaG"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
images: ArrayConstructor;
|
|
3
|
+
selectButton: BooleanConstructor;
|
|
4
|
+
}>, {}, {}, {}, {
|
|
5
|
+
/**
|
|
6
|
+
* Test to see if the active slide's nav button (thumbnail) is in view
|
|
7
|
+
* if not, scroll the nav to ensure it is visible. This function will take
|
|
8
|
+
* into account which side of the overflow nav the item is hidden in and will
|
|
9
|
+
* scroll either to fit it to the flush end (if overflow to the right) or flush start
|
|
10
|
+
*/
|
|
11
|
+
slideChange({ slide, nav }: {
|
|
12
|
+
slide: any;
|
|
13
|
+
nav: any;
|
|
14
|
+
}): void;
|
|
15
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
images: ArrayConstructor;
|
|
17
|
+
selectButton: BooleanConstructor;
|
|
18
|
+
}>> & Readonly<{}>, {
|
|
19
|
+
selectButton: boolean;
|
|
20
|
+
}, {}, {
|
|
21
|
+
UluSlideShow: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
22
|
+
slideFocusable: BooleanConstructor;
|
|
23
|
+
focusOptions: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: () => {
|
|
26
|
+
preventScroll: boolean;
|
|
27
|
+
focusVisible: boolean;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
items: ArrayConstructor;
|
|
31
|
+
noNav: BooleanConstructor;
|
|
32
|
+
scrollBehaviorNav: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
scrollBehaviorControl: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
observerOptions: {
|
|
41
|
+
type: ObjectConstructor;
|
|
42
|
+
default: () => {
|
|
43
|
+
threshhold: number;
|
|
44
|
+
rootMargin: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
initialActive: {
|
|
48
|
+
type: NumberConstructor;
|
|
49
|
+
default: number;
|
|
50
|
+
};
|
|
51
|
+
scrollAmount: (FunctionConstructor | NumberConstructor)[];
|
|
52
|
+
}>, {}, {
|
|
53
|
+
slides: any;
|
|
54
|
+
}, {
|
|
55
|
+
canScrollRight(): boolean;
|
|
56
|
+
canScrollLeft(): boolean;
|
|
57
|
+
}, {
|
|
58
|
+
createSlides(): {
|
|
59
|
+
element: null;
|
|
60
|
+
active: boolean;
|
|
61
|
+
item: unknown;
|
|
62
|
+
}[];
|
|
63
|
+
getSlideByElement(el: any): any;
|
|
64
|
+
getScrollData(): {
|
|
65
|
+
scrollLeft: any;
|
|
66
|
+
offsetWidth: any;
|
|
67
|
+
scrollWidth: any;
|
|
68
|
+
};
|
|
69
|
+
resolveAmount(dir: any): any;
|
|
70
|
+
scrollTo(left: any, behavior: any): void;
|
|
71
|
+
to(index: number): void;
|
|
72
|
+
next(): void;
|
|
73
|
+
previous(): void;
|
|
74
|
+
createObserver(): void;
|
|
75
|
+
observeSlides(): void;
|
|
76
|
+
destroyObserver(): void;
|
|
77
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "slide-change"[], "slide-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
78
|
+
slideFocusable: BooleanConstructor;
|
|
79
|
+
focusOptions: {
|
|
80
|
+
type: ObjectConstructor;
|
|
81
|
+
default: () => {
|
|
82
|
+
preventScroll: boolean;
|
|
83
|
+
focusVisible: boolean;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
items: ArrayConstructor;
|
|
87
|
+
noNav: BooleanConstructor;
|
|
88
|
+
scrollBehaviorNav: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
scrollBehaviorControl: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
observerOptions: {
|
|
97
|
+
type: ObjectConstructor;
|
|
98
|
+
default: () => {
|
|
99
|
+
threshhold: number;
|
|
100
|
+
rootMargin: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
initialActive: {
|
|
104
|
+
type: NumberConstructor;
|
|
105
|
+
default: number;
|
|
106
|
+
};
|
|
107
|
+
scrollAmount: (FunctionConstructor | NumberConstructor)[];
|
|
108
|
+
}>> & Readonly<{
|
|
109
|
+
"onSlide-change"?: ((...args: any[]) => any) | undefined;
|
|
110
|
+
}>, {
|
|
111
|
+
observerOptions: Record<string, any>;
|
|
112
|
+
slideFocusable: boolean;
|
|
113
|
+
noNav: boolean;
|
|
114
|
+
focusOptions: Record<string, any>;
|
|
115
|
+
scrollBehaviorNav: string;
|
|
116
|
+
scrollBehaviorControl: string;
|
|
117
|
+
initialActive: number;
|
|
118
|
+
}, {}, {
|
|
119
|
+
UluIcon: import("vue").DefineComponent<{}, {
|
|
120
|
+
$props: Partial<{
|
|
121
|
+
readonly spaced: boolean;
|
|
122
|
+
readonly icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
123
|
+
}>;
|
|
124
|
+
spaced: boolean;
|
|
125
|
+
icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
126
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
127
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
128
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
129
|
+
export default _default;
|
|
130
|
+
//# sourceMappingURL=UluImageSlideShow.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluImageSlideShow.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/slider/UluImageSlideShow.vue"],"names":[],"mappings":";;;;IA4FM;;;;;OAKG"}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Should slides be focusable by tab key
|
|
4
|
+
*/
|
|
5
|
+
slideFocusable: BooleanConstructor;
|
|
6
|
+
/**
|
|
7
|
+
* Setting for element.focus() when navigating to() a specific slide
|
|
8
|
+
*/
|
|
9
|
+
focusOptions: {
|
|
10
|
+
type: ObjectConstructor;
|
|
11
|
+
default: () => {
|
|
12
|
+
preventScroll: boolean;
|
|
13
|
+
focusVisible: boolean;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Array of slide items (data)
|
|
18
|
+
* - Use slot (#slide) to template
|
|
19
|
+
*/
|
|
20
|
+
items: ArrayConstructor;
|
|
21
|
+
/**
|
|
22
|
+
* Slideshow without a nav
|
|
23
|
+
*/
|
|
24
|
+
noNav: BooleanConstructor;
|
|
25
|
+
/**
|
|
26
|
+
* Allow user to change the scroll behavior when a slide is navigated to()
|
|
27
|
+
*/
|
|
28
|
+
scrollBehaviorNav: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Allow user to change the scroll behavior when a slide is navigated via next/prev
|
|
34
|
+
*/
|
|
35
|
+
scrollBehaviorControl: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Observe
|
|
41
|
+
*/
|
|
42
|
+
observerOptions: {
|
|
43
|
+
type: ObjectConstructor;
|
|
44
|
+
default: () => {
|
|
45
|
+
threshhold: number;
|
|
46
|
+
rootMargin: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* The intial slide index to use for active slide (zero based)
|
|
51
|
+
*/
|
|
52
|
+
initialActive: {
|
|
53
|
+
type: NumberConstructor;
|
|
54
|
+
default: number;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Allow user to control scroll amount (element.scrollTo) for prev/next controls
|
|
58
|
+
* - For future scroll implementations (like ulu scroll-slider for cards, etc)
|
|
59
|
+
* - Function is passed (direction, DomRefs)
|
|
60
|
+
* - Number is passed directly
|
|
61
|
+
*/
|
|
62
|
+
scrollAmount: (FunctionConstructor | NumberConstructor)[];
|
|
63
|
+
}>, {}, {
|
|
64
|
+
slides: any;
|
|
65
|
+
}, {
|
|
66
|
+
canScrollRight(): boolean;
|
|
67
|
+
canScrollLeft(): boolean;
|
|
68
|
+
}, {
|
|
69
|
+
/**
|
|
70
|
+
* Creates the internal array of slides based on user's passed items
|
|
71
|
+
*/
|
|
72
|
+
createSlides(): {
|
|
73
|
+
element: null;
|
|
74
|
+
active: boolean;
|
|
75
|
+
item: unknown;
|
|
76
|
+
}[];
|
|
77
|
+
/**
|
|
78
|
+
* Find the corresponding slide data by slide element
|
|
79
|
+
*/
|
|
80
|
+
getSlideByElement(el: any): any;
|
|
81
|
+
/**
|
|
82
|
+
* Provides scroll measurements
|
|
83
|
+
*/
|
|
84
|
+
getScrollData(): {
|
|
85
|
+
scrollLeft: any;
|
|
86
|
+
offsetWidth: any;
|
|
87
|
+
scrollWidth: any;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Determines the amount to scroll the track
|
|
91
|
+
*/
|
|
92
|
+
resolveAmount(dir: any): any;
|
|
93
|
+
/**
|
|
94
|
+
* Scroll the track to a specified point
|
|
95
|
+
*/
|
|
96
|
+
scrollTo(left: any, behavior: any): void;
|
|
97
|
+
/**
|
|
98
|
+
* Scroll to specific index
|
|
99
|
+
* @param {Number} index Slide index
|
|
100
|
+
*/
|
|
101
|
+
to(index: number): void;
|
|
102
|
+
/**
|
|
103
|
+
* Goto to next slide
|
|
104
|
+
*/
|
|
105
|
+
next(): void;
|
|
106
|
+
/**
|
|
107
|
+
* Goto to previous slide
|
|
108
|
+
*/
|
|
109
|
+
previous(): void;
|
|
110
|
+
/**
|
|
111
|
+
* Sets up a new observer to watch the slides visibility (within track)
|
|
112
|
+
*/
|
|
113
|
+
createObserver(): void;
|
|
114
|
+
/**
|
|
115
|
+
* Add all slide elements as targets in observer
|
|
116
|
+
*/
|
|
117
|
+
observeSlides(): void;
|
|
118
|
+
/**
|
|
119
|
+
* Remove observer and it's internal DOM references (GC)
|
|
120
|
+
*/
|
|
121
|
+
destroyObserver(): void;
|
|
122
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "slide-change"[], "slide-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
123
|
+
/**
|
|
124
|
+
* Should slides be focusable by tab key
|
|
125
|
+
*/
|
|
126
|
+
slideFocusable: BooleanConstructor;
|
|
127
|
+
/**
|
|
128
|
+
* Setting for element.focus() when navigating to() a specific slide
|
|
129
|
+
*/
|
|
130
|
+
focusOptions: {
|
|
131
|
+
type: ObjectConstructor;
|
|
132
|
+
default: () => {
|
|
133
|
+
preventScroll: boolean;
|
|
134
|
+
focusVisible: boolean;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Array of slide items (data)
|
|
139
|
+
* - Use slot (#slide) to template
|
|
140
|
+
*/
|
|
141
|
+
items: ArrayConstructor;
|
|
142
|
+
/**
|
|
143
|
+
* Slideshow without a nav
|
|
144
|
+
*/
|
|
145
|
+
noNav: BooleanConstructor;
|
|
146
|
+
/**
|
|
147
|
+
* Allow user to change the scroll behavior when a slide is navigated to()
|
|
148
|
+
*/
|
|
149
|
+
scrollBehaviorNav: {
|
|
150
|
+
type: StringConstructor;
|
|
151
|
+
default: string;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Allow user to change the scroll behavior when a slide is navigated via next/prev
|
|
155
|
+
*/
|
|
156
|
+
scrollBehaviorControl: {
|
|
157
|
+
type: StringConstructor;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* Observe
|
|
162
|
+
*/
|
|
163
|
+
observerOptions: {
|
|
164
|
+
type: ObjectConstructor;
|
|
165
|
+
default: () => {
|
|
166
|
+
threshhold: number;
|
|
167
|
+
rootMargin: string;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* The intial slide index to use for active slide (zero based)
|
|
172
|
+
*/
|
|
173
|
+
initialActive: {
|
|
174
|
+
type: NumberConstructor;
|
|
175
|
+
default: number;
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* Allow user to control scroll amount (element.scrollTo) for prev/next controls
|
|
179
|
+
* - For future scroll implementations (like ulu scroll-slider for cards, etc)
|
|
180
|
+
* - Function is passed (direction, DomRefs)
|
|
181
|
+
* - Number is passed directly
|
|
182
|
+
*/
|
|
183
|
+
scrollAmount: (FunctionConstructor | NumberConstructor)[];
|
|
184
|
+
}>> & Readonly<{
|
|
185
|
+
"onSlide-change"?: ((...args: any[]) => any) | undefined;
|
|
186
|
+
}>, {
|
|
187
|
+
observerOptions: Record<string, any>;
|
|
188
|
+
slideFocusable: boolean;
|
|
189
|
+
noNav: boolean;
|
|
190
|
+
focusOptions: Record<string, any>;
|
|
191
|
+
scrollBehaviorNav: string;
|
|
192
|
+
scrollBehaviorControl: string;
|
|
193
|
+
initialActive: number;
|
|
194
|
+
}, {}, {
|
|
195
|
+
UluIcon: import("vue").DefineComponent<{}, {
|
|
196
|
+
$props: Partial<{
|
|
197
|
+
readonly spaced: boolean;
|
|
198
|
+
readonly icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
199
|
+
}>;
|
|
200
|
+
spaced: boolean;
|
|
201
|
+
icon?: string | boolean | unknown[] | Record<string, any> | undefined;
|
|
202
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
203
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
204
|
+
export default _default;
|
|
205
|
+
//# sourceMappingURL=UluSlideShow.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSlideShow.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/slider/UluSlideShow.vue"],"names":[],"mappings":";IAyVM;;OAEG;;IAEH;;OAEG;;;;;;;;IAQH;;;OAGG;;IAEH;;OAEG;;IAEH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;;IAQH;;OAEG;;;;;IAKH;;;;;OAKG;;;;;;;;IA2BH;;OAEG;;;;;;IAQH;;OAEG;;IAIH;;OAEG;;;;;;IAKH;;OAEG;;IAgBH;;OAEG;;IAIH;;;OAGG;;IAcH;;OAEG;;IAKH;;OAEG;;IAKH;;OAEG;;IAsBH;;OAEG;;IAUH;;OAEG;;;IA1MH;;OAEG;;IAEH;;OAEG;;;;;;;;IAQH;;;OAGG;;IAEH;;OAEG;;IAEH;;OAEG;;;;;IAKH;;OAEG;;;;;IAKH;;OAEG;;;;;;;;IAQH;;OAEG;;;;;IAKH;;;;;OAKG"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Provided by grandparent, not user
|
|
4
|
+
*/
|
|
5
|
+
active: BooleanConstructor;
|
|
6
|
+
someClassTest: StringConstructor;
|
|
7
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
/**
|
|
9
|
+
* Provided by grandparent, not user
|
|
10
|
+
*/
|
|
11
|
+
active: BooleanConstructor;
|
|
12
|
+
someClassTest: StringConstructor;
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
active: boolean;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=UluSlideShowSlide.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UluSlideShowSlide.vue.d.ts","sourceRoot":"","sources":["../../../../lib/components/systems/slider/UluSlideShowSlide.vue"],"names":[],"mappings":";IA6BM;;OAEG;;;;IAFH;;OAEG"}
|