tide-design-system 2.4.3 → 2.4.4
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/css/storybook.css +1 -0
- package/dist/css/variables.css +2 -2
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +7 -2
- package/dist/tide-design-system.esm.js +1765 -1705
- package/package.json +1 -1
- package/src/assets/css/storybook.css +1 -0
- package/src/assets/css/variables.css +2 -2
- package/src/components/TideCarousel.vue +131 -28
- package/src/stories/TideCarousel.stories.ts +21 -23
- package/src/types/Icon.ts +3 -0
|
@@ -745,6 +745,7 @@ export declare const ICON: {
|
|
|
745
745
|
readonly ARROW_CYCLE: "arrow-cycle";
|
|
746
746
|
readonly ARROW_FORWARD: "arrow-forward";
|
|
747
747
|
readonly ARROW_RIGHT: "arrow-right";
|
|
748
|
+
readonly ARROW_UP: "arrow-up";
|
|
748
749
|
readonly ASSIGNMENT: "assignment";
|
|
749
750
|
readonly ATTACH_MONEY: "attach-money";
|
|
750
751
|
readonly AUTO_RENEW: "auto-renew";
|
|
@@ -844,6 +845,8 @@ export declare const ICON: {
|
|
|
844
845
|
readonly SMS: "sms";
|
|
845
846
|
readonly SNOWFLAKE: "snowflake";
|
|
846
847
|
readonly STAR: "star";
|
|
848
|
+
readonly STAR_FILLED: "star-filled";
|
|
849
|
+
readonly STAR_HALF: "star-half";
|
|
847
850
|
readonly SUMMARIZE: "summarize";
|
|
848
851
|
readonly SWAP_HORIZ: "swap-horiz";
|
|
849
852
|
readonly SWAP_VERT: "swap-vert";
|
|
@@ -969,12 +972,13 @@ declare type Props_10 = {
|
|
|
969
972
|
};
|
|
970
973
|
|
|
971
974
|
declare type Props_11 = {
|
|
972
|
-
|
|
975
|
+
hasDots?: boolean;
|
|
973
976
|
isFloating?: boolean;
|
|
974
977
|
isHeadline1?: boolean;
|
|
975
978
|
isHideawayButtons?: boolean;
|
|
976
979
|
isScrollByPage?: boolean;
|
|
977
980
|
isTouchscreen?: boolean;
|
|
981
|
+
maxDots?: number;
|
|
978
982
|
subtitle?: string;
|
|
979
983
|
title?: string;
|
|
980
984
|
};
|
|
@@ -1409,11 +1413,12 @@ onSlidesAddedToView?: ((slidesInView: number[]) => any) | undefined;
|
|
|
1409
1413
|
}>, {
|
|
1410
1414
|
title: string;
|
|
1411
1415
|
isFloating: boolean;
|
|
1412
|
-
|
|
1416
|
+
hasDots: boolean;
|
|
1413
1417
|
isHeadline1: boolean;
|
|
1414
1418
|
isHideawayButtons: boolean;
|
|
1415
1419
|
isScrollByPage: boolean;
|
|
1416
1420
|
isTouchscreen: boolean;
|
|
1421
|
+
maxDots: number;
|
|
1417
1422
|
subtitle: string;
|
|
1418
1423
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1419
1424
|
misc?(_: {}): any;
|