tide-design-system 2.1.12 → 2.1.13

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 +1 -1
  2. package/dist/IconVerified-000f615f.js +20 -0
  3. package/dist/IconVerified-b71255f2.cjs +2 -0
  4. package/dist/css/utilities-lg.css +2 -1
  5. package/dist/css/utilities-md.css +2 -1
  6. package/dist/css/utilities-sm.css +2 -1
  7. package/dist/css/utilities-xl.css +2 -1
  8. package/dist/css/utilities.css +2 -1
  9. package/dist/css/variables.css +7 -15
  10. package/dist/style.css +1 -1
  11. package/dist/tide-design-system.cjs +2 -2
  12. package/dist/tide-design-system.esm.d.ts +112 -123
  13. package/dist/tide-design-system.esm.js +565 -594
  14. package/index.ts +2 -8
  15. package/package.json +1 -1
  16. package/src/assets/css/utilities-lg.css +2 -1
  17. package/src/assets/css/utilities-md.css +2 -1
  18. package/src/assets/css/utilities-sm.css +2 -1
  19. package/src/assets/css/utilities-xl.css +2 -1
  20. package/src/assets/css/utilities.css +2 -1
  21. package/src/assets/css/variables.css +7 -15
  22. package/src/assets/svg/icons/IconVerified.svg +1 -0
  23. package/src/components/TideAccordionItem.vue +2 -4
  24. package/src/components/TideBadge.vue +17 -6
  25. package/src/components/TideBadgeTrustedPartner.vue +2 -2
  26. package/src/components/TideBadgeVerifiedVehicle.vue +32 -0
  27. package/src/stories/FoundationsShadow.stories.ts +27 -8
  28. package/src/stories/TideBadge.stories.ts +13 -2
  29. package/src/stories/TideBadgeVerifiedVehicle.stories.ts +20 -0
  30. package/src/types/Badge.ts +0 -14
  31. package/src/types/Styles.ts +1 -0
  32. package/dist/IconVerified-04c12500.cjs +0 -2
  33. package/dist/IconVerified-a78449ea.js +0 -16
  34. package/src/components/TideBadgePremium.vue +0 -31
  35. package/src/stories/TideBadgePremium.stories.ts +0 -31
@@ -55,8 +55,6 @@ declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
55
55
 
56
56
  declare type __VLS_NonUndefinedable_30<T> = T extends undefined ? never : T;
57
57
 
58
- declare type __VLS_NonUndefinedable_31<T> = T extends undefined ? never : T;
59
-
60
58
  declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
61
59
 
62
60
  declare type __VLS_NonUndefinedable_5<T> = T extends undefined ? never : T;
@@ -149,6 +147,10 @@ declare type __VLS_PrettifyLocal_27<T> = {
149
147
  [K in keyof T]: T[K];
150
148
  } & {};
151
149
 
150
+ declare type __VLS_PrettifyLocal_28<T> = {
151
+ [K in keyof T]: T[K];
152
+ } & {};
153
+
152
154
  declare type __VLS_PrettifyLocal_3<T> = {
153
155
  [K in keyof T]: T[K];
154
156
  } & {};
@@ -393,15 +395,6 @@ declare type __VLS_TypePropsToOption_30<T> = {
393
395
  };
394
396
  };
395
397
 
