@wizleap-inc/wiz-ui-react 0.9.0 → 0.13.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/components/base/accordion/components/accordion.d.ts +14 -0
- package/dist/components/base/accordion/components/index.d.ts +1 -0
- package/dist/components/base/accordion/components/use-toggle-animation.d.ts +9 -0
- package/dist/components/base/accordion/index.d.ts +1 -0
- package/dist/components/base/badge/components/badge.d.ts +13 -0
- package/dist/components/base/badge/components/index.d.ts +1 -0
- package/dist/components/base/badge/index.d.ts +1 -0
- package/dist/components/base/buttons/icon/components/icon-button.d.ts +10 -0
- package/dist/components/base/buttons/icon/components/index.d.ts +1 -0
- package/dist/components/base/buttons/icon/index.d.ts +1 -0
- package/dist/components/base/buttons/index.d.ts +2 -0
- package/dist/components/base/buttons/toggle/components/index.d.ts +1 -0
- package/dist/components/base/buttons/toggle/components/toggle-button.d.ts +13 -0
- package/dist/components/base/buttons/toggle/index.d.ts +1 -0
- package/dist/components/base/calendar/components/calendar-helper.d.ts +2 -0
- package/dist/components/base/calendar/components/calendar.d.ts +10 -0
- package/dist/components/base/calendar/components/index.d.ts +1 -0
- package/dist/components/base/calendar/components/types.d.ts +9 -0
- package/dist/components/base/calendar/index.d.ts +1 -0
- package/dist/components/base/dialog/components/dialog.d.ts +12 -0
- package/dist/components/base/dialog/components/index.d.ts +1 -0
- package/dist/components/base/dialog/index.d.ts +1 -0
- package/dist/components/base/graphs/circle/components/bar.d.ts +7 -0
- package/dist/components/base/graphs/circle/components/circle-graph.d.ts +9 -0
- package/dist/components/base/graphs/circle/components/index.d.ts +1 -0
- package/dist/components/base/graphs/circle/components/types.d.ts +4 -0
- package/dist/components/base/graphs/circle/index.d.ts +1 -0
- package/dist/components/base/graphs/compare/components/bar.d.ts +12 -0
- package/dist/components/base/graphs/compare/components/compare-graph.d.ts +34 -0
- package/dist/components/base/graphs/compare/components/index.d.ts +1 -0
- package/dist/components/base/graphs/compare/components/types.d.ts +10 -0
- package/dist/components/base/graphs/compare/index.d.ts +1 -0
- package/dist/components/base/graphs/index.d.ts +3 -0
- package/dist/components/base/graphs/transition/components/bar.d.ts +9 -0
- package/dist/components/base/graphs/transition/components/index.d.ts +1 -0
- package/dist/components/base/graphs/transition/components/transition-graph.d.ts +11 -0
- package/dist/components/base/graphs/transition/index.d.ts +1 -0
- package/dist/components/base/header/components/header.d.ts +12 -0
- package/dist/components/base/header/components/index.d.ts +1 -0
- package/dist/components/base/header/index.d.ts +1 -0
- package/dist/components/base/index.d.ts +9 -0
- package/dist/components/base/inputs/base/components/index.d.ts +1 -1
- package/dist/components/base/inputs/index.d.ts +2 -1
- package/dist/components/base/inputs/radio/components/index.d.ts +1 -0
- package/dist/components/base/inputs/radio/components/radio.d.ts +16 -0
- package/dist/components/base/inputs/radio/components/types.d.ts +5 -0
- package/dist/components/base/inputs/radio/index.d.ts +1 -0
- package/dist/components/base/inputs/text/components/index.d.ts +1 -0
- package/dist/components/base/inputs/text/components/text-input.d.ts +10 -0
- package/dist/components/base/inputs/text/index.d.ts +1 -0
- package/dist/components/base/step-bar/components/index.d.ts +3 -0
- package/dist/components/base/step-bar/components/step-bar.d.ts +7 -0
- package/dist/components/base/step-bar/components/step-line.d.ts +7 -0
- package/dist/components/base/step-bar/components/step-point.d.ts +7 -0
- package/dist/components/base/step-bar/components/types.d.ts +8 -0
- package/dist/components/base/step-bar/index.d.ts +1 -0
- package/dist/components/base/tab/components/index.d.ts +2 -0
- package/dist/components/base/tab/components/tab-pane.d.ts +12 -0
- package/dist/components/base/tab/components/tab.d.ts +12 -0
- package/dist/components/base/tab/components/types.d.ts +6 -0
- package/dist/components/base/tab/index.d.ts +1 -0
- package/dist/components/base/text/components/index.d.ts +1 -0
- package/dist/components/base/text/components/text.d.ts +26 -0
- package/dist/components/base/text/index.d.ts +1 -0
- package/dist/components/custom/form/form-control-context.d.ts +5 -0
- package/dist/components/icons/cancel.d.ts +1 -0
- package/dist/components/icons/index.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2421 -1322
- package/dist/wiz-ui.umd.js +21 -15
- package/package.json +5 -5
- /package/dist/components/base/inputs/base/components/{base.d.ts → base-input.d.ts} +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { FC, ReactNode } from "react";
|
|
3
|
+
type Props = {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
openMessage?: string;
|
|
6
|
+
closeMessage?: string;
|
|
7
|
+
width?: string;
|
|
8
|
+
bgColor?: ColorKeys;
|
|
9
|
+
fontColor?: ColorKeys;
|
|
10
|
+
children?: ReactNode;
|
|
11
|
+
onToggle: () => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const WizAccordion: FC<Props>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizAccordion } from "./accordion";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const ANIMATION_CONFIGURATION: {
|
|
2
|
+
duration: number;
|
|
3
|
+
easing: string;
|
|
4
|
+
};
|
|
5
|
+
export declare function useToggleAnimation(isOpen: boolean): {
|
|
6
|
+
isActuallyOpen: boolean;
|
|
7
|
+
isAnimating: boolean;
|
|
8
|
+
contentRef: import("react").RefObject<HTMLDivElement>;
|
|
9
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ColorKeys, SpacingKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { FC, ReactNode } from "react";
|
|
3
|
+
type Props = {
|
|
4
|
+
label?: string;
|
|
5
|
+
hidden?: boolean;
|
|
6
|
+
color?: ColorKeys;
|
|
7
|
+
bgColor?: ColorKeys;
|
|
8
|
+
offset?: SpacingKeys;
|
|
9
|
+
size?: "sm" | "md" | "lg";
|
|
10
|
+
children?: ReactNode;
|
|
11
|
+
};
|
|
12
|
+
export declare const WizBadge: FC<Props>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizBadge } from "./badge";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ComponentProps } from "react";
|
|
2
|
+
import { TIcon } from '../../../../../components';
|
|
3
|
+
type Props = {
|
|
4
|
+
icon: TIcon;
|
|
5
|
+
variant?: "primary" | "sub" | "transparent" | "link";
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
size?: "sm" | "md" | "lg" | "xl";
|
|
8
|
+
} & ComponentProps<"button">;
|
|
9
|
+
export declare const WizIconButton: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./icon-button";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizToggleButton } from "./toggle-button";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ComponentProps, ReactNode } from "react";
|
|
2
|
+
import { TIcon } from '../../../../../components';
|
|
3
|
+
type Props = {
|
|
4
|
+
isActive: boolean;
|
|
5
|
+
inactiveIcon: TIcon;
|
|
6
|
+
activeIcon: TIcon;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
rounded?: boolean;
|
|
9
|
+
size?: "sm" | "md" | "lg";
|
|
10
|
+
children?: ReactNode;
|
|
11
|
+
} & ComponentProps<"button">;
|
|
12
|
+
export declare const WizToggleButton: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import { DateStatus } from "./types";
|
|
3
|
+
type Props = {
|
|
4
|
+
currentMonth?: Date;
|
|
5
|
+
activeDates?: DateStatus[];
|
|
6
|
+
filledWeeks?: boolean;
|
|
7
|
+
onClickDate?: (selectedValue: Date) => void;
|
|
8
|
+
};
|
|
9
|
+
export declare const WizCalendar: FC<Props>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizCalendar } from "./calendar";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FC, ReactNode } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
isOpen: boolean;
|
|
4
|
+
maxWidth?: string;
|
|
5
|
+
title?: ReactNode;
|
|
6
|
+
footer?: ReactNode;
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
align?: "start" | "center" | "end";
|
|
9
|
+
onClose: () => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const WizDialog: FC<Props>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizDialog } from "./dialog";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizCircleGraph } from "./circle-graph";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import { CompareGraphData } from "./types";
|
|
3
|
+
type Props = {
|
|
4
|
+
data: CompareGraphData;
|
|
5
|
+
maxFrequency: number;
|
|
6
|
+
barGap: number;
|
|
7
|
+
barGroupWidth: number;
|
|
8
|
+
/** バーの傾き(rad)を指定します。*/
|
|
9
|
+
theta: number;
|
|
10
|
+
};
|
|
11
|
+
export declare const Bar: FC<Props>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { FC, ReactNode } from "react";
|
|
2
|
+
import { CompareGraphData } from "./types";
|
|
3
|
+
type Props = {
|
|
4
|
+
data: CompareGraphData[];
|
|
5
|
+
/** 縦軸の最大値を設定します。 */
|
|
6
|
+
maxFrequency?: number;
|
|
7
|
+
/** 縦軸の最大値をceilN桁で切り上げて設定します。 */
|
|
8
|
+
ceilN?: number;
|
|
9
|
+
/** バーの間隔に影響します。0~1の値を指定してください。 */
|
|
10
|
+
barGap?: number;
|
|
11
|
+
/** バーの太さに影響します。0~1の値を指定してください。 */
|
|
12
|
+
barGroupWidth?: number;
|
|
13
|
+
/** 単位を指定してください。 */
|
|
14
|
+
unit?: string;
|
|
15
|
+
/**
|
|
16
|
+
* ラベルの単位の表示位置を指定します。
|
|
17
|
+
* @param {String} unitPosition - ラベルの単位の表示位置を指定します。以下のいずれかの値を指定できます:
|
|
18
|
+
* - "vertical": 縦軸の目盛に対して単位を表示します。
|
|
19
|
+
* - "intersection": 縦軸と横軸が交わる位置に単位を表示します。
|
|
20
|
+
* - "no": 単位を表示しません。
|
|
21
|
+
* @default "no"
|
|
22
|
+
* @required false
|
|
23
|
+
*/
|
|
24
|
+
unitPosition?: "vertical" | "intersection" | "no";
|
|
25
|
+
/**
|
|
26
|
+
* 横軸ラベルを傾けるかを指定します。
|
|
27
|
+
* @param isTilted
|
|
28
|
+
* @default false
|
|
29
|
+
*/
|
|
30
|
+
isTilted?: boolean;
|
|
31
|
+
children?: ReactNode;
|
|
32
|
+
};
|
|
33
|
+
export declare const WizCompareGraph: FC<Props>;
|
|
34
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizCompareGraph } from "./compare-graph";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizTransitionGraph } from "./transition-graph";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SpacingKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { FC, ReactNode } from "react";
|
|
3
|
+
interface Props {
|
|
4
|
+
gapLeft?: SpacingKeys;
|
|
5
|
+
gapRight?: SpacingKeys;
|
|
6
|
+
sticky?: boolean;
|
|
7
|
+
leftContent?: ReactNode;
|
|
8
|
+
rightContent?: ReactNode;
|
|
9
|
+
onToggle: () => void;
|
|
10
|
+
}
|
|
11
|
+
export declare const WizHeader: FC<Props>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./header";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./buttons";
|
|
2
|
+
export * from "./badge";
|
|
2
3
|
export * from "./popup";
|
|
3
4
|
export * from "./portal";
|
|
4
5
|
export * from "./avatar";
|
|
@@ -7,8 +8,16 @@ export * from "./card";
|
|
|
7
8
|
export * from "./tag";
|
|
8
9
|
export * from "./icon";
|
|
9
10
|
export * from "./divider";
|
|
11
|
+
export * from "./tab";
|
|
12
|
+
export * from "./step-bar";
|
|
10
13
|
export * from "./message-box";
|
|
11
14
|
export * from "./menu";
|
|
12
15
|
export * from "./stack";
|
|
13
16
|
export * from "./anchor";
|
|
14
17
|
export * from "./inputs";
|
|
18
|
+
export * from "./header";
|
|
19
|
+
export * from "./dialog";
|
|
20
|
+
export * from "./calendar";
|
|
21
|
+
export * from "./accordion";
|
|
22
|
+
export * from "./text";
|
|
23
|
+
export * from "./graphs";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./base";
|
|
1
|
+
export * from "./base-input";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizRadio } from "./radio";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SpacingKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { FC } from "react";
|
|
3
|
+
import { RadioOption } from "./types";
|
|
4
|
+
type Props = {
|
|
5
|
+
options: RadioOption[];
|
|
6
|
+
value: number | null;
|
|
7
|
+
name?: string;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
direction?: "horizontal" | "vertical";
|
|
10
|
+
gap?: SpacingKeys;
|
|
11
|
+
strikeThrough?: boolean;
|
|
12
|
+
onChange?: (value: number) => void;
|
|
13
|
+
};
|
|
14
|
+
export declare const Radio: FC<Props>;
|
|
15
|
+
export declare const WizRadio: FC<Props>;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizTextInput } from "./text-input";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ComponentProps } from "react";
|
|
2
|
+
import { TIcon } from '../../../../../components';
|
|
3
|
+
import { PrivateBaseInput } from '../../../../../components/base/inputs/base';
|
|
4
|
+
type PrivateBaseInputProps = ComponentProps<typeof PrivateBaseInput>;
|
|
5
|
+
export type Props = {
|
|
6
|
+
icon?: TIcon;
|
|
7
|
+
onChangeValue?: (value: string) => void;
|
|
8
|
+
} & Omit<PrivateBaseInputProps, "type">;
|
|
9
|
+
export declare const WizTextInput: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
label: string;
|
|
4
|
+
name: string;
|
|
5
|
+
active?: boolean;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
notificationCount?: number;
|
|
8
|
+
width?: string;
|
|
9
|
+
onClick: (name: string) => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const WizTabPane: FC<Props>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SpacingKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { FC } from "react";
|
|
3
|
+
import { TabItem } from "./types";
|
|
4
|
+
type Props = {
|
|
5
|
+
activeTabName: string;
|
|
6
|
+
items: TabItem[];
|
|
7
|
+
gap?: SpacingKeys;
|
|
8
|
+
width?: string;
|
|
9
|
+
onClickTab: (name: string) => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const WizTab: FC<Props>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./text";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ColorKeys, FontSizeKeys, WhiteSpaceKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
type Props = {
|
|
4
|
+
as?: "p" | "span" | "label";
|
|
5
|
+
htmlFor?: string;
|
|
6
|
+
color?: ColorKeys;
|
|
7
|
+
fontSize?: FontSizeKeys;
|
|
8
|
+
lineHeight?: FontSizeKeys;
|
|
9
|
+
bold?: boolean;
|
|
10
|
+
maxLines?: number;
|
|
11
|
+
whiteSpace?: WhiteSpaceKeys;
|
|
12
|
+
/**
|
|
13
|
+
* テキストをぼかすかどうかを指定します。
|
|
14
|
+
* @default false
|
|
15
|
+
*/
|
|
16
|
+
isBlurred?: boolean;
|
|
17
|
+
breakAll?: boolean;
|
|
18
|
+
textAlign?: "start" | "end" | "left" | "right" | "center";
|
|
19
|
+
lineThrough?: boolean;
|
|
20
|
+
children?: ReactNode;
|
|
21
|
+
};
|
|
22
|
+
export declare const WizText: import("react").MemoExoticComponent<{
|
|
23
|
+
({ as, htmlFor, color, fontSize, lineHeight, bold, maxLines, whiteSpace, isBlurred, breakAll, textAlign, lineThrough, children, }: Props): JSX.Element;
|
|
24
|
+
displayName: "WizText";
|
|
25
|
+
}>;
|
|
26
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WizText } from "./components";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const WizICancel: () => JSX.Element;
|
|
@@ -10,6 +10,7 @@ import { WizIAutoRenew } from "./auto-renew";
|
|
|
10
10
|
import { WizIBusinessCenter } from "./business-center";
|
|
11
11
|
import { WizICalendar } from "./calendar";
|
|
12
12
|
import { WizICamera } from "./camera";
|
|
13
|
+
import { WizICancel } from "./cancel";
|
|
13
14
|
import { WizIChangeHistory } from "./change-history";
|
|
14
15
|
import { WizIChat } from "./chat";
|
|
15
16
|
import { WizICheck } from "./check";
|
|
@@ -49,5 +50,5 @@ import { WizITab } from "./tab";
|
|
|
49
50
|
import { WizITask } from "./task";
|
|
50
51
|
import { WizIUpload } from "./upload";
|
|
51
52
|
import { WizIWarning } from "./warning";
|
|
52
|
-
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICamera | typeof WizIChangeHistory | typeof WizIChat | typeof WizICheck | typeof WizIChevronLeft | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizIClose | typeof WizIContentCopy | typeof WizIDashboard | typeof WizIDescription | typeof WizIDownload | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIInfo | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemove | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizIUpload | typeof WizIWarning;
|
|
53
|
-
export { WizIAddCircle, WizIAdd, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBusinessCenter, WizICalendar, WizICamera, WizIChangeHistory, WizIChat, WizICheck, WizIChevronLeft, WizIChevronRight, WizICircleCheck, WizIClose, WizIContentCopy, WizIDashboard, WizIDescription, WizIDownload, WizIEditNote, WizIExpandLess, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIInfo, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPinDrop, WizIPublic, WizIRemove, WizISchedule, WizISearch, WizISend, WizIStars, WizIStoreFront, WizITab, WizITask, WizIUpload, WizIWarning, };
|
|
53
|
+
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICamera | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChat | typeof WizICheck | typeof WizIChevronLeft | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizIClose | typeof WizIContentCopy | typeof WizIDashboard | typeof WizIDescription | typeof WizIDownload | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIInfo | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemove | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizIUpload | typeof WizIWarning;
|
|
54
|
+
export { WizIAddCircle, WizIAdd, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChat, WizICheck, WizIChevronLeft, WizIChevronRight, WizICircleCheck, WizIClose, WizIContentCopy, WizIDashboard, WizIDescription, WizIDownload, WizIEditNote, WizIExpandLess, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIInfo, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPinDrop, WizIPublic, WizIRemove, WizISchedule, WizISearch, WizISend, WizIStars, WizIStoreFront, WizITab, WizITask, WizIUpload, WizIWarning, };
|