@coldsurf/ocean-road 1.13.7 → 1.14.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/index.d.ts +84 -73
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +191 -177
- package/dist/index.js.map +1 -1
- package/dist/native.cjs.map +1 -1
- package/dist/native.d.cts +16 -16
- package/dist/native.d.cts.map +1 -1
- package/dist/native.d.ts +17 -17
- package/dist/native.d.ts.map +1 -1
- package/dist/native.js.map +1 -1
- package/dist/next.cjs +214 -200
- package/dist/next.cjs.map +1 -1
- package/dist/next.d.cts +25 -25
- package/dist/next.d.ts +6 -6
- package/dist/next.js +150 -136
- package/dist/next.js.map +1 -1
- package/package.json +1 -1
- package/src/base/text/text.styled.ts +41 -7
- package/src/base/text/text.tsx +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import * as react0$1 from "react";
|
|
2
2
|
import * as react0 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react77 from "react";
|
|
4
|
+
import * as react82 from "react";
|
|
5
|
+
import * as react61 from "react";
|
|
6
|
+
import * as react51 from "react";
|
|
7
|
+
import * as react44 from "react";
|
|
4
8
|
import * as react85 from "react";
|
|
5
9
|
import * as react47 from "react";
|
|
6
|
-
import * as react88 from "react";
|
|
7
|
-
import * as react60 from "react";
|
|
8
|
-
import * as react68 from "react";
|
|
9
|
-
import * as react70 from "react";
|
|
10
|
-
import * as react50 from "react";
|
|
11
10
|
import * as react91 from "react";
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
11
|
+
import * as react54 from "react";
|
|
12
|
+
import * as react69 from "react";
|
|
13
|
+
import * as react71 from "react";
|
|
14
|
+
import * as react40 from "react";
|
|
15
|
+
import * as react45 from "react";
|
|
16
|
+
import * as react87 from "react";
|
|
17
|
+
import * as react75 from "react";
|
|
18
|
+
import * as react52 from "react";
|
|
14
19
|
import * as react23 from "react";
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
20
|
-
import * as react44 from "react";
|
|
21
|
-
import * as react27 from "react";
|
|
22
|
-
import * as react89 from "react";
|
|
23
|
-
import * as react81 from "react";
|
|
24
|
-
import * as react92 from "react";
|
|
20
|
+
import * as react58 from "react";
|
|
21
|
+
import * as react38 from "react";
|
|
22
|
+
import * as react64 from "react";
|
|
23
|
+
import * as react49 from "react";
|
|
24
|
+
import * as react66 from "react";
|
|
25
25
|
import * as react1 from "react";
|
|
26
26
|
import { ButtonHTMLAttributes, CSSProperties, ComponentPropsWithRef, DetailedHTMLProps, ElementType, HTMLAttributes, InputHTMLAttributes, MouseEventHandler, PropsWithChildren, ReactElement, ReactNode, Ref, RefObject, SVGProps, TextareaHTMLAttributes } from "react";
|
|
27
27
|
import * as _emotion_react1 from "@emotion/react";
|
|
@@ -217,27 +217,27 @@ type ButtonTheme = 'transparent' | 'transparentDarkGray' | 'white' | 'pink' | 'i
|
|
|
217
217
|
//# sourceMappingURL=button.types.d.ts.map
|
|
218
218
|
//#endregion
|
|
219
219
|
//#region src/base/button/button.d.ts
|
|
220
|
-
declare const Button:
|
|
220
|
+
declare const Button: react77.ForwardRefExoticComponent<{
|
|
221
221
|
theme?: ButtonTheme;
|
|
222
222
|
variant?: ButtonTheme;
|
|
223
223
|
size?: "lg" | "md" | "sm";
|
|
224
|
-
leftIcon?: keyof typeof icons |
|
|
225
|
-
rightIcon?: keyof typeof icons |
|
|
224
|
+
leftIcon?: keyof typeof icons | react77.ReactElement;
|
|
225
|
+
rightIcon?: keyof typeof icons | react77.ReactElement;
|
|
226
226
|
textWeight?: "light" | "medium" | "bold";
|
|
227
227
|
} & {
|
|
228
|
-
children?:
|
|
229
|
-
} & ButtonHTMLAttributes<HTMLButtonElement> &
|
|
228
|
+
children?: react77.ReactNode | undefined;
|
|
229
|
+
} & ButtonHTMLAttributes<HTMLButtonElement> & react77.RefAttributes<HTMLButtonElement>>;
|
|
230
230
|
//# sourceMappingURL=button.d.ts.map
|
|
231
231
|
//#endregion
|
|
232
232
|
//#region src/base/checkbox/checkbox.d.ts
|
|
233
|
-
declare const Checkbox:
|
|
233
|
+
declare const Checkbox: react82.MemoExoticComponent<react82.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "formAction" | "size"> & {
|
|
234
234
|
size?: "lg" | "md" | "sm";
|
|
235
235
|
labelText?: string;
|
|
236
|
-
} &
|
|
236
|
+
} & react82.RefAttributes<HTMLInputElement>>>;
|
|
237
237
|
//# sourceMappingURL=checkbox.d.ts.map
|
|
238
238
|
//#endregion
|
|
239
239
|
//#region src/base/icon-button/icon-button.d.ts
|
|
240
|
-
declare const IconButton:
|
|
240
|
+
declare const IconButton: react61.ForwardRefExoticComponent<react61.ButtonHTMLAttributes<HTMLButtonElement> & react61.RefAttributes<HTMLButtonElement>>;
|
|
241
241
|
//# sourceMappingURL=icon-button.d.ts.map
|
|
242
242
|
//#endregion
|
|
243
243
|
//#region src/base/icon-button/icon-button.types.d.ts
|
|
@@ -254,7 +254,7 @@ declare const Modal: ({
|
|
|
254
254
|
visible: boolean;
|
|
255
255
|
onClose: () => void;
|
|
256
256
|
zIndex?: number;
|
|
257
|
-
}>) =>
|
|
257
|
+
}>) => react51.JSX.Element;
|
|
258
258
|
//# sourceMappingURL=modal.d.ts.map
|
|
259
259
|
//#endregion
|
|
260
260
|
//#region src/base/spinner/spinner.types.d.ts
|
|
@@ -269,15 +269,26 @@ type Props$7 = {
|
|
|
269
269
|
declare const Spinner: ({
|
|
270
270
|
variant,
|
|
271
271
|
className
|
|
272
|
-
}: Props$7) =>
|
|
272
|
+
}: Props$7) => react44.JSX.Element;
|
|
273
|
+
//#endregion
|
|
274
|
+
//#region src/base/text/text.styled.d.ts
|
|
275
|
+
type TextVariant = 'heading1' | 'heading2' | 'heading3' | 'body1' | 'body2' | 'caption' | 'label';
|
|
276
|
+
type TextSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
277
|
+
type TextWeight = 'regular' | 'medium' | 'semibold' | 'bold';
|
|
278
|
+
type StyledTextContainerProps = {
|
|
279
|
+
numberOfLines?: number;
|
|
280
|
+
variant?: TextVariant;
|
|
281
|
+
size?: TextSize;
|
|
282
|
+
weight?: TextWeight;
|
|
283
|
+
};
|
|
273
284
|
//#endregion
|
|
274
285
|
//#region src/base/text/text.d.ts
|
|
275
286
|
type TextProps = PropsWithChildren<ComponentPropsWithRef<'span'> & {
|
|
276
287
|
style?: CSSProperties;
|
|
277
288
|
as?: ElementType<any, keyof JSX.IntrinsicElements>;
|
|
278
289
|
numberOfLines?: number;
|
|
279
|
-
}
|
|
280
|
-
declare const Text:
|
|
290
|
+
} & Pick<StyledTextContainerProps, 'variant' | 'size' | 'weight'>>;
|
|
291
|
+
declare const Text: react85.ForwardRefExoticComponent<Omit<TextProps, "ref"> & react85.RefAttributes<HTMLSpanElement>>;
|
|
281
292
|
//#endregion
|
|
282
293
|
//#region src/base/text-area/text-area.types.d.ts
|
|
283
294
|
type TextAreaProps = DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> & {
|
|
@@ -289,7 +300,7 @@ type TextAreaProps = DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElemen
|
|
|
289
300
|
//# sourceMappingURL=text-area.types.d.ts.map
|
|
290
301
|
//#endregion
|
|
291
302
|
//#region src/base/text-area/text-area.d.ts
|
|
292
|
-
declare const TextArea:
|
|
303
|
+
declare const TextArea: react47.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & react47.RefAttributes<HTMLTextAreaElement>>;
|
|
293
304
|
//# sourceMappingURL=text-area.d.ts.map
|
|
294
305
|
//#endregion
|
|
295
306
|
//#region src/base/text-input/text-input.types.d.ts
|
|
@@ -308,14 +319,14 @@ interface TextInputRef {
|
|
|
308
319
|
//# sourceMappingURL=text-input.types.d.ts.map
|
|
309
320
|
//#endregion
|
|
310
321
|
//#region src/base/text-input/text-input.d.ts
|
|
311
|
-
declare const TextInput:
|
|
322
|
+
declare const TextInput: react91.ForwardRefExoticComponent<react91.InputHTMLAttributes<HTMLInputElement> & {
|
|
312
323
|
label?: string;
|
|
313
|
-
labelStyle?:
|
|
324
|
+
labelStyle?: react91.CSSProperties;
|
|
314
325
|
isError?: boolean;
|
|
315
326
|
required?: boolean;
|
|
316
|
-
left?:
|
|
317
|
-
right?:
|
|
318
|
-
} &
|
|
327
|
+
left?: react91.ReactNode;
|
|
328
|
+
right?: react91.ReactNode;
|
|
329
|
+
} & react91.RefAttributes<TextInputRef>>;
|
|
319
330
|
//# sourceMappingURL=text-input.d.ts.map
|
|
320
331
|
//#endregion
|
|
321
332
|
//#region src/base/toast/toast.types.d.ts
|
|
@@ -334,7 +345,7 @@ declare const Toast: ({
|
|
|
334
345
|
message,
|
|
335
346
|
zIndex,
|
|
336
347
|
onClose
|
|
337
|
-
}: ToastProps) =>
|
|
348
|
+
}: ToastProps) => react54.JSX.Element;
|
|
338
349
|
//# sourceMappingURL=toast.d.ts.map
|
|
339
350
|
//#endregion
|
|
340
351
|
//#region src/base/switch/switch.d.ts
|
|
@@ -342,7 +353,7 @@ interface SwitchProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onC
|
|
|
342
353
|
checked: boolean;
|
|
343
354
|
onChange: (checked: boolean) => void;
|
|
344
355
|
}
|
|
345
|
-
declare const Switch:
|
|
356
|
+
declare const Switch: react69.ForwardRefExoticComponent<SwitchProps & react69.RefAttributes<HTMLButtonElement>>;
|
|
346
357
|
//#endregion
|
|
347
358
|
//#region src/base/badge/badge.d.ts
|
|
348
359
|
type Props$6 = {
|
|
@@ -351,7 +362,7 @@ type Props$6 = {
|
|
|
351
362
|
isHighlighted?: boolean;
|
|
352
363
|
children?: string | ReactElement;
|
|
353
364
|
};
|
|
354
|
-
declare const Badge:
|
|
365
|
+
declare const Badge: react71.ForwardRefExoticComponent<Props$6 & react71.RefAttributes<HTMLDivElement>>;
|
|
355
366
|
//#endregion
|
|
356
367
|
//#region src/utils/breakpoints.d.ts
|
|
357
368
|
declare const breakpoints: {
|
|
@@ -390,16 +401,16 @@ type GridCardListItemProps = WithId<{
|
|
|
390
401
|
//#endregion
|
|
391
402
|
//#region src/extensions/error-ui/index.d.ts
|
|
392
403
|
declare const ErrorUI: {
|
|
393
|
-
NetworkError:
|
|
404
|
+
NetworkError: react40.MemoExoticComponent<({
|
|
394
405
|
onClickRetry
|
|
395
406
|
}: {
|
|
396
407
|
onClickRetry: () => void;
|
|
397
|
-
}) =>
|
|
398
|
-
UnknownError:
|
|
408
|
+
}) => react40.JSX.Element>;
|
|
409
|
+
UnknownError: react40.MemoExoticComponent<({
|
|
399
410
|
onClickRetry
|
|
400
411
|
}: {
|
|
401
412
|
onClickRetry: () => void;
|
|
402
|
-
}) =>
|
|
413
|
+
}) => react40.JSX.Element>;
|
|
403
414
|
};
|
|
404
415
|
//# sourceMappingURL=index.d.ts.map
|
|
405
416
|
//#endregion
|
|
@@ -409,39 +420,39 @@ interface Props$5 {
|
|
|
409
420
|
type?: 'round' | 'square';
|
|
410
421
|
logoTheme: LogoTheme;
|
|
411
422
|
}
|
|
412
|
-
declare const AppLogo:
|
|
423
|
+
declare const AppLogo: react45.MemoExoticComponent<({
|
|
413
424
|
type,
|
|
414
425
|
logoTheme,
|
|
415
426
|
...otherProps
|
|
416
|
-
}: Props$5) =>
|
|
427
|
+
}: Props$5) => react45.JSX.Element>;
|
|
417
428
|
//#endregion
|
|
418
429
|
//#region src/extensions/app-store-button/app-store-button.d.ts
|
|
419
430
|
type Props$4 = {
|
|
420
431
|
store: 'app-store' | 'google-play';
|
|
421
432
|
};
|
|
422
|
-
declare const AppStoreButton:
|
|
433
|
+
declare const AppStoreButton: react87.MemoExoticComponent<({
|
|
423
434
|
store
|
|
424
|
-
}: Props$4) =>
|
|
435
|
+
}: Props$4) => react87.JSX.Element>;
|
|
425
436
|
//#endregion
|
|
426
437
|
//#region src/extensions/brand-icon/brand-icon.d.ts
|
|
427
438
|
interface Props$3 extends SVGProps<SVGSVGElement> {
|
|
428
439
|
brand: 'apple' | 'google' | 'android';
|
|
429
440
|
ref?: Ref<SVGSVGElement>;
|
|
430
441
|
}
|
|
431
|
-
declare const BrandIcon:
|
|
442
|
+
declare const BrandIcon: react75.MemoExoticComponent<({
|
|
432
443
|
brand,
|
|
433
444
|
...svgProps
|
|
434
|
-
}: Props$3) =>
|
|
445
|
+
}: Props$3) => react75.JSX.Element>;
|
|
435
446
|
//#endregion
|
|
436
447
|
//#region src/extensions/sns-icon/sns-icon.d.ts
|
|
437
448
|
interface Props$2 extends React.SVGProps<SVGSVGElement> {
|
|
438
449
|
social: 'instagram' | 'x' | 'facebook' | 'youtube';
|
|
439
450
|
ref?: Ref<SVGSVGElement>;
|
|
440
451
|
}
|
|
441
|
-
declare const SNSIcon:
|
|
452
|
+
declare const SNSIcon: react52.MemoExoticComponent<({
|
|
442
453
|
social,
|
|
443
454
|
...svgProps
|
|
444
|
-
}: Props$2) =>
|
|
455
|
+
}: Props$2) => react52.JSX.Element>;
|
|
445
456
|
//#endregion
|
|
446
457
|
//#region src/extensions/dropdown/dropdown.types.d.ts
|
|
447
458
|
type DropdownMenuItemRef = {
|
|
@@ -481,30 +492,30 @@ declare const Dropdown: {
|
|
|
481
492
|
as?: React.ElementType;
|
|
482
493
|
} & {
|
|
483
494
|
$isActive?: boolean;
|
|
484
|
-
},
|
|
495
|
+
}, react23.DetailedHTMLProps<react23.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
485
496
|
MenuItem: <DataItemT>(props: {
|
|
486
497
|
isCurrent: boolean;
|
|
487
|
-
icon?:
|
|
488
|
-
title:
|
|
498
|
+
icon?: react23.ReactNode;
|
|
499
|
+
title: react23.ReactNode;
|
|
489
500
|
dropdownData: DataItemT[];
|
|
490
|
-
renderDropdownItem: (item: DataItemT) =>
|
|
501
|
+
renderDropdownItem: (item: DataItemT) => react23.ReactNode;
|
|
491
502
|
backdrop?: boolean;
|
|
492
503
|
absolute?: boolean;
|
|
493
504
|
isLoading?: boolean;
|
|
494
505
|
onClose?: () => void;
|
|
495
|
-
onMouseEnter?: (e:
|
|
506
|
+
onMouseEnter?: (e: react23.MouseEvent<HTMLDivElement>, params: {
|
|
496
507
|
openDropdown: () => void;
|
|
497
508
|
}) => void;
|
|
498
|
-
onMouseLeave?: (e:
|
|
509
|
+
onMouseLeave?: (e: react23.MouseEvent<HTMLDivElement>, params: {
|
|
499
510
|
closeDropdown: () => void;
|
|
500
511
|
}) => void;
|
|
501
|
-
onClick?: (e:
|
|
512
|
+
onClick?: (e: react23.MouseEvent<HTMLDivElement>, params: {
|
|
502
513
|
openDropdown: () => void;
|
|
503
514
|
}) => void;
|
|
504
515
|
} & {
|
|
505
|
-
ref?:
|
|
516
|
+
ref?: react23.Ref<DropdownMenuItemRef>;
|
|
506
517
|
}) => JSX.Element;
|
|
507
|
-
Core:
|
|
518
|
+
Core: react23.MemoExoticComponent<react23.ForwardRefExoticComponent<DropdownCoreProps & react23.RefAttributes<DropdownMenuItemRef>>>;
|
|
508
519
|
Trigger: ({
|
|
509
520
|
renderTriggerNode,
|
|
510
521
|
triggerRef,
|
|
@@ -512,27 +523,27 @@ declare const Dropdown: {
|
|
|
512
523
|
backdrop,
|
|
513
524
|
zIndex,
|
|
514
525
|
edge
|
|
515
|
-
}:
|
|
526
|
+
}: react23.PropsWithChildren<{
|
|
516
527
|
renderTriggerNode: ({
|
|
517
528
|
openDropdown
|
|
518
529
|
}: {
|
|
519
530
|
openDropdown: () => void;
|
|
520
|
-
}) =>
|
|
531
|
+
}) => react23.ReactNode;
|
|
521
532
|
triggerRef: DropdownCoreProps["triggerRef"];
|
|
522
533
|
backdrop: DropdownCoreProps["backdrop"];
|
|
523
534
|
zIndex: DropdownCoreProps["zIndex"];
|
|
524
535
|
edge: DropdownCoreProps["edge"];
|
|
525
|
-
}>) =>
|
|
536
|
+
}>) => react23.JSX.Element;
|
|
526
537
|
};
|
|
527
538
|
//#endregion
|
|
528
539
|
//#region src/extensions/menu-item/menu-item.d.ts
|
|
529
|
-
declare const MenuItem:
|
|
540
|
+
declare const MenuItem: react58.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & MotionProps & {
|
|
530
541
|
isLoading?: boolean;
|
|
531
542
|
isCurrent?: boolean;
|
|
532
543
|
icon?: React.ReactNode;
|
|
533
544
|
} & {
|
|
534
|
-
children?:
|
|
535
|
-
} &
|
|
545
|
+
children?: react58.ReactNode | undefined;
|
|
546
|
+
} & react58.RefAttributes<HTMLDivElement>>;
|
|
536
547
|
//# sourceMappingURL=menu-item.d.ts.map
|
|
537
548
|
//#endregion
|
|
538
549
|
//#region src/extensions/app-header/app-header.types.d.ts
|
|
@@ -560,12 +571,12 @@ declare function useIsMobileMenuOpen(): {
|
|
|
560
571
|
declare const AppHeader: {
|
|
561
572
|
useHeaderScrollAnimation: typeof useHeaderScrollAnimation;
|
|
562
573
|
useIsMobileMenuOpen: typeof useIsMobileMenuOpen;
|
|
563
|
-
AnimatedHeader:
|
|
574
|
+
AnimatedHeader: react38.MemoExoticComponent<({
|
|
564
575
|
animation,
|
|
565
576
|
children,
|
|
566
577
|
className,
|
|
567
578
|
zIndex
|
|
568
|
-
}: AnimatedHeaderProps) =>
|
|
579
|
+
}: AnimatedHeaderProps) => react38.JSX.Element>;
|
|
569
580
|
};
|
|
570
581
|
//# sourceMappingURL=index.d.ts.map
|
|
571
582
|
//#endregion
|
|
@@ -575,9 +586,9 @@ type Props$1 = {
|
|
|
575
586
|
setTheme: ReturnType<typeof useColorScheme>['setTheme'];
|
|
576
587
|
}) => void;
|
|
577
588
|
};
|
|
578
|
-
declare const ColorSchemeToggle:
|
|
589
|
+
declare const ColorSchemeToggle: react64.MemoExoticComponent<({
|
|
579
590
|
onToggle
|
|
580
|
-
}: Props$1) =>
|
|
591
|
+
}: Props$1) => react64.JSX.Element>;
|
|
581
592
|
//#endregion
|
|
582
593
|
//#region src/extensions/full-screen-modal/full-screen-modal.d.ts
|
|
583
594
|
type Props = PropsWithChildren<{
|
|
@@ -585,12 +596,12 @@ type Props = PropsWithChildren<{
|
|
|
585
596
|
onClose: () => void;
|
|
586
597
|
zIndex?: number;
|
|
587
598
|
}>;
|
|
588
|
-
declare const FullScreenModal:
|
|
599
|
+
declare const FullScreenModal: react49.MemoExoticComponent<({
|
|
589
600
|
visible,
|
|
590
601
|
onClose,
|
|
591
602
|
children,
|
|
592
603
|
zIndex
|
|
593
|
-
}: Props) =>
|
|
604
|
+
}: Props) => react49.JSX.Element>;
|
|
594
605
|
//#endregion
|
|
595
606
|
//#region src/extensions/accordion/accordion.d.ts
|
|
596
607
|
type AccordionProps<ItemT> = {
|
|
@@ -610,7 +621,7 @@ declare const Accordion: <ItemT extends {
|
|
|
610
621
|
renderTrigger,
|
|
611
622
|
renderExpanded,
|
|
612
623
|
customized
|
|
613
|
-
}: AccordionProps<ItemT>) =>
|
|
624
|
+
}: AccordionProps<ItemT>) => react66.JSX.Element;
|
|
614
625
|
//# sourceMappingURL=accordion.d.ts.map
|
|
615
626
|
//#endregion
|
|
616
627
|
//#region src/extensions/index.d.ts
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/tokens/tokens.types.ts","../src/tokens/tokens.ts","../src/contexts/ColorSchemeProvider.tsx","../src/GlobalStyle.tsx","../src/base/button/button.types.ts","../src/base/button/button.tsx","../src/base/checkbox/checkbox.tsx","../src/base/icon-button/icon-button.tsx","../src/base/icon-button/icon-button.types.ts","../src/base/modal/modal.tsx","../src/base/spinner/spinner.types.ts","../src/base/spinner/spinner.tsx","../src/base/text/text.tsx","../src/base/text-area/text-area.types.ts","../src/base/text-area/text-area.tsx","../src/base/text-input/text-input.types.ts","../src/base/text-input/text-input.tsx","../src/base/toast/toast.types.ts","../src/base/toast/toast.tsx","../src/base/switch/switch.tsx","../src/base/badge/badge.tsx","../src/utils/breakpoints.ts","../src/utils/media.ts","../src/utils/with-id.ts","../src/extensions/grid-card-item/grid-card-item.tsx","../src/extensions/error-ui/index.ts","../src/extensions/app-logo/app-logo.tsx","../src/extensions/app-store-button/app-store-button.tsx","../src/extensions/brand-icon/brand-icon.tsx","../src/extensions/sns-icon/sns-icon.tsx","../src/extensions/dropdown/dropdown.types.ts","../src/extensions/dropdown/dropdown.tsx","../src/extensions/dropdown/index.ts","../src/extensions/menu-item/menu-item.tsx","../src/extensions/app-header/app-header.types.ts","../src/extensions/app-header/app-header.tsx","../src/extensions/app-header/app-header.hooks.ts","../src/extensions/app-header/index.ts","../src/extensions/color-scheme-toggle/color-scheme-toggle.tsx","../src/extensions/full-screen-modal/full-screen-modal.tsx","../src/extensions/accordion/accordion.tsx","../src/extensions/index.ts","../src/constants.ts"],"sourcesContent":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/tokens/tokens.types.ts","../src/tokens/tokens.ts","../src/contexts/ColorSchemeProvider.tsx","../src/GlobalStyle.tsx","../src/base/button/button.types.ts","../src/base/button/button.tsx","../src/base/checkbox/checkbox.tsx","../src/base/icon-button/icon-button.tsx","../src/base/icon-button/icon-button.types.ts","../src/base/modal/modal.tsx","../src/base/spinner/spinner.types.ts","../src/base/spinner/spinner.tsx","../src/base/text/text.styled.ts","../src/base/text/text.tsx","../src/base/text-area/text-area.types.ts","../src/base/text-area/text-area.tsx","../src/base/text-input/text-input.types.ts","../src/base/text-input/text-input.tsx","../src/base/toast/toast.types.ts","../src/base/toast/toast.tsx","../src/base/switch/switch.tsx","../src/base/badge/badge.tsx","../src/utils/breakpoints.ts","../src/utils/media.ts","../src/utils/with-id.ts","../src/extensions/grid-card-item/grid-card-item.tsx","../src/extensions/error-ui/index.ts","../src/extensions/app-logo/app-logo.tsx","../src/extensions/app-store-button/app-store-button.tsx","../src/extensions/brand-icon/brand-icon.tsx","../src/extensions/sns-icon/sns-icon.tsx","../src/extensions/dropdown/dropdown.types.ts","../src/extensions/dropdown/dropdown.tsx","../src/extensions/dropdown/index.ts","../src/extensions/menu-item/menu-item.tsx","../src/extensions/app-header/app-header.types.ts","../src/extensions/app-header/app-header.tsx","../src/extensions/app-header/app-header.hooks.ts","../src/extensions/app-header/index.ts","../src/extensions/color-scheme-toggle/color-scheme-toggle.tsx","../src/extensions/full-screen-modal/full-screen-modal.tsx","../src/extensions/accordion/accordion.tsx","../src/extensions/index.ts","../src/constants.ts"],"sourcesContent":[],"mappings":"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"}
|