tide-design-system 2.2.9 → 2.2.10
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/dynamic-utilities.css +1 -0
- package/dist/css/realm/aero.css +8 -20
- package/dist/css/realm/atv.css +8 -20
- package/dist/css/realm/boatmart.css +7 -19
- package/dist/css/realm/cycle.css +8 -20
- package/dist/css/realm/equipment.css +7 -19
- package/dist/css/realm/pwc.css +7 -19
- package/dist/css/realm/rv.css +7 -19
- package/dist/css/realm/snow.css +7 -19
- package/dist/css/realm/truck.css +8 -20
- package/dist/css/utilities-lg.css +3 -0
- package/dist/css/utilities-md.css +3 -0
- package/dist/css/utilities-sm.css +3 -0
- package/dist/css/utilities-xl.css +3 -0
- package/dist/css/utilities.css +3 -0
- package/dist/css/variables.css +103 -14
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +6 -0
- package/dist/tide-design-system.esm.js +921 -887
- package/index.ts +2 -0
- package/package.json +1 -1
- package/src/assets/css/dynamic-utilities.css +1 -0
- package/src/assets/css/realm/aero.css +8 -20
- package/src/assets/css/realm/atv.css +8 -20
- package/src/assets/css/realm/boatmart.css +7 -19
- package/src/assets/css/realm/cycle.css +8 -20
- package/src/assets/css/realm/equipment.css +7 -19
- package/src/assets/css/realm/pwc.css +7 -19
- package/src/assets/css/realm/rv.css +7 -19
- package/src/assets/css/realm/snow.css +7 -19
- package/src/assets/css/realm/truck.css +8 -20
- package/src/assets/css/utilities-lg.css +3 -0
- package/src/assets/css/utilities-md.css +3 -0
- package/src/assets/css/utilities-sm.css +3 -0
- package/src/assets/css/utilities-xl.css +3 -0
- package/src/assets/css/utilities.css +3 -0
- package/src/assets/css/variables.css +103 -14
- package/src/components/TideBadgeVerifiedVehicle.vue +1 -1
- package/src/components/TideImageBackground.vue +5 -11
- package/src/stories/FoundationsBorder.stories.ts +31 -1
- package/src/stories/FoundationsTypography.stories.ts +3 -3
- package/src/stories/TideCarousel.stories.ts +1 -0
- package/src/stories/TideImageBackground.stories.ts +11 -3
- package/src/types/Storybook.ts +5 -0
- package/src/types/Styles.ts +4 -0
|
@@ -824,6 +824,10 @@ declare const CSS_2: {
|
|
|
824
824
|
readonly ONE: "tide-radius-1";
|
|
825
825
|
readonly FULL: "tide-radius-full";
|
|
826
826
|
};
|
|
827
|
+
readonly STYLE: {
|
|
828
|
+
readonly DASHED: "tide-border-dashed";
|
|
829
|
+
readonly SOLID: "tide-border-solid";
|
|
830
|
+
};
|
|
827
831
|
readonly BOTTOM: {
|
|
828
832
|
readonly ZERO: "tide-border-bottom-0";
|
|
829
833
|
readonly ONE: "tide-border-bottom-1";
|
|
@@ -1967,6 +1971,8 @@ years: "5";
|
|
|
1967
1971
|
years: BadgeTrustedYears;
|
|
1968
1972
|
}, {}>;
|
|
1969
1973
|
|
|
1974
|
+
export declare const TideBadgeVerifiedVehicle: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {}>>, {}, {}>;
|
|
1975
|
+
|
|
1970
1976
|
export declare const TideBreadCrumbs: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
|
|
1971
1977
|
breadCrumbs: undefined;
|
|
1972
1978
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
|