@jbpark/ui-kit 2.0.1 → 2.1.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/Menu.mjs +4 -4
- package/dist/{Reveals-BpnYZJUk.mjs → Reveals-BMHeo2nr.mjs} +1 -1
- package/dist/Reveals.d.mts +1 -1
- package/dist/Reveals.mjs +2 -2
- package/dist/{Typography-LYvEW-c8.mjs → Typography-DJSakhLz.mjs} +1 -1
- package/dist/Typography.d.mts +1 -1
- package/dist/Typography.mjs +2 -2
- package/dist/{index-CbaWHQ3Y.d.mts → index-DS-PGSIg.d.mts} +4 -4
- package/dist/{index-DP36DulT.d.mts → index-DX9rV4ki.d.mts} +10 -10
- package/dist/index.d.mts +49 -37
- package/dist/index.mjs +4 -4
- package/dist/output.css +159 -5
- package/dist/{src-DbD2jnc4.mjs → src-Da3Y-f7V.mjs} +558 -370
- package/dist/utils-CssUrKWE.mjs +16 -0
- package/dist/utils.d.mts +3 -1
- package/dist/utils.mjs +2 -2
- package/package.json +1 -1
- package/dist/utils-DEenfsJ-.mjs +0 -10
package/dist/Menu.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
-
import { d as buildSelectionMap, f as findKey, l as MENU_CLASSNAMES, u as Menu_default } from "./src-
|
|
4
|
-
import "./utils-
|
|
5
|
-
import "./Typography-
|
|
6
|
-
import "./Reveals-
|
|
3
|
+
import { d as buildSelectionMap, f as findKey, l as MENU_CLASSNAMES, u as Menu_default } from "./src-Da3Y-f7V.mjs";
|
|
4
|
+
import "./utils-CssUrKWE.mjs";
|
|
5
|
+
import "./Typography-DJSakhLz.mjs";
|
|
6
|
+
import "./Reveals-BMHeo2nr.mjs";
|
|
7
7
|
|
|
8
8
|
export { MENU_CLASSNAMES, buildSelectionMap, Menu_default as default, findKey };
|
package/dist/Reveals.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as Reveals, i as Props, n as DELAY, o as Item, r as DURATION, s as ItemProps, t as CASCADE } from "./index-
|
|
1
|
+
import { a as Reveals, i as Props, n as DELAY, o as Item, r as DURATION, s as ItemProps, t as CASCADE } from "./index-DS-PGSIg.mjs";
|
|
2
2
|
export { CASCADE, DELAY, DURATION, Item, ItemProps, Props as RevealsProps, Reveals as default };
|
package/dist/Reveals.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./utils-
|
|
2
|
-
import { a as Item_default, i as Reveals_default, n as DELAY, r as DURATION, t as CASCADE } from "./Reveals-
|
|
1
|
+
import "./utils-CssUrKWE.mjs";
|
|
2
|
+
import { a as Item_default, i as Reveals_default, n as DELAY, r as DURATION, t as CASCADE } from "./Reveals-BMHeo2nr.mjs";
|
|
3
3
|
|
|
4
4
|
export { CASCADE, DELAY, DURATION, Item_default as Item, Reveals_default as default };
|
package/dist/Typography.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as Paragraph, i as Text, n as TypographyProps, o as Link, r as Title, t as Typography } from "./index-
|
|
1
|
+
import { a as Paragraph, i as Text, n as TypographyProps, o as Link, r as Title, t as Typography } from "./index-DX9rV4ki.mjs";
|
|
2
2
|
export { Link, Paragraph, Text, Title, TypographyProps, Typography as default };
|
package/dist/Typography.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./utils-
|
|
2
|
-
import { a as Link_default, i as Paragraph_default, n as Title_default, r as Text_default, t as Typography_default } from "./Typography-
|
|
1
|
+
import "./utils-CssUrKWE.mjs";
|
|
2
|
+
import { a as Link_default, i as Paragraph_default, n as Title_default, r as Text_default, t as Typography_default } from "./Typography-DJSakhLz.mjs";
|
|
3
3
|
|
|
4
4
|
export { Link_default as Link, Paragraph_default as Paragraph, Text_default as Text, Title_default as Title, Typography_default as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime11 from "react/jsx-runtime";
|
|
2
2
|
import { MotionProps } from "motion/react";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/Reveals/Item/index.d.ts
|
|
@@ -54,7 +54,7 @@ declare const Item: ({
|
|
|
54
54
|
transition,
|
|
55
55
|
className,
|
|
56
56
|
...props
|
|
57
|
-
}: ItemProps) =>
|
|
57
|
+
}: ItemProps) => react_jsx_runtime11.JSX.Element;
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/components/molecules/Reveals/index.d.ts
|
|
60
60
|
interface Props extends React.HTMLAttributes<HTMLDivElement>, ItemProps {
|
|
@@ -79,7 +79,7 @@ declare const Reveals: {
|
|
|
79
79
|
duration,
|
|
80
80
|
delay,
|
|
81
81
|
...props
|
|
82
|
-
}: Props):
|
|
82
|
+
}: Props): react_jsx_runtime11.JSX.Element;
|
|
83
83
|
Item: ({
|
|
84
84
|
effect,
|
|
85
85
|
children,
|
|
@@ -91,7 +91,7 @@ declare const Reveals: {
|
|
|
91
91
|
transition,
|
|
92
92
|
className,
|
|
93
93
|
...props
|
|
94
|
-
}: ItemProps) =>
|
|
94
|
+
}: ItemProps) => react_jsx_runtime11.JSX.Element;
|
|
95
95
|
};
|
|
96
96
|
//#endregion
|
|
97
97
|
export { Reveals as a, Props as i, DELAY as n, Item as o, DURATION as r, ItemProps as s, CASCADE as t };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime7 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/atoms/Typography/Link/index.d.ts
|
|
4
4
|
interface Props$3 extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
@@ -9,7 +9,7 @@ declare const Link: ({
|
|
|
9
9
|
className,
|
|
10
10
|
level,
|
|
11
11
|
...props
|
|
12
|
-
}: Props$3) =>
|
|
12
|
+
}: Props$3) => react_jsx_runtime7.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
//#region src/components/atoms/Typography/Paragraph/index.d.ts
|
|
15
15
|
interface Props$2 extends TypographyProps {}
|
|
@@ -18,7 +18,7 @@ declare const Paragraph: ({
|
|
|
18
18
|
className,
|
|
19
19
|
level,
|
|
20
20
|
...props
|
|
21
|
-
}: Props$2) =>
|
|
21
|
+
}: Props$2) => react_jsx_runtime7.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
//#region src/components/atoms/Typography/Text/index.d.ts
|
|
24
24
|
interface Props$1 extends TypographyProps {
|
|
@@ -32,7 +32,7 @@ declare const Text: ({
|
|
|
32
32
|
className,
|
|
33
33
|
level,
|
|
34
34
|
...props
|
|
35
|
-
}: Props$1) =>
|
|
35
|
+
}: Props$1) => react_jsx_runtime7.JSX.Element;
|
|
36
36
|
//#endregion
|
|
37
37
|
//#region src/components/atoms/Typography/Title/index.d.ts
|
|
38
38
|
interface Props extends TypographyProps {}
|
|
@@ -41,7 +41,7 @@ declare const Title: ({
|
|
|
41
41
|
level,
|
|
42
42
|
className,
|
|
43
43
|
...props
|
|
44
|
-
}: Props) =>
|
|
44
|
+
}: Props) => react_jsx_runtime7.JSX.Element;
|
|
45
45
|
//#endregion
|
|
46
46
|
//#region src/components/atoms/Typography/index.d.ts
|
|
47
47
|
interface TypographyProps extends React.HTMLAttributes<HTMLElement> {
|
|
@@ -51,19 +51,19 @@ declare const Typography: {
|
|
|
51
51
|
({
|
|
52
52
|
children,
|
|
53
53
|
...props
|
|
54
|
-
}: TypographyProps):
|
|
54
|
+
}: TypographyProps): react_jsx_runtime7.JSX.Element;
|
|
55
55
|
Link: ({
|
|
56
56
|
children,
|
|
57
57
|
className,
|
|
58
58
|
level,
|
|
59
59
|
...props
|
|
60
|
-
}: Props$3) =>
|
|
60
|
+
}: Props$3) => react_jsx_runtime7.JSX.Element;
|
|
61
61
|
Paragraph: ({
|
|
62
62
|
children,
|
|
63
63
|
className,
|
|
64
64
|
level,
|
|
65
65
|
...props
|
|
66
|
-
}: Props$2) =>
|
|
66
|
+
}: Props$2) => react_jsx_runtime7.JSX.Element;
|
|
67
67
|
Text: ({
|
|
68
68
|
children,
|
|
69
69
|
underline,
|
|
@@ -71,13 +71,13 @@ declare const Typography: {
|
|
|
71
71
|
className,
|
|
72
72
|
level,
|
|
73
73
|
...props
|
|
74
|
-
}: Props$1) =>
|
|
74
|
+
}: Props$1) => react_jsx_runtime7.JSX.Element;
|
|
75
75
|
Title: ({
|
|
76
76
|
children,
|
|
77
77
|
level,
|
|
78
78
|
className,
|
|
79
79
|
...props
|
|
80
|
-
}: Props) =>
|
|
80
|
+
}: Props) => react_jsx_runtime7.JSX.Element;
|
|
81
81
|
};
|
|
82
82
|
//#endregion
|
|
83
83
|
export { Paragraph as a, Text as i, TypographyProps as n, Link as o, Title as r, Typography as t };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
|
-
import { t as Typography } from "./index-
|
|
1
|
+
import { t as Typography } from "./index-DX9rV4ki.mjs";
|
|
2
2
|
import { a as MenuProps, r as Menu } from "./index-CbElazGe.mjs";
|
|
3
|
-
import { a as Reveals } from "./index-
|
|
3
|
+
import { a as Reveals } from "./index-DS-PGSIg.mjs";
|
|
4
4
|
import * as React$2 from "react";
|
|
5
5
|
import React$1, { ChangeEvent, HTMLAttributes, InputHTMLAttributes, MouseEvent } from "react";
|
|
6
|
+
import "@radix-ui/react-accordion";
|
|
7
|
+
import * as react_jsx_runtime13 from "react/jsx-runtime";
|
|
6
8
|
import { VariantProps } from "class-variance-authority";
|
|
7
|
-
import
|
|
9
|
+
import "@radix-ui/react-checkbox";
|
|
10
|
+
import "@radix-ui/react-dialog";
|
|
11
|
+
import { Drawer as Drawer$1 } from "vaul";
|
|
12
|
+
import "@radix-ui/react-label";
|
|
13
|
+
import "@radix-ui/react-popover";
|
|
14
|
+
import "@radix-ui/react-progress";
|
|
15
|
+
import "@radix-ui/react-switch";
|
|
8
16
|
import * as swiper_react0 from "swiper/react";
|
|
9
17
|
import { SwiperProps } from "swiper/react";
|
|
10
18
|
import "swiper/css";
|
|
@@ -25,8 +33,9 @@ type Props$23 = React$2.ComponentProps<'button'> & VariantProps<typeof buttonVar
|
|
|
25
33
|
};
|
|
26
34
|
//#endregion
|
|
27
35
|
//#region src/components/atoms/Button/index.d.ts
|
|
36
|
+
type ButtonProps = Props$23;
|
|
28
37
|
type PresetColors = 'blue' | 'purple' | 'cyan' | 'green' | 'magenta' | 'pink' | 'red' | 'orange' | 'yellow' | 'volcano' | 'geekblue' | 'lime' | 'gold';
|
|
29
|
-
interface Props$22 extends Omit<
|
|
38
|
+
interface Props$22 extends Omit<ButtonProps, 'size' | 'variant'> {
|
|
30
39
|
icon?: React.ReactNode;
|
|
31
40
|
block?: boolean;
|
|
32
41
|
danger?: boolean;
|
|
@@ -51,7 +60,7 @@ declare const Button: ({
|
|
|
51
60
|
children,
|
|
52
61
|
onMouseDown,
|
|
53
62
|
...props
|
|
54
|
-
}: Props$22) =>
|
|
63
|
+
}: Props$22) => react_jsx_runtime13.JSX.Element;
|
|
55
64
|
//#endregion
|
|
56
65
|
//#region src/components/atoms/Checkbox/Group/index.d.ts
|
|
57
66
|
type Option = {
|
|
@@ -91,7 +100,7 @@ declare const Checkbox: {
|
|
|
91
100
|
checked: _checked,
|
|
92
101
|
onChange: _onChange,
|
|
93
102
|
...props
|
|
94
|
-
}: Props$20):
|
|
103
|
+
}: Props$20): react_jsx_runtime13.JSX.Element;
|
|
95
104
|
Group: ({
|
|
96
105
|
direction,
|
|
97
106
|
placement,
|
|
@@ -99,7 +108,7 @@ declare const Checkbox: {
|
|
|
99
108
|
classNames,
|
|
100
109
|
options: _options,
|
|
101
110
|
onChange
|
|
102
|
-
}: Props$21) =>
|
|
111
|
+
}: Props$21) => react_jsx_runtime13.JSX.Element;
|
|
103
112
|
};
|
|
104
113
|
//#endregion
|
|
105
114
|
//#region src/components/atoms/FloatButton/BackTop/index.d.ts
|
|
@@ -115,13 +124,13 @@ declare const FloatButton: {
|
|
|
115
124
|
className,
|
|
116
125
|
children,
|
|
117
126
|
...props
|
|
118
|
-
}: Props$18):
|
|
127
|
+
}: Props$18): react_jsx_runtime13.JSX.Element;
|
|
119
128
|
BackTop: ({
|
|
120
129
|
visibilityHeight,
|
|
121
130
|
className,
|
|
122
131
|
onClick,
|
|
123
132
|
...props
|
|
124
|
-
}: Props$19) =>
|
|
133
|
+
}: Props$19) => react_jsx_runtime13.JSX.Element;
|
|
125
134
|
};
|
|
126
135
|
//#endregion
|
|
127
136
|
//#region src/components/atoms/Input/Search/index.d.ts
|
|
@@ -139,7 +148,7 @@ interface Props$17 extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
139
148
|
declare const Input: {
|
|
140
149
|
({
|
|
141
150
|
...props
|
|
142
|
-
}: InputHTMLAttributes<HTMLInputElement>):
|
|
151
|
+
}: InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime13.JSX.Element;
|
|
143
152
|
Search: React$2.ForwardRefExoticComponent<Props$17 & React$2.RefAttributes<HTMLInputElement>>;
|
|
144
153
|
TextArea: ({
|
|
145
154
|
className,
|
|
@@ -147,20 +156,23 @@ declare const Input: {
|
|
|
147
156
|
...props
|
|
148
157
|
}: React.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
149
158
|
ref?: React.Ref<HTMLTextAreaElement>;
|
|
150
|
-
}) =>
|
|
159
|
+
}) => react_jsx_runtime13.JSX.Element;
|
|
151
160
|
};
|
|
152
161
|
//#endregion
|
|
153
162
|
//#region src/components/atoms/Popover/index.d.ts
|
|
154
|
-
|
|
163
|
+
type Placement = 'top' | 'left' | 'right' | 'bottom' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom';
|
|
164
|
+
interface Props$16 extends Omit<React.ComponentPropsWithoutRef<'div'>, 'title' | 'content'> {
|
|
155
165
|
title?: React.ReactNode;
|
|
166
|
+
placement?: Placement;
|
|
156
167
|
content: React.ReactNode;
|
|
157
|
-
children: React.ReactNode;
|
|
158
168
|
}
|
|
159
169
|
declare const Popover: ({
|
|
160
170
|
title,
|
|
171
|
+
placement,
|
|
172
|
+
className,
|
|
161
173
|
content,
|
|
162
174
|
children
|
|
163
|
-
}: Props$16) =>
|
|
175
|
+
}: Props$16) => react_jsx_runtime13.JSX.Element;
|
|
164
176
|
//#endregion
|
|
165
177
|
//#region src/components/atoms/Progress/index.d.ts
|
|
166
178
|
interface Props$15 extends React.HTMLAttributes<HTMLElement> {
|
|
@@ -176,7 +188,7 @@ declare const Progress: ({
|
|
|
176
188
|
className,
|
|
177
189
|
direction,
|
|
178
190
|
classNames
|
|
179
|
-
}: Props$15) =>
|
|
191
|
+
}: Props$15) => react_jsx_runtime13.JSX.Element;
|
|
180
192
|
//#endregion
|
|
181
193
|
//#region src/components/atoms/Skeleton/index.d.ts
|
|
182
194
|
interface Props$14 extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -211,15 +223,15 @@ declare const Skeleton: {
|
|
|
211
223
|
height,
|
|
212
224
|
children,
|
|
213
225
|
...props
|
|
214
|
-
}: Props$14): string | number | bigint | boolean |
|
|
226
|
+
}: Props$14): string | number | bigint | boolean | react_jsx_runtime13.JSX.Element | Iterable<React$2.ReactNode> | Promise<string | number | bigint | boolean | React$2.ReactPortal | React$2.ReactElement<unknown, string | React$2.JSXElementConstructor<any>> | Iterable<React$2.ReactNode> | null | undefined> | null | undefined;
|
|
215
227
|
Button: ({
|
|
216
228
|
className,
|
|
217
229
|
...props
|
|
218
|
-
}: Props$14) =>
|
|
230
|
+
}: Props$14) => react_jsx_runtime13.JSX.Element;
|
|
219
231
|
Node: ({
|
|
220
232
|
className,
|
|
221
233
|
...props
|
|
222
|
-
}: Props$14) =>
|
|
234
|
+
}: Props$14) => react_jsx_runtime13.JSX.Element;
|
|
223
235
|
};
|
|
224
236
|
//#endregion
|
|
225
237
|
//#region src/components/atoms/Spin/index.d.ts
|
|
@@ -230,7 +242,7 @@ declare const Spin: ({
|
|
|
230
242
|
spinning,
|
|
231
243
|
className,
|
|
232
244
|
...props
|
|
233
|
-
}: Props$13) =>
|
|
245
|
+
}: Props$13) => react_jsx_runtime13.JSX.Element | null;
|
|
234
246
|
//#endregion
|
|
235
247
|
//#region src/components/atoms/Switch/index.d.ts
|
|
236
248
|
interface Props$12 extends Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> {
|
|
@@ -247,7 +259,7 @@ declare const Switch: ({
|
|
|
247
259
|
className,
|
|
248
260
|
classNames,
|
|
249
261
|
...props
|
|
250
|
-
}: Props$12) =>
|
|
262
|
+
}: Props$12) => react_jsx_runtime13.JSX.Element;
|
|
251
263
|
//#endregion
|
|
252
264
|
//#region src/components/molecules/Card/index.d.ts
|
|
253
265
|
interface Props$11 extends Omit<React.HTMLProps<HTMLDivElement>, 'title'> {
|
|
@@ -265,7 +277,7 @@ declare const Card: ({
|
|
|
265
277
|
classNames,
|
|
266
278
|
variant,
|
|
267
279
|
...props
|
|
268
|
-
}: Props$11) =>
|
|
280
|
+
}: Props$11) => react_jsx_runtime13.JSX.Element;
|
|
269
281
|
//#endregion
|
|
270
282
|
//#region src/components/molecules/Collapse/index.d.ts
|
|
271
283
|
interface Item {
|
|
@@ -292,7 +304,7 @@ declare const Collapse: ({
|
|
|
292
304
|
className,
|
|
293
305
|
classNames,
|
|
294
306
|
defaultActiveKey
|
|
295
|
-
}: Props$10) =>
|
|
307
|
+
}: Props$10) => react_jsx_runtime13.JSX.Element;
|
|
296
308
|
//#endregion
|
|
297
309
|
//#region src/components/molecules/Dropdown/index.d.ts
|
|
298
310
|
type ChangeEventHandler = (open: boolean) => void;
|
|
@@ -310,7 +322,7 @@ declare const Dropdown: ({
|
|
|
310
322
|
open: _open,
|
|
311
323
|
onOpenChange,
|
|
312
324
|
...props
|
|
313
|
-
}: Props$9) =>
|
|
325
|
+
}: Props$9) => react_jsx_runtime13.JSX.Element;
|
|
314
326
|
//#endregion
|
|
315
327
|
//#region src/components/molecules/Marquees/Item/index.d.ts
|
|
316
328
|
interface ItemProps {
|
|
@@ -340,7 +352,7 @@ declare const Marquees: {
|
|
|
340
352
|
pauseOnHover,
|
|
341
353
|
autoFill,
|
|
342
354
|
...props
|
|
343
|
-
}: Props$7):
|
|
355
|
+
}: Props$7): react_jsx_runtime13.JSX.Element;
|
|
344
356
|
Item: ({
|
|
345
357
|
width: _width,
|
|
346
358
|
speed,
|
|
@@ -348,7 +360,7 @@ declare const Marquees: {
|
|
|
348
360
|
pause: _pause,
|
|
349
361
|
pauseOnHover,
|
|
350
362
|
children
|
|
351
|
-
}: Props$8) =>
|
|
363
|
+
}: Props$8) => react_jsx_runtime13.JSX.Element;
|
|
352
364
|
};
|
|
353
365
|
//#endregion
|
|
354
366
|
//#region src/components/molecules/Space/index.d.ts
|
|
@@ -379,7 +391,7 @@ declare const Space: ({
|
|
|
379
391
|
hidden,
|
|
380
392
|
style,
|
|
381
393
|
...props
|
|
382
|
-
}: Props$6) =>
|
|
394
|
+
}: Props$6) => react_jsx_runtime13.JSX.Element;
|
|
383
395
|
//#endregion
|
|
384
396
|
//#region src/components/organisms/Drawer/index.d.ts
|
|
385
397
|
interface Props$5 {
|
|
@@ -429,7 +441,7 @@ declare const Drawer: ({
|
|
|
429
441
|
container,
|
|
430
442
|
onClose,
|
|
431
443
|
...props
|
|
432
|
-
}: Props$5) =>
|
|
444
|
+
}: Props$5) => react_jsx_runtime13.JSX.Element | null;
|
|
433
445
|
//#endregion
|
|
434
446
|
//#region src/components/organisms/List/index.d.ts
|
|
435
447
|
interface Props$4<T> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
@@ -468,12 +480,12 @@ declare const List: {
|
|
|
468
480
|
classNames,
|
|
469
481
|
renderItem,
|
|
470
482
|
...props
|
|
471
|
-
}: Props$4<T>): string | number | bigint | true |
|
|
483
|
+
}: Props$4<T>): string | number | bigint | true | react_jsx_runtime13.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined>;
|
|
472
484
|
Item: ({
|
|
473
485
|
children,
|
|
474
486
|
className,
|
|
475
487
|
...props
|
|
476
|
-
}: React$1.HTMLAttributes<HTMLDivElement>) =>
|
|
488
|
+
}: React$1.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime13.JSX.Element;
|
|
477
489
|
};
|
|
478
490
|
//#endregion
|
|
479
491
|
//#region src/components/organisms/Modal/index.d.ts
|
|
@@ -527,7 +539,7 @@ declare const Modal: {
|
|
|
527
539
|
onOk,
|
|
528
540
|
onCancel,
|
|
529
541
|
...props
|
|
530
|
-
}: Props$3):
|
|
542
|
+
}: Props$3): react_jsx_runtime13.JSX.Element | null;
|
|
531
543
|
destroy(id?: string): void;
|
|
532
544
|
destroyAll(): void;
|
|
533
545
|
info(props: StaticProps): string | undefined;
|
|
@@ -556,13 +568,13 @@ declare const Swiper: {
|
|
|
556
568
|
renderItem,
|
|
557
569
|
loadingClassName,
|
|
558
570
|
...props
|
|
559
|
-
}: Props$2<T>):
|
|
571
|
+
}: Props$2<T>): react_jsx_runtime13.JSX.Element;
|
|
560
572
|
Slide: {
|
|
561
573
|
({
|
|
562
574
|
children,
|
|
563
575
|
className,
|
|
564
576
|
...props
|
|
565
|
-
}: swiper_react0.SwiperSlideProps):
|
|
577
|
+
}: swiper_react0.SwiperSlideProps): react_jsx_runtime13.JSX.Element;
|
|
566
578
|
displayName: string;
|
|
567
579
|
};
|
|
568
580
|
};
|
|
@@ -577,27 +589,27 @@ declare const Layout: {
|
|
|
577
589
|
children,
|
|
578
590
|
className,
|
|
579
591
|
...props
|
|
580
|
-
}: Props):
|
|
592
|
+
}: Props): react_jsx_runtime13.JSX.Element;
|
|
581
593
|
Content: ({
|
|
582
594
|
children,
|
|
583
595
|
className,
|
|
584
596
|
...props
|
|
585
|
-
}: React.HTMLAttributes<HTMLDivElement>) =>
|
|
597
|
+
}: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime13.JSX.Element;
|
|
586
598
|
Footer: ({
|
|
587
599
|
children,
|
|
588
600
|
className,
|
|
589
601
|
...props
|
|
590
|
-
}: React.HTMLAttributes<HTMLDivElement>) =>
|
|
602
|
+
}: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime13.JSX.Element;
|
|
591
603
|
Header: ({
|
|
592
604
|
children,
|
|
593
605
|
className,
|
|
594
606
|
...props
|
|
595
|
-
}: Props$1) =>
|
|
607
|
+
}: Props$1) => react_jsx_runtime13.JSX.Element;
|
|
596
608
|
Sider: ({
|
|
597
609
|
children,
|
|
598
610
|
className,
|
|
599
611
|
...props
|
|
600
|
-
}: React.HTMLAttributes<HTMLDivElement>) =>
|
|
612
|
+
}: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime13.JSX.Element;
|
|
601
613
|
};
|
|
602
614
|
//#endregion
|
|
603
615
|
export { Button, Card, Checkbox, Collapse, Drawer, Dropdown, FloatButton, Input, Layout, List, Marquees, Menu, Modal, Popover, Progress, Reveals, Skeleton, Space, Spin, Swiper, Switch, Typography };
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { C as Button_default, S as Checkbox_default, _ as Skeleton_default, a as Drawer_default, b as Input_default, c as Dropdown_default, g as Spin_default, h as Switch_default, i as List_default, m as Card_default, n as Swiper_default, o as Space_default, p as Collapse_default, r as Modal_default, s as Marquees_default, t as Layout_default, u as Menu_default, v as Progress_default, x as FloatButton_default, y as Popover_default } from "./src-
|
|
2
|
-
import "./utils-
|
|
3
|
-
import { t as Typography_default } from "./Typography-
|
|
4
|
-
import { i as Reveals_default } from "./Reveals-
|
|
1
|
+
import { C as Button_default, S as Checkbox_default, _ as Skeleton_default, a as Drawer_default, b as Input_default, c as Dropdown_default, g as Spin_default, h as Switch_default, i as List_default, m as Card_default, n as Swiper_default, o as Space_default, p as Collapse_default, r as Modal_default, s as Marquees_default, t as Layout_default, u as Menu_default, v as Progress_default, x as FloatButton_default, y as Popover_default } from "./src-Da3Y-f7V.mjs";
|
|
2
|
+
import "./utils-CssUrKWE.mjs";
|
|
3
|
+
import { t as Typography_default } from "./Typography-DJSakhLz.mjs";
|
|
4
|
+
import { i as Reveals_default } from "./Reveals-BMHeo2nr.mjs";
|
|
5
5
|
|
|
6
6
|
export { Button_default as Button, Card_default as Card, Checkbox_default as Checkbox, Collapse_default as Collapse, Drawer_default as Drawer, Dropdown_default as Dropdown, FloatButton_default as FloatButton, Input_default as Input, Layout_default as Layout, List_default as List, Marquees_default as Marquees, Menu_default as Menu, Modal_default as Modal, Popover_default as Popover, Progress_default as Progress, Reveals_default as Reveals, Skeleton_default as Skeleton, Space_default as Space, Spin_default as Spin, Swiper_default as Swiper, Switch_default as Switch, Typography_default as Typography };
|