@weing-dev/ui-kit-primitive 0.4.6 → 0.5.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/README.md +6 -0
- package/dist/{Icon-DExqF865.js → Icon-DEdvzMs-.js} +1 -1
- package/dist/{color-B71xRiyK.js → baseColor-DYa5_IOB.js} +3 -120
- package/dist/calendar.js +12 -12
- package/dist/chart.css +1 -0
- package/dist/chart.d.ts +6 -2
- package/dist/chart.js +532 -85
- package/dist/color-qJrSCDan.js +155 -0
- package/dist/components/Calendar/Calendar.d.ts +1 -55
- package/dist/components/Calendar/Calendar.type.d.ts +61 -0
- package/dist/components/Cascader/Cascader.d.ts +2 -36
- package/dist/components/Cascader/Cascader.type.d.ts +37 -0
- package/dist/components/Chart/Chart.context.d.ts +9 -0
- package/dist/components/Chart/Chart.hooks.d.ts +4 -0
- package/dist/components/Chart/Chart.options.d.ts +24 -0
- package/dist/components/Chart/Chart.palette.d.ts +20 -0
- package/dist/components/Chart/Chart.preset.d.ts +7 -0
- package/dist/components/Chart/Chart.register.d.ts +1 -0
- package/dist/components/Chart/Chart.style.d.ts +21 -0
- package/dist/components/Chart/Chart.theme.d.ts +9 -0
- package/dist/components/Chart/Chart.type.d.ts +114 -0
- package/dist/components/Chart/ChartFrame.d.ts +14 -0
- package/dist/components/Chart/ChartRenderer.d.ts +11 -0
- package/dist/components/Chart/charts/BarChart.d.ts +3 -0
- package/dist/components/Chart/charts/DoughnutChart.d.ts +3 -0
- package/dist/components/Chart/charts/LineChart.d.ts +3 -0
- package/dist/components/Chart/charts/PieChart.d.ts +3 -0
- package/dist/components/Form/Dropdown/Dropdown.d.ts +1 -47
- package/dist/components/Form/Dropdown/Dropdown.type.d.ts +48 -0
- package/dist/components/Form/TextArea/TextArea.d.ts +1 -18
- package/dist/components/Form/TextArea/TextArea.type.d.ts +19 -0
- package/dist/components/Form/TextInput/TextInput.d.ts +1 -17
- package/dist/components/Form/TextInput/TextInput.type.d.ts +18 -0
- package/dist/components/TimeInput/TimeInput.d.ts +1 -27
- package/dist/components/TimeInput/TimeInput.type.d.ts +27 -0
- package/dist/display.js +23 -22
- package/dist/entry/chart.d.ts +6 -2
- package/dist/entry/components.d.ts +1 -2
- package/dist/feedback.js +2 -2
- package/dist/form.js +463 -462
- package/dist/icon.js +2 -2
- package/dist/index.js +3806 -3862
- package/dist/index.umd.cjs +24 -24
- package/dist/navigation.js +41 -40
- package/dist/styles/color.d.ts +30 -0
- package/dist/video-player.js +83 -83
- package/docs/subpath-imports.md +80 -0
- package/package.json +3 -2
- package/dist/components/Chart/Chart.d.ts +0 -19
- /package/dist/components/Cascader/{Cacader.data.d.ts → Cascader.data.d.ts} +0 -0
|
@@ -1,54 +1,8 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import { Icon } from '../../../components/Icon/Icon';
|
|
4
|
-
type AsProps = {
|
|
5
|
-
isEmpty: boolean;
|
|
6
|
-
placeholder?: string;
|
|
7
|
-
selectedValue: string;
|
|
8
|
-
open?: boolean;
|
|
9
|
-
options?: {
|
|
10
|
-
value: string;
|
|
11
|
-
label: string;
|
|
12
|
-
}[];
|
|
13
|
-
variant?: "outlined" | "contained" | "text";
|
|
14
|
-
size?: "small" | "medium" | "large";
|
|
15
|
-
colorStyle: React.CSSProperties;
|
|
16
|
-
iconColorStyle: (position: "left" | "right") => React.CSSProperties;
|
|
17
|
-
handleTriggerClick?: () => void;
|
|
18
|
-
};
|
|
19
|
-
type TriggerProps = React.PropsWithChildren<{
|
|
20
|
-
as?: (props: AsProps) => React.ReactNode;
|
|
21
|
-
className?: string;
|
|
22
|
-
variant?: "outlined" | "contained" | "text";
|
|
23
|
-
size?: "small" | "medium" | "large";
|
|
24
|
-
leftIcon?: React.ComponentProps<typeof Icon> | null;
|
|
25
|
-
rightIcon?: React.ComponentProps<typeof Icon> | null;
|
|
26
|
-
}>;
|
|
2
|
+
import { TriggerProps, MenuProps, ItemProps, RootProps } from './Dropdown.type';
|
|
27
3
|
declare const Trigger: (props: TriggerProps) => string | number | bigint | boolean | import("react/jsx-runtime").JSX.Element | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null | undefined;
|
|
28
|
-
type MenuRenderProps = {
|
|
29
|
-
open: boolean;
|
|
30
|
-
id?: string;
|
|
31
|
-
variant?: "shadow" | "line";
|
|
32
|
-
size?: "small" | "medium";
|
|
33
|
-
handleTriggerClick?: () => void;
|
|
34
|
-
};
|
|
35
|
-
type MenuProps = {
|
|
36
|
-
className?: string;
|
|
37
|
-
variant?: "shadow" | "line";
|
|
38
|
-
size?: "small" | "medium";
|
|
39
|
-
children?: React.ReactNode | ((props: MenuRenderProps) => React.ReactNode);
|
|
40
|
-
boundaryPadding?: number;
|
|
41
|
-
};
|
|
42
4
|
declare const Menu: (props: MenuProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
43
|
-
type ItemProps = React.PropsWithChildren<{
|
|
44
|
-
className?: string;
|
|
45
|
-
value: string;
|
|
46
|
-
label?: string;
|
|
47
|
-
variant?: "shadow" | "line";
|
|
48
|
-
size?: "small" | "medium";
|
|
49
|
-
}>;
|
|
50
5
|
declare const Item: (props: ItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
type RootProps = DropdownProviderProps & Omit<React.HTMLProps<HTMLDivElement>, "onChange">;
|
|
52
6
|
declare const Root: (props: RootProps) => import("react/jsx-runtime").JSX.Element;
|
|
53
7
|
interface IDropdown {
|
|
54
8
|
Trigger: typeof Trigger;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DropdownProviderProps } from './Dropdown.context';
|
|
3
|
+
import { Icon } from '../../../components/Icon/Icon';
|
|
4
|
+
export type AsProps = {
|
|
5
|
+
isEmpty: boolean;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
selectedValue: string;
|
|
8
|
+
open?: boolean;
|
|
9
|
+
options?: {
|
|
10
|
+
value: string;
|
|
11
|
+
label: string;
|
|
12
|
+
}[];
|
|
13
|
+
variant?: "outlined" | "contained" | "text";
|
|
14
|
+
size?: "small" | "medium" | "large";
|
|
15
|
+
colorStyle: React.CSSProperties;
|
|
16
|
+
iconColorStyle: (position: "left" | "right") => React.CSSProperties;
|
|
17
|
+
handleTriggerClick?: () => void;
|
|
18
|
+
};
|
|
19
|
+
export type TriggerProps = React.PropsWithChildren<{
|
|
20
|
+
as?: (props: AsProps) => React.ReactNode;
|
|
21
|
+
className?: string;
|
|
22
|
+
variant?: "outlined" | "contained" | "text";
|
|
23
|
+
size?: "small" | "medium" | "large";
|
|
24
|
+
leftIcon?: React.ComponentProps<typeof Icon> | null;
|
|
25
|
+
rightIcon?: React.ComponentProps<typeof Icon> | null;
|
|
26
|
+
}>;
|
|
27
|
+
export type MenuRenderProps = {
|
|
28
|
+
open: boolean;
|
|
29
|
+
id?: string;
|
|
30
|
+
variant?: "shadow" | "line";
|
|
31
|
+
size?: "small" | "medium";
|
|
32
|
+
handleTriggerClick?: () => void;
|
|
33
|
+
};
|
|
34
|
+
export type MenuProps = {
|
|
35
|
+
className?: string;
|
|
36
|
+
variant?: "shadow" | "line";
|
|
37
|
+
size?: "small" | "medium";
|
|
38
|
+
children?: React.ReactNode | ((props: MenuRenderProps) => React.ReactNode);
|
|
39
|
+
boundaryPadding?: number;
|
|
40
|
+
};
|
|
41
|
+
export type ItemProps = React.PropsWithChildren<{
|
|
42
|
+
className?: string;
|
|
43
|
+
value: string;
|
|
44
|
+
label?: string;
|
|
45
|
+
variant?: "shadow" | "line";
|
|
46
|
+
size?: "small" | "medium";
|
|
47
|
+
}>;
|
|
48
|
+
export type RootProps = DropdownProviderProps & Omit<React.HTMLProps<HTMLDivElement>, "onChange">;
|
|
@@ -1,28 +1,11 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { default as HelperTextComponent } from '../../HelperText/HelperText';
|
|
3
3
|
import { TextAreaProviderProps } from './TextArea.context';
|
|
4
|
-
|
|
5
|
-
className?: string;
|
|
6
|
-
}>;
|
|
4
|
+
import { TextCountProps, EraseProps, InputProps, LabelProps } from './TextArea.type';
|
|
7
5
|
declare const TextCount: (props: TextCountProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
type EraseProps = React.PropsWithChildren<{
|
|
9
|
-
className?: string;
|
|
10
|
-
}>;
|
|
11
6
|
declare const Erase: (props: EraseProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
7
|
declare const HelperText: (props: React.ComponentProps<typeof HelperTextComponent>) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
type InputProps = React.PropsWithChildren<React.HTMLProps<HTMLTextAreaElement>> & {
|
|
14
|
-
wrapperClassName?: string;
|
|
15
|
-
placeholderColor?: string;
|
|
16
|
-
focusedColor?: string;
|
|
17
|
-
containedBackgroundColor?: string;
|
|
18
|
-
disabledColor?: string;
|
|
19
|
-
maxRows?: number;
|
|
20
|
-
};
|
|
21
8
|
declare const Input: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
type LabelProps = React.PropsWithChildren<{
|
|
23
|
-
className?: string;
|
|
24
|
-
focusedColor?: string;
|
|
25
|
-
}>;
|
|
26
9
|
declare const Label: (props: LabelProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
10
|
declare const Root: (props: TextAreaProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
28
11
|
interface ITextArea {
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type TextCountProps = React.PropsWithChildren<{
|
|
3
|
+
className?: string;
|
|
4
|
+
}>;
|
|
5
|
+
export type EraseProps = React.PropsWithChildren<{
|
|
6
|
+
className?: string;
|
|
7
|
+
}>;
|
|
8
|
+
export type InputProps = React.PropsWithChildren<React.HTMLProps<HTMLTextAreaElement>> & {
|
|
9
|
+
wrapperClassName?: string;
|
|
10
|
+
placeholderColor?: string;
|
|
11
|
+
focusedColor?: string;
|
|
12
|
+
containedBackgroundColor?: string;
|
|
13
|
+
disabledColor?: string;
|
|
14
|
+
maxRows?: number;
|
|
15
|
+
};
|
|
16
|
+
export type LabelProps = React.PropsWithChildren<{
|
|
17
|
+
className?: string;
|
|
18
|
+
focusedColor?: string;
|
|
19
|
+
}>;
|
|
@@ -1,26 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { default as HelperTextComponent } from '../../HelperText/HelperText';
|
|
3
3
|
import { TextInputProviderProps } from './TextInput.context';
|
|
4
|
-
|
|
5
|
-
className?: string;
|
|
6
|
-
color?: string;
|
|
7
|
-
}>;
|
|
4
|
+
import { EraseProps, InputProps, LabelProps } from './TextInput.type';
|
|
8
5
|
declare const Erase: (props: EraseProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
type InputProps = React.PropsWithChildren<React.HTMLProps<HTMLInputElement>> & {
|
|
10
|
-
wrapperClassName?: string;
|
|
11
|
-
placeholderColor?: string;
|
|
12
|
-
focusedColor?: string;
|
|
13
|
-
containedBackgroundColor?: string;
|
|
14
|
-
disabledColor?: string;
|
|
15
|
-
leftIcon?: React.ReactNode;
|
|
16
|
-
rightIcon?: React.ReactNode;
|
|
17
|
-
};
|
|
18
6
|
declare const Input: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
7
|
declare const HelperText: (props: React.ComponentProps<typeof HelperTextComponent>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
type LabelProps = React.PropsWithChildren<{
|
|
21
|
-
className?: string;
|
|
22
|
-
focusedColor?: string;
|
|
23
|
-
}>;
|
|
24
8
|
declare const Label: (props: LabelProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
9
|
declare const Root: (props: TextInputProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
10
|
interface ITextInput {
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type EraseProps = React.PropsWithChildren<{
|
|
3
|
+
className?: string;
|
|
4
|
+
color?: string;
|
|
5
|
+
}>;
|
|
6
|
+
export type InputProps = React.PropsWithChildren<React.HTMLProps<HTMLInputElement>> & {
|
|
7
|
+
wrapperClassName?: string;
|
|
8
|
+
placeholderColor?: string;
|
|
9
|
+
focusedColor?: string;
|
|
10
|
+
containedBackgroundColor?: string;
|
|
11
|
+
disabledColor?: string;
|
|
12
|
+
leftIcon?: React.ReactNode;
|
|
13
|
+
rightIcon?: React.ReactNode;
|
|
14
|
+
};
|
|
15
|
+
export type LabelProps = React.PropsWithChildren<{
|
|
16
|
+
className?: string;
|
|
17
|
+
focusedColor?: string;
|
|
18
|
+
}>;
|
|
@@ -1,37 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TimeInputContextType } from './TimeInput.context';
|
|
3
|
-
type InputProps = {
|
|
4
|
-
index: number;
|
|
5
|
-
placeholder: string;
|
|
6
|
-
} & React.JSX.IntrinsicElements["input"];
|
|
1
|
+
import { InputProps, TimeRangeProps, ColonProps, SeparatorProps, HelperTextProps, InputWrapperProps, LabelProps, RootProps } from './TimeInput.type';
|
|
7
2
|
declare const Input: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
type TimeRangeProps = React.PropsWithChildren<React.JSX.IntrinsicElements["div"]>;
|
|
9
3
|
declare const TimeRange: (props: TimeRangeProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
type ColonProps = React.JSX.IntrinsicElements["span"];
|
|
11
4
|
declare const Colon: (props: ColonProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
type SeparatorProps = React.JSX.IntrinsicElements["span"];
|
|
13
5
|
declare const Separator: (props: SeparatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
type HelperTextProps = React.PropsWithChildren<{
|
|
15
|
-
className?: string;
|
|
16
|
-
warningColor?: string;
|
|
17
|
-
errorColor?: string;
|
|
18
|
-
successColor?: string;
|
|
19
|
-
defaultColor?: string;
|
|
20
|
-
infoColor?: string;
|
|
21
|
-
size?: number;
|
|
22
|
-
iconVisible?: boolean;
|
|
23
|
-
}>;
|
|
24
6
|
declare const HelperText: (props: HelperTextProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
25
|
-
type InputWrapperProps = React.PropsWithChildren<React.JSX.IntrinsicElements["div"]>;
|
|
26
7
|
declare const InputWrapper: (props: InputWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
type LabelProps = React.PropsWithChildren<{
|
|
28
|
-
className?: string;
|
|
29
|
-
focusedColor?: string;
|
|
30
|
-
}>;
|
|
31
8
|
declare const Label: (props: LabelProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
type RootProps = React.PropsWithChildren<Omit<TimeInputContextType, "inputRefs" | "handleChange" | "handleBlur" | "handleKeyDown"> & {
|
|
33
|
-
className?: string;
|
|
34
|
-
}>;
|
|
35
9
|
declare const Root: (props: RootProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
10
|
interface ITimeInput {
|
|
37
11
|
Root: typeof Root;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TimeInputContextType } from './TimeInput.context';
|
|
3
|
+
export type InputProps = {
|
|
4
|
+
index: number;
|
|
5
|
+
placeholder: string;
|
|
6
|
+
} & React.JSX.IntrinsicElements["input"];
|
|
7
|
+
export type TimeRangeProps = React.PropsWithChildren<React.JSX.IntrinsicElements["div"]>;
|
|
8
|
+
export type ColonProps = React.JSX.IntrinsicElements["span"];
|
|
9
|
+
export type SeparatorProps = React.JSX.IntrinsicElements["span"];
|
|
10
|
+
export type HelperTextProps = React.PropsWithChildren<{
|
|
11
|
+
className?: string;
|
|
12
|
+
warningColor?: string;
|
|
13
|
+
errorColor?: string;
|
|
14
|
+
successColor?: string;
|
|
15
|
+
defaultColor?: string;
|
|
16
|
+
infoColor?: string;
|
|
17
|
+
size?: number;
|
|
18
|
+
iconVisible?: boolean;
|
|
19
|
+
}>;
|
|
20
|
+
export type InputWrapperProps = React.PropsWithChildren<React.JSX.IntrinsicElements["div"]>;
|
|
21
|
+
export type LabelProps = React.PropsWithChildren<{
|
|
22
|
+
className?: string;
|
|
23
|
+
focusedColor?: string;
|
|
24
|
+
}>;
|
|
25
|
+
export type RootProps = React.PropsWithChildren<Omit<TimeInputContextType, "inputRefs" | "handleChange" | "handleBlur" | "handleKeyDown"> & {
|
|
26
|
+
className?: string;
|
|
27
|
+
}>;
|
package/dist/display.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { j as P, c as ce } from "./compiler-runtime-BFrE5JtX.js";
|
|
2
2
|
import x, { useImperativeHandle as Cn } from "react";
|
|
3
3
|
import { c as Oe, g as go } from "./bind-D3ZJ5k4I.js";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
4
|
+
import { T as W, B as qr, S as L } from "./baseColor-DYa5_IOB.js";
|
|
5
|
+
import { c as w } from "./color-qJrSCDan.js";
|
|
6
|
+
import { a as me } from "./Icon-DEdvzMs-.js";
|
|
7
|
+
import { D as _d } from "./Divider-m-B4TrPH.js";
|
|
7
8
|
const _o = "_Group_e8604_2", yo = "_GroupItem_e8604_5", mo = "_Item_e8604_8", bo = "_rounded_e8604_22", Eo = "_circle_e8604_25", Oo = "_Text_e8604_28", wo = "_AvatarImage_e8604_37", Co = {
|
|
8
9
|
Group: _o,
|
|
9
10
|
GroupItem: yo,
|
|
@@ -152,7 +153,7 @@ const _o = "_Group_e8604_2", yo = "_GroupItem_e8604_5", mo = "_Item_e8604_8", bo
|
|
|
152
153
|
}, children: l ? T((o == null ? void 0 : o.alt) ?? "") : o == null ? void 0 : o.alt }) : /* @__PURE__ */ P.jsx("img", { ...o, className: be("AvatarImage"), onError: y }), e[30] = r, e[31] = y, e[32] = o, e[33] = h, e[34] = l, e[35] = p, e[36] = U) : U = e[36];
|
|
153
154
|
let K;
|
|
154
155
|
return e[37] !== j || e[38] !== Q || e[39] !== U ? (K = /* @__PURE__ */ P.jsx("div", { className: j, style: Q, children: U }), e[37] = j, e[38] = Q, e[39] = U, e[40] = K) : K = e[40], K;
|
|
155
|
-
},
|
|
156
|
+
}, od = {
|
|
156
157
|
Item: $n,
|
|
157
158
|
Group: xo
|
|
158
159
|
};
|
|
@@ -170,7 +171,7 @@ const Mo = "_Wrap_r1qra_2", Po = "_square_r1qra_13", To = "_circle_r1qra_16", Ao
|
|
|
170
171
|
dot: ko,
|
|
171
172
|
hidden: Io,
|
|
172
173
|
Standalone: Do
|
|
173
|
-
}, Bt = Oe.bind(Lo),
|
|
174
|
+
}, Bt = Oe.bind(Lo), ad = (t) => {
|
|
174
175
|
const e = ce.c(29);
|
|
175
176
|
let r, n, o, i, f, u, a, l, c;
|
|
176
177
|
e[0] !== t ? ({
|
|
@@ -3351,7 +3352,7 @@ Fr.defaultProps = {
|
|
|
3351
3352
|
ean128: !1
|
|
3352
3353
|
};
|
|
3353
3354
|
var kf = Fr;
|
|
3354
|
-
const If = /* @__PURE__ */ go(kf), Df = {}, yn = Oe.bind(Df),
|
|
3355
|
+
const If = /* @__PURE__ */ go(kf), Df = {}, yn = Oe.bind(Df), id = (t) => {
|
|
3355
3356
|
const e = ce.c(17), {
|
|
3356
3357
|
value: r,
|
|
3357
3358
|
className: n,
|
|
@@ -3628,7 +3629,7 @@ const Nf = "_ChipsWrapper_5cgrc_2", Bf = "_large_5cgrc_13", zf = "_medium_5cgrc_
|
|
|
3628
3629
|
disabled: r,
|
|
3629
3630
|
dual: n
|
|
3630
3631
|
};
|
|
3631
|
-
}, mn = Oe.bind(Wf),
|
|
3632
|
+
}, mn = Oe.bind(Wf), ld = (t) => {
|
|
3632
3633
|
const e = ce.c(18), {
|
|
3633
3634
|
className: r,
|
|
3634
3635
|
children: n,
|
|
@@ -3661,7 +3662,7 @@ const Nf = "_ChipsWrapper_5cgrc_2", Bf = "_large_5cgrc_13", zf = "_medium_5cgrc_
|
|
|
3661
3662
|
}, Vf = "_CommentWrapper_9wn1d_1", Yf = "_Caption_9wn1d_10", Qf = {
|
|
3662
3663
|
CommentWrapper: Vf,
|
|
3663
3664
|
Caption: Yf
|
|
3664
|
-
}, bn = Oe.bind(Qf),
|
|
3665
|
+
}, bn = Oe.bind(Qf), cd = (t) => {
|
|
3665
3666
|
const e = ce.c(22), {
|
|
3666
3667
|
children: r,
|
|
3667
3668
|
status: n,
|
|
@@ -3959,7 +3960,7 @@ const Nf = "_ChipsWrapper_5cgrc_2", Bf = "_large_5cgrc_13", zf = "_medium_5cgrc_
|
|
|
3959
3960
|
lightGreen: f,
|
|
3960
3961
|
deepGreen: u
|
|
3961
3962
|
};
|
|
3962
|
-
}, os = Oe.bind(rs),
|
|
3963
|
+
}, os = Oe.bind(rs), ud = (t) => {
|
|
3963
3964
|
const e = ce.c(14), {
|
|
3964
3965
|
children: r,
|
|
3965
3966
|
size: n,
|
|
@@ -4080,7 +4081,7 @@ const ir = Oe.bind(is), En = {
|
|
|
4080
4081
|
}), width: r ?? n * d, height: n ?? r / d, onLoad: s, style: {
|
|
4081
4082
|
objectFit: "cover"
|
|
4082
4083
|
}, alt: "", ...i });
|
|
4083
|
-
},
|
|
4084
|
+
}, fd = cs ? fs : us, ss = {};
|
|
4084
4085
|
var ds = Object.defineProperty, mt = Object.getOwnPropertySymbols, eo = Object.prototype.hasOwnProperty, to = Object.prototype.propertyIsEnumerable, On = (t, e, r) => e in t ? ds(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r, lr = (t, e) => {
|
|
4085
4086
|
for (var r in e || (e = {}))
|
|
4086
4087
|
eo.call(e, r) && On(t, r, e[r]);
|
|
@@ -4914,7 +4915,7 @@ var bs = x.forwardRef(
|
|
|
4914
4915
|
}
|
|
4915
4916
|
);
|
|
4916
4917
|
bs.displayName = "QRCodeSVG";
|
|
4917
|
-
const Es = Oe.bind(ss),
|
|
4918
|
+
const Es = Oe.bind(ss), hd = (t) => {
|
|
4918
4919
|
const {
|
|
4919
4920
|
link: e,
|
|
4920
4921
|
className: r,
|
|
@@ -5419,7 +5420,7 @@ const Es = Oe.bind(ss), dd = (t) => {
|
|
|
5419
5420
|
e[20] !== n || e[21] !== o || e[22] !== i ? (u = /* @__PURE__ */ P.jsx("div", { ...o, className: i, children: n }), e[20] = n, e[21] = o, e[22] = i, e[23] = u) : u = e[23];
|
|
5420
5421
|
let a;
|
|
5421
5422
|
return e[24] !== r || e[25] !== f || e[26] !== u ? (a = /* @__PURE__ */ P.jsx(r, { value: f, children: u }), e[24] = r, e[25] = f, e[26] = u, e[27] = a) : a = e[27], a;
|
|
5422
|
-
},
|
|
5423
|
+
}, vd = {
|
|
5423
5424
|
Root: Xs,
|
|
5424
5425
|
Image: Ws,
|
|
5425
5426
|
Upload: Hs,
|
|
@@ -5441,14 +5442,14 @@ function Js(t) {
|
|
|
5441
5442
|
return x.isValidElement(t) && t.type === Ur;
|
|
5442
5443
|
}
|
|
5443
5444
|
export {
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5445
|
+
od as Avatar,
|
|
5446
|
+
ad as Badge,
|
|
5447
|
+
id as BarCode,
|
|
5448
|
+
ld as Chips,
|
|
5449
|
+
cd as Comment,
|
|
5450
|
+
_d as Divider,
|
|
5451
|
+
ud as Label,
|
|
5452
|
+
fd as LazyImage,
|
|
5453
|
+
hd as QRCode,
|
|
5454
|
+
vd as Thumbnail
|
|
5454
5455
|
};
|
package/dist/entry/chart.d.ts
CHANGED
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export {};
|
|
1
|
+
export { default as BarChart } from '../components/Chart/charts/BarChart';
|
|
2
|
+
export { default as LineChart } from '../components/Chart/charts/LineChart';
|
|
3
|
+
export { default as PieChart } from '../components/Chart/charts/PieChart';
|
|
4
|
+
export { default as DoughnutChart } from '../components/Chart/charts/DoughnutChart';
|
|
5
|
+
export { ChartThemeProvider } from '../components/Chart/Chart.theme';
|
|
6
|
+
export type { BarChartProps, LineChartProps, PieChartProps, DoughnutChartProps, ChartBaseProps, ChartThemeValue, ChartPreset, ChartStyleDefaults, SimpleDatum, ChartSeries, SeriesData, CategoricalData, ProportionData, PaletteInput, } from '../components/Chart/Chart.type';
|
|
@@ -46,8 +46,7 @@ export { default as LazyImage } from '../components/LazyImage/LazyImage';
|
|
|
46
46
|
/** Calendar */
|
|
47
47
|
export { default as Calendar } from '../components/Calendar/Calendar';
|
|
48
48
|
export { CalendarContext } from '../components/Calendar/Calendar.context';
|
|
49
|
-
/** Chart */
|
|
50
|
-
export { default as Chart } from '../components/Chart/Chart';
|
|
49
|
+
/** Chart — 타입별 컴포넌트는 entry/chart.ts 에서 export (BarChart/LineChart/PieChart/DoughnutChart) */
|
|
51
50
|
/** Quill Editor */
|
|
52
51
|
export { default as Editor } from '../components/Editor/Editor';
|
|
53
52
|
/** Table */
|
package/dist/feedback.js
CHANGED
|
@@ -102,7 +102,7 @@ const be = (t) => {
|
|
|
102
102
|
} = t, {
|
|
103
103
|
id: n,
|
|
104
104
|
dimmedDisabled: c
|
|
105
|
-
} = d.
|
|
105
|
+
} = d.use(ce), r = re("Dimmed", o.className);
|
|
106
106
|
let l;
|
|
107
107
|
e[0] !== c || e[1] !== n || e[2] !== s ? (l = !c && {
|
|
108
108
|
onClick: s,
|
|
@@ -131,7 +131,7 @@ const be = (t) => {
|
|
|
131
131
|
} = t, {
|
|
132
132
|
id: n,
|
|
133
133
|
bodyScroll: c
|
|
134
|
-
} = d.
|
|
134
|
+
} = d.use(ce), r = "manual", l = re("Layer", o.className, {
|
|
135
135
|
bodyScroll: c
|
|
136
136
|
});
|
|
137
137
|
let i;
|