@ironsource/shared-ui 2.1.7-rc.10 → 2.1.7-rc.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/DataGrid.vue_vue_type_style_index_0_scoped_ff47417d_lang.css +1 -0
  2. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_29f00d79_lang.css +1 -0
  3. package/SortableList.vue_vue_type_style_index_0_scoped_402063dc_lang.css +1 -0
  4. package/ThemeWrapper.vue_vue_type_style_index_0_scoped_66bd448a_lang.css +1 -0
  5. package/components/ThemeWrapper/ThemeWrapper.vue.js +2 -2
  6. package/components/ThemeWrapper/ThemeWrapper.vue2.js +8 -8
  7. package/components/dropdown/v3/Dropdown.vue.d.ts +1 -1
  8. package/components/dropdown/v3/index.d.ts +20 -20
  9. package/components/dropdown/v4/DropdownV4.vue.d.ts +1 -1
  10. package/components/dropdown/v4/index.d.ts +20 -20
  11. package/components/menu/Menu.vue.d.ts +1 -1
  12. package/components/menu/index.d.ts +16 -16
  13. package/components/sortableList/SortableList.vue.d.ts +17 -0
  14. package/components/sortableList/SortableList.vue.js +3 -3
  15. package/components/sortableList/SortableList.vue2.js +122 -86
  16. package/components/sortableList/index.d.ts +60 -1
  17. package/components/table/v3/Table.vue.d.ts +2 -2
  18. package/components/table/v3/index.d.ts +39 -39
  19. package/components/table/v4/DataGrid.vue.d.ts +2 -2
  20. package/components/table/v4/DataGrid.vue.js +4 -4
  21. package/components/table/v4/DataGrid.vue2.js +44 -43
  22. package/components/table/v4/MultipleDataGrid.vue.d.ts +5 -3
  23. package/components/table/v4/MultipleDataGrid.vue.js +3 -3
  24. package/components/table/v4/MultipleDataGrid.vue2.js +83 -67
  25. package/components/table/v4/index.d.ts +77 -75
  26. package/components/table/v4/utils/utils.d.ts +3 -0
  27. package/components/table/v4/utils/utils.js +5 -0
  28. package/components/tooltip/v4/TooltipV4.vue.d.ts +1 -1
  29. package/components/tooltip/v4/index.d.ts +20 -20
  30. package/index.d.ts +432 -310
  31. package/package.json +1 -1
  32. package/DataGrid.vue_vue_type_style_index_0_scoped_63aaf3be_lang.css +0 -1
  33. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_1bdca43d_lang.css +0 -1
  34. package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +0 -1
  35. package/ThemeWrapper.vue_vue_type_style_index_0_scoped_1cff50cb_lang.css +0 -1
