tide-design-system 2.4.2 → 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.
Files changed (50) hide show
  1. package/README.md +10 -9
  2. package/dist/css/fonts.css +36 -0
  3. package/dist/css/grid-layout.css +34 -0
  4. package/dist/css/main.css +5 -0
  5. package/dist/css/realm/aero.css +25 -0
  6. package/dist/css/realm/atv.css +25 -0
  7. package/dist/css/realm/boatmart.css +25 -0
  8. package/dist/css/realm/cycle.css +24 -0
  9. package/dist/css/realm/equipment.css +25 -0
  10. package/dist/css/realm/pwc.css +25 -0
  11. package/dist/css/realm/rv.css +25 -0
  12. package/dist/css/realm/snow.css +25 -0
  13. package/dist/css/realm/truck.css +25 -0
  14. package/dist/css/reset.css +95 -0
  15. package/dist/css/storybook.css +18 -0
  16. package/dist/css/utilities-base.css +545 -0
  17. package/dist/css/utilities-responsive.css +2737 -0
  18. package/dist/css/utilities.css +16 -0
  19. package/dist/css/variables.css +205 -0
  20. package/dist/style.css +1 -1
  21. package/dist/tide-design-system.cjs +2 -2
  22. package/dist/tide-design-system.esm.d.ts +9 -2
  23. package/dist/tide-design-system.esm.js +1767 -1707
  24. package/dist/utilities/event.ts +4 -0
  25. package/dist/utilities/format.ts +184 -0
  26. package/dist/utilities/forms.ts +22 -0
  27. package/dist/utilities/storybook.ts +352 -0
  28. package/dist/utilities/validation-deprecated.ts +252 -0
  29. package/dist/utilities/validation.ts +132 -0
  30. package/dist/utilities/viewport.ts +63 -0
  31. package/{src/docs → docs}/integration-full.md +1 -1
  32. package/{src/docs → docs}/integration-partial.md +1 -1
  33. package/docs/token-cheatsheet.md +63 -0
  34. package/package.json +2 -2
  35. package/src/assets/css/storybook.css +1 -0
  36. package/src/assets/css/variables.css +2 -2
  37. package/src/components/TideCarousel.vue +131 -28
  38. package/src/components/TideInputRadioDeprecated.vue +1 -0
  39. package/src/components/TideInputTextDeprecated.vue +1 -0
  40. package/src/stories/TideCarousel.stories.ts +21 -23
  41. package/src/types/Icon.ts +3 -0
  42. /package/{src/docs → docs}/assets/native-input-validation.png +0 -0
  43. /package/{src/docs → docs}/development.md +0 -0
  44. /package/{src/docs → docs}/figma.md +0 -0
  45. /package/{src/docs → docs}/forms.md +0 -0
  46. /package/{src/docs → docs}/migration.md +0 -0
  47. /package/{src/docs → docs}/storybook.md +0 -0
  48. /package/{src/docs → docs}/style-guide.md +0 -0
  49. /package/{src/docs → docs}/upgrading.md +0 -0
  50. /package/{src/docs → docs}/workflows.md +0 -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
- bleed?: number;
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
- bleed: number;
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;
@@ -1552,6 +1557,7 @@ number: number;
1552
1557
  label: string;
1553
1558
  disabled: boolean;
1554
1559
  inputId: string;
1560
+ name: string;
1555
1561
  checked: boolean;
1556
1562
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1557
1563
 
@@ -1741,6 +1747,7 @@ minlength: number;
1741
1747
  value: string;
1742
1748
  validators: Validator_2[];
1743
1749
  inputId: string;
1750
+ name: string;
1744
1751
  supportingText: string;
1745
1752
  autocomplete: boolean;
1746
1753
  hasClear: boolean;