@jbpark/ui-kit 1.0.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.
Files changed (45) hide show
  1. package/README.md +267 -0
  2. package/dist/Menu.cjs +10 -0
  3. package/dist/Menu.d.cts +2 -0
  4. package/dist/Menu.d.mts +2 -0
  5. package/dist/Menu.mjs +8 -0
  6. package/dist/Reveals-BIKKnQpn.cjs +119 -0
  7. package/dist/Reveals-BpnYZJUk.mjs +89 -0
  8. package/dist/Reveals.cjs +9 -0
  9. package/dist/Reveals.d.cts +2 -0
  10. package/dist/Reveals.d.mts +2 -0
  11. package/dist/Reveals.mjs +4 -0
  12. package/dist/Typography-B3MWBAA6.cjs +102 -0
  13. package/dist/Typography-LYvEW-c8.mjs +72 -0
  14. package/dist/Typography.cjs +9 -0
  15. package/dist/Typography.d.cts +2 -0
  16. package/dist/Typography.d.mts +2 -0
  17. package/dist/Typography.mjs +4 -0
  18. package/dist/enums-CP_LwqBM.cjs +18 -0
  19. package/dist/enums-HFC1lmIX.mjs +12 -0
  20. package/dist/enums.cjs +3 -0
  21. package/dist/enums.d.cts +4 -0
  22. package/dist/enums.d.mts +4 -0
  23. package/dist/enums.mjs +3 -0
  24. package/dist/globals.css +125 -0
  25. package/dist/index-BO7hcWjo.d.mts +59 -0
  26. package/dist/index-BqaluEQ4.d.mts +83 -0
  27. package/dist/index-CdyEmwZC.d.cts +97 -0
  28. package/dist/index-Cu2qFRc3.d.cts +83 -0
  29. package/dist/index-D1Bkn0Xy.d.cts +59 -0
  30. package/dist/index-DS-PGSIg.d.mts +97 -0
  31. package/dist/index.cjs +24 -0
  32. package/dist/index.d.cts +528 -0
  33. package/dist/index.d.mts +533 -0
  34. package/dist/index.mjs +6 -0
  35. package/dist/src-CkhEsWv5.css +124 -0
  36. package/dist/src-DfLPlkqV.css +124 -0
  37. package/dist/src-DlEgA3c9.mjs +5118 -0
  38. package/dist/src-Dvkx0I-F.cjs +5262 -0
  39. package/dist/utils-8r5MlYq5.cjs +16 -0
  40. package/dist/utils-DEenfsJ-.mjs +10 -0
  41. package/dist/utils.cjs +3 -0
  42. package/dist/utils.d.cts +6 -0
  43. package/dist/utils.d.mts +6 -0
  44. package/dist/utils.mjs +3 -0
  45. package/package.json +99 -0
