@devopness/ui-react 2.162.0 → 2.163.0
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/dist/src/components/Primitives/Dropdown/Dropdown.d.ts +1 -1
- package/dist/src/icons/iconLoader.d.ts +4 -0
- package/dist/ui-react.cjs +179 -195
- package/dist/ui-react.js +5488 -5640
- package/package.json +16 -16
|
@@ -7,7 +7,7 @@ import { IconProps } from '../Icon';
|
|
|
7
7
|
import { LinkProps } from '../Link';
|
|
8
8
|
import { TooltipProps } from '../Tooltip';
|
|
9
9
|
import { Unwrap } from '../../types';
|
|
10
|
-
type DropdownOptionIcon = Unwrap<
|
|
10
|
+
type DropdownOptionIcon = Unwrap<IconProps & Pick<React.CSSProperties, 'backgroundColor'>> & {
|
|
11
11
|
icon: true;
|
|
12
12
|
};
|
|
13
13
|
type DropdownOptionLetter = Unwrap<Pick<React.CSSProperties, 'backgroundColor' | 'color'>> & {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { Icon } from './types';
|
|
2
2
|
declare const iconList: readonly [{
|
|
3
|
+
readonly type: "icon";
|
|
4
|
+
readonly name: "home";
|
|
5
|
+
readonly component: import('react-icons/lib').IconType;
|
|
6
|
+
}, {
|
|
3
7
|
readonly type: "icon";
|
|
4
8
|
readonly name: "add";
|
|
5
9
|
readonly component: import('react-icons/lib').IconType;
|