@openfin/ui-library 0.3.1 → 0.4.0-alpha.1663360168
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/openfin.ui.js +3 -3
- package/dist/types/components/elements/Icon/openfin/ChevronDownIcon.d.ts +2 -0
- package/dist/types/components/elements/Icon/openfin/ChevronLeftIcon.d.ts +2 -0
- package/dist/types/components/elements/Icon/openfin/ChevronRightIcon.d.ts +2 -0
- package/dist/types/components/elements/Icon/openfin/ChevronUpIcon.d.ts +2 -0
- package/dist/types/components/elements/Icon/openfin/index.d.ts +4 -0
- package/dist/types/components/system/ThemeProvider/lib/constants.d.ts +4 -4
- package/dist/types/components/system/ThemeProvider/lib/palette.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,3 +12,7 @@ export * from './StackIcon';
|
|
|
12
12
|
export * from './BellFilledIcon';
|
|
13
13
|
export * from './StorefrontIcon';
|
|
14
14
|
export * from './FragmentsIcon';
|
|
15
|
+
export * from './ChevronRightIcon';
|
|
16
|
+
export * from './ChevronLeftIcon';
|
|
17
|
+
export * from './ChevronUpIcon';
|
|
18
|
+
export * from './ChevronDownIcon';
|
|
@@ -223,6 +223,10 @@ export declare const IconSet: {
|
|
|
223
223
|
readonly BellFilledIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
224
224
|
readonly StorefrontIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
225
225
|
readonly FragmentsIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
226
|
+
readonly ChevronRightIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
227
|
+
readonly ChevronLeftIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
228
|
+
readonly ChevronUpIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
229
|
+
readonly ChevronDownIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
226
230
|
readonly ActivityLogIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
227
231
|
readonly AlignBaselineIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
228
232
|
readonly AlignBottomIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
@@ -277,10 +281,6 @@ export declare const IconSet: {
|
|
|
277
281
|
readonly CheckIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
278
282
|
readonly CheckCircledIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
279
283
|
readonly CheckboxIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
280
|
-
readonly ChevronDownIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
281
|
-
readonly ChevronLeftIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
282
|
-
readonly ChevronRightIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
283
|
-
readonly ChevronUpIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
284
284
|
readonly CircleIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
285
285
|
readonly CircleBackslashIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
|
286
286
|
readonly ClipboardIcon: ({ color, ...props }: import("@modulz/radix-icons/dist/types").IconProps) => JSX.Element;
|
package/package.json
CHANGED