@gooddata/sdk-ui-kit 11.8.0-alpha.2 → 11.8.0-alpha.4
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/esm/@ui/@types/icon.d.ts +1 -1
- package/esm/@ui/@types/icon.d.ts.map +1 -1
- package/esm/@ui/UiIcon/icons.d.ts.map +1 -1
- package/esm/@ui/UiIcon/icons.js +1 -0
- package/esm/@ui/UiIcon/icons.js.map +1 -1
- package/esm/@ui/UiMenu/components/defaults/DefaultUiMenuContentItem.d.ts +1 -1
- package/esm/@ui/UiMenu/components/defaults/DefaultUiMenuContentItem.d.ts.map +1 -1
- package/esm/@ui/UiMenu/components/defaults/DefaultUiMenuContentItem.js +3 -2
- package/esm/@ui/UiMenu/components/defaults/DefaultUiMenuContentItem.js.map +1 -1
- package/esm/@ui/UiMenu/types.d.ts +2 -0
- package/esm/@ui/UiMenu/types.d.ts.map +1 -1
- package/esm/Icon/icons/Hash.d.ts +3 -0
- package/esm/Icon/icons/Hash.d.ts.map +1 -1
- package/esm/Icon/icons/Hash.js.map +1 -1
- package/esm/Icon/icons/Magic.d.ts +3 -0
- package/esm/Icon/icons/Magic.d.ts.map +1 -1
- package/esm/Icon/icons/Magic.js +3 -0
- package/esm/Icon/icons/Magic.js.map +1 -1
- package/esm/Icon/icons/User.d.ts +3 -0
- package/esm/Icon/icons/User.d.ts.map +1 -1
- package/esm/Icon/icons/User.js.map +1 -1
- package/esm/Icon/icons/UserGroup.d.ts +5 -2
- package/esm/Icon/icons/UserGroup.d.ts.map +1 -1
- package/esm/Icon/icons/UserGroup.js.map +1 -1
- package/esm/Icon/index.d.ts +112 -11
- package/esm/Icon/index.d.ts.map +1 -1
- package/esm/Icon/index.js +109 -1
- package/esm/Icon/index.js.map +1 -1
- package/esm/List/ListItem.d.ts +5 -0
- package/esm/List/ListItem.d.ts.map +1 -1
- package/esm/List/ListItem.js +2 -1
- package/esm/List/ListItem.js.map +1 -1
- package/esm/sdk-ui-kit.d.ts +570 -2
- package/package.json +9 -9
- package/styles/css/list.css +4 -0
- package/styles/css/list.css.map +1 -1
- package/styles/css/main.css +4 -0
- package/styles/css/main.css.map +1 -1
- package/styles/css/menu.css +4 -0
- package/styles/css/menu.css.map +1 -1
- package/styles/scss/list.scss +7 -0
package/esm/sdk-ui-kit.d.ts
CHANGED
|
@@ -548,7 +548,7 @@ item: IUiMenuContentItem<T>;
|
|
|
548
548
|
/**
|
|
549
549
|
* @internal
|
|
550
550
|
*/
|
|
551
|
-
export declare function DefaultUiMenuContentItem<T extends IUiMenuItemData = object>({ item, isFocused, }: IUiMenuContentItemProps<T>): ReactNode;
|
|
551
|
+
export declare function DefaultUiMenuContentItem<T extends IUiMenuItemData = object>({ item, isFocused, size, }: IUiMenuContentItemProps<T>): ReactNode;
|
|
552
552
|
|
|
553
553
|
/**
|
|
554
554
|
* Default component for rendering content menu items.
|
|
@@ -1665,6 +1665,221 @@ export declare interface IComponentTableProps<TProps extends object> {
|
|
|
1665
1665
|
*/
|
|
1666
1666
|
export declare const Icon: Record<string, FC<IIconProps>>;
|
|
1667
1667
|
|
|
1668
|
+
/**
|
|
1669
|
+
* @internal
|
|
1670
|
+
*/
|
|
1671
|
+
export declare function IconAborted({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1672
|
+
|
|
1673
|
+
/**
|
|
1674
|
+
* @internal
|
|
1675
|
+
*/
|
|
1676
|
+
export declare function IconAlert({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1677
|
+
|
|
1678
|
+
/**
|
|
1679
|
+
* @internal
|
|
1680
|
+
*/
|
|
1681
|
+
export declare function IconAlertPaused({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1682
|
+
|
|
1683
|
+
/**
|
|
1684
|
+
* @internal
|
|
1685
|
+
*/
|
|
1686
|
+
export declare function IconArrowDown({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1687
|
+
|
|
1688
|
+
/**
|
|
1689
|
+
* @internal
|
|
1690
|
+
*/
|
|
1691
|
+
export declare function IconArrowLeft({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* @internal
|
|
1695
|
+
*/
|
|
1696
|
+
export declare function IconArrowRight({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1697
|
+
|
|
1698
|
+
/**
|
|
1699
|
+
* @internal
|
|
1700
|
+
*/
|
|
1701
|
+
export declare function IconArrowUp({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1702
|
+
|
|
1703
|
+
/**
|
|
1704
|
+
* @internal
|
|
1705
|
+
*/
|
|
1706
|
+
export declare function IconAttachmentClip({ className, width, height, color }: IIconProps): JSX.Element;
|
|
1707
|
+
|
|
1708
|
+
/**
|
|
1709
|
+
* @internal
|
|
1710
|
+
*/
|
|
1711
|
+
export declare function IconAttribute({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* @internal
|
|
1715
|
+
*/
|
|
1716
|
+
export declare function IconAttributeFilter({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* @internal
|
|
1720
|
+
*/
|
|
1721
|
+
export declare function IconBar({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1722
|
+
|
|
1723
|
+
/**
|
|
1724
|
+
* @internal
|
|
1725
|
+
*/
|
|
1726
|
+
export declare function IconBoldHyperlink({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1727
|
+
|
|
1728
|
+
/**
|
|
1729
|
+
* @internal
|
|
1730
|
+
*/
|
|
1731
|
+
export declare function IconBook({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1732
|
+
|
|
1733
|
+
/**
|
|
1734
|
+
* @internal
|
|
1735
|
+
*/
|
|
1736
|
+
export declare function IconBubble({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1737
|
+
|
|
1738
|
+
/**
|
|
1739
|
+
* @internal
|
|
1740
|
+
*/
|
|
1741
|
+
export declare function IconBullet({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* @internal
|
|
1745
|
+
*/
|
|
1746
|
+
export declare function IconBurgerMenu({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* @internal
|
|
1750
|
+
*/
|
|
1751
|
+
export declare function IconChatBubble({ color, className, width, height, ariaHidden, }: IIconProps): JSX.Element;
|
|
1752
|
+
|
|
1753
|
+
/**
|
|
1754
|
+
* @internal
|
|
1755
|
+
*/
|
|
1756
|
+
export declare function IconClose({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* @internal
|
|
1760
|
+
*/
|
|
1761
|
+
export declare function IconColumn({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* @internal
|
|
1765
|
+
*/
|
|
1766
|
+
export declare function IconColumnContainer({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1767
|
+
|
|
1768
|
+
/**
|
|
1769
|
+
* @internal
|
|
1770
|
+
*/
|
|
1771
|
+
export declare function IconColumns({ colorPalette, className, width, height }: IColumnsIconProps): JSX.Element;
|
|
1772
|
+
|
|
1773
|
+
/**
|
|
1774
|
+
* @internal
|
|
1775
|
+
*/
|
|
1776
|
+
export declare function IconCombo({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1777
|
+
|
|
1778
|
+
/**
|
|
1779
|
+
* @internal
|
|
1780
|
+
*/
|
|
1781
|
+
export declare function IconContract({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1782
|
+
|
|
1783
|
+
/**
|
|
1784
|
+
* @internal
|
|
1785
|
+
*/
|
|
1786
|
+
export declare function IconCopy({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1787
|
+
|
|
1788
|
+
/**
|
|
1789
|
+
* @internal
|
|
1790
|
+
*/
|
|
1791
|
+
export declare function IconDashboard({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1792
|
+
|
|
1793
|
+
/**
|
|
1794
|
+
* @internal
|
|
1795
|
+
*/
|
|
1796
|
+
export declare function IconDataset({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* @internal
|
|
1800
|
+
*/
|
|
1801
|
+
export declare function IconDataSource({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1802
|
+
|
|
1803
|
+
/**
|
|
1804
|
+
* @internal
|
|
1805
|
+
*/
|
|
1806
|
+
export declare function IconDate({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1807
|
+
|
|
1808
|
+
/**
|
|
1809
|
+
* @internal
|
|
1810
|
+
*/
|
|
1811
|
+
export declare function IconDependencyWheel({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1812
|
+
|
|
1813
|
+
/**
|
|
1814
|
+
* @internal
|
|
1815
|
+
*/
|
|
1816
|
+
export declare function IconDonut({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1817
|
+
|
|
1818
|
+
/**
|
|
1819
|
+
* @internal
|
|
1820
|
+
*/
|
|
1821
|
+
export declare function IconDragHandle({ className, color, width, height }: IIconProps): JSX.Element;
|
|
1822
|
+
|
|
1823
|
+
/**
|
|
1824
|
+
* @internal
|
|
1825
|
+
*/
|
|
1826
|
+
export declare function IconDrillDown({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1827
|
+
|
|
1828
|
+
/**
|
|
1829
|
+
* @internal
|
|
1830
|
+
*/
|
|
1831
|
+
export declare function IconDrillToDashboard({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1832
|
+
|
|
1833
|
+
/**
|
|
1834
|
+
* @internal
|
|
1835
|
+
*/
|
|
1836
|
+
export declare function IconDrillToInsight({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1837
|
+
|
|
1838
|
+
/**
|
|
1839
|
+
* @internal
|
|
1840
|
+
*/
|
|
1841
|
+
export declare function IconEdit({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1842
|
+
|
|
1843
|
+
/**
|
|
1844
|
+
* @internal
|
|
1845
|
+
*/
|
|
1846
|
+
export declare function IconEllipsis({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1847
|
+
|
|
1848
|
+
/**
|
|
1849
|
+
* @internal
|
|
1850
|
+
*/
|
|
1851
|
+
export declare function IconEmail({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1852
|
+
|
|
1853
|
+
/**
|
|
1854
|
+
* @internal
|
|
1855
|
+
*/
|
|
1856
|
+
export declare function IconEmbedCode({ color, className, ariaHidden, width, height }: IIconProps): JSX.Element;
|
|
1857
|
+
|
|
1858
|
+
/**
|
|
1859
|
+
* @internal
|
|
1860
|
+
*/
|
|
1861
|
+
export declare function IconError({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1862
|
+
|
|
1863
|
+
/**
|
|
1864
|
+
* @internal
|
|
1865
|
+
*/
|
|
1866
|
+
export declare function IconExpand({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1867
|
+
|
|
1868
|
+
/**
|
|
1869
|
+
* @internal
|
|
1870
|
+
*/
|
|
1871
|
+
export declare function IconExplore({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1872
|
+
|
|
1873
|
+
/**
|
|
1874
|
+
* @internal
|
|
1875
|
+
*/
|
|
1876
|
+
export declare function IconExternalLink({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1877
|
+
|
|
1878
|
+
/**
|
|
1879
|
+
* @internal
|
|
1880
|
+
*/
|
|
1881
|
+
export declare function IconFact({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1882
|
+
|
|
1668
1883
|
/**
|
|
1669
1884
|
* @internal
|
|
1670
1885
|
*/
|
|
@@ -1696,6 +1911,151 @@ export declare interface IConfirmDialogBaseProps extends Omit<IDialogBaseProps,
|
|
|
1696
1911
|
};
|
|
1697
1912
|
}
|
|
1698
1913
|
|
|
1914
|
+
/**
|
|
1915
|
+
* @internal
|
|
1916
|
+
*/
|
|
1917
|
+
export declare function IconFunction({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1918
|
+
|
|
1919
|
+
/**
|
|
1920
|
+
* @internal
|
|
1921
|
+
*/
|
|
1922
|
+
export declare function IconFunnel({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1923
|
+
|
|
1924
|
+
/**
|
|
1925
|
+
* @internal
|
|
1926
|
+
*/
|
|
1927
|
+
export declare function IconGenAI({ color, className, ariaHidden, width, height }: IIconProps): JSX.Element;
|
|
1928
|
+
|
|
1929
|
+
/**
|
|
1930
|
+
* @internal
|
|
1931
|
+
*/
|
|
1932
|
+
export declare function IconGenAI2({ color, className, ariaHidden, width, height }: IIconProps): JSX.Element;
|
|
1933
|
+
|
|
1934
|
+
/**
|
|
1935
|
+
* @internal
|
|
1936
|
+
*/
|
|
1937
|
+
export declare function IconGeo({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1938
|
+
|
|
1939
|
+
/**
|
|
1940
|
+
* @internal
|
|
1941
|
+
*/
|
|
1942
|
+
export declare function IconHash({ color, backgroundColor, className, width, height }: IHashIconProps): JSX.Element;
|
|
1943
|
+
|
|
1944
|
+
/**
|
|
1945
|
+
* @internal
|
|
1946
|
+
*/
|
|
1947
|
+
export declare function IconHeader({ className, color, width, height }: IIconProps): JSX.Element;
|
|
1948
|
+
|
|
1949
|
+
/**
|
|
1950
|
+
* @internal
|
|
1951
|
+
*/
|
|
1952
|
+
export declare function IconHeadlineChart({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1953
|
+
|
|
1954
|
+
/**
|
|
1955
|
+
* @internal
|
|
1956
|
+
*/
|
|
1957
|
+
export declare function IconHeatMap({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
1958
|
+
|
|
1959
|
+
/**
|
|
1960
|
+
* @internal
|
|
1961
|
+
*/
|
|
1962
|
+
export declare function IconHistoryBack({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1963
|
+
|
|
1964
|
+
/**
|
|
1965
|
+
* @internal
|
|
1966
|
+
*/
|
|
1967
|
+
export declare function IconHome({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
1968
|
+
|
|
1969
|
+
/**
|
|
1970
|
+
* @internal
|
|
1971
|
+
*/
|
|
1972
|
+
export declare function IconHyperlink({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1973
|
+
|
|
1974
|
+
/**
|
|
1975
|
+
* @internal
|
|
1976
|
+
*/
|
|
1977
|
+
export declare function IconImage({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1978
|
+
|
|
1979
|
+
/**
|
|
1980
|
+
* @internal
|
|
1981
|
+
*/
|
|
1982
|
+
export declare function IconInsight({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1983
|
+
|
|
1984
|
+
/**
|
|
1985
|
+
* @internal
|
|
1986
|
+
*/
|
|
1987
|
+
export declare function IconInteraction({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1988
|
+
|
|
1989
|
+
/**
|
|
1990
|
+
* @internal
|
|
1991
|
+
*/
|
|
1992
|
+
export declare function IconInvite({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1993
|
+
|
|
1994
|
+
/**
|
|
1995
|
+
* @internal
|
|
1996
|
+
*/
|
|
1997
|
+
export declare function IconKeyword({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1998
|
+
|
|
1999
|
+
/**
|
|
2000
|
+
* @internal
|
|
2001
|
+
*/
|
|
2002
|
+
export declare function IconLabel({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2003
|
+
|
|
2004
|
+
/**
|
|
2005
|
+
* @internal
|
|
2006
|
+
*/
|
|
2007
|
+
export declare function IconLeave({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2008
|
+
|
|
2009
|
+
/**
|
|
2010
|
+
* @internal
|
|
2011
|
+
*/
|
|
2012
|
+
export declare function IconLegendMenu({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2013
|
+
|
|
2014
|
+
/**
|
|
2015
|
+
* @internal
|
|
2016
|
+
*/
|
|
2017
|
+
export declare function IconLine({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2018
|
+
|
|
2019
|
+
/**
|
|
2020
|
+
* @internal
|
|
2021
|
+
*/
|
|
2022
|
+
export declare function IconLock({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2023
|
+
|
|
2024
|
+
/**
|
|
2025
|
+
* @internal
|
|
2026
|
+
*/
|
|
2027
|
+
export declare function IconLogout({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2028
|
+
|
|
2029
|
+
/**
|
|
2030
|
+
* @internal
|
|
2031
|
+
*/
|
|
2032
|
+
export declare function IconMagic({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2033
|
+
|
|
2034
|
+
/**
|
|
2035
|
+
* @internal
|
|
2036
|
+
*/
|
|
2037
|
+
export declare function IconMany({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2038
|
+
|
|
2039
|
+
/**
|
|
2040
|
+
* @internal
|
|
2041
|
+
*/
|
|
2042
|
+
export declare function IconMetric({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2043
|
+
|
|
2044
|
+
/**
|
|
2045
|
+
* @internal
|
|
2046
|
+
*/
|
|
2047
|
+
export declare function IconMinimize({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2048
|
+
|
|
2049
|
+
/**
|
|
2050
|
+
* @internal
|
|
2051
|
+
*/
|
|
2052
|
+
export declare function IconNewVisualization({ color, className, width, height, ariaHidden, }: IIconProps): JSX.Element;
|
|
2053
|
+
|
|
2054
|
+
/**
|
|
2055
|
+
* @internal
|
|
2056
|
+
*/
|
|
2057
|
+
export declare function IconOrigin({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2058
|
+
|
|
1699
2059
|
/**
|
|
1700
2060
|
* @internal
|
|
1701
2061
|
*/
|
|
@@ -1704,7 +2064,187 @@ export declare const iconPaths: Record<IconType, ReactNode>;
|
|
|
1704
2064
|
/**
|
|
1705
2065
|
* @internal
|
|
1706
2066
|
*/
|
|
1707
|
-
export declare
|
|
2067
|
+
export declare function IconPdf({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2068
|
+
|
|
2069
|
+
/**
|
|
2070
|
+
* @internal
|
|
2071
|
+
*/
|
|
2072
|
+
export declare function IconPie({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2073
|
+
|
|
2074
|
+
/**
|
|
2075
|
+
* @internal
|
|
2076
|
+
*/
|
|
2077
|
+
export declare function IconProgress({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2078
|
+
|
|
2079
|
+
/**
|
|
2080
|
+
* @internal
|
|
2081
|
+
*/
|
|
2082
|
+
export declare function IconPyramid({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2083
|
+
|
|
2084
|
+
/**
|
|
2085
|
+
* @internal
|
|
2086
|
+
*/
|
|
2087
|
+
export declare function IconQuestionMark({ color, className, width, height, ariaHidden, }: IIconProps): JSX.Element;
|
|
2088
|
+
|
|
2089
|
+
/**
|
|
2090
|
+
* @internal
|
|
2091
|
+
*/
|
|
2092
|
+
export declare function IconRefresh({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2093
|
+
|
|
2094
|
+
/**
|
|
2095
|
+
* @internal
|
|
2096
|
+
*/
|
|
2097
|
+
export declare function IconRepeater({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2098
|
+
|
|
2099
|
+
/**
|
|
2100
|
+
* @internal
|
|
2101
|
+
*/
|
|
2102
|
+
export declare function IconReset({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2103
|
+
|
|
2104
|
+
/**
|
|
2105
|
+
* @internal
|
|
2106
|
+
*/
|
|
2107
|
+
export declare function IconRichText({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2108
|
+
|
|
2109
|
+
/**
|
|
2110
|
+
* @internal
|
|
2111
|
+
*/
|
|
2112
|
+
export declare function IconRows({ colorPalette, className, width, height }: IRowsIconProps): JSX.Element;
|
|
2113
|
+
|
|
2114
|
+
/**
|
|
2115
|
+
* @internal
|
|
2116
|
+
*/
|
|
2117
|
+
export declare function IconRun({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2118
|
+
|
|
2119
|
+
/**
|
|
2120
|
+
* @internal
|
|
2121
|
+
*/
|
|
2122
|
+
export declare function IconSankey({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2123
|
+
|
|
2124
|
+
/**
|
|
2125
|
+
* @internal
|
|
2126
|
+
*/
|
|
2127
|
+
export declare function IconSave({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2128
|
+
|
|
2129
|
+
/**
|
|
2130
|
+
* @internal
|
|
2131
|
+
*/
|
|
2132
|
+
export declare function IconScatterPlot({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2133
|
+
|
|
2134
|
+
/**
|
|
2135
|
+
* @internal
|
|
2136
|
+
*/
|
|
2137
|
+
export declare function IconSchedule({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2138
|
+
|
|
2139
|
+
/**
|
|
2140
|
+
* @internal
|
|
2141
|
+
*/
|
|
2142
|
+
export declare function IconSearch({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2143
|
+
|
|
2144
|
+
/**
|
|
2145
|
+
* @internal
|
|
2146
|
+
*/
|
|
2147
|
+
export declare function IconSettingsGear({ className, width, height, color }: IIconProps): JSX.Element;
|
|
2148
|
+
|
|
2149
|
+
/**
|
|
2150
|
+
* @internal
|
|
2151
|
+
*/
|
|
2152
|
+
export declare function IconSimplifiedDashboard({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2153
|
+
|
|
2154
|
+
/**
|
|
2155
|
+
* @internal
|
|
2156
|
+
*/
|
|
2157
|
+
export declare function IconSmallDragHandle({ className, color, width, height }: IIconProps): JSX.Element;
|
|
2158
|
+
|
|
2159
|
+
/**
|
|
2160
|
+
* @internal
|
|
2161
|
+
*/
|
|
2162
|
+
export declare function IconStackedArea({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2163
|
+
|
|
2164
|
+
/**
|
|
2165
|
+
* @internal
|
|
2166
|
+
*/
|
|
2167
|
+
export declare function IconSuccess({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2168
|
+
|
|
2169
|
+
/**
|
|
2170
|
+
* @internal
|
|
2171
|
+
*/
|
|
2172
|
+
export declare function IconTable({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2173
|
+
|
|
2174
|
+
/**
|
|
2175
|
+
* @internal
|
|
2176
|
+
*/
|
|
2177
|
+
export declare function IconThumbsDown({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2178
|
+
|
|
2179
|
+
/**
|
|
2180
|
+
* @internal
|
|
2181
|
+
*/
|
|
2182
|
+
export declare function IconThumbsUp({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2183
|
+
|
|
2184
|
+
/**
|
|
2185
|
+
* @internal
|
|
2186
|
+
*/
|
|
2187
|
+
export declare function IconToken({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2188
|
+
|
|
2189
|
+
/**
|
|
2190
|
+
* @internal
|
|
2191
|
+
*/
|
|
2192
|
+
export declare function IconTrash({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2193
|
+
|
|
2194
|
+
/**
|
|
2195
|
+
* @internal
|
|
2196
|
+
*/
|
|
2197
|
+
export declare function IconTreeMap({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2198
|
+
|
|
2199
|
+
/**
|
|
2200
|
+
* @internal
|
|
2201
|
+
*/
|
|
2202
|
+
export declare type IconType = "brain" | "brainDisabled" | "check" | "checkCircle" | "plus" | "plusCircle" | "sync" | "alert" | "alertPaused" | "close" | "cross" | "crossCircle" | "question" | "chevronUp" | "chevronRight" | "chevronDown" | "chevronLeft" | "date" | "navigateUp" | "navigateDown" | "navigateRight" | "navigateLeft" | "download" | "slack" | "expand" | "exclamationCircle" | "book" | "visible" | "invisible" | "lock" | "unlock" | "ai" | "aiFill" | "drawer" | "drawerEmpty" | "prohibited" | "dropDown" | "dropRight" | "clock" | "questionMark" | "upload" | "expandRectangle" | "file" | "number" | "code" | "user" | "userPlus" | "users" | "magic" | "tab" | "pauseCircle" | "filter" | "timer" | "mail" | "envelope" | "copy" | "rain" | "earth" | "minimize" | "copyright" | "ellipsis" | "pencil" | "folder" | "folderPlus" | "trash" | "arrowUp" | "arrowRight" | "arrowDown" | "arrowLeft" | "undo" | "redo" | "trendDown" | "trendUp" | "save" | "minusCircle" | "percent" | "enter" | "enterRight" | "money" | "ghost" | "warning" | "home" | "settings" | "search" | "university" | "printer" | "picture" | "visualization" | "dashboard" | "metric" | "fact" | "ldmAttribute" | "sharp" | "attribute" | "horn" | "cw" | "ccw" | "table" | "directionColumn" | "directionRow" | "header" | "genai" | "genai2" | "explainai" | "hiddenForAi" | "box" | "ellipsisVertical" | "list" | "drillTo" | "hierarchy" | "history" | "thumbsUp" | "thumbsDown" | "send" | "visualizationArea" | "visualizationTable" | "visualizationTreemap" | "visualizationScatter" | "visualizationDonut" | "visualizationHeadline" | "visualizationColumn" | "visualizationLine" | "visualizationPyramid" | "visualizationFunnel" | "visualizationHeatmap" | "visualizationBubble" | "visualizationPie" | "visualizationBar" | "visualizationCombo" | "visualizationBullet" | "visualizationWaterfall" | "visualizationDependencywheel" | "visualizationSankey" | "visualizationPushpin" | "visualizationRepeater" | "visualizationXirr" | "link" | "fileXlsx" | "filePptx" | "filePdf" | "fileImage" | "fileCsvFormatted" | "fileCsvRaw" | "recommendation";
|
|
2203
|
+
|
|
2204
|
+
/**
|
|
2205
|
+
* @internal
|
|
2206
|
+
*/
|
|
2207
|
+
export declare function IconUndo({ color, className, width, height, ariaHidden }: IIconProps): JSX.Element;
|
|
2208
|
+
|
|
2209
|
+
/**
|
|
2210
|
+
* @internal
|
|
2211
|
+
*/
|
|
2212
|
+
export declare function IconUser({ color, backgroundColor, className, width, height, }: IUserIconProps): JSX.Element;
|
|
2213
|
+
|
|
2214
|
+
/**
|
|
2215
|
+
* @internal
|
|
2216
|
+
*/
|
|
2217
|
+
export declare function IconUserGroup({ color, backgroundColor, className, width, height, }: IUserGroupIconProps): JSX.Element;
|
|
2218
|
+
|
|
2219
|
+
/**
|
|
2220
|
+
* @internal
|
|
2221
|
+
*/
|
|
2222
|
+
export declare function IconVisualizationSwitcher({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2223
|
+
|
|
2224
|
+
/**
|
|
2225
|
+
* @internal
|
|
2226
|
+
*/
|
|
2227
|
+
export declare function IconWarning({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2228
|
+
|
|
2229
|
+
/**
|
|
2230
|
+
* @internal
|
|
2231
|
+
*/
|
|
2232
|
+
export declare function IconWaterfall({ className, width, height, color, ariaHidden }: IIconProps): JSX.Element;
|
|
2233
|
+
|
|
2234
|
+
/**
|
|
2235
|
+
* @internal
|
|
2236
|
+
*/
|
|
2237
|
+
export declare function IconWebhook({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2238
|
+
|
|
2239
|
+
/**
|
|
2240
|
+
* @internal
|
|
2241
|
+
*/
|
|
2242
|
+
export declare function IconWebsite({ color, className, width, height }: IIconProps): JSX.Element;
|
|
2243
|
+
|
|
2244
|
+
/**
|
|
2245
|
+
* @internal
|
|
2246
|
+
*/
|
|
2247
|
+
export declare function IconWidget({ color, className, width, height }: IIconProps): JSX.Element;
|
|
1708
2248
|
|
|
1709
2249
|
/**
|
|
1710
2250
|
* @internal
|
|
@@ -2491,6 +3031,13 @@ export declare interface IHandleActionOptions {
|
|
|
2491
3031
|
shouldStopPropagation?: boolean;
|
|
2492
3032
|
}
|
|
2493
3033
|
|
|
3034
|
+
/**
|
|
3035
|
+
* @internal
|
|
3036
|
+
*/
|
|
3037
|
+
export declare interface IHashIconProps extends IIconProps {
|
|
3038
|
+
backgroundColor?: string;
|
|
3039
|
+
}
|
|
3040
|
+
|
|
2494
3041
|
/**
|
|
2495
3042
|
* @internal
|
|
2496
3043
|
*/
|
|
@@ -4547,6 +5094,11 @@ export declare interface ISingleSelectListItemProps {
|
|
|
4547
5094
|
accessibilityConfig?: IMenuAccessibilityConfig;
|
|
4548
5095
|
tabIndex?: number;
|
|
4549
5096
|
elementType?: "div" | "button";
|
|
5097
|
+
/**
|
|
5098
|
+
* Visual variant to indicate special emphasis, e.g. "delete".
|
|
5099
|
+
* Example: "default" | "delete"
|
|
5100
|
+
*/
|
|
5101
|
+
variant?: "default" | "delete";
|
|
4550
5102
|
iconRenderer?: (icon: string | ReactNode | FC) => ReactNode;
|
|
4551
5103
|
infoRenderer?: (info: string | ReactNode | FC) => ReactNode;
|
|
4552
5104
|
onClick?: (e: MouseEvent_2<HTMLElement>) => void;
|
|
@@ -4972,6 +5524,7 @@ export declare type IUiMenuContentItem<T extends IUiMenuItemData = object> = {
|
|
|
4972
5524
|
stringTitle: string;
|
|
4973
5525
|
isDisabled?: boolean;
|
|
4974
5526
|
showComponentOnly?: boolean;
|
|
5527
|
+
iconLeft?: ReactNode;
|
|
4975
5528
|
data: T["content"];
|
|
4976
5529
|
Component: ComponentType<{
|
|
4977
5530
|
onBack: () => void;
|
|
@@ -4985,6 +5538,7 @@ export declare type IUiMenuContentItem<T extends IUiMenuItemData = object> = {
|
|
|
4985
5538
|
export declare interface IUiMenuContentItemProps<T extends IUiMenuItemData = object> {
|
|
4986
5539
|
item: IUiMenuContentItem<T>;
|
|
4987
5540
|
isFocused: boolean;
|
|
5541
|
+
size?: SizeSmall | SizeMedium;
|
|
4988
5542
|
}
|
|
4989
5543
|
|
|
4990
5544
|
/**
|
|
@@ -5281,6 +5835,20 @@ export declare interface IUseKeyboardNavigationTargetProps {
|
|
|
5281
5835
|
onFocus?: () => void;
|
|
5282
5836
|
}
|
|
5283
5837
|
|
|
5838
|
+
/**
|
|
5839
|
+
* @internal
|
|
5840
|
+
*/
|
|
5841
|
+
export declare interface IUserGroupIconProps extends IIconProps {
|
|
5842
|
+
backgroundColor?: string;
|
|
5843
|
+
}
|
|
5844
|
+
|
|
5845
|
+
/**
|
|
5846
|
+
* @internal
|
|
5847
|
+
*/
|
|
5848
|
+
export declare interface IUserIconProps extends IIconProps {
|
|
5849
|
+
backgroundColor?: string;
|
|
5850
|
+
}
|
|
5851
|
+
|
|
5284
5852
|
/**
|
|
5285
5853
|
* @internal
|
|
5286
5854
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-kit",
|
|
3
|
-
"version": "11.8.0-alpha.
|
|
3
|
+
"version": "11.8.0-alpha.4",
|
|
4
4
|
"description": "GoodData SDK - UI Building Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
"tslib": "2.8.1",
|
|
77
77
|
"unified": "^11.0.5",
|
|
78
78
|
"uuid": "^11.1.0",
|
|
79
|
-
"@gooddata/sdk-
|
|
80
|
-
"@gooddata/
|
|
81
|
-
"@gooddata/sdk-
|
|
82
|
-
"@gooddata/sdk-
|
|
83
|
-
"@gooddata/
|
|
79
|
+
"@gooddata/sdk-model": "11.8.0-alpha.4",
|
|
80
|
+
"@gooddata/sdk-ui": "11.8.0-alpha.4",
|
|
81
|
+
"@gooddata/sdk-ui-theme-provider": "11.8.0-alpha.4",
|
|
82
|
+
"@gooddata/sdk-backend-spi": "11.8.0-alpha.4",
|
|
83
|
+
"@gooddata/util": "11.8.0-alpha.4"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@gooddata/stylelint-config": "^5.0.0",
|
|
@@ -130,9 +130,9 @@
|
|
|
130
130
|
"typescript": "5.8.3",
|
|
131
131
|
"vitest": "3.2.4",
|
|
132
132
|
"vitest-dom": "0.1.1",
|
|
133
|
-
"@gooddata/reference-workspace": "11.8.0-alpha.
|
|
134
|
-
"@gooddata/
|
|
135
|
-
"@gooddata/
|
|
133
|
+
"@gooddata/reference-workspace": "11.8.0-alpha.4",
|
|
134
|
+
"@gooddata/sdk-backend-mockingbird": "11.8.0-alpha.4",
|
|
135
|
+
"@gooddata/eslint-config": "11.8.0-alpha.4"
|
|
136
136
|
},
|
|
137
137
|
"peerDependencies": {
|
|
138
138
|
"react": "^18.0.0 || ^19.0.0",
|
package/styles/css/list.css
CHANGED
|
@@ -1187,6 +1187,10 @@ button.gd-list-item {
|
|
|
1187
1187
|
font-size: 14px;
|
|
1188
1188
|
text-align: left;
|
|
1189
1189
|
}
|
|
1190
|
+
.gd-list-item.variant-delete:hover {
|
|
1191
|
+
color: var(--gd-palette-error-base, #e54d42);
|
|
1192
|
+
background: var(--gd-palette-error-dimmed, #fcedec);
|
|
1193
|
+
}
|
|
1190
1194
|
.gd-list-item.is-disabled {
|
|
1191
1195
|
opacity: 0.5;
|
|
1192
1196
|
}
|