396
- declare type __VLS_TypePropsToOption_31<T> = {
397
- [K in keyof T]-?: {} extends Pick<T, K> ? {
398
- type: PropType<__VLS_NonUndefinedable_31<T[K]>>;
399
- } : {
400
- type: PropType<T[K]>;
401
- required: true;
402
- };
403
- };
404
-
405
398
  declare type __VLS_TypePropsToOption_4<T> = {
406
399
  [K in keyof T]-?: {} extends Pick<T, K> ? {
407
400
  type: PropType<__VLS_NonUndefinedable_4<T[K]>>;
@@ -576,6 +569,12 @@ declare type __VLS_WithDefaults_27<P, D> = {
576
569
  }> : P[K];
577
570
  };
578
571
 
572
+ declare type __VLS_WithDefaults_28<P, D> = {
573
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_28<P[K] & {
574
+ default: D[K];
575
+ }> : P[K];
576
+ };
577
+
579
578
  declare type __VLS_WithDefaults_3<P, D> = {
580
579
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_3<P[K] & {
581
580
  default: D[K];
@@ -669,28 +668,12 @@ export declare const ALERT: {
669
668
 
670
669
  export declare type Alert = (typeof ALERT)[keyof typeof ALERT];
671
670
 
672
- export declare const BADGE: {
673
- readonly JUST_LISTED: "Just listed";
674
- readonly NATIONWIDE: "Nationwide";
675
- readonly REDUCED: "Reduced";
676
- readonly UPDATED: "Updated";
677
- };
678
-
679
- export declare type Badge = (typeof BADGE)[keyof typeof BADGE];
680
-
681
- export declare const BADGE_PREMIUM: {
682
- readonly PREMIUM: "Premium";
683
- readonly PREMIUM_SELECT: "Premium SELECT";
684
- };
685
-
686
671
  export declare const BADGE_TRUSTED: {
687
672
  readonly YEARS_10: "10";
688
673
  readonly YEARS_15: "15";
689
674
  readonly YEARS_5: "5";
690
675
  };
691
676
 
692
- export declare type BadgePremium = (typeof BADGE_PREMIUM)[keyof typeof BADGE_PREMIUM];
693
-
694
677
  export declare type BadgeTrustedYears = (typeof BADGE_TRUSTED)[keyof typeof BADGE_TRUSTED];
695
678
 
696
679
  export declare type BooleanField = CheckboxField;
@@ -1179,6 +1162,7 @@ declare const CSS_2: {
1179
1162
  readonly INITIAL: "tide-shadow-initial";
1180
1163
  readonly BOTTOM: "tide-shadow-bottom";
1181
1164
  readonly TOP: "tide-shadow-top";
1165
+ readonly TEXT: "tide-shadow-text";
1182
1166
  };
1183
1167
  readonly SNAP: {
1184
1168
  readonly ON: "tide-scroll-snap";
@@ -1532,18 +1516,11 @@ declare type Props = {
1532
1516
  };
1533
1517
 
1534
1518
  declare type Props_10 = {
1535
- disabled?: boolean;
1536
- element?: ElementTextAsIcon;
1537
- href?: string;
1538
- label: string | number;
1539
- };
1540
-
1541
- declare type Props_11 = {
1542
1519
  activeTab: number;
1543
1520
  tabs: Tab[];
1544
1521
  };
1545
1522
 
1546
- declare type Props_12 = {
1523
+ declare type Props_11 = {
1547
1524
  description?: string;
1548
1525
  heading: string;
1549
1526
  icon?: Icon;
@@ -1552,7 +1529,7 @@ declare type Props_12 = {
1552
1529
  href?: string;
1553
1530
  };
1554
1531
 
1555
- declare type Props_13 = {
1532
+ declare type Props_12 = {
1556
1533
  isFloating?: boolean;
1557
1534
  isHideawayButtons?: boolean;
1558
1535
  isTouchscreen?: boolean;
@@ -1560,41 +1537,35 @@ declare type Props_13 = {
1560
1537
  title?: string;
1561
1538
  };
1562
1539
 
1563
- declare type Props_14 = {
1540
+ declare type Props_13 = {
1564
1541
  href: string;
1565
1542
  isNewTab?: boolean;
1566
1543
  label: string;
1567
1544
  };
1568
1545
 
1569
- declare type Props_15 = {
1546
+ declare type Props_14 = {
1570
1547
  isActive: boolean;
1571
1548
  label: string;
1572
1549
  };
1573
1550
 
1574
- declare type Props_16 = {
1551
+ declare type Props_15 = {
1575
1552
  label: string;
1576
1553
  };
1577
1554
 
1578
- declare type Props_17 = {
1555
+ declare type Props_16 = {
1579
1556
  heading?: string;
1580
1557
  };
1581
1558
 
1582
- declare type Props_18 = {
1559
+ declare type Props_17 = {
1583
1560
  orientation?: Orientation;
1584
1561
  };
1585
1562
 
1586
- declare type Props_19 = {
1563
+ declare type Props_18 = {
1587
1564
  icon: Icon;
1588
1565
  size?: Size;
1589
1566
  };
1590
1567
 
1591
- declare type Props_2 = {
1592
- heading?: string;
1593
- isToast?: boolean;
1594
- type?: Alert;
1595
- };
1596
-
1597
- declare type Props_20 = {
1568
+ declare type Props_19 = {
1598
1569
  alt: string;
1599
1570
  height?: string;
1600
1571
  isLazy?: boolean;
@@ -1603,11 +1574,17 @@ declare type Props_20 = {
1603
1574
  width?: string;
1604
1575
  };
1605
1576
 
1606
- declare type Props_21 = {
1577
+ declare type Props_2 = {
1578
+ heading?: string;
1579
+ isToast?: boolean;
1580
+ type?: Alert;
1581
+ };
1582
+
1583
+ declare type Props_20 = {
1607
1584
  label?: string | number;
1608
1585
  };
1609
1586
 
1610
- declare type Props_22 = {
1587
+ declare type Props_21 = {
1611
1588
  checked?: boolean;
1612
1589
  dataTrack?: string;
1613
1590
  disabled?: boolean;
@@ -1618,7 +1595,7 @@ declare type Props_22 = {
1618
1595
  number?: number | undefined;
1619
1596
  };
1620
1597
 
1621
- declare type Props_23 = {
1598
+ declare type Props_22 = {
1622
1599
  checked?: boolean;
1623
1600
  dataTrack?: string;
1624
1601
  disabled?: boolean;
@@ -1627,12 +1604,12 @@ declare type Props_23 = {
1627
1604
  name: string;
1628
1605
  };
1629
1606
 
1630
- declare interface Props_24 extends SelectField {
1607
+ declare interface Props_23 extends SelectField {
1631
1608
  inputId?: string;
1632
1609
  supportingText?: string;
1633
1610
  }
1634
1611
 
1635
- declare type Props_25 = {
1612
+ declare type Props_24 = {
1636
1613
  autocomplete?: boolean;
1637
1614
  dataTrack?: string;
1638
1615
  disabled?: boolean;
@@ -1654,7 +1631,7 @@ declare type Props_25 = {
1654
1631
  value?: string;
1655
1632
  };
1656
1633
 
1657
- declare type Props_26 = {
1634
+ declare type Props_25 = {
1658
1635
  dataTrack?: string;
1659
1636
  error?: ValidationError;
1660
1637
  inputId?: string;
@@ -1668,7 +1645,7 @@ declare type Props_26 = {
1668
1645
  value?: string;
1669
1646
  };
1670
1647
 
1671
- declare type Props_27 = {
1648
+ declare type Props_26 = {
1672
1649
  element?: Element_2;
1673
1650
  href?: string;
1674
1651
  iconLeading?: Icon;
@@ -1677,7 +1654,7 @@ declare type Props_27 = {
1677
1654
  label: string;
1678
1655
  };
1679
1656
 
1680
- declare type Props_28 = {
1657
+ declare type Props_27 = {
1681
1658
  isBackButton?: boolean;
1682
1659
  isDismissible?: boolean;
1683
1660
  isOpen: boolean;
@@ -1685,11 +1662,16 @@ declare type Props_28 = {
1685
1662
  width?: string;
1686
1663
  };
1687
1664
 
1688
- declare type Props_29 = {
1665
+ declare type Props_28 = {
1689
1666
  pageCurrent?: number;
1690
1667
  pageTotal?: number;
1691
1668
  };
1692
1669
 
1670
+ declare type Props_29 = {
1671
+ heading?: string;
1672
+ links: Link[];
1673
+ };
1674
+
1693
1675
  declare type Props_3 = {
1694
1676
  alt: string;
1695
1677
  isLazy: boolean;
@@ -1698,32 +1680,25 @@ declare type Props_3 = {
1698
1680
  };
1699
1681
 
1700
1682
  declare type Props_30 = {
1701
- heading?: string;
1702
- links: Link[];
1703
- };
1704
-
1705
- declare type Props_31 = {
1706
1683
  disabled?: boolean;
1707
1684
  isActive?: boolean;
1708
1685
  };
1709
1686
 
1710
1687
  declare type Props_4 = {
1688
+ iconLeading?: Icon;
1689
+ isFloating?: boolean;
1711
1690
  label: string;
1712
1691
  };
1713
1692
 
1714
1693
  declare type Props_5 = {
1715
- label: BadgePremium;
1716
- };
1717
-
1718
- declare type Props_6 = {
1719
1694
  years?: BadgeTrustedYears;
1720
1695
  };
1721
1696
 
1722
- declare type Props_7 = {
1697
+ declare type Props_6 = {
1723
1698
  breadCrumbs: BreadCrumb[];
1724
1699
  };
1725
1700
 
1726
- declare type Props_8 = {
1701
+ declare type Props_7 = {
1727
1702
  disabled?: boolean;
1728
1703
  element?: Element_2;
1729
1704
  href?: string;
@@ -1735,7 +1710,7 @@ declare type Props_8 = {
1735
1710
  size?: SizeButton;
1736
1711
  };
1737
1712
 
1738
- declare type Props_9 = {
1713
+ declare type Props_8 = {
1739
1714
  disabled?: boolean;
1740
1715
  element?: Element_2;
1741
1716
  href?: string;
@@ -1744,6 +1719,13 @@ declare type Props_9 = {
1744
1719
  priority?: Priority;
1745
1720
  };
1746
1721
 
1722
+ declare type Props_9 = {
1723
+ disabled?: boolean;
1724
+ element?: ElementTextAsIcon;
1725
+ href?: string;
1726
+ label: string | number;
1727
+ };
1728
+
1747
1729
  export declare type RangeData = {
1748
1730
  min: number | null;
1749
1731
  max: number | null;
@@ -1964,27 +1946,34 @@ src: string;
1964
1946
  default?(_: {}): any;
1965
1947
  }>;
1966
1948
 
1967
- export declare const TideBadge: DefineComponent<__VLS_TypePropsToOption_4<Props_4>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_4<Props_4>>>, {}, {}>;
1968
-
1969
- export declare const TideBadgePremium: DefineComponent<__VLS_TypePropsToOption_5<Props_5>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_5<Props_5>>>, {}, {}>;
1949
+ export declare const TideBadge: DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToOption_4<Props_4>, {
1950
+ iconLeading: undefined;
1951
+ isFloating: boolean;
1952
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToOption_4<Props_4>, {
1953
+ iconLeading: undefined;
1954
+ isFloating: boolean;
1955
+ }>>>, {
1956
+ iconLeading: Icon;
1957
+ isFloating: boolean;
1958
+ }, {}>;
1970
1959
 
1971
- export declare const TideBadgeTrustedPartner: DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToOption_6<Props_6>, {
1960
+ export declare const TideBadgeTrustedPartner: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
1972
1961
  years: "5";
1973
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToOption_6<Props_6>, {
1962
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
1974
1963
  years: "5";
1975
1964
  }>>>, {
1976
1965
  years: BadgeTrustedYears;
1977
1966
  }, {}>;
1978
1967
 
1979
- export declare const TideBreadCrumbs: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToOption_7<Props_7>, {
1968
+ export declare const TideBreadCrumbs: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToOption_6<Props_6>, {
1980
1969
  breadCrumbs: undefined;
1981
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToOption_7<Props_7>, {
1970
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToOption_6<Props_6>, {
1982
1971
  breadCrumbs: undefined;
1983
1972
  }>>>, {
1984
1973
  breadCrumbs: BreadCrumb[];
1985
1974
  }, {}>;
1986
1975
 
1987
- export declare const TideButton: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToOption_8<Props_8>, {
1976
+ export declare const TideButton: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToOption_7<Props_7>, {
1988
1977
  disabled: boolean;
1989
1978
  element: "button";
1990
1979
  href: undefined;
@@ -1994,7 +1983,7 @@ isNewTab: boolean;
1994
1983
  label: undefined;
1995
1984
  priority: "primary";
1996
1985
  size: "large";
1997
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToOption_8<Props_8>, {
1986
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_7<Props_7>, {
1998
1987
  disabled: boolean;
1999
1988
  element: "button";
2000
1989
  href: undefined;
@@ -2016,14 +2005,14 @@ iconLeading: Icon;
2016
2005
  iconTrailing: Icon;
2017
2006
  }, {}>;
2018
2007
 
2019
- export declare const TideButtonIcon: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToOption_9<Props_9>, {
2008
+ export declare const TideButtonIcon: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToOption_8<Props_8>, {
2020
2009
  disabled: boolean;
2021
2010
  element: "button";
2022
2011
  href: undefined;
2023
2012
  icon: undefined;
2024
2013
  isNewTab: boolean;
2025
2014
  priority: "primary";
2026
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_9<Props_9>, {
2015
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToOption_8<Props_8>, {
2027
2016
  disabled: boolean;
2028
2017
  element: "button";
2029
2018
  href: undefined;
@@ -2039,12 +2028,12 @@ isNewTab: boolean;
2039
2028
  priority: Priority;
2040
2029
  }, {}>;
2041
2030
 
2042
- export declare const TideButtonPagination: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToOption_10<Props_10>, {
2031
+ export declare const TideButtonPagination: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToOption_9<Props_9>, {
2043
2032
  disabled: boolean;
2044
2033
  element: "button";
2045
2034
  href: undefined;
2046
2035
  label: undefined;
2047
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToOption_10<Props_10>, {
2036
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToOption_9<Props_9>, {
2048
2037
  disabled: boolean;
2049
2038
  element: "button";
2050
2039
  href: undefined;
@@ -2056,11 +2045,11 @@ element: ElementTextAsIcon;
2056
2045
  href: string;
2057
2046
  }, {}>;
2058
2047
 
2059
- export declare const TideButtonSegmented: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToOption_11<Props_11>, {
2048
+ export declare const TideButtonSegmented: DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToOption_10<Props_10>, {
2060
2049
  activeTab: number;
2061
2050
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2062
2051
  change: (...args: any[]) => void;
2063
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToOption_11<Props_11>, {
2052
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToOption_10<Props_10>, {
2064
2053
  activeTab: number;
2065
2054
  }>>> & {
2066
2055
  onChange?: ((...args: any[]) => any) | undefined;
@@ -2068,13 +2057,13 @@ onChange?: ((...args: any[]) => any) | undefined;
2068
2057
  activeTab: number;
2069
2058
  }, {}>;
2070
2059
 
2071
- export declare const TideCard: DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToOption_12<Props_12>, {
2060
+ export declare const TideCard: DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
2072
2061
  description: undefined;
2073
2062
  href: undefined;
2074
2063
  icon: undefined;
2075
2064
  selected: undefined;
2076
2065
  type: "informational";
2077
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToOption_12<Props_12>, {
2066
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
2078
2067
  description: undefined;
2079
2068
  href: undefined;
2080
2069
  icon: undefined;
@@ -2088,7 +2077,7 @@ description: string;
2088
2077
  selected: boolean;
2089
2078
  }, {}>;
2090
2079
 
2091
- export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
2080
+ export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToOption_12<Props_12>, {
2092
2081
  isFloating: boolean;
2093
2082
  isHideawayButtons: boolean;
2094
2083
  isTouchscreen: undefined;
@@ -2096,7 +2085,7 @@ subtitle: undefined;
2096
2085
  title: undefined;
2097
2086
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2098
2087
  change: (...args: any[]) => void;
2099
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
2088
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_12<Props_12>, {
2100
2089
  isFloating: boolean;
2101
2090
  isHideawayButtons: boolean;
2102
2091
  isTouchscreen: undefined;
@@ -2115,23 +2104,23 @@ subtitle: string;
2115
2104
  default?(_: {}): any;
2116
2105
  }>;
2117
2106
 
2118
- export declare const TideChipAction: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToOption_14<Props_14>, {
2107
+ export declare const TideChipAction: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToOption_13<Props_13>, {
2119
2108
  isNewTab: boolean;
2120
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_14<Props_14>, {
2109
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_13<Props_13>, {
2121
2110
  isNewTab: boolean;
2122
2111
  }>>>, {
2123
2112
  isNewTab: boolean;
2124
2113
  }, {}>;
2125
2114
 
2126
- export declare const TideChipFilter: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_TypePropsToOption_15<Props_15>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_15<Props_15>>>, {}, {}>, {
2115
+ export declare const TideChipFilter: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_TypePropsToOption_14<Props_14>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_14<Props_14>>>, {}, {}>, {
2127
2116
  default?(_: {}): any;
2128
2117
  }>;
2129
2118
 
2130
- export declare const TideChipInput: DefineComponent<__VLS_TypePropsToOption_16<Props_16>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_16<Props_16>>>, {}, {}>;
2119
+ export declare const TideChipInput: DefineComponent<__VLS_TypePropsToOption_15<Props_15>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_15<Props_15>>>, {}, {}>;
2131
2120
 
2132
- export declare const TideColumns: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToOption_17<Props_17>, {
2121
+ export declare const TideColumns: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToOption_16<Props_16>, {
2133
2122
  heading: string;
2134
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_17<Props_17>, {
2123
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToOption_16<Props_16>, {
2135
2124
  heading: string;
2136
2125
  }>>>, {
2137
2126
  heading: string;
@@ -2142,30 +2131,30 @@ heading: string;
2142
2131
  section4?(_: {}): any;
2143
2132
  }>;
2144
2133
 
2145
- export declare const TideDivider: DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToOption_18<Props_18>, {
2134
+ export declare const TideDivider: DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToOption_17<Props_17>, {
2146
2135
  orientation: "horizontal";
2147
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToOption_18<Props_18>, {
2136
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToOption_17<Props_17>, {
2148
2137
  orientation: "horizontal";
2149
2138
  }>>>, {
2150
2139
  orientation: Orientation;
2151
2140
  }, {}>;
2152
2141
 
2153
- export declare const TideIcon: DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToOption_19<Props_19>, {
2142
+ export declare const TideIcon: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToOption_18<Props_18>, {
2154
2143
  size: "small";
2155
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToOption_19<Props_19>, {
2144
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToOption_18<Props_18>, {
2156
2145
  size: "small";
2157
2146
  }>>>, {
2158
2147
  size: Size;
2159
2148
  }, {}>;
2160
2149
 
2161
- export declare const TideImage: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToOption_20<Props_20>, {
2150
+ export declare const TideImage: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToOption_19<Props_19>, {
2162
2151
  alt: string;
2163
2152
  height: undefined;
2164
2153
  isLazy: boolean;
2165
2154
  sources: () => never[];
2166
2155
  src: undefined;
2167
2156
  width: undefined;
2168
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToOption_20<Props_20>, {
2157
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToOption_19<Props_19>, {
2169
2158
  alt: string;
2170
2159
  height: undefined;
2171
2160
  isLazy: boolean;
@@ -2181,15 +2170,15 @@ sources: Source[];
2181
2170
  src: string;
2182
2171
  }, {}>;
2183
2172
 
2184
- export declare const TideIndicator: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToOption_21<Props_21>, {
2173
+ export declare const TideIndicator: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToOption_20<Props_20>, {
2185
2174
  label: undefined;
2186
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToOption_21<Props_21>, {
2175
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToOption_20<Props_20>, {
2187
2176
  label: undefined;
2188
2177
  }>>>, {
2189
2178
  label: string | number;
2190
2179
  }, {}>;
2191
2180
 
2192
- export declare const TideInputCheckbox: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToOption_22<Props_22>, {
2181
+ export declare const TideInputCheckbox: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToOption_21<Props_21>, {
2193
2182
  checked: boolean;
2194
2183
  dataTrack: string;
2195
2184
  disabled: boolean;
@@ -2198,7 +2187,7 @@ inputId: undefined;
2198
2187
  label: undefined;
2199
2188
  name: undefined;
2200
2189
  number: undefined;
2201
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToOption_22<Props_22>, {
2190
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToOption_21<Props_21>, {
2202
2191
  checked: boolean;
2203
2192
  dataTrack: string;
2204
2193
  disabled: boolean;
@@ -2218,13 +2207,13 @@ inputId: string;
2218
2207
  name: string;
2219
2208
  }, {}>;
2220
2209
 
2221
- export declare const TideInputRadio: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToOption_23<Props_23>, {
2210
+ export declare const TideInputRadio: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToOption_22<Props_22>, {
2222
2211
  checked: boolean;
2223
2212
  dataTrack: string;
2224
2213
  disabled: boolean;
2225
2214
  inputId: undefined;
2226
2215
  label: undefined;
2227
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToOption_23<Props_23>, {
2216
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToOption_22<Props_22>, {
2228
2217
  checked: boolean;
2229
2218
  dataTrack: string;
2230
2219
  disabled: boolean;
@@ -2238,7 +2227,7 @@ dataTrack: string;
2238
2227
  inputId: string;
2239
2228
  }, {}>;
2240
2229
 
2241
- export declare const TideInputSelect: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToOption_24<Props_24>, {
2230
+ export declare const TideInputSelect: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToOption_23<Props_23>, {
2242
2231
  disabled: boolean;
2243
2232
  error: boolean;
2244
2233
  inputId: undefined;
@@ -2249,7 +2238,7 @@ value: undefined;
2249
2238
  }>, {
2250
2239
  error: Ref<ValidationError_2>;
2251
2240
  value: Ref<string | undefined>;
2252
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToOption_24<Props_24>, {
2241
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToOption_23<Props_23>, {
2253
2242
  disabled: boolean;
2254
2243
  error: boolean;
2255
2244
  inputId: undefined;
@@ -2267,7 +2256,7 @@ value: string;
2267
2256
  supportingText: string;
2268
2257
  }, {}>;
2269
2258
 
2270
- export declare const TideInputText: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToOption_25<Props_25>, {
2259
+ export declare const TideInputText: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToOption_24<Props_24>, {
2271
2260
  autocomplete: boolean;
2272
2261
  dataTrack: string;
2273
2262
  disabled: boolean;
@@ -2291,7 +2280,7 @@ error: Ref<ValidationError>;
2291
2280
  required: boolean;
2292
2281
  updateValue: (newValue: string) => void;
2293
2282
  value: Ref<string | undefined>;
2294
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToOption_25<Props_25>, {
2283
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToOption_24<Props_24>, {
2295
2284
  autocomplete: boolean;
2296
2285
  dataTrack: string;
2297
2286
  disabled: boolean;
@@ -2331,7 +2320,7 @@ suffix: string;
2331
2320
  transformValue: FormValueTransformer;
2332
2321
  }, {}>;
2333
2322
 
2334
- export declare const TideInputTextarea: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToOption_26<Props_26>, {
2323
+ export declare const TideInputTextarea: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToOption_25<Props_25>, {
2335
2324
  dataTrack: string;
2336
2325
  error: boolean;
2337
2326
  inputId: undefined;
@@ -2347,7 +2336,7 @@ value: undefined;
2347
2336
  error: Ref<ValidationError>;
2348
2337
  required: boolean;
2349
2338
  value: Ref<string | undefined>;
2350
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToOption_26<Props_26>, {
2339
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToOption_25<Props_25>, {
2351
2340
  dataTrack: string;
2352
2341
  error: boolean;
2353
2342
  inputId: undefined;
@@ -2373,14 +2362,14 @@ supportingText: string;
2373
2362
  rows: number;
2374
2363
  }, {}>;
2375
2364
 
2376
- export declare const TideLink: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToOption_27<Props_27>, {
2365
+ export declare const TideLink: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToOption_26<Props_26>, {
2377
2366
  element: "a";
2378
2367
  href: undefined;
2379
2368
  iconLeading: undefined;
2380
2369
  iconTrailing: undefined;
2381
2370
  isNewTab: boolean;
2382
2371
  label: undefined;
2383
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToOption_27<Props_27>, {
2372
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToOption_26<Props_26>, {
2384
2373
  element: "a";
2385
2374
  href: undefined;
2386
2375
  iconLeading: undefined;
@@ -2396,7 +2385,7 @@ iconLeading: Icon;
2396
2385
  iconTrailing: Icon;
2397
2386
  }, {}>;
2398
2387
 
2399
- export declare const TideModal: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToOption_28<Props_28>, {
2388
+ export declare const TideModal: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToOption_27<Props_27>, {
2400
2389
  isBackButton: boolean;
2401
2390
  isDismissible: boolean;
2402
2391
  title: undefined;
@@ -2404,7 +2393,7 @@ width: undefined;
2404
2393
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2405
2394
  close: () => void;
2406
2395
  back: () => void;
2407
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToOption_28<Props_28>, {
2396
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToOption_27<Props_27>, {
2408
2397
  isBackButton: boolean;
2409
2398
  isDismissible: boolean;
2410
2399
  title: undefined;
@@ -2422,12 +2411,12 @@ isDismissible: boolean;
2422
2411
  footer?(_: {}): any;
2423
2412
  }>;
2424
2413
 
2425
- export declare const TidePagination: DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToOption_29<Props_29>, {
2414
+ export declare const TidePagination: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToOption_28<Props_28>, {
2426
2415
  pageCurrent: number;
2427
2416
  pageTotal: number;
2428
2417
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2429
2418
  change: (...args: any[]) => void;
2430
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToOption_29<Props_29>, {
2419
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToOption_28<Props_28>, {
2431
2420
  pageCurrent: number;
2432
2421
  pageTotal: number;
2433
2422
  }>>> & {
@@ -2437,20 +2426,20 @@ pageCurrent: number;
2437
2426
  pageTotal: number;
2438
2427
  }, {}>;
2439
2428
 
2440
- export declare const TideSeoLinks: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToOption_30<Props_30>, {
2429
+ export declare const TideSeoLinks: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
2441
2430
  heading: string;
2442
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToOption_30<Props_30>, {
2431
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
2443
2432
  heading: string;
2444
2433
  }>>>, {
2445
2434
  heading: string;
2446
2435
  }, {}>;
2447
2436
 
2448
- export declare const TideSwitch: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToOption_31<Props_31>, {
2437
+ export declare const TideSwitch: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
2449
2438
  disabled: boolean;
2450
2439
  isActive: boolean;
2451
2440
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2452
2441
  change: (...args: any[]) => void;
2453
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToOption_31<Props_31>, {
2442
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
2454
2443
  disabled: boolean;
2455
2444
  isActive: boolean;
2456
2445
  }>>> & {