package/index.d.ts CHANGED
@@ -1617,6 +1617,7 @@ declare const _default: {
1617
1617
  $props: Partial<{
1618
1618
  search: string;
1619
1619
  testId: string;
1620
+ isLoading: boolean;
1620
1621
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1621
1622
  searchPlaceholder: string;
1622
1623
  items: import("./components/sortableList/SortableList.types").SortableListItem[];
@@ -1625,6 +1626,8 @@ declare const _default: {
1625
1626
  openId: string | number;
1626
1627
  selectedId: string | number;
1627
1628
  showSearch: boolean;
1629
+ loadingRowCount: number;
1630
+ emptyStateTitle: string;
1628
1631
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1629
1632
  search: {
1630
1633
  type: import("vue").PropType<string>;
@@ -1634,6 +1637,10 @@ declare const _default: {
1634
1637
  type: import("vue").PropType<string>;
1635
1638
  default: string;
1636
1639
  };
1640
+ isLoading: {
1641
+ type: import("vue").PropType<boolean>;
1642
+ default: boolean;
1643
+ };
1637
1644
  displayValue: {
1638
1645
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1639
1646
  required: true;
@@ -1668,6 +1675,14 @@ declare const _default: {
1668
1675
  type: import("vue").PropType<boolean>;
1669
1676
  default: boolean;
1670
1677
  };
1678
+ loadingRowCount: {
1679
+ type: import("vue").PropType<number>;
1680
+ default: number;
1681
+ };
1682
+ emptyStateTitle: {
1683
+ type: import("vue").PropType<string>;
1684
+ default: string;
1685
+ };
1671
1686
  }>> & {
1672
1687
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1673
1688
  "onUpdate:openId"?: (id: string | number) => any;
@@ -1675,7 +1690,7 @@ declare const _default: {
1675
1690
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1676
1691
  "onUpdate:search"?: (query: string) => any;
1677
1692
  onClearSearch?: () => any;
1678
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
1693
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
1679
1694
  $attrs: {
1680
1695
  [x: string]: unknown;
1681
1696
  };
@@ -1698,6 +1713,10 @@ declare const _default: {
1698
1713
  type: import("vue").PropType<string>;
1699
1714
  default: string;
1700
1715
  };
1716
+ isLoading: {
1717
+ type: import("vue").PropType<boolean>;
1718
+ default: boolean;
1719
+ };
1701
1720
  displayValue: {
1702
1721
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1703
1722
  required: true;
@@ -1732,6 +1751,14 @@ declare const _default: {
1732
1751
  type: import("vue").PropType<boolean>;
1733
1752
  default: boolean;
1734
1753
  };
1754
+ loadingRowCount: {
1755
+ type: import("vue").PropType<number>;
1756
+ default: number;
1757
+ };
1758
+ emptyStateTitle: {
1759
+ type: import("vue").PropType<string>;
1760
+ default: string;
1761
+ };
1735
1762
  }>> & {
1736
1763
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1737
1764
  "onUpdate:openId"?: (id: string | number) => any;
@@ -1749,6 +1776,7 @@ declare const _default: {
1749
1776
  }, string, {
1750
1777
  search: string;
1751
1778
  testId: string;
1779
+ isLoading: boolean;
1752
1780
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1753
1781
  searchPlaceholder: string;
1754
1782
  items: import("./components/sortableList/SortableList.types").SortableListItem[];
@@ -1757,6 +1785,8 @@ declare const _default: {
1757
1785
  openId: string | number;
1758
1786
  selectedId: string | number;
1759
1787
  showSearch: boolean;
1788
+ loadingRowCount: number;
1789
+ emptyStateTitle: string;
1760
1790
  }, {}, string> & {
1761
1791
  beforeCreate?: (() => void) | (() => void)[];
1762
1792
  created?: (() => void) | (() => void)[];
@@ -1786,6 +1816,10 @@ declare const _default: {
1786
1816
  type: import("vue").PropType<string>;
1787
1817
  default: string;
1788
1818
  };
1819
+ isLoading: {
1820
+ type: import("vue").PropType<boolean>;
1821
+ default: boolean;
1822
+ };
1789
1823
  displayValue: {
1790
1824
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1791
1825
  required: true;
@@ -1820,6 +1854,14 @@ declare const _default: {
1820
1854
  type: import("vue").PropType<boolean>;
1821
1855
  default: boolean;
1822
1856
  };
1857
+ loadingRowCount: {
1858
+ type: import("vue").PropType<number>;
1859
+ default: number;
1860
+ };
1861
+ emptyStateTitle: {
1862
+ type: import("vue").PropType<string>;
1863
+ default: string;
1864
+ };
1823
1865
  }>> & {
1824
1866
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1825
1867
  "onUpdate:openId"?: (id: string | number) => any;
@@ -1840,6 +1882,10 @@ declare const _default: {
1840
1882
  type: import("vue").PropType<string>;
1841
1883
  default: string;
1842
1884
  };
1885
+ isLoading: {
1886
+ type: import("vue").PropType<boolean>;
1887
+ default: boolean;
1888
+ };
1843
1889
  displayValue: {
1844
1890
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1845
1891
  required: true;
@@ -1874,6 +1920,14 @@ declare const _default: {
1874
1920
  type: import("vue").PropType<boolean>;
1875
1921
  default: boolean;
1876
1922
  };
1923
+ loadingRowCount: {
1924
+ type: import("vue").PropType<number>;
1925
+ default: number;
1926
+ };
1927
+ emptyStateTitle: {
1928
+ type: import("vue").PropType<string>;
1929
+ default: string;
1930
+ };
1877
1931
  }>> & {
1878
1932
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1879
1933
  "onUpdate:openId"?: (id: string | number) => any;
@@ -1891,6 +1945,7 @@ declare const _default: {
1891
1945
  }, string, {
1892
1946
  search: string;
1893
1947
  testId: string;
1948
+ isLoading: boolean;
1894
1949
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1895
1950
  searchPlaceholder: string;
1896
1951
  items: import("./components/sortableList/SortableList.types").SortableListItem[];
@@ -1899,11 +1954,15 @@ declare const _default: {
1899
1954
  openId: string | number;
1900
1955
  selectedId: string | number;
1901
1956
  showSearch: boolean;
1957
+ loadingRowCount: number;
1958
+ emptyStateTitle: string;
1902
1959
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1903
1960
  $slots: {
1904
1961
  menu?(_: {
1905
1962
  item: import("./components/sortableList/SortableList.types").SortableListItem;
1906
1963
  }): any;
1964
+ loader?(_: {}): any;
1965
+ "empty-state"?(_: {}): any;
1907
1966
  };
1908
1967
  });
1909
1968
  SortableListTypes: () => ({
@@ -1913,6 +1972,7 @@ declare const _default: {
1913
1972
  $props: Partial<{
1914
1973
  search: string;
1915
1974
  testId: string;
1975
+ isLoading: boolean;
1916
1976
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1917
1977
  searchPlaceholder: string;
1918
1978
  items: import("./components/sortableList/SortableList.types").SortableListItem[];
@@ -1921,6 +1981,8 @@ declare const _default: {
1921
1981
  openId: string | number;
1922
1982
  selectedId: string | number;
1923
1983
  showSearch: boolean;
1984
+ loadingRowCount: number;
1985
+ emptyStateTitle: string;
1924
1986
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1925
1987
  search: {
1926
1988
  type: import("vue").PropType<string>;
@@ -1930,6 +1992,10 @@ declare const _default: {
1930
1992
  type: import("vue").PropType<string>;
1931
1993
  default: string;
1932
1994
  };
1995
+ isLoading: {
1996
+ type: import("vue").PropType<boolean>;
1997
+ default: boolean;
1998
+ };
1933
1999
  displayValue: {
1934
2000
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1935
2001
  required: true;
@@ -1964,6 +2030,14 @@ declare const _default: {
1964
2030
  type: import("vue").PropType<boolean>;
1965
2031
  default: boolean;
1966
2032
  };
2033
+ loadingRowCount: {
2034
+ type: import("vue").PropType<number>;
2035
+ default: number;
2036
+ };
2037
+ emptyStateTitle: {
2038
+ type: import("vue").PropType<string>;
2039
+ default: string;
2040
+ };
1967
2041
  }>> & {
1968
2042
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
1969
2043
  "onUpdate:openId"?: (id: string | number) => any;
@@ -1971,7 +2045,7 @@ declare const _default: {
1971
2045
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1972
2046
  "onUpdate:search"?: (query: string) => any;
1973
2047
  onClearSearch?: () => any;
1974
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
2048
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
1975
2049
  $attrs: {
1976
2050
  [x: string]: unknown;
1977
2051
  };
@@ -1994,6 +2068,10 @@ declare const _default: {
1994
2068
  type: import("vue").PropType<string>;
1995
2069
  default: string;
1996
2070
  };
2071
+ isLoading: {
2072
+ type: import("vue").PropType<boolean>;
2073
+ default: boolean;
2074
+ };
1997
2075
  displayValue: {
1998
2076
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
1999
2077
  required: true;
@@ -2028,6 +2106,14 @@ declare const _default: {
2028
2106
  type: import("vue").PropType<boolean>;
2029
2107
  default: boolean;
2030
2108
  };
2109
+ loadingRowCount: {
2110
+ type: import("vue").PropType<number>;
2111
+ default: number;
2112
+ };
2113
+ emptyStateTitle: {
2114
+ type: import("vue").PropType<string>;
2115
+ default: string;
2116
+ };
2031
2117
  }>> & {
2032
2118
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
2033
2119
  "onUpdate:openId"?: (id: string | number) => any;
@@ -2045,6 +2131,7 @@ declare const _default: {
2045
2131
  }, string, {
2046
2132
  search: string;
2047
2133
  testId: string;
2134
+ isLoading: boolean;
2048
2135
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2049
2136
  searchPlaceholder: string;
2050
2137
  items: import("./components/sortableList/SortableList.types").SortableListItem[];
@@ -2053,6 +2140,8 @@ declare const _default: {
2053
2140
  openId: string | number;
2054
2141
  selectedId: string | number;
2055
2142
  showSearch: boolean;
2143
+ loadingRowCount: number;
2144
+ emptyStateTitle: string;
2056
2145
  }, {}, string> & {
2057
2146
  beforeCreate?: (() => void) | (() => void)[];
2058
2147
  created?: (() => void) | (() => void)[];
@@ -2082,6 +2171,10 @@ declare const _default: {
2082
2171
  type: import("vue").PropType<string>;
2083
2172
  default: string;
2084
2173
  };
2174
+ isLoading: {
2175
+ type: import("vue").PropType<boolean>;
2176
+ default: boolean;
2177
+ };
2085
2178
  displayValue: {
2086
2179
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
2087
2180
  required: true;
@@ -2116,6 +2209,14 @@ declare const _default: {
2116
2209
  type: import("vue").PropType<boolean>;
2117
2210
  default: boolean;
2118
2211
  };
2212
+ loadingRowCount: {
2213
+ type: import("vue").PropType<number>;
2214
+ default: number;
2215
+ };
2216
+ emptyStateTitle: {
2217
+ type: import("vue").PropType<string>;
2218
+ default: string;
2219
+ };
2119
2220
  }>> & {
2120
2221
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
2121
2222
  "onUpdate:openId"?: (id: string | number) => any;
@@ -2136,6 +2237,10 @@ declare const _default: {
2136
2237
  type: import("vue").PropType<string>;
2137
2238
  default: string;
2138
2239
  };
2240
+ isLoading: {
2241
+ type: import("vue").PropType<boolean>;
2242
+ default: boolean;
2243
+ };
2139
2244
  displayValue: {
2140
2245
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
2141
2246
  required: true;
@@ -2170,6 +2275,14 @@ declare const _default: {
2170
2275
  type: import("vue").PropType<boolean>;
2171
2276
  default: boolean;
2172
2277
  };
2278
+ loadingRowCount: {
2279
+ type: import("vue").PropType<number>;
2280
+ default: number;
2281
+ };
2282
+ emptyStateTitle: {
2283
+ type: import("vue").PropType<string>;
2284
+ default: string;
2285
+ };
2173
2286
  }>> & {
2174
2287
  "onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
2175
2288
  "onUpdate:openId"?: (id: string | number) => any;
@@ -2187,6 +2300,7 @@ declare const _default: {
2187
2300
  }, string, {
2188
2301
  search: string;
2189
2302
  testId: string;
2303
+ isLoading: boolean;
2190
2304
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2191
2305
  searchPlaceholder: string;
2192
2306
  items: import("./components/sortableList/SortableList.types").SortableListItem[];
@@ -2195,11 +2309,15 @@ declare const _default: {
2195
2309
  openId: string | number;
2196
2310
  selectedId: string | number;
2197
2311
  showSearch: boolean;
2312
+ loadingRowCount: number;
2313
+ emptyStateTitle: string;
2198
2314
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2199
2315
  $slots: {
2200
2316
  menu?(_: {
2201
2317
  item: import("./components/sortableList/SortableList.types").SortableListItem;
2202
2318
  }): any;
2319
+ loader?(_: {}): any;
2320
+ "empty-state"?(_: {}): any;
2203
2321
  };
2204
2322
  }))[];
2205
2323
  StatusDot: import("vue").DefineComponent<{
@@ -4982,15 +5100,15 @@ declare const _default: {
4982
5100
  searchPlaceholder: string;
4983
5101
  selection: unknown[];
4984
5102
  showSearch: boolean;
5103
+ loadingRowCount: number;
5104
+ emptyStateTitle: string;
4985
5105
  isSticky: boolean;
4986
5106
  sections: import("./components/table/common/Table.types").Section[];
4987
5107
  isStickyHeader: boolean;
4988
- emptyStateTitle: string;
4989
5108
  emptyStateSubtitle: string;
4990
5109
  isInfiniteScroll: boolean;
4991
5110
  infiniteScrollThreshold: number;
4992
5111
  rowHeight: number | ((index: number) => number);
4993
- loadingRowCount: number;
4994
5112
  defaultScrollPosition: number;
4995
5113
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
4996
5114
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
@@ -5037,6 +5155,14 @@ declare const _default: {
5037
5155
  type: import("vue").PropType<boolean>;
5038
5156
  default: boolean;
5039
5157
  };
5158
+ loadingRowCount: {
5159
+ type: import("vue").PropType<number>;
5160
+ default: number;
5161
+ };
5162
+ emptyStateTitle: {
5163
+ type: import("vue").PropType<string>;
5164
+ default: string;
5165
+ };
5040
5166
  isSticky: {
5041
5167
  type: import("vue").PropType<boolean>;
5042
5168
  default: boolean;
@@ -5053,10 +5179,6 @@ declare const _default: {
5053
5179
  type: import("vue").PropType<boolean>;
5054
5180
  default: boolean;
5055
5181
  };
5056
- emptyStateTitle: {
5057
- type: import("vue").PropType<string>;
5058
- default: string;
5059
- };
5060
5182
  emptyStateSubtitle: {
5061
5183
  type: import("vue").PropType<string>;
5062
5184
  default: string;
@@ -5073,10 +5195,6 @@ declare const _default: {
5073
5195
  type: import("vue").PropType<number | ((index: number) => number)>;
5074
5196
  default: number;
5075
5197
  };
5076
- loadingRowCount: {
5077
- type: import("vue").PropType<number>;
5078
- default: number;
5079
- };
5080
5198
  defaultScrollPosition: {
5081
5199
  type: import("vue").PropType<number>;
5082
5200
  default: any;
@@ -5113,7 +5231,7 @@ declare const _default: {
5113
5231
  "onUpdate:selection"?: (selection: unknown[]) => any;
5114
5232
  onSelectRow?: (value: boolean) => any;
5115
5233
  onClickRow?: (rowIndex: number) => any;
5116
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
5234
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
5117
5235
  $attrs: {
5118
5236
  [x: string]: unknown;
5119
5237
  };
@@ -5173,6 +5291,14 @@ declare const _default: {
5173
5291
  type: import("vue").PropType<boolean>;
5174
5292
  default: boolean;
5175
5293
  };
5294
+ loadingRowCount: {
5295
+ type: import("vue").PropType<number>;
5296
+ default: number;
5297
+ };
5298
+ emptyStateTitle: {
5299
+ type: import("vue").PropType<string>;
5300
+ default: string;
5301
+ };
5176
5302
  isSticky: {
5177
5303
  type: import("vue").PropType<boolean>;
5178
5304
  default: boolean;
@@ -5189,10 +5315,6 @@ declare const _default: {
5189
5315
  type: import("vue").PropType<boolean>;
5190
5316
  default: boolean;
5191
5317
  };
5192
- emptyStateTitle: {
5193
- type: import("vue").PropType<string>;
5194
- default: string;
5195
- };
5196
5318
  emptyStateSubtitle: {
5197
5319
  type: import("vue").PropType<string>;
5198
5320
  default: string;
@@ -5209,10 +5331,6 @@ declare const _default: {
5209
5331
  type: import("vue").PropType<number | ((index: number) => number)>;
5210
5332
  default: number;
5211
5333
  };
5212
- loadingRowCount: {
5213
- type: import("vue").PropType<number>;
5214
- default: number;
5215
- };
5216
5334
  defaultScrollPosition: {
5217
5335
  type: import("vue").PropType<number>;
5218
5336
  default: any;
@@ -5277,15 +5395,15 @@ declare const _default: {
5277
5395
  searchPlaceholder: string;
5278
5396
  selection: unknown[];
5279
5397
  showSearch: boolean;
5398
+ loadingRowCount: number;
5399
+ emptyStateTitle: string;
5280
5400
  isSticky: boolean;
5281
5401
  sections: import("./components/table/common/Table.types").Section[];
5282
5402
  isStickyHeader: boolean;
5283
- emptyStateTitle: string;
5284
5403
  emptyStateSubtitle: string;
5285
5404
  isInfiniteScroll: boolean;
5286
5405
  infiniteScrollThreshold: number;
5287
5406
  rowHeight: number | ((index: number) => number);
5288
- loadingRowCount: number;
5289
5407
  defaultScrollPosition: number;
5290
5408
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5291
5409
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
@@ -5352,6 +5470,14 @@ declare const _default: {
5352
5470
  type: import("vue").PropType<boolean>;
5353
5471
  default: boolean;
5354
5472
  };
5473
+ loadingRowCount: {
5474
+ type: import("vue").PropType<number>;
5475
+ default: number;
5476
+ };
5477
+ emptyStateTitle: {
5478
+ type: import("vue").PropType<string>;
5479
+ default: string;
5480
+ };
5355
5481
  isSticky: {
5356
5482
  type: import("vue").PropType<boolean>;
5357
5483
  default: boolean;
@@ -5368,10 +5494,6 @@ declare const _default: {
5368
5494
  type: import("vue").PropType<boolean>;
5369
5495
  default: boolean;
5370
5496
  };
5371
- emptyStateTitle: {
5372
- type: import("vue").PropType<string>;
5373
- default: string;
5374
- };
5375
5497
  emptyStateSubtitle: {
5376
5498
  type: import("vue").PropType<string>;
5377
5499
  default: string;
@@ -5388,10 +5510,6 @@ declare const _default: {
5388
5510
  type: import("vue").PropType<number | ((index: number) => number)>;
5389
5511
  default: number;
5390
5512
  };
5391
- loadingRowCount: {
5392
- type: import("vue").PropType<number>;
5393
- default: number;
5394
- };
5395
5513
  defaultScrollPosition: {
5396
5514
  type: import("vue").PropType<number>;
5397
5515
  default: any;
@@ -5475,6 +5593,14 @@ declare const _default: {
5475
5593
  type: import("vue").PropType<boolean>;
5476
5594
  default: boolean;
5477
5595
  };
5596
+ loadingRowCount: {
5597
+ type: import("vue").PropType<number>;
5598
+ default: number;
5599
+ };
5600
+ emptyStateTitle: {
5601
+ type: import("vue").PropType<string>;
5602
+ default: string;
5603
+ };
5478
5604
  isSticky: {
5479
5605
  type: import("vue").PropType<boolean>;
5480
5606
  default: boolean;
@@ -5491,10 +5617,6 @@ declare const _default: {
5491
5617
  type: import("vue").PropType<boolean>;
5492
5618
  default: boolean;
5493
5619
  };
5494
- emptyStateTitle: {
5495
- type: import("vue").PropType<string>;
5496
- default: string;
5497
- };
5498
5620
  emptyStateSubtitle: {
5499
5621
  type: import("vue").PropType<string>;
5500
5622
  default: string;
@@ -5511,10 +5633,6 @@ declare const _default: {
5511
5633
  type: import("vue").PropType<number | ((index: number) => number)>;
5512
5634
  default: number;
5513
5635
  };
5514
- loadingRowCount: {
5515
- type: import("vue").PropType<number>;
5516
- default: number;
5517
- };
5518
5636
  defaultScrollPosition: {
5519
5637
  type: import("vue").PropType<number>;
5520
5638
  default: any;
@@ -5579,15 +5697,15 @@ declare const _default: {
5579
5697
  searchPlaceholder: string;
5580
5698
  selection: unknown[];
5581
5699
  showSearch: boolean;
5700
+ loadingRowCount: number;
5701
+ emptyStateTitle: string;
5582
5702
  isSticky: boolean;
5583
5703
  sections: import("./components/table/common/Table.types").Section[];
5584
5704
  isStickyHeader: boolean;
5585
- emptyStateTitle: string;
5586
5705
  emptyStateSubtitle: string;
5587
5706
  isInfiniteScroll: boolean;
5588
5707
  infiniteScrollThreshold: number;
5589
5708
  rowHeight: number | ((index: number) => number);
5590
- loadingRowCount: number;
5591
5709
  defaultScrollPosition: number;
5592
5710
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5593
5711
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
@@ -5725,15 +5843,15 @@ declare const _default: {
5725
5843
  searchPlaceholder: string;
5726
5844
  selection: unknown[];
5727
5845
  showSearch: boolean;
5846
+ loadingRowCount: number;
5847
+ emptyStateTitle: string;
5728
5848
  isSticky: boolean;
5729
5849
  sections: import("./components/table/common/Table.types").Section[];
5730
5850
  isStickyHeader: boolean;
5731
- emptyStateTitle: string;
5732
5851
  emptyStateSubtitle: string;
5733
5852
  isInfiniteScroll: boolean;
5734
5853
  infiniteScrollThreshold: number;
5735
5854
  rowHeight: number | ((index: number) => number);
5736
- loadingRowCount: number;
5737
5855
  defaultScrollPosition: number;
5738
5856
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5739
5857
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
@@ -5780,6 +5898,14 @@ declare const _default: {
5780
5898
  type: import("vue").PropType<boolean>;
5781
5899
  default: boolean;
5782
5900
  };
5901
+ loadingRowCount: {
5902
+ type: import("vue").PropType<number>;
5903
+ default: number;
5904
+ };
5905
+ emptyStateTitle: {
5906
+ type: import("vue").PropType<string>;
5907
+ default: string;
5908
+ };
5783
5909
  isSticky: {
5784
5910
  type: import("vue").PropType<boolean>;
5785
5911
  default: boolean;
@@ -5796,10 +5922,6 @@ declare const _default: {
5796
5922
  type: import("vue").PropType<boolean>;
5797
5923
  default: boolean;
5798
5924
  };
5799
- emptyStateTitle: {
5800
- type: import("vue").PropType<string>;
5801
- default: string;
5802
- };
5803
5925
  emptyStateSubtitle: {
5804
5926
  type: import("vue").PropType<string>;
5805
5927
  default: string;
@@ -5816,10 +5938,6 @@ declare const _default: {
5816
5938
  type: import("vue").PropType<number | ((index: number) => number)>;
5817
5939
  default: number;
5818
5940
  };
5819
- loadingRowCount: {
5820
- type: import("vue").PropType<number>;
5821
- default: number;
5822
- };
5823
5941
  defaultScrollPosition: {
5824
5942
  type: import("vue").PropType<number>;
5825
5943
  default: any;
@@ -5856,7 +5974,7 @@ declare const _default: {
5856
5974
  "onUpdate:selection"?: (selection: unknown[]) => any;
5857
5975
  onSelectRow?: (value: boolean) => any;
5858
5976
  onClickRow?: (rowIndex: number) => any;
5859
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
5977
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase">;
5860
5978
  $attrs: {
5861
5979
  [x: string]: unknown;
5862
5980
  };
@@ -5916,6 +6034,14 @@ declare const _default: {
5916
6034
  type: import("vue").PropType<boolean>;
5917
6035
  default: boolean;
5918
6036
  };
6037
+ loadingRowCount: {
6038
+ type: import("vue").PropType<number>;
6039
+ default: number;
6040
+ };
6041
+ emptyStateTitle: {
6042
+ type: import("vue").PropType<string>;
6043
+ default: string;
6044
+ };
5919
6045
  isSticky: {
5920
6046
  type: import("vue").PropType<boolean>;
5921
6047
  default: boolean;
@@ -5932,10 +6058,6 @@ declare const _default: {
5932
6058
  type: import("vue").PropType<boolean>;
5933
6059
  default: boolean;
5934
6060
  };
5935
- emptyStateTitle: {
5936
- type: import("vue").PropType<string>;
5937
- default: string;
5938
- };
5939
6061
  emptyStateSubtitle: {
5940
6062
  type: import("vue").PropType<string>;
5941
6063
  default: string;
@@ -5952,10 +6074,6 @@ declare const _default: {
5952
6074
  type: import("vue").PropType<number | ((index: number) => number)>;
5953
6075
  default: number;
5954
6076
  };
5955
- loadingRowCount: {
5956
- type: import("vue").PropType<number>;
5957
- default: number;
5958
- };
5959
6077
  defaultScrollPosition: {
5960
6078
  type: import("vue").PropType<number>;
5961
6079
  default: any;
@@ -6020,15 +6138,15 @@ declare const _default: {
6020
6138
  searchPlaceholder: string;
6021
6139
  selection: unknown[];
6022
6140
  showSearch: boolean;
6141
+ loadingRowCount: number;
6142
+ emptyStateTitle: string;
6023
6143
  isSticky: boolean;
6024
6144
  sections: import("./components/table/common/Table.types").Section[];
6025
6145
  isStickyHeader: boolean;
6026
- emptyStateTitle: string;
6027
6146
  emptyStateSubtitle: string;
6028
6147
  isInfiniteScroll: boolean;
6029
6148
  infiniteScrollThreshold: number;
6030
6149
  rowHeight: number | ((index: number) => number);
6031
- loadingRowCount: number;
6032
6150
  defaultScrollPosition: number;
6033
6151
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6034
6152
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
@@ -6095,6 +6213,14 @@ declare const _default: {
6095
6213
  type: import("vue").PropType<boolean>;
6096
6214
  default: boolean;
6097
6215
  };
6216
+ loadingRowCount: {
6217
+ type: import("vue").PropType<number>;
6218
+ default: number;
6219
+ };
6220
+ emptyStateTitle: {
6221
+ type: import("vue").PropType<string>;
6222
+ default: string;
6223
+ };
6098
6224
  isSticky: {
6099
6225
  type: import("vue").PropType<boolean>;
6100
6226
  default: boolean;
@@ -6111,10 +6237,6 @@ declare const _default: {
6111
6237
  type: import("vue").PropType<boolean>;
6112
6238
  default: boolean;
6113
6239
  };
6114
- emptyStateTitle: {
6115
- type: import("vue").PropType<string>;
6116
- default: string;
6117
- };
6118
6240
  emptyStateSubtitle: {
6119
6241
  type: import("vue").PropType<string>;
6120
6242
  default: string;
@@ -6131,10 +6253,6 @@ declare const _default: {
6131
6253
  type: import("vue").PropType<number | ((index: number) => number)>;
6132
6254
  default: number;
6133
6255
  };
6134
- loadingRowCount: {
6135
- type: import("vue").PropType<number>;
6136
- default: number;
6137
- };
6138
6256
  defaultScrollPosition: {
6139
6257
  type: import("vue").PropType<number>;
6140
6258
  default: any;
@@ -6218,6 +6336,14 @@ declare const _default: {
6218
6336
  type: import("vue").PropType<boolean>;
6219
6337
  default: boolean;
6220
6338
  };
6339
+ loadingRowCount: {
6340
+ type: import("vue").PropType<number>;
6341
+ default: number;
6342
+ };
6343
+ emptyStateTitle: {
6344
+ type: import("vue").PropType<string>;
6345
+ default: string;
6346
+ };
6221
6347
  isSticky: {
6222
6348
  type: import("vue").PropType<boolean>;
6223
6349
  default: boolean;
@@ -6234,10 +6360,6 @@ declare const _default: {
6234
6360
  type: import("vue").PropType<boolean>;
6235
6361
  default: boolean;
6236
6362
  };
6237
- emptyStateTitle: {
6238
- type: import("vue").PropType<string>;
6239
- default: string;
6240
- };
6241
6363
  emptyStateSubtitle: {
6242
6364
  type: import("vue").PropType<string>;
6243
6365
  default: string;
@@ -6254,10 +6376,6 @@ declare const _default: {
6254
6376
  type: import("vue").PropType<number | ((index: number) => number)>;
6255
6377
  default: number;
6256
6378
  };
6257
- loadingRowCount: {
6258
- type: import("vue").PropType<number>;
6259
- default: number;
6260
- };
6261
6379
  defaultScrollPosition: {
6262
6380
  type: import("vue").PropType<number>;
6263
6381
  default: any;
@@ -6322,15 +6440,15 @@ declare const _default: {
6322
6440
  searchPlaceholder: string;
6323
6441
  selection: unknown[];
6324
6442
  showSearch: boolean;
6443
+ loadingRowCount: number;
6444
+ emptyStateTitle: string;
6325
6445
  isSticky: boolean;
6326
6446
  sections: import("./components/table/common/Table.types").Section[];
6327
6447
  isStickyHeader: boolean;
6328
- emptyStateTitle: string;
6329
6448
  emptyStateSubtitle: string;
6330
6449
  isInfiniteScroll: boolean;
6331
6450
  infiniteScrollThreshold: number;
6332
6451
  rowHeight: number | ((index: number) => number);
6333
- loadingRowCount: number;
6334
6452
  defaultScrollPosition: number;
6335
6453
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6336
6454
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
@@ -6462,10 +6580,10 @@ declare const _default: {
6462
6580
  searchPlaceholder: string;
6463
6581
  count: number;
6464
6582
  showSearch: boolean;
6465
- isSticky: boolean;
6583
+ loadingRowCount: number;
6466
6584
  emptyStateTitle: string;
6585
+ isSticky: boolean;
6467
6586
  emptyStateSubtitle: string;
6468
- loadingRowCount: number;
6469
6587
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6470
6588
  zIndexBase: number;
6471
6589
  totalCount: number;
@@ -6499,22 +6617,22 @@ declare const _default: {
6499
6617
  type: import("vue").PropType<boolean>;
6500
6618
  default: boolean;
6501
6619
  };
6502
- isSticky: {
6503
- type: import("vue").PropType<boolean>;
6504
- default: boolean;
6620
+ loadingRowCount: {
6621
+ type: import("vue").PropType<number>;
6622
+ default: number;
6505
6623
  };
6506
6624
  emptyStateTitle: {
6507
6625
  type: import("vue").PropType<string>;
6508
6626
  default: string;
6509
6627
  };
6628
+ isSticky: {
6629
+ type: import("vue").PropType<boolean>;
6630
+ default: boolean;
6631
+ };
6510
6632
  emptyStateSubtitle: {
6511
6633
  type: import("vue").PropType<string>;
6512
6634
  default: string;
6513
6635
  };
6514
- loadingRowCount: {
6515
- type: import("vue").PropType<number>;
6516
- default: number;
6517
- };
6518
6636
  emptyStateVariant: {
6519
6637
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6520
6638
  default: any;
@@ -6554,7 +6672,7 @@ declare const _default: {
6554
6672
  onOnScroll?: (scrollTop: number) => any;
6555
6673
  onOnClearSearch?: () => any;
6556
6674
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
6557
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "isSticky" | "emptyStateTitle" | "emptyStateSubtitle" | "loadingRowCount" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
6675
+ } & 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
6676
  $attrs: {
6559
6677
  [x: string]: unknown;
6560
6678
  };
@@ -6593,22 +6711,22 @@ declare const _default: {
6593
6711
  type: import("vue").PropType<boolean>;
6594
6712
  default: boolean;
6595
6713
  };
6596
- isSticky: {
6597
- type: import("vue").PropType<boolean>;
6598
- default: boolean;
6714
+ loadingRowCount: {
6715
+ type: import("vue").PropType<number>;
6716
+ default: number;
6599
6717
  };
6600
6718
  emptyStateTitle: {
6601
6719
  type: import("vue").PropType<string>;
6602
6720
  default: string;
6603
6721
  };
6722
+ isSticky: {
6723
+ type: import("vue").PropType<boolean>;
6724
+ default: boolean;
6725
+ };
6604
6726
  emptyStateSubtitle: {
6605
6727
  type: import("vue").PropType<string>;
6606
6728
  default: string;
6607
6729
  };
6608
- loadingRowCount: {
6609
- type: import("vue").PropType<number>;
6610
- default: number;
6611
- };
6612
6730
  emptyStateVariant: {
6613
6731
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6614
6732
  default: any;
@@ -6660,10 +6778,10 @@ declare const _default: {
6660
6778
  searchPlaceholder: string;
6661
6779
  count: number;
6662
6780
  showSearch: boolean;
6663
- isSticky: boolean;
6781
+ loadingRowCount: number;
6664
6782
  emptyStateTitle: string;
6783
+ isSticky: boolean;
6665
6784
  emptyStateSubtitle: string;
6666
- loadingRowCount: number;
6667
6785
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6668
6786
  zIndexBase: number;
6669
6787
  totalCount: number;
@@ -6717,22 +6835,22 @@ declare const _default: {
6717
6835
  type: import("vue").PropType<boolean>;
6718
6836
  default: boolean;
6719
6837
  };
6720
- isSticky: {
6721
- type: import("vue").PropType<boolean>;
6722
- default: boolean;
6838
+ loadingRowCount: {
6839
+ type: import("vue").PropType<number>;
6840
+ default: number;
6723
6841
  };
6724
6842
  emptyStateTitle: {
6725
6843
  type: import("vue").PropType<string>;
6726
6844
  default: string;
6727
6845
  };
6846
+ isSticky: {
6847
+ type: import("vue").PropType<boolean>;
6848
+ default: boolean;
6849
+ };
6728
6850
  emptyStateSubtitle: {
6729
6851
  type: import("vue").PropType<string>;
6730
6852
  default: string;
6731
6853
  };
6732
- loadingRowCount: {
6733
- type: import("vue").PropType<number>;
6734
- default: number;
6735
- };
6736
6854
  emptyStateVariant: {
6737
6855
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6738
6856
  default: any;
@@ -6801,22 +6919,22 @@ declare const _default: {
6801
6919
  type: import("vue").PropType<boolean>;
6802
6920
  default: boolean;
6803
6921
  };
6804
- isSticky: {
6805
- type: import("vue").PropType<boolean>;
6806
- default: boolean;
6922
+ loadingRowCount: {
6923
+ type: import("vue").PropType<number>;
6924
+ default: number;
6807
6925
  };
6808
6926
  emptyStateTitle: {
6809
6927
  type: import("vue").PropType<string>;
6810
6928
  default: string;
6811
6929
  };
6930
+ isSticky: {
6931
+ type: import("vue").PropType<boolean>;
6932
+ default: boolean;
6933
+ };
6812
6934
  emptyStateSubtitle: {
6813
6935
  type: import("vue").PropType<string>;
6814
6936
  default: string;
6815
6937
  };
6816
- loadingRowCount: {
6817
- type: import("vue").PropType<number>;
6818
- default: number;
6819
- };
6820
6938
  emptyStateVariant: {
6821
6939
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6822
6940
  default: any;
@@ -6868,10 +6986,10 @@ declare const _default: {
6868
6986
  searchPlaceholder: string;
6869
6987
  count: number;
6870
6988
  showSearch: boolean;
6871
- isSticky: boolean;
6989
+ loadingRowCount: number;
6872
6990
  emptyStateTitle: string;
6991
+ isSticky: boolean;
6873
6992
  emptyStateSubtitle: string;
6874
- loadingRowCount: number;
6875
6993
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6876
6994
  zIndexBase: number;
6877
6995
  totalCount: number;
@@ -6887,7 +7005,9 @@ declare const _default: {
6887
7005
  cellIndex: any;
6888
7006
  row: any;
6889
7007
  rowIndex: any;
6890
- }) => any>>;
7008
+ }) => any>> & {
7009
+ "empty-state"?(_: {}): any;
7010
+ };
6891
7011
  })))[];
6892
7012
  MultipleDataGrid: {
6893
7013
  new (...args: any[]): {
@@ -6900,10 +7020,10 @@ declare const _default: {
6900
7020
  searchPlaceholder: string;
6901
7021
  count: number;
6902
7022
  showSearch: boolean;
6903
- isSticky: boolean;
7023
+ loadingRowCount: number;
6904
7024
  emptyStateTitle: string;
7025
+ isSticky: boolean;
6905
7026
  emptyStateSubtitle: string;
6906
- loadingRowCount: number;
6907
7027
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6908
7028
  zIndexBase: number;
6909
7029
  totalCount: number;
@@ -6937,22 +7057,22 @@ declare const _default: {
6937
7057
  type: import("vue").PropType<boolean>;
6938
7058
  default: boolean;
6939
7059
  };
6940
- isSticky: {
6941
- type: import("vue").PropType<boolean>;
6942
- default: boolean;
7060
+ loadingRowCount: {
7061
+ type: import("vue").PropType<number>;
7062
+ default: number;
6943
7063
  };
6944
7064
  emptyStateTitle: {
6945
7065
  type: import("vue").PropType<string>;
6946
7066
  default: string;
6947
7067
  };
7068
+ isSticky: {
7069
+ type: import("vue").PropType<boolean>;
7070
+ default: boolean;
7071
+ };
6948
7072
  emptyStateSubtitle: {
6949
7073
  type: import("vue").PropType<string>;
6950
7074
  default: string;
6951
7075
  };
6952
- loadingRowCount: {
6953
- type: import("vue").PropType<number>;
6954
- default: number;
6955
- };
6956
7076
  emptyStateVariant: {
6957
7077
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6958
7078
  default: any;
@@ -6992,7 +7112,7 @@ declare const _default: {
6992
7112
  onOnScroll?: (scrollTop: number) => any;
6993
7113
  onOnClearSearch?: () => any;
6994
7114
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
6995
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "isSticky" | "emptyStateTitle" | "emptyStateSubtitle" | "loadingRowCount" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7115
+ } & 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
7116
  $attrs: {
6997
7117
  [x: string]: unknown;
6998
7118
  };
@@ -7031,22 +7151,22 @@ declare const _default: {
7031
7151
  type: import("vue").PropType<boolean>;
7032
7152
  default: boolean;
7033
7153
  };
7034
- isSticky: {
7035
- type: import("vue").PropType<boolean>;
7036
- default: boolean;
7154
+ loadingRowCount: {
7155
+ type: import("vue").PropType<number>;
7156
+ default: number;
7037
7157
  };
7038
7158
  emptyStateTitle: {
7039
7159
  type: import("vue").PropType<string>;
7040
7160
  default: string;
7041
7161
  };
7162
+ isSticky: {
7163
+ type: import("vue").PropType<boolean>;
7164
+ default: boolean;
7165
+ };
7042
7166
  emptyStateSubtitle: {
7043
7167
  type: import("vue").PropType<string>;
7044
7168
  default: string;
7045
7169
  };
7046
- loadingRowCount: {
7047
- type: import("vue").PropType<number>;
7048
- default: number;
7049
- };
7050
7170
  emptyStateVariant: {
7051
7171
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7052
7172
  default: any;
@@ -7098,10 +7218,10 @@ declare const _default: {
7098
7218
  searchPlaceholder: string;
7099
7219
  count: number;
7100
7220
  showSearch: boolean;
7101
- isSticky: boolean;
7221
+ loadingRowCount: number;
7102
7222
  emptyStateTitle: string;
7223
+ isSticky: boolean;
7103
7224
  emptyStateSubtitle: string;
7104
- loadingRowCount: number;
7105
7225
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7106
7226
  zIndexBase: number;
7107
7227
  totalCount: number;
@@ -7155,22 +7275,22 @@ declare const _default: {
7155
7275
  type: import("vue").PropType<boolean>;
7156
7276
  default: boolean;
7157
7277
  };
7158
- isSticky: {
7159
- type: import("vue").PropType<boolean>;
7160
- default: boolean;
7278
+ loadingRowCount: {
7279
+ type: import("vue").PropType<number>;
7280
+ default: number;
7161
7281
  };
7162
7282
  emptyStateTitle: {
7163
7283
  type: import("vue").PropType<string>;
7164
7284
  default: string;
7165
7285
  };
7286
+ isSticky: {
7287
+ type: import("vue").PropType<boolean>;
7288
+ default: boolean;
7289
+ };
7166
7290
  emptyStateSubtitle: {
7167
7291
  type: import("vue").PropType<string>;
7168
7292
  default: string;
7169
7293
  };
7170
- loadingRowCount: {
7171
- type: import("vue").PropType<number>;
7172
- default: number;
7173
- };
7174
7294
  emptyStateVariant: {
7175
7295
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7176
7296
  default: any;
@@ -7239,22 +7359,22 @@ declare const _default: {
7239
7359
  type: import("vue").PropType<boolean>;
7240
7360
  default: boolean;
7241
7361
  };
7242
- isSticky: {
7243
- type: import("vue").PropType<boolean>;
7244
- default: boolean;
7362
+ loadingRowCount: {
7363
+ type: import("vue").PropType<number>;
7364
+ default: number;
7245
7365
  };
7246
7366
  emptyStateTitle: {
7247
7367
  type: import("vue").PropType<string>;
7248
7368
  default: string;
7249
7369
  };
7370
+ isSticky: {
7371
+ type: import("vue").PropType<boolean>;
7372
+ default: boolean;
7373
+ };
7250
7374
  emptyStateSubtitle: {
7251
7375
  type: import("vue").PropType<string>;
7252
7376
  default: string;
7253
7377
  };
7254
- loadingRowCount: {
7255
- type: import("vue").PropType<number>;
7256
- default: number;
7257
- };
7258
7378
  emptyStateVariant: {
7259
7379
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7260
7380
  default: any;
@@ -7306,10 +7426,10 @@ declare const _default: {
7306
7426
  searchPlaceholder: string;
7307
7427
  count: number;
7308
7428
  showSearch: boolean;
7309
- isSticky: boolean;
7429
+ loadingRowCount: number;
7310
7430
  emptyStateTitle: string;
7431
+ isSticky: boolean;
7311
7432
  emptyStateSubtitle: string;
7312
- loadingRowCount: number;
7313
7433
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7314
7434
  zIndexBase: number;
7315
7435
  totalCount: number;
@@ -7325,7 +7445,9 @@ declare const _default: {
7325
7445
  cellIndex: any;
7326
7446
  row: any;
7327
7447
  rowIndex: any;
7328
- }) => any>>;
7448
+ }) => any>> & {
7449
+ "empty-state"?(_: {}): any;
7450
+ };
7329
7451
  });
7330
7452
  Table: {
7331
7453
  new (...args: any[]): {
@@ -7334,15 +7456,15 @@ declare const _default: {
7334
7456
  $props: Partial<{
7335
7457
  testId: string;
7336
7458
  isLoading: boolean;
7459
+ loadingRowCount: number;
7460
+ emptyStateTitle: string;
7337
7461
  isSticky: boolean;
7338
7462
  sections: import("./components/table/common/Table.types").Section[];
7339
7463
  isStickyHeader: boolean;
7340
- emptyStateTitle: string;
7341
7464
  emptyStateSubtitle: string;
7342
7465
  isInfiniteScroll: boolean;
7343
7466
  infiniteScrollThreshold: number;
7344
7467
  rowHeight: number | ((index: number) => number);
7345
- loadingRowCount: number;
7346
7468
  defaultScrollPosition: number;
7347
7469
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
7348
7470
  sort: {
@@ -7365,6 +7487,14 @@ declare const _default: {
7365
7487
  type: import("vue").PropType<boolean>;
7366
7488
  default: boolean;
7367
7489
  };
7490
+ loadingRowCount: {
7491
+ type: import("vue").PropType<number>;
7492
+ default: number;
7493
+ };
7494
+ emptyStateTitle: {
7495
+ type: import("vue").PropType<string>;
7496
+ default: string;
7497
+ };
7368
7498
  isSticky: {
7369
7499
  type: import("vue").PropType<boolean>;
7370
7500
  default: boolean;
@@ -7381,10 +7511,6 @@ declare const _default: {
7381
7511
  type: import("vue").PropType<boolean>;
7382
7512
  default: boolean;
7383
7513
  };
7384
- emptyStateTitle: {
7385
- type: import("vue").PropType<string>;
7386
- default: string;
7387
- };
7388
7514
  emptyStateSubtitle: {
7389
7515
  type: import("vue").PropType<string>;
7390
7516
  default: string;
@@ -7401,10 +7527,6 @@ declare const _default: {
7401
7527
  type: import("vue").PropType<number | ((index: number) => number)>;
7402
7528
  default: number;
7403
7529
  };
7404
- loadingRowCount: {
7405
- type: import("vue").PropType<number>;
7406
- default: number;
7407
- };
7408
7530
  defaultScrollPosition: {
7409
7531
  type: import("vue").PropType<number>;
7410
7532
  default: any;
@@ -7419,7 +7541,7 @@ declare const _default: {
7419
7541
  cellIndex: number;
7420
7542
  }) => any;
7421
7543
  onLoadMore?: () => any;
7422
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition">;
7544
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
7423
7545
  $attrs: {
7424
7546
  [x: string]: unknown;
7425
7547
  };
@@ -7459,6 +7581,14 @@ declare const _default: {
7459
7581
  type: import("vue").PropType<boolean>;
7460
7582
  default: boolean;
7461
7583
  };
7584
+ loadingRowCount: {
7585
+ type: import("vue").PropType<number>;
7586
+ default: number;
7587
+ };
7588
+ emptyStateTitle: {
7589
+ type: import("vue").PropType<string>;
7590
+ default: string;
7591
+ };
7462
7592
  isSticky: {
7463
7593
  type: import("vue").PropType<boolean>;
7464
7594
  default: boolean;
@@ -7475,10 +7605,6 @@ declare const _default: {
7475
7605
  type: import("vue").PropType<boolean>;
7476
7606
  default: boolean;
7477
7607
  };
7478
- emptyStateTitle: {
7479
- type: import("vue").PropType<string>;
7480
- default: string;
7481
- };
7482
7608
  emptyStateSubtitle: {
7483
7609
  type: import("vue").PropType<string>;
7484
7610
  default: string;
@@ -7495,10 +7621,6 @@ declare const _default: {
7495
7621
  type: import("vue").PropType<number | ((index: number) => number)>;
7496
7622
  default: number;
7497
7623
  };
7498
- loadingRowCount: {
7499
- type: import("vue").PropType<number>;
7500
- default: number;
7501
- };
7502
7624
  defaultScrollPosition: {
7503
7625
  type: import("vue").PropType<number>;
7504
7626
  default: any;
@@ -7526,15 +7648,15 @@ declare const _default: {
7526
7648
  }, string, {
7527
7649
  testId: string;
7528
7650
  isLoading: boolean;
7651
+ loadingRowCount: number;
7652
+ emptyStateTitle: string;
7529
7653
  isSticky: boolean;
7530
7654
  sections: import("./components/table/common/Table.types").Section[];
7531
7655
  isStickyHeader: boolean;
7532
- emptyStateTitle: string;
7533
7656
  emptyStateSubtitle: string;
7534
7657
  isInfiniteScroll: boolean;
7535
7658
  infiniteScrollThreshold: number;
7536
7659
  rowHeight: number | ((index: number) => number);
7537
- loadingRowCount: number;
7538
7660
  defaultScrollPosition: number;
7539
7661
  }, {}, string> & {
7540
7662
  beforeCreate?: (() => void) | (() => void)[];
@@ -7577,6 +7699,14 @@ declare const _default: {
7577
7699
  type: import("vue").PropType<boolean>;
7578
7700
  default: boolean;
7579
7701
  };
7702
+ loadingRowCount: {
7703
+ type: import("vue").PropType<number>;
7704
+ default: number;
7705
+ };
7706
+ emptyStateTitle: {
7707
+ type: import("vue").PropType<string>;
7708
+ default: string;
7709
+ };
7580
7710
  isSticky: {
7581
7711
  type: import("vue").PropType<boolean>;
7582
7712
  default: boolean;
@@ -7593,10 +7723,6 @@ declare const _default: {
7593
7723
  type: import("vue").PropType<boolean>;
7594
7724
  default: boolean;
7595
7725
  };
7596
- emptyStateTitle: {
7597
- type: import("vue").PropType<string>;
7598
- default: string;
7599
- };
7600
7726
  emptyStateSubtitle: {
7601
7727
  type: import("vue").PropType<string>;
7602
7728
  default: string;
@@ -7613,10 +7739,6 @@ declare const _default: {
7613
7739
  type: import("vue").PropType<number | ((index: number) => number)>;
7614
7740
  default: number;
7615
7741
  };
7616
- loadingRowCount: {
7617
- type: import("vue").PropType<number>;
7618
- default: number;
7619
- };
7620
7742
  defaultScrollPosition: {
7621
7743
  type: import("vue").PropType<number>;
7622
7744
  default: any;
@@ -7656,6 +7778,14 @@ declare const _default: {
7656
7778
  type: import("vue").PropType<boolean>;
7657
7779
  default: boolean;
7658
7780
  };
7781
+ loadingRowCount: {
7782
+ type: import("vue").PropType<number>;
7783
+ default: number;
7784
+ };
7785
+ emptyStateTitle: {
7786
+ type: import("vue").PropType<string>;
7787
+ default: string;
7788
+ };
7659
7789
  isSticky: {
7660
7790
  type: import("vue").PropType<boolean>;
7661
7791
  default: boolean;
@@ -7672,10 +7802,6 @@ declare const _default: {
7672
7802
  type: import("vue").PropType<boolean>;
7673
7803
  default: boolean;
7674
7804
  };
7675
- emptyStateTitle: {
7676
- type: import("vue").PropType<string>;
7677
- default: string;
7678
- };
7679
7805
  emptyStateSubtitle: {
7680
7806
  type: import("vue").PropType<string>;
7681
7807
  default: string;
@@ -7692,10 +7818,6 @@ declare const _default: {
7692
7818
  type: import("vue").PropType<number | ((index: number) => number)>;
7693
7819
  default: number;
7694
7820
  };
7695
- loadingRowCount: {
7696
- type: import("vue").PropType<number>;
7697
- default: number;
7698
- };
7699
7821
  defaultScrollPosition: {
7700
7822
  type: import("vue").PropType<number>;
7701
7823
  default: any;
@@ -7723,15 +7845,15 @@ declare const _default: {
7723
7845
  }, string, {
7724
7846
  testId: string;
7725
7847
  isLoading: boolean;
7848
+ loadingRowCount: number;
7849
+ emptyStateTitle: string;
7726
7850
  isSticky: boolean;
7727
7851
  sections: import("./components/table/common/Table.types").Section[];
7728
7852
  isStickyHeader: boolean;
7729
- emptyStateTitle: string;
7730
7853
  emptyStateSubtitle: string;
7731
7854
  isInfiniteScroll: boolean;
7732
7855
  infiniteScrollThreshold: number;
7733
7856
  rowHeight: number | ((index: number) => number);
7734
- loadingRowCount: number;
7735
7857
  defaultScrollPosition: number;
7736
7858
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
7737
7859
  $slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
@@ -7762,15 +7884,15 @@ declare const _default: {
7762
7884
  $props: Partial<{
7763
7885
  testId: string;
7764
7886
  isLoading: boolean;
7887
+ loadingRowCount: number;
7888
+ emptyStateTitle: string;
7765
7889
  isSticky: boolean;
7766
7890
  sections: import("./components/table/common/Table.types").Section[];
7767
7891
  isStickyHeader: boolean;
7768
- emptyStateTitle: string;
7769
7892
  emptyStateSubtitle: string;
7770
7893
  isInfiniteScroll: boolean;
7771
7894
  infiniteScrollThreshold: number;
7772
7895
  rowHeight: number | ((index: number) => number);
7773
- loadingRowCount: number;
7774
7896
  defaultScrollPosition: number;
7775
7897
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
7776
7898
  sort: {
@@ -7793,6 +7915,14 @@ declare const _default: {
7793
7915
  type: import("vue").PropType<boolean>;
7794
7916
  default: boolean;
7795
7917
  };
7918
+ loadingRowCount: {
7919
+ type: import("vue").PropType<number>;
7920
+ default: number;
7921
+ };
7922
+ emptyStateTitle: {
7923
+ type: import("vue").PropType<string>;
7924
+ default: string;
7925
+ };
7796
7926
  isSticky: {
7797
7927
  type: import("vue").PropType<boolean>;
7798
7928
  default: boolean;
@@ -7809,10 +7939,6 @@ declare const _default: {
7809
7939
  type: import("vue").PropType<boolean>;
7810
7940
  default: boolean;
7811
7941
  };
7812
- emptyStateTitle: {
7813
- type: import("vue").PropType<string>;
7814
- default: string;
7815
- };
7816
7942
  emptyStateSubtitle: {
7817
7943
  type: import("vue").PropType<string>;
7818
7944
  default: string;
@@ -7829,10 +7955,6 @@ declare const _default: {
7829
7955
  type: import("vue").PropType<number | ((index: number) => number)>;
7830
7956
  default: number;
7831
7957
  };
7832
- loadingRowCount: {
7833
- type: import("vue").PropType<number>;
7834
- default: number;
7835
- };
7836
7958
  defaultScrollPosition: {
7837
7959
  type: import("vue").PropType<number>;
7838
7960
  default: any;
@@ -7847,7 +7969,7 @@ declare const _default: {
7847
7969
  cellIndex: number;
7848
7970
  }) => any;
7849
7971
  onLoadMore?: () => any;
7850
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition">;
7972
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
7851
7973
  $attrs: {
7852
7974
  [x: string]: unknown;
7853
7975
  };
@@ -7887,6 +8009,14 @@ declare const _default: {
7887
8009
  type: import("vue").PropType<boolean>;
7888
8010
  default: boolean;
7889
8011
  };
8012
+ loadingRowCount: {
8013
+ type: import("vue").PropType<number>;
8014
+ default: number;
8015
+ };
8016
+ emptyStateTitle: {
8017
+ type: import("vue").PropType<string>;
8018
+ default: string;
8019
+ };
7890
8020
  isSticky: {
7891
8021
  type: import("vue").PropType<boolean>;
7892
8022
  default: boolean;
@@ -7903,10 +8033,6 @@ declare const _default: {
7903
8033
  type: import("vue").PropType<boolean>;
7904
8034
  default: boolean;
7905
8035
  };
7906
- emptyStateTitle: {
7907
- type: import("vue").PropType<string>;
7908
- default: string;
7909
- };
7910
8036
  emptyStateSubtitle: {
7911
8037
  type: import("vue").PropType<string>;
7912
8038
  default: string;
@@ -7923,10 +8049,6 @@ declare const _default: {
7923
8049
  type: import("vue").PropType<number | ((index: number) => number)>;
7924
8050
  default: number;
7925
8051
  };
7926
- loadingRowCount: {
7927
- type: import("vue").PropType<number>;
7928
- default: number;
7929
- };
7930
8052
  defaultScrollPosition: {
7931
8053
  type: import("vue").PropType<number>;
7932
8054
  default: any;
@@ -7954,15 +8076,15 @@ declare const _default: {
7954
8076
  }, string, {
7955
8077
  testId: string;
7956
8078
  isLoading: boolean;
8079
+ loadingRowCount: number;
8080
+ emptyStateTitle: string;
7957
8081
  isSticky: boolean;
7958
8082
  sections: import("./components/table/common/Table.types").Section[];
7959
8083
  isStickyHeader: boolean;
7960
- emptyStateTitle: string;
7961
8084
  emptyStateSubtitle: string;
7962
8085
  isInfiniteScroll: boolean;
7963
8086
  infiniteScrollThreshold: number;
7964
8087
  rowHeight: number | ((index: number) => number);
7965
- loadingRowCount: number;
7966
8088
  defaultScrollPosition: number;
7967
8089
  }, {}, string> & {
7968
8090
  beforeCreate?: (() => void) | (() => void)[];
@@ -8005,6 +8127,14 @@ declare const _default: {
8005
8127
  type: import("vue").PropType<boolean>;
8006
8128
  default: boolean;
8007
8129
  };
8130
+ loadingRowCount: {
8131
+ type: import("vue").PropType<number>;
8132
+ default: number;
8133
+ };
8134
+ emptyStateTitle: {
8135
+ type: import("vue").PropType<string>;
8136
+ default: string;
8137
+ };
8008
8138
  isSticky: {
8009
8139
  type: import("vue").PropType<boolean>;
8010
8140
  default: boolean;
@@ -8021,10 +8151,6 @@ declare const _default: {
8021
8151
  type: import("vue").PropType<boolean>;
8022
8152
  default: boolean;
8023
8153
  };
8024
- emptyStateTitle: {
8025
- type: import("vue").PropType<string>;
8026
- default: string;
8027
- };
8028
8154
  emptyStateSubtitle: {
8029
8155
  type: import("vue").PropType<string>;
8030
8156
  default: string;
@@ -8041,10 +8167,6 @@ declare const _default: {
8041
8167
  type: import("vue").PropType<number | ((index: number) => number)>;
8042
8168
  default: number;
8043
8169
  };
8044
- loadingRowCount: {
8045
- type: import("vue").PropType<number>;
8046
- default: number;
8047
- };
8048
8170
  defaultScrollPosition: {
8049
8171
  type: import("vue").PropType<number>;
8050
8172
  default: any;
@@ -8084,6 +8206,14 @@ declare const _default: {
8084
8206
  type: import("vue").PropType<boolean>;
8085
8207
  default: boolean;
8086
8208
  };
8209
+ loadingRowCount: {
8210
+ type: import("vue").PropType<number>;
8211
+ default: number;
8212
+ };
8213
+ emptyStateTitle: {
8214
+ type: import("vue").PropType<string>;
8215
+ default: string;
8216
+ };
8087
8217
  isSticky: {
8088
8218
  type: import("vue").PropType<boolean>;
8089
8219
  default: boolean;
@@ -8100,10 +8230,6 @@ declare const _default: {
8100
8230
  type: import("vue").PropType<boolean>;
8101
8231
  default: boolean;
8102
8232
  };
8103
- emptyStateTitle: {
8104
- type: import("vue").PropType<string>;
8105
- default: string;
8106
- };
8107
8233
  emptyStateSubtitle: {
8108
8234
  type: import("vue").PropType<string>;
8109
8235
  default: string;
@@ -8120,10 +8246,6 @@ declare const _default: {
8120
8246
  type: import("vue").PropType<number | ((index: number) => number)>;
8121
8247
  default: number;
8122
8248
  };
8123
- loadingRowCount: {
8124
- type: import("vue").PropType<number>;
8125
- default: number;
8126
- };
8127
8249
  defaultScrollPosition: {
8128
8250
  type: import("vue").PropType<number>;
8129
8251
  default: any;
@@ -8151,15 +8273,15 @@ declare const _default: {
8151
8273
  }, string, {
8152
8274
  testId: string;
8153
8275
  isLoading: boolean;
8276
+ loadingRowCount: number;
8277
+ emptyStateTitle: string;
8154
8278
  isSticky: boolean;
8155
8279
  sections: import("./components/table/common/Table.types").Section[];
8156
8280
  isStickyHeader: boolean;
8157
- emptyStateTitle: string;
8158
8281
  emptyStateSubtitle: string;
8159
8282
  isInfiniteScroll: boolean;
8160
8283
  infiniteScrollThreshold: number;
8161
8284
  rowHeight: number | ((index: number) => number);
8162
- loadingRowCount: number;
8163
8285
  defaultScrollPosition: number;
8164
8286
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
8165
8287
  $slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
@@ -8808,22 +8930,18 @@ declare const _default: {
8808
8930
  $: import("vue").ComponentInternalInstance;
8809
8931
  $data: {};
8810
8932
  $props: Partial<{
8811
- container: string;
8812
8933
  header: string;
8813
8934
  text: string;
8814
8935
  theme: string;
8815
8936
  disabled: boolean;
8816
8937
  testId: string;
8938
+ container: string;
8817
8939
  delay: number;
8818
8940
  triggers: ("touch" | "click" | "focus" | "hover")[];
8819
8941
  forceShowWithTruncate: boolean;
8820
8942
  placement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
8821
8943
  distance: string | number;
8822
8944
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8823
- container: {
8824
- type: import("vue").PropType<string>;
8825
- default: string;
8826
- };
8827
8945
  header: {
8828
8946
  type: import("vue").PropType<string>;
8829
8947
  default: any;
@@ -8844,6 +8962,10 @@ declare const _default: {
8844
8962
  type: import("vue").PropType<string>;
8845
8963
  default: string;
8846
8964
  };
8965
+ container: {
8966
+ type: import("vue").PropType<string>;
8967
+ default: string;
8968
+ };
8847
8969
  delay: {
8848
8970
  type: import("vue").PropType<number>;
8849
8971
  default: number;
@@ -8866,7 +8988,7 @@ declare const _default: {
8866
8988
  };
8867
8989
  }>> & {
8868
8990
  onShow?: () => any;
8869
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "header" | "text" | "theme" | "disabled" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
8991
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
8870
8992
  $attrs: {
8871
8993
  [x: string]: unknown;
8872
8994
  };
@@ -8881,10 +9003,6 @@ declare const _default: {
8881
9003
  $emit: (event: "show") => void;
8882
9004
  $el: any;
8883
9005
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
8884
- container: {
8885
- type: import("vue").PropType<string>;
8886
- default: string;
8887
- };
8888
9006
  header: {
8889
9007
  type: import("vue").PropType<string>;
8890
9008
  default: any;
@@ -8905,6 +9023,10 @@ declare const _default: {
8905
9023
  type: import("vue").PropType<string>;
8906
9024
  default: string;
8907
9025
  };
9026
+ container: {
9027
+ type: import("vue").PropType<string>;
9028
+ default: string;
9029
+ };
8908
9030
  delay: {
8909
9031
  type: import("vue").PropType<number>;
8910
9032
  default: number;
@@ -8930,12 +9052,12 @@ declare const _default: {
8930
9052
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8931
9053
  show: () => void;
8932
9054
  }, string, {
8933
- container: string;
8934
9055
  header: string;
8935
9056
  text: string;
8936
9057
  theme: string;
8937
9058
  disabled: boolean;
8938
9059
  testId: string;
9060
+ container: string;
8939
9061
  delay: number;
8940
9062
  triggers: ("touch" | "click" | "focus" | "hover")[];
8941
9063
  forceShowWithTruncate: boolean;
@@ -8962,10 +9084,6 @@ declare const _default: {
8962
9084
  $nextTick: typeof import("vue").nextTick;
8963
9085
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
8964
9086
  } & Readonly<import("vue").ExtractPropTypes<{
8965
- container: {
8966
- type: import("vue").PropType<string>;
8967
- default: string;
8968
- };
8969
9087
  header: {
8970
9088
  type: import("vue").PropType<string>;
8971
9089
  default: any;
@@ -8986,6 +9104,10 @@ declare const _default: {
8986
9104
  type: import("vue").PropType<string>;
8987
9105
  default: string;
8988
9106
  };
9107
+ container: {
9108
+ type: import("vue").PropType<string>;
9109
+ default: string;
9110
+ };
8989
9111
  delay: {
8990
9112
  type: import("vue").PropType<number>;
8991
9113
  default: number;
@@ -9013,10 +9135,6 @@ declare const _default: {
9013
9135
  __isTeleport?: never;
9014
9136
  __isSuspense?: never;
9015
9137
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
9016
- container: {
9017
- type: import("vue").PropType<string>;
9018
- default: string;
9019
- };
9020
9138
  header: {
9021
9139
  type: import("vue").PropType<string>;
9022
9140
  default: any;
@@ -9037,6 +9155,10 @@ declare const _default: {
9037
9155
  type: import("vue").PropType<string>;
9038
9156
  default: string;
9039
9157
  };
9158
+ container: {
9159
+ type: import("vue").PropType<string>;
9160
+ default: string;
9161
+ };
9040
9162
  delay: {
9041
9163
  type: import("vue").PropType<number>;
9042
9164
  default: number;
@@ -9062,12 +9184,12 @@ declare const _default: {
9062
9184
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9063
9185
  show: () => void;
9064
9186
  }, string, {
9065
- container: string;
9066
9187
  header: string;
9067
9188
  text: string;
9068
9189
  theme: string;
9069
9190
  disabled: boolean;
9070
9191
  testId: string;
9192
+ container: string;
9071
9193
  delay: number;
9072
9194
  triggers: ("touch" | "click" | "focus" | "hover")[];
9073
9195
  forceShowWithTruncate: boolean;
@@ -9086,22 +9208,18 @@ declare const _default: {
9086
9208
  $: import("vue").ComponentInternalInstance;
9087
9209
  $data: {};
9088
9210
  $props: Partial<{
9089
- container: string;
9090
9211
  header: string;
9091
9212
  text: string;
9092
9213
  theme: string;
9093
9214
  disabled: boolean;
9094
9215
  testId: string;
9216
+ container: string;
9095
9217
  delay: number;
9096
9218
  triggers: ("touch" | "click" | "focus" | "hover")[];
9097
9219
  forceShowWithTruncate: boolean;
9098
9220
  placement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
9099
9221
  distance: string | number;
9100
9222
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9101
- container: {
9102
- type: import("vue").PropType<string>;
9103
- default: string;
9104
- };
9105
9223
  header: {
9106
9224
  type: import("vue").PropType<string>;
9107
9225
  default: any;
@@ -9122,6 +9240,10 @@ declare const _default: {
9122
9240
  type: import("vue").PropType<string>;
9123
9241
  default: string;
9124
9242
  };
9243
+ container: {
9244
+ type: import("vue").PropType<string>;
9245
+ default: string;
9246
+ };
9125
9247
  delay: {
9126
9248
  type: import("vue").PropType<number>;
9127
9249
  default: number;
@@ -9144,7 +9266,7 @@ declare const _default: {
9144
9266
  };
9145
9267
  }>> & {
9146
9268
  onShow?: () => any;
9147
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "header" | "text" | "theme" | "disabled" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
9269
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "disabled" | "testId" | "container" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "distance">;
9148
9270
  $attrs: {
9149
9271
  [x: string]: unknown;
9150
9272
  };
@@ -9159,10 +9281,6 @@ declare const _default: {
9159
9281
  $emit: (event: "show") => void;
9160
9282
  $el: any;
9161
9283
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
9162
- container: {
9163
- type: import("vue").PropType<string>;
9164
- default: string;
9165
- };
9166
9284
  header: {
9167
9285
  type: import("vue").PropType<string>;
9168
9286
  default: any;
@@ -9183,6 +9301,10 @@ declare const _default: {
9183
9301
  type: import("vue").PropType<string>;
9184
9302
  default: string;
9185
9303
  };
9304
+ container: {
9305
+ type: import("vue").PropType<string>;
9306
+ default: string;
9307
+ };
9186
9308
  delay: {
9187
9309
  type: import("vue").PropType<number>;
9188
9310
  default: number;
@@ -9208,12 +9330,12 @@ declare const _default: {
9208
9330
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9209
9331
  show: () => void;
9210
9332
  }, string, {
9211
- container: string;
9212
9333
  header: string;
9213
9334
  text: string;
9214
9335
  theme: string;
9215
9336
  disabled: boolean;
9216
9337
  testId: string;
9338
+ container: string;
9217
9339
  delay: number;
9218
9340
  triggers: ("touch" | "click" | "focus" | "hover")[];
9219
9341
  forceShowWithTruncate: boolean;
@@ -9240,10 +9362,6 @@ declare const _default: {
9240
9362
  $nextTick: typeof import("vue").nextTick;
9241
9363
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
9242
9364
  } & Readonly<import("vue").ExtractPropTypes<{
9243
- container: {
9244
- type: import("vue").PropType<string>;
9245
- default: string;
9246
- };
9247
9365
  header: {
9248
9366
  type: import("vue").PropType<string>;
9249
9367
  default: any;
@@ -9264,6 +9382,10 @@ declare const _default: {
9264
9382
  type: import("vue").PropType<string>;
9265
9383
  default: string;
9266
9384
  };
9385
+ container: {
9386
+ type: import("vue").PropType<string>;
9387
+ default: string;
9388
+ };
9267
9389
  delay: {
9268
9390
  type: import("vue").PropType<number>;
9269
9391
  default: number;
@@ -9291,10 +9413,6 @@ declare const _default: {
9291
9413
  __isTeleport?: never;
9292
9414
  __isSuspense?: never;
9293
9415
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
9294
- container: {
9295
- type: import("vue").PropType<string>;
9296
- default: string;
9297
- };
9298
9416
  header: {
9299
9417
  type: import("vue").PropType<string>;
9300
9418
  default: any;
@@ -9315,6 +9433,10 @@ declare const _default: {
9315
9433
  type: import("vue").PropType<string>;
9316
9434
  default: string;
9317
9435
  };
9436
+ container: {
9437
+ type: import("vue").PropType<string>;
9438
+ default: string;
9439
+ };
9318
9440
  delay: {
9319
9441
  type: import("vue").PropType<number>;
9320
9442
  default: number;
@@ -9340,12 +9462,12 @@ declare const _default: {
9340
9462
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9341
9463
  show: () => void;
9342
9464
  }, string, {
9343
- container: string;
9344
9465
  header: string;
9345
9466
  text: string;
9346
9467
  theme: string;
9347
9468
  disabled: boolean;
9348
9469
  testId: string;
9470
+ container: string;
9349
9471
  delay: number;
9350
9472
  triggers: ("touch" | "click" | "focus" | "hover")[];
9351
9473
  forceShowWithTruncate: boolean;
@@ -14981,13 +15103,13 @@ declare const _default: {
14981
15103
  $: import("vue").ComponentInternalInstance;
14982
15104
  $data: {};
14983
15105
  $props: Partial<{
14984
- container: string;
14985
15106
  theme: string;
14986
15107
  disabled: boolean;
14987
15108
  size: "small" | "medium" | "large";
14988
15109
  flip: boolean;
14989
15110
  mandatory: boolean;
14990
15111
  testId: string;
15112
+ container: string;
14991
15113
  placement: import("floating-vue").Placement;
14992
15114
  distance: number;
14993
15115
  popperClass: string;
@@ -15031,10 +15153,6 @@ declare const _default: {
15031
15153
  disableVirtualScroll: boolean;
15032
15154
  overrideOptionCountCalculation: (option: unknown) => number;
15033
15155
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15034
- container: {
15035
- type: import("vue").PropType<string>;
15036
- default: string;
15037
- };
15038
15156
  theme: {
15039
15157
  type: import("vue").PropType<string>;
15040
15158
  default: string;
@@ -15062,6 +15180,10 @@ declare const _default: {
15062
15180
  type: import("vue").PropType<string>;
15063
15181
  default: string;
15064
15182
  };
15183
+ container: {
15184
+ type: import("vue").PropType<string>;
15185
+ default: string;
15186
+ };
15065
15187
  placement: {
15066
15188
  type: import("vue").PropType<import("floating-vue").Placement>;
15067
15189
  default: string;
@@ -15250,7 +15372,7 @@ declare const _default: {
15250
15372
  "onUpdate:isOpen"?: (value: unknown) => any;
15251
15373
  onOpened?: () => any;
15252
15374
  onClosed?: () => any;
15253
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
15375
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
15254
15376
  $attrs: {
15255
15377
  [x: string]: unknown;
15256
15378
  };
@@ -15265,10 +15387,6 @@ declare const _default: {
15265
15387
  $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
15266
15388
  $el: any;
15267
15389
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
15268
- container: {
15269
- type: import("vue").PropType<string>;
15270
- default: string;
15271
- };
15272
15390
  theme: {
15273
15391
  type: import("vue").PropType<string>;
15274
15392
  default: string;
@@ -15296,6 +15414,10 @@ declare const _default: {
15296
15414
  type: import("vue").PropType<string>;
15297
15415
  default: string;
15298
15416
  };
15417
+ container: {
15418
+ type: import("vue").PropType<string>;
15419
+ default: string;
15420
+ };
15299
15421
  placement: {
15300
15422
  type: import("vue").PropType<import("floating-vue").Placement>;
15301
15423
  default: string;
@@ -15497,13 +15619,13 @@ declare const _default: {
15497
15619
  clear: () => void;
15498
15620
  copyToClipboard: () => void;
15499
15621
  }, string, {
15500
- container: string;
15501
15622
  theme: string;
15502
15623
  disabled: boolean;
15503
15624
  size: "small" | "medium" | "large";
15504
15625
  flip: boolean;
15505
15626
  mandatory: boolean;
15506
15627
  testId: string;
15628
+ container: string;
15507
15629
  placement: import("floating-vue").Placement;
15508
15630
  distance: number;
15509
15631
  popperClass: string;
@@ -15567,10 +15689,6 @@ declare const _default: {
15567
15689
  $nextTick: typeof import("vue").nextTick;
15568
15690
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
15569
15691
  } & Readonly<import("vue").ExtractPropTypes<{
15570
- container: {
15571
- type: import("vue").PropType<string>;
15572
- default: string;
15573
- };
15574
15692
  theme: {
15575
15693
  type: import("vue").PropType<string>;
15576
15694
  default: string;
@@ -15598,6 +15716,10 @@ declare const _default: {
15598
15716
  type: import("vue").PropType<string>;
15599
15717
  default: string;
15600
15718
  };
15719
+ container: {
15720
+ type: import("vue").PropType<string>;
15721
+ default: string;
15722
+ };
15601
15723
  placement: {
15602
15724
  type: import("vue").PropType<import("floating-vue").Placement>;
15603
15725
  default: string;
@@ -15794,10 +15916,6 @@ declare const _default: {
15794
15916
  __isTeleport?: never;
15795
15917
  __isSuspense?: never;
15796
15918
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
15797
- container: {
15798
- type: import("vue").PropType<string>;
15799
- default: string;
15800
- };
15801
15919
  theme: {
15802
15920
  type: import("vue").PropType<string>;
15803
15921
  default: string;
@@ -15825,6 +15943,10 @@ declare const _default: {
15825
15943
  type: import("vue").PropType<string>;
15826
15944
  default: string;
15827
15945
  };
15946
+ container: {
15947
+ type: import("vue").PropType<string>;
15948
+ default: string;
15949
+ };
15828
15950
  placement: {
15829
15951
  type: import("vue").PropType<import("floating-vue").Placement>;
15830
15952
  default: string;
@@ -16026,13 +16148,13 @@ declare const _default: {
16026
16148
  clear: () => void;
16027
16149
  copyToClipboard: () => void;
16028
16150
  }, string, {
16029
- container: string;
16030
16151
  theme: string;
16031
16152
  disabled: boolean;
16032
16153
  size: "small" | "medium" | "large";
16033
16154
  flip: boolean;
16034
16155
  mandatory: boolean;
16035
16156
  testId: string;
16157
+ container: string;
16036
16158
  placement: import("floating-vue").Placement;
16037
16159
  distance: number;
16038
16160
  popperClass: string;
@@ -18895,13 +19017,13 @@ declare const _default: {
18895
19017
  $: import("vue").ComponentInternalInstance;
18896
19018
  $data: {};
18897
19019
  $props: Partial<{
18898
- container: string;
18899
19020
  theme: string;
18900
19021
  disabled: boolean;
18901
19022
  size: "small" | "medium" | "large";
18902
19023
  flip: boolean;
18903
19024
  mandatory: boolean;
18904
19025
  testId: string;
19026
+ container: string;
18905
19027
  placement: import("floating-vue").Placement;
18906
19028
  distance: number;
18907
19029
  popperClass: string;
@@ -18945,10 +19067,6 @@ declare const _default: {
18945
19067
  disableVirtualScroll: boolean;
18946
19068
  overrideOptionCountCalculation: (option: unknown) => number;
18947
19069
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18948
- container: {
18949
- type: import("vue").PropType<string>;
18950
- default: string;
18951
- };
18952
19070
  theme: {
18953
19071
  type: import("vue").PropType<string>;
18954
19072
  default: string;
@@ -18976,6 +19094,10 @@ declare const _default: {
18976
19094
  type: import("vue").PropType<string>;
18977
19095
  default: string;
18978
19096
  };
19097
+ container: {
19098
+ type: import("vue").PropType<string>;
19099
+ default: string;
19100
+ };
18979
19101
  placement: {
18980
19102
  type: import("vue").PropType<import("floating-vue").Placement>;
18981
19103
  default: string;
@@ -19164,7 +19286,7 @@ declare const _default: {
19164
19286
  "onUpdate:isOpen"?: (value: unknown) => any;
19165
19287
  onOpened?: () => any;
19166
19288
  onClosed?: () => any;
19167
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
19289
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
19168
19290
  $attrs: {
19169
19291
  [x: string]: unknown;
19170
19292
  };
@@ -19179,10 +19301,6 @@ declare const _default: {
19179
19301
  $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
19180
19302
  $el: any;
19181
19303
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
19182
- container: {
19183
- type: import("vue").PropType<string>;
19184
- default: string;
19185
- };
19186
19304
  theme: {
19187
19305
  type: import("vue").PropType<string>;
19188
19306
  default: string;
@@ -19210,6 +19328,10 @@ declare const _default: {
19210
19328
  type: import("vue").PropType<string>;
19211
19329
  default: string;
19212
19330
  };
19331
+ container: {
19332
+ type: import("vue").PropType<string>;
19333
+ default: string;
19334
+ };
19213
19335
  placement: {
19214
19336
  type: import("vue").PropType<import("floating-vue").Placement>;
19215
19337
  default: string;
@@ -19411,13 +19533,13 @@ declare const _default: {
19411
19533
  clear: () => void;
19412
19534
  copyToClipboard: () => void;
19413
19535
  }, string, {
19414
- container: string;
19415
19536
  theme: string;
19416
19537
  disabled: boolean;
19417
19538
  size: "small" | "medium" | "large";
19418
19539
  flip: boolean;
19419
19540
  mandatory: boolean;
19420
19541
  testId: string;
19542
+ container: string;
19421
19543
  placement: import("floating-vue").Placement;
19422
19544
  distance: number;
19423
19545
  popperClass: string;
@@ -19481,10 +19603,6 @@ declare const _default: {
19481
19603
  $nextTick: typeof import("vue").nextTick;
19482
19604
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
19483
19605
  } & Readonly<import("vue").ExtractPropTypes<{
19484
- container: {
19485
- type: import("vue").PropType<string>;
19486
- default: string;
19487
- };
19488
19606
  theme: {
19489
19607
  type: import("vue").PropType<string>;
19490
19608
  default: string;
@@ -19512,6 +19630,10 @@ declare const _default: {
19512
19630
  type: import("vue").PropType<string>;
19513
19631
  default: string;
19514
19632
  };
19633
+ container: {
19634
+ type: import("vue").PropType<string>;
19635
+ default: string;
19636
+ };
19515
19637
  placement: {
19516
19638
  type: import("vue").PropType<import("floating-vue").Placement>;
19517
19639
  default: string;
@@ -19708,10 +19830,6 @@ declare const _default: {
19708
19830
  __isTeleport?: never;
19709
19831
  __isSuspense?: never;
19710
19832
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
19711
- container: {
19712
- type: import("vue").PropType<string>;
19713
- default: string;
19714
- };
19715
19833
  theme: {
19716
19834
  type: import("vue").PropType<string>;
19717
19835
  default: string;
@@ -19739,6 +19857,10 @@ declare const _default: {
19739
19857
  type: import("vue").PropType<string>;
19740
19858
  default: string;
19741
19859
  };
19860
+ container: {
19861
+ type: import("vue").PropType<string>;
19862
+ default: string;
19863
+ };
19742
19864
  placement: {
19743
19865
  type: import("vue").PropType<import("floating-vue").Placement>;
19744
19866
  default: string;
@@ -19940,13 +20062,13 @@ declare const _default: {
19940
20062
  clear: () => void;
19941
20063
  copyToClipboard: () => void;
19942
20064
  }, string, {
19943
- container: string;
19944
20065
  theme: string;
19945
20066
  disabled: boolean;
19946
20067
  size: "small" | "medium" | "large";
19947
20068
  flip: boolean;
19948
20069
  mandatory: boolean;
19949
20070
  testId: string;
20071
+ container: string;
19950
20072
  placement: import("floating-vue").Placement;
19951
20073
  distance: number;
19952
20074
  popperClass: string;