@ironsource/shared-ui 2.1.7-test.4 → 2.1.7-test.5
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_5273976b_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_ef699ec5_lang.css +1 -0
- package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +1 -0
- package/IconV4.vue_vue_type_style_index_0_scoped_1eea7671_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_e9cd63b8_lang.css +1 -0
- package/TabsV4.vue_vue_type_style_index_0_scoped_f9433b11_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 +5 -5
- package/components/appHeader/AppHeader.vue.d.ts +1 -1
- package/components/appHeader/index.d.ts +9 -9
- package/components/icon/v4/IconV4.vue.d.ts +0 -5
- package/components/icon/v4/IconV4.vue.js +4 -4
- package/components/icon/v4/IconV4.vue2.js +26 -29
- package/components/icon/v4/index.d.ts +1 -20
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +1 -1
- package/components/sortableList/SortableList.vue.d.ts +25 -0
- package/components/sortableList/SortableList.vue.js +4 -4
- package/components/sortableList/SortableList.vue2.js +129 -89
- package/components/sortableList/index.d.ts +88 -2
- package/components/table/common/Table.common.js +71 -68
- 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 +12 -2
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +103 -100
- package/components/table/v4/DataGridRowsCounter.vue.js +2 -2
- package/components/table/v4/DataGridRowsCounter.vue2.js +14 -13
- 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 +126 -75
- package/components/table/v4/storyUtils.d.ts +4 -0
- 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/tabs/v4/TabsV4.vue.js +4 -4
- package/components/tabs/v4/TabsV4.vue2.js +37 -40
- package/design-foundation.stories/icons/iconsData.d.ts +2 -6
- package/index.d.ts +566 -292
- package/package.json +1 -1
- package/utils/formatNumbers.d.ts +4 -0
- package/utils/formatNumbers.js +11 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_63aaf3be_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_0ce71f73_lang.css +0 -1
- package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +0 -1
- package/IconV4.vue_vue_type_style_index_0_scoped_dc433d48_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/TabsV4.vue_vue_type_style_index_0_scoped_bab40cfe_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_b62ee695_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,14 +1675,26 @@ 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
|
}>> & {
|
|
1687
|
+
onSortableItemDragged?: (event: {
|
|
1688
|
+
id: string;
|
|
1689
|
+
newIndex: number;
|
|
1690
|
+
}) => any;
|
|
1672
1691
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1673
1692
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1674
1693
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
1675
1694
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
1676
1695
|
"onUpdate:search"?: (query: string) => any;
|
|
1677
1696
|
onClearSearch?: () => any;
|
|
1678
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
|
|
1697
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
|
|
1679
1698
|
$attrs: {
|
|
1680
1699
|
[x: string]: unknown;
|
|
1681
1700
|
};
|
|
@@ -1687,7 +1706,10 @@ declare const _default: {
|
|
|
1687
1706
|
}>;
|
|
1688
1707
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1689
1708
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1690
|
-
$emit: ((event: "
|
|
1709
|
+
$emit: ((event: "sortableItemDragged", event: {
|
|
1710
|
+
id: string;
|
|
1711
|
+
newIndex: number;
|
|
1712
|
+
}) => void) & ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
|
|
1691
1713
|
$el: any;
|
|
1692
1714
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1693
1715
|
search: {
|
|
@@ -1698,6 +1720,10 @@ declare const _default: {
|
|
|
1698
1720
|
type: import("vue").PropType<string>;
|
|
1699
1721
|
default: string;
|
|
1700
1722
|
};
|
|
1723
|
+
isLoading: {
|
|
1724
|
+
type: import("vue").PropType<boolean>;
|
|
1725
|
+
default: boolean;
|
|
1726
|
+
};
|
|
1701
1727
|
displayValue: {
|
|
1702
1728
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1703
1729
|
required: true;
|
|
@@ -1732,7 +1758,19 @@ declare const _default: {
|
|
|
1732
1758
|
type: import("vue").PropType<boolean>;
|
|
1733
1759
|
default: boolean;
|
|
1734
1760
|
};
|
|
1761
|
+
loadingRowCount: {
|
|
1762
|
+
type: import("vue").PropType<number>;
|
|
1763
|
+
default: number;
|
|
1764
|
+
};
|
|
1765
|
+
emptyStateTitle: {
|
|
1766
|
+
type: import("vue").PropType<string>;
|
|
1767
|
+
default: string;
|
|
1768
|
+
};
|
|
1735
1769
|
}>> & {
|
|
1770
|
+
onSortableItemDragged?: (event: {
|
|
1771
|
+
id: string;
|
|
1772
|
+
newIndex: number;
|
|
1773
|
+
}) => any;
|
|
1736
1774
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1737
1775
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1738
1776
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1740,6 +1778,10 @@ declare const _default: {
|
|
|
1740
1778
|
"onUpdate:search"?: (query: string) => any;
|
|
1741
1779
|
onClearSearch?: () => any;
|
|
1742
1780
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1781
|
+
sortableItemDragged: (event: {
|
|
1782
|
+
id: string;
|
|
1783
|
+
newIndex: number;
|
|
1784
|
+
}) => void;
|
|
1743
1785
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
1744
1786
|
"update:openId": (id: string | number) => void;
|
|
1745
1787
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -1749,6 +1791,7 @@ declare const _default: {
|
|
|
1749
1791
|
}, string, {
|
|
1750
1792
|
search: string;
|
|
1751
1793
|
testId: string;
|
|
1794
|
+
isLoading: boolean;
|
|
1752
1795
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1753
1796
|
searchPlaceholder: string;
|
|
1754
1797
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1757,6 +1800,8 @@ declare const _default: {
|
|
|
1757
1800
|
openId: string | number;
|
|
1758
1801
|
selectedId: string | number;
|
|
1759
1802
|
showSearch: boolean;
|
|
1803
|
+
loadingRowCount: number;
|
|
1804
|
+
emptyStateTitle: string;
|
|
1760
1805
|
}, {}, string> & {
|
|
1761
1806
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1762
1807
|
created?: (() => void) | (() => void)[];
|
|
@@ -1786,6 +1831,10 @@ declare const _default: {
|
|
|
1786
1831
|
type: import("vue").PropType<string>;
|
|
1787
1832
|
default: string;
|
|
1788
1833
|
};
|
|
1834
|
+
isLoading: {
|
|
1835
|
+
type: import("vue").PropType<boolean>;
|
|
1836
|
+
default: boolean;
|
|
1837
|
+
};
|
|
1789
1838
|
displayValue: {
|
|
1790
1839
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1791
1840
|
required: true;
|
|
@@ -1820,7 +1869,19 @@ declare const _default: {
|
|
|
1820
1869
|
type: import("vue").PropType<boolean>;
|
|
1821
1870
|
default: boolean;
|
|
1822
1871
|
};
|
|
1872
|
+
loadingRowCount: {
|
|
1873
|
+
type: import("vue").PropType<number>;
|
|
1874
|
+
default: number;
|
|
1875
|
+
};
|
|
1876
|
+
emptyStateTitle: {
|
|
1877
|
+
type: import("vue").PropType<string>;
|
|
1878
|
+
default: string;
|
|
1879
|
+
};
|
|
1823
1880
|
}>> & {
|
|
1881
|
+
onSortableItemDragged?: (event: {
|
|
1882
|
+
id: string;
|
|
1883
|
+
newIndex: number;
|
|
1884
|
+
}) => any;
|
|
1824
1885
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1825
1886
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1826
1887
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1840,6 +1901,10 @@ declare const _default: {
|
|
|
1840
1901
|
type: import("vue").PropType<string>;
|
|
1841
1902
|
default: string;
|
|
1842
1903
|
};
|
|
1904
|
+
isLoading: {
|
|
1905
|
+
type: import("vue").PropType<boolean>;
|
|
1906
|
+
default: boolean;
|
|
1907
|
+
};
|
|
1843
1908
|
displayValue: {
|
|
1844
1909
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1845
1910
|
required: true;
|
|
@@ -1874,7 +1939,19 @@ declare const _default: {
|
|
|
1874
1939
|
type: import("vue").PropType<boolean>;
|
|
1875
1940
|
default: boolean;
|
|
1876
1941
|
};
|
|
1942
|
+
loadingRowCount: {
|
|
1943
|
+
type: import("vue").PropType<number>;
|
|
1944
|
+
default: number;
|
|
1945
|
+
};
|
|
1946
|
+
emptyStateTitle: {
|
|
1947
|
+
type: import("vue").PropType<string>;
|
|
1948
|
+
default: string;
|
|
1949
|
+
};
|
|
1877
1950
|
}>> & {
|
|
1951
|
+
onSortableItemDragged?: (event: {
|
|
1952
|
+
id: string;
|
|
1953
|
+
newIndex: number;
|
|
1954
|
+
}) => any;
|
|
1878
1955
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1879
1956
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1880
1957
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1882,6 +1959,10 @@ declare const _default: {
|
|
|
1882
1959
|
"onUpdate:search"?: (query: string) => any;
|
|
1883
1960
|
onClearSearch?: () => any;
|
|
1884
1961
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1962
|
+
sortableItemDragged: (event: {
|
|
1963
|
+
id: string;
|
|
1964
|
+
newIndex: number;
|
|
1965
|
+
}) => void;
|
|
1885
1966
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
1886
1967
|
"update:openId": (id: string | number) => void;
|
|
1887
1968
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -1891,6 +1972,7 @@ declare const _default: {
|
|
|
1891
1972
|
}, string, {
|
|
1892
1973
|
search: string;
|
|
1893
1974
|
testId: string;
|
|
1975
|
+
isLoading: boolean;
|
|
1894
1976
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1895
1977
|
searchPlaceholder: string;
|
|
1896
1978
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1899,11 +1981,15 @@ declare const _default: {
|
|
|
1899
1981
|
openId: string | number;
|
|
1900
1982
|
selectedId: string | number;
|
|
1901
1983
|
showSearch: boolean;
|
|
1984
|
+
loadingRowCount: number;
|
|
1985
|
+
emptyStateTitle: string;
|
|
1902
1986
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1903
1987
|
$slots: {
|
|
1904
1988
|
menu?(_: {
|
|
1905
1989
|
item: import("./components/sortableList/SortableList.types").SortableListItem;
|
|
1906
1990
|
}): any;
|
|
1991
|
+
loader?(_: {}): any;
|
|
1992
|
+
"empty-state"?(_: {}): any;
|
|
1907
1993
|
};
|
|
1908
1994
|
});
|
|
1909
1995
|
SortableListTypes: () => ({
|
|
@@ -1913,6 +1999,7 @@ declare const _default: {
|
|
|
1913
1999
|
$props: Partial<{
|
|
1914
2000
|
search: string;
|
|
1915
2001
|
testId: string;
|
|
2002
|
+
isLoading: boolean;
|
|
1916
2003
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1917
2004
|
searchPlaceholder: string;
|
|
1918
2005
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1921,6 +2008,8 @@ declare const _default: {
|
|
|
1921
2008
|
openId: string | number;
|
|
1922
2009
|
selectedId: string | number;
|
|
1923
2010
|
showSearch: boolean;
|
|
2011
|
+
loadingRowCount: number;
|
|
2012
|
+
emptyStateTitle: string;
|
|
1924
2013
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1925
2014
|
search: {
|
|
1926
2015
|
type: import("vue").PropType<string>;
|
|
@@ -1930,6 +2019,10 @@ declare const _default: {
|
|
|
1930
2019
|
type: import("vue").PropType<string>;
|
|
1931
2020
|
default: string;
|
|
1932
2021
|
};
|
|
2022
|
+
isLoading: {
|
|
2023
|
+
type: import("vue").PropType<boolean>;
|
|
2024
|
+
default: boolean;
|
|
2025
|
+
};
|
|
1933
2026
|
displayValue: {
|
|
1934
2027
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1935
2028
|
required: true;
|
|
@@ -1964,14 +2057,26 @@ declare const _default: {
|
|
|
1964
2057
|
type: import("vue").PropType<boolean>;
|
|
1965
2058
|
default: boolean;
|
|
1966
2059
|
};
|
|
2060
|
+
loadingRowCount: {
|
|
2061
|
+
type: import("vue").PropType<number>;
|
|
2062
|
+
default: number;
|
|
2063
|
+
};
|
|
2064
|
+
emptyStateTitle: {
|
|
2065
|
+
type: import("vue").PropType<string>;
|
|
2066
|
+
default: string;
|
|
2067
|
+
};
|
|
1967
2068
|
}>> & {
|
|
2069
|
+
onSortableItemDragged?: (event: {
|
|
2070
|
+
id: string;
|
|
2071
|
+
newIndex: number;
|
|
2072
|
+
}) => any;
|
|
1968
2073
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1969
2074
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1970
2075
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
1971
2076
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
1972
2077
|
"onUpdate:search"?: (query: string) => any;
|
|
1973
2078
|
onClearSearch?: () => any;
|
|
1974
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
|
|
2079
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
|
|
1975
2080
|
$attrs: {
|
|
1976
2081
|
[x: string]: unknown;
|
|
1977
2082
|
};
|
|
@@ -1983,7 +2088,10 @@ declare const _default: {
|
|
|
1983
2088
|
}>;
|
|
1984
2089
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1985
2090
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1986
|
-
$emit: ((event: "
|
|
2091
|
+
$emit: ((event: "sortableItemDragged", event: {
|
|
2092
|
+
id: string;
|
|
2093
|
+
newIndex: number;
|
|
2094
|
+
}) => void) & ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
|
|
1987
2095
|
$el: any;
|
|
1988
2096
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1989
2097
|
search: {
|
|
@@ -1994,6 +2102,10 @@ declare const _default: {
|
|
|
1994
2102
|
type: import("vue").PropType<string>;
|
|
1995
2103
|
default: string;
|
|
1996
2104
|
};
|
|
2105
|
+
isLoading: {
|
|
2106
|
+
type: import("vue").PropType<boolean>;
|
|
2107
|
+
default: boolean;
|
|
2108
|
+
};
|
|
1997
2109
|
displayValue: {
|
|
1998
2110
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1999
2111
|
required: true;
|
|
@@ -2028,7 +2140,19 @@ declare const _default: {
|
|
|
2028
2140
|
type: import("vue").PropType<boolean>;
|
|
2029
2141
|
default: boolean;
|
|
2030
2142
|
};
|
|
2143
|
+
loadingRowCount: {
|
|
2144
|
+
type: import("vue").PropType<number>;
|
|
2145
|
+
default: number;
|
|
2146
|
+
};
|
|
2147
|
+
emptyStateTitle: {
|
|
2148
|
+
type: import("vue").PropType<string>;
|
|
2149
|
+
default: string;
|
|
2150
|
+
};
|
|
2031
2151
|
}>> & {
|
|
2152
|
+
onSortableItemDragged?: (event: {
|
|
2153
|
+
id: string;
|
|
2154
|
+
newIndex: number;
|
|
2155
|
+
}) => any;
|
|
2032
2156
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
2033
2157
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
2034
2158
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -2036,6 +2160,10 @@ declare const _default: {
|
|
|
2036
2160
|
"onUpdate:search"?: (query: string) => any;
|
|
2037
2161
|
onClearSearch?: () => any;
|
|
2038
2162
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2163
|
+
sortableItemDragged: (event: {
|
|
2164
|
+
id: string;
|
|
2165
|
+
newIndex: number;
|
|
2166
|
+
}) => void;
|
|
2039
2167
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
2040
2168
|
"update:openId": (id: string | number) => void;
|
|
2041
2169
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -2045,6 +2173,7 @@ declare const _default: {
|
|
|
2045
2173
|
}, string, {
|
|
2046
2174
|
search: string;
|
|
2047
2175
|
testId: string;
|
|
2176
|
+
isLoading: boolean;
|
|
2048
2177
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
2049
2178
|
searchPlaceholder: string;
|
|
2050
2179
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -2053,6 +2182,8 @@ declare const _default: {
|
|
|
2053
2182
|
openId: string | number;
|
|
2054
2183
|
selectedId: string | number;
|
|
2055
2184
|
showSearch: boolean;
|
|
2185
|
+
loadingRowCount: number;
|
|
2186
|
+
emptyStateTitle: string;
|
|
2056
2187
|
}, {}, string> & {
|
|
2057
2188
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2058
2189
|
created?: (() => void) | (() => void)[];
|
|
@@ -2082,6 +2213,10 @@ declare const _default: {
|
|
|
2082
2213
|
type: import("vue").PropType<string>;
|
|
2083
2214
|
default: string;
|
|
2084
2215
|
};
|
|
2216
|
+
isLoading: {
|
|
2217
|
+
type: import("vue").PropType<boolean>;
|
|
2218
|
+
default: boolean;
|
|
2219
|
+
};
|
|
2085
2220
|
displayValue: {
|
|
2086
2221
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
2087
2222
|
required: true;
|
|
@@ -2116,7 +2251,19 @@ declare const _default: {
|
|
|
2116
2251
|
type: import("vue").PropType<boolean>;
|
|
2117
2252
|
default: boolean;
|
|
2118
2253
|
};
|
|
2254
|
+
loadingRowCount: {
|
|
2255
|
+
type: import("vue").PropType<number>;
|
|
2256
|
+
default: number;
|
|
2257
|
+
};
|
|
2258
|
+
emptyStateTitle: {
|
|
2259
|
+
type: import("vue").PropType<string>;
|
|
2260
|
+
default: string;
|
|
2261
|
+
};
|
|
2119
2262
|
}>> & {
|
|
2263
|
+
onSortableItemDragged?: (event: {
|
|
2264
|
+
id: string;
|
|
2265
|
+
newIndex: number;
|
|
2266
|
+
}) => any;
|
|
2120
2267
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
2121
2268
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
2122
2269
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -2136,6 +2283,10 @@ declare const _default: {
|
|
|
2136
2283
|
type: import("vue").PropType<string>;
|
|
2137
2284
|
default: string;
|
|
2138
2285
|
};
|
|
2286
|
+
isLoading: {
|
|
2287
|
+
type: import("vue").PropType<boolean>;
|
|
2288
|
+
default: boolean;
|
|
2289
|
+
};
|
|
2139
2290
|
displayValue: {
|
|
2140
2291
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
2141
2292
|
required: true;
|
|
@@ -2170,7 +2321,19 @@ declare const _default: {
|
|
|
2170
2321
|
type: import("vue").PropType<boolean>;
|
|
2171
2322
|
default: boolean;
|
|
2172
2323
|
};
|
|
2324
|
+
loadingRowCount: {
|
|
2325
|
+
type: import("vue").PropType<number>;
|
|
2326
|
+
default: number;
|
|
2327
|
+
};
|
|
2328
|
+
emptyStateTitle: {
|
|
2329
|
+
type: import("vue").PropType<string>;
|
|
2330
|
+
default: string;
|
|
2331
|
+
};
|
|
2173
2332
|
}>> & {
|
|
2333
|
+
onSortableItemDragged?: (event: {
|
|
2334
|
+
id: string;
|
|
2335
|
+
newIndex: number;
|
|
2336
|
+
}) => any;
|
|
2174
2337
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
2175
2338
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
2176
2339
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -2178,6 +2341,10 @@ declare const _default: {
|
|
|
2178
2341
|
"onUpdate:search"?: (query: string) => any;
|
|
2179
2342
|
onClearSearch?: () => any;
|
|
2180
2343
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2344
|
+
sortableItemDragged: (event: {
|
|
2345
|
+
id: string;
|
|
2346
|
+
newIndex: number;
|
|
2347
|
+
}) => void;
|
|
2181
2348
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
2182
2349
|
"update:openId": (id: string | number) => void;
|
|
2183
2350
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -2187,6 +2354,7 @@ declare const _default: {
|
|
|
2187
2354
|
}, string, {
|
|
2188
2355
|
search: string;
|
|
2189
2356
|
testId: string;
|
|
2357
|
+
isLoading: boolean;
|
|
2190
2358
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
2191
2359
|
searchPlaceholder: string;
|
|
2192
2360
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -2195,11 +2363,15 @@ declare const _default: {
|
|
|
2195
2363
|
openId: string | number;
|
|
2196
2364
|
selectedId: string | number;
|
|
2197
2365
|
showSearch: boolean;
|
|
2366
|
+
loadingRowCount: number;
|
|
2367
|
+
emptyStateTitle: string;
|
|
2198
2368
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2199
2369
|
$slots: {
|
|
2200
2370
|
menu?(_: {
|
|
2201
2371
|
item: import("./components/sortableList/SortableList.types").SortableListItem;
|
|
2202
2372
|
}): any;
|
|
2373
|
+
loader?(_: {}): any;
|
|
2374
|
+
"empty-state"?(_: {}): any;
|
|
2203
2375
|
};
|
|
2204
2376
|
}))[];
|
|
2205
2377
|
StatusDot: import("vue").DefineComponent<{
|
|
@@ -2423,13 +2595,13 @@ declare const _default: {
|
|
|
2423
2595
|
required: true;
|
|
2424
2596
|
default: string;
|
|
2425
2597
|
};
|
|
2426
|
-
|
|
2427
|
-
type: import("vue").PropType<
|
|
2598
|
+
testId: {
|
|
2599
|
+
type: import("vue").PropType<string>;
|
|
2428
2600
|
required: true;
|
|
2429
2601
|
default: string;
|
|
2430
2602
|
};
|
|
2431
|
-
|
|
2432
|
-
type: import("vue").PropType<
|
|
2603
|
+
platform: {
|
|
2604
|
+
type: import("vue").PropType<"android" | "ios">;
|
|
2433
2605
|
required: true;
|
|
2434
2606
|
default: string;
|
|
2435
2607
|
};
|
|
@@ -2459,13 +2631,13 @@ declare const _default: {
|
|
|
2459
2631
|
required: true;
|
|
2460
2632
|
default: string;
|
|
2461
2633
|
};
|
|
2462
|
-
|
|
2463
|
-
type: import("vue").PropType<
|
|
2634
|
+
testId: {
|
|
2635
|
+
type: import("vue").PropType<string>;
|
|
2464
2636
|
required: true;
|
|
2465
2637
|
default: string;
|
|
2466
2638
|
};
|
|
2467
|
-
|
|
2468
|
-
type: import("vue").PropType<
|
|
2639
|
+
platform: {
|
|
2640
|
+
type: import("vue").PropType<"android" | "ios">;
|
|
2469
2641
|
required: true;
|
|
2470
2642
|
default: string;
|
|
2471
2643
|
};
|
|
@@ -2484,8 +2656,8 @@ declare const _default: {
|
|
|
2484
2656
|
name: string;
|
|
2485
2657
|
type: "small" | "normal";
|
|
2486
2658
|
image: string;
|
|
2487
|
-
platform: "android" | "ios";
|
|
2488
2659
|
testId: string;
|
|
2660
|
+
platform: "android" | "ios";
|
|
2489
2661
|
appKey: string;
|
|
2490
2662
|
showAbIcon: boolean;
|
|
2491
2663
|
}>;
|
|
@@ -2504,13 +2676,13 @@ declare const _default: {
|
|
|
2504
2676
|
required: true;
|
|
2505
2677
|
default: string;
|
|
2506
2678
|
};
|
|
2507
|
-
|
|
2508
|
-
type: import("vue").PropType<
|
|
2679
|
+
testId: {
|
|
2680
|
+
type: import("vue").PropType<string>;
|
|
2509
2681
|
required: true;
|
|
2510
2682
|
default: string;
|
|
2511
2683
|
};
|
|
2512
|
-
|
|
2513
|
-
type: import("vue").PropType<
|
|
2684
|
+
platform: {
|
|
2685
|
+
type: import("vue").PropType<"android" | "ios">;
|
|
2514
2686
|
required: true;
|
|
2515
2687
|
default: string;
|
|
2516
2688
|
};
|
|
@@ -2540,13 +2712,13 @@ declare const _default: {
|
|
|
2540
2712
|
required: true;
|
|
2541
2713
|
default: string;
|
|
2542
2714
|
};
|
|
2543
|
-
|
|
2544
|
-
type: import("vue").PropType<
|
|
2715
|
+
testId: {
|
|
2716
|
+
type: import("vue").PropType<string>;
|
|
2545
2717
|
required: true;
|
|
2546
2718
|
default: string;
|
|
2547
2719
|
};
|
|
2548
|
-
|
|
2549
|
-
type: import("vue").PropType<
|
|
2720
|
+
platform: {
|
|
2721
|
+
type: import("vue").PropType<"android" | "ios">;
|
|
2550
2722
|
required: true;
|
|
2551
2723
|
default: string;
|
|
2552
2724
|
};
|
|
@@ -2565,8 +2737,8 @@ declare const _default: {
|
|
|
2565
2737
|
name: string;
|
|
2566
2738
|
type: "small" | "normal";
|
|
2567
2739
|
image: string;
|
|
2568
|
-
platform: "android" | "ios";
|
|
2569
2740
|
testId: string;
|
|
2741
|
+
platform: "android" | "ios";
|
|
2570
2742
|
appKey: string;
|
|
2571
2743
|
showAbIcon: boolean;
|
|
2572
2744
|
}>[];
|
|
@@ -4601,6 +4773,7 @@ declare const _default: {
|
|
|
4601
4773
|
$props: Partial<{
|
|
4602
4774
|
type: "input" | "dropdown";
|
|
4603
4775
|
cell: string;
|
|
4776
|
+
saveOnClickOutside: boolean;
|
|
4604
4777
|
validateFunction: (value: unknown) => string | boolean;
|
|
4605
4778
|
isLoading: boolean;
|
|
4606
4779
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4614,6 +4787,10 @@ declare const _default: {
|
|
|
4614
4787
|
type: import("vue").PropType<string>;
|
|
4615
4788
|
default: string;
|
|
4616
4789
|
};
|
|
4790
|
+
saveOnClickOutside: {
|
|
4791
|
+
type: import("vue").PropType<boolean>;
|
|
4792
|
+
default: boolean;
|
|
4793
|
+
};
|
|
4617
4794
|
validateFunction: {
|
|
4618
4795
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4619
4796
|
default: () => false;
|
|
@@ -4634,7 +4811,7 @@ declare const _default: {
|
|
|
4634
4811
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
4635
4812
|
default: (cell: unknown) => unknown;
|
|
4636
4813
|
};
|
|
4637
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4814
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4638
4815
|
$attrs: {
|
|
4639
4816
|
[x: string]: unknown;
|
|
4640
4817
|
};
|
|
@@ -4658,6 +4835,10 @@ declare const _default: {
|
|
|
4658
4835
|
type: import("vue").PropType<string>;
|
|
4659
4836
|
default: string;
|
|
4660
4837
|
};
|
|
4838
|
+
saveOnClickOutside: {
|
|
4839
|
+
type: import("vue").PropType<boolean>;
|
|
4840
|
+
default: boolean;
|
|
4841
|
+
};
|
|
4661
4842
|
validateFunction: {
|
|
4662
4843
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4663
4844
|
default: () => false;
|
|
@@ -4681,6 +4862,7 @@ declare const _default: {
|
|
|
4681
4862
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4682
4863
|
type: "input" | "dropdown";
|
|
4683
4864
|
cell: string;
|
|
4865
|
+
saveOnClickOutside: boolean;
|
|
4684
4866
|
validateFunction: (value: unknown) => string | boolean;
|
|
4685
4867
|
isLoading: boolean;
|
|
4686
4868
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4714,6 +4896,10 @@ declare const _default: {
|
|
|
4714
4896
|
type: import("vue").PropType<string>;
|
|
4715
4897
|
default: string;
|
|
4716
4898
|
};
|
|
4899
|
+
saveOnClickOutside: {
|
|
4900
|
+
type: import("vue").PropType<boolean>;
|
|
4901
|
+
default: boolean;
|
|
4902
|
+
};
|
|
4717
4903
|
validateFunction: {
|
|
4718
4904
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4719
4905
|
default: () => false;
|
|
@@ -4748,6 +4934,10 @@ declare const _default: {
|
|
|
4748
4934
|
type: import("vue").PropType<string>;
|
|
4749
4935
|
default: string;
|
|
4750
4936
|
};
|
|
4937
|
+
saveOnClickOutside: {
|
|
4938
|
+
type: import("vue").PropType<boolean>;
|
|
4939
|
+
default: boolean;
|
|
4940
|
+
};
|
|
4751
4941
|
validateFunction: {
|
|
4752
4942
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4753
4943
|
default: () => false;
|
|
@@ -4771,6 +4961,7 @@ declare const _default: {
|
|
|
4771
4961
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4772
4962
|
type: "input" | "dropdown";
|
|
4773
4963
|
cell: string;
|
|
4964
|
+
saveOnClickOutside: boolean;
|
|
4774
4965
|
validateFunction: (value: unknown) => string | boolean;
|
|
4775
4966
|
isLoading: boolean;
|
|
4776
4967
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4787,6 +4978,7 @@ declare const _default: {
|
|
|
4787
4978
|
$props: Partial<{
|
|
4788
4979
|
type: "input" | "dropdown";
|
|
4789
4980
|
cell: string;
|
|
4981
|
+
saveOnClickOutside: boolean;
|
|
4790
4982
|
validateFunction: (value: unknown) => string | boolean;
|
|
4791
4983
|
isLoading: boolean;
|
|
4792
4984
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4800,6 +4992,10 @@ declare const _default: {
|
|
|
4800
4992
|
type: import("vue").PropType<string>;
|
|
4801
4993
|
default: string;
|
|
4802
4994
|
};
|
|
4995
|
+
saveOnClickOutside: {
|
|
4996
|
+
type: import("vue").PropType<boolean>;
|
|
4997
|
+
default: boolean;
|
|
4998
|
+
};
|
|
4803
4999
|
validateFunction: {
|
|
4804
5000
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4805
5001
|
default: () => false;
|
|
@@ -4820,7 +5016,7 @@ declare const _default: {
|
|
|
4820
5016
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
4821
5017
|
default: (cell: unknown) => unknown;
|
|
4822
5018
|
};
|
|
4823
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
5019
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4824
5020
|
$attrs: {
|
|
4825
5021
|
[x: string]: unknown;
|
|
4826
5022
|
};
|
|
@@ -4844,6 +5040,10 @@ declare const _default: {
|
|
|
4844
5040
|
type: import("vue").PropType<string>;
|
|
4845
5041
|
default: string;
|
|
4846
5042
|
};
|
|
5043
|
+
saveOnClickOutside: {
|
|
5044
|
+
type: import("vue").PropType<boolean>;
|
|
5045
|
+
default: boolean;
|
|
5046
|
+
};
|
|
4847
5047
|
validateFunction: {
|
|
4848
5048
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4849
5049
|
default: () => false;
|
|
@@ -4867,6 +5067,7 @@ declare const _default: {
|
|
|
4867
5067
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4868
5068
|
type: "input" | "dropdown";
|
|
4869
5069
|
cell: string;
|
|
5070
|
+
saveOnClickOutside: boolean;
|
|
4870
5071
|
validateFunction: (value: unknown) => string | boolean;
|
|
4871
5072
|
isLoading: boolean;
|
|
4872
5073
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4900,6 +5101,10 @@ declare const _default: {
|
|
|
4900
5101
|
type: import("vue").PropType<string>;
|
|
4901
5102
|
default: string;
|
|
4902
5103
|
};
|
|
5104
|
+
saveOnClickOutside: {
|
|
5105
|
+
type: import("vue").PropType<boolean>;
|
|
5106
|
+
default: boolean;
|
|
5107
|
+
};
|
|
4903
5108
|
validateFunction: {
|
|
4904
5109
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4905
5110
|
default: () => false;
|
|
@@ -4934,6 +5139,10 @@ declare const _default: {
|
|
|
4934
5139
|
type: import("vue").PropType<string>;
|
|
4935
5140
|
default: string;
|
|
4936
5141
|
};
|
|
5142
|
+
saveOnClickOutside: {
|
|
5143
|
+
type: import("vue").PropType<boolean>;
|
|
5144
|
+
default: boolean;
|
|
5145
|
+
};
|
|
4937
5146
|
validateFunction: {
|
|
4938
5147
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4939
5148
|
default: () => false;
|
|
@@ -4957,6 +5166,7 @@ declare const _default: {
|
|
|
4957
5166
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4958
5167
|
type: "input" | "dropdown";
|
|
4959
5168
|
cell: string;
|
|
5169
|
+
saveOnClickOutside: boolean;
|
|
4960
5170
|
validateFunction: (value: unknown) => string | boolean;
|
|
4961
5171
|
isLoading: boolean;
|
|
4962
5172
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4982,20 +5192,22 @@ declare const _default: {
|
|
|
4982
5192
|
searchPlaceholder: string;
|
|
4983
5193
|
selection: unknown[];
|
|
4984
5194
|
showSearch: boolean;
|
|
5195
|
+
loadingRowCount: number;
|
|
5196
|
+
emptyStateTitle: string;
|
|
4985
5197
|
isSticky: boolean;
|
|
4986
5198
|
sections: import("./components/table/common/Table.types").Section[];
|
|
4987
5199
|
isStickyHeader: boolean;
|
|
4988
|
-
emptyStateTitle: string;
|
|
4989
5200
|
emptyStateSubtitle: string;
|
|
4990
5201
|
isInfiniteScroll: boolean;
|
|
4991
5202
|
infiniteScrollThreshold: number;
|
|
4992
5203
|
rowHeight: number | ((index: number) => number);
|
|
4993
|
-
loadingRowCount: number;
|
|
4994
5204
|
defaultScrollPosition: number;
|
|
4995
5205
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
4996
5206
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
4997
5207
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
4998
5208
|
zIndexBase: number;
|
|
5209
|
+
rowCustomClassKey: string;
|
|
5210
|
+
rowDataKey: string;
|
|
4999
5211
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
5000
5212
|
sort: {
|
|
5001
5213
|
type: import("vue").PropType<tableV3.Sort>;
|
|
@@ -5037,6 +5249,14 @@ declare const _default: {
|
|
|
5037
5249
|
type: import("vue").PropType<boolean>;
|
|
5038
5250
|
default: boolean;
|
|
5039
5251
|
};
|
|
5252
|
+
loadingRowCount: {
|
|
5253
|
+
type: import("vue").PropType<number>;
|
|
5254
|
+
default: number;
|
|
5255
|
+
};
|
|
5256
|
+
emptyStateTitle: {
|
|
5257
|
+
type: import("vue").PropType<string>;
|
|
5258
|
+
default: string;
|
|
5259
|
+
};
|
|
5040
5260
|
isSticky: {
|
|
5041
5261
|
type: import("vue").PropType<boolean>;
|
|
5042
5262
|
default: boolean;
|
|
@@ -5053,10 +5273,6 @@ declare const _default: {
|
|
|
5053
5273
|
type: import("vue").PropType<boolean>;
|
|
5054
5274
|
default: boolean;
|
|
5055
5275
|
};
|
|
5056
|
-
emptyStateTitle: {
|
|
5057
|
-
type: import("vue").PropType<string>;
|
|
5058
|
-
default: string;
|
|
5059
|
-
};
|
|
5060
5276
|
emptyStateSubtitle: {
|
|
5061
5277
|
type: import("vue").PropType<string>;
|
|
5062
5278
|
default: string;
|
|
@@ -5073,10 +5289,6 @@ declare const _default: {
|
|
|
5073
5289
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5074
5290
|
default: number;
|
|
5075
5291
|
};
|
|
5076
|
-
loadingRowCount: {
|
|
5077
|
-
type: import("vue").PropType<number>;
|
|
5078
|
-
default: number;
|
|
5079
|
-
};
|
|
5080
5292
|
defaultScrollPosition: {
|
|
5081
5293
|
type: import("vue").PropType<number>;
|
|
5082
5294
|
default: any;
|
|
@@ -5097,6 +5309,14 @@ declare const _default: {
|
|
|
5097
5309
|
type: import("vue").PropType<number>;
|
|
5098
5310
|
default: number;
|
|
5099
5311
|
};
|
|
5312
|
+
rowCustomClassKey: {
|
|
5313
|
+
type: import("vue").PropType<string>;
|
|
5314
|
+
default: string;
|
|
5315
|
+
};
|
|
5316
|
+
rowDataKey: {
|
|
5317
|
+
type: import("vue").PropType<string>;
|
|
5318
|
+
default: string;
|
|
5319
|
+
};
|
|
5100
5320
|
}>> & {
|
|
5101
5321
|
onSelectAll?: (value: boolean) => any;
|
|
5102
5322
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5113,7 +5333,7 @@ declare const _default: {
|
|
|
5113
5333
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5114
5334
|
onSelectRow?: (value: boolean) => any;
|
|
5115
5335
|
onClickRow?: (rowIndex: number) => any;
|
|
5116
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
5336
|
+
} & 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" | "rowCustomClassKey" | "rowDataKey">;
|
|
5117
5337
|
$attrs: {
|
|
5118
5338
|
[x: string]: unknown;
|
|
5119
5339
|
};
|
|
@@ -5173,6 +5393,14 @@ declare const _default: {
|
|
|
5173
5393
|
type: import("vue").PropType<boolean>;
|
|
5174
5394
|
default: boolean;
|
|
5175
5395
|
};
|
|
5396
|
+
loadingRowCount: {
|
|
5397
|
+
type: import("vue").PropType<number>;
|
|
5398
|
+
default: number;
|
|
5399
|
+
};
|
|
5400
|
+
emptyStateTitle: {
|
|
5401
|
+
type: import("vue").PropType<string>;
|
|
5402
|
+
default: string;
|
|
5403
|
+
};
|
|
5176
5404
|
isSticky: {
|
|
5177
5405
|
type: import("vue").PropType<boolean>;
|
|
5178
5406
|
default: boolean;
|
|
@@ -5189,10 +5417,6 @@ declare const _default: {
|
|
|
5189
5417
|
type: import("vue").PropType<boolean>;
|
|
5190
5418
|
default: boolean;
|
|
5191
5419
|
};
|
|
5192
|
-
emptyStateTitle: {
|
|
5193
|
-
type: import("vue").PropType<string>;
|
|
5194
|
-
default: string;
|
|
5195
|
-
};
|
|
5196
5420
|
emptyStateSubtitle: {
|
|
5197
5421
|
type: import("vue").PropType<string>;
|
|
5198
5422
|
default: string;
|
|
@@ -5209,10 +5433,6 @@ declare const _default: {
|
|
|
5209
5433
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5210
5434
|
default: number;
|
|
5211
5435
|
};
|
|
5212
|
-
loadingRowCount: {
|
|
5213
|
-
type: import("vue").PropType<number>;
|
|
5214
|
-
default: number;
|
|
5215
|
-
};
|
|
5216
5436
|
defaultScrollPosition: {
|
|
5217
5437
|
type: import("vue").PropType<number>;
|
|
5218
5438
|
default: any;
|
|
@@ -5233,6 +5453,14 @@ declare const _default: {
|
|
|
5233
5453
|
type: import("vue").PropType<number>;
|
|
5234
5454
|
default: number;
|
|
5235
5455
|
};
|
|
5456
|
+
rowCustomClassKey: {
|
|
5457
|
+
type: import("vue").PropType<string>;
|
|
5458
|
+
default: string;
|
|
5459
|
+
};
|
|
5460
|
+
rowDataKey: {
|
|
5461
|
+
type: import("vue").PropType<string>;
|
|
5462
|
+
default: string;
|
|
5463
|
+
};
|
|
5236
5464
|
}>> & {
|
|
5237
5465
|
onSelectAll?: (value: boolean) => any;
|
|
5238
5466
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5277,20 +5505,22 @@ declare const _default: {
|
|
|
5277
5505
|
searchPlaceholder: string;
|
|
5278
5506
|
selection: unknown[];
|
|
5279
5507
|
showSearch: boolean;
|
|
5508
|
+
loadingRowCount: number;
|
|
5509
|
+
emptyStateTitle: string;
|
|
5280
5510
|
isSticky: boolean;
|
|
5281
5511
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5282
5512
|
isStickyHeader: boolean;
|
|
5283
|
-
emptyStateTitle: string;
|
|
5284
5513
|
emptyStateSubtitle: string;
|
|
5285
5514
|
isInfiniteScroll: boolean;
|
|
5286
5515
|
infiniteScrollThreshold: number;
|
|
5287
5516
|
rowHeight: number | ((index: number) => number);
|
|
5288
|
-
loadingRowCount: number;
|
|
5289
5517
|
defaultScrollPosition: number;
|
|
5290
5518
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5291
5519
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5292
5520
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5293
5521
|
zIndexBase: number;
|
|
5522
|
+
rowCustomClassKey: string;
|
|
5523
|
+
rowDataKey: string;
|
|
5294
5524
|
}, {}, string> & {
|
|
5295
5525
|
beforeCreate?: (() => void) | (() => void)[];
|
|
5296
5526
|
created?: (() => void) | (() => void)[];
|
|
@@ -5352,6 +5582,14 @@ declare const _default: {
|
|
|
5352
5582
|
type: import("vue").PropType<boolean>;
|
|
5353
5583
|
default: boolean;
|
|
5354
5584
|
};
|
|
5585
|
+
loadingRowCount: {
|
|
5586
|
+
type: import("vue").PropType<number>;
|
|
5587
|
+
default: number;
|
|
5588
|
+
};
|
|
5589
|
+
emptyStateTitle: {
|
|
5590
|
+
type: import("vue").PropType<string>;
|
|
5591
|
+
default: string;
|
|
5592
|
+
};
|
|
5355
5593
|
isSticky: {
|
|
5356
5594
|
type: import("vue").PropType<boolean>;
|
|
5357
5595
|
default: boolean;
|
|
@@ -5368,10 +5606,6 @@ declare const _default: {
|
|
|
5368
5606
|
type: import("vue").PropType<boolean>;
|
|
5369
5607
|
default: boolean;
|
|
5370
5608
|
};
|
|
5371
|
-
emptyStateTitle: {
|
|
5372
|
-
type: import("vue").PropType<string>;
|
|
5373
|
-
default: string;
|
|
5374
|
-
};
|
|
5375
5609
|
emptyStateSubtitle: {
|
|
5376
5610
|
type: import("vue").PropType<string>;
|
|
5377
5611
|
default: string;
|
|
@@ -5388,10 +5622,6 @@ declare const _default: {
|
|
|
5388
5622
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5389
5623
|
default: number;
|
|
5390
5624
|
};
|
|
5391
|
-
loadingRowCount: {
|
|
5392
|
-
type: import("vue").PropType<number>;
|
|
5393
|
-
default: number;
|
|
5394
|
-
};
|
|
5395
5625
|
defaultScrollPosition: {
|
|
5396
5626
|
type: import("vue").PropType<number>;
|
|
5397
5627
|
default: any;
|
|
@@ -5412,6 +5642,14 @@ declare const _default: {
|
|
|
5412
5642
|
type: import("vue").PropType<number>;
|
|
5413
5643
|
default: number;
|
|
5414
5644
|
};
|
|
5645
|
+
rowCustomClassKey: {
|
|
5646
|
+
type: import("vue").PropType<string>;
|
|
5647
|
+
default: string;
|
|
5648
|
+
};
|
|
5649
|
+
rowDataKey: {
|
|
5650
|
+
type: import("vue").PropType<string>;
|
|
5651
|
+
default: string;
|
|
5652
|
+
};
|
|
5415
5653
|
}>> & {
|
|
5416
5654
|
onSelectAll?: (value: boolean) => any;
|
|
5417
5655
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5475,6 +5713,14 @@ declare const _default: {
|
|
|
5475
5713
|
type: import("vue").PropType<boolean>;
|
|
5476
5714
|
default: boolean;
|
|
5477
5715
|
};
|
|
5716
|
+
loadingRowCount: {
|
|
5717
|
+
type: import("vue").PropType<number>;
|
|
5718
|
+
default: number;
|
|
5719
|
+
};
|
|
5720
|
+
emptyStateTitle: {
|
|
5721
|
+
type: import("vue").PropType<string>;
|
|
5722
|
+
default: string;
|
|
5723
|
+
};
|
|
5478
5724
|
isSticky: {
|
|
5479
5725
|
type: import("vue").PropType<boolean>;
|
|
5480
5726
|
default: boolean;
|
|
@@ -5491,10 +5737,6 @@ declare const _default: {
|
|
|
5491
5737
|
type: import("vue").PropType<boolean>;
|
|
5492
5738
|
default: boolean;
|
|
5493
5739
|
};
|
|
5494
|
-
emptyStateTitle: {
|
|
5495
|
-
type: import("vue").PropType<string>;
|
|
5496
|
-
default: string;
|
|
5497
|
-
};
|
|
5498
5740
|
emptyStateSubtitle: {
|
|
5499
5741
|
type: import("vue").PropType<string>;
|
|
5500
5742
|
default: string;
|
|
@@ -5511,10 +5753,6 @@ declare const _default: {
|
|
|
5511
5753
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5512
5754
|
default: number;
|
|
5513
5755
|
};
|
|
5514
|
-
loadingRowCount: {
|
|
5515
|
-
type: import("vue").PropType<number>;
|
|
5516
|
-
default: number;
|
|
5517
|
-
};
|
|
5518
5756
|
defaultScrollPosition: {
|
|
5519
5757
|
type: import("vue").PropType<number>;
|
|
5520
5758
|
default: any;
|
|
@@ -5535,6 +5773,14 @@ declare const _default: {
|
|
|
5535
5773
|
type: import("vue").PropType<number>;
|
|
5536
5774
|
default: number;
|
|
5537
5775
|
};
|
|
5776
|
+
rowCustomClassKey: {
|
|
5777
|
+
type: import("vue").PropType<string>;
|
|
5778
|
+
default: string;
|
|
5779
|
+
};
|
|
5780
|
+
rowDataKey: {
|
|
5781
|
+
type: import("vue").PropType<string>;
|
|
5782
|
+
default: string;
|
|
5783
|
+
};
|
|
5538
5784
|
}>> & {
|
|
5539
5785
|
onSelectAll?: (value: boolean) => any;
|
|
5540
5786
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5579,20 +5825,22 @@ declare const _default: {
|
|
|
5579
5825
|
searchPlaceholder: string;
|
|
5580
5826
|
selection: unknown[];
|
|
5581
5827
|
showSearch: boolean;
|
|
5828
|
+
loadingRowCount: number;
|
|
5829
|
+
emptyStateTitle: string;
|
|
5582
5830
|
isSticky: boolean;
|
|
5583
5831
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5584
5832
|
isStickyHeader: boolean;
|
|
5585
|
-
emptyStateTitle: string;
|
|
5586
5833
|
emptyStateSubtitle: string;
|
|
5587
5834
|
isInfiniteScroll: boolean;
|
|
5588
5835
|
infiniteScrollThreshold: number;
|
|
5589
5836
|
rowHeight: number | ((index: number) => number);
|
|
5590
|
-
loadingRowCount: number;
|
|
5591
5837
|
defaultScrollPosition: number;
|
|
5592
5838
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5593
5839
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5594
5840
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5595
5841
|
zIndexBase: number;
|
|
5842
|
+
rowCustomClassKey: string;
|
|
5843
|
+
rowDataKey: string;
|
|
5596
5844
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
5597
5845
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
5598
5846
|
column: tableV3.Column;
|
|
@@ -5725,20 +5973,22 @@ declare const _default: {
|
|
|
5725
5973
|
searchPlaceholder: string;
|
|
5726
5974
|
selection: unknown[];
|
|
5727
5975
|
showSearch: boolean;
|
|
5976
|
+
loadingRowCount: number;
|
|
5977
|
+
emptyStateTitle: string;
|
|
5728
5978
|
isSticky: boolean;
|
|
5729
5979
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5730
5980
|
isStickyHeader: boolean;
|
|
5731
|
-
emptyStateTitle: string;
|
|
5732
5981
|
emptyStateSubtitle: string;
|
|
5733
5982
|
isInfiniteScroll: boolean;
|
|
5734
5983
|
infiniteScrollThreshold: number;
|
|
5735
5984
|
rowHeight: number | ((index: number) => number);
|
|
5736
|
-
loadingRowCount: number;
|
|
5737
5985
|
defaultScrollPosition: number;
|
|
5738
5986
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5739
5987
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5740
5988
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5741
5989
|
zIndexBase: number;
|
|
5990
|
+
rowCustomClassKey: string;
|
|
5991
|
+
rowDataKey: string;
|
|
5742
5992
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
5743
5993
|
sort: {
|
|
5744
5994
|
type: import("vue").PropType<tableV3.Sort>;
|
|
@@ -5780,6 +6030,14 @@ declare const _default: {
|
|
|
5780
6030
|
type: import("vue").PropType<boolean>;
|
|
5781
6031
|
default: boolean;
|
|
5782
6032
|
};
|
|
6033
|
+
loadingRowCount: {
|
|
6034
|
+
type: import("vue").PropType<number>;
|
|
6035
|
+
default: number;
|
|
6036
|
+
};
|
|
6037
|
+
emptyStateTitle: {
|
|
6038
|
+
type: import("vue").PropType<string>;
|
|
6039
|
+
default: string;
|
|
6040
|
+
};
|
|
5783
6041
|
isSticky: {
|
|
5784
6042
|
type: import("vue").PropType<boolean>;
|
|
5785
6043
|
default: boolean;
|
|
@@ -5796,10 +6054,6 @@ declare const _default: {
|
|
|
5796
6054
|
type: import("vue").PropType<boolean>;
|
|
5797
6055
|
default: boolean;
|
|
5798
6056
|
};
|
|
5799
|
-
emptyStateTitle: {
|
|
5800
|
-
type: import("vue").PropType<string>;
|
|
5801
|
-
default: string;
|
|
5802
|
-
};
|
|
5803
6057
|
emptyStateSubtitle: {
|
|
5804
6058
|
type: import("vue").PropType<string>;
|
|
5805
6059
|
default: string;
|
|
@@ -5816,10 +6070,6 @@ declare const _default: {
|
|
|
5816
6070
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5817
6071
|
default: number;
|
|
5818
6072
|
};
|
|
5819
|
-
loadingRowCount: {
|
|
5820
|
-
type: import("vue").PropType<number>;
|
|
5821
|
-
default: number;
|
|
5822
|
-
};
|
|
5823
6073
|
defaultScrollPosition: {
|
|
5824
6074
|
type: import("vue").PropType<number>;
|
|
5825
6075
|
default: any;
|
|
@@ -5840,6 +6090,14 @@ declare const _default: {
|
|
|
5840
6090
|
type: import("vue").PropType<number>;
|
|
5841
6091
|
default: number;
|
|
5842
6092
|
};
|
|
6093
|
+
rowCustomClassKey: {
|
|
6094
|
+
type: import("vue").PropType<string>;
|
|
6095
|
+
default: string;
|
|
6096
|
+
};
|
|
6097
|
+
rowDataKey: {
|
|
6098
|
+
type: import("vue").PropType<string>;
|
|
6099
|
+
default: string;
|
|
6100
|
+
};
|
|
5843
6101
|
}>> & {
|
|
5844
6102
|
onSelectAll?: (value: boolean) => any;
|
|
5845
6103
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5856,7 +6114,7 @@ declare const _default: {
|
|
|
5856
6114
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5857
6115
|
onSelectRow?: (value: boolean) => any;
|
|
5858
6116
|
onClickRow?: (rowIndex: number) => any;
|
|
5859
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
6117
|
+
} & 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" | "rowCustomClassKey" | "rowDataKey">;
|
|
5860
6118
|
$attrs: {
|
|
5861
6119
|
[x: string]: unknown;
|
|
5862
6120
|
};
|
|
@@ -5916,6 +6174,14 @@ declare const _default: {
|
|
|
5916
6174
|
type: import("vue").PropType<boolean>;
|
|
5917
6175
|
default: boolean;
|
|
5918
6176
|
};
|
|
6177
|
+
loadingRowCount: {
|
|
6178
|
+
type: import("vue").PropType<number>;
|
|
6179
|
+
default: number;
|
|
6180
|
+
};
|
|
6181
|
+
emptyStateTitle: {
|
|
6182
|
+
type: import("vue").PropType<string>;
|
|
6183
|
+
default: string;
|
|
6184
|
+
};
|
|
5919
6185
|
isSticky: {
|
|
5920
6186
|
type: import("vue").PropType<boolean>;
|
|
5921
6187
|
default: boolean;
|
|
@@ -5932,10 +6198,6 @@ declare const _default: {
|
|
|
5932
6198
|
type: import("vue").PropType<boolean>;
|
|
5933
6199
|
default: boolean;
|
|
5934
6200
|
};
|
|
5935
|
-
emptyStateTitle: {
|
|
5936
|
-
type: import("vue").PropType<string>;
|
|
5937
|
-
default: string;
|
|
5938
|
-
};
|
|
5939
6201
|
emptyStateSubtitle: {
|
|
5940
6202
|
type: import("vue").PropType<string>;
|
|
5941
6203
|
default: string;
|
|
@@ -5952,10 +6214,6 @@ declare const _default: {
|
|
|
5952
6214
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5953
6215
|
default: number;
|
|
5954
6216
|
};
|
|
5955
|
-
loadingRowCount: {
|
|
5956
|
-
type: import("vue").PropType<number>;
|
|
5957
|
-
default: number;
|
|
5958
|
-
};
|
|
5959
6217
|
defaultScrollPosition: {
|
|
5960
6218
|
type: import("vue").PropType<number>;
|
|
5961
6219
|
default: any;
|
|
@@ -5976,6 +6234,14 @@ declare const _default: {
|
|
|
5976
6234
|
type: import("vue").PropType<number>;
|
|
5977
6235
|
default: number;
|
|
5978
6236
|
};
|
|
6237
|
+
rowCustomClassKey: {
|
|
6238
|
+
type: import("vue").PropType<string>;
|
|
6239
|
+
default: string;
|
|
6240
|
+
};
|
|
6241
|
+
rowDataKey: {
|
|
6242
|
+
type: import("vue").PropType<string>;
|
|
6243
|
+
default: string;
|
|
6244
|
+
};
|
|
5979
6245
|
}>> & {
|
|
5980
6246
|
onSelectAll?: (value: boolean) => any;
|
|
5981
6247
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -6020,20 +6286,22 @@ declare const _default: {
|
|
|
6020
6286
|
searchPlaceholder: string;
|
|
6021
6287
|
selection: unknown[];
|
|
6022
6288
|
showSearch: boolean;
|
|
6289
|
+
loadingRowCount: number;
|
|
6290
|
+
emptyStateTitle: string;
|
|
6023
6291
|
isSticky: boolean;
|
|
6024
6292
|
sections: import("./components/table/common/Table.types").Section[];
|
|
6025
6293
|
isStickyHeader: boolean;
|
|
6026
|
-
emptyStateTitle: string;
|
|
6027
6294
|
emptyStateSubtitle: string;
|
|
6028
6295
|
isInfiniteScroll: boolean;
|
|
6029
6296
|
infiniteScrollThreshold: number;
|
|
6030
6297
|
rowHeight: number | ((index: number) => number);
|
|
6031
|
-
loadingRowCount: number;
|
|
6032
6298
|
defaultScrollPosition: number;
|
|
6033
6299
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6034
6300
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6035
6301
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6036
6302
|
zIndexBase: number;
|
|
6303
|
+
rowCustomClassKey: string;
|
|
6304
|
+
rowDataKey: string;
|
|
6037
6305
|
}, {}, string> & {
|
|
6038
6306
|
beforeCreate?: (() => void) | (() => void)[];
|
|
6039
6307
|
created?: (() => void) | (() => void)[];
|
|
@@ -6095,6 +6363,14 @@ declare const _default: {
|
|
|
6095
6363
|
type: import("vue").PropType<boolean>;
|
|
6096
6364
|
default: boolean;
|
|
6097
6365
|
};
|
|
6366
|
+
loadingRowCount: {
|
|
6367
|
+
type: import("vue").PropType<number>;
|
|
6368
|
+
default: number;
|
|
6369
|
+
};
|
|
6370
|
+
emptyStateTitle: {
|
|
6371
|
+
type: import("vue").PropType<string>;
|
|
6372
|
+
default: string;
|
|
6373
|
+
};
|
|
6098
6374
|
isSticky: {
|
|
6099
6375
|
type: import("vue").PropType<boolean>;
|
|
6100
6376
|
default: boolean;
|
|
@@ -6111,10 +6387,6 @@ declare const _default: {
|
|
|
6111
6387
|
type: import("vue").PropType<boolean>;
|
|
6112
6388
|
default: boolean;
|
|
6113
6389
|
};
|
|
6114
|
-
emptyStateTitle: {
|
|
6115
|
-
type: import("vue").PropType<string>;
|
|
6116
|
-
default: string;
|
|
6117
|
-
};
|
|
6118
6390
|
emptyStateSubtitle: {
|
|
6119
6391
|
type: import("vue").PropType<string>;
|
|
6120
6392
|
default: string;
|
|
@@ -6131,10 +6403,6 @@ declare const _default: {
|
|
|
6131
6403
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6132
6404
|
default: number;
|
|
6133
6405
|
};
|
|
6134
|
-
loadingRowCount: {
|
|
6135
|
-
type: import("vue").PropType<number>;
|
|
6136
|
-
default: number;
|
|
6137
|
-
};
|
|
6138
6406
|
defaultScrollPosition: {
|
|
6139
6407
|
type: import("vue").PropType<number>;
|
|
6140
6408
|
default: any;
|
|
@@ -6155,6 +6423,14 @@ declare const _default: {
|
|
|
6155
6423
|
type: import("vue").PropType<number>;
|
|
6156
6424
|
default: number;
|
|
6157
6425
|
};
|
|
6426
|
+
rowCustomClassKey: {
|
|
6427
|
+
type: import("vue").PropType<string>;
|
|
6428
|
+
default: string;
|
|
6429
|
+
};
|
|
6430
|
+
rowDataKey: {
|
|
6431
|
+
type: import("vue").PropType<string>;
|
|
6432
|
+
default: string;
|
|
6433
|
+
};
|
|
6158
6434
|
}>> & {
|
|
6159
6435
|
onSelectAll?: (value: boolean) => any;
|
|
6160
6436
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -6218,6 +6494,14 @@ declare const _default: {
|
|
|
6218
6494
|
type: import("vue").PropType<boolean>;
|
|
6219
6495
|
default: boolean;
|
|
6220
6496
|
};
|
|
6497
|
+
loadingRowCount: {
|
|
6498
|
+
type: import("vue").PropType<number>;
|
|
6499
|
+
default: number;
|
|
6500
|
+
};
|
|
6501
|
+
emptyStateTitle: {
|
|
6502
|
+
type: import("vue").PropType<string>;
|
|
6503
|
+
default: string;
|
|
6504
|
+
};
|
|
6221
6505
|
isSticky: {
|
|
6222
6506
|
type: import("vue").PropType<boolean>;
|
|
6223
6507
|
default: boolean;
|
|
@@ -6234,10 +6518,6 @@ declare const _default: {
|
|
|
6234
6518
|
type: import("vue").PropType<boolean>;
|
|
6235
6519
|
default: boolean;
|
|
6236
6520
|
};
|
|
6237
|
-
emptyStateTitle: {
|
|
6238
|
-
type: import("vue").PropType<string>;
|
|
6239
|
-
default: string;
|
|
6240
|
-
};
|
|
6241
6521
|
emptyStateSubtitle: {
|
|
6242
6522
|
type: import("vue").PropType<string>;
|
|
6243
6523
|
default: string;
|
|
@@ -6254,10 +6534,6 @@ declare const _default: {
|
|
|
6254
6534
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6255
6535
|
default: number;
|
|
6256
6536
|
};
|
|
6257
|
-
loadingRowCount: {
|
|
6258
|
-
type: import("vue").PropType<number>;
|
|
6259
|
-
default: number;
|
|
6260
|
-
};
|
|
6261
6537
|
defaultScrollPosition: {
|
|
6262
6538
|
type: import("vue").PropType<number>;
|
|
6263
6539
|
default: any;
|
|
@@ -6278,6 +6554,14 @@ declare const _default: {
|
|
|
6278
6554
|
type: import("vue").PropType<number>;
|
|
6279
6555
|
default: number;
|
|
6280
6556
|
};
|
|
6557
|
+
rowCustomClassKey: {
|
|
6558
|
+
type: import("vue").PropType<string>;
|
|
6559
|
+
default: string;
|
|
6560
|
+
};
|
|
6561
|
+
rowDataKey: {
|
|
6562
|
+
type: import("vue").PropType<string>;
|
|
6563
|
+
default: string;
|
|
6564
|
+
};
|
|
6281
6565
|
}>> & {
|
|
6282
6566
|
onSelectAll?: (value: boolean) => any;
|
|
6283
6567
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -6322,20 +6606,22 @@ declare const _default: {
|
|
|
6322
6606
|
searchPlaceholder: string;
|
|
6323
6607
|
selection: unknown[];
|
|
6324
6608
|
showSearch: boolean;
|
|
6609
|
+
loadingRowCount: number;
|
|
6610
|
+
emptyStateTitle: string;
|
|
6325
6611
|
isSticky: boolean;
|
|
6326
6612
|
sections: import("./components/table/common/Table.types").Section[];
|
|
6327
6613
|
isStickyHeader: boolean;
|
|
6328
|
-
emptyStateTitle: string;
|
|
6329
6614
|
emptyStateSubtitle: string;
|
|
6330
6615
|
isInfiniteScroll: boolean;
|
|
6331
6616
|
infiniteScrollThreshold: number;
|
|
6332
6617
|
rowHeight: number | ((index: number) => number);
|
|
6333
|
-
loadingRowCount: number;
|
|
6334
6618
|
defaultScrollPosition: number;
|
|
6335
6619
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
6336
6620
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
6337
6621
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6338
6622
|
zIndexBase: number;
|
|
6623
|
+
rowCustomClassKey: string;
|
|
6624
|
+
rowDataKey: string;
|
|
6339
6625
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6340
6626
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
6341
6627
|
column: tableV3.Column;
|
|
@@ -6462,10 +6748,10 @@ declare const _default: {
|
|
|
6462
6748
|
searchPlaceholder: string;
|
|
6463
6749
|
count: number;
|
|
6464
6750
|
showSearch: boolean;
|
|
6465
|
-
|
|
6751
|
+
loadingRowCount: number;
|
|
6466
6752
|
emptyStateTitle: string;
|
|
6753
|
+
isSticky: boolean;
|
|
6467
6754
|
emptyStateSubtitle: string;
|
|
6468
|
-
loadingRowCount: number;
|
|
6469
6755
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6470
6756
|
zIndexBase: number;
|
|
6471
6757
|
totalCount: number;
|
|
@@ -6499,22 +6785,22 @@ declare const _default: {
|
|
|
6499
6785
|
type: import("vue").PropType<boolean>;
|
|
6500
6786
|
default: boolean;
|
|
6501
6787
|
};
|
|
6502
|
-
|
|
6503
|
-
type: import("vue").PropType<
|
|
6504
|
-
default:
|
|
6788
|
+
loadingRowCount: {
|
|
6789
|
+
type: import("vue").PropType<number>;
|
|
6790
|
+
default: number;
|
|
6505
6791
|
};
|
|
6506
6792
|
emptyStateTitle: {
|
|
6507
6793
|
type: import("vue").PropType<string>;
|
|
6508
6794
|
default: string;
|
|
6509
6795
|
};
|
|
6796
|
+
isSticky: {
|
|
6797
|
+
type: import("vue").PropType<boolean>;
|
|
6798
|
+
default: boolean;
|
|
6799
|
+
};
|
|
6510
6800
|
emptyStateSubtitle: {
|
|
6511
6801
|
type: import("vue").PropType<string>;
|
|
6512
6802
|
default: string;
|
|
6513
6803
|
};
|
|
6514
|
-
loadingRowCount: {
|
|
6515
|
-
type: import("vue").PropType<number>;
|
|
6516
|
-
default: number;
|
|
6517
|
-
};
|
|
6518
6804
|
emptyStateVariant: {
|
|
6519
6805
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6520
6806
|
default: any;
|
|
@@ -6554,7 +6840,7 @@ declare const _default: {
|
|
|
6554
6840
|
onOnScroll?: (scrollTop: number) => any;
|
|
6555
6841
|
onOnClearSearch?: () => any;
|
|
6556
6842
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
6557
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
6843
|
+
} & 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
6844
|
$attrs: {
|
|
6559
6845
|
[x: string]: unknown;
|
|
6560
6846
|
};
|
|
@@ -6593,22 +6879,22 @@ declare const _default: {
|
|
|
6593
6879
|
type: import("vue").PropType<boolean>;
|
|
6594
6880
|
default: boolean;
|
|
6595
6881
|
};
|
|
6596
|
-
|
|
6597
|
-
type: import("vue").PropType<
|
|
6598
|
-
default:
|
|
6882
|
+
loadingRowCount: {
|
|
6883
|
+
type: import("vue").PropType<number>;
|
|
6884
|
+
default: number;
|
|
6599
6885
|
};
|
|
6600
6886
|
emptyStateTitle: {
|
|
6601
6887
|
type: import("vue").PropType<string>;
|
|
6602
6888
|
default: string;
|
|
6603
6889
|
};
|
|
6890
|
+
isSticky: {
|
|
6891
|
+
type: import("vue").PropType<boolean>;
|
|
6892
|
+
default: boolean;
|
|
6893
|
+
};
|
|
6604
6894
|
emptyStateSubtitle: {
|
|
6605
6895
|
type: import("vue").PropType<string>;
|
|
6606
6896
|
default: string;
|
|
6607
6897
|
};
|
|
6608
|
-
loadingRowCount: {
|
|
6609
|
-
type: import("vue").PropType<number>;
|
|
6610
|
-
default: number;
|
|
6611
|
-
};
|
|
6612
6898
|
emptyStateVariant: {
|
|
6613
6899
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6614
6900
|
default: any;
|
|
@@ -6660,10 +6946,10 @@ declare const _default: {
|
|
|
6660
6946
|
searchPlaceholder: string;
|
|
6661
6947
|
count: number;
|
|
6662
6948
|
showSearch: boolean;
|
|
6663
|
-
|
|
6949
|
+
loadingRowCount: number;
|
|
6664
6950
|
emptyStateTitle: string;
|
|
6951
|
+
isSticky: boolean;
|
|
6665
6952
|
emptyStateSubtitle: string;
|
|
6666
|
-
loadingRowCount: number;
|
|
6667
6953
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6668
6954
|
zIndexBase: number;
|
|
6669
6955
|
totalCount: number;
|
|
@@ -6717,22 +7003,22 @@ declare const _default: {
|
|
|
6717
7003
|
type: import("vue").PropType<boolean>;
|
|
6718
7004
|
default: boolean;
|
|
6719
7005
|
};
|
|
6720
|
-
|
|
6721
|
-
type: import("vue").PropType<
|
|
6722
|
-
default:
|
|
7006
|
+
loadingRowCount: {
|
|
7007
|
+
type: import("vue").PropType<number>;
|
|
7008
|
+
default: number;
|
|
6723
7009
|
};
|
|
6724
7010
|
emptyStateTitle: {
|
|
6725
7011
|
type: import("vue").PropType<string>;
|
|
6726
7012
|
default: string;
|
|
6727
7013
|
};
|
|
7014
|
+
isSticky: {
|
|
7015
|
+
type: import("vue").PropType<boolean>;
|
|
7016
|
+
default: boolean;
|
|
7017
|
+
};
|
|
6728
7018
|
emptyStateSubtitle: {
|
|
6729
7019
|
type: import("vue").PropType<string>;
|
|
6730
7020
|
default: string;
|
|
6731
7021
|
};
|
|
6732
|
-
loadingRowCount: {
|
|
6733
|
-
type: import("vue").PropType<number>;
|
|
6734
|
-
default: number;
|
|
6735
|
-
};
|
|
6736
7022
|
emptyStateVariant: {
|
|
6737
7023
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6738
7024
|
default: any;
|
|
@@ -6801,22 +7087,22 @@ declare const _default: {
|
|
|
6801
7087
|
type: import("vue").PropType<boolean>;
|
|
6802
7088
|
default: boolean;
|
|
6803
7089
|
};
|
|
6804
|
-
|
|
6805
|
-
type: import("vue").PropType<
|
|
6806
|
-
default:
|
|
7090
|
+
loadingRowCount: {
|
|
7091
|
+
type: import("vue").PropType<number>;
|
|
7092
|
+
default: number;
|
|
6807
7093
|
};
|
|
6808
7094
|
emptyStateTitle: {
|
|
6809
7095
|
type: import("vue").PropType<string>;
|
|
6810
7096
|
default: string;
|
|
6811
7097
|
};
|
|
7098
|
+
isSticky: {
|
|
7099
|
+
type: import("vue").PropType<boolean>;
|
|
7100
|
+
default: boolean;
|
|
7101
|
+
};
|
|
6812
7102
|
emptyStateSubtitle: {
|
|
6813
7103
|
type: import("vue").PropType<string>;
|
|
6814
7104
|
default: string;
|
|
6815
7105
|
};
|
|
6816
|
-
loadingRowCount: {
|
|
6817
|
-
type: import("vue").PropType<number>;
|
|
6818
|
-
default: number;
|
|
6819
|
-
};
|
|
6820
7106
|
emptyStateVariant: {
|
|
6821
7107
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6822
7108
|
default: any;
|
|
@@ -6868,10 +7154,10 @@ declare const _default: {
|
|
|
6868
7154
|
searchPlaceholder: string;
|
|
6869
7155
|
count: number;
|
|
6870
7156
|
showSearch: boolean;
|
|
6871
|
-
|
|
7157
|
+
loadingRowCount: number;
|
|
6872
7158
|
emptyStateTitle: string;
|
|
7159
|
+
isSticky: boolean;
|
|
6873
7160
|
emptyStateSubtitle: string;
|
|
6874
|
-
loadingRowCount: number;
|
|
6875
7161
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6876
7162
|
zIndexBase: number;
|
|
6877
7163
|
totalCount: number;
|
|
@@ -6882,12 +7168,25 @@ declare const _default: {
|
|
|
6882
7168
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
6883
7169
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6884
7170
|
$slots: Partial<Record<string, (_: {
|
|
7171
|
+
column: tableV3.Column;
|
|
7172
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
6885
7173
|
cell: any;
|
|
6886
7174
|
isLoading: any;
|
|
6887
7175
|
cellIndex: any;
|
|
6888
7176
|
row: any;
|
|
6889
7177
|
rowIndex: any;
|
|
6890
|
-
}) => any
|
|
7178
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7179
|
+
column: tableV3.Column;
|
|
7180
|
+
}) => any>> & {
|
|
7181
|
+
title?(_: {}): any;
|
|
7182
|
+
search?(_: {}): any;
|
|
7183
|
+
"table-header-actions"?(_: {}): any;
|
|
7184
|
+
"floating-row"?(_: {
|
|
7185
|
+
row: any;
|
|
7186
|
+
rowIndex: any;
|
|
7187
|
+
}): any;
|
|
7188
|
+
"empty-state"?(_: {}): any;
|
|
7189
|
+
};
|
|
6891
7190
|
})))[];
|
|
6892
7191
|
MultipleDataGrid: {
|
|
6893
7192
|
new (...args: any[]): {
|
|
@@ -6900,10 +7199,10 @@ declare const _default: {
|
|
|
6900
7199
|
searchPlaceholder: string;
|
|
6901
7200
|
count: number;
|
|
6902
7201
|
showSearch: boolean;
|
|
6903
|
-
|
|
7202
|
+
loadingRowCount: number;
|
|
6904
7203
|
emptyStateTitle: string;
|
|
7204
|
+
isSticky: boolean;
|
|
6905
7205
|
emptyStateSubtitle: string;
|
|
6906
|
-
loadingRowCount: number;
|
|
6907
7206
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6908
7207
|
zIndexBase: number;
|
|
6909
7208
|
totalCount: number;
|
|
@@ -6937,22 +7236,22 @@ declare const _default: {
|
|
|
6937
7236
|
type: import("vue").PropType<boolean>;
|
|
6938
7237
|
default: boolean;
|
|
6939
7238
|
};
|
|
6940
|
-
|
|
6941
|
-
type: import("vue").PropType<
|
|
6942
|
-
default:
|
|
7239
|
+
loadingRowCount: {
|
|
7240
|
+
type: import("vue").PropType<number>;
|
|
7241
|
+
default: number;
|
|
6943
7242
|
};
|
|
6944
7243
|
emptyStateTitle: {
|
|
6945
7244
|
type: import("vue").PropType<string>;
|
|
6946
7245
|
default: string;
|
|
6947
7246
|
};
|
|
7247
|
+
isSticky: {
|
|
7248
|
+
type: import("vue").PropType<boolean>;
|
|
7249
|
+
default: boolean;
|
|
7250
|
+
};
|
|
6948
7251
|
emptyStateSubtitle: {
|
|
6949
7252
|
type: import("vue").PropType<string>;
|
|
6950
7253
|
default: string;
|
|
6951
7254
|
};
|
|
6952
|
-
loadingRowCount: {
|
|
6953
|
-
type: import("vue").PropType<number>;
|
|
6954
|
-
default: number;
|
|
6955
|
-
};
|
|
6956
7255
|
emptyStateVariant: {
|
|
6957
7256
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6958
7257
|
default: any;
|
|
@@ -6992,7 +7291,7 @@ declare const _default: {
|
|
|
6992
7291
|
onOnScroll?: (scrollTop: number) => any;
|
|
6993
7292
|
onOnClearSearch?: () => any;
|
|
6994
7293
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
6995
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
7294
|
+
} & 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
7295
|
$attrs: {
|
|
6997
7296
|
[x: string]: unknown;
|
|
6998
7297
|
};
|
|
@@ -7031,22 +7330,22 @@ declare const _default: {
|
|
|
7031
7330
|
type: import("vue").PropType<boolean>;
|
|
7032
7331
|
default: boolean;
|
|
7033
7332
|
};
|
|
7034
|
-
|
|
7035
|
-
type: import("vue").PropType<
|
|
7036
|
-
default:
|
|
7333
|
+
loadingRowCount: {
|
|
7334
|
+
type: import("vue").PropType<number>;
|
|
7335
|
+
default: number;
|
|
7037
7336
|
};
|
|
7038
7337
|
emptyStateTitle: {
|
|
7039
7338
|
type: import("vue").PropType<string>;
|
|
7040
7339
|
default: string;
|
|
7041
7340
|
};
|
|
7341
|
+
isSticky: {
|
|
7342
|
+
type: import("vue").PropType<boolean>;
|
|
7343
|
+
default: boolean;
|
|
7344
|
+
};
|
|
7042
7345
|
emptyStateSubtitle: {
|
|
7043
7346
|
type: import("vue").PropType<string>;
|
|
7044
7347
|
default: string;
|
|
7045
7348
|
};
|
|
7046
|
-
loadingRowCount: {
|
|
7047
|
-
type: import("vue").PropType<number>;
|
|
7048
|
-
default: number;
|
|
7049
|
-
};
|
|
7050
7349
|
emptyStateVariant: {
|
|
7051
7350
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7052
7351
|
default: any;
|
|
@@ -7098,10 +7397,10 @@ declare const _default: {
|
|
|
7098
7397
|
searchPlaceholder: string;
|
|
7099
7398
|
count: number;
|
|
7100
7399
|
showSearch: boolean;
|
|
7101
|
-
|
|
7400
|
+
loadingRowCount: number;
|
|
7102
7401
|
emptyStateTitle: string;
|
|
7402
|
+
isSticky: boolean;
|
|
7103
7403
|
emptyStateSubtitle: string;
|
|
7104
|
-
loadingRowCount: number;
|
|
7105
7404
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7106
7405
|
zIndexBase: number;
|
|
7107
7406
|
totalCount: number;
|
|
@@ -7155,22 +7454,22 @@ declare const _default: {
|
|
|
7155
7454
|
type: import("vue").PropType<boolean>;
|
|
7156
7455
|
default: boolean;
|
|
7157
7456
|
};
|
|
7158
|
-
|
|
7159
|
-
type: import("vue").PropType<
|
|
7160
|
-
default:
|
|
7457
|
+
loadingRowCount: {
|
|
7458
|
+
type: import("vue").PropType<number>;
|
|
7459
|
+
default: number;
|
|
7161
7460
|
};
|
|
7162
7461
|
emptyStateTitle: {
|
|
7163
7462
|
type: import("vue").PropType<string>;
|
|
7164
7463
|
default: string;
|
|
7165
7464
|
};
|
|
7465
|
+
isSticky: {
|
|
7466
|
+
type: import("vue").PropType<boolean>;
|
|
7467
|
+
default: boolean;
|
|
7468
|
+
};
|
|
7166
7469
|
emptyStateSubtitle: {
|
|
7167
7470
|
type: import("vue").PropType<string>;
|
|
7168
7471
|
default: string;
|
|
7169
7472
|
};
|
|
7170
|
-
loadingRowCount: {
|
|
7171
|
-
type: import("vue").PropType<number>;
|
|
7172
|
-
default: number;
|
|
7173
|
-
};
|
|
7174
7473
|
emptyStateVariant: {
|
|
7175
7474
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7176
7475
|
default: any;
|
|
@@ -7239,22 +7538,22 @@ declare const _default: {
|
|
|
7239
7538
|
type: import("vue").PropType<boolean>;
|
|
7240
7539
|
default: boolean;
|
|
7241
7540
|
};
|
|
7242
|
-
|
|
7243
|
-
type: import("vue").PropType<
|
|
7244
|
-
default:
|
|
7541
|
+
loadingRowCount: {
|
|
7542
|
+
type: import("vue").PropType<number>;
|
|
7543
|
+
default: number;
|
|
7245
7544
|
};
|
|
7246
7545
|
emptyStateTitle: {
|
|
7247
7546
|
type: import("vue").PropType<string>;
|
|
7248
7547
|
default: string;
|
|
7249
7548
|
};
|
|
7549
|
+
isSticky: {
|
|
7550
|
+
type: import("vue").PropType<boolean>;
|
|
7551
|
+
default: boolean;
|
|
7552
|
+
};
|
|
7250
7553
|
emptyStateSubtitle: {
|
|
7251
7554
|
type: import("vue").PropType<string>;
|
|
7252
7555
|
default: string;
|
|
7253
7556
|
};
|
|
7254
|
-
loadingRowCount: {
|
|
7255
|
-
type: import("vue").PropType<number>;
|
|
7256
|
-
default: number;
|
|
7257
|
-
};
|
|
7258
7557
|
emptyStateVariant: {
|
|
7259
7558
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
7260
7559
|
default: any;
|
|
@@ -7306,10 +7605,10 @@ declare const _default: {
|
|
|
7306
7605
|
searchPlaceholder: string;
|
|
7307
7606
|
count: number;
|
|
7308
7607
|
showSearch: boolean;
|
|
7309
|
-
|
|
7608
|
+
loadingRowCount: number;
|
|
7310
7609
|
emptyStateTitle: string;
|
|
7610
|
+
isSticky: boolean;
|
|
7311
7611
|
emptyStateSubtitle: string;
|
|
7312
|
-
loadingRowCount: number;
|
|
7313
7612
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
7314
7613
|
zIndexBase: number;
|
|
7315
7614
|
totalCount: number;
|
|
@@ -7320,12 +7619,25 @@ declare const _default: {
|
|
|
7320
7619
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
7321
7620
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7322
7621
|
$slots: Partial<Record<string, (_: {
|
|
7622
|
+
column: tableV3.Column;
|
|
7623
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7323
7624
|
cell: any;
|
|
7324
7625
|
isLoading: any;
|
|
7325
7626
|
cellIndex: any;
|
|
7326
7627
|
row: any;
|
|
7327
7628
|
rowIndex: any;
|
|
7328
|
-
}) => any
|
|
7629
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7630
|
+
column: tableV3.Column;
|
|
7631
|
+
}) => any>> & {
|
|
7632
|
+
title?(_: {}): any;
|
|
7633
|
+
search?(_: {}): any;
|
|
7634
|
+
"table-header-actions"?(_: {}): any;
|
|
7635
|
+
"floating-row"?(_: {
|
|
7636
|
+
row: any;
|
|
7637
|
+
rowIndex: any;
|
|
7638
|
+
}): any;
|
|
7639
|
+
"empty-state"?(_: {}): any;
|
|
7640
|
+
};
|
|
7329
7641
|
});
|
|
7330
7642
|
Table: {
|
|
7331
7643
|
new (...args: any[]): {
|
|
@@ -7334,15 +7646,15 @@ declare const _default: {
|
|
|
7334
7646
|
$props: Partial<{
|
|
7335
7647
|
testId: string;
|
|
7336
7648
|
isLoading: boolean;
|
|
7649
|
+
loadingRowCount: number;
|
|
7650
|
+
emptyStateTitle: string;
|
|
7337
7651
|
isSticky: boolean;
|
|
7338
7652
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7339
7653
|
isStickyHeader: boolean;
|
|
7340
|
-
emptyStateTitle: string;
|
|
7341
7654
|
emptyStateSubtitle: string;
|
|
7342
7655
|
isInfiniteScroll: boolean;
|
|
7343
7656
|
infiniteScrollThreshold: number;
|
|
7344
7657
|
rowHeight: number | ((index: number) => number);
|
|
7345
|
-
loadingRowCount: number;
|
|
7346
7658
|
defaultScrollPosition: number;
|
|
7347
7659
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7348
7660
|
sort: {
|
|
@@ -7365,6 +7677,14 @@ declare const _default: {
|
|
|
7365
7677
|
type: import("vue").PropType<boolean>;
|
|
7366
7678
|
default: boolean;
|
|
7367
7679
|
};
|
|
7680
|
+
loadingRowCount: {
|
|
7681
|
+
type: import("vue").PropType<number>;
|
|
7682
|
+
default: number;
|
|
7683
|
+
};
|
|
7684
|
+
emptyStateTitle: {
|
|
7685
|
+
type: import("vue").PropType<string>;
|
|
7686
|
+
default: string;
|
|
7687
|
+
};
|
|
7368
7688
|
isSticky: {
|
|
7369
7689
|
type: import("vue").PropType<boolean>;
|
|
7370
7690
|
default: boolean;
|
|
@@ -7381,10 +7701,6 @@ declare const _default: {
|
|
|
7381
7701
|
type: import("vue").PropType<boolean>;
|
|
7382
7702
|
default: boolean;
|
|
7383
7703
|
};
|
|
7384
|
-
emptyStateTitle: {
|
|
7385
|
-
type: import("vue").PropType<string>;
|
|
7386
|
-
default: string;
|
|
7387
|
-
};
|
|
7388
7704
|
emptyStateSubtitle: {
|
|
7389
7705
|
type: import("vue").PropType<string>;
|
|
7390
7706
|
default: string;
|
|
@@ -7401,10 +7717,6 @@ declare const _default: {
|
|
|
7401
7717
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7402
7718
|
default: number;
|
|
7403
7719
|
};
|
|
7404
|
-
loadingRowCount: {
|
|
7405
|
-
type: import("vue").PropType<number>;
|
|
7406
|
-
default: number;
|
|
7407
|
-
};
|
|
7408
7720
|
defaultScrollPosition: {
|
|
7409
7721
|
type: import("vue").PropType<number>;
|
|
7410
7722
|
default: any;
|
|
@@ -7419,7 +7731,7 @@ declare const _default: {
|
|
|
7419
7731
|
cellIndex: number;
|
|
7420
7732
|
}) => any;
|
|
7421
7733
|
onLoadMore?: () => any;
|
|
7422
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "
|
|
7734
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
7423
7735
|
$attrs: {
|
|
7424
7736
|
[x: string]: unknown;
|
|
7425
7737
|
};
|
|
@@ -7459,6 +7771,14 @@ declare const _default: {
|
|
|
7459
7771
|
type: import("vue").PropType<boolean>;
|
|
7460
7772
|
default: boolean;
|
|
7461
7773
|
};
|
|
7774
|
+
loadingRowCount: {
|
|
7775
|
+
type: import("vue").PropType<number>;
|
|
7776
|
+
default: number;
|
|
7777
|
+
};
|
|
7778
|
+
emptyStateTitle: {
|
|
7779
|
+
type: import("vue").PropType<string>;
|
|
7780
|
+
default: string;
|
|
7781
|
+
};
|
|
7462
7782
|
isSticky: {
|
|
7463
7783
|
type: import("vue").PropType<boolean>;
|
|
7464
7784
|
default: boolean;
|
|
@@ -7475,10 +7795,6 @@ declare const _default: {
|
|
|
7475
7795
|
type: import("vue").PropType<boolean>;
|
|
7476
7796
|
default: boolean;
|
|
7477
7797
|
};
|
|
7478
|
-
emptyStateTitle: {
|
|
7479
|
-
type: import("vue").PropType<string>;
|
|
7480
|
-
default: string;
|
|
7481
|
-
};
|
|
7482
7798
|
emptyStateSubtitle: {
|
|
7483
7799
|
type: import("vue").PropType<string>;
|
|
7484
7800
|
default: string;
|
|
@@ -7495,10 +7811,6 @@ declare const _default: {
|
|
|
7495
7811
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7496
7812
|
default: number;
|
|
7497
7813
|
};
|
|
7498
|
-
loadingRowCount: {
|
|
7499
|
-
type: import("vue").PropType<number>;
|
|
7500
|
-
default: number;
|
|
7501
|
-
};
|
|
7502
7814
|
defaultScrollPosition: {
|
|
7503
7815
|
type: import("vue").PropType<number>;
|
|
7504
7816
|
default: any;
|
|
@@ -7526,15 +7838,15 @@ declare const _default: {
|
|
|
7526
7838
|
}, string, {
|
|
7527
7839
|
testId: string;
|
|
7528
7840
|
isLoading: boolean;
|
|
7841
|
+
loadingRowCount: number;
|
|
7842
|
+
emptyStateTitle: string;
|
|
7529
7843
|
isSticky: boolean;
|
|
7530
7844
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7531
7845
|
isStickyHeader: boolean;
|
|
7532
|
-
emptyStateTitle: string;
|
|
7533
7846
|
emptyStateSubtitle: string;
|
|
7534
7847
|
isInfiniteScroll: boolean;
|
|
7535
7848
|
infiniteScrollThreshold: number;
|
|
7536
7849
|
rowHeight: number | ((index: number) => number);
|
|
7537
|
-
loadingRowCount: number;
|
|
7538
7850
|
defaultScrollPosition: number;
|
|
7539
7851
|
}, {}, string> & {
|
|
7540
7852
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -7577,6 +7889,14 @@ declare const _default: {
|
|
|
7577
7889
|
type: import("vue").PropType<boolean>;
|
|
7578
7890
|
default: boolean;
|
|
7579
7891
|
};
|
|
7892
|
+
loadingRowCount: {
|
|
7893
|
+
type: import("vue").PropType<number>;
|
|
7894
|
+
default: number;
|
|
7895
|
+
};
|
|
7896
|
+
emptyStateTitle: {
|
|
7897
|
+
type: import("vue").PropType<string>;
|
|
7898
|
+
default: string;
|
|
7899
|
+
};
|
|
7580
7900
|
isSticky: {
|
|
7581
7901
|
type: import("vue").PropType<boolean>;
|
|
7582
7902
|
default: boolean;
|
|
@@ -7593,10 +7913,6 @@ declare const _default: {
|
|
|
7593
7913
|
type: import("vue").PropType<boolean>;
|
|
7594
7914
|
default: boolean;
|
|
7595
7915
|
};
|
|
7596
|
-
emptyStateTitle: {
|
|
7597
|
-
type: import("vue").PropType<string>;
|
|
7598
|
-
default: string;
|
|
7599
|
-
};
|
|
7600
7916
|
emptyStateSubtitle: {
|
|
7601
7917
|
type: import("vue").PropType<string>;
|
|
7602
7918
|
default: string;
|
|
@@ -7613,10 +7929,6 @@ declare const _default: {
|
|
|
7613
7929
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7614
7930
|
default: number;
|
|
7615
7931
|
};
|
|
7616
|
-
loadingRowCount: {
|
|
7617
|
-
type: import("vue").PropType<number>;
|
|
7618
|
-
default: number;
|
|
7619
|
-
};
|
|
7620
7932
|
defaultScrollPosition: {
|
|
7621
7933
|
type: import("vue").PropType<number>;
|
|
7622
7934
|
default: any;
|
|
@@ -7656,6 +7968,14 @@ declare const _default: {
|
|
|
7656
7968
|
type: import("vue").PropType<boolean>;
|
|
7657
7969
|
default: boolean;
|
|
7658
7970
|
};
|
|
7971
|
+
loadingRowCount: {
|
|
7972
|
+
type: import("vue").PropType<number>;
|
|
7973
|
+
default: number;
|
|
7974
|
+
};
|
|
7975
|
+
emptyStateTitle: {
|
|
7976
|
+
type: import("vue").PropType<string>;
|
|
7977
|
+
default: string;
|
|
7978
|
+
};
|
|
7659
7979
|
isSticky: {
|
|
7660
7980
|
type: import("vue").PropType<boolean>;
|
|
7661
7981
|
default: boolean;
|
|
@@ -7672,10 +7992,6 @@ declare const _default: {
|
|
|
7672
7992
|
type: import("vue").PropType<boolean>;
|
|
7673
7993
|
default: boolean;
|
|
7674
7994
|
};
|
|
7675
|
-
emptyStateTitle: {
|
|
7676
|
-
type: import("vue").PropType<string>;
|
|
7677
|
-
default: string;
|
|
7678
|
-
};
|
|
7679
7995
|
emptyStateSubtitle: {
|
|
7680
7996
|
type: import("vue").PropType<string>;
|
|
7681
7997
|
default: string;
|
|
@@ -7692,10 +8008,6 @@ declare const _default: {
|
|
|
7692
8008
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7693
8009
|
default: number;
|
|
7694
8010
|
};
|
|
7695
|
-
loadingRowCount: {
|
|
7696
|
-
type: import("vue").PropType<number>;
|
|
7697
|
-
default: number;
|
|
7698
|
-
};
|
|
7699
8011
|
defaultScrollPosition: {
|
|
7700
8012
|
type: import("vue").PropType<number>;
|
|
7701
8013
|
default: any;
|
|
@@ -7723,15 +8035,15 @@ declare const _default: {
|
|
|
7723
8035
|
}, string, {
|
|
7724
8036
|
testId: string;
|
|
7725
8037
|
isLoading: boolean;
|
|
8038
|
+
loadingRowCount: number;
|
|
8039
|
+
emptyStateTitle: string;
|
|
7726
8040
|
isSticky: boolean;
|
|
7727
8041
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7728
8042
|
isStickyHeader: boolean;
|
|
7729
|
-
emptyStateTitle: string;
|
|
7730
8043
|
emptyStateSubtitle: string;
|
|
7731
8044
|
isInfiniteScroll: boolean;
|
|
7732
8045
|
infiniteScrollThreshold: number;
|
|
7733
8046
|
rowHeight: number | ((index: number) => number);
|
|
7734
|
-
loadingRowCount: number;
|
|
7735
8047
|
defaultScrollPosition: number;
|
|
7736
8048
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7737
8049
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -7762,15 +8074,15 @@ declare const _default: {
|
|
|
7762
8074
|
$props: Partial<{
|
|
7763
8075
|
testId: string;
|
|
7764
8076
|
isLoading: boolean;
|
|
8077
|
+
loadingRowCount: number;
|
|
8078
|
+
emptyStateTitle: string;
|
|
7765
8079
|
isSticky: boolean;
|
|
7766
8080
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7767
8081
|
isStickyHeader: boolean;
|
|
7768
|
-
emptyStateTitle: string;
|
|
7769
8082
|
emptyStateSubtitle: string;
|
|
7770
8083
|
isInfiniteScroll: boolean;
|
|
7771
8084
|
infiniteScrollThreshold: number;
|
|
7772
8085
|
rowHeight: number | ((index: number) => number);
|
|
7773
|
-
loadingRowCount: number;
|
|
7774
8086
|
defaultScrollPosition: number;
|
|
7775
8087
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7776
8088
|
sort: {
|
|
@@ -7793,6 +8105,14 @@ declare const _default: {
|
|
|
7793
8105
|
type: import("vue").PropType<boolean>;
|
|
7794
8106
|
default: boolean;
|
|
7795
8107
|
};
|
|
8108
|
+
loadingRowCount: {
|
|
8109
|
+
type: import("vue").PropType<number>;
|
|
8110
|
+
default: number;
|
|
8111
|
+
};
|
|
8112
|
+
emptyStateTitle: {
|
|
8113
|
+
type: import("vue").PropType<string>;
|
|
8114
|
+
default: string;
|
|
8115
|
+
};
|
|
7796
8116
|
isSticky: {
|
|
7797
8117
|
type: import("vue").PropType<boolean>;
|
|
7798
8118
|
default: boolean;
|
|
@@ -7809,10 +8129,6 @@ declare const _default: {
|
|
|
7809
8129
|
type: import("vue").PropType<boolean>;
|
|
7810
8130
|
default: boolean;
|
|
7811
8131
|
};
|
|
7812
|
-
emptyStateTitle: {
|
|
7813
|
-
type: import("vue").PropType<string>;
|
|
7814
|
-
default: string;
|
|
7815
|
-
};
|
|
7816
8132
|
emptyStateSubtitle: {
|
|
7817
8133
|
type: import("vue").PropType<string>;
|
|
7818
8134
|
default: string;
|
|
@@ -7829,10 +8145,6 @@ declare const _default: {
|
|
|
7829
8145
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7830
8146
|
default: number;
|
|
7831
8147
|
};
|
|
7832
|
-
loadingRowCount: {
|
|
7833
|
-
type: import("vue").PropType<number>;
|
|
7834
|
-
default: number;
|
|
7835
|
-
};
|
|
7836
8148
|
defaultScrollPosition: {
|
|
7837
8149
|
type: import("vue").PropType<number>;
|
|
7838
8150
|
default: any;
|
|
@@ -7847,7 +8159,7 @@ declare const _default: {
|
|
|
7847
8159
|
cellIndex: number;
|
|
7848
8160
|
}) => any;
|
|
7849
8161
|
onLoadMore?: () => any;
|
|
7850
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "
|
|
8162
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
7851
8163
|
$attrs: {
|
|
7852
8164
|
[x: string]: unknown;
|
|
7853
8165
|
};
|
|
@@ -7887,6 +8199,14 @@ declare const _default: {
|
|
|
7887
8199
|
type: import("vue").PropType<boolean>;
|
|
7888
8200
|
default: boolean;
|
|
7889
8201
|
};
|
|
8202
|
+
loadingRowCount: {
|
|
8203
|
+
type: import("vue").PropType<number>;
|
|
8204
|
+
default: number;
|
|
8205
|
+
};
|
|
8206
|
+
emptyStateTitle: {
|
|
8207
|
+
type: import("vue").PropType<string>;
|
|
8208
|
+
default: string;
|
|
8209
|
+
};
|
|
7890
8210
|
isSticky: {
|
|
7891
8211
|
type: import("vue").PropType<boolean>;
|
|
7892
8212
|
default: boolean;
|
|
@@ -7903,10 +8223,6 @@ declare const _default: {
|
|
|
7903
8223
|
type: import("vue").PropType<boolean>;
|
|
7904
8224
|
default: boolean;
|
|
7905
8225
|
};
|
|
7906
|
-
emptyStateTitle: {
|
|
7907
|
-
type: import("vue").PropType<string>;
|
|
7908
|
-
default: string;
|
|
7909
|
-
};
|
|
7910
8226
|
emptyStateSubtitle: {
|
|
7911
8227
|
type: import("vue").PropType<string>;
|
|
7912
8228
|
default: string;
|
|
@@ -7923,10 +8239,6 @@ declare const _default: {
|
|
|
7923
8239
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7924
8240
|
default: number;
|
|
7925
8241
|
};
|
|
7926
|
-
loadingRowCount: {
|
|
7927
|
-
type: import("vue").PropType<number>;
|
|
7928
|
-
default: number;
|
|
7929
|
-
};
|
|
7930
8242
|
defaultScrollPosition: {
|
|
7931
8243
|
type: import("vue").PropType<number>;
|
|
7932
8244
|
default: any;
|
|
@@ -7954,15 +8266,15 @@ declare const _default: {
|
|
|
7954
8266
|
}, string, {
|
|
7955
8267
|
testId: string;
|
|
7956
8268
|
isLoading: boolean;
|
|
8269
|
+
loadingRowCount: number;
|
|
8270
|
+
emptyStateTitle: string;
|
|
7957
8271
|
isSticky: boolean;
|
|
7958
8272
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7959
8273
|
isStickyHeader: boolean;
|
|
7960
|
-
emptyStateTitle: string;
|
|
7961
8274
|
emptyStateSubtitle: string;
|
|
7962
8275
|
isInfiniteScroll: boolean;
|
|
7963
8276
|
infiniteScrollThreshold: number;
|
|
7964
8277
|
rowHeight: number | ((index: number) => number);
|
|
7965
|
-
loadingRowCount: number;
|
|
7966
8278
|
defaultScrollPosition: number;
|
|
7967
8279
|
}, {}, string> & {
|
|
7968
8280
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -8005,6 +8317,14 @@ declare const _default: {
|
|
|
8005
8317
|
type: import("vue").PropType<boolean>;
|
|
8006
8318
|
default: boolean;
|
|
8007
8319
|
};
|
|
8320
|
+
loadingRowCount: {
|
|
8321
|
+
type: import("vue").PropType<number>;
|
|
8322
|
+
default: number;
|
|
8323
|
+
};
|
|
8324
|
+
emptyStateTitle: {
|
|
8325
|
+
type: import("vue").PropType<string>;
|
|
8326
|
+
default: string;
|
|
8327
|
+
};
|
|
8008
8328
|
isSticky: {
|
|
8009
8329
|
type: import("vue").PropType<boolean>;
|
|
8010
8330
|
default: boolean;
|
|
@@ -8021,10 +8341,6 @@ declare const _default: {
|
|
|
8021
8341
|
type: import("vue").PropType<boolean>;
|
|
8022
8342
|
default: boolean;
|
|
8023
8343
|
};
|
|
8024
|
-
emptyStateTitle: {
|
|
8025
|
-
type: import("vue").PropType<string>;
|
|
8026
|
-
default: string;
|
|
8027
|
-
};
|
|
8028
8344
|
emptyStateSubtitle: {
|
|
8029
8345
|
type: import("vue").PropType<string>;
|
|
8030
8346
|
default: string;
|
|
@@ -8041,10 +8357,6 @@ declare const _default: {
|
|
|
8041
8357
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
8042
8358
|
default: number;
|
|
8043
8359
|
};
|
|
8044
|
-
loadingRowCount: {
|
|
8045
|
-
type: import("vue").PropType<number>;
|
|
8046
|
-
default: number;
|
|
8047
|
-
};
|
|
8048
8360
|
defaultScrollPosition: {
|
|
8049
8361
|
type: import("vue").PropType<number>;
|
|
8050
8362
|
default: any;
|
|
@@ -8084,6 +8396,14 @@ declare const _default: {
|
|
|
8084
8396
|
type: import("vue").PropType<boolean>;
|
|
8085
8397
|
default: boolean;
|
|
8086
8398
|
};
|
|
8399
|
+
loadingRowCount: {
|
|
8400
|
+
type: import("vue").PropType<number>;
|
|
8401
|
+
default: number;
|
|
8402
|
+
};
|
|
8403
|
+
emptyStateTitle: {
|
|
8404
|
+
type: import("vue").PropType<string>;
|
|
8405
|
+
default: string;
|
|
8406
|
+
};
|
|
8087
8407
|
isSticky: {
|
|
8088
8408
|
type: import("vue").PropType<boolean>;
|
|
8089
8409
|
default: boolean;
|
|
@@ -8100,10 +8420,6 @@ declare const _default: {
|
|
|
8100
8420
|
type: import("vue").PropType<boolean>;
|
|
8101
8421
|
default: boolean;
|
|
8102
8422
|
};
|
|
8103
|
-
emptyStateTitle: {
|
|
8104
|
-
type: import("vue").PropType<string>;
|
|
8105
|
-
default: string;
|
|
8106
|
-
};
|
|
8107
8423
|
emptyStateSubtitle: {
|
|
8108
8424
|
type: import("vue").PropType<string>;
|
|
8109
8425
|
default: string;
|
|
@@ -8120,10 +8436,6 @@ declare const _default: {
|
|
|
8120
8436
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
8121
8437
|
default: number;
|
|
8122
8438
|
};
|
|
8123
|
-
loadingRowCount: {
|
|
8124
|
-
type: import("vue").PropType<number>;
|
|
8125
|
-
default: number;
|
|
8126
|
-
};
|
|
8127
8439
|
defaultScrollPosition: {
|
|
8128
8440
|
type: import("vue").PropType<number>;
|
|
8129
8441
|
default: any;
|
|
@@ -8151,15 +8463,15 @@ declare const _default: {
|
|
|
8151
8463
|
}, string, {
|
|
8152
8464
|
testId: string;
|
|
8153
8465
|
isLoading: boolean;
|
|
8466
|
+
loadingRowCount: number;
|
|
8467
|
+
emptyStateTitle: string;
|
|
8154
8468
|
isSticky: boolean;
|
|
8155
8469
|
sections: import("./components/table/common/Table.types").Section[];
|
|
8156
8470
|
isStickyHeader: boolean;
|
|
8157
|
-
emptyStateTitle: string;
|
|
8158
8471
|
emptyStateSubtitle: string;
|
|
8159
8472
|
isInfiniteScroll: boolean;
|
|
8160
8473
|
infiniteScrollThreshold: number;
|
|
8161
8474
|
rowHeight: number | ((index: number) => number);
|
|
8162
|
-
loadingRowCount: number;
|
|
8163
8475
|
defaultScrollPosition: number;
|
|
8164
8476
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
8165
8477
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -10601,7 +10913,6 @@ declare const _default: {
|
|
|
10601
10913
|
size: string;
|
|
10602
10914
|
height: string;
|
|
10603
10915
|
width: string;
|
|
10604
|
-
platform: string;
|
|
10605
10916
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
10606
10917
|
name: {
|
|
10607
10918
|
type: import("vue").PropType<string>;
|
|
@@ -10627,11 +10938,7 @@ declare const _default: {
|
|
|
10627
10938
|
type: import("vue").PropType<string>;
|
|
10628
10939
|
default: any;
|
|
10629
10940
|
};
|
|
10630
|
-
|
|
10631
|
-
type: import("vue").PropType<string>;
|
|
10632
|
-
default: any;
|
|
10633
|
-
};
|
|
10634
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width" | "platform">;
|
|
10941
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width">;
|
|
10635
10942
|
$attrs: {
|
|
10636
10943
|
[x: string]: unknown;
|
|
10637
10944
|
};
|
|
@@ -10670,10 +10977,6 @@ declare const _default: {
|
|
|
10670
10977
|
type: import("vue").PropType<string>;
|
|
10671
10978
|
default: any;
|
|
10672
10979
|
};
|
|
10673
|
-
platform: {
|
|
10674
|
-
type: import("vue").PropType<string>;
|
|
10675
|
-
default: any;
|
|
10676
|
-
};
|
|
10677
10980
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10678
10981
|
name: string;
|
|
10679
10982
|
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -10681,7 +10984,6 @@ declare const _default: {
|
|
|
10681
10984
|
size: string;
|
|
10682
10985
|
height: string;
|
|
10683
10986
|
width: string;
|
|
10684
|
-
platform: string;
|
|
10685
10987
|
}, {}, string> & {
|
|
10686
10988
|
beforeCreate?: (() => void) | (() => void)[];
|
|
10687
10989
|
created?: (() => void) | (() => void)[];
|
|
@@ -10727,10 +11029,6 @@ declare const _default: {
|
|
|
10727
11029
|
type: import("vue").PropType<string>;
|
|
10728
11030
|
default: any;
|
|
10729
11031
|
};
|
|
10730
|
-
platform: {
|
|
10731
|
-
type: import("vue").PropType<string>;
|
|
10732
|
-
default: any;
|
|
10733
|
-
};
|
|
10734
11032
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
10735
11033
|
__isFragment?: never;
|
|
10736
11034
|
__isTeleport?: never;
|
|
@@ -10760,10 +11058,6 @@ declare const _default: {
|
|
|
10760
11058
|
type: import("vue").PropType<string>;
|
|
10761
11059
|
default: any;
|
|
10762
11060
|
};
|
|
10763
|
-
platform: {
|
|
10764
|
-
type: import("vue").PropType<string>;
|
|
10765
|
-
default: any;
|
|
10766
|
-
};
|
|
10767
11061
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10768
11062
|
name: string;
|
|
10769
11063
|
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -10771,7 +11065,6 @@ declare const _default: {
|
|
|
10771
11065
|
size: string;
|
|
10772
11066
|
height: string;
|
|
10773
11067
|
width: string;
|
|
10774
|
-
platform: string;
|
|
10775
11068
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
10776
11069
|
$slots: {
|
|
10777
11070
|
default?(_: {}): any;
|
|
@@ -10788,7 +11081,6 @@ declare const _default: {
|
|
|
10788
11081
|
size: string;
|
|
10789
11082
|
height: string;
|
|
10790
11083
|
width: string;
|
|
10791
|
-
platform: string;
|
|
10792
11084
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
10793
11085
|
name: {
|
|
10794
11086
|
type: import("vue").PropType<string>;
|
|
@@ -10814,11 +11106,7 @@ declare const _default: {
|
|
|
10814
11106
|
type: import("vue").PropType<string>;
|
|
10815
11107
|
default: any;
|
|
10816
11108
|
};
|
|
10817
|
-
|
|
10818
|
-
type: import("vue").PropType<string>;
|
|
10819
|
-
default: any;
|
|
10820
|
-
};
|
|
10821
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width" | "platform">;
|
|
11109
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "name" | "type" | "color" | "size" | "height" | "width">;
|
|
10822
11110
|
$attrs: {
|
|
10823
11111
|
[x: string]: unknown;
|
|
10824
11112
|
};
|
|
@@ -10857,10 +11145,6 @@ declare const _default: {
|
|
|
10857
11145
|
type: import("vue").PropType<string>;
|
|
10858
11146
|
default: any;
|
|
10859
11147
|
};
|
|
10860
|
-
platform: {
|
|
10861
|
-
type: import("vue").PropType<string>;
|
|
10862
|
-
default: any;
|
|
10863
|
-
};
|
|
10864
11148
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10865
11149
|
name: string;
|
|
10866
11150
|
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -10868,7 +11152,6 @@ declare const _default: {
|
|
|
10868
11152
|
size: string;
|
|
10869
11153
|
height: string;
|
|
10870
11154
|
width: string;
|
|
10871
|
-
platform: string;
|
|
10872
11155
|
}, {}, string> & {
|
|
10873
11156
|
beforeCreate?: (() => void) | (() => void)[];
|
|
10874
11157
|
created?: (() => void) | (() => void)[];
|
|
@@ -10914,10 +11197,6 @@ declare const _default: {
|
|
|
10914
11197
|
type: import("vue").PropType<string>;
|
|
10915
11198
|
default: any;
|
|
10916
11199
|
};
|
|
10917
|
-
platform: {
|
|
10918
|
-
type: import("vue").PropType<string>;
|
|
10919
|
-
default: any;
|
|
10920
|
-
};
|
|
10921
11200
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
10922
11201
|
__isFragment?: never;
|
|
10923
11202
|
__isTeleport?: never;
|
|
@@ -10947,10 +11226,6 @@ declare const _default: {
|
|
|
10947
11226
|
type: import("vue").PropType<string>;
|
|
10948
11227
|
default: any;
|
|
10949
11228
|
};
|
|
10950
|
-
platform: {
|
|
10951
|
-
type: import("vue").PropType<string>;
|
|
10952
|
-
default: any;
|
|
10953
|
-
};
|
|
10954
11229
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
10955
11230
|
name: string;
|
|
10956
11231
|
type: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
@@ -10958,7 +11233,6 @@ declare const _default: {
|
|
|
10958
11233
|
size: string;
|
|
10959
11234
|
height: string;
|
|
10960
11235
|
width: string;
|
|
10961
|
-
platform: string;
|
|
10962
11236
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
10963
11237
|
$slots: {
|
|
10964
11238
|
default?(_: {}): any;
|