tide-design-system 2.5.0 → 2.5.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.
Files changed (35) hide show
  1. package/.storybook/main.ts +2 -0
  2. package/README.md +3 -1
  3. package/dist/css/reset.css +5 -1
  4. package/dist/css/utilities-base.css +6 -6
  5. package/dist/css/utilities-responsive.css +24 -24
  6. package/dist/css/variables.css +3 -0
  7. package/dist/style.css +1 -1
  8. package/dist/tide-design-system.cjs +2 -2
  9. package/dist/tide-design-system.esm.d.ts +49 -9
  10. package/dist/tide-design-system.esm.js +887 -785
  11. package/docs/assets/full-bleed.gif +0 -0
  12. package/docs/assets/layout-grid-default.webp +0 -0
  13. package/docs/assets/layout-grid-fluid.webp +0 -0
  14. package/docs/assets/layout-grid.webp +0 -0
  15. package/docs/configuation.md +47 -0
  16. package/docs/grid-layout.md +83 -0
  17. package/index.ts +4 -0
  18. package/package.json +1 -1
  19. package/src/assets/css/reset.css +5 -1
  20. package/src/assets/css/utilities-base.css +6 -6
  21. package/src/assets/css/utilities-responsive.css +24 -24
  22. package/src/assets/css/variables.css +3 -0
  23. package/src/components/TideAlert.vue +1 -1
  24. package/src/components/TideInputSelect.vue +1 -1
  25. package/src/components/TideInputSelectDeprecated.vue +1 -1
  26. package/src/components/TideInputText.vue +2 -2
  27. package/src/components/TideInputTextDeprecated.vue +2 -2
  28. package/src/components/TideInputTextarea.vue +2 -2
  29. package/src/components/TideInputTextareaDeprecated.vue +2 -2
  30. package/src/components/TideModal.vue +1 -1
  31. package/src/components/TideRating.vue +93 -0
  32. package/src/components/TideSheet.vue +1 -1
  33. package/src/components/TideTabs.vue +58 -0
  34. package/src/stories/TideRating.stories.ts +120 -0
  35. package/src/stories/TideTabs.stories.ts +115 -0
@@ -14,13 +14,21 @@ declare type __VLS_PublicProps_10 = {
14
14
  } & typeof __VLS_typeProps_10;
15
15
 
16
16
  declare type __VLS_PublicProps_11 = {
17
- modelValue: boolean;
17
+ modelValue: number;
18
18
  } & typeof __VLS_typeProps_11;
19
19
 
20
20
  declare type __VLS_PublicProps_12 = {
21
21
  modelValue: boolean;
22
22
  } & typeof __VLS_typeProps_12;
23
23
 
24
+ declare type __VLS_PublicProps_13 = {
25
+ modelValue: boolean;
26
+ } & typeof __VLS_typeProps_13;
27
+
28
+ declare type __VLS_PublicProps_14 = {
29
+ modelValue: number;
30
+ } & typeof __VLS_typeProps_14;
31
+
24
32
  declare type __VLS_PublicProps_2 = {
25
33
  modelValue: number;
26
34
  } & typeof __VLS_typeProps_2;
@@ -57,10 +65,14 @@ declare let __VLS_typeProps: Props;
57
65
 
58
66
  declare let __VLS_typeProps_10: Props_29;
59
67
 
60
- declare let __VLS_typeProps_11: Props_32;
68
+ declare let __VLS_typeProps_11: Props_31;
61
69
 
62
70
  declare let __VLS_typeProps_12: Props_33;
63
71
 
72
+ declare let __VLS_typeProps_13: Props_34;
73
+
74
+ declare let __VLS_typeProps_14: Props_35;
75
+
64
76
  declare let __VLS_typeProps_2: Props_9;
65
77
 
66
78
  declare let __VLS_typeProps_3: Props_13;
@@ -1212,18 +1224,29 @@ declare type Props_30 = {
1212
1224
  };
1213
1225
 
1214
1226
  declare type Props_31 = {
1227
+ description?: string;
1228
+ maxRating?: number;
1229
+ showRating?: boolean;
1230
+ title?: string;
1231
+ };
1232
+
1233
+ declare type Props_32 = {
1215
1234
  heading?: string;
1216
1235
  links: Link[];
1217
1236
  };
1218
1237
 
1219
- declare type Props_32 = {
1238
+ declare type Props_33 = {
1220
1239
  isBackButton?: boolean;
1221
1240
  };
1222
1241
 
1223
- declare type Props_33 = {
1242
+ declare type Props_34 = {
1224
1243
  disabled?: boolean;
1225
1244
  };
1226
1245
 
1246
+ declare type Props_35 = {
1247
+ tabs: Tab[];
1248
+ };
1249
+
1227
1250
  declare type Props_4 = {
1228
1251
  years?: BadgeTrustedYears;
1229
1252
  };
@@ -1909,15 +1932,26 @@ offset: number;
1909
1932
  default?(_: {}): any;
1910
1933
  }>;
1911
1934
 
1912
- export declare const TideSeoLinks: DefineComponent<Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_31> & Readonly<{}>, {
1935
+ export declare const TideRating: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1936
+ "update:modelValue": (modelValue: number) => any;
1937
+ }, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
1938
+ "onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
1939
+ }>, {
1940
+ title: string;
1941
+ description: string;
1942
+ maxRating: number;
1943
+ showRating: boolean;
1944
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1945
+
1946
+ export declare const TideSeoLinks: DefineComponent<Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_32> & Readonly<{}>, {
1913
1947
  heading: string;
1914
1948
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1915
1949
 
1916
- export declare const TideSheet: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1950
+ export declare const TideSheet: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1917
1951
  "update:modelValue": (modelValue: boolean) => any;
1918
1952
  } & {
1919
1953
  back: () => any;
1920
- }, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
1954
+ }, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
1921
1955
  "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1922
1956
  onBack?: (() => any) | undefined;
1923
1957
  }>, {
@@ -1926,14 +1960,20 @@ isBackButton: boolean;
1926
1960
  default?(_: {}): any;
1927
1961
  }>;
1928
1962
 
1929
- export declare const TideSwitch: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1963
+ export declare const TideSwitch: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1930
1964
  "update:modelValue": (modelValue: boolean) => any;
1931
- }, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
1965
+ }, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
1932
1966
  "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
1933
1967
  }>, {
1934
1968
  disabled: boolean;
1935
1969
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1936
1970
 
1971
+ export declare const TideTabs: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1972
+ "update:modelValue": (modelValue: number) => any;
1973
+ }, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
1974
+ "onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
1975
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1976
+
1937
1977
  export declare const TYPE_CARD: {
1938
1978
  readonly ACTIONABLE: "action";
1939
1979
  readonly INFORMATIONAL: "informational";