tide-design-system 2.1.13 → 2.2.0
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/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +124 -82
- package/dist/tide-design-system.esm.js +2090 -990
- package/index.ts +4 -2
- package/package.json +1 -1
- package/src/components/TideButtonSegmented.vue +8 -6
- package/src/components/TideImage.vue +1 -1
- package/src/components/{TideBackgroundImage.vue → TideImageBackground.vue} +3 -3
- package/src/components/TideInputCheckbox.vue +1 -1
- package/src/components/TideInputSelect.vue +7 -1
- package/src/components/TideInputText.vue +1 -1
- package/src/components/TideInputTextarea.vue +1 -1
- package/src/stories/{TideBackgroundImage.stories.ts → TideImageBackground.stories.ts} +7 -7
|
@@ -55,6 +55,8 @@ 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
|
+
|
|
58
60
|
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
59
61
|
|
|
60
62
|
declare type __VLS_NonUndefinedable_5<T> = T extends undefined ? never : T;
|
|
@@ -151,6 +153,10 @@ declare type __VLS_PrettifyLocal_28<T> = {
|
|
|
151
153
|
[K in keyof T]: T[K];
|
|
152
154
|
} & {};
|
|
153
155
|
|
|
156
|
+
declare type __VLS_PrettifyLocal_29<T> = {
|
|
157
|
+
[K in keyof T]: T[K];
|
|
158
|
+
} & {};
|
|
159
|
+
|
|
154
160
|
declare type __VLS_PrettifyLocal_3<T> = {
|
|
155
161
|
[K in keyof T]: T[K];
|
|
156
162
|
} & {};
|
|
@@ -395,6 +401,15 @@ declare type __VLS_TypePropsToOption_30<T> = {
|
|
|
395
401
|
};
|
|
396
402
|
};
|
|
397
403
|
|
|
404
|
+
declare type __VLS_TypePropsToOption_31<T> = {
|
|
405
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
406
|
+
type: PropType<__VLS_NonUndefinedable_31<T[K]>>;
|
|
407
|
+
} : {
|
|
408
|
+
type: PropType<T[K]>;
|
|
409
|
+
required: true;
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
|
|
398
413
|
declare type __VLS_TypePropsToOption_4<T> = {
|
|
399
414
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
400
415
|
type: PropType<__VLS_NonUndefinedable_4<T[K]>>;
|
|
@@ -575,6 +590,12 @@ declare type __VLS_WithDefaults_28<P, D> = {
|
|
|
575
590
|
}> : P[K];
|
|
576
591
|
};
|
|
577
592
|
|
|
593
|
+
declare type __VLS_WithDefaults_29<P, D> = {
|
|
594
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_29<P[K] & {
|
|
595
|
+
default: D[K];
|
|
596
|
+
}> : P[K];
|
|
597
|
+
};
|
|
598
|
+
|
|
578
599
|
declare type __VLS_WithDefaults_3<P, D> = {
|
|
579
600
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_3<P[K] & {
|
|
580
601
|
default: D[K];
|
|
@@ -659,6 +680,12 @@ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
|
659
680
|
};
|
|
660
681
|
};
|
|
661
682
|
|
|
683
|
+
declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
684
|
+
new (): {
|
|
685
|
+
$slots: S;
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
|
|
662
689
|
export declare const ALERT: {
|
|
663
690
|
readonly ERROR: "error";
|
|
664
691
|
readonly INFO: "info";
|
|
@@ -1516,11 +1543,6 @@ declare type Props = {
|
|
|
1516
1543
|
};
|
|
1517
1544
|
|
|
1518
1545
|
declare type Props_10 = {
|
|
1519
|
-
activeTab: number;
|
|
1520
|
-
tabs: Tab[];
|
|
1521
|
-
};
|
|
1522
|
-
|
|
1523
|
-
declare type Props_11 = {
|
|
1524
1546
|
description?: string;
|
|
1525
1547
|
heading: string;
|
|
1526
1548
|
icon?: Icon;
|
|
@@ -1529,7 +1551,7 @@ declare type Props_11 = {
|
|
|
1529
1551
|
href?: string;
|
|
1530
1552
|
};
|
|
1531
1553
|
|
|
1532
|
-
declare type
|
|
1554
|
+
declare type Props_11 = {
|
|
1533
1555
|
isFloating?: boolean;
|
|
1534
1556
|
isHideawayButtons?: boolean;
|
|
1535
1557
|
isTouchscreen?: boolean;
|
|
@@ -1537,35 +1559,35 @@ declare type Props_12 = {
|
|
|
1537
1559
|
title?: string;
|
|
1538
1560
|
};
|
|
1539
1561
|
|
|
1540
|
-
declare type
|
|
1562
|
+
declare type Props_12 = {
|
|
1541
1563
|
href: string;
|
|
1542
1564
|
isNewTab?: boolean;
|
|
1543
1565
|
label: string;
|
|
1544
1566
|
};
|
|
1545
1567
|
|
|
1546
|
-
declare type
|
|
1568
|
+
declare type Props_13 = {
|
|
1547
1569
|
isActive: boolean;
|
|
1548
1570
|
label: string;
|
|
1549
1571
|
};
|
|
1550
1572
|
|
|
1551
|
-
declare type
|
|
1573
|
+
declare type Props_14 = {
|
|
1552
1574
|
label: string;
|
|
1553
1575
|
};
|
|
1554
1576
|
|
|
1555
|
-
declare type
|
|
1577
|
+
declare type Props_15 = {
|
|
1556
1578
|
heading?: string;
|
|
1557
1579
|
};
|
|
1558
1580
|
|
|
1559
|
-
declare type
|
|
1581
|
+
declare type Props_16 = {
|
|
1560
1582
|
orientation?: Orientation;
|
|
1561
1583
|
};
|
|
1562
1584
|
|
|
1563
|
-
declare type
|
|
1585
|
+
declare type Props_17 = {
|
|
1564
1586
|
icon: Icon;
|
|
1565
1587
|
size?: Size;
|
|
1566
1588
|
};
|
|
1567
1589
|
|
|
1568
|
-
declare type
|
|
1590
|
+
declare type Props_18 = {
|
|
1569
1591
|
alt: string;
|
|
1570
1592
|
height?: string;
|
|
1571
1593
|
isLazy?: boolean;
|
|
@@ -1574,6 +1596,13 @@ declare type Props_19 = {
|
|
|
1574
1596
|
width?: string;
|
|
1575
1597
|
};
|
|
1576
1598
|
|
|
1599
|
+
declare type Props_19 = {
|
|
1600
|
+
alt: string;
|
|
1601
|
+
isLazy: boolean;
|
|
1602
|
+
sources?: Source[];
|
|
1603
|
+
src?: string;
|
|
1604
|
+
};
|
|
1605
|
+
|
|
1577
1606
|
declare type Props_2 = {
|
|
1578
1607
|
heading?: string;
|
|
1579
1608
|
isToast?: boolean;
|
|
@@ -1668,37 +1697,35 @@ declare type Props_28 = {
|
|
|
1668
1697
|
};
|
|
1669
1698
|
|
|
1670
1699
|
declare type Props_29 = {
|
|
1671
|
-
|
|
1672
|
-
|
|
1700
|
+
anchorId: string;
|
|
1701
|
+
offset?: number;
|
|
1673
1702
|
};
|
|
1674
1703
|
|
|
1675
1704
|
declare type Props_3 = {
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
src?: string;
|
|
1705
|
+
iconLeading?: Icon;
|
|
1706
|
+
isFloating?: boolean;
|
|
1707
|
+
label: string;
|
|
1680
1708
|
};
|
|
1681
1709
|
|
|
1682
1710
|
declare type Props_30 = {
|
|
1711
|
+
heading?: string;
|
|
1712
|
+
links: Link[];
|
|
1713
|
+
};
|
|
1714
|
+
|
|
1715
|
+
declare type Props_31 = {
|
|
1683
1716
|
disabled?: boolean;
|
|
1684
1717
|
isActive?: boolean;
|
|
1685
1718
|
};
|
|
1686
1719
|
|
|
1687
1720
|
declare type Props_4 = {
|
|
1688
|
-
iconLeading?: Icon;
|
|
1689
|
-
isFloating?: boolean;
|
|
1690
|
-
label: string;
|
|
1691
|
-
};
|
|
1692
|
-
|
|
1693
|
-
declare type Props_5 = {
|
|
1694
1721
|
years?: BadgeTrustedYears;
|
|
1695
1722
|
};
|
|
1696
1723
|
|
|
1697
|
-
declare type
|
|
1724
|
+
declare type Props_5 = {
|
|
1698
1725
|
breadCrumbs: BreadCrumb[];
|
|
1699
1726
|
};
|
|
1700
1727
|
|
|
1701
|
-
declare type
|
|
1728
|
+
declare type Props_6 = {
|
|
1702
1729
|
disabled?: boolean;
|
|
1703
1730
|
element?: Element_2;
|
|
1704
1731
|
href?: string;
|
|
@@ -1710,7 +1737,7 @@ declare type Props_7 = {
|
|
|
1710
1737
|
size?: SizeButton;
|
|
1711
1738
|
};
|
|
1712
1739
|
|
|
1713
|
-
declare type
|
|
1740
|
+
declare type Props_7 = {
|
|
1714
1741
|
disabled?: boolean;
|
|
1715
1742
|
element?: Element_2;
|
|
1716
1743
|
href?: string;
|
|
@@ -1719,13 +1746,18 @@ declare type Props_8 = {
|
|
|
1719
1746
|
priority?: Priority;
|
|
1720
1747
|
};
|
|
1721
1748
|
|
|
1722
|
-
declare type
|
|
1749
|
+
declare type Props_8 = {
|
|
1723
1750
|
disabled?: boolean;
|
|
1724
1751
|
element?: ElementTextAsIcon;
|
|
1725
1752
|
href?: string;
|
|
1726
1753
|
label: string | number;
|
|
1727
1754
|
};
|
|
1728
1755
|
|
|
1756
|
+
declare type Props_9 = {
|
|
1757
|
+
activeTab: number;
|
|
1758
|
+
tabs: Tab[];
|
|
1759
|
+
};
|
|
1760
|
+
|
|
1729
1761
|
export declare type RangeData = {
|
|
1730
1762
|
min: number | null;
|
|
1731
1763
|
max: number | null;
|
|
@@ -1927,29 +1959,10 @@ isToast: boolean;
|
|
|
1927
1959
|
default?(_: {}): any;
|
|
1928
1960
|
}>;
|
|
1929
1961
|
|
|
1930
|
-
export declare const
|
|
1931
|
-
alt: string;
|
|
1932
|
-
isLazy: boolean;
|
|
1933
|
-
sources: () => never[];
|
|
1934
|
-
src: undefined;
|
|
1935
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToOption_3<Props_3>, {
|
|
1936
|
-
alt: string;
|
|
1937
|
-
isLazy: boolean;
|
|
1938
|
-
sources: () => never[];
|
|
1939
|
-
src: undefined;
|
|
1940
|
-
}>>>, {
|
|
1941
|
-
alt: string;
|
|
1942
|
-
isLazy: boolean;
|
|
1943
|
-
sources: Source[];
|
|
1944
|
-
src: string;
|
|
1945
|
-
}, {}>, {
|
|
1946
|
-
default?(_: {}): any;
|
|
1947
|
-
}>;
|
|
1948
|
-
|
|
1949
|
-
export declare const TideBadge: DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToOption_4<Props_4>, {
|
|
1962
|
+
export declare const TideBadge: DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToOption_3<Props_3>, {
|
|
1950
1963
|
iconLeading: undefined;
|
|
1951
1964
|
isFloating: boolean;
|
|
1952
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1965
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToOption_3<Props_3>, {
|
|
1953
1966
|
iconLeading: undefined;
|
|
1954
1967
|
isFloating: boolean;
|
|
1955
1968
|
}>>>, {
|
|
@@ -1957,23 +1970,23 @@ iconLeading: Icon;
|
|
|
1957
1970
|
isFloating: boolean;
|
|
1958
1971
|
}, {}>;
|
|
1959
1972
|
|
|
1960
|
-
export declare const TideBadgeTrustedPartner: DefineComponent<
|
|
1973
|
+
export declare const TideBadgeTrustedPartner: DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToOption_4<Props_4>, {
|
|
1961
1974
|
years: "5";
|
|
1962
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1975
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToOption_4<Props_4>, {
|
|
1963
1976
|
years: "5";
|
|
1964
1977
|
}>>>, {
|
|
1965
1978
|
years: BadgeTrustedYears;
|
|
1966
1979
|
}, {}>;
|
|
1967
1980
|
|
|
1968
|
-
export declare const TideBreadCrumbs: DefineComponent<
|
|
1981
|
+
export declare const TideBreadCrumbs: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
|
|
1969
1982
|
breadCrumbs: undefined;
|
|
1970
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1983
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToOption_5<Props_5>, {
|
|
1971
1984
|
breadCrumbs: undefined;
|
|
1972
1985
|
}>>>, {
|
|
1973
1986
|
breadCrumbs: BreadCrumb[];
|
|
1974
1987
|
}, {}>;
|
|
1975
1988
|
|
|
1976
|
-
export declare const TideButton: DefineComponent<
|
|
1989
|
+
export declare const TideButton: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToOption_6<Props_6>, {
|
|
1977
1990
|
disabled: boolean;
|
|
1978
1991
|
element: "button";
|
|
1979
1992
|
href: undefined;
|
|
@@ -1983,7 +1996,7 @@ isNewTab: boolean;
|
|
|
1983
1996
|
label: undefined;
|
|
1984
1997
|
priority: "primary";
|
|
1985
1998
|
size: "large";
|
|
1986
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1999
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToOption_6<Props_6>, {
|
|
1987
2000
|
disabled: boolean;
|
|
1988
2001
|
element: "button";
|
|
1989
2002
|
href: undefined;
|
|
@@ -2005,14 +2018,14 @@ iconLeading: Icon;
|
|
|
2005
2018
|
iconTrailing: Icon;
|
|
2006
2019
|
}, {}>;
|
|
2007
2020
|
|
|
2008
|
-
export declare const TideButtonIcon: DefineComponent<
|
|
2021
|
+
export declare const TideButtonIcon: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToOption_7<Props_7>, {
|
|
2009
2022
|
disabled: boolean;
|
|
2010
2023
|
element: "button";
|
|
2011
2024
|
href: undefined;
|
|
2012
2025
|
icon: undefined;
|
|
2013
2026
|
isNewTab: boolean;
|
|
2014
2027
|
priority: "primary";
|
|
2015
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2028
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_7<Props_7>, {
|
|
2016
2029
|
disabled: boolean;
|
|
2017
2030
|
element: "button";
|
|
2018
2031
|
href: undefined;
|
|
@@ -2028,12 +2041,12 @@ isNewTab: boolean;
|
|
|
2028
2041
|
priority: Priority;
|
|
2029
2042
|
}, {}>;
|
|
2030
2043
|
|
|
2031
|
-
export declare const TideButtonPagination: DefineComponent<
|
|
2044
|
+
export declare const TideButtonPagination: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToOption_8<Props_8>, {
|
|
2032
2045
|
disabled: boolean;
|
|
2033
2046
|
element: "button";
|
|
2034
2047
|
href: undefined;
|
|
2035
2048
|
label: undefined;
|
|
2036
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2049
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToOption_8<Props_8>, {
|
|
2037
2050
|
disabled: boolean;
|
|
2038
2051
|
element: "button";
|
|
2039
2052
|
href: undefined;
|
|
@@ -2045,11 +2058,11 @@ element: ElementTextAsIcon;
|
|
|
2045
2058
|
href: string;
|
|
2046
2059
|
}, {}>;
|
|
2047
2060
|
|
|
2048
|
-
export declare const TideButtonSegmented: DefineComponent<
|
|
2061
|
+
export declare const TideButtonSegmented: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToOption_9<Props_9>, {
|
|
2049
2062
|
activeTab: number;
|
|
2050
2063
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2051
2064
|
change: (...args: any[]) => void;
|
|
2052
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2065
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToOption_9<Props_9>, {
|
|
2053
2066
|
activeTab: number;
|
|
2054
2067
|
}>>> & {
|
|
2055
2068
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2057,13 +2070,13 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2057
2070
|
activeTab: number;
|
|
2058
2071
|
}, {}>;
|
|
2059
2072
|
|
|
2060
|
-
export declare const TideCard: DefineComponent<
|
|
2073
|
+
export declare const TideCard: DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToOption_10<Props_10>, {
|
|
2061
2074
|
description: undefined;
|
|
2062
2075
|
href: undefined;
|
|
2063
2076
|
icon: undefined;
|
|
2064
2077
|
selected: undefined;
|
|
2065
2078
|
type: "informational";
|
|
2066
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2079
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToOption_10<Props_10>, {
|
|
2067
2080
|
description: undefined;
|
|
2068
2081
|
href: undefined;
|
|
2069
2082
|
icon: undefined;
|
|
@@ -2077,7 +2090,7 @@ description: string;
|
|
|
2077
2090
|
selected: boolean;
|
|
2078
2091
|
}, {}>;
|
|
2079
2092
|
|
|
2080
|
-
export declare const TideCarousel:
|
|
2093
|
+
export declare const TideCarousel: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
|
|
2081
2094
|
isFloating: boolean;
|
|
2082
2095
|
isHideawayButtons: boolean;
|
|
2083
2096
|
isTouchscreen: undefined;
|
|
@@ -2085,7 +2098,7 @@ subtitle: undefined;
|
|
|
2085
2098
|
title: undefined;
|
|
2086
2099
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2087
2100
|
change: (...args: any[]) => void;
|
|
2088
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2101
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_11<Props_11>, {
|
|
2089
2102
|
isFloating: boolean;
|
|
2090
2103
|
isHideawayButtons: boolean;
|
|
2091
2104
|
isTouchscreen: undefined;
|
|
@@ -2104,23 +2117,23 @@ subtitle: string;
|
|
|
2104
2117
|
default?(_: {}): any;
|
|
2105
2118
|
}>;
|
|
2106
2119
|
|
|
2107
|
-
export declare const TideChipAction: DefineComponent<
|
|
2120
|
+
export declare const TideChipAction: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToOption_12<Props_12>, {
|
|
2108
2121
|
isNewTab: boolean;
|
|
2109
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2122
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_12<Props_12>, {
|
|
2110
2123
|
isNewTab: boolean;
|
|
2111
2124
|
}>>>, {
|
|
2112
2125
|
isNewTab: boolean;
|
|
2113
2126
|
}, {}>;
|
|
2114
2127
|
|
|
2115
|
-
export declare const TideChipFilter:
|
|
2128
|
+
export declare const TideChipFilter: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_TypePropsToOption_13<Props_13>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_13<Props_13>>>, {}, {}>, {
|
|
2116
2129
|
default?(_: {}): any;
|
|
2117
2130
|
}>;
|
|
2118
2131
|
|
|
2119
|
-
export declare const TideChipInput: DefineComponent<
|
|
2132
|
+
export declare const TideChipInput: DefineComponent<__VLS_TypePropsToOption_14<Props_14>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_14<Props_14>>>, {}, {}>;
|
|
2120
2133
|
|
|
2121
|
-
export declare const TideColumns:
|
|
2134
|
+
export declare const TideColumns: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToOption_15<Props_15>, {
|
|
2122
2135
|
heading: string;
|
|
2123
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2136
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_15<Props_15>, {
|
|
2124
2137
|
heading: string;
|
|
2125
2138
|
}>>>, {
|
|
2126
2139
|
heading: string;
|
|
@@ -2131,30 +2144,30 @@ heading: string;
|
|
|
2131
2144
|
section4?(_: {}): any;
|
|
2132
2145
|
}>;
|
|
2133
2146
|
|
|
2134
|
-
export declare const TideDivider: DefineComponent<
|
|
2147
|
+
export declare const TideDivider: DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToOption_16<Props_16>, {
|
|
2135
2148
|
orientation: "horizontal";
|
|
2136
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2149
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToOption_16<Props_16>, {
|
|
2137
2150
|
orientation: "horizontal";
|
|
2138
2151
|
}>>>, {
|
|
2139
2152
|
orientation: Orientation;
|
|
2140
2153
|
}, {}>;
|
|
2141
2154
|
|
|
2142
|
-
export declare const TideIcon: DefineComponent<
|
|
2155
|
+
export declare const TideIcon: DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToOption_17<Props_17>, {
|
|
2143
2156
|
size: "small";
|
|
2144
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2157
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToOption_17<Props_17>, {
|
|
2145
2158
|
size: "small";
|
|
2146
2159
|
}>>>, {
|
|
2147
2160
|
size: Size;
|
|
2148
2161
|
}, {}>;
|
|
2149
2162
|
|
|
2150
|
-
export declare const TideImage: DefineComponent<
|
|
2163
|
+
export declare const TideImage: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToOption_18<Props_18>, {
|
|
2151
2164
|
alt: string;
|
|
2152
2165
|
height: undefined;
|
|
2153
2166
|
isLazy: boolean;
|
|
2154
2167
|
sources: () => never[];
|
|
2155
2168
|
src: undefined;
|
|
2156
2169
|
width: undefined;
|
|
2157
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2170
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToOption_18<Props_18>, {
|
|
2158
2171
|
alt: string;
|
|
2159
2172
|
height: undefined;
|
|
2160
2173
|
isLazy: boolean;
|
|
@@ -2170,6 +2183,25 @@ sources: Source[];
|
|
|
2170
2183
|
src: string;
|
|
2171
2184
|
}, {}>;
|
|
2172
2185
|
|
|
2186
|
+
export declare const TideImageBackground: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToOption_19<Props_19>, {
|
|
2187
|
+
alt: string;
|
|
2188
|
+
isLazy: boolean;
|
|
2189
|
+
sources: () => never[];
|
|
2190
|
+
src: undefined;
|
|
2191
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToOption_19<Props_19>, {
|
|
2192
|
+
alt: string;
|
|
2193
|
+
isLazy: boolean;
|
|
2194
|
+
sources: () => never[];
|
|
2195
|
+
src: undefined;
|
|
2196
|
+
}>>>, {
|
|
2197
|
+
alt: string;
|
|
2198
|
+
isLazy: boolean;
|
|
2199
|
+
sources: Source[];
|
|
2200
|
+
src: string;
|
|
2201
|
+
}, {}>, {
|
|
2202
|
+
default?(_: {}): any;
|
|
2203
|
+
}>;
|
|
2204
|
+
|
|
2173
2205
|
export declare const TideIndicator: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToOption_20<Props_20>, {
|
|
2174
2206
|
label: undefined;
|
|
2175
2207
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToOption_20<Props_20>, {
|
|
@@ -2426,20 +2458,30 @@ pageCurrent: number;
|
|
|
2426
2458
|
pageTotal: number;
|
|
2427
2459
|
}, {}>;
|
|
2428
2460
|
|
|
2429
|
-
export declare const
|
|
2430
|
-
|
|
2461
|
+
export declare const TidePopover: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2462
|
+
offset: number;
|
|
2431
2463
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_27<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2464
|
+
offset: number;
|
|
2465
|
+
}>>>, {
|
|
2466
|
+
offset: number;
|
|
2467
|
+
}, {}>, {
|
|
2468
|
+
default?(_: {}): any;
|
|
2469
|
+
}>;
|
|
2470
|
+
|
|
2471
|
+
export declare const TideSeoLinks: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2472
|
+
heading: string;
|
|
2473
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_28<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2432
2474
|
heading: string;
|
|
2433
2475
|
}>>>, {
|
|
2434
2476
|
heading: string;
|
|
2435
2477
|
}, {}>;
|
|
2436
2478
|
|
|
2437
|
-
export declare const TideSwitch: DefineComponent<
|
|
2479
|
+
export declare const TideSwitch: DefineComponent<__VLS_WithDefaults_29<__VLS_TypePropsToOption_31<Props_31>, {
|
|
2438
2480
|
disabled: boolean;
|
|
2439
2481
|
isActive: boolean;
|
|
2440
2482
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2441
2483
|
change: (...args: any[]) => void;
|
|
2442
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2484
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_29<__VLS_TypePropsToOption_31<Props_31>, {
|
|
2443
2485
|
disabled: boolean;
|
|
2444
2486
|
isActive: boolean;
|
|
2445
2487
|
}>>> & {
|