@ironsource/shared-ui 2.1.7-rc.10 → 2.1.7-rc.12
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/DataGrid.vue_vue_type_style_index_0_scoped_706b324e_lang.css +1 -0
- package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_402063dc_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_4d9bf5b2_lang.css +1 -0
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_66bd448a_lang.css +1 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.js +2 -2
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +8 -8
- package/components/dropdown/v3/Dropdown.vue.d.ts +1 -1
- package/components/dropdown/v3/index.d.ts +20 -20
- package/components/dropdown/v4/DropdownV4.vue.d.ts +1 -1
- package/components/dropdown/v4/index.d.ts +20 -20
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +1 -1
- package/components/menu/Menu.vue.d.ts +1 -1
- package/components/menu/index.d.ts +16 -16
- package/components/sortableList/SortableList.vue.d.ts +17 -0
- package/components/sortableList/SortableList.vue.js +3 -3
- package/components/sortableList/SortableList.vue2.js +122 -86
- package/components/sortableList/index.d.ts +60 -1
- package/components/table/v3/Table.vue.d.ts +2 -2
- package/components/table/v3/index.d.ts +39 -39
- package/components/table/v4/DataGrid.vue.d.ts +6 -2
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +131 -122
- package/components/table/v4/MultipleDataGrid.vue.d.ts +16 -3
- package/components/table/v4/MultipleDataGrid.vue.js +5 -5
- package/components/table/v4/MultipleDataGrid.vue2.js +112 -69
- package/components/table/v4/index.d.ts +92 -75
- package/components/table-cells/common/Editable.common.js +37 -26
- package/components/table-cells/common/EditableContext.d.ts +1 -0
- package/components/table-cells/v4/EditableV4.vue.d.ts +5 -0
- package/components/table-cells/v4/EditableV4.vue.js +5 -5
- package/components/table-cells/v4/EditableV4.vue2.js +18 -17
- package/components/table-cells/v4/index.d.ts +20 -1
- package/components/tooltip/v4/TooltipV4.vue.d.ts +1 -1
- package/components/tooltip/v4/index.d.ts +20 -20
- package/index.d.ts +502 -312
- package/package.json +1 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_63aaf3be_lang.css +0 -1
- package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_1bdca43d_lang.css +0 -1
- package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +0 -1
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_1cff50cb_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -1617,6 +1617,7 @@ declare const _default: {
|
|
|
1617
1617
|
$props: Partial<{
|
|
1618
1618
|
search: string;
|
|
1619
1619
|
testId: string;
|
|
1620
|
+
isLoading: boolean;
|
|
1620
1621
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1621
1622
|
searchPlaceholder: string;
|
|
1622
1623
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1625,6 +1626,8 @@ declare const _default: {
|
|
|
1625
1626
|
openId: string | number;
|
|
1626
1627
|
selectedId: string | number;
|
|
1627
1628
|
showSearch: boolean;
|
|
1629
|
+
loadingRowCount: number;
|
|
1630
|
+
emptyStateTitle: string;
|
|
1628
1631
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1629
1632
|
search: {
|
|
1630
1633
|
type: import("vue").PropType<string>;
|
|
@@ -1634,6 +1637,10 @@ declare const _default: {
|
|
|
1634
1637
|
type: import("vue").PropType<string>;
|
|
1635
1638
|
default: string;
|
|
1636
1639
|
};
|
|
1640
|
+
isLoading: {
|
|
1641
|
+
type: import("vue").PropType<boolean>;
|
|
1642
|
+
default: boolean;
|
|
1643
|
+
};
|
|
1637
1644
|
displayValue: {
|
|
1638
1645
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1639
1646
|
required: true;
|
|
@@ -1668,6 +1675,14 @@ declare const _default: {
|
|
|
1668
1675
|
type: import("vue").PropType<boolean>;
|
|
1669
1676
|
default: boolean;
|
|
1670
1677
|
};
|
|
1678
|
+
loadingRowCount: {
|
|
1679
|
+
type: import("vue").PropType<number>;
|
|
1680
|
+
default: number;
|
|
1681
|
+
};
|
|
1682
|
+
emptyStateTitle: {
|
|
1683
|
+
type: import("vue").PropType<string>;
|
|
1684
|
+
default: string;
|
|
1685
|
+
};
|
|
1671
1686
|
}>> & {
|
|
1672
1687
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1673
1688
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -1675,7 +1690,7 @@ declare const _default: {
|
|
|
1675
1690
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
1676
1691
|
"onUpdate:search"?: (query: string) => any;
|
|
1677
1692
|
onClearSearch?: () => any;
|
|
1678
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
|
|
1693
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
|
|
1679
1694
|
$attrs: {
|
|
1680
1695
|
[x: string]: unknown;
|
|
1681
1696
|
};
|
|
@@ -1698,6 +1713,10 @@ declare const _default: {
|
|
|
1698
1713
|
type: import("vue").PropType<string>;
|
|
1699
1714
|
default: string;
|
|
1700
1715
|
};
|
|
1716
|
+
isLoading: {
|
|
1717
|
+
type: import("vue").PropType<boolean>;
|
|
1718
|
+
default: boolean;
|
|
1719
|
+
};
|
|
1701
1720
|
displayValue: {
|
|
1702
1721
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1703
1722
|
required: true;
|
|
@@ -1732,6 +1751,14 @@ declare const _default: {
|
|
|
1732
1751
|
type: import("vue").PropType<boolean>;
|
|
1733
1752
|
default: boolean;
|
|
1734
1753
|
};
|
|
1754
|
+
loadingRowCount: {
|
|
1755
|
+
type: import("vue").PropType<number>;
|
|
1756
|
+
default: number;
|
|
1757
|
+
};
|
|
1758
|
+
emptyStateTitle: {
|
|
1759
|
+
type: import("vue").PropType<string>;
|
|
1760
|
+
default: string;
|
|
1761
|
+
};
|
|
1735
1762
|
}>> & {
|
|
1736
1763
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1737
1764
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -1749,6 +1776,7 @@ declare const _default: {
|
|
|
1749
1776
|
}, string, {
|
|
1750
1777
|
search: string;
|
|
1751
1778
|
testId: string;
|
|
1779
|
+
isLoading: boolean;
|
|
1752
1780
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1753
1781
|
searchPlaceholder: string;
|
|
1754
1782
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1757,6 +1785,8 @@ declare const _default: {
|
|
|
1757
1785
|
openId: string | number;
|
|
1758
1786
|
selectedId: string | number;
|
|
1759
1787
|
showSearch: boolean;
|
|
1788
|
+
loadingRowCount: number;
|
|
1789
|
+
emptyStateTitle: string;
|
|
1760
1790
|
}, {}, string> & {
|
|
1761
1791
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1762
1792
|
created?: (() => void) | (() => void)[];
|
|
@@ -1786,6 +1816,10 @@ declare const _default: {
|
|
|
1786
1816
|
type: import("vue").PropType<string>;
|
|
1787
1817
|
default: string;
|
|
1788
1818
|
};
|
|
1819
|
+
isLoading: {
|
|
1820
|
+
type: import("vue").PropType<boolean>;
|
|
1821
|
+
default: boolean;
|
|
1822
|
+
};
|
|
1789
1823
|
displayValue: {
|
|
1790
1824
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1791
1825
|
required: true;
|
|
@@ -1820,6 +1854,14 @@ declare const _default: {
|
|
|
1820
1854
|
type: import("vue").PropType<boolean>;
|
|
1821
1855
|
default: boolean;
|
|
1822
1856
|
};
|
|
1857
|
+
loadingRowCount: {
|
|
1858
|
+
type: import("vue").PropType<number>;
|
|
1859
|
+
default: number;
|
|
1860
|
+
};
|
|
1861
|
+
emptyStateTitle: {
|
|
1862
|
+
type: import("vue").PropType<string>;
|
|
1863
|
+
default: string;
|
|
1864
|
+
};
|
|
1823
1865
|
}>> & {
|
|
1824
1866
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1825
1867
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -1840,6 +1882,10 @@ declare const _default: {
|
|
|
1840
1882
|
type: import("vue").PropType<string>;
|
|
1841
1883
|
default: string;
|
|
1842
1884
|
};
|
|
1885
|
+
isLoading: {
|
|
1886
|
+
type: import("vue").PropType<boolean>;
|
|
1887
|
+
default: boolean;
|
|
1888
|
+
};
|
|
1843
1889
|
displayValue: {
|
|
1844
1890
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1845
1891
|
required: true;
|
|
@@ -1874,6 +1920,14 @@ declare const _default: {
|
|
|
1874
1920
|
type: import("vue").PropType<boolean>;
|
|
1875
1921
|
default: boolean;
|
|
1876
1922
|
};
|
|
1923
|
+
loadingRowCount: {
|
|
1924
|
+
type: import("vue").PropType<number>;
|
|
1925
|
+
default: number;
|
|
1926
|
+
};
|
|
1927
|
+
emptyStateTitle: {
|
|
1928
|
+
type: import("vue").PropType<string>;
|
|
1929
|
+
default: string;
|
|
1930
|
+
};
|
|
1877
1931
|
}>> & {
|
|
1878
1932
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1879
1933
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -1891,6 +1945,7 @@ declare const _default: {
|
|
|
1891
1945
|
}, string, {
|
|
1892
1946
|
search: string;
|
|
1893
1947
|
testId: string;
|
|
1948
|
+
isLoading: boolean;
|
|
1894
1949
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1895
1950
|
searchPlaceholder: string;
|
|
1896
1951
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1899,11 +1954,15 @@ declare const _default: {
|
|
|
1899
1954
|
openId: string | number;
|
|
1900
1955
|
selectedId: string | number;
|
|
1901
1956
|
showSearch: boolean;
|
|
1957
|
+
loadingRowCount: number;
|
|
1958
|
+
emptyStateTitle: string;
|
|
1902
1959
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1903
1960
|
$slots: {
|
|
1904
1961
|
menu?(_: {
|
|
1905
1962
|
item: import("./components/sortableList/SortableList.types").SortableListItem;
|
|
1906
1963
|
}): any;
|
|
1964
|
+
loader?(_: {}): any;
|
|
1965
|
+
"empty-state"?(_: {}): any;
|
|
1907
1966
|
};
|
|
1908
1967
|
});
|
|
1909
1968
|
SortableListTypes: () => ({
|
|
@@ -1913,6 +1972,7 @@ declare const _default: {
|
|
|
1913
1972
|
$props: Partial<{
|
|
1914
1973
|
search: string;
|
|
1915
1974
|
testId: string;
|
|
1975
|
+
isLoading: boolean;
|
|
1916
1976
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1917
1977
|
searchPlaceholder: string;
|
|
1918
1978
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1921,6 +1981,8 @@ declare const _default: {
|
|
|
1921
1981
|
openId: string | number;
|
|
1922
1982
|
selectedId: string | number;
|
|
1923
1983
|
showSearch: boolean;
|
|
1984
|
+
loadingRowCount: number;
|
|
1985
|
+
emptyStateTitle: string;
|
|
1924
1986
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1925
1987
|
search: {
|
|
1926
1988
|
type: import("vue").PropType<string>;
|
|
@@ -1930,6 +1992,10 @@ declare const _default: {
|
|
|
1930
1992
|
type: import("vue").PropType<string>;
|
|
1931
1993
|
default: string;
|
|
1932
1994
|
};
|
|
1995
|
+
isLoading: {
|
|
1996
|
+
type: import("vue").PropType<boolean>;
|
|
1997
|
+
default: boolean;
|
|
1998
|
+
};
|
|
1933
1999
|
displayValue: {
|
|
1934
2000
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1935
2001
|
required: true;
|
|
@@ -1964,6 +2030,14 @@ declare const _default: {
|
|
|
1964
2030
|
type: import("vue").PropType<boolean>;
|
|
1965
2031
|
default: boolean;
|
|
1966
2032
|
};
|
|
2033
|
+
loadingRowCount: {
|
|
2034
|
+
type: import("vue").PropType<number>;
|
|
2035
|
+
default: number;
|
|
2036
|
+
};
|
|
2037
|
+
emptyStateTitle: {
|
|
2038
|
+
type: import("vue").PropType<string>;
|
|
2039
|
+
default: string;
|
|
2040
|
+
};
|
|
1967
2041
|
}>> & {
|
|
1968
2042
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1969
2043
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -1971,7 +2045,7 @@ declare const _default: {
|
|
|
1971
2045
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
1972
2046
|
"onUpdate:search"?: (query: string) => any;
|
|
1973
2047
|
onClearSearch?: () => any;
|
|
1974
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
|
|
2048
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
|
|
1975
2049
|
$attrs: {
|
|
1976
2050
|
[x: string]: unknown;
|
|
1977
2051
|
};
|
|
@@ -1994,6 +2068,10 @@ declare const _default: {
|
|
|
1994
2068
|
type: import("vue").PropType<string>;
|
|
1995
2069
|
default: string;
|
|
1996
2070
|
};
|
|
2071
|
+
isLoading: {
|
|
2072
|
+
type: import("vue").PropType<boolean>;
|
|
2073
|
+
default: boolean;
|
|
2074
|
+
};
|
|
1997
2075
|
displayValue: {
|
|
1998
2076
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1999
2077
|
required: true;
|
|
@@ -2028,6 +2106,14 @@ declare const _default: {
|
|
|
2028
2106
|
type: import("vue").PropType<boolean>;
|
|
2029
2107
|
default: boolean;
|
|
2030
2108
|
};
|
|
2109
|
+
loadingRowCount: {
|
|
2110
|
+
type: import("vue").PropType<number>;
|
|
2111
|
+
default: number;
|
|
2112
|
+
};
|
|
2113
|
+
emptyStateTitle: {
|
|
2114
|
+
type: import("vue").PropType<string>;
|
|
2115
|
+
default: string;
|
|
2116
|
+
};
|
|
2031
2117
|
}>> & {
|
|
2032
2118
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
2033
2119
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -2045,6 +2131,7 @@ declare const _default: {
|
|
|
2045
2131
|
}, string, {
|
|
2046
2132
|
search: string;
|
|
2047
2133
|
testId: string;
|
|
2134
|
+
isLoading: boolean;
|
|
2048
2135
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
2049
2136
|
searchPlaceholder: string;
|
|
2050
2137
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -2053,6 +2140,8 @@ declare const _default: {
|
|
|
2053
2140
|
openId: string | number;
|
|
2054
2141
|
selectedId: string | number;
|
|
2055
2142
|
showSearch: boolean;
|
|
2143
|
+
loadingRowCount: number;
|
|
2144
|
+
emptyStateTitle: string;
|
|
2056
2145
|
}, {}, string> & {
|
|
2057
2146
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2058
2147
|
created?: (() => void) | (() => void)[];
|
|
@@ -2082,6 +2171,10 @@ declare const _default: {
|
|
|
2082
2171
|
type: import("vue").PropType<string>;
|
|
2083
2172
|
default: string;
|
|
2084
2173
|
};
|
|
2174
|
+
isLoading: {
|
|
2175
|
+
type: import("vue").PropType<boolean>;
|
|
2176
|
+
default: boolean;
|
|
2177
|
+
};
|
|
2085
2178
|
displayValue: {
|
|
2086
2179
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
2087
2180
|
required: true;
|
|
@@ -2116,6 +2209,14 @@ declare const _default: {
|
|
|
2116
2209
|
type: import("vue").PropType<boolean>;
|
|
2117
2210
|
default: boolean;
|
|
2118
2211
|
};
|
|
2212
|
+
loadingRowCount: {
|
|
2213
|
+
type: import("vue").PropType<number>;
|
|
2214
|
+
default: number;
|
|
2215
|
+
};
|
|
2216
|
+
emptyStateTitle: {
|
|
2217
|
+
type: import("vue").PropType<string>;
|
|
2218
|
+
default: string;
|
|
2219
|
+
};
|
|
2119
2220
|
}>> & {
|
|
2120
2221
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
2121
2222
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -2136,6 +2237,10 @@ declare const _default: {
|
|
|
2136
2237
|
type: import("vue").PropType<string>;
|
|
2137
2238
|
default: string;
|
|
2138
2239
|
};
|
|
2240
|
+
isLoading: {
|
|
2241
|
+
type: import("vue").PropType<boolean>;
|
|
2242
|
+
default: boolean;
|
|
2243
|
+
};
|
|
2139
2244
|
displayValue: {
|
|
2140
2245
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
2141
2246
|
required: true;
|
|
@@ -2170,6 +2275,14 @@ declare const _default: {
|
|
|
2170
2275
|
type: import("vue").PropType<boolean>;
|
|
2171
2276
|
default: boolean;
|
|
2172
2277
|
};
|
|
2278
|
+
loadingRowCount: {
|
|
2279
|
+
type: import("vue").PropType<number>;
|
|
2280
|
+
default: number;
|
|
2281
|
+
};
|
|
2282
|
+
emptyStateTitle: {
|
|
2283
|
+
type: import("vue").PropType<string>;
|
|
2284
|
+
default: string;
|
|
2285
|
+
};
|
|
2173
2286
|
}>> & {
|
|
2174
2287
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
2175
2288
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
@@ -2187,6 +2300,7 @@ declare const _default: {
|
|
|
2187
2300
|
}, string, {
|
|
2188
2301
|
search: string;
|
|
2189
2302
|
testId: string;
|
|
2303
|
+
isLoading: boolean;
|
|
2190
2304
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
2191
2305
|
searchPlaceholder: string;
|
|
2192
2306
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -2195,11 +2309,15 @@ declare const _default: {
|
|
|
2195
2309
|
openId: string | number;
|
|
2196
2310
|
selectedId: string | number;
|
|
2197
2311
|
showSearch: boolean;
|
|
2312
|
+
loadingRowCount: number;
|
|
2313
|
+
emptyStateTitle: string;
|
|
2198
2314
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2199
2315
|
$slots: {
|
|
2200
2316
|
menu?(_: {
|
|
2201
2317
|
item: import("./components/sortableList/SortableList.types").SortableListItem;
|
|
2202
2318
|
}): any;
|
|
2319
|
+
loader?(_: {}): any;
|
|
2320
|
+
"empty-state"?(_: {}): any;
|
|
2203
2321
|
};
|
|
2204
2322
|
}))[];
|
|
2205
2323
|
StatusDot: import("vue").DefineComponent<{
|
|
@@ -4601,6 +4719,7 @@ declare const _default: {
|
|
|
4601
4719
|
$props: Partial<{
|
|
4602
4720
|
type: "input" | "dropdown";
|
|
4603
4721
|
cell: string;
|
|
4722
|
+
saveOnClickOutside: boolean;
|
|
4604
4723
|
validateFunction: (value: unknown) => string | boolean;
|
|
4605
4724
|
isLoading: boolean;
|
|
4606
4725
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4614,6 +4733,10 @@ declare const _default: {
|
|
|
4614
4733
|
type: import("vue").PropType<string>;
|
|
4615
4734
|
default: string;
|
|
4616
4735
|
};
|
|
4736
|
+
saveOnClickOutside: {
|
|
4737
|
+
type: import("vue").PropType<boolean>;
|
|
4738
|
+
default: boolean;
|
|
4739
|
+
};
|
|
4617
4740
|
validateFunction: {
|
|
4618
4741
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4619
4742
|
default: () => false;
|
|
@@ -4634,7 +4757,7 @@ declare const _default: {
|
|
|
4634
4757
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
4635
4758
|
default: (cell: unknown) => unknown;
|
|
4636
4759
|
};
|
|
4637
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4760
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4638
4761
|
$attrs: {
|
|
4639
4762
|
[x: string]: unknown;
|
|
4640
4763
|
};
|
|
@@ -4658,6 +4781,10 @@ declare const _default: {
|
|
|
4658
4781
|
type: import("vue").PropType<string>;
|
|
4659
4782
|
default: string;
|
|
4660
4783
|
};
|
|
4784
|
+
saveOnClickOutside: {
|
|
4785
|
+
type: import("vue").PropType<boolean>;
|
|
4786
|
+
default: boolean;
|
|
4787
|
+
};
|
|
4661
4788
|
validateFunction: {
|
|
4662
4789
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4663
4790
|
default: () => false;
|
|
@@ -4681,6 +4808,7 @@ declare const _default: {
|
|
|
4681
4808
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4682
4809
|
type: "input" | "dropdown";
|
|
4683
4810
|
cell: string;
|
|
4811
|
+
saveOnClickOutside: boolean;
|
|
4684
4812
|
validateFunction: (value: unknown) => string | boolean;
|
|
4685
4813
|
isLoading: boolean;
|
|
4686
4814
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4714,6 +4842,10 @@ declare const _default: {
|
|
|
4714
4842
|
type: import("vue").PropType<string>;
|
|
4715
4843
|
default: string;
|
|
4716
4844
|
};
|
|
4845
|
+
saveOnClickOutside: {
|
|
4846
|
+
type: import("vue").PropType<boolean>;
|
|
4847
|
+
default: boolean;
|
|
4848
|
+
};
|
|
4717
4849
|
validateFunction: {
|
|
4718
4850
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4719
4851
|
default: () => false;
|
|
@@ -4748,6 +4880,10 @@ declare const _default: {
|
|
|
4748
4880
|
type: import("vue").PropType<string>;
|
|
4749
4881
|
default: string;
|
|
4750
4882
|
};
|
|
4883
|
+
saveOnClickOutside: {
|
|
4884
|
+
type: import("vue").PropType<boolean>;
|
|
4885
|
+
default: boolean;
|
|
4886
|
+
};
|
|
4751
4887
|
validateFunction: {
|
|
4752
4888
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4753
4889
|
default: () => false;
|
|
@@ -4771,6 +4907,7 @@ declare const _default: {
|
|
|
4771
4907
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4772
4908
|
type: "input" | "dropdown";
|
|
4773
4909
|
cell: string;
|
|
4910
|
+
saveOnClickOutside: boolean;
|
|
4774
4911
|
validateFunction: (value: unknown) => string | boolean;
|
|
4775
4912
|
isLoading: boolean;
|
|
4776
4913
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4787,6 +4924,7 @@ declare const _default: {
|
|
|
4787
4924
|
$props: Partial<{
|
|
4788
4925
|
type: "input" | "dropdown";
|
|
4789
4926
|
cell: string;
|
|
4927
|
+
saveOnClickOutside: boolean;
|
|
4790
4928
|
validateFunction: (value: unknown) => string | boolean;
|
|
4791
4929
|
isLoading: boolean;
|
|
4792
4930
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4800,6 +4938,10 @@ declare const _default: {
|
|
|
4800
4938
|
type: import("vue").PropType<string>;
|
|
4801
4939
|
default: string;
|
|
4802
4940
|
};
|
|
4941
|
+
saveOnClickOutside: {
|
|
4942
|
+
type: import("vue").PropType<boolean>;
|
|
4943
|
+
default: boolean;
|
|
4944
|
+
};
|
|
4803
4945
|
validateFunction: {
|
|
4804
4946
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4805
4947
|
default: () => false;
|
|
@@ -4820,7 +4962,7 @@ declare const _default: {
|
|
|
4820
4962
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
4821
4963
|
default: (cell: unknown) => unknown;
|
|
4822
4964
|
};
|
|
4823
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4965
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4824
4966
|
$attrs: {
|
|
4825
4967
|
[x: string]: unknown;
|
|
4826
4968
|
};
|
|
@@ -4844,6 +4986,10 @@ declare const _default: {
|
|
|
4844
4986
|
type: import("vue").PropType<string>;
|
|
4845
4987
|
default: string;
|
|
4846
4988
|
};
|
|
4989
|
+
saveOnClickOutside: {
|
|
4990
|
+
type: import("vue").PropType<boolean>;
|
|
4991
|
+
default: boolean;
|
|
4992
|
+
};
|
|
4847
4993
|
validateFunction: {
|
|
4848
4994
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4849
4995
|
default: () => false;
|
|
@@ -4867,6 +5013,7 @@ declare const _default: {
|
|
|
4867
5013
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4868
5014
|
type: "input" | "dropdown";
|
|
4869
5015
|
cell: string;
|
|
5016
|
+
saveOnClickOutside: boolean;
|
|
4870
5017
|
validateFunction: (value: unknown) => string | boolean;
|
|
4871
5018
|
isLoading: boolean;
|
|
4872
5019
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4900,6 +5047,10 @@ declare const _default: {
|
|
|
4900
5047
|
type: import("vue").PropType<string>;
|
|
4901
5048
|
default: string;
|
|
4902
5049
|
};
|
|
5050
|
+
saveOnClickOutside: {
|
|
5051
|
+
type: import("vue").PropType<boolean>;
|
|
5052
|
+
default: boolean;
|
|
5053
|
+
};
|
|
4903
5054
|
validateFunction: {
|
|
4904
5055
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4905
5056
|
default: () => false;
|
|
@@ -4934,6 +5085,10 @@ declare const _default: {
|
|
|
4934
5085
|
type: import("vue").PropType<string>;
|
|
4935
5086
|
default: string;
|
|
4936
5087
|
};
|
|
5088
|
+
saveOnClickOutside: {
|
|
5089
|
+
type: import("vue").PropType<boolean>;
|
|
5090
|
+
default: boolean;
|
|
5091
|
+
};
|
|
4937
5092
|
validateFunction: {
|
|
4938
5093
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4939
5094
|
default: () => false;
|
|
@@ -4957,6 +5112,7 @@ declare const _default: {
|
|
|
4957
5112
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4958
5113
|
type: "input" | "dropdown";
|
|
4959
5114
|
cell: string;
|
|
5115
|
+
saveOnClickOutside: boolean;
|
|
4960
5116
|
validateFunction: (value: unknown) => string | boolean;
|
|
4961
5117
|
isLoading: boolean;
|
|
4962
5118
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4982,15 +5138,15 @@ declare const _default: {
|
|
|
4982
5138
|
searchPlaceholder: string;
|
|
4983
5139
|
selection: unknown[];
|
|
4984
5140
|
showSearch: boolean;
|
|
5141
|
+
loadingRowCount: number;
|
|
5142
|
+
emptyStateTitle: string;
|
|
4985
5143
|
isSticky: boolean;
|
|
4986
5144
|
sections: import("./components/table/common/Table.types").Section[];
|
|
4987
5145
|
isStickyHeader: boolean;
|
|
4988
|
-
emptyStateTitle: string;
|
|
4989
5146
|
emptyStateSubtitle: string;
|
|
4990
5147
|
isInfiniteScroll: boolean;
|
|
4991
5148
|
infiniteScrollThreshold: number;
|
|
4992
5149
|
rowHeight: number | ((index: number) => number);
|
|
4993
|
-
loadingRowCount: number;
|
|
4994
5150
|
defaultScrollPosition: number;
|
|
4995
5151
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
4996
5152
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -5037,6 +5193,14 @@ declare const _default: {
|
|
|
5037
5193
|
type: import("vue").PropType<boolean>;
|
|
5038
5194
|
default: boolean;
|
|
5039
5195
|
};
|
|
5196
|
+
loadingRowCount: {
|
|
5197
|
+
type: import("vue").PropType<number>;
|
|
5198
|
+
default: number;
|
|
5199
|
+
};
|
|
5200
|
+
emptyStateTitle: {
|
|
5201
|
+
type: import("vue").PropType<string>;
|
|
5202
|
+
default: string;
|
|
5203
|
+
};
|
|
5040
5204
|
isSticky: {
|
|
5041
5205
|
type: import("vue").PropType<boolean>;
|
|
5042
5206
|
default: boolean;
|
|
@@ -5053,10 +5217,6 @@ declare const _default: {
|
|
|
5053
5217
|
type: import("vue").PropType<boolean>;
|
|
5054
5218
|
default: boolean;
|
|
5055
5219
|
};
|
|
5056
|
-
emptyStateTitle: {
|
|
5057
|
-
type: import("vue").PropType<string>;
|
|
5058
|
-
default: string;
|
|
5059
|
-
};
|
|
5060
5220
|
emptyStateSubtitle: {
|
|
5061
5221
|
type: import("vue").PropType<string>;
|
|
5062
5222
|
default: string;
|
|
@@ -5073,10 +5233,6 @@ declare const _default: {
|
|
|
5073
5233
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5074
5234
|
default: number;
|
|
5075
5235
|
};
|
|
5076
|
-
loadingRowCount: {
|
|
5077
|
-
type: import("vue").PropType<number>;
|
|
5078
|
-
default: number;
|
|
5079
|
-
};
|
|
5080
5236
|
defaultScrollPosition: {
|
|
5081
5237
|
type: import("vue").PropType<number>;
|
|
5082
5238
|
default: any;
|
|
@@ -5113,7 +5269,7 @@ declare const _default: {
|
|
|
5113
5269
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5114
5270
|
onSelectRow?: (value: boolean) => any;
|
|
5115
5271
|
onClickRow?: (rowIndex: number) => any;
|
|
5116
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
5272
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
|
|
5117
5273
|
$attrs: {
|
|
5118
5274
|
[x: string]: unknown;
|
|
5119
5275
|
};
|
|
@@ -5173,6 +5329,14 @@ declare const _default: {
|
|
|
5173
5329
|
type: import("vue").PropType<boolean>;
|
|
5174
5330
|
default: boolean;
|
|
5175
5331
|
};
|
|
5332
|
+
loadingRowCount: {
|
|
5333
|
+
type: import("vue").PropType<number>;
|
|
5334
|
+
default: number;
|
|
5335
|
+
};
|
|
5336
|
+
emptyStateTitle: {
|
|
5337
|
+
type: import("vue").PropType<string>;
|
|
5338
|
+
default: string;
|
|
5339
|
+
};
|
|
5176
5340
|
isSticky: {
|
|
5177
5341
|
type: import("vue").PropType<boolean>;
|
|
5178
5342
|
default: boolean;
|
|
@@ -5189,10 +5353,6 @@ declare const _default: {
|
|
|
5189
5353
|
type: import("vue").PropType<boolean>;
|
|
5190
5354
|
default: boolean;
|
|
5191
5355
|
};
|
|
5192
|
-
emptyStateTitle: {
|
|
5193
|
-
type: import("vue").PropType<string>;
|
|
5194
|
-
default: string;
|
|
5195
|
-
};
|
|
5196
5356
|
emptyStateSubtitle: {
|
|
5197
5357
|
type: import("vue").PropType<string>;
|
|
5198
5358
|
default: string;
|
|
@@ -5209,10 +5369,6 @@ declare const _default: {
|
|
|
5209
5369
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5210
5370
|
default: number;
|
|
5211
5371
|
};
|
|
5212
|
-
loadingRowCount: {
|
|
5213
|
-
type: import("vue").PropType<number>;
|
|
5214
|
-
default: number;
|
|
5215
|
-
};
|
|
5216
5372
|
defaultScrollPosition: {
|
|
5217
5373
|
type: import("vue").PropType<number>;
|
|
5218
5374
|
default: any;
|
|
@@ -5277,15 +5433,15 @@ declare const _default: {
|
|
|
5277
5433
|
searchPlaceholder: string;
|
|
5278
5434
|
selection: unknown[];
|
|
5279
5435
|
showSearch: boolean;
|
|
5436
|
+
loadingRowCount: number;
|
|
5437
|
+
emptyStateTitle: string;
|
|
5280
5438
|
isSticky: boolean;
|
|
5281
5439
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5282
5440
|
isStickyHeader: boolean;
|
|
5283
|
-
emptyStateTitle: string;
|
|
5284
5441
|
emptyStateSubtitle: string;
|
|
5285
5442
|
isInfiniteScroll: boolean;
|
|
5286
5443
|
infiniteScrollThreshold: number;
|
|
5287
5444
|
rowHeight: number | ((index: number) => number);
|
|
5288
|
-
loadingRowCount: number;
|
|
5289
5445
|
defaultScrollPosition: number;
|
|
5290
5446
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5291
5447
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -5352,6 +5508,14 @@ declare const _default: {
|
|
|
5352
5508
|
type: import("vue").PropType<boolean>;
|
|
5353
5509
|
default: boolean;
|
|
5354
5510
|
};
|
|
5511
|
+
loadingRowCount: {
|
|
5512
|
+
type: import("vue").PropType<number>;
|
|
5513
|
+
default: number;
|
|
5514
|
+
};
|
|
5515
|
+
emptyStateTitle: {
|
|
5516
|
+
type: import("vue").PropType<string>;
|
|
5517
|
+
default: string;
|
|
5518
|
+
};
|
|
5355
5519
|
isSticky: {
|
|
5356
5520
|
type: import("vue").PropType<boolean>;
|
|
5357
5521
|
default: boolean;
|
|
@@ -5368,10 +5532,6 @@ declare const _default: {
|
|
|
5368
5532
|
type: import("vue").PropType<boolean>;
|
|
5369
5533
|
default: boolean;
|
|
5370
5534
|
};
|
|
5371
|
-
emptyStateTitle: {
|
|
5372
|
-
type: import("vue").PropType<string>;
|
|
5373
|
-
default: string;
|
|
5374
|
-
};
|
|
5375
5535
|
emptyStateSubtitle: {
|
|
5376
5536
|
type: import("vue").PropType<string>;
|
|
5377
5537
|
default: string;
|
|
@@ -5388,10 +5548,6 @@ declare const _default: {
|
|
|
5388
5548
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5389
5549
|
default: number;
|
|
5390
5550
|
};
|
|
5391
|
-
loadingRowCount: {
|
|
5392
|
-
type: import("vue").PropType<number>;
|
|
5393
|
-
default: number;
|
|
5394
|
-
};
|
|
5395
5551
|
defaultScrollPosition: {
|
|
5396
5552
|
type: import("vue").PropType<number>;
|
|
5397
5553
|
default: any;
|
|
@@ -5475,6 +5631,14 @@ declare const _default: {
|
|
|
5475
5631
|
type: import("vue").PropType<boolean>;
|
|
5476
5632
|
default: boolean;
|
|
5477
5633
|
};
|
|
5634
|
+
loadingRowCount: {
|
|
5635
|
+
type: import("vue").PropType<number>;
|
|
5636
|
+
default: number;
|
|
5637
|
+
};
|
|
5638
|
+
emptyStateTitle: {
|
|
5639
|
+
type: import("vue").PropType<string>;
|
|
5640
|
+
default: string;
|
|
5641
|
+
};
|
|
5478
5642
|
isSticky: {
|
|
5479
5643
|
type: import("vue").PropType<boolean>;
|
|
5480
5644
|
default: boolean;
|
|
@@ -5491,10 +5655,6 @@ declare const _default: {
|
|
|
5491
5655
|
type: import("vue").PropType<boolean>;
|
|
5492
5656
|
default: boolean;
|
|
5493
5657
|
};
|
|
5494
|
-
emptyStateTitle: {
|
|
5495
|
-
type: import("vue").PropType<string>;
|
|
5496
|
-
default: string;
|
|
5497
|
-
};
|
|
5498
5658
|
emptyStateSubtitle: {
|
|
5499
5659
|
type: import("vue").PropType<string>;
|
|
5500
5660
|
default: string;
|
|
@@ -5511,10 +5671,6 @@ declare const _default: {
|
|
|
5511
5671
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5512
5672
|
default: number;
|
|
5513
5673
|
};
|
|
5514
|
-
loadingRowCount: {
|
|
5515
|
-
type: import("vue").PropType<number>;
|
|
5516
|
-
default: number;
|
|
5517
|
-
};
|
|
5518
5674
|
defaultScrollPosition: {
|
|
5519
5675
|
type: import("vue").PropType<number>;
|
|
5520
5676
|
default: any;
|
|
@@ -5579,15 +5735,15 @@ declare const _default: {
|
|
|
5579
5735
|
searchPlaceholder: string;
|
|
5580
5736
|
selection: unknown[];
|
|
5581
5737
|
showSearch: boolean;
|
|
5738
|
+
loadingRowCount: number;
|
|
5739
|
+
emptyStateTitle: string;
|
|
5582
5740
|
isSticky: boolean;
|
|
5583
5741
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5584
5742
|
isStickyHeader: boolean;
|
|
5585
|
-
emptyStateTitle: string;
|
|
5586
5743
|
emptyStateSubtitle: string;
|
|
5587
5744
|
isInfiniteScroll: boolean;
|
|
5588
5745
|
infiniteScrollThreshold: number;
|
|
5589
5746
|
rowHeight: number | ((index: number) => number);
|
|
5590
|
-
loadingRowCount: number;
|
|
5591
5747
|
defaultScrollPosition: number;
|
|
5592
5748
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5593
5749
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -5612,6 +5768,10 @@ declare const _default: {
|
|
|
5612
5768
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
5613
5769
|
gridColumnTemplate: any;
|
|
5614
5770
|
}): any;
|
|
5771
|
+
"floating-row"?(_: {
|
|
5772
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
5773
|
+
rowIndex: number;
|
|
5774
|
+
}): any;
|
|
5615
5775
|
"empty-state"?(_: {}): any;
|
|
5616
5776
|
footer?(_: {}): any;
|
|
5617
5777
|
};
|
|
@@ -5725,15 +5885,15 @@ declare const _default: {
|
|
|
5725
5885
|
searchPlaceholder: string;
|
|
5726
5886
|
selection: unknown[];
|
|
5727
5887
|
showSearch: boolean;
|
|
5888
|
+
loadingRowCount: number;
|
|
5889
|
+
emptyStateTitle: string;
|
|
5728
5890
|
isSticky: boolean;
|
|
5729
5891
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5730
5892
|
isStickyHeader: boolean;
|
|
5731
|
-
emptyStateTitle: string;
|
|
5732
5893
|
emptyStateSubtitle: string;
|
|
5733
5894
|
isInfiniteScroll: boolean;
|
|
5734
5895
|
infiniteScrollThreshold: number;
|
|
5735
5896
|
rowHeight: number | ((index: number) => number);
|
|
5736
|
-
loadingRowCount: number;
|
|
5737
5897
|
defaultScrollPosition: number;
|
|
5738
5898
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5739
5899
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -5780,6 +5940,14 @@ declare const _default: {
|
|
|
5780
5940
|
type: import("vue").PropType<boolean>;
|
|
5781
5941
|
default: boolean;
|
|
5782
5942
|
};
|
|
5943
|
+
loadingRowCount: {
|
|
5944
|
+
type: import("vue").PropType<number>;
|
|
5945
|
+
default: number;
|
|
5946
|
+
};
|
|
5947
|
+
emptyStateTitle: {
|
|
5948
|
+
type: import("vue").PropType<string>;
|
|
5949
|
+
default: string;
|
|
5950
|
+
};
|
|
5783
5951
|
isSticky: {
|
|
5784
5952
|
type: import("vue").PropType<boolean>;
|
|
5785
5953
|
default: boolean;
|
|
@@ -5796,10 +5964,6 @@ declare const _default: {
|
|
|
5796
5964
|
type: import("vue").PropType<boolean>;
|
|
5797
5965
|
default: boolean;
|
|
5798
5966
|
};
|
|
5799
|
-
emptyStateTitle: {
|
|
5800
|
-
type: import("vue").PropType<string>;
|
|
5801
|
-
default: string;
|
|
5802
|
-
};
|
|
5803
5967
|
emptyStateSubtitle: {
|
|
5804
5968
|
type: import("vue").PropType<string>;
|
|
5805
5969
|
default: string;
|
|
@@ -5816,10 +5980,6 @@ declare const _default: {
|
|
|
5816
5980
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5817
5981
|
default: number;
|
|
5818
5982
|
};
|
|
5819
|
-
loadingRowCount: {
|
|
5820
|
-
type: import("vue").PropType<number>;
|
|
5821
|
-
default: number;
|
|
5822
|
-
};
|
|
5823
5983
|
defaultScrollPosition: {
|
|
5824
5984
|
type: import("vue").PropType<number>;
|
|
5825
5985
|
default: any;
|
|
@@ -5856,7 +6016,7 @@ declare const _default: {
|
|
|
5856
6016
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5857
6017
|
onSelectRow?: (value: boolean) => any;
|
|
5858
6018
|
onClickRow?: (rowIndex: number) => any;
|
|
5859
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
6019
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
|
|
5860
6020
|
$attrs: {
|
|
5861
6021
|
[x: string]: unknown;
|
|
5862
6022
|
};
|
|
@@ -5916,6 +6076,14 @@ declare const _default: {
|
|
|
5916
6076
|
type: import("vue").PropType<boolean>;
|
|
5917
6077
|
default: boolean;
|
|
5918
6078
|
};
|
|
6079
|
+
loadingRowCount: {
|
|
6080
|
+
type: import("vue").PropType<number>;
|
|
6081
|
+
default: number;
|
|
6082
|
+
};
|
|
6083
|
+
emptyStateTitle: {
|
|
6084
|
+
type: import("vue").PropType<string>;
|
|
6085
|
+
default: string;
|
|
6086
|
+
};
|
|
5919
6087
|
isSticky: {
|
|
5920
6088
|
type: import("vue").PropType<boolean>;
|
|
5921
6089
|
default: boolean;
|
|
@@ -5932,10 +6100,6 @@ declare const _default: {
|
|
|
5932
6100
|
type: import("vue").PropType<boolean>;
|
|
5933
6101
|
default: boolean;
|
|
5934
6102
|
};
|
|
5935
|
-
emptyStateTitle: {
|
|
5936
|
-
type: import("vue").PropType<string>;
|
|
5937
|
-
default: string;
|
|
5938
|
-
};
|
|
5939
6103
|
emptyStateSubtitle: {
|
|
5940
6104
|
type: import("vue").PropType<string>;
|
|
5941
6105
|
default: string;
|
|
@@ -5952,10 +6116,6 @@ declare const _default: {
|
|
|
5952
6116
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5953
6117
|
default: number;
|
|
5954
6118
|
};
|
|
5955
|
-
loadingRowCount: {
|
|
5956
|
-
type: import("vue").PropType<number>;
|
|
5957
|
-
default: number;
|
|
5958
|
-
};
|
|
5959
6119
|
defaultScrollPosition: {
|
|
5960
6120
|
type: import("vue").PropType<number>;
|
|
5961
6121
|
default: any;
|
|
@@ -6020,15 +6180,15 @@ declare const _default: {
|
|
|
6020
6180
|
searchPlaceholder: string;
|
|
6021
6181
|
selection: unknown[];
|
|
6022
6182
|
showSearch: boolean;
|
|
6183
|
+
loadingRowCount: number;
|
|
6184
|
+
emptyStateTitle: string;
|
|
6023
6185
|
isSticky: boolean;
|
|
6024
6186
|
sections: import("./components/table/common/Table.types").Section[];
|
|
6025
6187
|
isStickyHeader: boolean;
|
|
6026
|
-
emptyStateTitle: string;
|
|
6027
6188
|
emptyStateSubtitle: string;
|
|
6028
6189
|
isInfiniteScroll: boolean;
|
|
6029
6190
|
infiniteScrollThreshold: number;
|
|
6030
6191
|
rowHeight: number | ((index: number) => number);
|
|
6031
|
-
loadingRowCount: number;
|
|
6032
6192
|
defaultScrollPosition: number;
|
|
6033
6193
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6034
6194
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -6095,6 +6255,14 @@ declare const _default: {
|
|
|
6095
6255
|
type: import("vue").PropType<boolean>;
|
|
6096
6256
|
default: boolean;
|
|
6097
6257
|
};
|
|
6258
|
+
loadingRowCount: {
|
|
6259
|
+
type: import("vue").PropType<number>;
|
|
6260
|
+
default: number;
|
|
6261
|
+
};
|
|
6262
|
+
emptyStateTitle: {
|
|
6263
|
+
type: import("vue").PropType<string>;
|
|
6264
|
+
default: string;
|
|
6265
|
+
};
|
|
6098
6266
|
isSticky: {
|
|
6099
6267
|
type: import("vue").PropType<boolean>;
|
|
6100
6268
|
default: boolean;
|
|
@@ -6111,10 +6279,6 @@ declare const _default: {
|
|
|
6111
6279
|
type: import("vue").PropType<boolean>;
|
|
6112
6280
|
default: boolean;
|
|
6113
6281
|
};
|
|
6114
|
-
emptyStateTitle: {
|
|
6115
|
-
type: import("vue").PropType<string>;
|
|
6116
|
-
default: string;
|
|
6117
|
-
};
|
|
6118
6282
|
emptyStateSubtitle: {
|
|
6119
6283
|
type: import("vue").PropType<string>;
|
|
6120
6284
|
default: string;
|
|
@@ -6131,10 +6295,6 @@ declare const _default: {
|
|
|
6131
6295
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6132
6296
|
default: number;
|
|
6133
6297
|
};
|
|
6134
|
-
loadingRowCount: {
|
|
6135
|
-
type: import("vue").PropType<number>;
|
|
6136
|
-
default: number;
|
|
6137
|
-
};
|
|
6138
6298
|
defaultScrollPosition: {
|
|
6139
6299
|
type: import("vue").PropType<number>;
|
|
6140
6300
|
default: any;
|
|
@@ -6218,6 +6378,14 @@ declare const _default: {
|
|
|
6218
6378
|
type: import("vue").PropType<boolean>;
|
|
6219
6379
|
default: boolean;
|
|
6220
6380
|
};
|
|
6381
|
+
loadingRowCount: {
|
|
6382
|
+
type: import("vue").PropType<number>;
|
|
6383
|
+
default: number;
|
|
6384
|
+
};
|
|
6385
|
+
emptyStateTitle: {
|
|
6386
|
+
type: import("vue").PropType<string>;
|
|
6387
|
+
default: string;
|
|
6388
|
+
};
|
|
6221
6389
|
isSticky: {
|
|
6222
6390
|
type: import("vue").PropType<boolean>;
|
|
6223
6391
|
default: boolean;
|
|
@@ -6234,10 +6402,6 @@ declare const _default: {
|
|
|
6234
6402
|
type: import("vue").PropType<boolean>;
|
|
6235
6403
|
default: boolean;
|
|
6236
6404
|
};
|
|
6237
|
-
emptyStateTitle: {
|
|
6238
|
-
type: import("vue").PropType<string>;
|
|
6239
|
-
default: string;
|
|
6240
|
-
};
|
|
6241
6405
|
emptyStateSubtitle: {
|
|
6242
6406
|
type: import("vue").PropType<string>;
|
|
6243
6407
|
default: string;
|
|
@@ -6254,10 +6418,6 @@ declare const _default: {
|
|
|
6254
6418
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6255
6419
|
default: number;
|
|
6256
6420
|
};
|
|
6257
|
-
loadingRowCount: {
|
|
6258
|
-
type: import("vue").PropType<number>;
|
|
6259
|
-
default: number;
|
|
6260
|
-
};
|
|
6261
6421
|
defaultScrollPosition: {
|
|
6262
6422
|
type: import("vue").PropType<number>;
|
|
6263
6423
|
default: any;
|
|
@@ -6322,15 +6482,15 @@ declare const _default: {
|
|
|
6322
6482
|
searchPlaceholder: string;
|
|
6323
6483
|
selection: unknown[];
|
|
6324
6484
|
showSearch: boolean;
|
|
6485
|
+
loadingRowCount: number;
|
|
6486
|
+
emptyStateTitle: string;
|
|
6325
6487
|
isSticky: boolean;
|
|
6326
6488
|
sections: import("./components/table/common/Table.types").Section[];
|
|
6327
6489
|
isStickyHeader: boolean;
|
|
6328
|
-
emptyStateTitle: string;
|
|
6329
6490
|
emptyStateSubtitle: string;
|
|
6330
6491
|
isInfiniteScroll: boolean;
|
|
6331
6492
|
infiniteScrollThreshold: number;
|
|
6332
6493
|
rowHeight: number | ((index: number) => number);
|
|
6333
|
-
loadingRowCount: number;
|
|
6334
6494
|
defaultScrollPosition: number;
|
|
6335
6495
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6336
6496
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
@@ -6355,6 +6515,10 @@ declare const _default: {
|
|
|
6355
6515
|
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
6356
6516
|
gridColumnTemplate: any;
|
|
6357
6517
|
}): any;
|
|
6518
|
+
"floating-row"?(_: {
|
|
6519
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
6520
|
+
rowIndex: number;
|
|
6521
|
+
}): any;
|
|
6358
6522
|
"empty-state"?(_: {}): any;
|
|
6359
6523
|
footer?(_: {}): any;
|
|
6360
6524
|
};
|
|
@@ -6462,10 +6626,10 @@ declare const _default: {
|
|
|
6462
6626
|
searchPlaceholder: string;
|
|
6463
6627
|
count: number;
|
|
6464
6628
|
showSearch: boolean;
|
|
6465
|
-
|
|
6629
|
+
loadingRowCount: number;
|
|
6466
6630
|
emptyStateTitle: string;
|
|
6631
|
+
isSticky: boolean;
|
|
6467
6632
|
emptyStateSubtitle: string;
|
|
6468
|
-
loadingRowCount: number;
|
|
6469
6633
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6470
6634
|
zIndexBase: number;
|
|
6471
6635
|
totalCount: number;
|
|
@@ -6499,22 +6663,22 @@ declare const _default: {
|
|
|
6499
6663
|
type: import("vue").PropType<boolean>;
|
|
6500
6664
|
default: boolean;
|
|
6501
6665
|
};
|
|
6502
|
-
|
|
6503
|
-
type: import("vue").PropType<
|
|
6504
|
-
default:
|
|
6666
|
+
loadingRowCount: {
|
|
6667
|
+
type: import("vue").PropType<number>;
|
|
6668
|
+
default: number;
|
|
6505
6669
|
};
|
|
6506
6670
|
emptyStateTitle: {
|
|
6507
6671
|
type: import("vue").PropType<string>;
|
|
6508
6672
|
default: string;
|
|
6509
6673
|
};
|
|
6674
|
+
isSticky: {
|
|
6675
|
+
type: import("vue").PropType<boolean>;
|
|
6676
|
+
default: boolean;
|
|
6677
|
+
};
|
|
6510
6678
|
emptyStateSubtitle: {
|
|
6511
6679
|
type: import("vue").PropType<string>;
|
|
6512
6680
|
default: string;
|
|
6513
6681
|
};
|
|
6514
|
-
loadingRowCount: {
|
|
6515
|
-
type: import("vue").PropType<number>;
|
|
6516
|
-
default: number;
|
|
6517
|
-
};
|
|
6518
6682
|
emptyStateVariant: {
|
|
6519
6683
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6520
6684
|
default: any;
|
|
@@ -6554,7 +6718,7 @@ declare const _default: {
|
|
|
6554
6718
|
onOnScroll?: (scrollTop: number) => any;
|
|
6555
6719
|
onOnClearSearch?: () => any;
|
|
6556
6720
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
6557
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
6721
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
6558
6722
|
$attrs: {
|
|
6559
6723
|
[x: string]: unknown;
|
|
6560
6724
|
};
|
|
@@ -6593,22 +6757,22 @@ declare const _default: {
|
|
|
6593
6757
|
type: import("vue").PropType<boolean>;
|
|
6594
6758
|
default: boolean;
|
|
6595
6759
|
};
|
|
6596
|
-
|
|
6597
|
-
type: import("vue").PropType<
|
|
6598
|
-
default:
|
|
6760
|
+
loadingRowCount: {
|
|
6761
|
+
type: import("vue").PropType<number>;
|
|
6762
|
+
default: number;
|
|
6599
6763
|
};
|
|
6600
6764
|
emptyStateTitle: {
|
|
6601
6765
|
type: import("vue").PropType<string>;
|
|
6602
6766
|
default: string;
|
|
6603
6767
|
};
|
|
6768
|
+
isSticky: {
|
|
6769
|
+
type: import("vue").PropType<boolean>;
|
|
6770
|
+
default: boolean;
|
|
6771
|
+
};
|
|
6604
6772
|
emptyStateSubtitle: {
|
|
6605
6773
|
type: import("vue").PropType<string>;
|
|
6606
6774
|
default: string;
|
|
6607
6775
|
};
|
|
6608
|
-
loadingRowCount: {
|
|
6609
|
-
type: import("vue").PropType<number>;
|
|
6610
|
-
default: number;
|
|
6611
|
-
};
|
|
6612
6776
|
emptyStateVariant: {
|
|
6613
6777
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6614
6778
|
default: any;
|
|
@@ -6660,10 +6824,10 @@ declare const _default: {
|
|
|
6660
6824
|
searchPlaceholder: string;
|
|
6661
6825
|
count: number;
|
|
6662
6826
|
showSearch: boolean;
|
|
6663
|
-
|
|
6827
|
+
loadingRowCount: number;
|
|
6664
6828
|
emptyStateTitle: string;
|
|
6829
|
+
isSticky: boolean;
|
|
6665
6830
|
emptyStateSubtitle: string;
|
|
6666
|
-
loadingRowCount: number;
|
|
6667
6831
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6668
6832
|
zIndexBase: number;
|
|
6669
6833
|
totalCount: number;
|
|
@@ -6717,22 +6881,22 @@ declare const _default: {
|
|
|
6717
6881
|
type: import("vue").PropType<boolean>;
|
|
6718
6882
|
default: boolean;
|
|
6719
6883
|
};
|
|
6720
|
-
|
|
6721
|
-
type: import("vue").PropType<
|
|
6722
|
-
default:
|
|
6884
|
+
loadingRowCount: {
|
|
6885
|
+
type: import("vue").PropType<number>;
|
|
6886
|
+
default: number;
|
|
6723
6887
|
};
|
|
6724
6888
|
emptyStateTitle: {
|
|
6725
6889
|
type: import("vue").PropType<string>;
|
|
6726
6890
|
default: string;
|
|
6727
6891
|
};
|
|
6892
|
+
isSticky: {
|
|
6893
|
+
type: import("vue").PropType<boolean>;
|
|
6894
|
+
default: boolean;
|
|
6895
|
+
};
|
|
6728
6896
|
emptyStateSubtitle: {
|
|
6729
6897
|
type: import("vue").PropType<string>;
|
|
6730
6898
|
default: string;
|
|
6731
6899
|
};
|
|
6732
|
-
loadingRowCount: {
|
|
6733
|
-
type: import("vue").PropType<number>;
|
|
6734
|
-
default: number;
|
|
6735
|
-
};
|
|
6736
6900
|
emptyStateVariant: {
|
|
6737
6901
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6738
6902
|
default: any;
|
|
@@ -6801,22 +6965,22 @@ declare const _default: {
|
|
|
6801
6965
|
type: import("vue").PropType<boolean>;
|
|
6802
6966
|
default: boolean;
|
|
6803
6967
|
};
|
|
6804
|
-
|
|
6805
|
-
type: import("vue").PropType<
|
|
6806
|
-
default:
|
|
6968
|
+
loadingRowCount: {
|
|
6969
|
+
type: import("vue").PropType<number>;
|
|
6970
|
+
default: number;
|
|
6807
6971
|
};
|
|
6808
6972
|
emptyStateTitle: {
|
|
6809
6973
|
type: import("vue").PropType<string>;
|
|
6810
6974
|
default: string;
|
|
6811
6975
|
};
|
|
6976
|
+
isSticky: {
|
|
6977
|
+
type: import("vue").PropType<boolean>;
|
|
6978
|
+
default: boolean;
|
|
6979
|
+
};
|
|
6812
6980
|
emptyStateSubtitle: {
|
|
6813
6981
|
type: import("vue").PropType<string>;
|
|
6814
6982
|
default: string;
|
|
6815
6983
|
};
|
|
6816
|
-
loadingRowCount: {
|
|
6817
|
-
type: import("vue").PropType<number>;
|
|
6818
|
-
default: number;
|
|
6819
|
-
};
|
|
6820
6984
|
emptyStateVariant: {
|
|
6821
6985
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6822
6986
|
default: any;
|
|
@@ -6868,10 +7032,10 @@ declare const _default: {
|
|
|
6868
7032
|
searchPlaceholder: string;
|
|
6869
7033
|
count: number;
|
|
6870
7034
|
showSearch: boolean;
|
|
6871
|
-
|
|
7035
|
+
loadingRowCount: number;
|
|
6872
7036
|
emptyStateTitle: string;
|
|
7037
|
+
isSticky: boolean;
|
|
6873
7038
|
emptyStateSubtitle: string;
|
|
6874
|
-
loadingRowCount: number;
|
|
6875
7039
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6876
7040
|
zIndexBase: number;
|
|
6877
7041
|
totalCount: number;
|
|
@@ -6882,12 +7046,25 @@ declare const _default: {
|
|
|
6882
7046
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
6883
7047
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6884
7048
|
$slots: Partial<Record<string, (_: {
|
|
7049
|
+
column: tableV3.Column;
|
|
7050
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
6885
7051
|
cell: any;
|
|
6886
7052
|
isLoading: any;
|
|
6887
7053
|
cellIndex: any;
|
|
6888
7054
|
row: any;
|
|
6889
7055
|
rowIndex: any;
|
|
6890
|
-
}) => any
|
|
7056
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7057
|
+
column: tableV3.Column;
|
|
7058
|
+
}) => any>> & {
|
|
7059
|
+
title?(_: {}): any;
|
|
7060
|
+
search?(_: {}): any;
|
|
7061
|
+
"table-header-actions"?(_: {}): any;
|
|
7062
|
+
"floating-row"?(_: {
|
|
7063
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7064
|
+
rowIndex: number;
|
|
7065
|
+
}): any;
|
|
7066
|
+
"empty-state"?(_: {}): any;
|
|
7067
|
+
};
|
|
6891
7068
|
})))[];
|
|
6892
7069
|
MultipleDataGrid: {
|
|
6893
7070
|
new (...args: any[]): {
|
|
@@ -6900,10 +7077,10 @@ declare const _default: {
|
|
|
6900
7077
|
searchPlaceholder: string;
|
|
6901
7078
|
count: number;
|
|
6902
7079
|
showSearch: boolean;
|
|
6903
|
-
|
|
7080
|
+
loadingRowCount: number;
|
|
6904
7081
|
emptyStateTitle: string;
|
|
7082
|
+
isSticky: boolean;
|
|
6905
7083
|
emptyStateSubtitle: string;
|
|
6906
|
-
loadingRowCount: number;
|
|
6907
7084
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6908
7085
|
zIndexBase: number;
|
|
6909
7086
|
totalCount: number;
|
|
@@ -6937,22 +7114,22 @@ declare const _default: {
|
|
|
6937
7114
|
type: import("vue").PropType<boolean>;
|
|
6938
7115
|
default: boolean;
|
|
6939
7116
|
};
|
|
6940
|
-
|
|
6941
|
-
type: import("vue").PropType<
|
|
6942
|
-
default:
|
|
7117
|
+
loadingRowCount: {
|
|
7118
|
+
type: import("vue").PropType<number>;
|
|
7119
|
+
default: number;
|
|
6943
7120
|
};
|
|
6944
7121
|
emptyStateTitle: {
|
|
6945
7122
|
type: import("vue").PropType<string>;
|
|
6946
7123
|
default: string;
|
|
6947
7124
|
};
|
|
7125
|
+
isSticky: {
|
|
7126
|
+
type: import("vue").PropType<boolean>;
|
|
7127
|
+
default: boolean;
|
|
7128
|
+
};
|
|
6948
7129
|
emptyStateSubtitle: {
|
|
6949
7130
|
type: import("vue").PropType<string>;
|
|
6950
7131
|
default: string;
|
|
6951
7132
|
};
|
|
6952
|
-
loadingRowCount: {
|
|
6953
|
-
type: import("vue").PropType<number>;
|
|
6954
|
-
default: number;
|
|
6955
|
-
};
|
|
6956
7133
|
emptyStateVariant: {
|
|
6957
7134
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6958
7135
|
default: any;
|
|
@@ -6992,7 +7169,7 @@ declare const _default: {
|
|
|
6992
7169
|
onOnScroll?: (scrollTop: number) => any;
|
|
6993
7170
|
onOnClearSearch?: () => any;
|
|
6994
7171
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
6995
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
7172
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
6996
7173
|
$attrs: {
|
|
6997
7174
|
[x: string]: unknown;
|
|
6998
7175
|
};
|
|
@@ -7031,22 +7208,22 @@ declare const _default: {
|
|
|
7031
7208
|
type: import("vue").PropType<boolean>;
|
|
7032
7209
|
default: boolean;
|
|
7033
7210
|
};
|
|
7034
|
-
|
|
7035
|
-
type: import("vue").PropType<
|
|
7036
|
-
default:
|
|
7211
|
+
loadingRowCount: {
|
|
7212
|
+
type: import("vue").PropType<number>;
|
|
7213
|
+
default: number;
|
|
7037
7214
|
};
|
|
7038
7215
|
emptyStateTitle: {
|
|
7039
7216
|
type: import("vue").PropType<string>;
|
|
7040
7217
|
default: string;
|
|
7041
7218
|
};
|
|
7219
|
+
isSticky: {
|
|
7220
|
+
type: import("vue").PropType<boolean>;
|
|
7221
|
+
default: boolean;
|
|
7222
|
+
};
|
|
7042
7223
|
emptyStateSubtitle: {
|
|
7043
7224
|
type: import("vue").PropType<string>;
|
|
7044
7225
|
default: string;
|
|
7045
7226
|
};
|
|
7046
|
-
loadingRowCount: {
|
|
7047
|
-
type: import("vue").PropType<number>;
|
|
7048
|
-
default: number;
|
|
7049
|
-
};
|
|
7050
7227
|
emptyStateVariant: {
|
|
7051
7228
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7052
7229
|
default: any;
|
|
@@ -7098,10 +7275,10 @@ declare const _default: {
|
|
|
7098
7275
|
searchPlaceholder: string;
|
|
7099
7276
|
count: number;
|
|
7100
7277
|
showSearch: boolean;
|
|
7101
|
-
|
|
7278
|
+
loadingRowCount: number;
|
|
7102
7279
|
emptyStateTitle: string;
|
|
7280
|
+
isSticky: boolean;
|
|
7103
7281
|
emptyStateSubtitle: string;
|
|
7104
|
-
loadingRowCount: number;
|
|
7105
7282
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7106
7283
|
zIndexBase: number;
|
|
7107
7284
|
totalCount: number;
|
|
@@ -7155,22 +7332,22 @@ declare const _default: {
|
|
|
7155
7332
|
type: import("vue").PropType<boolean>;
|
|
7156
7333
|
default: boolean;
|
|
7157
7334
|
};
|
|
7158
|
-
|
|
7159
|
-
type: import("vue").PropType<
|
|
7160
|
-
default:
|
|
7335
|
+
loadingRowCount: {
|
|
7336
|
+
type: import("vue").PropType<number>;
|
|
7337
|
+
default: number;
|
|
7161
7338
|
};
|
|
7162
7339
|
emptyStateTitle: {
|
|
7163
7340
|
type: import("vue").PropType<string>;
|
|
7164
7341
|
default: string;
|
|
7165
7342
|
};
|
|
7343
|
+
isSticky: {
|
|
7344
|
+
type: import("vue").PropType<boolean>;
|
|
7345
|
+
default: boolean;
|
|
7346
|
+
};
|
|
7166
7347
|
emptyStateSubtitle: {
|
|
7167
7348
|
type: import("vue").PropType<string>;
|
|
7168
7349
|
default: string;
|
|
7169
7350
|
};
|
|
7170
|
-
loadingRowCount: {
|
|
7171
|
-
type: import("vue").PropType<number>;
|
|
7172
|
-
default: number;
|
|
7173
|
-
};
|
|
7174
7351
|
emptyStateVariant: {
|
|
7175
7352
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7176
7353
|
default: any;
|
|
@@ -7239,22 +7416,22 @@ declare const _default: {
|
|
|
7239
7416
|
type: import("vue").PropType<boolean>;
|
|
7240
7417
|
default: boolean;
|
|
7241
7418
|
};
|
|
7242
|
-
|
|
7243
|
-
type: import("vue").PropType<
|
|
7244
|
-
default:
|
|
7419
|
+
loadingRowCount: {
|
|
7420
|
+
type: import("vue").PropType<number>;
|
|
7421
|
+
default: number;
|
|
7245
7422
|
};
|
|
7246
7423
|
emptyStateTitle: {
|
|
7247
7424
|
type: import("vue").PropType<string>;
|
|
7248
7425
|
default: string;
|
|
7249
7426
|
};
|
|
7427
|
+
isSticky: {
|
|
7428
|
+
type: import("vue").PropType<boolean>;
|
|
7429
|
+
default: boolean;
|
|
7430
|
+
};
|
|
7250
7431
|
emptyStateSubtitle: {
|
|
7251
7432
|
type: import("vue").PropType<string>;
|
|
7252
7433
|
default: string;
|
|
7253
7434
|
};
|
|
7254
|
-
loadingRowCount: {
|
|
7255
|
-
type: import("vue").PropType<number>;
|
|
7256
|
-
default: number;
|
|
7257
|
-
};
|
|
7258
7435
|
emptyStateVariant: {
|
|
7259
7436
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7260
7437
|
default: any;
|
|
@@ -7306,10 +7483,10 @@ declare const _default: {
|
|
|
7306
7483
|
searchPlaceholder: string;
|
|
7307
7484
|
count: number;
|
|
7308
7485
|
showSearch: boolean;
|
|
7309
|
-
|
|
7486
|
+
loadingRowCount: number;
|
|
7310
7487
|
emptyStateTitle: string;
|
|
7488
|
+
isSticky: boolean;
|
|
7311
7489
|
emptyStateSubtitle: string;
|
|
7312
|
-
loadingRowCount: number;
|
|
7313
7490
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7314
7491
|
zIndexBase: number;
|
|
7315
7492
|
totalCount: number;
|
|
@@ -7320,12 +7497,25 @@ declare const _default: {
|
|
|
7320
7497
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
7321
7498
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7322
7499
|
$slots: Partial<Record<string, (_: {
|
|
7500
|
+
column: tableV3.Column;
|
|
7501
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7323
7502
|
cell: any;
|
|
7324
7503
|
isLoading: any;
|
|
7325
7504
|
cellIndex: any;
|
|
7326
7505
|
row: any;
|
|
7327
7506
|
rowIndex: any;
|
|
7328
|
-
}) => any
|
|
7507
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7508
|
+
column: tableV3.Column;
|
|
7509
|
+
}) => any>> & {
|
|
7510
|
+
title?(_: {}): any;
|
|
7511
|
+
search?(_: {}): any;
|
|
7512
|
+
"table-header-actions"?(_: {}): any;
|
|
7513
|
+
"floating-row"?(_: {
|
|
7514
|
+
row: import("@vueuse/core").UseVirtualListItem<import("./components/table/common/Table.types").Row>;
|
|
7515
|
+
rowIndex: number;
|
|
7516
|
+
}): any;
|
|
7517
|
+
"empty-state"?(_: {}): any;
|
|
7518
|
+
};
|
|
7329
7519
|
});
|
|
7330
7520
|
Table: {
|
|
7331
7521
|
new (...args: any[]): {
|
|
@@ -7334,15 +7524,15 @@ declare const _default: {
|
|
|
7334
7524
|
$props: Partial<{
|
|
7335
7525
|
testId: string;
|
|
7336
7526
|
isLoading: boolean;
|
|
7527
|
+
loadingRowCount: number;
|
|
7528
|
+
emptyStateTitle: string;
|
|
7337
7529
|
isSticky: boolean;
|
|
7338
7530
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7339
7531
|
isStickyHeader: boolean;
|
|
7340
|
-
emptyStateTitle: string;
|
|
7341
7532
|
emptyStateSubtitle: string;
|
|
7342
7533
|
isInfiniteScroll: boolean;
|
|
7343
7534
|
infiniteScrollThreshold: number;
|
|
7344
7535
|
rowHeight: number | ((index: number) => number);
|
|
7345
|
-
loadingRowCount: number;
|
|
7346
7536
|
defaultScrollPosition: number;
|
|
7347
7537
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7348
7538
|
sort: {
|
|
@@ -7365,6 +7555,14 @@ declare const _default: {
|
|
|
7365
7555
|
type: import("vue").PropType<boolean>;
|
|
7366
7556
|
default: boolean;
|
|
7367
7557
|
};
|
|
7558
|
+
loadingRowCount: {
|
|
7559
|
+
type: import("vue").PropType<number>;
|
|
7560
|
+
default: number;
|
|
7561
|
+
};
|
|
7562
|
+
emptyStateTitle: {
|
|
7563
|
+
type: import("vue").PropType<string>;
|
|
7564
|
+
default: string;
|
|
7565
|
+
};
|
|
7368
7566
|
isSticky: {
|
|
7369
7567
|
type: import("vue").PropType<boolean>;
|
|
7370
7568
|
default: boolean;
|
|
@@ -7381,10 +7579,6 @@ declare const _default: {
|
|
|
7381
7579
|
type: import("vue").PropType<boolean>;
|
|
7382
7580
|
default: boolean;
|
|
7383
7581
|
};
|
|
7384
|
-
emptyStateTitle: {
|
|
7385
|
-
type: import("vue").PropType<string>;
|
|
7386
|
-
default: string;
|
|
7387
|
-
};
|
|
7388
7582
|
emptyStateSubtitle: {
|
|
7389
7583
|
type: import("vue").PropType<string>;
|
|
7390
7584
|
default: string;
|
|
@@ -7401,10 +7595,6 @@ declare const _default: {
|
|
|
7401
7595
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7402
7596
|
default: number;
|
|
7403
7597
|
};
|
|
7404
|
-
loadingRowCount: {
|
|
7405
|
-
type: import("vue").PropType<number>;
|
|
7406
|
-
default: number;
|
|
7407
|
-
};
|
|
7408
7598
|
defaultScrollPosition: {
|
|
7409
7599
|
type: import("vue").PropType<number>;
|
|
7410
7600
|
default: any;
|
|
@@ -7419,7 +7609,7 @@ declare const _default: {
|
|
|
7419
7609
|
cellIndex: number;
|
|
7420
7610
|
}) => any;
|
|
7421
7611
|
onLoadMore?: () => any;
|
|
7422
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "
|
|
7612
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
7423
7613
|
$attrs: {
|
|
7424
7614
|
[x: string]: unknown;
|
|
7425
7615
|
};
|
|
@@ -7459,6 +7649,14 @@ declare const _default: {
|
|
|
7459
7649
|
type: import("vue").PropType<boolean>;
|
|
7460
7650
|
default: boolean;
|
|
7461
7651
|
};
|
|
7652
|
+
loadingRowCount: {
|
|
7653
|
+
type: import("vue").PropType<number>;
|
|
7654
|
+
default: number;
|
|
7655
|
+
};
|
|
7656
|
+
emptyStateTitle: {
|
|
7657
|
+
type: import("vue").PropType<string>;
|
|
7658
|
+
default: string;
|
|
7659
|
+
};
|
|
7462
7660
|
isSticky: {
|
|
7463
7661
|
type: import("vue").PropType<boolean>;
|
|
7464
7662
|
default: boolean;
|
|
@@ -7475,10 +7673,6 @@ declare const _default: {
|
|
|
7475
7673
|
type: import("vue").PropType<boolean>;
|
|
7476
7674
|
default: boolean;
|
|
7477
7675
|
};
|
|
7478
|
-
emptyStateTitle: {
|
|
7479
|
-
type: import("vue").PropType<string>;
|
|
7480
|
-
default: string;
|
|
7481
|
-
};
|
|
7482
7676
|
emptyStateSubtitle: {
|
|
7483
7677
|
type: import("vue").PropType<string>;
|
|
7484
7678
|
default: string;
|
|
@@ -7495,10 +7689,6 @@ declare const _default: {
|
|
|
7495
7689
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7496
7690
|
default: number;
|
|
7497
7691
|
};
|
|
7498
|
-
loadingRowCount: {
|
|
7499
|
-
type: import("vue").PropType<number>;
|
|
7500
|
-
default: number;
|
|
7501
|
-
};
|
|
7502
7692
|
defaultScrollPosition: {
|
|
7503
7693
|
type: import("vue").PropType<number>;
|
|
7504
7694
|
default: any;
|
|
@@ -7526,15 +7716,15 @@ declare const _default: {
|
|
|
7526
7716
|
}, string, {
|
|
7527
7717
|
testId: string;
|
|
7528
7718
|
isLoading: boolean;
|
|
7719
|
+
loadingRowCount: number;
|
|
7720
|
+
emptyStateTitle: string;
|
|
7529
7721
|
isSticky: boolean;
|
|
7530
7722
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7531
7723
|
isStickyHeader: boolean;
|
|
7532
|
-
emptyStateTitle: string;
|
|
7533
7724
|
emptyStateSubtitle: string;
|
|
7534
7725
|
isInfiniteScroll: boolean;
|
|
7535
7726
|
infiniteScrollThreshold: number;
|
|
7536
7727
|
rowHeight: number | ((index: number) => number);
|
|
7537
|
-
loadingRowCount: number;
|
|
7538
7728
|
defaultScrollPosition: number;
|
|
7539
7729
|
}, {}, string> & {
|
|
7540
7730
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -7577,6 +7767,14 @@ declare const _default: {
|
|
|
7577
7767
|
type: import("vue").PropType<boolean>;
|
|
7578
7768
|
default: boolean;
|
|
7579
7769
|
};
|
|
7770
|
+
loadingRowCount: {
|
|
7771
|
+
type: import("vue").PropType<number>;
|
|
7772
|
+
default: number;
|
|
7773
|
+
};
|
|
7774
|
+
emptyStateTitle: {
|
|
7775
|
+
type: import("vue").PropType<string>;
|
|
7776
|
+
default: string;
|
|
7777
|
+
};
|
|
7580
7778
|
isSticky: {
|
|
7581
7779
|
type: import("vue").PropType<boolean>;
|
|
7582
7780
|
default: boolean;
|
|
@@ -7593,10 +7791,6 @@ declare const _default: {
|
|
|
7593
7791
|
type: import("vue").PropType<boolean>;
|
|
7594
7792
|
default: boolean;
|
|
7595
7793
|
};
|
|
7596
|
-
emptyStateTitle: {
|
|
7597
|
-
type: import("vue").PropType<string>;
|
|
7598
|
-
default: string;
|
|
7599
|
-
};
|
|
7600
7794
|
emptyStateSubtitle: {
|
|
7601
7795
|
type: import("vue").PropType<string>;
|
|
7602
7796
|
default: string;
|
|
@@ -7613,10 +7807,6 @@ declare const _default: {
|
|
|
7613
7807
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7614
7808
|
default: number;
|
|
7615
7809
|
};
|
|
7616
|
-
loadingRowCount: {
|
|
7617
|
-
type: import("vue").PropType<number>;
|
|
7618
|
-
default: number;
|
|
7619
|
-
};
|
|
7620
7810
|
defaultScrollPosition: {
|
|
7621
7811
|
type: import("vue").PropType<number>;
|
|
7622
7812
|
default: any;
|
|
@@ -7656,6 +7846,14 @@ declare const _default: {
|
|
|
7656
7846
|
type: import("vue").PropType<boolean>;
|
|
7657
7847
|
default: boolean;
|
|
7658
7848
|
};
|
|
7849
|
+
loadingRowCount: {
|
|
7850
|
+
type: import("vue").PropType<number>;
|
|
7851
|
+
default: number;
|
|
7852
|
+
};
|
|
7853
|
+
emptyStateTitle: {
|
|
7854
|
+
type: import("vue").PropType<string>;
|
|
7855
|
+
default: string;
|
|
7856
|
+
};
|
|
7659
7857
|
isSticky: {
|
|
7660
7858
|
type: import("vue").PropType<boolean>;
|
|
7661
7859
|
default: boolean;
|
|
@@ -7672,10 +7870,6 @@ declare const _default: {
|
|
|
7672
7870
|
type: import("vue").PropType<boolean>;
|
|
7673
7871
|
default: boolean;
|
|
7674
7872
|
};
|
|
7675
|
-
emptyStateTitle: {
|
|
7676
|
-
type: import("vue").PropType<string>;
|
|
7677
|
-
default: string;
|
|
7678
|
-
};
|
|
7679
7873
|
emptyStateSubtitle: {
|
|
7680
7874
|
type: import("vue").PropType<string>;
|
|
7681
7875
|
default: string;
|
|
@@ -7692,10 +7886,6 @@ declare const _default: {
|
|
|
7692
7886
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7693
7887
|
default: number;
|
|
7694
7888
|
};
|
|
7695
|
-
loadingRowCount: {
|
|
7696
|
-
type: import("vue").PropType<number>;
|
|
7697
|
-
default: number;
|
|
7698
|
-
};
|
|
7699
7889
|
defaultScrollPosition: {
|
|
7700
7890
|
type: import("vue").PropType<number>;
|
|
7701
7891
|
default: any;
|
|
@@ -7723,15 +7913,15 @@ declare const _default: {
|
|
|
7723
7913
|
}, string, {
|
|
7724
7914
|
testId: string;
|
|
7725
7915
|
isLoading: boolean;
|
|
7916
|
+
loadingRowCount: number;
|
|
7917
|
+
emptyStateTitle: string;
|
|
7726
7918
|
isSticky: boolean;
|
|
7727
7919
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7728
7920
|
isStickyHeader: boolean;
|
|
7729
|
-
emptyStateTitle: string;
|
|
7730
7921
|
emptyStateSubtitle: string;
|
|
7731
7922
|
isInfiniteScroll: boolean;
|
|
7732
7923
|
infiniteScrollThreshold: number;
|
|
7733
7924
|
rowHeight: number | ((index: number) => number);
|
|
7734
|
-
loadingRowCount: number;
|
|
7735
7925
|
defaultScrollPosition: number;
|
|
7736
7926
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7737
7927
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -7762,15 +7952,15 @@ declare const _default: {
|
|
|
7762
7952
|
$props: Partial<{
|
|
7763
7953
|
testId: string;
|
|
7764
7954
|
isLoading: boolean;
|
|
7955
|
+
loadingRowCount: number;
|
|
7956
|
+
emptyStateTitle: string;
|
|
7765
7957
|
isSticky: boolean;
|
|
7766
7958
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7767
7959
|
isStickyHeader: boolean;
|
|
7768
|
-
emptyStateTitle: string;
|
|
7769
7960
|
emptyStateSubtitle: string;
|
|
7770
7961
|
isInfiniteScroll: boolean;
|
|
7771
7962
|
infiniteScrollThreshold: number;
|
|
7772
7963
|
rowHeight: number | ((index: number) => number);
|
|
7773
|
-
loadingRowCount: number;
|
|
7774
7964
|
defaultScrollPosition: number;
|
|
7775
7965
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7776
7966
|
sort: {
|
|
@@ -7793,6 +7983,14 @@ declare const _default: {
|
|
|
7793
7983
|
type: import("vue").PropType<boolean>;
|
|
7794
7984
|
default: boolean;
|
|
7795
7985
|
};
|
|
7986
|
+
loadingRowCount: {
|
|
7987
|
+
type: import("vue").PropType<number>;
|
|
7988
|
+
default: number;
|
|
7989
|
+
};
|
|
7990
|
+
emptyStateTitle: {
|
|
7991
|
+
type: import("vue").PropType<string>;
|
|
7992
|
+
default: string;
|
|
7993
|
+
};
|
|
7796
7994
|
isSticky: {
|
|
7797
7995
|
type: import("vue").PropType<boolean>;
|
|
7798
7996
|
default: boolean;
|
|
@@ -7809,10 +8007,6 @@ declare const _default: {
|
|
|
7809
8007
|
type: import("vue").PropType<boolean>;
|
|
7810
8008
|
default: boolean;
|
|
7811
8009
|
};
|
|
7812
|
-
emptyStateTitle: {
|
|
7813
|
-
type: import("vue").PropType<string>;
|
|
7814
|
-
default: string;
|
|
7815
|
-
};
|
|
7816
8010
|
emptyStateSubtitle: {
|
|
7817
8011
|
type: import("vue").PropType<string>;
|
|
7818
8012
|
default: string;
|
|
@@ -7829,10 +8023,6 @@ declare const _default: {
|
|
|
7829
8023
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7830
8024
|
default: number;
|
|
7831
8025
|
};
|
|
7832
|
-
loadingRowCount: {
|
|
7833
|
-
type: import("vue").PropType<number>;
|
|
7834
|
-
default: number;
|
|
7835
|
-
};
|
|
7836
8026
|
defaultScrollPosition: {
|
|
7837
8027
|
type: import("vue").PropType<number>;
|
|
7838
8028
|
default: any;
|
|
@@ -7847,7 +8037,7 @@ declare const _default: {
|
|
|
7847
8037
|
cellIndex: number;
|
|
7848
8038
|
}) => any;
|
|
7849
8039
|
onLoadMore?: () => any;
|
|
7850
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "
|
|
8040
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
7851
8041
|
$attrs: {
|
|
7852
8042
|
[x: string]: unknown;
|
|
7853
8043
|
};
|
|
@@ -7887,6 +8077,14 @@ declare const _default: {
|
|
|
7887
8077
|
type: import("vue").PropType<boolean>;
|
|
7888
8078
|
default: boolean;
|
|
7889
8079
|
};
|
|
8080
|
+
loadingRowCount: {
|
|
8081
|
+
type: import("vue").PropType<number>;
|
|
8082
|
+
default: number;
|
|
8083
|
+
};
|
|
8084
|
+
emptyStateTitle: {
|
|
8085
|
+
type: import("vue").PropType<string>;
|
|
8086
|
+
default: string;
|
|
8087
|
+
};
|
|
7890
8088
|
isSticky: {
|
|
7891
8089
|
type: import("vue").PropType<boolean>;
|
|
7892
8090
|
default: boolean;
|
|
@@ -7903,10 +8101,6 @@ declare const _default: {
|
|
|
7903
8101
|
type: import("vue").PropType<boolean>;
|
|
7904
8102
|
default: boolean;
|
|
7905
8103
|
};
|
|
7906
|
-
emptyStateTitle: {
|
|
7907
|
-
type: import("vue").PropType<string>;
|
|
7908
|
-
default: string;
|
|
7909
|
-
};
|
|
7910
8104
|
emptyStateSubtitle: {
|
|
7911
8105
|
type: import("vue").PropType<string>;
|
|
7912
8106
|
default: string;
|
|
@@ -7923,10 +8117,6 @@ declare const _default: {
|
|
|
7923
8117
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7924
8118
|
default: number;
|
|
7925
8119
|
};
|
|
7926
|
-
loadingRowCount: {
|
|
7927
|
-
type: import("vue").PropType<number>;
|
|
7928
|
-
default: number;
|
|
7929
|
-
};
|
|
7930
8120
|
defaultScrollPosition: {
|
|
7931
8121
|
type: import("vue").PropType<number>;
|
|
7932
8122
|
default: any;
|
|
@@ -7954,15 +8144,15 @@ declare const _default: {
|
|
|
7954
8144
|
}, string, {
|
|
7955
8145
|
testId: string;
|
|
7956
8146
|
isLoading: boolean;
|
|
8147
|
+
loadingRowCount: number;
|
|
8148
|
+
emptyStateTitle: string;
|
|
7957
8149
|
isSticky: boolean;
|
|
7958
8150
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7959
8151
|
isStickyHeader: boolean;
|
|
7960
|
-
emptyStateTitle: string;
|
|
7961
8152
|
emptyStateSubtitle: string;
|
|
7962
8153
|
isInfiniteScroll: boolean;
|
|
7963
8154
|
infiniteScrollThreshold: number;
|
|
7964
8155
|
rowHeight: number | ((index: number) => number);
|
|
7965
|
-
loadingRowCount: number;
|
|
7966
8156
|
defaultScrollPosition: number;
|
|
7967
8157
|
}, {}, string> & {
|
|
7968
8158
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -8005,6 +8195,14 @@ declare const _default: {
|
|
|
8005
8195
|
type: import("vue").PropType<boolean>;
|
|
8006
8196
|
default: boolean;
|
|
8007
8197
|
};
|
|
8198
|
+
loadingRowCount: {
|
|
8199
|
+
type: import("vue").PropType<number>;
|
|
8200
|
+
default: number;
|
|
8201
|
+
};
|
|
8202
|
+
emptyStateTitle: {
|
|
8203
|
+
type: import("vue").PropType<string>;
|
|
8204
|
+
default: string;
|
|
8205
|
+
};
|
|
8008
8206
|
isSticky: {
|
|
8009
8207
|
type: import("vue").PropType<boolean>;
|
|
8010
8208
|
default: boolean;
|
|
@@ -8021,10 +8219,6 @@ declare const _default: {
|
|
|
8021
8219
|
type: import("vue").PropType<boolean>;
|
|
8022
8220
|
default: boolean;
|
|
8023
8221
|
};
|
|
8024
|
-
emptyStateTitle: {
|
|
8025
|
-
type: import("vue").PropType<string>;
|
|
8026
|
-
default: string;
|
|
8027
|
-
};
|
|
8028
8222
|
emptyStateSubtitle: {
|
|
8029
8223
|
type: import("vue").PropType<string>;
|
|
8030
8224
|
default: string;
|
|
@@ -8041,10 +8235,6 @@ declare const _default: {
|
|
|
8041
8235
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
8042
8236
|
default: number;
|
|
8043
8237
|
};
|
|
8044
|
-
loadingRowCount: {
|
|
8045
|
-
type: import("vue").PropType<number>;
|
|
8046
|
-
default: number;
|
|
8047
|
-
};
|
|
8048
8238
|
defaultScrollPosition: {
|
|
8049
8239
|
type: import("vue").PropType<number>;
|
|
8050
8240
|
default: any;
|
|
@@ -8084,6 +8274,14 @@ declare const _default: {
|
|
|
8084
8274
|
type: import("vue").PropType<boolean>;
|
|
8085
8275
|
default: boolean;
|
|
8086
8276
|
};
|
|
8277
|
+
loadingRowCount: {
|
|
8278
|
+
type: import("vue").PropType<number>;
|
|
8279
|
+
default: number;
|
|
8280
|
+
};
|
|
8281
|
+
emptyStateTitle: {
|
|
8282
|
+
type: import("vue").PropType<string>;
|
|
8283
|
+
default: string;
|
|
8284
|
+
};
|
|
8087
8285
|
isSticky: {
|
|
8088
8286
|
type: import("vue").PropType<boolean>;
|
|
8089
8287
|
default: boolean;
|
|
@@ -8100,10 +8298,6 @@ declare const _default: {
|
|
|
8100
8298
|
type: import("vue").PropType<boolean>;
|
|
8101
8299
|
default: boolean;
|
|
8102
8300
|
};
|
|
8103
|
-
emptyStateTitle: {
|
|
8104
|
-
type: import("vue").PropType<string>;
|
|
8105
|
-
default: string;
|
|
8106
|
-
};
|
|
8107
8301
|
emptyStateSubtitle: {
|
|
8108
8302
|
type: import("vue").PropType<string>;
|
|
8109
8303
|
default: string;
|
|
@@ -8120,10 +8314,6 @@ declare const _default: {
|
|
|
8120
8314
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
8121
8315
|
default: number;
|
|
8122
8316
|
};
|
|
8123
|
-
loadingRowCount: {
|
|
8124
|
-
type: import("vue").PropType<number>;
|
|
8125
|
-
default: number;
|
|
8126
|
-
};
|
|
8127
8317
|
defaultScrollPosition: {
|
|
8128
8318
|
type: import("vue").PropType<number>;
|
|
8129
8319
|
default: any;
|
|
@@ -8151,15 +8341,15 @@ declare const _default: {
|
|
|
8151
8341
|
}, string, {
|
|
8152
8342
|
testId: string;
|
|
8153
8343
|
isLoading: boolean;
|
|
8344
|
+
loadingRowCount: number;
|
|
8345
|
+
emptyStateTitle: string;
|
|
8154
8346
|
isSticky: boolean;
|
|
8155
8347
|
sections: import("./components/table/common/Table.types").Section[];
|
|
8156
8348
|
isStickyHeader: boolean;
|
|
8157
|
-
emptyStateTitle: string;
|
|
8158
8349
|
emptyStateSubtitle: string;
|
|
8159
8350
|
isInfiniteScroll: boolean;
|
|
8160
8351
|
infiniteScrollThreshold: number;
|
|
8161
8352
|
rowHeight: number | ((index: number) => number);
|
|
8162
|
-
loadingRowCount: number;
|
|
8163
8353
|
defaultScrollPosition: number;
|
|
8164
8354
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
8165
8355
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -8808,22 +8998,18 @@ declare const _default: {
|
|
|
8808
8998
|
$: import("vue").ComponentInternalInstance;
|
|
8809
8999
|
$data: {};
|
|
8810
9000
|
$props: Partial<{
|
|
8811
|
-
container: string;
|
|
8812
9001
|
header: string;
|
|
8813
9002
|
text: string;
|
|
8814
9003
|
theme: string;
|
|
8815
9004
|
disabled: boolean;
|
|
8816
9005
|
testId: string;
|
|
9006
|
+
container: string;
|
|
8817
9007
|
delay: number;
|
|
8818
9008
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8819
9009
|
forceShowWithTruncate: boolean;
|
|
8820
9010
|
placement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
8821
9011
|
distance: string | number;
|
|
8822
9012
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
8823
|
-
container: {
|
|
8824
|
-
type: import("vue").PropType<string>;
|
|
8825
|
-
default: string;
|
|
8826
|
-
};
|
|
8827
9013
|
header: {
|
|
8828
9014
|
type: import("vue").PropType<string>;
|
|
8829
9015
|
default: any;
|
|
@@ -8844,6 +9030,10 @@ declare const _default: {
|
|
|
8844
9030
|
type: import("vue").PropType<string>;
|
|
8845
9031
|
default: string;
|
|
8846
9032
|
};
|
|
9033
|
+
container: {
|
|
9034
|
+
type: import("vue").PropType<string>;
|
|
9035
|
+
default: string;
|
|
9036
|
+
};
|
|
8847
9037
|
delay: {
|
|
8848
9038
|
type: import("vue").PropType<number>;
|
|
8849
9039
|
default: number;
|
|
@@ -8866,7 +9056,7 @@ declare const _default: {
|
|
|
8866
9056
|
};
|
|
8867
9057
|
}>> & {
|
|
8868
9058
|
onShow?: () => any;
|
|
8869
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
9059
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
|
|
8870
9060
|
$attrs: {
|
|
8871
9061
|
[x: string]: unknown;
|
|
8872
9062
|
};
|
|
@@ -8881,10 +9071,6 @@ declare const _default: {
|
|
|
8881
9071
|
$emit: (event: "show") => void;
|
|
8882
9072
|
$el: any;
|
|
8883
9073
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8884
|
-
container: {
|
|
8885
|
-
type: import("vue").PropType<string>;
|
|
8886
|
-
default: string;
|
|
8887
|
-
};
|
|
8888
9074
|
header: {
|
|
8889
9075
|
type: import("vue").PropType<string>;
|
|
8890
9076
|
default: any;
|
|
@@ -8905,6 +9091,10 @@ declare const _default: {
|
|
|
8905
9091
|
type: import("vue").PropType<string>;
|
|
8906
9092
|
default: string;
|
|
8907
9093
|
};
|
|
9094
|
+
container: {
|
|
9095
|
+
type: import("vue").PropType<string>;
|
|
9096
|
+
default: string;
|
|
9097
|
+
};
|
|
8908
9098
|
delay: {
|
|
8909
9099
|
type: import("vue").PropType<number>;
|
|
8910
9100
|
default: number;
|
|
@@ -8930,12 +9120,12 @@ declare const _default: {
|
|
|
8930
9120
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8931
9121
|
show: () => void;
|
|
8932
9122
|
}, string, {
|
|
8933
|
-
container: string;
|
|
8934
9123
|
header: string;
|
|
8935
9124
|
text: string;
|
|
8936
9125
|
theme: string;
|
|
8937
9126
|
disabled: boolean;
|
|
8938
9127
|
testId: string;
|
|
9128
|
+
container: string;
|
|
8939
9129
|
delay: number;
|
|
8940
9130
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
8941
9131
|
forceShowWithTruncate: boolean;
|
|
@@ -8962,10 +9152,6 @@ declare const _default: {
|
|
|
8962
9152
|
$nextTick: typeof import("vue").nextTick;
|
|
8963
9153
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
8964
9154
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
8965
|
-
container: {
|
|
8966
|
-
type: import("vue").PropType<string>;
|
|
8967
|
-
default: string;
|
|
8968
|
-
};
|
|
8969
9155
|
header: {
|
|
8970
9156
|
type: import("vue").PropType<string>;
|
|
8971
9157
|
default: any;
|
|
@@ -8986,6 +9172,10 @@ declare const _default: {
|
|
|
8986
9172
|
type: import("vue").PropType<string>;
|
|
8987
9173
|
default: string;
|
|
8988
9174
|
};
|
|
9175
|
+
container: {
|
|
9176
|
+
type: import("vue").PropType<string>;
|
|
9177
|
+
default: string;
|
|
9178
|
+
};
|
|
8989
9179
|
delay: {
|
|
8990
9180
|
type: import("vue").PropType<number>;
|
|
8991
9181
|
default: number;
|
|
@@ -9013,10 +9203,6 @@ declare const _default: {
|
|
|
9013
9203
|
__isTeleport?: never;
|
|
9014
9204
|
__isSuspense?: never;
|
|
9015
9205
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9016
|
-
container: {
|
|
9017
|
-
type: import("vue").PropType<string>;
|
|
9018
|
-
default: string;
|
|
9019
|
-
};
|
|
9020
9206
|
header: {
|
|
9021
9207
|
type: import("vue").PropType<string>;
|
|
9022
9208
|
default: any;
|
|
@@ -9037,6 +9223,10 @@ declare const _default: {
|
|
|
9037
9223
|
type: import("vue").PropType<string>;
|
|
9038
9224
|
default: string;
|
|
9039
9225
|
};
|
|
9226
|
+
container: {
|
|
9227
|
+
type: import("vue").PropType<string>;
|
|
9228
|
+
default: string;
|
|
9229
|
+
};
|
|
9040
9230
|
delay: {
|
|
9041
9231
|
type: import("vue").PropType<number>;
|
|
9042
9232
|
default: number;
|
|
@@ -9062,12 +9252,12 @@ declare const _default: {
|
|
|
9062
9252
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9063
9253
|
show: () => void;
|
|
9064
9254
|
}, string, {
|
|
9065
|
-
container: string;
|
|
9066
9255
|
header: string;
|
|
9067
9256
|
text: string;
|
|
9068
9257
|
theme: string;
|
|
9069
9258
|
disabled: boolean;
|
|
9070
9259
|
testId: string;
|
|
9260
|
+
container: string;
|
|
9071
9261
|
delay: number;
|
|
9072
9262
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
9073
9263
|
forceShowWithTruncate: boolean;
|
|
@@ -9086,22 +9276,18 @@ declare const _default: {
|
|
|
9086
9276
|
$: import("vue").ComponentInternalInstance;
|
|
9087
9277
|
$data: {};
|
|
9088
9278
|
$props: Partial<{
|
|
9089
|
-
container: string;
|
|
9090
9279
|
header: string;
|
|
9091
9280
|
text: string;
|
|
9092
9281
|
theme: string;
|
|
9093
9282
|
disabled: boolean;
|
|
9094
9283
|
testId: string;
|
|
9284
|
+
container: string;
|
|
9095
9285
|
delay: number;
|
|
9096
9286
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
9097
9287
|
forceShowWithTruncate: boolean;
|
|
9098
9288
|
placement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
9099
9289
|
distance: string | number;
|
|
9100
9290
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
9101
|
-
container: {
|
|
9102
|
-
type: import("vue").PropType<string>;
|
|
9103
|
-
default: string;
|
|
9104
|
-
};
|
|
9105
9291
|
header: {
|
|
9106
9292
|
type: import("vue").PropType<string>;
|
|
9107
9293
|
default: any;
|
|
@@ -9122,6 +9308,10 @@ declare const _default: {
|
|
|
9122
9308
|
type: import("vue").PropType<string>;
|
|
9123
9309
|
default: string;
|
|
9124
9310
|
};
|
|
9311
|
+
container: {
|
|
9312
|
+
type: import("vue").PropType<string>;
|
|
9313
|
+
default: string;
|
|
9314
|
+
};
|
|
9125
9315
|
delay: {
|
|
9126
9316
|
type: import("vue").PropType<number>;
|
|
9127
9317
|
default: number;
|
|
@@ -9144,7 +9334,7 @@ declare const _default: {
|
|
|
9144
9334
|
};
|
|
9145
9335
|
}>> & {
|
|
9146
9336
|
onShow?: () => any;
|
|
9147
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
9337
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
|
|
9148
9338
|
$attrs: {
|
|
9149
9339
|
[x: string]: unknown;
|
|
9150
9340
|
};
|
|
@@ -9159,10 +9349,6 @@ declare const _default: {
|
|
|
9159
9349
|
$emit: (event: "show") => void;
|
|
9160
9350
|
$el: any;
|
|
9161
9351
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9162
|
-
container: {
|
|
9163
|
-
type: import("vue").PropType<string>;
|
|
9164
|
-
default: string;
|
|
9165
|
-
};
|
|
9166
9352
|
header: {
|
|
9167
9353
|
type: import("vue").PropType<string>;
|
|
9168
9354
|
default: any;
|
|
@@ -9183,6 +9369,10 @@ declare const _default: {
|
|
|
9183
9369
|
type: import("vue").PropType<string>;
|
|
9184
9370
|
default: string;
|
|
9185
9371
|
};
|
|
9372
|
+
container: {
|
|
9373
|
+
type: import("vue").PropType<string>;
|
|
9374
|
+
default: string;
|
|
9375
|
+
};
|
|
9186
9376
|
delay: {
|
|
9187
9377
|
type: import("vue").PropType<number>;
|
|
9188
9378
|
default: number;
|
|
@@ -9208,12 +9398,12 @@ declare const _default: {
|
|
|
9208
9398
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9209
9399
|
show: () => void;
|
|
9210
9400
|
}, string, {
|
|
9211
|
-
container: string;
|
|
9212
9401
|
header: string;
|
|
9213
9402
|
text: string;
|
|
9214
9403
|
theme: string;
|
|
9215
9404
|
disabled: boolean;
|
|
9216
9405
|
testId: string;
|
|
9406
|
+
container: string;
|
|
9217
9407
|
delay: number;
|
|
9218
9408
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
9219
9409
|
forceShowWithTruncate: boolean;
|
|
@@ -9240,10 +9430,6 @@ declare const _default: {
|
|
|
9240
9430
|
$nextTick: typeof import("vue").nextTick;
|
|
9241
9431
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
9242
9432
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
9243
|
-
container: {
|
|
9244
|
-
type: import("vue").PropType<string>;
|
|
9245
|
-
default: string;
|
|
9246
|
-
};
|
|
9247
9433
|
header: {
|
|
9248
9434
|
type: import("vue").PropType<string>;
|
|
9249
9435
|
default: any;
|
|
@@ -9264,6 +9450,10 @@ declare const _default: {
|
|
|
9264
9450
|
type: import("vue").PropType<string>;
|
|
9265
9451
|
default: string;
|
|
9266
9452
|
};
|
|
9453
|
+
container: {
|
|
9454
|
+
type: import("vue").PropType<string>;
|
|
9455
|
+
default: string;
|
|
9456
|
+
};
|
|
9267
9457
|
delay: {
|
|
9268
9458
|
type: import("vue").PropType<number>;
|
|
9269
9459
|
default: number;
|
|
@@ -9291,10 +9481,6 @@ declare const _default: {
|
|
|
9291
9481
|
__isTeleport?: never;
|
|
9292
9482
|
__isSuspense?: never;
|
|
9293
9483
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
9294
|
-
container: {
|
|
9295
|
-
type: import("vue").PropType<string>;
|
|
9296
|
-
default: string;
|
|
9297
|
-
};
|
|
9298
9484
|
header: {
|
|
9299
9485
|
type: import("vue").PropType<string>;
|
|
9300
9486
|
default: any;
|
|
@@ -9315,6 +9501,10 @@ declare const _default: {
|
|
|
9315
9501
|
type: import("vue").PropType<string>;
|
|
9316
9502
|
default: string;
|
|
9317
9503
|
};
|
|
9504
|
+
container: {
|
|
9505
|
+
type: import("vue").PropType<string>;
|
|
9506
|
+
default: string;
|
|
9507
|
+
};
|
|
9318
9508
|
delay: {
|
|
9319
9509
|
type: import("vue").PropType<number>;
|
|
9320
9510
|
default: number;
|
|
@@ -9340,12 +9530,12 @@ declare const _default: {
|
|
|
9340
9530
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9341
9531
|
show: () => void;
|
|
9342
9532
|
}, string, {
|
|
9343
|
-
container: string;
|
|
9344
9533
|
header: string;
|
|
9345
9534
|
text: string;
|
|
9346
9535
|
theme: string;
|
|
9347
9536
|
disabled: boolean;
|
|
9348
9537
|
testId: string;
|
|
9538
|
+
container: string;
|
|
9349
9539
|
delay: number;
|
|
9350
9540
|
triggers: ("touch" | "click" | "focus" | "hover")[];
|
|
9351
9541
|
forceShowWithTruncate: boolean;
|
|
@@ -14981,13 +15171,13 @@ declare const _default: {
|
|
|
14981
15171
|
$: import("vue").ComponentInternalInstance;
|
|
14982
15172
|
$data: {};
|
|
14983
15173
|
$props: Partial<{
|
|
14984
|
-
container: string;
|
|
14985
15174
|
theme: string;
|
|
14986
15175
|
disabled: boolean;
|
|
14987
15176
|
size: "small" | "medium" | "large";
|
|
14988
15177
|
flip: boolean;
|
|
14989
15178
|
mandatory: boolean;
|
|
14990
15179
|
testId: string;
|
|
15180
|
+
container: string;
|
|
14991
15181
|
placement: import("floating-vue").Placement;
|
|
14992
15182
|
distance: number;
|
|
14993
15183
|
popperClass: string;
|
|
@@ -15031,10 +15221,6 @@ declare const _default: {
|
|
|
15031
15221
|
disableVirtualScroll: boolean;
|
|
15032
15222
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
15033
15223
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
15034
|
-
container: {
|
|
15035
|
-
type: import("vue").PropType<string>;
|
|
15036
|
-
default: string;
|
|
15037
|
-
};
|
|
15038
15224
|
theme: {
|
|
15039
15225
|
type: import("vue").PropType<string>;
|
|
15040
15226
|
default: string;
|
|
@@ -15062,6 +15248,10 @@ declare const _default: {
|
|
|
15062
15248
|
type: import("vue").PropType<string>;
|
|
15063
15249
|
default: string;
|
|
15064
15250
|
};
|
|
15251
|
+
container: {
|
|
15252
|
+
type: import("vue").PropType<string>;
|
|
15253
|
+
default: string;
|
|
15254
|
+
};
|
|
15065
15255
|
placement: {
|
|
15066
15256
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
15067
15257
|
default: string;
|
|
@@ -15250,7 +15440,7 @@ declare const _default: {
|
|
|
15250
15440
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
15251
15441
|
onOpened?: () => any;
|
|
15252
15442
|
onClosed?: () => any;
|
|
15253
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
15443
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
15254
15444
|
$attrs: {
|
|
15255
15445
|
[x: string]: unknown;
|
|
15256
15446
|
};
|
|
@@ -15265,10 +15455,6 @@ declare const _default: {
|
|
|
15265
15455
|
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
15266
15456
|
$el: any;
|
|
15267
15457
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
15268
|
-
container: {
|
|
15269
|
-
type: import("vue").PropType<string>;
|
|
15270
|
-
default: string;
|
|
15271
|
-
};
|
|
15272
15458
|
theme: {
|
|
15273
15459
|
type: import("vue").PropType<string>;
|
|
15274
15460
|
default: string;
|
|
@@ -15296,6 +15482,10 @@ declare const _default: {
|
|
|
15296
15482
|
type: import("vue").PropType<string>;
|
|
15297
15483
|
default: string;
|
|
15298
15484
|
};
|
|
15485
|
+
container: {
|
|
15486
|
+
type: import("vue").PropType<string>;
|
|
15487
|
+
default: string;
|
|
15488
|
+
};
|
|
15299
15489
|
placement: {
|
|
15300
15490
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
15301
15491
|
default: string;
|
|
@@ -15497,13 +15687,13 @@ declare const _default: {
|
|
|
15497
15687
|
clear: () => void;
|
|
15498
15688
|
copyToClipboard: () => void;
|
|
15499
15689
|
}, string, {
|
|
15500
|
-
container: string;
|
|
15501
15690
|
theme: string;
|
|
15502
15691
|
disabled: boolean;
|
|
15503
15692
|
size: "small" | "medium" | "large";
|
|
15504
15693
|
flip: boolean;
|
|
15505
15694
|
mandatory: boolean;
|
|
15506
15695
|
testId: string;
|
|
15696
|
+
container: string;
|
|
15507
15697
|
placement: import("floating-vue").Placement;
|
|
15508
15698
|
distance: number;
|
|
15509
15699
|
popperClass: string;
|
|
@@ -15567,10 +15757,6 @@ declare const _default: {
|
|
|
15567
15757
|
$nextTick: typeof import("vue").nextTick;
|
|
15568
15758
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
15569
15759
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
15570
|
-
container: {
|
|
15571
|
-
type: import("vue").PropType<string>;
|
|
15572
|
-
default: string;
|
|
15573
|
-
};
|
|
15574
15760
|
theme: {
|
|
15575
15761
|
type: import("vue").PropType<string>;
|
|
15576
15762
|
default: string;
|
|
@@ -15598,6 +15784,10 @@ declare const _default: {
|
|
|
15598
15784
|
type: import("vue").PropType<string>;
|
|
15599
15785
|
default: string;
|
|
15600
15786
|
};
|
|
15787
|
+
container: {
|
|
15788
|
+
type: import("vue").PropType<string>;
|
|
15789
|
+
default: string;
|
|
15790
|
+
};
|
|
15601
15791
|
placement: {
|
|
15602
15792
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
15603
15793
|
default: string;
|
|
@@ -15794,10 +15984,6 @@ declare const _default: {
|
|
|
15794
15984
|
__isTeleport?: never;
|
|
15795
15985
|
__isSuspense?: never;
|
|
15796
15986
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
15797
|
-
container: {
|
|
15798
|
-
type: import("vue").PropType<string>;
|
|
15799
|
-
default: string;
|
|
15800
|
-
};
|
|
15801
15987
|
theme: {
|
|
15802
15988
|
type: import("vue").PropType<string>;
|
|
15803
15989
|
default: string;
|
|
@@ -15825,6 +16011,10 @@ declare const _default: {
|
|
|
15825
16011
|
type: import("vue").PropType<string>;
|
|
15826
16012
|
default: string;
|
|
15827
16013
|
};
|
|
16014
|
+
container: {
|
|
16015
|
+
type: import("vue").PropType<string>;
|
|
16016
|
+
default: string;
|
|
16017
|
+
};
|
|
15828
16018
|
placement: {
|
|
15829
16019
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
15830
16020
|
default: string;
|
|
@@ -16026,13 +16216,13 @@ declare const _default: {
|
|
|
16026
16216
|
clear: () => void;
|
|
16027
16217
|
copyToClipboard: () => void;
|
|
16028
16218
|
}, string, {
|
|
16029
|
-
container: string;
|
|
16030
16219
|
theme: string;
|
|
16031
16220
|
disabled: boolean;
|
|
16032
16221
|
size: "small" | "medium" | "large";
|
|
16033
16222
|
flip: boolean;
|
|
16034
16223
|
mandatory: boolean;
|
|
16035
16224
|
testId: string;
|
|
16225
|
+
container: string;
|
|
16036
16226
|
placement: import("floating-vue").Placement;
|
|
16037
16227
|
distance: number;
|
|
16038
16228
|
popperClass: string;
|
|
@@ -18895,13 +19085,13 @@ declare const _default: {
|
|
|
18895
19085
|
$: import("vue").ComponentInternalInstance;
|
|
18896
19086
|
$data: {};
|
|
18897
19087
|
$props: Partial<{
|
|
18898
|
-
container: string;
|
|
18899
19088
|
theme: string;
|
|
18900
19089
|
disabled: boolean;
|
|
18901
19090
|
size: "small" | "medium" | "large";
|
|
18902
19091
|
flip: boolean;
|
|
18903
19092
|
mandatory: boolean;
|
|
18904
19093
|
testId: string;
|
|
19094
|
+
container: string;
|
|
18905
19095
|
placement: import("floating-vue").Placement;
|
|
18906
19096
|
distance: number;
|
|
18907
19097
|
popperClass: string;
|
|
@@ -18945,10 +19135,6 @@ declare const _default: {
|
|
|
18945
19135
|
disableVirtualScroll: boolean;
|
|
18946
19136
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
18947
19137
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
18948
|
-
container: {
|
|
18949
|
-
type: import("vue").PropType<string>;
|
|
18950
|
-
default: string;
|
|
18951
|
-
};
|
|
18952
19138
|
theme: {
|
|
18953
19139
|
type: import("vue").PropType<string>;
|
|
18954
19140
|
default: string;
|
|
@@ -18976,6 +19162,10 @@ declare const _default: {
|
|
|
18976
19162
|
type: import("vue").PropType<string>;
|
|
18977
19163
|
default: string;
|
|
18978
19164
|
};
|
|
19165
|
+
container: {
|
|
19166
|
+
type: import("vue").PropType<string>;
|
|
19167
|
+
default: string;
|
|
19168
|
+
};
|
|
18979
19169
|
placement: {
|
|
18980
19170
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
18981
19171
|
default: string;
|
|
@@ -19164,7 +19354,7 @@ declare const _default: {
|
|
|
19164
19354
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
19165
19355
|
onOpened?: () => any;
|
|
19166
19356
|
onClosed?: () => any;
|
|
19167
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
19357
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
19168
19358
|
$attrs: {
|
|
19169
19359
|
[x: string]: unknown;
|
|
19170
19360
|
};
|
|
@@ -19179,10 +19369,6 @@ declare const _default: {
|
|
|
19179
19369
|
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
19180
19370
|
$el: any;
|
|
19181
19371
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
19182
|
-
container: {
|
|
19183
|
-
type: import("vue").PropType<string>;
|
|
19184
|
-
default: string;
|
|
19185
|
-
};
|
|
19186
19372
|
theme: {
|
|
19187
19373
|
type: import("vue").PropType<string>;
|
|
19188
19374
|
default: string;
|
|
@@ -19210,6 +19396,10 @@ declare const _default: {
|
|
|
19210
19396
|
type: import("vue").PropType<string>;
|
|
19211
19397
|
default: string;
|
|
19212
19398
|
};
|
|
19399
|
+
container: {
|
|
19400
|
+
type: import("vue").PropType<string>;
|
|
19401
|
+
default: string;
|
|
19402
|
+
};
|
|
19213
19403
|
placement: {
|
|
19214
19404
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
19215
19405
|
default: string;
|
|
@@ -19411,13 +19601,13 @@ declare const _default: {
|
|
|
19411
19601
|
clear: () => void;
|
|
19412
19602
|
copyToClipboard: () => void;
|
|
19413
19603
|
}, string, {
|
|
19414
|
-
container: string;
|
|
19415
19604
|
theme: string;
|
|
19416
19605
|
disabled: boolean;
|
|
19417
19606
|
size: "small" | "medium" | "large";
|
|
19418
19607
|
flip: boolean;
|
|
19419
19608
|
mandatory: boolean;
|
|
19420
19609
|
testId: string;
|
|
19610
|
+
container: string;
|
|
19421
19611
|
placement: import("floating-vue").Placement;
|
|
19422
19612
|
distance: number;
|
|
19423
19613
|
popperClass: string;
|
|
@@ -19481,10 +19671,6 @@ declare const _default: {
|
|
|
19481
19671
|
$nextTick: typeof import("vue").nextTick;
|
|
19482
19672
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
19483
19673
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
19484
|
-
container: {
|
|
19485
|
-
type: import("vue").PropType<string>;
|
|
19486
|
-
default: string;
|
|
19487
|
-
};
|
|
19488
19674
|
theme: {
|
|
19489
19675
|
type: import("vue").PropType<string>;
|
|
19490
19676
|
default: string;
|
|
@@ -19512,6 +19698,10 @@ declare const _default: {
|
|
|
19512
19698
|
type: import("vue").PropType<string>;
|
|
19513
19699
|
default: string;
|
|
19514
19700
|
};
|
|
19701
|
+
container: {
|
|
19702
|
+
type: import("vue").PropType<string>;
|
|
19703
|
+
default: string;
|
|
19704
|
+
};
|
|
19515
19705
|
placement: {
|
|
19516
19706
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
19517
19707
|
default: string;
|
|
@@ -19708,10 +19898,6 @@ declare const _default: {
|
|
|
19708
19898
|
__isTeleport?: never;
|
|
19709
19899
|
__isSuspense?: never;
|
|
19710
19900
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
19711
|
-
container: {
|
|
19712
|
-
type: import("vue").PropType<string>;
|
|
19713
|
-
default: string;
|
|
19714
|
-
};
|
|
19715
19901
|
theme: {
|
|
19716
19902
|
type: import("vue").PropType<string>;
|
|
19717
19903
|
default: string;
|
|
@@ -19739,6 +19925,10 @@ declare const _default: {
|
|
|
19739
19925
|
type: import("vue").PropType<string>;
|
|
19740
19926
|
default: string;
|
|
19741
19927
|
};
|
|
19928
|
+
container: {
|
|
19929
|
+
type: import("vue").PropType<string>;
|
|
19930
|
+
default: string;
|
|
19931
|
+
};
|
|
19742
19932
|
placement: {
|
|
19743
19933
|
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
19744
19934
|
default: string;
|
|
@@ -19940,13 +20130,13 @@ declare const _default: {
|
|
|
19940
20130
|
clear: () => void;
|
|
19941
20131
|
copyToClipboard: () => void;
|
|
19942
20132
|
}, string, {
|
|
19943
|
-
container: string;
|
|
19944
20133
|
theme: string;
|
|
19945
20134
|
disabled: boolean;
|
|
19946
20135
|
size: "small" | "medium" | "large";
|
|
19947
20136
|
flip: boolean;
|
|
19948
20137
|
mandatory: boolean;
|
|
19949
20138
|
testId: string;
|
|
20139
|
+
container: string;
|
|
19950
20140
|
placement: import("floating-vue").Placement;
|
|
19951
20141
|
distance: number;
|
|
19952
20142
|
popperClass: string;
|