@incognia/cosmik 0.1.4 → 0.2.1
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/Dialog/index.d.ts +21 -0
- package/dist/Dialog/index.d.ts.map +1 -0
- package/dist/cosmik.css +191 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs10.js +1 -1
- package/dist/index.cjs10.js.map +1 -1
- package/dist/index.cjs11.js +1 -1
- package/dist/index.cjs11.js.map +1 -1
- package/dist/index.cjs12.js +1 -9
- package/dist/index.cjs12.js.map +1 -1
- package/dist/index.cjs13.js +3 -13
- package/dist/index.cjs13.js.map +1 -1
- package/dist/index.cjs14.js +19 -1
- package/dist/index.cjs14.js.map +1 -1
- package/dist/index.cjs15.js +1 -1
- package/dist/index.cjs15.js.map +1 -1
- package/dist/index.cjs16.js +1 -1
- package/dist/index.cjs16.js.map +1 -1
- package/dist/index.cjs17.js +1 -1
- package/dist/index.cjs17.js.map +1 -1
- package/dist/index.cjs18.js +1 -1
- package/dist/index.cjs18.js.map +1 -1
- package/dist/index.cjs19.js +1 -1
- package/dist/index.cjs19.js.map +1 -1
- package/dist/index.cjs21.js +1 -1
- package/dist/index.cjs22.js +1 -1
- package/dist/index.cjs22.js.map +1 -1
- package/dist/index.cjs23.js +2 -0
- package/dist/index.cjs23.js.map +1 -0
- package/dist/index.cjs3.js +1 -1
- package/dist/index.cjs4.js +1 -1
- package/dist/index.cjs5.js +1 -1
- package/dist/index.cjs5.js.map +1 -1
- package/dist/index.cjs6.js +1 -1
- package/dist/index.cjs6.js.map +1 -1
- package/dist/index.cjs7.js +1 -1
- package/dist/index.cjs7.js.map +1 -1
- package/dist/index.cjs8.js +1 -1
- package/dist/index.cjs8.js.map +1 -1
- package/dist/index.cjs9.js +1 -1
- package/dist/index.cjs9.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +14 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.es10.js +103 -32
- package/dist/index.es10.js.map +1 -1
- package/dist/index.es11.js +34 -2
- package/dist/index.es11.js.map +1 -1
- package/dist/index.es12.js +2 -30
- package/dist/index.es12.js.map +1 -1
- package/dist/index.es13.js +21 -590
- package/dist/index.es13.js.map +1 -1
- package/dist/index.es14.js +599 -2
- package/dist/index.es14.js.map +1 -1
- package/dist/index.es15.js +2 -151
- package/dist/index.es15.js.map +1 -1
- package/dist/index.es16.js +150 -15
- package/dist/index.es16.js.map +1 -1
- package/dist/index.es17.js +13 -339
- package/dist/index.es17.js.map +1 -1
- package/dist/index.es18.js +337 -40
- package/dist/index.es18.js.map +1 -1
- package/dist/index.es19.js +45 -2
- package/dist/index.es19.js.map +1 -1
- package/dist/index.es20.js +2 -2
- package/dist/index.es21.js +2 -2
- package/dist/index.es22.js +2 -4
- package/dist/index.es22.js.map +1 -1
- package/dist/index.es23.js +7 -0
- package/dist/index.es23.js.map +1 -0
- package/dist/index.es3.js +1 -1
- package/dist/index.es4.js +8 -8
- package/dist/index.es5.js +93 -261
- package/dist/index.es5.js.map +1 -1
- package/dist/index.es6.js +263 -6
- package/dist/index.es6.js.map +1 -1
- package/dist/index.es7.js +6 -6
- package/dist/index.es7.js.map +1 -1
- package/dist/index.es8.js +5 -3
- package/dist/index.es8.js.map +1 -1
- package/dist/index.es9.js +3 -104
- package/dist/index.es9.js.map +1 -1
- package/package.json +6 -4
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
3
|
+
declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
|
|
4
|
+
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
6
|
+
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & {
|
|
8
|
+
hideCloseIcon?: boolean | undefined;
|
|
9
|
+
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
declare const DialogHeader: {
|
|
11
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
declare const DialogFooter: {
|
|
15
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
19
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
20
|
+
export { Dialog, DialogPortal, DialogOverlay, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, };
|
|
21
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Dialog/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAA;AAKzD,QAAA,MAAM,MAAM,uCAAuB,CAAA;AAEnC,QAAA,MAAM,aAAa,8GAA0B,CAAA;AAE7C,QAAA,MAAM,YAAY,6CAAyB,CAAA;AAE3C,QAAA,MAAM,aAAa,8JAYjB,CAAA;AASF,QAAA,MAAM,aAAa;;sFAwBjB,CAAA;AAGF,QAAA,MAAM,YAAY;8BAGf,MAAM,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAA;AAGD,QAAA,MAAM,YAAY;8BAGf,MAAM,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAA;AAGD,QAAA,MAAM,WAAW,oKAYf,CAAA;AAGF,QAAA,MAAM,iBAAiB,8KASrB,CAAA;AAGF,OAAO,EACL,MAAM,EACN,YAAY,EACZ,aAAa,EACb,aAAa,EACb,aAAa,EACb,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,iBAAiB,GAClB,CAAA"}
|
package/dist/cosmik.css
CHANGED
|
@@ -492,44 +492,137 @@ video {
|
|
|
492
492
|
--tw-backdrop-saturate: ;
|
|
493
493
|
--tw-backdrop-sepia: ;
|
|
494
494
|
}
|
|
495
|
+
.sr-only{
|
|
496
|
+
position: absolute;
|
|
497
|
+
width: 1px;
|
|
498
|
+
height: 1px;
|
|
499
|
+
padding: 0;
|
|
500
|
+
margin: -1px;
|
|
501
|
+
overflow: hidden;
|
|
502
|
+
clip: rect(0, 0, 0, 0);
|
|
503
|
+
white-space: nowrap;
|
|
504
|
+
border-width: 0;
|
|
505
|
+
}
|
|
506
|
+
.fixed{
|
|
507
|
+
position: fixed;
|
|
508
|
+
}
|
|
509
|
+
.absolute{
|
|
510
|
+
position: absolute;
|
|
511
|
+
}
|
|
512
|
+
.inset-0{
|
|
513
|
+
inset: 0;
|
|
514
|
+
}
|
|
515
|
+
.left-\[50\%\]{
|
|
516
|
+
left: 50%;
|
|
517
|
+
}
|
|
518
|
+
.right-8{
|
|
519
|
+
right: 8px;
|
|
520
|
+
}
|
|
521
|
+
.top-24{
|
|
522
|
+
top: 24px;
|
|
523
|
+
}
|
|
524
|
+
.top-8{
|
|
525
|
+
top: 8px;
|
|
526
|
+
}
|
|
527
|
+
.z-50{
|
|
528
|
+
z-index: 50;
|
|
529
|
+
}
|
|
530
|
+
.mx-\[-8px\]{
|
|
531
|
+
margin-left: -8px;
|
|
532
|
+
margin-right: -8px;
|
|
533
|
+
}
|
|
534
|
+
.mb-16{
|
|
535
|
+
margin-bottom: 16px;
|
|
536
|
+
}
|
|
537
|
+
.mb-\[-8px\]{
|
|
538
|
+
margin-bottom: -8px;
|
|
539
|
+
}
|
|
495
540
|
.mr-8{
|
|
496
541
|
margin-right: 8px;
|
|
497
542
|
}
|
|
543
|
+
.mt-24{
|
|
544
|
+
margin-top: 24px;
|
|
545
|
+
}
|
|
546
|
+
.mt-8{
|
|
547
|
+
margin-top: 8px;
|
|
548
|
+
}
|
|
549
|
+
.flex{
|
|
550
|
+
display: flex;
|
|
551
|
+
}
|
|
498
552
|
.inline-flex{
|
|
499
553
|
display: inline-flex;
|
|
500
554
|
}
|
|
555
|
+
.grid{
|
|
556
|
+
display: grid;
|
|
557
|
+
}
|
|
558
|
+
.h-24{
|
|
559
|
+
height: 24px;
|
|
560
|
+
}
|
|
501
561
|
.h-32{
|
|
502
562
|
height: 32px;
|
|
503
563
|
}
|
|
504
564
|
.h-40{
|
|
505
565
|
height: 40px;
|
|
506
566
|
}
|
|
567
|
+
.max-h-screen{
|
|
568
|
+
max-height: 100vh;
|
|
569
|
+
}
|
|
507
570
|
.w-16{
|
|
508
571
|
width: 16px;
|
|
509
572
|
}
|
|
573
|
+
.w-24{
|
|
574
|
+
width: 24px;
|
|
575
|
+
}
|
|
510
576
|
.w-32{
|
|
511
577
|
width: 32px;
|
|
512
578
|
}
|
|
513
579
|
.min-w-96{
|
|
514
580
|
min-width: 96px;
|
|
515
581
|
}
|
|
582
|
+
.min-w-\[384px\]{
|
|
583
|
+
min-width: 384px;
|
|
584
|
+
}
|
|
585
|
+
.translate-x-\[-50\%\]{
|
|
586
|
+
--tw-translate-x: -50%;
|
|
587
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
588
|
+
}
|
|
589
|
+
.select-text{
|
|
590
|
+
-webkit-user-select: text;
|
|
591
|
+
-moz-user-select: text;
|
|
592
|
+
user-select: text;
|
|
593
|
+
}
|
|
516
594
|
.items-center{
|
|
517
595
|
align-items: center;
|
|
518
596
|
}
|
|
597
|
+
.justify-end{
|
|
598
|
+
justify-content: flex-end;
|
|
599
|
+
}
|
|
519
600
|
.justify-center{
|
|
520
601
|
justify-content: center;
|
|
521
602
|
}
|
|
603
|
+
.gap-8{
|
|
604
|
+
gap: 8px;
|
|
605
|
+
}
|
|
522
606
|
.space-x-8 > :not([hidden]) ~ :not([hidden]){
|
|
523
607
|
--tw-space-x-reverse: 0;
|
|
524
608
|
margin-right: calc(8px * var(--tw-space-x-reverse));
|
|
525
609
|
margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
|
|
526
610
|
}
|
|
611
|
+
.overflow-y-auto{
|
|
612
|
+
overflow-y: auto;
|
|
613
|
+
}
|
|
614
|
+
.rounded{
|
|
615
|
+
border-radius: 8px;
|
|
616
|
+
}
|
|
527
617
|
.rounded-full{
|
|
528
618
|
border-radius: 9999px;
|
|
529
619
|
}
|
|
530
620
|
.border{
|
|
531
621
|
border-width: 1px;
|
|
532
622
|
}
|
|
623
|
+
.border-0{
|
|
624
|
+
border-width: 0;
|
|
625
|
+
}
|
|
533
626
|
.border-gray-900-24{
|
|
534
627
|
border-color: rgba(61, 63, 62, 0.24);
|
|
535
628
|
}
|
|
@@ -540,10 +633,17 @@ video {
|
|
|
540
633
|
.bg-gray-900-8{
|
|
541
634
|
background-color: rgba(61, 63, 62, 0.08);
|
|
542
635
|
}
|
|
636
|
+
.bg-gray-900\/48{
|
|
637
|
+
background-color: rgb(61 63 62 / 0.48);
|
|
638
|
+
}
|
|
543
639
|
.bg-robinblue-500{
|
|
544
640
|
--tw-bg-opacity: 1;
|
|
545
641
|
background-color: rgb(0 152 163 / var(--tw-bg-opacity));
|
|
546
642
|
}
|
|
643
|
+
.bg-white{
|
|
644
|
+
--tw-bg-opacity: 1;
|
|
645
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
646
|
+
}
|
|
547
647
|
.fill-gray-700{
|
|
548
648
|
fill: #757776;
|
|
549
649
|
}
|
|
@@ -556,6 +656,9 @@ video {
|
|
|
556
656
|
.fill-white{
|
|
557
657
|
fill: #fff;
|
|
558
658
|
}
|
|
659
|
+
.p-24{
|
|
660
|
+
padding: 24px;
|
|
661
|
+
}
|
|
559
662
|
.px-16{
|
|
560
663
|
padding-left: 16px;
|
|
561
664
|
padding-right: 16px;
|
|
@@ -564,16 +667,32 @@ video {
|
|
|
564
667
|
padding-left: 24px;
|
|
565
668
|
padding-right: 24px;
|
|
566
669
|
}
|
|
670
|
+
.text-left{
|
|
671
|
+
text-align: left;
|
|
672
|
+
}
|
|
673
|
+
.font-display{
|
|
674
|
+
font-family: neue-haas-grotesk-display, sans-serif;
|
|
675
|
+
}
|
|
567
676
|
.text-base{
|
|
568
677
|
font-size: 14px;
|
|
569
678
|
}
|
|
679
|
+
.text-lg{
|
|
680
|
+
font-size: 18px;
|
|
681
|
+
}
|
|
570
682
|
.font-medium{
|
|
571
683
|
font-weight: 500;
|
|
572
684
|
}
|
|
685
|
+
.font-normal{
|
|
686
|
+
font-weight: 400;
|
|
687
|
+
}
|
|
573
688
|
.text-gray-700{
|
|
574
689
|
--tw-text-opacity: 1;
|
|
575
690
|
color: rgb(117 119 118 / var(--tw-text-opacity));
|
|
576
691
|
}
|
|
692
|
+
.text-gray-800{
|
|
693
|
+
--tw-text-opacity: 1;
|
|
694
|
+
color: rgb(97 99 98 / var(--tw-text-opacity));
|
|
695
|
+
}
|
|
577
696
|
.text-gray-900{
|
|
578
697
|
--tw-text-opacity: 1;
|
|
579
698
|
color: rgb(61 63 62 / var(--tw-text-opacity));
|
|
@@ -586,6 +705,11 @@ video {
|
|
|
586
705
|
--tw-text-opacity: 1;
|
|
587
706
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
588
707
|
}
|
|
708
|
+
.shadow-200{
|
|
709
|
+
--tw-shadow: 0 4px 6px -1px rgba(61, 63, 62, .16);
|
|
710
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color);
|
|
711
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
712
|
+
}
|
|
589
713
|
.outline-none{
|
|
590
714
|
outline: 2px solid transparent;
|
|
591
715
|
outline-offset: 2px;
|
|
@@ -593,6 +717,11 @@ video {
|
|
|
593
717
|
.outline{
|
|
594
718
|
outline-style: solid;
|
|
595
719
|
}
|
|
720
|
+
.backdrop-blur-sm{
|
|
721
|
+
--tw-backdrop-blur: blur(4px);
|
|
722
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
723
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
724
|
+
}
|
|
596
725
|
.transition-colors{
|
|
597
726
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
598
727
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -603,6 +732,26 @@ video {
|
|
|
603
732
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
604
733
|
transition-duration: 150ms;
|
|
605
734
|
}
|
|
735
|
+
.duration-200{
|
|
736
|
+
transition-duration: 200ms;
|
|
737
|
+
}
|
|
738
|
+
@keyframes enter{
|
|
739
|
+
|
|
740
|
+
from{
|
|
741
|
+
opacity: var(--tw-enter-opacity, 1);
|
|
742
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
@keyframes exit{
|
|
746
|
+
|
|
747
|
+
to{
|
|
748
|
+
opacity: var(--tw-exit-opacity, 1);
|
|
749
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
.duration-200{
|
|
753
|
+
animation-duration: 200ms;
|
|
754
|
+
}
|
|
606
755
|
.hover\:bg-gray-900-12:hover{
|
|
607
756
|
background-color: rgba(61, 63, 62, 0.12);
|
|
608
757
|
}
|
|
@@ -684,3 +833,45 @@ video {
|
|
|
684
833
|
.disabled\:opacity-40:disabled{
|
|
685
834
|
opacity: 0.40;
|
|
686
835
|
}
|
|
836
|
+
.data-\[state\=open\]\:animate-in[data-state=open]{
|
|
837
|
+
animation-name: enter;
|
|
838
|
+
animation-duration: 150ms;
|
|
839
|
+
--tw-enter-opacity: initial;
|
|
840
|
+
--tw-enter-scale: initial;
|
|
841
|
+
--tw-enter-rotate: initial;
|
|
842
|
+
--tw-enter-translate-x: initial;
|
|
843
|
+
--tw-enter-translate-y: initial;
|
|
844
|
+
}
|
|
845
|
+
.data-\[state\=closed\]\:animate-out[data-state=closed]{
|
|
846
|
+
animation-name: exit;
|
|
847
|
+
animation-duration: 150ms;
|
|
848
|
+
--tw-exit-opacity: initial;
|
|
849
|
+
--tw-exit-scale: initial;
|
|
850
|
+
--tw-exit-rotate: initial;
|
|
851
|
+
--tw-exit-translate-x: initial;
|
|
852
|
+
--tw-exit-translate-y: initial;
|
|
853
|
+
}
|
|
854
|
+
.data-\[state\=closed\]\:fade-out-0[data-state=closed]{
|
|
855
|
+
--tw-exit-opacity: 0;
|
|
856
|
+
}
|
|
857
|
+
.data-\[state\=open\]\:fade-in-0[data-state=open]{
|
|
858
|
+
--tw-enter-opacity: 0;
|
|
859
|
+
}
|
|
860
|
+
.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{
|
|
861
|
+
--tw-exit-scale: .95;
|
|
862
|
+
}
|
|
863
|
+
.data-\[state\=open\]\:zoom-in-95[data-state=open]{
|
|
864
|
+
--tw-enter-scale: .95;
|
|
865
|
+
}
|
|
866
|
+
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]{
|
|
867
|
+
--tw-exit-translate-x: -50%;
|
|
868
|
+
}
|
|
869
|
+
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed]{
|
|
870
|
+
--tw-exit-translate-y: -48%;
|
|
871
|
+
}
|
|
872
|
+
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]{
|
|
873
|
+
--tw-enter-translate-x: -50%;
|
|
874
|
+
}
|
|
875
|
+
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open]{
|
|
876
|
+
--tw-enter-translate-y: -48%;
|
|
877
|
+
}
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index.cjs2.js"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index.cjs2.js"),t=require("./index.cjs3.js"),i=require("./index.cjs4.js"),o=require("./index.cjs5.js");exports.Colors=e.default;exports.tailwindTheme=t.default;exports.Button=i.Button;exports.buttonVariants=i.buttonVariants;exports.Dialog=o.Dialog;exports.DialogContent=o.DialogContent;exports.DialogDescription=o.DialogDescription;exports.DialogFooter=o.DialogFooter;exports.DialogHeader=o.DialogHeader;exports.DialogOverlay=o.DialogOverlay;exports.DialogPortal=o.DialogPortal;exports.DialogTitle=o.DialogTitle;exports.DialogTrigger=o.DialogTrigger;
|
|
2
2
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.cjs10.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const p=require("./index.cjs15.js"),M=require("./index.cjs16.js"),x=require("./index.cjs17.js");var v=M.colorName,f=x.simpleSwizzleExports,m=Object.hasOwnProperty,w=Object.create(null);for(var b in v)m.call(v,b)&&(w[v[b]]=b);var l=p.__module.exports={to:{},get:{}};l.get=function(r){var n=r.substring(0,3).toLowerCase(),t,o;switch(n){case"hsl":t=l.get.hsl(r),o="hsl";break;case"hwb":t=l.get.hwb(r),o="hwb";break;default:t=l.get.rgb(r),o="rgb";break}return t?{model:o,value:t}:null};l.get.rgb=function(r){if(!r)return null;var n=/^#([a-f0-9]{3,4})$/i,t=/^#([a-f0-9]{6})([a-f0-9]{2})?$/i,o=/^rgba?\(\s*([+-]?\d+)(?=[\s,])\s*(?:,\s*)?([+-]?\d+)(?=[\s,])\s*(?:,\s*)?([+-]?\d+)\s*(?:[,|\/]\s*([+-]?[\d\.]+)(%?)\s*)?\)$/,d=/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,?\s*([+-]?[\d\.]+)\%\s*,?\s*([+-]?[\d\.]+)\%\s*(?:[,|\/]\s*([+-]?[\d\.]+)(%?)\s*)?\)$/,i=/^(\w+)$/,s=[0,0,0,1],a,e,h;if(a=r.match(t)){for(h=a[2],a=a[1],e=0;e<3;e++){var g=e*2;s[e]=parseInt(a.slice(g,g+2),16)}h&&(s[3]=parseInt(h,16)/255)}else if(a=r.match(n)){for(a=a[1],h=a[3],e=0;e<3;e++)s[e]=parseInt(a[e]+a[e],16);h&&(s[3]=parseInt(h+h,16)/255)}else if(a=r.match(o)){for(e=0;e<3;e++)s[e]=parseInt(a[e+1],0);a[4]&&(a[5]?s[3]=parseFloat(a[4])*.01:s[3]=parseFloat(a[4]))}else if(a=r.match(d)){for(e=0;e<3;e++)s[e]=Math.round(parseFloat(a[e+1])*2.55);a[4]&&(a[5]?s[3]=parseFloat(a[4])*.01:s[3]=parseFloat(a[4]))}else return(a=r.match(i))?a[1]==="transparent"?[0,0,0,0]:m.call(v,a[1])?(s=v[a[1]],s[3]=1,s):null:null;for(e=0;e<3;e++)s[e]=u(s[e],0,255);return s[3]=u(s[3],0,1),s};l.get.hsl=function(r){if(!r)return null;var n=/^hsla?\(\s*([+-]?(?:\d{0,3}\.)?\d+)(?:deg)?\s*,?\s*([+-]?[\d\.]+)%\s*,?\s*([+-]?[\d\.]+)%\s*(?:[,|\/]\s*([+-]?(?=\.\d|\d)(?:0|[1-9]\d*)?(?:\.\d*)?(?:[eE][+-]?\d+)?)\s*)?\)$/,t=r.match(n);if(t){var o=parseFloat(t[4]),d=(parseFloat(t[1])%360+360)%360,i=u(parseFloat(t[2]),0,100),s=u(parseFloat(t[3]),0,100),a=u(isNaN(o)?1:o,0,1);return[d,i,s,a]}return null};l.get.hwb=function(r){if(!r)return null;var n=/^hwb\(\s*([+-]?\d{0,3}(?:\.\d+)?)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?(?=\.\d|\d)(?:0|[1-9]\d*)?(?:\.\d*)?(?:[eE][+-]?\d+)?)\s*)?\)$/,t=r.match(n);if(t){var o=parseFloat(t[4]),d=(parseFloat(t[1])%360+360)%360,i=u(parseFloat(t[2]),0,100),s=u(parseFloat(t[3]),0,100),a=u(isNaN(o)?1:o,0,1);return[d,i,s,a]}return null};l.to.hex=function(){var r=f(arguments);return"#"+c(r[0])+c(r[1])+c(r[2])+(r[3]<1?c(Math.round(r[3]*255)):"")};l.to.rgb=function(){var r=f(arguments);return r.length<4||r[3]===1?"rgb("+Math.round(r[0])+", "+Math.round(r[1])+", "+Math.round(r[2])+")":"rgba("+Math.round(r[0])+", "+Math.round(r[1])+", "+Math.round(r[2])+", "+r[3]+")"};l.to.rgb.percent=function(){var r=f(arguments),n=Math.round(r[0]/255*100),t=Math.round(r[1]/255*100),o=Math.round(r[2]/255*100);return r.length<4||r[3]===1?"rgb("+n+"%, "+t+"%, "+o+"%)":"rgba("+n+"%, "+t+"%, "+o+"%, "+r[3]+")"};l.to.hsl=function(){var r=f(arguments);return r.length<4||r[3]===1?"hsl("+r[0]+", "+r[1]+"%, "+r[2]+"%)":"hsla("+r[0]+", "+r[1]+"%, "+r[2]+"%, "+r[3]+")"};l.to.hwb=function(){var r=f(arguments),n="";return r.length>=4&&r[3]!==1&&(n=", "+r[3]),"hwb("+r[0]+", "+r[1]+"%, "+r[2]+"%"+n+")"};l.to.keyword=function(r){return w[r.slice(0,3)]};function u(r,n,t){return Math.min(Math.max(n,r),t)}function c(r){var n=Math.round(r).toString(16).toUpperCase();return n.length<2?"0"+n:n}var F=p.__module.exports;exports.colorStringExports=F;
|
|
2
2
|
//# sourceMappingURL=index.cjs10.js.map
|
package/dist/index.cjs10.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs10.js","sources":["../node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js"],"sourcesContent":["const conversions = require('./conversions');\nconst route = require('./route');\n\nconst convert = {};\n\nconst models = Object.keys(conversions);\n\nfunction wrapRaw(fn) {\n\tconst wrappedFn = function (...args) {\n\t\tconst arg0 = args[0];\n\t\tif (arg0 === undefined || arg0 === null) {\n\t\t\treturn arg0;\n\t\t}\n\n\t\tif (arg0.length > 1) {\n\t\t\targs = arg0;\n\t\t}\n\n\t\treturn fn(args);\n\t};\n\n\t// Preserve .conversion property if there is one\n\tif ('conversion' in fn) {\n\t\twrappedFn.conversion = fn.conversion;\n\t}\n\n\treturn wrappedFn;\n}\n\nfunction wrapRounded(fn) {\n\tconst wrappedFn = function (...args) {\n\t\tconst arg0 = args[0];\n\n\t\tif (arg0 === undefined || arg0 === null) {\n\t\t\treturn arg0;\n\t\t}\n\n\t\tif (arg0.length > 1) {\n\t\t\targs = arg0;\n\t\t}\n\n\t\tconst result = fn(args);\n\n\t\t// We're assuming the result is an array here.\n\t\t// see notice in conversions.js; don't use box types\n\t\t// in conversion functions.\n\t\tif (typeof result === 'object') {\n\t\t\tfor (let len = result.length, i = 0; i < len; i++) {\n\t\t\t\tresult[i] = Math.round(result[i]);\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t};\n\n\t// Preserve .conversion property if there is one\n\tif ('conversion' in fn) {\n\t\twrappedFn.conversion = fn.conversion;\n\t}\n\n\treturn wrappedFn;\n}\n\nmodels.forEach(fromModel => {\n\tconvert[fromModel] = {};\n\n\tObject.defineProperty(convert[fromModel], 'channels', {value: conversions[fromModel].channels});\n\tObject.defineProperty(convert[fromModel], 'labels', {value: conversions[fromModel].labels});\n\n\tconst routes = route(fromModel);\n\tconst routeModels = Object.keys(routes);\n\n\trouteModels.forEach(toModel => {\n\t\tconst fn = routes[toModel];\n\n\t\tconvert[fromModel][toModel] = wrapRounded(fn);\n\t\tconvert[fromModel][toModel].raw = wrapRaw(fn);\n\t});\n});\n\nmodule.exports = convert;\n"],"names":["conversions","require$$0","route","require$$1","convert","models","wrapRaw","fn","wrappedFn","args","arg0","wrapRounded","result","len","i","fromModel","routes","toModel","colorConvert"],"mappings":"kJAAMA,EAAcC,EAAAA,YACdC,EAAQC,EAAAA,MAERC,EAAU,CAAA,EAEVC,EAAS,OAAO,KAAKL,CAAW,EAEtC,SAASM,EAAQC,EAAI,CACpB,MAAMC,EAAY,YAAaC,EAAM,CACpC,MAAMC,EAAOD,EAAK,CAAC,EACnB,OAA0BC,GAAS,KAC3BA,GAGJA,EAAK,OAAS,IACjBD,EAAOC,GAGDH,EAAGE,CAAI,EAChB,EAGC,MAAI,eAAgBF,IACnBC,EAAU,WAAaD,EAAG,YAGpBC,CACR,CAEA,SAASG,EAAYJ,EAAI,CACxB,MAAMC,EAAY,YAAaC,EAAM,CACpC,MAAMC,EAAOD,EAAK,CAAC,EAEnB,GAA0BC,GAAS,KAClC,OAAOA,EAGJA,EAAK,OAAS,IACjBD,EAAOC,GAGR,MAAME,EAASL,EAAGE,CAAI,EAKtB,GAAI,OAAOG,GAAW,SACrB,QAASC,EAAMD,EAAO,OAAQE,EAAI,EAAGA,EAAID,EAAKC,IAC7CF,EAAOE,CAAC,EAAI,KAAK,MAAMF,EAAOE,CAAC,CAAC,EAIlC,OAAOF,CACT,EAGC,MAAI,eAAgBL,IACnBC,EAAU,WAAaD,EAAG,YAGpBC,CACR,CAEAH,EAAO,QAAQU,GAAa,CAC3BX,EAAQW,CAAS,EAAI,GAErB,OAAO,eAAeX,EAAQW,CAAS,EAAG,WAAY,CAAC,MAAOf,EAAYe,CAAS,EAAE,QAAQ,CAAC,EAC9F,OAAO,eAAeX,EAAQW,CAAS,EAAG,SAAU,CAAC,MAAOf,EAAYe,CAAS,EAAE,MAAM,CAAC,EAE1F,MAAMC,EAASd,EAAMa,CAAS,EACV,OAAO,KAAKC,CAAM,EAE1B,QAAQC,GAAW,CAC9B,MAAMV,EAAKS,EAAOC,CAAO,EAEzBb,EAAQW,CAAS,EAAEE,CAAO,EAAIN,EAAYJ,CAAE,EAC5CH,EAAQW,CAAS,EAAEE,CAAO,EAAE,IAAMX,EAAQC,CAAE,CAC9C,CAAE,CACF,CAAC,EAED,IAAAW,EAAiBd","x_google_ignoreList":[0]}
|
|
1
|
+
{"version":3,"file":"index.cjs10.js","sources":["../node_modules/.pnpm/color-string@1.9.1/node_modules/color-string/index.js"],"sourcesContent":["/* MIT license */\nvar colorNames = require('color-name');\nvar swizzle = require('simple-swizzle');\nvar hasOwnProperty = Object.hasOwnProperty;\n\nvar reverseNames = Object.create(null);\n\n// create a list of reverse color names\nfor (var name in colorNames) {\n\tif (hasOwnProperty.call(colorNames, name)) {\n\t\treverseNames[colorNames[name]] = name;\n\t}\n}\n\nvar cs = module.exports = {\n\tto: {},\n\tget: {}\n};\n\ncs.get = function (string) {\n\tvar prefix = string.substring(0, 3).toLowerCase();\n\tvar val;\n\tvar model;\n\tswitch (prefix) {\n\t\tcase 'hsl':\n\t\t\tval = cs.get.hsl(string);\n\t\t\tmodel = 'hsl';\n\t\t\tbreak;\n\t\tcase 'hwb':\n\t\t\tval = cs.get.hwb(string);\n\t\t\tmodel = 'hwb';\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tval = cs.get.rgb(string);\n\t\t\tmodel = 'rgb';\n\t\t\tbreak;\n\t}\n\n\tif (!val) {\n\t\treturn null;\n\t}\n\n\treturn {model: model, value: val};\n};\n\ncs.get.rgb = function (string) {\n\tif (!string) {\n\t\treturn null;\n\t}\n\n\tvar abbr = /^#([a-f0-9]{3,4})$/i;\n\tvar hex = /^#([a-f0-9]{6})([a-f0-9]{2})?$/i;\n\tvar rgba = /^rgba?\\(\\s*([+-]?\\d+)(?=[\\s,])\\s*(?:,\\s*)?([+-]?\\d+)(?=[\\s,])\\s*(?:,\\s*)?([+-]?\\d+)\\s*(?:[,|\\/]\\s*([+-]?[\\d\\.]+)(%?)\\s*)?\\)$/;\n\tvar per = /^rgba?\\(\\s*([+-]?[\\d\\.]+)\\%\\s*,?\\s*([+-]?[\\d\\.]+)\\%\\s*,?\\s*([+-]?[\\d\\.]+)\\%\\s*(?:[,|\\/]\\s*([+-]?[\\d\\.]+)(%?)\\s*)?\\)$/;\n\tvar keyword = /^(\\w+)$/;\n\n\tvar rgb = [0, 0, 0, 1];\n\tvar match;\n\tvar i;\n\tvar hexAlpha;\n\n\tif (match = string.match(hex)) {\n\t\thexAlpha = match[2];\n\t\tmatch = match[1];\n\n\t\tfor (i = 0; i < 3; i++) {\n\t\t\t// https://jsperf.com/slice-vs-substr-vs-substring-methods-long-string/19\n\t\t\tvar i2 = i * 2;\n\t\t\trgb[i] = parseInt(match.slice(i2, i2 + 2), 16);\n\t\t}\n\n\t\tif (hexAlpha) {\n\t\t\trgb[3] = parseInt(hexAlpha, 16) / 255;\n\t\t}\n\t} else if (match = string.match(abbr)) {\n\t\tmatch = match[1];\n\t\thexAlpha = match[3];\n\n\t\tfor (i = 0; i < 3; i++) {\n\t\t\trgb[i] = parseInt(match[i] + match[i], 16);\n\t\t}\n\n\t\tif (hexAlpha) {\n\t\t\trgb[3] = parseInt(hexAlpha + hexAlpha, 16) / 255;\n\t\t}\n\t} else if (match = string.match(rgba)) {\n\t\tfor (i = 0; i < 3; i++) {\n\t\t\trgb[i] = parseInt(match[i + 1], 0);\n\t\t}\n\n\t\tif (match[4]) {\n\t\t\tif (match[5]) {\n\t\t\t\trgb[3] = parseFloat(match[4]) * 0.01;\n\t\t\t} else {\n\t\t\t\trgb[3] = parseFloat(match[4]);\n\t\t\t}\n\t\t}\n\t} else if (match = string.match(per)) {\n\t\tfor (i = 0; i < 3; i++) {\n\t\t\trgb[i] = Math.round(parseFloat(match[i + 1]) * 2.55);\n\t\t}\n\n\t\tif (match[4]) {\n\t\t\tif (match[5]) {\n\t\t\t\trgb[3] = parseFloat(match[4]) * 0.01;\n\t\t\t} else {\n\t\t\t\trgb[3] = parseFloat(match[4]);\n\t\t\t}\n\t\t}\n\t} else if (match = string.match(keyword)) {\n\t\tif (match[1] === 'transparent') {\n\t\t\treturn [0, 0, 0, 0];\n\t\t}\n\n\t\tif (!hasOwnProperty.call(colorNames, match[1])) {\n\t\t\treturn null;\n\t\t}\n\n\t\trgb = colorNames[match[1]];\n\t\trgb[3] = 1;\n\n\t\treturn rgb;\n\t} else {\n\t\treturn null;\n\t}\n\n\tfor (i = 0; i < 3; i++) {\n\t\trgb[i] = clamp(rgb[i], 0, 255);\n\t}\n\trgb[3] = clamp(rgb[3], 0, 1);\n\n\treturn rgb;\n};\n\ncs.get.hsl = function (string) {\n\tif (!string) {\n\t\treturn null;\n\t}\n\n\tvar hsl = /^hsla?\\(\\s*([+-]?(?:\\d{0,3}\\.)?\\d+)(?:deg)?\\s*,?\\s*([+-]?[\\d\\.]+)%\\s*,?\\s*([+-]?[\\d\\.]+)%\\s*(?:[,|\\/]\\s*([+-]?(?=\\.\\d|\\d)(?:0|[1-9]\\d*)?(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)\\s*)?\\)$/;\n\tvar match = string.match(hsl);\n\n\tif (match) {\n\t\tvar alpha = parseFloat(match[4]);\n\t\tvar h = ((parseFloat(match[1]) % 360) + 360) % 360;\n\t\tvar s = clamp(parseFloat(match[2]), 0, 100);\n\t\tvar l = clamp(parseFloat(match[3]), 0, 100);\n\t\tvar a = clamp(isNaN(alpha) ? 1 : alpha, 0, 1);\n\n\t\treturn [h, s, l, a];\n\t}\n\n\treturn null;\n};\n\ncs.get.hwb = function (string) {\n\tif (!string) {\n\t\treturn null;\n\t}\n\n\tvar hwb = /^hwb\\(\\s*([+-]?\\d{0,3}(?:\\.\\d+)?)(?:deg)?\\s*,\\s*([+-]?[\\d\\.]+)%\\s*,\\s*([+-]?[\\d\\.]+)%\\s*(?:,\\s*([+-]?(?=\\.\\d|\\d)(?:0|[1-9]\\d*)?(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)\\s*)?\\)$/;\n\tvar match = string.match(hwb);\n\n\tif (match) {\n\t\tvar alpha = parseFloat(match[4]);\n\t\tvar h = ((parseFloat(match[1]) % 360) + 360) % 360;\n\t\tvar w = clamp(parseFloat(match[2]), 0, 100);\n\t\tvar b = clamp(parseFloat(match[3]), 0, 100);\n\t\tvar a = clamp(isNaN(alpha) ? 1 : alpha, 0, 1);\n\t\treturn [h, w, b, a];\n\t}\n\n\treturn null;\n};\n\ncs.to.hex = function () {\n\tvar rgba = swizzle(arguments);\n\n\treturn (\n\t\t'#' +\n\t\thexDouble(rgba[0]) +\n\t\thexDouble(rgba[1]) +\n\t\thexDouble(rgba[2]) +\n\t\t(rgba[3] < 1\n\t\t\t? (hexDouble(Math.round(rgba[3] * 255)))\n\t\t\t: '')\n\t);\n};\n\ncs.to.rgb = function () {\n\tvar rgba = swizzle(arguments);\n\n\treturn rgba.length < 4 || rgba[3] === 1\n\t\t? 'rgb(' + Math.round(rgba[0]) + ', ' + Math.round(rgba[1]) + ', ' + Math.round(rgba[2]) + ')'\n\t\t: 'rgba(' + Math.round(rgba[0]) + ', ' + Math.round(rgba[1]) + ', ' + Math.round(rgba[2]) + ', ' + rgba[3] + ')';\n};\n\ncs.to.rgb.percent = function () {\n\tvar rgba = swizzle(arguments);\n\n\tvar r = Math.round(rgba[0] / 255 * 100);\n\tvar g = Math.round(rgba[1] / 255 * 100);\n\tvar b = Math.round(rgba[2] / 255 * 100);\n\n\treturn rgba.length < 4 || rgba[3] === 1\n\t\t? 'rgb(' + r + '%, ' + g + '%, ' + b + '%)'\n\t\t: 'rgba(' + r + '%, ' + g + '%, ' + b + '%, ' + rgba[3] + ')';\n};\n\ncs.to.hsl = function () {\n\tvar hsla = swizzle(arguments);\n\treturn hsla.length < 4 || hsla[3] === 1\n\t\t? 'hsl(' + hsla[0] + ', ' + hsla[1] + '%, ' + hsla[2] + '%)'\n\t\t: 'hsla(' + hsla[0] + ', ' + hsla[1] + '%, ' + hsla[2] + '%, ' + hsla[3] + ')';\n};\n\n// hwb is a bit different than rgb(a) & hsl(a) since there is no alpha specific syntax\n// (hwb have alpha optional & 1 is default value)\ncs.to.hwb = function () {\n\tvar hwba = swizzle(arguments);\n\n\tvar a = '';\n\tif (hwba.length >= 4 && hwba[3] !== 1) {\n\t\ta = ', ' + hwba[3];\n\t}\n\n\treturn 'hwb(' + hwba[0] + ', ' + hwba[1] + '%, ' + hwba[2] + '%' + a + ')';\n};\n\ncs.to.keyword = function (rgb) {\n\treturn reverseNames[rgb.slice(0, 3)];\n};\n\n// helpers\nfunction clamp(num, min, max) {\n\treturn Math.min(Math.max(min, num), max);\n}\n\nfunction hexDouble(num) {\n\tvar str = Math.round(num).toString(16).toUpperCase();\n\treturn (str.length < 2) ? '0' + str : str;\n}\n"],"names":["colorNames","require$$0","swizzle","require$$1","hasOwnProperty","reverseNames","name","cs","colorStringModule","string","prefix","val","model","abbr","hex","rgba","per","keyword","rgb","match","i","hexAlpha","i2","clamp","hsl","alpha","h","s","l","hwb","w","b","hexDouble","r","g","hsla","hwba","a","num","min","max","str"],"mappings":"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","x_google_ignoreList":[0]}
|
package/dist/index.cjs11.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./index.cjs18.js"),a=require("./index.cjs19.js"),i=l.conversions,v=a.route,c={},f=Object.keys(i);function p(n){const t=function(...o){const e=o[0];return e==null?e:(e.length>1&&(o=e),n(o))};return"conversion"in n&&(t.conversion=n.conversion),t}function b(n){const t=function(...o){const e=o[0];if(e==null)return e;e.length>1&&(o=e);const r=n(o);if(typeof r=="object")for(let u=r.length,s=0;s<u;s++)r[s]=Math.round(r[s]);return r};return"conversion"in n&&(t.conversion=n.conversion),t}f.forEach(n=>{c[n]={},Object.defineProperty(c[n],"channels",{value:i[n].channels}),Object.defineProperty(c[n],"labels",{value:i[n].labels});const t=v(n);Object.keys(t).forEach(e=>{const r=t[e];c[n][e]=b(r),c[n][e].raw=p(r)})});var h=c;exports.colorConvert=h;
|
|
2
2
|
//# sourceMappingURL=index.cjs11.js.map
|
package/dist/index.cjs11.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs11.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.cjs11.js","sources":["../node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js"],"sourcesContent":["const conversions = require('./conversions');\nconst route = require('./route');\n\nconst convert = {};\n\nconst models = Object.keys(conversions);\n\nfunction wrapRaw(fn) {\n\tconst wrappedFn = function (...args) {\n\t\tconst arg0 = args[0];\n\t\tif (arg0 === undefined || arg0 === null) {\n\t\t\treturn arg0;\n\t\t}\n\n\t\tif (arg0.length > 1) {\n\t\t\targs = arg0;\n\t\t}\n\n\t\treturn fn(args);\n\t};\n\n\t// Preserve .conversion property if there is one\n\tif ('conversion' in fn) {\n\t\twrappedFn.conversion = fn.conversion;\n\t}\n\n\treturn wrappedFn;\n}\n\nfunction wrapRounded(fn) {\n\tconst wrappedFn = function (...args) {\n\t\tconst arg0 = args[0];\n\n\t\tif (arg0 === undefined || arg0 === null) {\n\t\t\treturn arg0;\n\t\t}\n\n\t\tif (arg0.length > 1) {\n\t\t\targs = arg0;\n\t\t}\n\n\t\tconst result = fn(args);\n\n\t\t// We're assuming the result is an array here.\n\t\t// see notice in conversions.js; don't use box types\n\t\t// in conversion functions.\n\t\tif (typeof result === 'object') {\n\t\t\tfor (let len = result.length, i = 0; i < len; i++) {\n\t\t\t\tresult[i] = Math.round(result[i]);\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t};\n\n\t// Preserve .conversion property if there is one\n\tif ('conversion' in fn) {\n\t\twrappedFn.conversion = fn.conversion;\n\t}\n\n\treturn wrappedFn;\n}\n\nmodels.forEach(fromModel => {\n\tconvert[fromModel] = {};\n\n\tObject.defineProperty(convert[fromModel], 'channels', {value: conversions[fromModel].channels});\n\tObject.defineProperty(convert[fromModel], 'labels', {value: conversions[fromModel].labels});\n\n\tconst routes = route(fromModel);\n\tconst routeModels = Object.keys(routes);\n\n\trouteModels.forEach(toModel => {\n\t\tconst fn = routes[toModel];\n\n\t\tconvert[fromModel][toModel] = wrapRounded(fn);\n\t\tconvert[fromModel][toModel].raw = wrapRaw(fn);\n\t});\n});\n\nmodule.exports = convert;\n"],"names":["conversions","require$$0","route","require$$1","convert","models","wrapRaw","fn","wrappedFn","args","arg0","wrapRounded","result","len","i","fromModel","routes","toModel","colorConvert"],"mappings":"kJAAMA,EAAcC,EAAAA,YACdC,EAAQC,EAAAA,MAERC,EAAU,CAAA,EAEVC,EAAS,OAAO,KAAKL,CAAW,EAEtC,SAASM,EAAQC,EAAI,CACpB,MAAMC,EAAY,YAAaC,EAAM,CACpC,MAAMC,EAAOD,EAAK,CAAC,EACnB,OAA0BC,GAAS,KAC3BA,GAGJA,EAAK,OAAS,IACjBD,EAAOC,GAGDH,EAAGE,CAAI,EAChB,EAGC,MAAI,eAAgBF,IACnBC,EAAU,WAAaD,EAAG,YAGpBC,CACR,CAEA,SAASG,EAAYJ,EAAI,CACxB,MAAMC,EAAY,YAAaC,EAAM,CACpC,MAAMC,EAAOD,EAAK,CAAC,EAEnB,GAA0BC,GAAS,KAClC,OAAOA,EAGJA,EAAK,OAAS,IACjBD,EAAOC,GAGR,MAAME,EAASL,EAAGE,CAAI,EAKtB,GAAI,OAAOG,GAAW,SACrB,QAASC,EAAMD,EAAO,OAAQE,EAAI,EAAGA,EAAID,EAAKC,IAC7CF,EAAOE,CAAC,EAAI,KAAK,MAAMF,EAAOE,CAAC,CAAC,EAIlC,OAAOF,CACT,EAGC,MAAI,eAAgBL,IACnBC,EAAU,WAAaD,EAAG,YAGpBC,CACR,CAEAH,EAAO,QAAQU,GAAa,CAC3BX,EAAQW,CAAS,EAAI,GAErB,OAAO,eAAeX,EAAQW,CAAS,EAAG,WAAY,CAAC,MAAOf,EAAYe,CAAS,EAAE,QAAQ,CAAC,EAC9F,OAAO,eAAeX,EAAQW,CAAS,EAAG,SAAU,CAAC,MAAOf,EAAYe,CAAS,EAAE,MAAM,CAAC,EAE1F,MAAMC,EAASd,EAAMa,CAAS,EACV,OAAO,KAAKC,CAAM,EAE1B,QAAQC,GAAW,CAC9B,MAAMV,EAAKS,EAAOC,CAAO,EAEzBb,EAAQW,CAAS,EAAEE,CAAO,EAAIN,EAAYJ,CAAE,EAC5CH,EAAQW,CAAS,EAAEE,CAAO,EAAE,IAAMX,EAAQC,CAAE,CAC9C,CAAE,CACF,CAAC,EAED,IAAAW,EAAiBd","x_google_ignoreList":[0]}
|
package/dist/index.cjs12.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});
|
|
2
|
-
* @license React
|
|
3
|
-
* react-jsx-runtime.production.min.js
|
|
4
|
-
*
|
|
5
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
-
*
|
|
7
|
-
* This source code is licensed under the MIT license found in the
|
|
8
|
-
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/var p;function a(){if(p)return t.__exports;p=1;var f=R,c=Symbol.for("react.element"),l=Symbol.for("react.fragment"),d=Object.prototype.hasOwnProperty,m=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,y={key:!0,ref:!0,__self:!0,__source:!0};function i(o,e,u){var r,n={},_=null,s=null;u!==void 0&&(_=""+u),e.key!==void 0&&(_=""+e.key),e.ref!==void 0&&(s=e.ref);for(r in e)d.call(e,r)&&!y.hasOwnProperty(r)&&(n[r]=e[r]);if(o&&o.defaultProps)for(r in e=o.defaultProps,e)n[r]===void 0&&(n[r]=e[r]);return{$$typeof:c,type:o,key:_,ref:s,props:n,_owner:m.current}}return t.__exports.Fragment=l,t.__exports.jsx=i,t.__exports.jsxs=i,t.__exports}exports.__require=a;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var e={exports:{}};exports.__module=e;
|
|
10
2
|
//# sourceMappingURL=index.cjs12.js.map
|
package/dist/index.cjs12.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs12.js","sources":[
|
|
1
|
+
{"version":3,"file":"index.cjs12.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/dist/index.cjs13.js
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index.cjs20.js"),R=require("react");/**
|
|
2
2
|
* @license React
|
|
3
|
-
* react-jsx-runtime.
|
|
3
|
+
* react-jsx-runtime.production.min.js
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
6
|
*
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/var
|
|
10
|
-
`+I+e}}var W=!1,S;{var Fe=typeof WeakMap=="function"?WeakMap:Map;S=new Fe}function ne(e,r){if(!e||W)return"";{var t=S.get(e);if(t!==void 0)return t}var n;W=!0;var o=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var u;u=A.current,A.current=null,ke();try{if(r){var i=function(){throw Error()};if(Object.defineProperty(i.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(i,[])}catch(p){n=p}Reflect.construct(e,[],i)}else{try{i.call()}catch(p){n=p}e.call(i.prototype)}}else{try{throw Error()}catch(p){n=p}e()}}catch(p){if(p&&n&&typeof p.stack=="string"){for(var a=p.stack.split(`
|
|
11
|
-
`),c=n.stack.split(`
|
|
12
|
-
`),s=a.length-1,l=c.length-1;s>=1&&l>=0&&a[s]!==c[l];)l--;for(;s>=1&&l>=0;s--,l--)if(a[s]!==c[l]){if(s!==1||l!==1)do if(s--,l--,l<0||a[s]!==c[l]){var v=`
|
|
13
|
-
`+a[s].replace(" at new "," at ");return e.displayName&&v.includes("<anonymous>")&&(v=v.replace("<anonymous>",e.displayName)),typeof e=="function"&&S.set(e,v),v}while(s>=1&&l>=0);break}}}finally{W=!1,A.current=u,De(),Error.prepareStackTrace=o}var E=e?e.displayName||e.name:"",be=E?P(E):"";return typeof e=="function"&&S.set(e,be),be}function Ae(e,r,t){return ne(e,!1)}function Ie(e){var r=e.prototype;return!!(r&&r.isReactComponent)}function O(e,r,t){if(e==null)return"";if(typeof e=="function")return ne(e,Ie(e));if(typeof e=="string")return P(e);switch(e){case k:return P("Suspense");case D:return P("SuspenseList")}if(typeof e=="object")switch(e.$$typeof){case T:return Ae(e.render);case C:return O(e.type,r,t);case F:{var n=e,o=n._payload,u=n._init;try{return O(u(o),r,t)}catch{}}}return""}var w=Object.prototype.hasOwnProperty,ae={},ie=b.ReactDebugCurrentFrame;function j(e){if(e){var r=e._owner,t=O(e.type,e._source,r?r.type:null);ie.setExtraStackFrame(t)}else ie.setExtraStackFrame(null)}function We(e,r,t,n,o){{var u=Function.call.bind(w);for(var i in e)if(u(e,i)){var a=void 0;try{if(typeof e[i]!="function"){var c=Error((n||"React class")+": "+t+" type `"+i+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[i]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw c.name="Invariant Violation",c}a=e[i](r,i,n,t,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(s){a=s}a&&!(a instanceof Error)&&(j(o),f("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",n||"React class",t,i,typeof a),j(null)),a instanceof Error&&!(a.message in ae)&&(ae[a.message]=!0,j(o),f("Failed %s type: %s",t,a.message),j(null))}}}var $e=Array.isArray;function $(e){return $e(e)}function Ye(e){{var r=typeof Symbol=="function"&&Symbol.toStringTag,t=r&&e[Symbol.toStringTag]||e.constructor.name||"Object";return t}}function Me(e){try{return oe(e),!1}catch{return!0}}function oe(e){return""+e}function ue(e){if(Me(e))return f("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",Ye(e)),oe(e)}var _=b.ReactCurrentOwner,Ve={key:!0,ref:!0,__self:!0,__source:!0},se,le,Y;Y={};function Le(e){if(w.call(e,"ref")){var r=Object.getOwnPropertyDescriptor(e,"ref").get;if(r&&r.isReactWarning)return!1}return e.ref!==void 0}function Ue(e){if(w.call(e,"key")){var r=Object.getOwnPropertyDescriptor(e,"key").get;if(r&&r.isReactWarning)return!1}return e.key!==void 0}function Ne(e,r){if(typeof e.ref=="string"&&_.current&&r&&_.current.stateNode!==r){var t=d(_.current.type);Y[t]||(f('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',d(_.current.type),e.ref),Y[t]=!0)}}function qe(e,r){{var t=function(){se||(se=!0,f("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",r))};t.isReactWarning=!0,Object.defineProperty(e,"key",{get:t,configurable:!0})}}function Be(e,r){{var t=function(){le||(le=!0,f("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",r))};t.isReactWarning=!0,Object.defineProperty(e,"ref",{get:t,configurable:!0})}}var Ge=function(e,r,t,n,o,u,i){var a={$$typeof:x,type:e,key:r,ref:t,props:i,_owner:u};return a._store={},Object.defineProperty(a._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(a,"_self",{configurable:!1,enumerable:!1,writable:!1,value:n}),Object.defineProperty(a,"_source",{configurable:!1,enumerable:!1,writable:!1,value:o}),Object.freeze&&(Object.freeze(a.props),Object.freeze(a)),a};function ze(e,r,t,n,o){{var u,i={},a=null,c=null;t!==void 0&&(ue(t),a=""+t),Ue(r)&&(ue(r.key),a=""+r.key),Le(r)&&(c=r.ref,Ne(r,o));for(u in r)w.call(r,u)&&!Ve.hasOwnProperty(u)&&(i[u]=r[u]);if(e&&e.defaultProps){var s=e.defaultProps;for(u in s)i[u]===void 0&&(i[u]=s[u])}if(a||c){var l=typeof e=="function"?e.displayName||e.name||"Unknown":e;a&&qe(i,l),c&&Be(i,l)}return Ge(e,a,c,o,n,_.current,i)}}var M=b.ReactCurrentOwner,fe=b.ReactDebugCurrentFrame;function h(e){if(e){var r=e._owner,t=O(e.type,e._source,r?r.type:null);fe.setExtraStackFrame(t)}else fe.setExtraStackFrame(null)}var V;V=!1;function L(e){return typeof e=="object"&&e!==null&&e.$$typeof===x}function ce(){{if(M.current){var e=d(M.current.type);if(e)return`
|
|
14
|
-
|
|
15
|
-
Check the render method of \``+e+"`."}return""}}function Je(e){{if(e!==void 0){var r=e.fileName.replace(/^.*[\\\/]/,""),t=e.lineNumber;return`
|
|
16
|
-
|
|
17
|
-
Check your code at `+r+":"+t+"."}return""}}var ve={};function Ke(e){{var r=ce();if(!r){var t=typeof e=="string"?e:e.displayName||e.name;t&&(r=`
|
|
18
|
-
|
|
19
|
-
Check the top-level render call using <`+t+">.")}return r}}function de(e,r){{if(!e._store||e._store.validated||e.key!=null)return;e._store.validated=!0;var t=Ke(r);if(ve[t])return;ve[t]=!0;var n="";e&&e._owner&&e._owner!==M.current&&(n=" It was passed a child from "+d(e._owner.type)+"."),h(e),f('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',t,n),h(null)}}function pe(e,r){{if(typeof e!="object")return;if($(e))for(var t=0;t<e.length;t++){var n=e[t];L(n)&&de(n,r)}else if(L(e))e._store&&(e._store.validated=!0);else if(e){var o=me(e);if(typeof o=="function"&&o!==e.entries)for(var u=o.call(e),i;!(i=u.next()).done;)L(i.value)&&de(i.value,r)}}}function He(e){{var r=e.type;if(r==null||typeof r=="string")return;var t;if(typeof r=="function")t=r.propTypes;else if(typeof r=="object"&&(r.$$typeof===T||r.$$typeof===C))t=r.propTypes;else return;if(t){var n=d(r);We(t,e.props,"prop",n,e)}else if(r.PropTypes!==void 0&&!V){V=!0;var o=d(r);f("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",o||"Unknown")}typeof r.getDefaultProps=="function"&&!r.getDefaultProps.isReactClassApproved&&f("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function Xe(e){{for(var r=Object.keys(e.props),t=0;t<r.length;t++){var n=r[t];if(n!=="children"&&n!=="key"){h(e),f("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",n),h(null);break}}e.ref!==null&&(h(e),f("Invalid attribute `ref` supplied to `React.Fragment`."),h(null))}}function ge(e,r,t,n,o,u){{var i=je(e);if(!i){var a="";(e===void 0||typeof e=="object"&&e!==null&&Object.keys(e).length===0)&&(a+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var c=Je(o);c?a+=c:a+=ce();var s;e===null?s="null":$(e)?s="array":e!==void 0&&e.$$typeof===x?(s="<"+(d(e.type)||"Unknown")+" />",a=" Did you accidentally export a JSX literal instead of a component?"):s=typeof e,f("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",s,a)}var l=ze(e,r,t,o,u);if(l==null)return l;if(i){var v=r.children;if(v!==void 0)if(n)if($(v)){for(var E=0;E<v.length;E++)pe(v[E],e);Object.freeze&&Object.freeze(v)}else f("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else pe(v,e)}return e===m?Xe(l):He(l),l}}function Ze(e,r,t){return ge(e,r,t,!0)}function Qe(e,r,t){return ge(e,r,t,!1)}var er=Qe,rr=Ze;R.__exports.Fragment=m,R.__exports.jsx=er,R.__exports.jsxs=rr}()),R.__exports}exports.__require=nr;
|
|
9
|
+
*/var p;function a(){if(p)return t.__exports;p=1;var f=R,c=Symbol.for("react.element"),l=Symbol.for("react.fragment"),d=Object.prototype.hasOwnProperty,m=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,y={key:!0,ref:!0,__self:!0,__source:!0};function i(o,e,u){var r,n={},_=null,s=null;u!==void 0&&(_=""+u),e.key!==void 0&&(_=""+e.key),e.ref!==void 0&&(s=e.ref);for(r in e)d.call(e,r)&&!y.hasOwnProperty(r)&&(n[r]=e[r]);if(o&&o.defaultProps)for(r in e=o.defaultProps,e)n[r]===void 0&&(n[r]=e[r]);return{$$typeof:c,type:o,key:_,ref:s,props:n,_owner:m.current}}return t.__exports.Fragment=l,t.__exports.jsx=i,t.__exports.jsxs=i,t.__exports}exports.__require=a;
|
|
20
10
|
//# sourceMappingURL=index.cjs13.js.map
|