tide-design-system 2.2.3 → 2.2.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/grid-layout.css +10 -49
- package/dist/css/utilities-md.css +0 -1
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +8 -30
- package/dist/tide-design-system.esm.js +1083 -1092
- package/package.json +1 -1
- package/src/assets/css/grid-layout.css +10 -49
- package/src/assets/css/utilities-md.css +0 -1
- package/src/components/TideBadge.vue +4 -1
- package/src/components/TideBadgeTrustedPartner.vue +8 -2
- package/src/components/TideBadgeVerifiedVehicle.vue +7 -2
- package/src/components/TideCarousel.vue +90 -55
- package/src/stories/FoundationsGrid.stories.ts +1 -184
- package/src/stories/TideCarousel.stories.ts +51 -9
- package/src/types/Storybook.ts +0 -32
- package/src/types/Styles.ts +0 -30
|
@@ -967,39 +967,9 @@ declare const CSS_2: {
|
|
|
967
967
|
readonly FOUR: "tide-gap-4";
|
|
968
968
|
};
|
|
969
969
|
readonly GRID: {
|
|
970
|
-
readonly END: {
|
|
971
|
-
readonly ONE: "tide-end-1";
|
|
972
|
-
readonly TWO: "tide-end-2";
|
|
973
|
-
readonly THREE: "tide-end-3";
|
|
974
|
-
readonly FOUR: "tide-end-4";
|
|
975
|
-
readonly FIVE: "tide-end-5";
|
|
976
|
-
readonly SIX: "tide-end-6";
|
|
977
|
-
readonly SEVEN: "tide-end-7";
|
|
978
|
-
readonly EIGHT: "tide-end-8";
|
|
979
|
-
readonly NINE: "tide-end-9";
|
|
980
|
-
readonly TEN: "tide-end-10";
|
|
981
|
-
readonly ELEVEN: "tide-end-11";
|
|
982
|
-
readonly TWELVE: "tide-end-12";
|
|
983
|
-
readonly THIRTEEN: "tide-end-13";
|
|
984
|
-
};
|
|
985
970
|
readonly FLUID: "tide-fluid";
|
|
986
971
|
readonly ITEM: "tide-grid-item";
|
|
987
972
|
readonly LAYOUT: "tide-grid-layout";
|
|
988
|
-
readonly START: {
|
|
989
|
-
readonly ZERO: "tide-start-0";
|
|
990
|
-
readonly ONE: "tide-start-1";
|
|
991
|
-
readonly TWO: "tide-start-2";
|
|
992
|
-
readonly THREE: "tide-start-3";
|
|
993
|
-
readonly FOUR: "tide-start-4";
|
|
994
|
-
readonly FIVE: "tide-start-5";
|
|
995
|
-
readonly SIX: "tide-start-6";
|
|
996
|
-
readonly SEVEN: "tide-start-7";
|
|
997
|
-
readonly EIGHT: "tide-start-8";
|
|
998
|
-
readonly NINE: "tide-start-9";
|
|
999
|
-
readonly TEN: "tide-start-10";
|
|
1000
|
-
readonly ELEVEN: "tide-start-11";
|
|
1001
|
-
readonly TWELVE: "tide-start-12";
|
|
1002
|
-
};
|
|
1003
973
|
readonly XL: "tide-grid-xl";
|
|
1004
974
|
};
|
|
1005
975
|
readonly HEIGHT: {
|
|
@@ -1552,7 +1522,9 @@ declare type Props_10 = {
|
|
|
1552
1522
|
};
|
|
1553
1523
|
|
|
1554
1524
|
declare type Props_11 = {
|
|
1525
|
+
bleed?: number;
|
|
1555
1526
|
isFloating?: boolean;
|
|
1527
|
+
isHeadline1?: boolean;
|
|
1556
1528
|
isHideawayButtons?: boolean;
|
|
1557
1529
|
isTouchscreen?: boolean;
|
|
1558
1530
|
subtitle?: string;
|
|
@@ -2091,7 +2063,9 @@ selected: boolean;
|
|
|
2091
2063
|
}, {}>;
|
|
2092
2064
|
|
|
2093
2065
|
export declare const TideCarousel: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
|
|
2066
|
+
bleed: undefined;
|
|
2094
2067
|
isFloating: boolean;
|
|
2068
|
+
isHeadline1: boolean;
|
|
2095
2069
|
isHideawayButtons: boolean;
|
|
2096
2070
|
isTouchscreen: undefined;
|
|
2097
2071
|
subtitle: undefined;
|
|
@@ -2099,7 +2073,9 @@ title: undefined;
|
|
|
2099
2073
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2100
2074
|
change: (...args: any[]) => void;
|
|
2101
2075
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
|
|
2076
|
+
bleed: undefined;
|
|
2102
2077
|
isFloating: boolean;
|
|
2078
|
+
isHeadline1: boolean;
|
|
2103
2079
|
isHideawayButtons: boolean;
|
|
2104
2080
|
isTouchscreen: undefined;
|
|
2105
2081
|
subtitle: undefined;
|
|
@@ -2109,6 +2085,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2109
2085
|
}, {
|
|
2110
2086
|
title: string;
|
|
2111
2087
|
isFloating: boolean;
|
|
2088
|
+
bleed: number;
|
|
2089
|
+
isHeadline1: boolean;
|
|
2112
2090
|
isHideawayButtons: boolean;
|
|
2113
2091
|
isTouchscreen: boolean;
|
|
2114
2092
|
subtitle: string;
|