@ironsource/shared-ui 2.1.3-rc.1 → 2.1.3-rc.2
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/AppHeader.vue_vue_type_style_index_0_scoped_95908b8d_lang.css +1 -0
- package/CardPanel.vue_vue_type_style_index_0_scoped_7d0acb11_lang.css +1 -0
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_d25514d1_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_4baf9e57_lang.css +1 -0
- package/DataGridMenu.vue_vue_type_style_index_0_scoped_13f1ce76_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +1 -0
- package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +1 -0
- package/EmptyStateV4.vue_vue_type_style_index_0_scoped_24001caa_lang.css +1 -0
- package/FieldLabel.vue_vue_type_style_index_0_scoped_5c2a70ad_lang.css +1 -0
- package/FormRow.vue_vue_type_style_index_0_scoped_39f48410_lang.css +1 -0
- package/InlineCopy.vue_vue_type_style_index_0_scoped_2a9e8782_lang.css +1 -0
- package/RadioButtonV4.vue_vue_type_style_index_0_scoped_cb3a12c6_lang.css +1 -0
- package/components/appHeader/AppHeader.vue.js +3 -3
- package/components/appHeader/AppHeader.vue2.js +41 -35
- package/components/checkbox/v4/CheckboxV4.vue.js +4 -4
- package/components/checkbox/v4/CheckboxV4.vue2.js +2 -2
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +11 -12
- package/components/checkbox/v4/icons/UncheckedState.vue.js +12 -11
- package/components/dropdown/common/Dropdown.common.js +93 -92
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +15 -0
- package/components/emptyState/v4/EmptyStateV4.vue.js +3 -3
- package/components/emptyState/v4/EmptyStateV4.vue2.js +41 -27
- package/components/emptyState/v4/index.d.ts +58 -1
- package/components/forms/CardPanel.vue.d.ts +20 -0
- package/components/forms/CardPanel.vue.js +2 -2
- package/components/forms/CardPanel.vue2.js +26 -14
- package/components/forms/FormRow.vue.js +4 -4
- package/components/forms/FormRow.vue2.js +1 -1
- package/components/forms/index.d.ts +77 -1
- package/components/inlineCopy/InlineCopy.vue.js +2 -2
- package/components/inlineCopy/InlineCopy.vue2.js +2 -2
- package/components/radioButton/v4/RadioButtonV4.vue.js +4 -4
- package/components/radioButton/v4/RadioButtonV4.vue2.js +1 -1
- package/components/shared/FieldLabel.vue.d.ts +5 -0
- package/components/shared/FieldLabel.vue.js +3 -3
- package/components/shared/FieldLabel.vue2.js +63 -46
- package/components/table/common/Table.common.d.ts +1 -0
- package/components/table/common/Table.common.js +64 -60
- package/components/table/common/TableContext.d.ts +1 -0
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +71 -69
- package/components/table/v4/DataGridMenu.vue.d.ts +5 -5
- package/components/table/v4/DataGridMenu.vue.js +4 -4
- package/components/table/v4/DataGridMenu.vue2.js +46 -47
- package/components/table/v4/DataGridRowsCounter.vue.d.ts +15 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
- package/components/table/v4/DataGridRowsCounter.vue2.js +22 -19
- package/components/table/v4/index.d.ts +32 -5
- package/components/table-cells/common/Editable.common.js +15 -15
- package/components/table-cells/v4/EditableV4.vue.d.ts +10 -0
- package/components/table-cells/v4/EditableV4.vue.js +3 -3
- package/components/table-cells/v4/EditableV4.vue2.js +31 -22
- package/components/table-cells/v4/index.d.ts +43 -1
- package/index.d.ts +266 -14
- package/package.json +1 -1
- package/AppHeader.vue_vue_type_style_index_0_scoped_209ecc03_lang.css +0 -1
- package/CardPanel.vue_vue_type_style_index_0_scoped_d2b5d12f_lang.css +0 -1
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_ee3e6d82_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_d5635f1b_lang.css +0 -1
- package/DataGridMenu.vue_vue_type_style_index_0_scoped_92d83650_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_9e366543_lang.css +0 -1
- package/EditableV4.vue_vue_type_style_index_0_scoped_df325b51_lang.css +0 -1
- package/EmptyStateV4.vue_vue_type_style_index_0_scoped_b8373c2d_lang.css +0 -1
- package/FieldLabel.vue_vue_type_style_index_0_scoped_526af548_lang.css +0 -1
- package/FormRow.vue_vue_type_style_index_0_scoped_017dc22e_lang.css +0 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_2f0a0202_lang.css +0 -1
- package/RadioButtonV4.vue_vue_type_style_index_0_scoped_14be812e_lang.css +0 -1
package/index.d.ts
CHANGED
|
@@ -1616,7 +1616,10 @@ declare const _default: {
|
|
|
1616
1616
|
$props: Partial<{
|
|
1617
1617
|
title: string;
|
|
1618
1618
|
variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1619
|
+
iconName: string;
|
|
1620
|
+
iconSize: string;
|
|
1619
1621
|
subtitle: string;
|
|
1622
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1620
1623
|
buttonText: string;
|
|
1621
1624
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1622
1625
|
title: {
|
|
@@ -1627,17 +1630,29 @@ declare const _default: {
|
|
|
1627
1630
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1628
1631
|
default: string;
|
|
1629
1632
|
};
|
|
1633
|
+
iconName: {
|
|
1634
|
+
type: import("vue").PropType<string>;
|
|
1635
|
+
default: any;
|
|
1636
|
+
};
|
|
1637
|
+
iconSize: {
|
|
1638
|
+
type: import("vue").PropType<string>;
|
|
1639
|
+
default: string;
|
|
1640
|
+
};
|
|
1630
1641
|
subtitle: {
|
|
1631
1642
|
type: import("vue").PropType<string>;
|
|
1632
1643
|
default: any;
|
|
1633
1644
|
};
|
|
1645
|
+
iconType: {
|
|
1646
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1647
|
+
default: string;
|
|
1648
|
+
};
|
|
1634
1649
|
buttonText: {
|
|
1635
1650
|
type: import("vue").PropType<string>;
|
|
1636
1651
|
default: any;
|
|
1637
1652
|
};
|
|
1638
1653
|
}>> & {
|
|
1639
1654
|
onClick?: () => any;
|
|
1640
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "subtitle" | "buttonText">;
|
|
1655
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "iconName" | "iconSize" | "subtitle" | "iconType" | "buttonText">;
|
|
1641
1656
|
$attrs: {
|
|
1642
1657
|
[x: string]: unknown;
|
|
1643
1658
|
};
|
|
@@ -1660,10 +1675,22 @@ declare const _default: {
|
|
|
1660
1675
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1661
1676
|
default: string;
|
|
1662
1677
|
};
|
|
1678
|
+
iconName: {
|
|
1679
|
+
type: import("vue").PropType<string>;
|
|
1680
|
+
default: any;
|
|
1681
|
+
};
|
|
1682
|
+
iconSize: {
|
|
1683
|
+
type: import("vue").PropType<string>;
|
|
1684
|
+
default: string;
|
|
1685
|
+
};
|
|
1663
1686
|
subtitle: {
|
|
1664
1687
|
type: import("vue").PropType<string>;
|
|
1665
1688
|
default: any;
|
|
1666
1689
|
};
|
|
1690
|
+
iconType: {
|
|
1691
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1692
|
+
default: string;
|
|
1693
|
+
};
|
|
1667
1694
|
buttonText: {
|
|
1668
1695
|
type: import("vue").PropType<string>;
|
|
1669
1696
|
default: any;
|
|
@@ -1675,7 +1702,10 @@ declare const _default: {
|
|
|
1675
1702
|
}, string, {
|
|
1676
1703
|
title: string;
|
|
1677
1704
|
variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1705
|
+
iconName: string;
|
|
1706
|
+
iconSize: string;
|
|
1678
1707
|
subtitle: string;
|
|
1708
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1679
1709
|
buttonText: string;
|
|
1680
1710
|
}, {}, string> & {
|
|
1681
1711
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1706,10 +1736,22 @@ declare const _default: {
|
|
|
1706
1736
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1707
1737
|
default: string;
|
|
1708
1738
|
};
|
|
1739
|
+
iconName: {
|
|
1740
|
+
type: import("vue").PropType<string>;
|
|
1741
|
+
default: any;
|
|
1742
|
+
};
|
|
1743
|
+
iconSize: {
|
|
1744
|
+
type: import("vue").PropType<string>;
|
|
1745
|
+
default: string;
|
|
1746
|
+
};
|
|
1709
1747
|
subtitle: {
|
|
1710
1748
|
type: import("vue").PropType<string>;
|
|
1711
1749
|
default: any;
|
|
1712
1750
|
};
|
|
1751
|
+
iconType: {
|
|
1752
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1753
|
+
default: string;
|
|
1754
|
+
};
|
|
1713
1755
|
buttonText: {
|
|
1714
1756
|
type: import("vue").PropType<string>;
|
|
1715
1757
|
default: any;
|
|
@@ -1729,10 +1771,22 @@ declare const _default: {
|
|
|
1729
1771
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1730
1772
|
default: string;
|
|
1731
1773
|
};
|
|
1774
|
+
iconName: {
|
|
1775
|
+
type: import("vue").PropType<string>;
|
|
1776
|
+
default: any;
|
|
1777
|
+
};
|
|
1778
|
+
iconSize: {
|
|
1779
|
+
type: import("vue").PropType<string>;
|
|
1780
|
+
default: string;
|
|
1781
|
+
};
|
|
1732
1782
|
subtitle: {
|
|
1733
1783
|
type: import("vue").PropType<string>;
|
|
1734
1784
|
default: any;
|
|
1735
1785
|
};
|
|
1786
|
+
iconType: {
|
|
1787
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1788
|
+
default: string;
|
|
1789
|
+
};
|
|
1736
1790
|
buttonText: {
|
|
1737
1791
|
type: import("vue").PropType<string>;
|
|
1738
1792
|
default: any;
|
|
@@ -1744,7 +1798,10 @@ declare const _default: {
|
|
|
1744
1798
|
}, string, {
|
|
1745
1799
|
title: string;
|
|
1746
1800
|
variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1801
|
+
iconName: string;
|
|
1802
|
+
iconSize: string;
|
|
1747
1803
|
subtitle: string;
|
|
1804
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1748
1805
|
buttonText: string;
|
|
1749
1806
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1750
1807
|
$slots: {
|
|
@@ -1759,7 +1816,10 @@ declare const _default: {
|
|
|
1759
1816
|
$props: Partial<{
|
|
1760
1817
|
title: string;
|
|
1761
1818
|
variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1819
|
+
iconName: string;
|
|
1820
|
+
iconSize: string;
|
|
1762
1821
|
subtitle: string;
|
|
1822
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1763
1823
|
buttonText: string;
|
|
1764
1824
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1765
1825
|
title: {
|
|
@@ -1770,17 +1830,29 @@ declare const _default: {
|
|
|
1770
1830
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1771
1831
|
default: string;
|
|
1772
1832
|
};
|
|
1833
|
+
iconName: {
|
|
1834
|
+
type: import("vue").PropType<string>;
|
|
1835
|
+
default: any;
|
|
1836
|
+
};
|
|
1837
|
+
iconSize: {
|
|
1838
|
+
type: import("vue").PropType<string>;
|
|
1839
|
+
default: string;
|
|
1840
|
+
};
|
|
1773
1841
|
subtitle: {
|
|
1774
1842
|
type: import("vue").PropType<string>;
|
|
1775
1843
|
default: any;
|
|
1776
1844
|
};
|
|
1845
|
+
iconType: {
|
|
1846
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1847
|
+
default: string;
|
|
1848
|
+
};
|
|
1777
1849
|
buttonText: {
|
|
1778
1850
|
type: import("vue").PropType<string>;
|
|
1779
1851
|
default: any;
|
|
1780
1852
|
};
|
|
1781
1853
|
}>> & {
|
|
1782
1854
|
onClick?: () => any;
|
|
1783
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "subtitle" | "buttonText">;
|
|
1855
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "variant" | "iconName" | "iconSize" | "subtitle" | "iconType" | "buttonText">;
|
|
1784
1856
|
$attrs: {
|
|
1785
1857
|
[x: string]: unknown;
|
|
1786
1858
|
};
|
|
@@ -1803,10 +1875,22 @@ declare const _default: {
|
|
|
1803
1875
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1804
1876
|
default: string;
|
|
1805
1877
|
};
|
|
1878
|
+
iconName: {
|
|
1879
|
+
type: import("vue").PropType<string>;
|
|
1880
|
+
default: any;
|
|
1881
|
+
};
|
|
1882
|
+
iconSize: {
|
|
1883
|
+
type: import("vue").PropType<string>;
|
|
1884
|
+
default: string;
|
|
1885
|
+
};
|
|
1806
1886
|
subtitle: {
|
|
1807
1887
|
type: import("vue").PropType<string>;
|
|
1808
1888
|
default: any;
|
|
1809
1889
|
};
|
|
1890
|
+
iconType: {
|
|
1891
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1892
|
+
default: string;
|
|
1893
|
+
};
|
|
1810
1894
|
buttonText: {
|
|
1811
1895
|
type: import("vue").PropType<string>;
|
|
1812
1896
|
default: any;
|
|
@@ -1818,7 +1902,10 @@ declare const _default: {
|
|
|
1818
1902
|
}, string, {
|
|
1819
1903
|
title: string;
|
|
1820
1904
|
variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1905
|
+
iconName: string;
|
|
1906
|
+
iconSize: string;
|
|
1821
1907
|
subtitle: string;
|
|
1908
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1822
1909
|
buttonText: string;
|
|
1823
1910
|
}, {}, string> & {
|
|
1824
1911
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1849,10 +1936,22 @@ declare const _default: {
|
|
|
1849
1936
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1850
1937
|
default: string;
|
|
1851
1938
|
};
|
|
1939
|
+
iconName: {
|
|
1940
|
+
type: import("vue").PropType<string>;
|
|
1941
|
+
default: any;
|
|
1942
|
+
};
|
|
1943
|
+
iconSize: {
|
|
1944
|
+
type: import("vue").PropType<string>;
|
|
1945
|
+
default: string;
|
|
1946
|
+
};
|
|
1852
1947
|
subtitle: {
|
|
1853
1948
|
type: import("vue").PropType<string>;
|
|
1854
1949
|
default: any;
|
|
1855
1950
|
};
|
|
1951
|
+
iconType: {
|
|
1952
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1953
|
+
default: string;
|
|
1954
|
+
};
|
|
1856
1955
|
buttonText: {
|
|
1857
1956
|
type: import("vue").PropType<string>;
|
|
1858
1957
|
default: any;
|
|
@@ -1872,10 +1971,22 @@ declare const _default: {
|
|
|
1872
1971
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1873
1972
|
default: string;
|
|
1874
1973
|
};
|
|
1974
|
+
iconName: {
|
|
1975
|
+
type: import("vue").PropType<string>;
|
|
1976
|
+
default: any;
|
|
1977
|
+
};
|
|
1978
|
+
iconSize: {
|
|
1979
|
+
type: import("vue").PropType<string>;
|
|
1980
|
+
default: string;
|
|
1981
|
+
};
|
|
1875
1982
|
subtitle: {
|
|
1876
1983
|
type: import("vue").PropType<string>;
|
|
1877
1984
|
default: any;
|
|
1878
1985
|
};
|
|
1986
|
+
iconType: {
|
|
1987
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1988
|
+
default: string;
|
|
1989
|
+
};
|
|
1879
1990
|
buttonText: {
|
|
1880
1991
|
type: import("vue").PropType<string>;
|
|
1881
1992
|
default: any;
|
|
@@ -1887,7 +1998,10 @@ declare const _default: {
|
|
|
1887
1998
|
}, string, {
|
|
1888
1999
|
title: string;
|
|
1889
2000
|
variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
2001
|
+
iconName: string;
|
|
2002
|
+
iconSize: string;
|
|
1890
2003
|
subtitle: string;
|
|
2004
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1891
2005
|
buttonText: string;
|
|
1892
2006
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1893
2007
|
$slots: {
|
|
@@ -1900,14 +2014,25 @@ declare const _default: {
|
|
|
1900
2014
|
$: import("vue").ComponentInternalInstance;
|
|
1901
2015
|
$data: {};
|
|
1902
2016
|
$props: Partial<{
|
|
2017
|
+
type: "input" | "dropdown";
|
|
1903
2018
|
cell: string;
|
|
2019
|
+
displayValue: (option: unknown) => unknown;
|
|
1904
2020
|
validateFunction: (value: unknown) => string | boolean;
|
|
1905
2021
|
isLoading: boolean;
|
|
1906
2022
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2023
|
+
type: {
|
|
2024
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2025
|
+
required: true;
|
|
2026
|
+
default: string;
|
|
2027
|
+
};
|
|
1907
2028
|
cell: {
|
|
1908
2029
|
type: import("vue").PropType<string>;
|
|
1909
2030
|
default: string;
|
|
1910
2031
|
};
|
|
2032
|
+
displayValue: {
|
|
2033
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2034
|
+
default: (cell: unknown) => unknown;
|
|
2035
|
+
};
|
|
1911
2036
|
validateFunction: {
|
|
1912
2037
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
1913
2038
|
default: () => false;
|
|
@@ -1924,7 +2049,7 @@ declare const _default: {
|
|
|
1924
2049
|
type: import("vue").PropType<number>;
|
|
1925
2050
|
required: true;
|
|
1926
2051
|
};
|
|
1927
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "cell" | "validateFunction" | "isLoading">;
|
|
2052
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "displayValue" | "validateFunction" | "isLoading">;
|
|
1928
2053
|
$attrs: {
|
|
1929
2054
|
[x: string]: unknown;
|
|
1930
2055
|
};
|
|
@@ -1939,10 +2064,19 @@ declare const _default: {
|
|
|
1939
2064
|
$emit: (event: string, ...args: any[]) => void;
|
|
1940
2065
|
$el: any;
|
|
1941
2066
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2067
|
+
type: {
|
|
2068
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2069
|
+
required: true;
|
|
2070
|
+
default: string;
|
|
2071
|
+
};
|
|
1942
2072
|
cell: {
|
|
1943
2073
|
type: import("vue").PropType<string>;
|
|
1944
2074
|
default: string;
|
|
1945
2075
|
};
|
|
2076
|
+
displayValue: {
|
|
2077
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2078
|
+
default: (cell: unknown) => unknown;
|
|
2079
|
+
};
|
|
1946
2080
|
validateFunction: {
|
|
1947
2081
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
1948
2082
|
default: () => false;
|
|
@@ -1960,7 +2094,9 @@ declare const _default: {
|
|
|
1960
2094
|
required: true;
|
|
1961
2095
|
};
|
|
1962
2096
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2097
|
+
type: "input" | "dropdown";
|
|
1963
2098
|
cell: string;
|
|
2099
|
+
displayValue: (option: unknown) => unknown;
|
|
1964
2100
|
validateFunction: (value: unknown) => string | boolean;
|
|
1965
2101
|
isLoading: boolean;
|
|
1966
2102
|
}, {}, string> & {
|
|
@@ -1984,10 +2120,19 @@ declare const _default: {
|
|
|
1984
2120
|
$nextTick: typeof import("vue").nextTick;
|
|
1985
2121
|
$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;
|
|
1986
2122
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
2123
|
+
type: {
|
|
2124
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2125
|
+
required: true;
|
|
2126
|
+
default: string;
|
|
2127
|
+
};
|
|
1987
2128
|
cell: {
|
|
1988
2129
|
type: import("vue").PropType<string>;
|
|
1989
2130
|
default: string;
|
|
1990
2131
|
};
|
|
2132
|
+
displayValue: {
|
|
2133
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2134
|
+
default: (cell: unknown) => unknown;
|
|
2135
|
+
};
|
|
1991
2136
|
validateFunction: {
|
|
1992
2137
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
1993
2138
|
default: () => false;
|
|
@@ -2009,10 +2154,19 @@ declare const _default: {
|
|
|
2009
2154
|
__isTeleport?: never;
|
|
2010
2155
|
__isSuspense?: never;
|
|
2011
2156
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2157
|
+
type: {
|
|
2158
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2159
|
+
required: true;
|
|
2160
|
+
default: string;
|
|
2161
|
+
};
|
|
2012
2162
|
cell: {
|
|
2013
2163
|
type: import("vue").PropType<string>;
|
|
2014
2164
|
default: string;
|
|
2015
2165
|
};
|
|
2166
|
+
displayValue: {
|
|
2167
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2168
|
+
default: (cell: unknown) => unknown;
|
|
2169
|
+
};
|
|
2016
2170
|
validateFunction: {
|
|
2017
2171
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
2018
2172
|
default: () => false;
|
|
@@ -2030,7 +2184,9 @@ declare const _default: {
|
|
|
2030
2184
|
required: true;
|
|
2031
2185
|
};
|
|
2032
2186
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2187
|
+
type: "input" | "dropdown";
|
|
2033
2188
|
cell: string;
|
|
2189
|
+
displayValue: (option: unknown) => unknown;
|
|
2034
2190
|
validateFunction: (value: unknown) => string | boolean;
|
|
2035
2191
|
isLoading: boolean;
|
|
2036
2192
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -2044,14 +2200,25 @@ declare const _default: {
|
|
|
2044
2200
|
$: import("vue").ComponentInternalInstance;
|
|
2045
2201
|
$data: {};
|
|
2046
2202
|
$props: Partial<{
|
|
2203
|
+
type: "input" | "dropdown";
|
|
2047
2204
|
cell: string;
|
|
2205
|
+
displayValue: (option: unknown) => unknown;
|
|
2048
2206
|
validateFunction: (value: unknown) => string | boolean;
|
|
2049
2207
|
isLoading: boolean;
|
|
2050
2208
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2209
|
+
type: {
|
|
2210
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2211
|
+
required: true;
|
|
2212
|
+
default: string;
|
|
2213
|
+
};
|
|
2051
2214
|
cell: {
|
|
2052
2215
|
type: import("vue").PropType<string>;
|
|
2053
2216
|
default: string;
|
|
2054
2217
|
};
|
|
2218
|
+
displayValue: {
|
|
2219
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2220
|
+
default: (cell: unknown) => unknown;
|
|
2221
|
+
};
|
|
2055
2222
|
validateFunction: {
|
|
2056
2223
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
2057
2224
|
default: () => false;
|
|
@@ -2068,7 +2235,7 @@ declare const _default: {
|
|
|
2068
2235
|
type: import("vue").PropType<number>;
|
|
2069
2236
|
required: true;
|
|
2070
2237
|
};
|
|
2071
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "cell" | "validateFunction" | "isLoading">;
|
|
2238
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "displayValue" | "validateFunction" | "isLoading">;
|
|
2072
2239
|
$attrs: {
|
|
2073
2240
|
[x: string]: unknown;
|
|
2074
2241
|
};
|
|
@@ -2083,10 +2250,19 @@ declare const _default: {
|
|
|
2083
2250
|
$emit: (event: string, ...args: any[]) => void;
|
|
2084
2251
|
$el: any;
|
|
2085
2252
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2253
|
+
type: {
|
|
2254
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2255
|
+
required: true;
|
|
2256
|
+
default: string;
|
|
2257
|
+
};
|
|
2086
2258
|
cell: {
|
|
2087
2259
|
type: import("vue").PropType<string>;
|
|
2088
2260
|
default: string;
|
|
2089
2261
|
};
|
|
2262
|
+
displayValue: {
|
|
2263
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2264
|
+
default: (cell: unknown) => unknown;
|
|
2265
|
+
};
|
|
2090
2266
|
validateFunction: {
|
|
2091
2267
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
2092
2268
|
default: () => false;
|
|
@@ -2104,7 +2280,9 @@ declare const _default: {
|
|
|
2104
2280
|
required: true;
|
|
2105
2281
|
};
|
|
2106
2282
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2283
|
+
type: "input" | "dropdown";
|
|
2107
2284
|
cell: string;
|
|
2285
|
+
displayValue: (option: unknown) => unknown;
|
|
2108
2286
|
validateFunction: (value: unknown) => string | boolean;
|
|
2109
2287
|
isLoading: boolean;
|
|
2110
2288
|
}, {}, string> & {
|
|
@@ -2128,10 +2306,19 @@ declare const _default: {
|
|
|
2128
2306
|
$nextTick: typeof import("vue").nextTick;
|
|
2129
2307
|
$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;
|
|
2130
2308
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
2309
|
+
type: {
|
|
2310
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2311
|
+
required: true;
|
|
2312
|
+
default: string;
|
|
2313
|
+
};
|
|
2131
2314
|
cell: {
|
|
2132
2315
|
type: import("vue").PropType<string>;
|
|
2133
2316
|
default: string;
|
|
2134
2317
|
};
|
|
2318
|
+
displayValue: {
|
|
2319
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2320
|
+
default: (cell: unknown) => unknown;
|
|
2321
|
+
};
|
|
2135
2322
|
validateFunction: {
|
|
2136
2323
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
2137
2324
|
default: () => false;
|
|
@@ -2153,10 +2340,19 @@ declare const _default: {
|
|
|
2153
2340
|
__isTeleport?: never;
|
|
2154
2341
|
__isSuspense?: never;
|
|
2155
2342
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2343
|
+
type: {
|
|
2344
|
+
type: import("vue").PropType<"input" | "dropdown">;
|
|
2345
|
+
required: true;
|
|
2346
|
+
default: string;
|
|
2347
|
+
};
|
|
2156
2348
|
cell: {
|
|
2157
2349
|
type: import("vue").PropType<string>;
|
|
2158
2350
|
default: string;
|
|
2159
2351
|
};
|
|
2352
|
+
displayValue: {
|
|
2353
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
2354
|
+
default: (cell: unknown) => unknown;
|
|
2355
|
+
};
|
|
2160
2356
|
validateFunction: {
|
|
2161
2357
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
2162
2358
|
default: () => false;
|
|
@@ -2174,7 +2370,9 @@ declare const _default: {
|
|
|
2174
2370
|
required: true;
|
|
2175
2371
|
};
|
|
2176
2372
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
2373
|
+
type: "input" | "dropdown";
|
|
2177
2374
|
cell: string;
|
|
2375
|
+
displayValue: (option: unknown) => unknown;
|
|
2178
2376
|
validateFunction: (value: unknown) => string | boolean;
|
|
2179
2377
|
isLoading: boolean;
|
|
2180
2378
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -2804,8 +3002,8 @@ declare const _default: {
|
|
|
2804
3002
|
};
|
|
2805
3003
|
});
|
|
2806
3004
|
DataGridMenu: import("vue").DefineComponent<{
|
|
2807
|
-
|
|
2808
|
-
type: import("vue").PropType<
|
|
3005
|
+
rowIndex: {
|
|
3006
|
+
type: import("vue").PropType<number>;
|
|
2809
3007
|
default: any;
|
|
2810
3008
|
};
|
|
2811
3009
|
menuItems: {
|
|
@@ -2816,8 +3014,8 @@ declare const _default: {
|
|
|
2816
3014
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2817
3015
|
selected: (option: unknown) => void;
|
|
2818
3016
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2819
|
-
|
|
2820
|
-
type: import("vue").PropType<
|
|
3017
|
+
rowIndex: {
|
|
3018
|
+
type: import("vue").PropType<number>;
|
|
2821
3019
|
default: any;
|
|
2822
3020
|
};
|
|
2823
3021
|
menuItems: {
|
|
@@ -2828,7 +3026,7 @@ declare const _default: {
|
|
|
2828
3026
|
}>> & {
|
|
2829
3027
|
onSelected?: (option: unknown) => any;
|
|
2830
3028
|
}, {
|
|
2831
|
-
|
|
3029
|
+
rowIndex: number;
|
|
2832
3030
|
menuItems: tableV4.MenuItem[];
|
|
2833
3031
|
}>;
|
|
2834
3032
|
DataGridRowsCounter: import("vue").DefineComponent<{
|
|
@@ -2840,6 +3038,18 @@ declare const _default: {
|
|
|
2840
3038
|
type: import("vue").PropType<number>;
|
|
2841
3039
|
default: number;
|
|
2842
3040
|
};
|
|
3041
|
+
displayingText: {
|
|
3042
|
+
type: import("vue").PropType<string>;
|
|
3043
|
+
default: string;
|
|
3044
|
+
};
|
|
3045
|
+
outOfText: {
|
|
3046
|
+
type: import("vue").PropType<string>;
|
|
3047
|
+
default: string;
|
|
3048
|
+
};
|
|
3049
|
+
totalText: {
|
|
3050
|
+
type: import("vue").PropType<string>;
|
|
3051
|
+
default: string;
|
|
3052
|
+
};
|
|
2843
3053
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2844
3054
|
count: {
|
|
2845
3055
|
type: import("vue").PropType<number>;
|
|
@@ -2849,9 +3059,24 @@ declare const _default: {
|
|
|
2849
3059
|
type: import("vue").PropType<number>;
|
|
2850
3060
|
default: number;
|
|
2851
3061
|
};
|
|
3062
|
+
displayingText: {
|
|
3063
|
+
type: import("vue").PropType<string>;
|
|
3064
|
+
default: string;
|
|
3065
|
+
};
|
|
3066
|
+
outOfText: {
|
|
3067
|
+
type: import("vue").PropType<string>;
|
|
3068
|
+
default: string;
|
|
3069
|
+
};
|
|
3070
|
+
totalText: {
|
|
3071
|
+
type: import("vue").PropType<string>;
|
|
3072
|
+
default: string;
|
|
3073
|
+
};
|
|
2852
3074
|
}>>, {
|
|
2853
3075
|
count: number;
|
|
2854
3076
|
totalCount: number;
|
|
3077
|
+
displayingText: string;
|
|
3078
|
+
outOfText: string;
|
|
3079
|
+
totalText: string;
|
|
2855
3080
|
}>;
|
|
2856
3081
|
DataGridTypes: () => (({
|
|
2857
3082
|
new (...args: any[]): {
|
|
@@ -3471,8 +3696,8 @@ declare const _default: {
|
|
|
3471
3696
|
footer?(_: {}): any;
|
|
3472
3697
|
};
|
|
3473
3698
|
})) | import("vue").DefineComponent<{
|
|
3474
|
-
|
|
3475
|
-
type: import("vue").PropType<
|
|
3699
|
+
rowIndex: {
|
|
3700
|
+
type: import("vue").PropType<number>;
|
|
3476
3701
|
default: any;
|
|
3477
3702
|
};
|
|
3478
3703
|
menuItems: {
|
|
@@ -3483,8 +3708,8 @@ declare const _default: {
|
|
|
3483
3708
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3484
3709
|
selected: (option: unknown) => void;
|
|
3485
3710
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3486
|
-
|
|
3487
|
-
type: import("vue").PropType<
|
|
3711
|
+
rowIndex: {
|
|
3712
|
+
type: import("vue").PropType<number>;
|
|
3488
3713
|
default: any;
|
|
3489
3714
|
};
|
|
3490
3715
|
menuItems: {
|
|
@@ -3495,7 +3720,7 @@ declare const _default: {
|
|
|
3495
3720
|
}>> & {
|
|
3496
3721
|
onSelected?: (option: unknown) => any;
|
|
3497
3722
|
}, {
|
|
3498
|
-
|
|
3723
|
+
rowIndex: number;
|
|
3499
3724
|
menuItems: tableV4.MenuItem[];
|
|
3500
3725
|
}> | import("vue").DefineComponent<{
|
|
3501
3726
|
count: {
|
|
@@ -3506,6 +3731,18 @@ declare const _default: {
|
|
|
3506
3731
|
type: import("vue").PropType<number>;
|
|
3507
3732
|
default: number;
|
|
3508
3733
|
};
|
|
3734
|
+
displayingText: {
|
|
3735
|
+
type: import("vue").PropType<string>;
|
|
3736
|
+
default: string;
|
|
3737
|
+
};
|
|
3738
|
+
outOfText: {
|
|
3739
|
+
type: import("vue").PropType<string>;
|
|
3740
|
+
default: string;
|
|
3741
|
+
};
|
|
3742
|
+
totalText: {
|
|
3743
|
+
type: import("vue").PropType<string>;
|
|
3744
|
+
default: string;
|
|
3745
|
+
};
|
|
3509
3746
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3510
3747
|
count: {
|
|
3511
3748
|
type: import("vue").PropType<number>;
|
|
@@ -3515,9 +3752,24 @@ declare const _default: {
|
|
|
3515
3752
|
type: import("vue").PropType<number>;
|
|
3516
3753
|
default: number;
|
|
3517
3754
|
};
|
|
3755
|
+
displayingText: {
|
|
3756
|
+
type: import("vue").PropType<string>;
|
|
3757
|
+
default: string;
|
|
3758
|
+
};
|
|
3759
|
+
outOfText: {
|
|
3760
|
+
type: import("vue").PropType<string>;
|
|
3761
|
+
default: string;
|
|
3762
|
+
};
|
|
3763
|
+
totalText: {
|
|
3764
|
+
type: import("vue").PropType<string>;
|
|
3765
|
+
default: string;
|
|
3766
|
+
};
|
|
3518
3767
|
}>>, {
|
|
3519
3768
|
count: number;
|
|
3520
3769
|
totalCount: number;
|
|
3770
|
+
displayingText: string;
|
|
3771
|
+
outOfText: string;
|
|
3772
|
+
totalText: string;
|
|
3521
3773
|
}>)[];
|
|
3522
3774
|
Table: {
|
|
3523
3775
|
new (...args: any[]): {
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.app-header[data-v-209ecc03]{display:flex}.app-header .image-container[data-v-209ecc03]{height:48px;width:48px;border-radius:4px}.app-header .image-container img[data-v-209ecc03]{min-width:100%;max-width:100%;max-height:100%;object-fit:cover;border-radius:4px}.app-header .icon-container[data-v-209ecc03]{color:var(--action-active);display:flex;align-items:center;padding:0 8px}.app-header .name-container .title[data-v-209ecc03]{color:var(--text-primary)}.app-header .name-container .inline-copy[data-v-209ecc03]{color:var(--text-secondary)}.app-header.size-small[data-v-209ecc03]{align-items:center}.app-header.size-small .image-container[data-v-209ecc03]{height:28px;width:28px;border-radius:6px}.app-header.size-small .image-container img[data-v-209ecc03]{border-radius:6px}.app-header.size-small .name-container[data-v-209ecc03]{display:flex}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.card-panel[data-v-d2b5d12f]{border-radius:var(--border-radius-sm);border:1px solid var(--common-divider);background:var(--background-paper);padding:calc(var(--spacing-300) - 2px) var(--spacing-300)}.card-panel--has-next[data-v-d2b5d12f]{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-panel--has-next+.card-panel[data-v-d2b5d12f]{border-top:0;border-top-right-radius:0;border-top-left-radius:0}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.checkbox[data-v-ee3e6d82]{color:var(--primary-light);position:relative;cursor:pointer;display:flex;align-items:center;user-select:none;line-height:0}.checkbox.focus-visible .checkbox__inner[data-v-ee3e6d82]{outline:solid;border-radius:4px}.checkboxes[data-v-ee3e6d82]{display:inline-flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;background-color:transparent;outline:0;border:0;line-height:0;margin:0;user-select:none;vertical-align:middle;appearance:none;text-decoration:none;border-radius:50%}.input[data-v-ee3e6d82]{z-index:-1;cursor:inherit;position:absolute;opacity:0;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.checkbox__inner[data-v-ee3e6d82]{overflow:hidden;pointer-events:none;position:absolute;z-index:0;inset:0}.states[data-v-ee3e6d82]{width:var(--spacing-200);height:var(--spacing-200)}.disabled[data-v-ee3e6d82]{cursor:default}.disabled .checkbox-label[data-v-ee3e6d82]{color:var(--text-disabled)}.checkbox-label[data-v-ee3e6d82]{margin-left:var(--spacing-100);color:var(--text-primary)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.sticky[data-v-d5635f1b]{position:sticky}.table-container[data-v-d5635f1b]{width:100%;position:relative;display:flex;flex-direction:column}.table-header[data-v-d5635f1b]{display:flex;align-items:center;height:calc(var(--spacing-800) - 1px);border-bottom:1px solid var(--common-divider);background-color:var(--background-paper-elevation-0);position:sticky;left:0;padding:var(--spacing-300)}.table-header .table-title[data-v-d5635f1b]{display:flex;flex:1;align-items:center;justify-content:flex-start;height:100%;color:var(--text-primary)}.table-header .table-header-right[data-v-d5635f1b]{display:flex;align-items:center;height:100%}.table-header .search-wrapper[data-v-d5635f1b]{width:13.75rem}.table-header.isStickyHeader[data-v-d5635f1b]{z-index:calc(var(--708a5a8f) + 3);top:0}.table-head-container[data-v-d5635f1b]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-d5635f1b]{color:var(--text-primary);background-color:var(--background-paper-elevation-0);padding:0 var(--spacing-300);display:flex;align-items:center;min-height:var(--spacing-600);border:1px solid var(--common-divider);border-radius:var(--border-radius-md);border-top-right-radius:0;border-top-left-radius:0}.table-body-wrapper[data-v-d5635f1b]{display:inline-table}.table-header-actions[data-v-d5635f1b]{margin-left:var(--spacing-100);display:flex;align-items:center}.table-row[data-v-d5635f1b]{position:relative}.table-row.loading[data-v-d5635f1b]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-d5635f1b]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-d5635f1b]{border-bottom:none}.expanded-row[data-v-d5635f1b]{grid-column:var(--668fa5c3);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-d5635f1b]{position:relative;display:block;overflow:auto;background:var(--background-paper-elevation-0);border:1px solid var(--common-divider);color:var(--text-primary);text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:var(--border-radius-md)}table.hasFooter[data-v-d5635f1b]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-d5635f1b],table th[data-v-d5635f1b]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-d5635f1b]:first-of-type,table th[data-v-d5635f1b]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-d5635f1b]:last-of-type,table th[data-v-d5635f1b]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-d5635f1b],table th.expand-toggle-cell[data-v-d5635f1b]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-d5635f1b]{border-bottom:none;z-index:calc(var(--708a5a8f) + 1);display:inline-table;min-width:100%}table>thead>tr[data-v-d5635f1b]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);height:var(--spacing-500);display:grid;grid-template-columns:var(--6ded5808)}table>thead>tr>th[data-v-d5635f1b]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.bordered[data-v-d5635f1b]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-d5635f1b]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-d5635f1b]{justify-content:flex-end}table>thead>tr>th.isSortable[data-v-d5635f1b]{cursor:pointer}table>thead.sticky[data-v-d5635f1b]{position:sticky;top:0;background:white}table>thead.isStickyHeader[data-v-d5635f1b]{z-index:calc(var(--708a5a8f) + 2);top:calc(var(--spacing-800) - 1px)}table>tbody[data-v-d5635f1b]{display:block}table>tbody>*>tr[data-v-d5635f1b]{background-color:var(--background-default);min-height:var(--70e35284);height:auto;display:grid;align-items:center;grid-template-columns:var(--6ded5808)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-d5635f1b]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-d5635f1b]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-d5635f1b]{background-color:var(--background-default);border:none;min-width:0;display:flex;min-height:var(--70e35284);height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-d5635f1b]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-d5635f1b]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-d5635f1b]{justify-content:flex-end;text-align:right}.section-container[data-v-d5635f1b]{left:0}.sections[data-v-d5635f1b]{display:flex}.section[data-v-d5635f1b]{padding:0 1.5rem;background:var(--background-default);left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid var(--common-divider)}.table-cell[data-v-d5635f1b]{width:100%}.empty-state[data-v-d5635f1b]{min-height:250px}
|