tide-design-system 2.1.0 → 2.1.2
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/IconAttachMoney-1360c507.js +16 -0
- package/dist/IconAttachMoney-6d3087ab.cjs +2 -0
- package/dist/IconHandshake-33b452a7.cjs +2 -0
- package/dist/IconHandshake-7c9f1e84.js +16 -0
- package/dist/IconThumbUp-722d3c77.cjs +2 -0
- package/dist/IconThumbUp-72caf64e.js +16 -0
- package/dist/IconTrendingDown-3da4b7d4.cjs +2 -0
- package/dist/IconTrendingDown-ff3969c7.js +16 -0
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +24 -4
- package/dist/tide-design-system.esm.js +472 -439
- package/package.json +1 -1
- package/src/assets/svg/icons/IconAttachMoney.svg +4 -0
- package/src/assets/svg/icons/IconHandshake.svg +3 -0
- package/src/assets/svg/icons/IconThumbUp.svg +3 -0
- package/src/assets/svg/icons/IconTrendingDown.svg +5 -0
- package/src/components/TideCarousel.vue +122 -83
- package/src/components/TideImage.vue +1 -1
- package/src/stories/TideCarousel.stories.ts +55 -27
- package/src/types/Icon.ts +4 -0
|
@@ -1274,6 +1274,7 @@ export declare const ICON: {
|
|
|
1274
1274
|
readonly ARROW_FORWARD: "arrow-forward";
|
|
1275
1275
|
readonly ARROW_RIGHT: "arrow-right";
|
|
1276
1276
|
readonly ASSIGNMENT: "assignment";
|
|
1277
|
+
readonly ATTACH_MONEY: "attach-money";
|
|
1277
1278
|
readonly AWARD_STAR: "award-star";
|
|
1278
1279
|
readonly BED: "bed";
|
|
1279
1280
|
readonly BOOKMARK: "bookmark";
|
|
@@ -1306,6 +1307,7 @@ export declare const ICON: {
|
|
|
1306
1307
|
readonly GOOGLE: "google";
|
|
1307
1308
|
readonly GOOGLE_PAY: "google-pay";
|
|
1308
1309
|
readonly GRID: "grid";
|
|
1310
|
+
readonly HANDSHAKE: "handshake";
|
|
1309
1311
|
readonly HEIGHT: "height";
|
|
1310
1312
|
readonly HELP: "help";
|
|
1311
1313
|
readonly INFO: "info";
|
|
@@ -1344,6 +1346,8 @@ export declare const ICON: {
|
|
|
1344
1346
|
readonly STAR: "star";
|
|
1345
1347
|
readonly SWAP_VERT: "swap-vert";
|
|
1346
1348
|
readonly THREE_D_ROTATION: "three-d-rotation";
|
|
1349
|
+
readonly THUMB_UP: "thumb-up";
|
|
1350
|
+
readonly TRENDING_DOWN: "trending-down";
|
|
1347
1351
|
readonly TROPHY: "trophy";
|
|
1348
1352
|
readonly TUNE: "tune";
|
|
1349
1353
|
readonly TWITTER: "twitter";
|
|
@@ -1470,8 +1474,11 @@ declare type Props_12 = {
|
|
|
1470
1474
|
};
|
|
1471
1475
|
|
|
1472
1476
|
declare type Props_13 = {
|
|
1477
|
+
isFloating?: boolean;
|
|
1478
|
+
isHideawayButtons?: boolean;
|
|
1473
1479
|
isTouchscreen?: boolean;
|
|
1474
|
-
|
|
1480
|
+
subtitle?: string;
|
|
1481
|
+
title?: string;
|
|
1475
1482
|
};
|
|
1476
1483
|
|
|
1477
1484
|
declare type Props_14 = {
|
|
@@ -2005,16 +2012,29 @@ selected: boolean;
|
|
|
2005
2012
|
}, {}>;
|
|
2006
2013
|
|
|
2007
2014
|
export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
|
|
2008
|
-
|
|
2015
|
+
isFloating: boolean;
|
|
2016
|
+
isHideawayButtons: boolean;
|
|
2017
|
+
isTouchscreen: undefined;
|
|
2018
|
+
subtitle: undefined;
|
|
2019
|
+
title: undefined;
|
|
2009
2020
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2010
2021
|
change: (...args: any[]) => void;
|
|
2011
2022
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
|
|
2012
|
-
|
|
2023
|
+
isFloating: boolean;
|
|
2024
|
+
isHideawayButtons: boolean;
|
|
2025
|
+
isTouchscreen: undefined;
|
|
2026
|
+
subtitle: undefined;
|
|
2027
|
+
title: undefined;
|
|
2013
2028
|
}>>> & {
|
|
2014
2029
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2015
2030
|
}, {
|
|
2016
|
-
|
|
2031
|
+
title: string;
|
|
2032
|
+
isFloating: boolean;
|
|
2033
|
+
isHideawayButtons: boolean;
|
|
2034
|
+
isTouchscreen: boolean;
|
|
2035
|
+
subtitle: string;
|
|
2017
2036
|
}, {}>, {
|
|
2037
|
+
misc?(_: {}): any;
|
|
2018
2038
|
default?(_: {}): any;
|
|
2019
2039
|
}>;
|
|
2020
2040
|
|