tide-design-system 2.1.11 → 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.
- package/.storybook/main.ts +1 -1
- package/dist/IconVerified-000f615f.js +20 -0
- package/dist/IconVerified-b71255f2.cjs +2 -0
- package/dist/css/dynamic-buttons.css +279 -0
- package/dist/css/dynamic-utilities.css +123 -0
- package/dist/css/main.css +4 -0
- package/dist/css/utilities-lg.css +402 -0
- package/dist/css/utilities-md.css +404 -0
- package/dist/css/utilities-sm.css +402 -0
- package/dist/css/utilities-xl.css +402 -0
- package/dist/css/utilities.css +4 -1520
- package/dist/css/variables.css +7 -15
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +112 -127
- package/dist/tide-design-system.esm.js +853 -866
- package/index.ts +2 -8
- package/package.json +1 -1
- package/src/assets/css/dynamic-buttons.css +279 -0
- package/src/assets/css/dynamic-utilities.css +123 -0
- package/src/assets/css/main.css +4 -0
- package/src/assets/css/utilities-lg.css +402 -0
- package/src/assets/css/utilities-md.css +404 -0
- package/src/assets/css/utilities-sm.css +402 -0
- package/src/assets/css/utilities-xl.css +402 -0
- package/src/assets/css/utilities.css +4 -1520
- package/src/assets/css/variables.css +7 -15
- package/src/assets/svg/icons/IconVerified.svg +1 -0
- package/src/components/TideAccordionItem.vue +8 -6
- package/src/components/TideAlert.vue +2 -2
- package/src/components/TideBadge.vue +17 -6
- package/src/components/TideBadgeTrustedPartner.vue +2 -2
- package/src/components/TideBadgeVerifiedVehicle.vue +32 -0
- package/src/components/TideBreadCrumbs.vue +3 -3
- package/src/components/TideButton.vue +1 -1
- package/src/components/TideButtonPagination.vue +1 -1
- package/src/components/TideButtonSegmented.vue +4 -3
- package/src/components/TideChipAction.vue +1 -2
- package/src/components/TideChipFilter.vue +2 -3
- package/src/components/TideChipInput.vue +1 -2
- package/src/components/TideColumns.vue +1 -1
- package/src/components/TideIndicator.vue +14 -18
- package/src/components/TideInputCheckbox.vue +6 -1
- package/src/components/TideInputRadio.vue +14 -2
- package/src/components/TideInputSelect.vue +3 -4
- package/src/components/TideInputText.vue +17 -6
- package/src/components/TideInputTextarea.vue +3 -15
- package/src/components/TideLink.vue +1 -3
- package/src/components/TideSeoLinks.vue +2 -2
- package/src/stories/FoundationsShadow.stories.ts +27 -8
- package/src/stories/TideBadge.stories.ts +13 -2
- package/src/stories/TideBadgeVerifiedVehicle.stories.ts +20 -0
- package/src/types/Badge.ts +0 -14
- package/src/types/Styles.ts +1 -0
- package/dist/IconVerified-04c12500.cjs +0 -2
- package/dist/IconVerified-a78449ea.js +0 -16
- package/src/components/TideBadgePremium.vue +0 -31
- 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
|
|
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
|
|
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
|
|
1540
|
+
declare type Props_13 = {
|
|
1564
1541
|
href: string;
|
|
1565
1542
|
isNewTab?: boolean;
|
|
1566
1543
|
label: string;
|
|
1567
1544
|
};
|
|
1568
1545
|
|
|
1569
|
-
declare type
|
|
1546
|
+
declare type Props_14 = {
|
|
1570
1547
|
isActive: boolean;
|
|
1571
1548
|
label: string;
|
|
1572
1549
|
};
|
|
1573
1550
|
|
|
1574
|
-
declare type
|
|
1551
|
+
declare type Props_15 = {
|
|
1575
1552
|
label: string;
|
|
1576
1553
|
};
|
|
1577
1554
|
|
|
1578
|
-
declare type
|
|
1555
|
+
declare type Props_16 = {
|
|
1579
1556
|
heading?: string;
|
|
1580
1557
|
};
|
|
1581
1558
|
|
|
1582
|
-
declare type
|
|
1559
|
+
declare type Props_17 = {
|
|
1583
1560
|
orientation?: Orientation;
|
|
1584
1561
|
};
|
|
1585
1562
|
|
|
1586
|
-
declare type
|
|
1563
|
+
declare type Props_18 = {
|
|
1587
1564
|
icon: Icon;
|
|
1588
1565
|
size?: Size;
|
|
1589
1566
|
};
|
|
1590
1567
|
|
|
1591
|
-
declare type
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1607
|
+
declare interface Props_23 extends SelectField {
|
|
1631
1608
|
inputId?: string;
|
|
1632
1609
|
supportingText?: string;
|
|
1633
1610
|
}
|
|
1634
1611
|
|
|
1635
|
-
declare type
|
|
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
|
|
1634
|
+
declare type Props_25 = {
|
|
1658
1635
|
dataTrack?: string;
|
|
1659
1636
|
error?: ValidationError;
|
|
1660
1637
|
inputId?: string;
|
|
@@ -1668,17 +1645,16 @@ declare type Props_26 = {
|
|
|
1668
1645
|
value?: string;
|
|
1669
1646
|
};
|
|
1670
1647
|
|
|
1671
|
-
declare type
|
|
1648
|
+
declare type Props_26 = {
|
|
1672
1649
|
element?: Element_2;
|
|
1673
1650
|
href?: string;
|
|
1674
1651
|
iconLeading?: Icon;
|
|
1675
1652
|
iconTrailing?: Icon;
|
|
1676
1653
|
isNewTab?: boolean;
|
|
1677
1654
|
label: string;
|
|
1678
|
-
typography?: (typeof CSS_2.FONT.ROLE)['LINK_1' | 'LINK_2' | 'LINK_3'];
|
|
1679
1655
|
};
|
|
1680
1656
|
|
|
1681
|
-
declare type
|
|
1657
|
+
declare type Props_27 = {
|
|
1682
1658
|
isBackButton?: boolean;
|
|
1683
1659
|
isDismissible?: boolean;
|
|
1684
1660
|
isOpen: boolean;
|
|
@@ -1686,11 +1662,16 @@ declare type Props_28 = {
|
|
|
1686
1662
|
width?: string;
|
|
1687
1663
|
};
|
|
1688
1664
|
|
|
1689
|
-
declare type
|
|
1665
|
+
declare type Props_28 = {
|
|
1690
1666
|
pageCurrent?: number;
|
|
1691
1667
|
pageTotal?: number;
|
|
1692
1668
|
};
|
|
1693
1669
|
|
|
1670
|
+
declare type Props_29 = {
|
|
1671
|
+
heading?: string;
|
|
1672
|
+
links: Link[];
|
|
1673
|
+
};
|
|
1674
|
+
|
|
1694
1675
|
declare type Props_3 = {
|
|
1695
1676
|
alt: string;
|
|
1696
1677
|
isLazy: boolean;
|
|
@@ -1699,32 +1680,25 @@ declare type Props_3 = {
|
|
|
1699
1680
|
};
|
|
1700
1681
|
|
|
1701
1682
|
declare type Props_30 = {
|
|
1702
|
-
heading?: string;
|
|
1703
|
-
links: Link[];
|
|
1704
|
-
};
|
|
1705
|
-
|
|
1706
|
-
declare type Props_31 = {
|
|
1707
1683
|
disabled?: boolean;
|
|
1708
1684
|
isActive?: boolean;
|
|
1709
1685
|
};
|
|
1710
1686
|
|
|
1711
1687
|
declare type Props_4 = {
|
|
1688
|
+
iconLeading?: Icon;
|
|
1689
|
+
isFloating?: boolean;
|
|
1712
1690
|
label: string;
|
|
1713
1691
|
};
|
|
1714
1692
|
|
|
1715
1693
|
declare type Props_5 = {
|
|
1716
|
-
label: BadgePremium;
|
|
1717
|
-
};
|
|
1718
|
-
|
|
1719
|
-
declare type Props_6 = {
|
|
1720
1694
|
years?: BadgeTrustedYears;
|
|
1721
1695
|
};
|
|
1722
1696
|
|
|
1723
|
-
declare type
|
|
1697
|
+
declare type Props_6 = {
|
|
1724
1698
|
breadCrumbs: BreadCrumb[];
|
|
1725
1699
|
};
|
|
1726
1700
|
|
|
1727
|
-
declare type
|
|
1701
|
+
declare type Props_7 = {
|
|
1728
1702
|
disabled?: boolean;
|
|
1729
1703
|
element?: Element_2;
|
|
1730
1704
|
href?: string;
|
|
@@ -1736,7 +1710,7 @@ declare type Props_8 = {
|
|
|
1736
1710
|
size?: SizeButton;
|
|
1737
1711
|
};
|
|
1738
1712
|
|
|
1739
|
-
declare type
|
|
1713
|
+
declare type Props_8 = {
|
|
1740
1714
|
disabled?: boolean;
|
|
1741
1715
|
element?: Element_2;
|
|
1742
1716
|
href?: string;
|
|
@@ -1745,6 +1719,13 @@ declare type Props_9 = {
|
|
|
1745
1719
|
priority?: Priority;
|
|
1746
1720
|
};
|
|
1747
1721
|
|
|
1722
|
+
declare type Props_9 = {
|
|
1723
|
+
disabled?: boolean;
|
|
1724
|
+
element?: ElementTextAsIcon;
|
|
1725
|
+
href?: string;
|
|
1726
|
+
label: string | number;
|
|
1727
|
+
};
|
|
1728
|
+
|
|
1748
1729
|
export declare type RangeData = {
|
|
1749
1730
|
min: number | null;
|
|
1750
1731
|
max: number | null;
|
|
@@ -1965,27 +1946,34 @@ src: string;
|
|
|
1965
1946
|
default?(_: {}): any;
|
|
1966
1947
|
}>;
|
|
1967
1948
|
|
|
1968
|
-
export declare const TideBadge: DefineComponent<__VLS_TypePropsToOption_4<Props_4>, {
|
|
1969
|
-
|
|
1970
|
-
|
|
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
|
+
}, {}>;
|
|
1971
1959
|
|
|
1972
|
-
export declare const TideBadgeTrustedPartner: DefineComponent<
|
|
1960
|
+
export declare const TideBadgeTrustedPartner: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
|
|
1973
1961
|
years: "5";
|
|
1974
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1962
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
|
|
1975
1963
|
years: "5";
|
|
1976
1964
|
}>>>, {
|
|
1977
1965
|
years: BadgeTrustedYears;
|
|
1978
1966
|
}, {}>;
|
|
1979
1967
|
|
|
1980
|
-
export declare const TideBreadCrumbs: DefineComponent<
|
|
1968
|
+
export declare const TideBreadCrumbs: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToOption_6<Props_6>, {
|
|
1981
1969
|
breadCrumbs: undefined;
|
|
1982
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1970
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToOption_6<Props_6>, {
|
|
1983
1971
|
breadCrumbs: undefined;
|
|
1984
1972
|
}>>>, {
|
|
1985
1973
|
breadCrumbs: BreadCrumb[];
|
|
1986
1974
|
}, {}>;
|
|
1987
1975
|
|
|
1988
|
-
export declare const TideButton: DefineComponent<
|
|
1976
|
+
export declare const TideButton: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToOption_7<Props_7>, {
|
|
1989
1977
|
disabled: boolean;
|
|
1990
1978
|
element: "button";
|
|
1991
1979
|
href: undefined;
|
|
@@ -1995,7 +1983,7 @@ isNewTab: boolean;
|
|
|
1995
1983
|
label: undefined;
|
|
1996
1984
|
priority: "primary";
|
|
1997
1985
|
size: "large";
|
|
1998
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1986
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_7<Props_7>, {
|
|
1999
1987
|
disabled: boolean;
|
|
2000
1988
|
element: "button";
|
|
2001
1989
|
href: undefined;
|
|
@@ -2017,14 +2005,14 @@ iconLeading: Icon;
|
|
|
2017
2005
|
iconTrailing: Icon;
|
|
2018
2006
|
}, {}>;
|
|
2019
2007
|
|
|
2020
|
-
export declare const TideButtonIcon: DefineComponent<
|
|
2008
|
+
export declare const TideButtonIcon: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToOption_8<Props_8>, {
|
|
2021
2009
|
disabled: boolean;
|
|
2022
2010
|
element: "button";
|
|
2023
2011
|
href: undefined;
|
|
2024
2012
|
icon: undefined;
|
|
2025
2013
|
isNewTab: boolean;
|
|
2026
2014
|
priority: "primary";
|
|
2027
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2015
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToOption_8<Props_8>, {
|
|
2028
2016
|
disabled: boolean;
|
|
2029
2017
|
element: "button";
|
|
2030
2018
|
href: undefined;
|
|
@@ -2040,12 +2028,12 @@ isNewTab: boolean;
|
|
|
2040
2028
|
priority: Priority;
|
|
2041
2029
|
}, {}>;
|
|
2042
2030
|
|
|
2043
|
-
export declare const TideButtonPagination: DefineComponent<
|
|
2031
|
+
export declare const TideButtonPagination: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToOption_9<Props_9>, {
|
|
2044
2032
|
disabled: boolean;
|
|
2045
2033
|
element: "button";
|
|
2046
2034
|
href: undefined;
|
|
2047
2035
|
label: undefined;
|
|
2048
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2036
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToOption_9<Props_9>, {
|
|
2049
2037
|
disabled: boolean;
|
|
2050
2038
|
element: "button";
|
|
2051
2039
|
href: undefined;
|
|
@@ -2057,11 +2045,11 @@ element: ElementTextAsIcon;
|
|
|
2057
2045
|
href: string;
|
|
2058
2046
|
}, {}>;
|
|
2059
2047
|
|
|
2060
|
-
export declare const TideButtonSegmented: DefineComponent<
|
|
2048
|
+
export declare const TideButtonSegmented: DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToOption_10<Props_10>, {
|
|
2061
2049
|
activeTab: number;
|
|
2062
2050
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2063
2051
|
change: (...args: any[]) => void;
|
|
2064
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2052
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToOption_10<Props_10>, {
|
|
2065
2053
|
activeTab: number;
|
|
2066
2054
|
}>>> & {
|
|
2067
2055
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2069,13 +2057,13 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2069
2057
|
activeTab: number;
|
|
2070
2058
|
}, {}>;
|
|
2071
2059
|
|
|
2072
|
-
export declare const TideCard: DefineComponent<
|
|
2060
|
+
export declare const TideCard: DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
|
|
2073
2061
|
description: undefined;
|
|
2074
2062
|
href: undefined;
|
|
2075
2063
|
icon: undefined;
|
|
2076
2064
|
selected: undefined;
|
|
2077
2065
|
type: "informational";
|
|
2078
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2066
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
|
|
2079
2067
|
description: undefined;
|
|
2080
2068
|
href: undefined;
|
|
2081
2069
|
icon: undefined;
|
|
@@ -2089,7 +2077,7 @@ description: string;
|
|
|
2089
2077
|
selected: boolean;
|
|
2090
2078
|
}, {}>;
|
|
2091
2079
|
|
|
2092
|
-
export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<
|
|
2080
|
+
export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToOption_12<Props_12>, {
|
|
2093
2081
|
isFloating: boolean;
|
|
2094
2082
|
isHideawayButtons: boolean;
|
|
2095
2083
|
isTouchscreen: undefined;
|
|
@@ -2097,7 +2085,7 @@ subtitle: undefined;
|
|
|
2097
2085
|
title: undefined;
|
|
2098
2086
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2099
2087
|
change: (...args: any[]) => void;
|
|
2100
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2088
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_12<Props_12>, {
|
|
2101
2089
|
isFloating: boolean;
|
|
2102
2090
|
isHideawayButtons: boolean;
|
|
2103
2091
|
isTouchscreen: undefined;
|
|
@@ -2116,23 +2104,23 @@ subtitle: string;
|
|
|
2116
2104
|
default?(_: {}): any;
|
|
2117
2105
|
}>;
|
|
2118
2106
|
|
|
2119
|
-
export declare const TideChipAction: DefineComponent<
|
|
2107
|
+
export declare const TideChipAction: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToOption_13<Props_13>, {
|
|
2120
2108
|
isNewTab: boolean;
|
|
2121
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2109
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_13<Props_13>, {
|
|
2122
2110
|
isNewTab: boolean;
|
|
2123
2111
|
}>>>, {
|
|
2124
2112
|
isNewTab: boolean;
|
|
2125
2113
|
}, {}>;
|
|
2126
2114
|
|
|
2127
|
-
export declare const TideChipFilter: __VLS_WithTemplateSlots_5<DefineComponent<
|
|
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>>>, {}, {}>, {
|
|
2128
2116
|
default?(_: {}): any;
|
|
2129
2117
|
}>;
|
|
2130
2118
|
|
|
2131
|
-
export declare const TideChipInput: DefineComponent<
|
|
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>>>, {}, {}>;
|
|
2132
2120
|
|
|
2133
|
-
export declare const TideColumns: __VLS_WithTemplateSlots_6<DefineComponent<
|
|
2121
|
+
export declare const TideColumns: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToOption_16<Props_16>, {
|
|
2134
2122
|
heading: string;
|
|
2135
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2123
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToOption_16<Props_16>, {
|
|
2136
2124
|
heading: string;
|
|
2137
2125
|
}>>>, {
|
|
2138
2126
|
heading: string;
|
|
@@ -2143,30 +2131,30 @@ heading: string;
|
|
|
2143
2131
|
section4?(_: {}): any;
|
|
2144
2132
|
}>;
|
|
2145
2133
|
|
|
2146
|
-
export declare const TideDivider: DefineComponent<
|
|
2134
|
+
export declare const TideDivider: DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToOption_17<Props_17>, {
|
|
2147
2135
|
orientation: "horizontal";
|
|
2148
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2136
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToOption_17<Props_17>, {
|
|
2149
2137
|
orientation: "horizontal";
|
|
2150
2138
|
}>>>, {
|
|
2151
2139
|
orientation: Orientation;
|
|
2152
2140
|
}, {}>;
|
|
2153
2141
|
|
|
2154
|
-
export declare const TideIcon: DefineComponent<
|
|
2142
|
+
export declare const TideIcon: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToOption_18<Props_18>, {
|
|
2155
2143
|
size: "small";
|
|
2156
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2144
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToOption_18<Props_18>, {
|
|
2157
2145
|
size: "small";
|
|
2158
2146
|
}>>>, {
|
|
2159
2147
|
size: Size;
|
|
2160
2148
|
}, {}>;
|
|
2161
2149
|
|
|
2162
|
-
export declare const TideImage: DefineComponent<
|
|
2150
|
+
export declare const TideImage: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToOption_19<Props_19>, {
|
|
2163
2151
|
alt: string;
|
|
2164
2152
|
height: undefined;
|
|
2165
2153
|
isLazy: boolean;
|
|
2166
2154
|
sources: () => never[];
|
|
2167
2155
|
src: undefined;
|
|
2168
2156
|
width: undefined;
|
|
2169
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2157
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToOption_19<Props_19>, {
|
|
2170
2158
|
alt: string;
|
|
2171
2159
|
height: undefined;
|
|
2172
2160
|
isLazy: boolean;
|
|
@@ -2182,15 +2170,15 @@ sources: Source[];
|
|
|
2182
2170
|
src: string;
|
|
2183
2171
|
}, {}>;
|
|
2184
2172
|
|
|
2185
|
-
export declare const TideIndicator: DefineComponent<
|
|
2173
|
+
export declare const TideIndicator: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToOption_20<Props_20>, {
|
|
2186
2174
|
label: undefined;
|
|
2187
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2175
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToOption_20<Props_20>, {
|
|
2188
2176
|
label: undefined;
|
|
2189
2177
|
}>>>, {
|
|
2190
2178
|
label: string | number;
|
|
2191
2179
|
}, {}>;
|
|
2192
2180
|
|
|
2193
|
-
export declare const TideInputCheckbox: DefineComponent<
|
|
2181
|
+
export declare const TideInputCheckbox: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToOption_21<Props_21>, {
|
|
2194
2182
|
checked: boolean;
|
|
2195
2183
|
dataTrack: string;
|
|
2196
2184
|
disabled: boolean;
|
|
@@ -2199,7 +2187,7 @@ inputId: undefined;
|
|
|
2199
2187
|
label: undefined;
|
|
2200
2188
|
name: undefined;
|
|
2201
2189
|
number: undefined;
|
|
2202
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2190
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToOption_21<Props_21>, {
|
|
2203
2191
|
checked: boolean;
|
|
2204
2192
|
dataTrack: string;
|
|
2205
2193
|
disabled: boolean;
|
|
@@ -2219,13 +2207,13 @@ inputId: string;
|
|
|
2219
2207
|
name: string;
|
|
2220
2208
|
}, {}>;
|
|
2221
2209
|
|
|
2222
|
-
export declare const TideInputRadio: DefineComponent<
|
|
2210
|
+
export declare const TideInputRadio: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToOption_22<Props_22>, {
|
|
2223
2211
|
checked: boolean;
|
|
2224
2212
|
dataTrack: string;
|
|
2225
2213
|
disabled: boolean;
|
|
2226
2214
|
inputId: undefined;
|
|
2227
2215
|
label: undefined;
|
|
2228
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2216
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToOption_22<Props_22>, {
|
|
2229
2217
|
checked: boolean;
|
|
2230
2218
|
dataTrack: string;
|
|
2231
2219
|
disabled: boolean;
|
|
@@ -2239,7 +2227,7 @@ dataTrack: string;
|
|
|
2239
2227
|
inputId: string;
|
|
2240
2228
|
}, {}>;
|
|
2241
2229
|
|
|
2242
|
-
export declare const TideInputSelect: DefineComponent<
|
|
2230
|
+
export declare const TideInputSelect: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToOption_23<Props_23>, {
|
|
2243
2231
|
disabled: boolean;
|
|
2244
2232
|
error: boolean;
|
|
2245
2233
|
inputId: undefined;
|
|
@@ -2250,7 +2238,7 @@ value: undefined;
|
|
|
2250
2238
|
}>, {
|
|
2251
2239
|
error: Ref<ValidationError_2>;
|
|
2252
2240
|
value: Ref<string | undefined>;
|
|
2253
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2241
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToOption_23<Props_23>, {
|
|
2254
2242
|
disabled: boolean;
|
|
2255
2243
|
error: boolean;
|
|
2256
2244
|
inputId: undefined;
|
|
@@ -2268,7 +2256,7 @@ value: string;
|
|
|
2268
2256
|
supportingText: string;
|
|
2269
2257
|
}, {}>;
|
|
2270
2258
|
|
|
2271
|
-
export declare const TideInputText: DefineComponent<
|
|
2259
|
+
export declare const TideInputText: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToOption_24<Props_24>, {
|
|
2272
2260
|
autocomplete: boolean;
|
|
2273
2261
|
dataTrack: string;
|
|
2274
2262
|
disabled: boolean;
|
|
@@ -2292,7 +2280,7 @@ error: Ref<ValidationError>;
|
|
|
2292
2280
|
required: boolean;
|
|
2293
2281
|
updateValue: (newValue: string) => void;
|
|
2294
2282
|
value: Ref<string | undefined>;
|
|
2295
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2283
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToOption_24<Props_24>, {
|
|
2296
2284
|
autocomplete: boolean;
|
|
2297
2285
|
dataTrack: string;
|
|
2298
2286
|
disabled: boolean;
|
|
@@ -2332,7 +2320,7 @@ suffix: string;
|
|
|
2332
2320
|
transformValue: FormValueTransformer;
|
|
2333
2321
|
}, {}>;
|
|
2334
2322
|
|
|
2335
|
-
export declare const TideInputTextarea: DefineComponent<
|
|
2323
|
+
export declare const TideInputTextarea: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToOption_25<Props_25>, {
|
|
2336
2324
|
dataTrack: string;
|
|
2337
2325
|
error: boolean;
|
|
2338
2326
|
inputId: undefined;
|
|
@@ -2348,7 +2336,7 @@ value: undefined;
|
|
|
2348
2336
|
error: Ref<ValidationError>;
|
|
2349
2337
|
required: boolean;
|
|
2350
2338
|
value: Ref<string | undefined>;
|
|
2351
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2339
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToOption_25<Props_25>, {
|
|
2352
2340
|
dataTrack: string;
|
|
2353
2341
|
error: boolean;
|
|
2354
2342
|
inputId: undefined;
|
|
@@ -2374,22 +2362,20 @@ supportingText: string;
|
|
|
2374
2362
|
rows: number;
|
|
2375
2363
|
}, {}>;
|
|
2376
2364
|
|
|
2377
|
-
export declare const TideLink: DefineComponent<
|
|
2365
|
+
export declare const TideLink: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToOption_26<Props_26>, {
|
|
2378
2366
|
element: "a";
|
|
2379
2367
|
href: undefined;
|
|
2380
2368
|
iconLeading: undefined;
|
|
2381
2369
|
iconTrailing: undefined;
|
|
2382
2370
|
isNewTab: boolean;
|
|
2383
2371
|
label: undefined;
|
|
2384
|
-
|
|
2385
|
-
}>, {}, 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>, {
|
|
2386
2373
|
element: "a";
|
|
2387
2374
|
href: undefined;
|
|
2388
2375
|
iconLeading: undefined;
|
|
2389
2376
|
iconTrailing: undefined;
|
|
2390
2377
|
isNewTab: boolean;
|
|
2391
2378
|
label: undefined;
|
|
2392
|
-
typography: "tide-typography-link-1";
|
|
2393
2379
|
}>>>, {
|
|
2394
2380
|
label: string;
|
|
2395
2381
|
element: Element_2;
|
|
@@ -2397,10 +2383,9 @@ href: string;
|
|
|
2397
2383
|
isNewTab: boolean;
|
|
2398
2384
|
iconLeading: Icon;
|
|
2399
2385
|
iconTrailing: Icon;
|
|
2400
|
-
typography: "tide-typography-link-1" | "tide-typography-link-2" | "tide-typography-link-3";
|
|
2401
2386
|
}, {}>;
|
|
2402
2387
|
|
|
2403
|
-
export declare const TideModal: __VLS_WithTemplateSlots_7<DefineComponent<
|
|
2388
|
+
export declare const TideModal: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToOption_27<Props_27>, {
|
|
2404
2389
|
isBackButton: boolean;
|
|
2405
2390
|
isDismissible: boolean;
|
|
2406
2391
|
title: undefined;
|
|
@@ -2408,7 +2393,7 @@ width: undefined;
|
|
|
2408
2393
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2409
2394
|
close: () => void;
|
|
2410
2395
|
back: () => void;
|
|
2411
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2396
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToOption_27<Props_27>, {
|
|
2412
2397
|
isBackButton: boolean;
|
|
2413
2398
|
isDismissible: boolean;
|
|
2414
2399
|
title: undefined;
|
|
@@ -2426,12 +2411,12 @@ isDismissible: boolean;
|
|
|
2426
2411
|
footer?(_: {}): any;
|
|
2427
2412
|
}>;
|
|
2428
2413
|
|
|
2429
|
-
export declare const TidePagination: DefineComponent<
|
|
2414
|
+
export declare const TidePagination: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToOption_28<Props_28>, {
|
|
2430
2415
|
pageCurrent: number;
|
|
2431
2416
|
pageTotal: number;
|
|
2432
2417
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2433
2418
|
change: (...args: any[]) => void;
|
|
2434
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2419
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToOption_28<Props_28>, {
|
|
2435
2420
|
pageCurrent: number;
|
|
2436
2421
|
pageTotal: number;
|
|
2437
2422
|
}>>> & {
|
|
@@ -2441,20 +2426,20 @@ pageCurrent: number;
|
|
|
2441
2426
|
pageTotal: number;
|
|
2442
2427
|
}, {}>;
|
|
2443
2428
|
|
|
2444
|
-
export declare const TideSeoLinks: DefineComponent<
|
|
2429
|
+
export declare const TideSeoLinks: DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2445
2430
|
heading: string;
|
|
2446
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2431
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2447
2432
|
heading: string;
|
|
2448
2433
|
}>>>, {
|
|
2449
2434
|
heading: string;
|
|
2450
2435
|
}, {}>;
|
|
2451
2436
|
|
|
2452
|
-
export declare const TideSwitch: DefineComponent<
|
|
2437
|
+
export declare const TideSwitch: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2453
2438
|
disabled: boolean;
|
|
2454
2439
|
isActive: boolean;
|
|
2455
2440
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2456
2441
|
change: (...args: any[]) => void;
|
|
2457
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2442
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2458
2443
|
disabled: boolean;
|
|
2459
2444
|
isActive: boolean;
|
|
2460
2445
|
}>>> & {
|