tide-design-system 2.1.0 → 2.1.1
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/.storybook/preview.ts +0 -1
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +20 -4
- package/dist/tide-design-system.esm.js +542 -513
- package/package.json +1 -1
- package/src/components/TideCarousel.vue +122 -83
- package/src/components/TideImage.vue +1 -1
- package/src/stories/TideCarousel.stories.ts +55 -27
|
@@ -1470,8 +1470,11 @@ declare type Props_12 = {
|
|
|
1470
1470
|
};
|
|
1471
1471
|
|
|
1472
1472
|
declare type Props_13 = {
|
|
1473
|
+
isFloating?: boolean;
|
|
1474
|
+
isHideawayButtons?: boolean;
|
|
1473
1475
|
isTouchscreen?: boolean;
|
|
1474
|
-
|
|
1476
|
+
subtitle?: string;
|
|
1477
|
+
title?: string;
|
|
1475
1478
|
};
|
|
1476
1479
|
|
|
1477
1480
|
declare type Props_14 = {
|
|
@@ -2005,16 +2008,29 @@ selected: boolean;
|
|
|
2005
2008
|
}, {}>;
|
|
2006
2009
|
|
|
2007
2010
|
export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
|
|
2008
|
-
|
|
2011
|
+
isFloating: boolean;
|
|
2012
|
+
isHideawayButtons: boolean;
|
|
2013
|
+
isTouchscreen: undefined;
|
|
2014
|
+
subtitle: undefined;
|
|
2015
|
+
title: undefined;
|
|
2009
2016
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2010
2017
|
change: (...args: any[]) => void;
|
|
2011
2018
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
|
|
2012
|
-
|
|
2019
|
+
isFloating: boolean;
|
|
2020
|
+
isHideawayButtons: boolean;
|
|
2021
|
+
isTouchscreen: undefined;
|
|
2022
|
+
subtitle: undefined;
|
|
2023
|
+
title: undefined;
|
|
2013
2024
|
}>>> & {
|
|
2014
2025
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2015
2026
|
}, {
|
|
2016
|
-
|
|
2027
|
+
title: string;
|
|
2028
|
+
isFloating: boolean;
|
|
2029
|
+
isHideawayButtons: boolean;
|
|
2030
|
+
isTouchscreen: boolean;
|
|
2031
|
+
subtitle: string;
|
|
2017
2032
|
}, {}>, {
|
|
2033
|
+
misc?(_: {}): any;
|
|
2018
2034
|
default?(_: {}): any;
|
|
2019
2035
|
}>;
|
|
2020
2036
|
|