@@ -0,0 +1,97 @@
1
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
2
+ import { MotionProps } from "motion/react";
3
+
4
+ //#region src/components/molecules/Reveals/Item/index.d.ts
5
+ declare const effectVariants: {
6
+ fadeIn: {
7
+ offscreen: {
8
+ opacity: number;
9
+ };
10
+ onscreen: {
11
+ opacity: number;
12
+ };
13
+ };
14
+ fadeInUp: {
15
+ offscreen: {
16
+ opacity: number;
17
+ y: number;
18
+ };
19
+ onscreen: {
20
+ opacity: number;
21
+ y: number;
22
+ };
23
+ };
24
+ slideInUp: {
25
+ offscreen: {
26
+ opacity: number;
27
+ y: number;
28
+ };
29
+ onscreen: {
30
+ opacity: number;
31
+ y: number;
32
+ };
33
+ };
34
+ };
35
+ interface ItemProps {
36
+ effect?: keyof typeof effectVariants;
37
+ delay?: number;
38
+ once?: boolean;
39
+ duration?: number;
40
+ className?: string;
41
+ children?: React.ReactNode;
42
+ viewport?: MotionProps['viewport'];
43
+ variants?: MotionProps['variants'];
44
+ transition?: MotionProps['transition'];
45
+ }
46
+ declare const Item: ({
47
+ effect,
48
+ children,
49
+ once,
50
+ viewport,
51
+ variants,
52
+ duration,
53
+ delay,
54
+ transition,
55
+ className,
56
+ ...props
57
+ }: ItemProps) => react_jsx_runtime11.JSX.Element;
58
+ //#endregion
59
+ //#region src/components/molecules/Reveals/index.d.ts
60
+ interface Props extends React.HTMLAttributes<HTMLDivElement>, ItemProps {
61
+ cascade?: number;
62
+ classNames?: {
63
+ root?: string;
64
+ item?: string;
65
+ };
66
+ once?: boolean;
67
+ items?: ItemProps[];
68
+ }
69
+ declare const DURATION = 0.6;
70
+ declare const DELAY = 0;
71
+ declare const CASCADE = 0.1;
72
+ declare const Reveals: {
73
+ ({
74
+ children,
75
+ className,
76
+ classNames,
77
+ items,
78
+ cascade,
79
+ duration,
80
+ delay,
81
+ ...props
82
+ }: Props): react_jsx_runtime11.JSX.Element;
83
+ Item: ({
84
+ effect,
85
+ children,
86
+ once,
87
+ viewport,
88
+ variants,
89
+ duration,
90
+ delay,
91
+ transition,
92
+ className,
93
+ ...props
94
+ }: ItemProps) => react_jsx_runtime11.JSX.Element;
95
+ };
96
+ //#endregion
97
+ export { Reveals as a, Props as i, DELAY as n, Item as o, DURATION as r, ItemProps as s, CASCADE as t };
package/dist/index.cjs ADDED
@@ -0,0 +1,24 @@
1
+ const require_src = require('./src-Dvkx0I-F.cjs');
2
+ require('./utils-8r5MlYq5.cjs');
3
+ const require_Typography = require('./Typography-B3MWBAA6.cjs');
4
+ const require_Reveals = require('./Reveals-BIKKnQpn.cjs');
5
+
6
+ exports.Button = require_src.Button_default;
7
+ exports.Checkbox = require_src.Checkbox_default;
8
+ exports.Collapse = require_src.Collapse_default;
9
+ exports.Drawer = require_src.Drawer_default;
10
+ exports.Dropdown = require_src.Dropdown_default;
11
+ exports.FloatButton = require_src.FloatButton_default;
12
+ exports.Layout = require_src.Layout_default;
13
+ exports.List = require_src.List_default;
14
+ exports.Marquees = require_src.Marquees_default;
15
+ exports.Menu = require_src.Menu_default;
16
+ exports.Modal = require_src.Modal_default;
17
+ exports.Progress = require_src.Progress_default;
18
+ exports.Reveals = require_Reveals.Reveals_default;
19
+ exports.Skeleton = require_src.Skeleton_default;
20
+ exports.Space = require_src.Space_default;
21
+ exports.Spin = require_src.Spin_default;
22
+ exports.Swiper = require_src.Swiper_default;
23
+ exports.Switch = require_src.Switch_default;
24
+ exports.Typography = require_Typography.Typography_default;
@@ -0,0 +1,528 @@
1
+ import { t as Typography } from "./index-Cu2qFRc3.cjs";
2
+ import { i as MenuProps, n as Menu } from "./index-D1Bkn0Xy.cjs";
3
+ import { a as Reveals } from "./index-CdyEmwZC.cjs";
4
+ import * as react_jsx_runtime17 from "react/jsx-runtime";
5
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
6
+ import * as React$2 from "react";
7
+ import React$1, { HTMLAttributes, MouseEvent } from "react";
8
+ import { VariantProps } from "class-variance-authority";
9
+ import * as swiper_react0 from "swiper/react";
10
+ import { SwiperProps } from "swiper/react";
11
+ import { SwiperOptions } from "swiper/types";
12
+
13
+ //#region src/core/button.d.ts
14
+ declare const buttonVariants: (props?: ({
15
+ variant?: "outline" | "link" | "default" | "destructive" | "secondary" | "ghost" | null | undefined;
16
+ size?: "icon" | "default" | "sm" | "lg" | null | undefined;
17
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
18
+ type Props$20 = React$2.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & {
19
+ asChild?: boolean;
20
+ };
21
+ //#endregion
22
+ //#region src/components/atoms/Button/index.d.ts
23
+ interface Props$19 extends Props$20 {
24
+ icon?: React.ReactNode;
25
+ block?: boolean;
26
+ disabled?: boolean;
27
+ loading?: boolean | {
28
+ icon: React.ReactNode;
29
+ };
30
+ }
31
+ declare const Button: ({
32
+ icon,
33
+ className,
34
+ variant,
35
+ block,
36
+ disabled,
37
+ loading,
38
+ children,
39
+ onMouseDown,
40
+ ...props
41
+ }: Props$19) => react_jsx_runtime17.JSX.Element;
42
+ //#endregion
43
+ //#region src/components/atoms/Checkbox/Group/index.d.ts
44
+ type Option = {
45
+ label: string;
46
+ value: OptionValue;
47
+ checked?: boolean;
48
+ };
49
+ type Options = string[] | number[] | boolean[] | Option[];
50
+ interface Props$18 extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
51
+ options?: Options;
52
+ direction?: string;
53
+ placement?: string;
54
+ classNames?: Record<string, string>;
55
+ onChange?: (values: OptionValue[]) => void;
56
+ }
57
+ //#endregion
58
+ //#region src/components/atoms/Checkbox/index.d.ts
59
+ type OptionValue = string | number | boolean;
60
+ interface Props$17 extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
61
+ placement?: string;
62
+ checked?: boolean;
63
+ value?: OptionValue;
64
+ onChange?: (checked: boolean) => void;
65
+ }
66
+ declare const Checkbox: {
67
+ ({
68
+ placement,
69
+ value,
70
+ children,
71
+ className,
72
+ checked: _checked,
73
+ onChange: _onChange,
74
+ ...props
75
+ }: Props$17): react_jsx_runtime17.JSX.Element;
76
+ Group: ({
77
+ direction,
78
+ placement,
79
+ className,
80
+ classNames,
81
+ options: _options,
82
+ onChange
83
+ }: Props$18) => react_jsx_runtime17.JSX.Element;
84
+ };
85
+ //#endregion
86
+ //#region src/components/atoms/FloatButton/BackTop/index.d.ts
87
+ interface Props$16 extends Props$19 {
88
+ visibilityHeight?: number;
89
+ onClick?: (e: MouseEvent<HTMLElement>) => void;
90
+ }
91
+ //#endregion
92
+ //#region src/components/atoms/FloatButton/index.d.ts
93
+ interface Props$15 extends Props$19 {}
94
+ declare const FloatButton: {
95
+ ({
96
+ className,
97
+ children,
98
+ ...props
99
+ }: Props$15): react_jsx_runtime17.JSX.Element;
100
+ BackTop: ({
101
+ visibilityHeight,
102
+ className,
103
+ onClick,
104
+ ...props
105
+ }: Props$16) => react_jsx_runtime17.JSX.Element;
106
+ };
107
+ //#endregion
108
+ //#region src/components/atoms/Progress/index.d.ts
109
+ interface Props$14 extends React.HTMLAttributes<HTMLElement> {
110
+ value: number;
111
+ direction?: 'horizontal' | 'vertical';
112
+ classNames?: {
113
+ background?: string;
114
+ bar?: string;
115
+ };
116
+ }
117
+ declare const Progress: ({
118
+ value,
119
+ className,
120
+ direction,
121
+ classNames
122
+ }: Props$14) => react_jsx_runtime17.JSX.Element;
123
+ //#endregion
124
+ //#region src/components/atoms/Skeleton/index.d.ts
125
+ interface Props$13 extends React.HTMLAttributes<HTMLDivElement> {
126
+ active?: boolean;
127
+ loading?: boolean;
128
+ avatar?: boolean;
129
+ size?: 'default' | 'small' | 'large';
130
+ count?: number;
131
+ gap?: number;
132
+ direction?: 'horizontal' | 'vertical';
133
+ width?: string | number | (string | number)[];
134
+ height?: string | number | (string | number)[];
135
+ classNames?: {
136
+ wrapper?: string;
137
+ avatar?: string;
138
+ item?: string;
139
+ };
140
+ }
141
+ declare const Skeleton: {
142
+ ({
143
+ active,
144
+ loading,
145
+ avatar,
146
+ size,
147
+ direction,
148
+ count,
149
+ gap,
150
+ className,
151
+ classNames,
152
+ style,
153
+ width,
154
+ height,
155
+ children,
156
+ ...props
157
+ }: Props$13): string | number | bigint | boolean | 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> | react_jsx_runtime17.JSX.Element | null | undefined;
158
+ Button: ({
159
+ className,
160
+ ...props
161
+ }: Props$13) => react_jsx_runtime17.JSX.Element;
162
+ Node: ({
163
+ className,
164
+ ...props
165
+ }: Props$13) => react_jsx_runtime17.JSX.Element;
166
+ };
167
+ //#endregion
168
+ //#region src/components/atoms/Spin/index.d.ts
169
+ interface Props$12 extends React.HTMLAttributes<HTMLDivElement> {
170
+ spinning?: boolean;
171
+ }
172
+ declare const Spin: ({
173
+ spinning,
174
+ className,
175
+ ...props
176
+ }: Props$12) => react_jsx_runtime17.JSX.Element | null;
177
+ //#endregion
178
+ //#region src/components/atoms/Switch/index.d.ts
179
+ interface Props$11 extends Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> {
180
+ classNames?: {
181
+ track?: string;
182
+ handle?: string;
183
+ };
184
+ checked?: boolean;
185
+ disabled?: boolean;
186
+ onChange?: (checked: boolean) => void;
187
+ }
188
+ declare const Switch: ({
189
+ onChange,
190
+ className,
191
+ classNames,
192
+ ...props
193
+ }: Props$11) => react_jsx_runtime17.JSX.Element;
194
+ //#endregion
195
+ //#region src/components/molecules/Collapse/index.d.ts
196
+ interface Item {
197
+ key: React$1.Key;
198
+ label: React$1.ReactNode;
199
+ disabled?: boolean;
200
+ children: React$1.ReactNode;
201
+ }
202
+ interface Props$10 extends React$1.HTMLAttributes<HTMLElement> {
203
+ items?: Item[];
204
+ accordion?: boolean;
205
+ expandIcon?: React$1.ReactNode;
206
+ classNames?: {
207
+ item?: string;
208
+ header?: string;
209
+ body?: string;
210
+ };
211
+ defaultActiveKey?: string[] | number[];
212
+ }
213
+ declare const Collapse: ({
214
+ expandIcon,
215
+ accordion,
216
+ items: _items,
217
+ className,
218
+ classNames,
219
+ defaultActiveKey
220
+ }: Props$10) => react_jsx_runtime17.JSX.Element;
221
+ //#endregion
222
+ //#region src/components/molecules/Dropdown/index.d.ts
223
+ type ChangeEventHandler = (open: boolean) => void;
224
+ interface Props$9 extends React.HTMLAttributes<HTMLElement> {
225
+ open?: boolean;
226
+ trigger?: string;
227
+ menu?: MenuProps;
228
+ placement?: string;
229
+ onOpenChange?: ChangeEventHandler;
230
+ }
231
+ declare const Dropdown: ({
232
+ children,
233
+ menu,
234
+ trigger,
235
+ open: _open,
236
+ onOpenChange,
237
+ ...props
238
+ }: Props$9) => react_jsx_runtime17.JSX.Element;
239
+ //#endregion
240
+ //#region src/components/molecules/Marquees/Item/index.d.ts
241
+ interface ItemProps {
242
+ key?: React.Key;
243
+ speed?: number;
244
+ autoFill?: boolean | number;
245
+ pause?: boolean;
246
+ pauseOnHover?: boolean;
247
+ children?: React.ReactNode;
248
+ }
249
+ interface Props$8 extends React.HTMLAttributes<HTMLDivElement>, ItemProps {
250
+ width: string | number;
251
+ }
252
+ //#endregion
253
+ //#region src/components/molecules/Marquees/index.d.ts
254
+ interface Props$7 extends React.HTMLAttributes<HTMLDivElement> {
255
+ speed?: number;
256
+ autoFill?: boolean | number;
257
+ pauseOnHover?: boolean;
258
+ items?: ItemProps[];
259
+ }
260
+ declare const Marquees: {
261
+ ({
262
+ className,
263
+ items,
264
+ speed,
265
+ pauseOnHover,
266
+ autoFill,
267
+ ...props
268
+ }: Props$7): react_jsx_runtime17.JSX.Element;
269
+ Item: ({
270
+ width: _width,
271
+ speed,
272
+ autoFill,
273
+ pause: _pause,
274
+ pauseOnHover,
275
+ children
276
+ }: Props$8) => react_jsx_runtime17.JSX.Element;
277
+ };
278
+ //#endregion
279
+ //#region src/components/molecules/Space/index.d.ts
280
+ interface Props$6 extends HTMLAttributes<HTMLDivElement> {
281
+ loading?: boolean;
282
+ loader?: React.ReactNode;
283
+ direction?: 'horizontal' | 'vertical';
284
+ size?: 'small' | 'middle' | 'large' | number | number[];
285
+ align?: 'start' | 'end' | 'center' | 'baseline';
286
+ wrap?: boolean;
287
+ split?: React.ReactNode;
288
+ grid?: {
289
+ rows?: number;
290
+ cols?: number;
291
+ };
292
+ }
293
+ declare const Space: ({
294
+ loading,
295
+ loader,
296
+ children,
297
+ size,
298
+ direction,
299
+ align,
300
+ wrap,
301
+ split,
302
+ className,
303
+ grid,
304
+ hidden,
305
+ style,
306
+ ...props
307
+ }: Props$6) => react_jsx_runtime17.JSX.Element;
308
+ //#endregion
309
+ //#region src/components/organisms/Drawer/index.d.ts
310
+ interface Props$5 {
311
+ open: boolean;
312
+ children?: React.ReactNode;
313
+ title?: React.ReactNode;
314
+ footer?: React.ReactNode;
315
+ closable?: boolean;
316
+ closeIcon?: React.ReactNode;
317
+ direction?: 'top' | 'bottom' | 'left' | 'right';
318
+ maskClosable?: boolean;
319
+ handlebar?: boolean;
320
+ draggable?: boolean;
321
+ rounded?: boolean;
322
+ mask?: boolean;
323
+ className?: string;
324
+ style?: React.CSSProperties;
325
+ classNames?: {
326
+ mask?: string;
327
+ content?: string;
328
+ handlebar?: string;
329
+ header?: string;
330
+ title?: string;
331
+ close?: string;
332
+ body?: string;
333
+ footer?: string;
334
+ };
335
+ container?: HTMLElement;
336
+ onClose: () => void;
337
+ }
338
+ declare const Drawer: ({
339
+ open,
340
+ title,
341
+ footer,
342
+ closable,
343
+ closeIcon,
344
+ direction,
345
+ maskClosable,
346
+ handlebar,
347
+ draggable,
348
+ rounded,
349
+ mask,
350
+ className,
351
+ classNames,
352
+ style,
353
+ children,
354
+ container,
355
+ onClose,
356
+ ...props
357
+ }: Props$5) => react_jsx_runtime17.JSX.Element | null;
358
+ //#endregion
359
+ //#region src/components/organisms/List/index.d.ts
360
+ interface Props$4<T> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'> {
361
+ loading?: boolean;
362
+ loaderProps?: React$1.ComponentProps<typeof Skeleton>;
363
+ loader?: React$1.ReactNode;
364
+ title?: React$1.ReactNode;
365
+ header?: React$1.ReactNode;
366
+ empty?: React$1.ReactNode;
367
+ classNames?: {
368
+ title?: string;
369
+ header?: string;
370
+ body?: string;
371
+ };
372
+ scroll?: {
373
+ hasMore: boolean;
374
+ loading: boolean;
375
+ loader?: React$1.ReactNode;
376
+ options?: IntersectionObserverInit;
377
+ next: () => void;
378
+ };
379
+ data?: T[];
380
+ renderItem?: (item: T, index: number) => React$1.ReactNode;
381
+ }
382
+ declare const List: {
383
+ <T>({
384
+ loading,
385
+ loaderProps,
386
+ loader,
387
+ header,
388
+ title,
389
+ empty,
390
+ scroll,
391
+ data,
392
+ className,
393
+ classNames,
394
+ renderItem,
395
+ ...props
396
+ }: Props$4<T>): string | number | bigint | true | 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> | react_jsx_runtime17.JSX.Element;
397
+ Item: ({
398
+ children,
399
+ className,
400
+ ...props
401
+ }: React$1.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime17.JSX.Element;
402
+ };
403
+ //#endregion
404
+ //#region src/components/organisms/Modal/index.d.ts
405
+ interface Props$3 {
406
+ open?: boolean;
407
+ maskClosable?: boolean;
408
+ closable?: boolean | {
409
+ closeIcon?: React$1.ReactNode;
410
+ disabled?: boolean;
411
+ };
412
+ closeIcon?: React$1.ReactNode;
413
+ title?: React$1.ReactNode;
414
+ content?: React$1.ReactNode;
415
+ footer?: React$1.ReactNode;
416
+ className?: string;
417
+ classNames?: {
418
+ mask?: string;
419
+ header?: string;
420
+ body?: string;
421
+ footer?: string;
422
+ };
423
+ style?: React$1.CSSProperties;
424
+ okText?: string;
425
+ cancelText?: string;
426
+ container?: HTMLElement;
427
+ children?: React$1.ReactNode;
428
+ onOk?: () => void;
429
+ onCancel?: () => void;
430
+ }
431
+ interface StaticProps extends Props$3 {
432
+ type?: 'info' | 'success' | 'error' | 'warning' | 'confirm';
433
+ id?: string;
434
+ icon?: React$1.ReactNode;
435
+ container?: HTMLElement;
436
+ }
437
+ declare const Modal: {
438
+ ({
439
+ open,
440
+ maskClosable,
441
+ closable,
442
+ closeIcon,
443
+ className,
444
+ classNames,
445
+ style,
446
+ title,
447
+ footer,
448
+ container,
449
+ children,
450
+ okText,
451
+ cancelText,
452
+ onOk,
453
+ onCancel,
454
+ ...props
455
+ }: Props$3): react_jsx_runtime17.JSX.Element | null;
456
+ destroy(id?: string): void;
457
+ destroyAll(): void;
458
+ info(props: StaticProps): string | undefined;
459
+ success(props: StaticProps): string | undefined;
460
+ error(props: StaticProps): string | undefined;
461
+ warning(props: StaticProps): string | undefined;
462
+ confirm(props: StaticProps): string | undefined;
463
+ };
464
+ //#endregion
465
+ //#region src/components/organisms/Swiper/index.d.ts
466
+ interface Props$2<T> extends SwiperProps {
467
+ loading?: boolean;
468
+ loader?: React.ReactNode;
469
+ loadingClassName?: string;
470
+ options?: SwiperOptions;
471
+ data: T[];
472
+ renderItem(item: T, key: number): React.ReactNode;
473
+ }
474
+ declare const Swiper: {
475
+ <T>({
476
+ loading,
477
+ loader,
478
+ options,
479
+ data,
480
+ style,
481
+ renderItem,
482
+ loadingClassName,
483
+ ...props
484
+ }: Props$2<T>): react_jsx_runtime17.JSX.Element;
485
+ Slide: {
486
+ ({
487
+ children,
488
+ className,
489
+ ...props
490
+ }: swiper_react0.SwiperSlideProps): react_jsx_runtime17.JSX.Element;
491
+ displayName: string;
492
+ };
493
+ };
494
+ //#endregion
495
+ //#region src/components/templates/Layout/Header/index.d.ts
496
+ interface Props$1 extends React.HTMLAttributes<HTMLDivElement> {}
497
+ //#endregion
498
+ //#region src/components/templates/Layout/index.d.ts
499
+ interface Props extends React.HTMLAttributes<HTMLDivElement> {}
500
+ declare const Layout: {
501
+ ({
502
+ children,
503
+ className,
504
+ ...props
505
+ }: Props): react_jsx_runtime17.JSX.Element;
506
+ Content: ({
507
+ children,
508
+ className,
509
+ ...props
510
+ }: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime17.JSX.Element;
511
+ Footer: ({
512
+ children,
513
+ className,
514
+ ...props
515
+ }: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime17.JSX.Element;
516
+ Header: ({
517
+ children,
518
+ className,
519
+ ...props
520
+ }: Props$1) => react_jsx_runtime17.JSX.Element;
521
+ Sider: ({
522
+ children,
523
+ className,
524
+ ...props
525
+ }: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime17.JSX.Element;
526
+ };
527
+ //#endregion
528
+ export { Button, Checkbox, Collapse, Drawer, Dropdown, FloatButton, Layout, List, Marquees, Menu, Modal, Progress, Reveals, Skeleton, Space, Spin, Swiper, Switch, Typography };