katalyst-riya-test 0.0.34 → 0.0.66
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.cjs +25 -25
- package/dist/index.css +118 -142
- package/dist/index.js +25 -25
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -124,7 +124,7 @@ function AccordionItem({
|
|
|
124
124
|
{
|
|
125
125
|
className: cn(
|
|
126
126
|
"rounded-lg mb-3 shadow-cardShadow dark:shadow-none border dark:border-gray-900",
|
|
127
|
-
isOpen ? "border-
|
|
127
|
+
isOpen ? "border-primary-500 shadow-cardShadowActive dark:bg-gray-900" : "hover:border-gray-500 hover:bg-gray-100 hover:dark:bg-transparent hover:dark:border-gray-600",
|
|
128
128
|
disabled ? "opacity-50 cursor-not-allowed" : "cursor-pointer"
|
|
129
129
|
)
|
|
130
130
|
},
|
|
@@ -342,7 +342,7 @@ var Checkbox = (0, import_react7.forwardRef)(
|
|
|
342
342
|
"div",
|
|
343
343
|
{
|
|
344
344
|
className: cn(
|
|
345
|
-
"group inline-flex relative items-center rounded-full border-2 border-transparent hover:border-
|
|
345
|
+
"group inline-flex relative items-center rounded-full border-2 border-transparent hover:border-primary-300",
|
|
346
346
|
disabled && "border-none"
|
|
347
347
|
)
|
|
348
348
|
},
|
|
@@ -356,7 +356,7 @@ var Checkbox = (0, import_react7.forwardRef)(
|
|
|
356
356
|
readOnly,
|
|
357
357
|
checked,
|
|
358
358
|
className: cn(
|
|
359
|
-
"peer relative h-5 w-5 cursor-pointer appearance-none rounded-full border-2 border-gray-300 transition-all checked:border-
|
|
359
|
+
"peer relative h-5 w-5 cursor-pointer appearance-none rounded-full border-2 border-gray-300 transition-all checked:border-primary-500 hover:border-primary-500 hover:bg-primary-25/25 disabled:opacity-30 disabled:pointer-events-none disabled:border-gray-400",
|
|
360
360
|
className
|
|
361
361
|
)
|
|
362
362
|
}
|
|
@@ -365,7 +365,7 @@ var Checkbox = (0, import_react7.forwardRef)(
|
|
|
365
365
|
"span",
|
|
366
366
|
{
|
|
367
367
|
className: cn(
|
|
368
|
-
"absolute text-
|
|
368
|
+
"absolute text-primary-600 transition-opacity opacity-0 pointer-events-none top-2/4 left-2/4 -translate-y-2/4 -translate-x-2/4 peer-checked:opacity-100",
|
|
369
369
|
disabled && "text-gray-300"
|
|
370
370
|
)
|
|
371
371
|
},
|
|
@@ -402,9 +402,9 @@ var import_class_variance_authority5 = require("class-variance-authority");
|
|
|
402
402
|
var chipVariants = (0, import_class_variance_authority5.cva)("", {
|
|
403
403
|
variants: {
|
|
404
404
|
variant: {
|
|
405
|
-
primary: "bg-white text-
|
|
406
|
-
secondary: "bg-
|
|
407
|
-
glass: "text-
|
|
405
|
+
primary: "bg-white text-primary-500 hover:text-white hover:bg-gradient-to-r hover:from-primary-500 hover:to-[#264D8E]",
|
|
406
|
+
secondary: "bg-primary-500 text-white hover:text-white hover:bg-gradient-to-r hover:from-primary-500 hover:to-[#285092]",
|
|
407
|
+
glass: "text-primary-500"
|
|
408
408
|
},
|
|
409
409
|
size: {
|
|
410
410
|
sm: "text-sm py-1 px-3",
|
|
@@ -432,10 +432,10 @@ var Chip = ({
|
|
|
432
432
|
className: cn(
|
|
433
433
|
"rounded-radius-xl bg-gradient-to-r w-fit",
|
|
434
434
|
{
|
|
435
|
-
solid: "from-
|
|
436
|
-
primary: "from-
|
|
437
|
-
secondary: "from-
|
|
438
|
-
glass: "border border-
|
|
435
|
+
solid: "from-primary-200 to-primary-500",
|
|
436
|
+
primary: "from-primary-200 to-primary-500",
|
|
437
|
+
secondary: "from-primary-200 to-primary-500",
|
|
438
|
+
glass: "border border-primary-500"
|
|
439
439
|
}[variant || "primary"],
|
|
440
440
|
"p-[1px]"
|
|
441
441
|
)
|
|
@@ -543,12 +543,12 @@ function Footer({
|
|
|
543
543
|
"footer",
|
|
544
544
|
{
|
|
545
545
|
className: cn(
|
|
546
|
-
"bg-gradient-to-b from-gray-25 to-
|
|
546
|
+
"bg-gradient-to-b from-gray-25 to-primary-100 dark:from-primary-900 dark:to-dark",
|
|
547
547
|
className
|
|
548
548
|
)
|
|
549
549
|
},
|
|
550
550
|
children,
|
|
551
|
-
footerBottom && /* @__PURE__ */ import_react10.default.createElement("section", { className: "border-t border-
|
|
551
|
+
footerBottom && /* @__PURE__ */ import_react10.default.createElement("section", { className: "border-t border-primary-500 dark:border-primary-800 text-center py-spacing-md" }, footerBottom)
|
|
552
552
|
);
|
|
553
553
|
}
|
|
554
554
|
var FooterHeader = ({ children, className }) => {
|
|
@@ -590,20 +590,20 @@ var FooterList = ({ footerItems, target }) => {
|
|
|
590
590
|
Paragraph_default,
|
|
591
591
|
{
|
|
592
592
|
variant: "b3",
|
|
593
|
-
className: "dark:text-gray-300 hover:text-
|
|
593
|
+
className: "dark:text-gray-300 hover:text-primary-400 dark:hover:text-primary-600 text-gray-900"
|
|
594
594
|
},
|
|
595
595
|
data2?.text
|
|
596
596
|
)))))))
|
|
597
597
|
);
|
|
598
598
|
};
|
|
599
599
|
var FooterIcons = ({ icons }) => {
|
|
600
|
-
return /* @__PURE__ */ import_react10.default.createElement("div", { className: "flex flex-wrap justify-center items-center gap-5 text-
|
|
600
|
+
return /* @__PURE__ */ import_react10.default.createElement("div", { className: "flex flex-wrap justify-center items-center gap-5 text-primary-700 dark:text-primary-200" }, icons.map((icon, index) => /* @__PURE__ */ import_react10.default.createElement(
|
|
601
601
|
import_link.default,
|
|
602
602
|
{
|
|
603
603
|
href: icon.link,
|
|
604
604
|
key: index,
|
|
605
605
|
target: "_blank",
|
|
606
|
-
className: "hover:bg-
|
|
606
|
+
className: "hover:bg-primary-100 dark:hover:bg-primary-800 p-1 rounded-radius-sm"
|
|
607
607
|
},
|
|
608
608
|
icon.icon
|
|
609
609
|
)));
|
|
@@ -623,7 +623,7 @@ var ImageCard = ({
|
|
|
623
623
|
"div",
|
|
624
624
|
{
|
|
625
625
|
className: cn(
|
|
626
|
-
"transition-all duration-300 ease-in-out hover:ring-1 hover:ring-
|
|
626
|
+
"transition-all duration-300 ease-in-out hover:ring-1 hover:ring-brand-500 relative rounded-radius-xl overflow-hidden block z-10 bg-cover bg-no-repeat bg-center",
|
|
627
627
|
className
|
|
628
628
|
),
|
|
629
629
|
style: {
|
|
@@ -644,7 +644,7 @@ var inputVariants = (0, import_class_variance_authority6.cva)(
|
|
|
644
644
|
{
|
|
645
645
|
variants: {
|
|
646
646
|
variant: {
|
|
647
|
-
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:has-[:disabled]:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-
|
|
647
|
+
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:has-[:disabled]:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-primary-100 focus-within:hover:bg-primary-50 has-[:disabled]:bg-gray-25 has-[:disabled]:border-gray-400",
|
|
648
648
|
glass: "backdrop-blur-[3.5px] bg-light/10 dark:bg-dark/20 dark:border-gray-800 border-gray-200/50 text-light"
|
|
649
649
|
}
|
|
650
650
|
},
|
|
@@ -719,7 +719,7 @@ var ListItem = import_react14.default.forwardRef(
|
|
|
719
719
|
({ className, title, href, onClick, as = "link", variant = "solid", icon }, ref) => {
|
|
720
720
|
const pathname = (0, import_navigation.usePathname)();
|
|
721
721
|
const isActive = as === "link" && href === pathname;
|
|
722
|
-
const variantClasses = variant === "solid" ? "rounded-radius-lg hover:bg-
|
|
722
|
+
const variantClasses = variant === "solid" ? "rounded-radius-lg hover:bg-primary-50 text-dark group border border-transparent hover:border-primary-200 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:text-white leading-none no-underline outline-none transition-colors" : variant === "glass" ? "rounded-radius-lg group border border-transparent hover:border-primary-200 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:text-white leading-none no-underline outline-none transition-colors" : "";
|
|
723
723
|
if (as === "button") {
|
|
724
724
|
return /* @__PURE__ */ import_react14.default.createElement(
|
|
725
725
|
"button",
|
|
@@ -739,7 +739,7 @@ var ListItem = import_react14.default.forwardRef(
|
|
|
739
739
|
passHref: true,
|
|
740
740
|
className: cn(
|
|
741
741
|
"px-4 py-[8px] font-karla w-full flex items-center gap-2 group",
|
|
742
|
-
isActive ? "bg-
|
|
742
|
+
isActive ? "bg-primary-400 text-white border border-primary-200" : variantClasses,
|
|
743
743
|
className
|
|
744
744
|
),
|
|
745
745
|
ref
|
|
@@ -778,7 +778,7 @@ var Slider = (0, import_react15.forwardRef)(
|
|
|
778
778
|
size === "sm" ? "h-1.5" : "h-4"
|
|
779
779
|
),
|
|
780
780
|
style: {
|
|
781
|
-
background: `linear-gradient(to right,
|
|
781
|
+
background: `linear-gradient(to right, var(--primary-500) ${progress}%, #d1d5db ${progress}%)`
|
|
782
782
|
}
|
|
783
783
|
}
|
|
784
784
|
));
|
|
@@ -799,12 +799,12 @@ var StatsCard = ({
|
|
|
799
799
|
Card,
|
|
800
800
|
{
|
|
801
801
|
className: cn(
|
|
802
|
-
"border border-[#eee] hover:border-
|
|
802
|
+
"border border-[#eee] hover:border-primary-500 rounded-radius-xl bg-[#FFFFFFE5] bg-gradient-to-b bg-[#fff] hover:from-[#8EB6F8D9] hover:to-[#356AC3D9] dark:from-[#252525D9] dark:to-[#070707D9] dark:hover:from-[#1A3562D9] dark:hover:to-[#070707D9] backdrop-blur-sm px-[32px] py-[64px] group",
|
|
803
803
|
className
|
|
804
804
|
)
|
|
805
805
|
},
|
|
806
806
|
/* @__PURE__ */ import_react16.default.createElement("span", { className: "group-hover:text-white text-dark dark:text-white" }, cardIcon),
|
|
807
|
-
/* @__PURE__ */ import_react16.default.createElement(CardTitle, { className: "group-hover:text-white text-[48px] font-bold text-
|
|
807
|
+
/* @__PURE__ */ import_react16.default.createElement(CardTitle, { className: "group-hover:text-white text-[48px] font-bold text-primary-500 dark:text-white my-4" }, statTitle),
|
|
808
808
|
/* @__PURE__ */ import_react16.default.createElement(CardDescription, { className: "group-hover:text-white text-[24px] hover:text-white text-dark leading-[25px]" }, statDesc)
|
|
809
809
|
);
|
|
810
810
|
};
|
|
@@ -818,7 +818,7 @@ var textareaVariants = (0, import_class_variance_authority8.cva)(
|
|
|
818
818
|
{
|
|
819
819
|
variants: {
|
|
820
820
|
variant: {
|
|
821
|
-
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:disabled:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-
|
|
821
|
+
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:disabled:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-primary-100 focus-within:hover:bg-primary-50 disabled:bg-gray-25 disabled:border-gray-400",
|
|
822
822
|
glass: "backdrop-blur-[3.5px] bg-light/10 dark:bg-dark/20 dark:border-gray-800 border-gray-200/50 text-light"
|
|
823
823
|
}
|
|
824
824
|
},
|
|
@@ -850,7 +850,7 @@ var Textarea_default = Textarea;
|
|
|
850
850
|
var import_class_variance_authority9 = require("class-variance-authority");
|
|
851
851
|
var import_react18 = __toESM(require("react"), 1);
|
|
852
852
|
var toggleVariants = (0, import_class_variance_authority9.cva)(
|
|
853
|
-
"rounded-radius-xl bg-gray-300 transition-colors peer-checked:bg-
|
|
853
|
+
"rounded-radius-xl bg-gray-300 transition-colors peer-checked:bg-primary-500 peer-active:ring-2 peer-active:ring-primary-300",
|
|
854
854
|
{
|
|
855
855
|
variants: {
|
|
856
856
|
size: {
|
package/dist/index.css
CHANGED
|
@@ -325,6 +325,25 @@ video {
|
|
|
325
325
|
[hidden]:where(:not([hidden=until-found])) {
|
|
326
326
|
display: none;
|
|
327
327
|
}
|
|
328
|
+
:root {
|
|
329
|
+
.theme-brand {
|
|
330
|
+
--primary-25: #f5faff;
|
|
331
|
+
--primary-50: #ECF3FE;
|
|
332
|
+
--primary-100: #D9E7FD;
|
|
333
|
+
--primary-200: #B3CEFB;
|
|
334
|
+
--primary-300: #8EB6F8;
|
|
335
|
+
--primary-400: #689DF6;
|
|
336
|
+
--primary-500: #4285F4;
|
|
337
|
+
--primary-600: #356AC3;
|
|
338
|
+
--primary-700: #285092;
|
|
339
|
+
--primary-800: #1A3562;
|
|
340
|
+
--primary-900: #0D1B31;
|
|
341
|
+
}
|
|
342
|
+
.rdp {
|
|
343
|
+
--rdp-cell-size: 28px;
|
|
344
|
+
--rdp-caption-font-size: 15px;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
328
347
|
.sr-only {
|
|
329
348
|
position: absolute;
|
|
330
349
|
width: 1px;
|
|
@@ -778,14 +797,6 @@ video {
|
|
|
778
797
|
--tw-border-opacity: 1;
|
|
779
798
|
border-color: rgb(238 238 238 / var(--tw-border-opacity));
|
|
780
799
|
}
|
|
781
|
-
.border-brand-200 {
|
|
782
|
-
--tw-border-opacity: 1;
|
|
783
|
-
border-color: rgb(179 206 251 / var(--tw-border-opacity));
|
|
784
|
-
}
|
|
785
|
-
.border-brand-500 {
|
|
786
|
-
--tw-border-opacity: 1;
|
|
787
|
-
border-color: rgb(66 133 244 / var(--tw-border-opacity));
|
|
788
|
-
}
|
|
789
800
|
.border-gray-200 {
|
|
790
801
|
--tw-border-opacity: 1;
|
|
791
802
|
border-color: rgb(242 242 242 / var(--tw-border-opacity));
|
|
@@ -800,6 +811,12 @@ video {
|
|
|
800
811
|
--tw-border-opacity: 1;
|
|
801
812
|
border-color: rgb(228 228 228 / var(--tw-border-opacity));
|
|
802
813
|
}
|
|
814
|
+
.border-primary-200 {
|
|
815
|
+
border-color: var(--primary-200);
|
|
816
|
+
}
|
|
817
|
+
.border-primary-500 {
|
|
818
|
+
border-color: var(--primary-500);
|
|
819
|
+
}
|
|
803
820
|
.border-transparent {
|
|
804
821
|
border-color: transparent;
|
|
805
822
|
}
|
|
@@ -821,22 +838,6 @@ video {
|
|
|
821
838
|
--tw-bg-opacity: 1;
|
|
822
839
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity));
|
|
823
840
|
}
|
|
824
|
-
.bg-brand-100 {
|
|
825
|
-
--tw-bg-opacity: 1;
|
|
826
|
-
background-color: rgb(217 231 253 / var(--tw-bg-opacity));
|
|
827
|
-
}
|
|
828
|
-
.bg-brand-300 {
|
|
829
|
-
--tw-bg-opacity: 1;
|
|
830
|
-
background-color: rgb(142 182 248 / var(--tw-bg-opacity));
|
|
831
|
-
}
|
|
832
|
-
.bg-brand-400 {
|
|
833
|
-
--tw-bg-opacity: 1;
|
|
834
|
-
background-color: rgb(104 157 246 / var(--tw-bg-opacity));
|
|
835
|
-
}
|
|
836
|
-
.bg-brand-500 {
|
|
837
|
-
--tw-bg-opacity: 1;
|
|
838
|
-
background-color: rgb(66 133 244 / var(--tw-bg-opacity));
|
|
839
|
-
}
|
|
840
841
|
.bg-gray-100 {
|
|
841
842
|
--tw-bg-opacity: 1;
|
|
842
843
|
background-color: rgb(248 248 248 / var(--tw-bg-opacity));
|
|
@@ -859,6 +860,15 @@ video {
|
|
|
859
860
|
.bg-light\/10 {
|
|
860
861
|
background-color: rgb(255 255 255 / 0.1);
|
|
861
862
|
}
|
|
863
|
+
.bg-primary-100 {
|
|
864
|
+
background-color: var(--primary-100);
|
|
865
|
+
}
|
|
866
|
+
.bg-primary-300 {
|
|
867
|
+
background-color: var(--primary-300);
|
|
868
|
+
}
|
|
869
|
+
.bg-primary-400 {
|
|
870
|
+
background-color: var(--primary-400);
|
|
871
|
+
}
|
|
862
872
|
.bg-primary-50 {
|
|
863
873
|
background-color: var(--primary-50);
|
|
864
874
|
}
|
|
@@ -885,16 +895,6 @@ video {
|
|
|
885
895
|
.bg-none {
|
|
886
896
|
background-image: none;
|
|
887
897
|
}
|
|
888
|
-
.from-brand-200 {
|
|
889
|
-
--tw-gradient-from: #B3CEFB var(--tw-gradient-from-position);
|
|
890
|
-
--tw-gradient-to: rgb(179 206 251 / 0) var(--tw-gradient-to-position);
|
|
891
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
892
|
-
}
|
|
893
|
-
.from-brand-700 {
|
|
894
|
-
--tw-gradient-from: #285092 var(--tw-gradient-from-position);
|
|
895
|
-
--tw-gradient-to: rgb(40 80 146 / 0) var(--tw-gradient-to-position);
|
|
896
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
897
|
-
}
|
|
898
898
|
.from-gray-25 {
|
|
899
899
|
--tw-gradient-from: #fff var(--tw-gradient-from-position);
|
|
900
900
|
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
@@ -905,6 +905,16 @@ video {
|
|
|
905
905
|
--tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
|
|
906
906
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
907
907
|
}
|
|
908
|
+
.from-primary-200 {
|
|
909
|
+
--tw-gradient-from: var(--primary-200) var(--tw-gradient-from-position);
|
|
910
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
911
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
912
|
+
}
|
|
913
|
+
.from-primary-700 {
|
|
914
|
+
--tw-gradient-from: var(--primary-700) var(--tw-gradient-from-position);
|
|
915
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
916
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
917
|
+
}
|
|
908
918
|
.from-transparent {
|
|
909
919
|
--tw-gradient-from: transparent var(--tw-gradient-from-position);
|
|
910
920
|
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
@@ -923,14 +933,14 @@ video {
|
|
|
923
933
|
.to-black {
|
|
924
934
|
--tw-gradient-to: #000 var(--tw-gradient-to-position);
|
|
925
935
|
}
|
|
926
|
-
.to-
|
|
927
|
-
--tw-gradient-to:
|
|
936
|
+
.to-primary-100 {
|
|
937
|
+
--tw-gradient-to: var(--primary-100) var(--tw-gradient-to-position);
|
|
928
938
|
}
|
|
929
|
-
.to-
|
|
930
|
-
--tw-gradient-to:
|
|
939
|
+
.to-primary-500 {
|
|
940
|
+
--tw-gradient-to: var(--primary-500) var(--tw-gradient-to-position);
|
|
931
941
|
}
|
|
932
|
-
.to-
|
|
933
|
-
--tw-gradient-to:
|
|
942
|
+
.to-primary-900 {
|
|
943
|
+
--tw-gradient-to: var(--primary-900) var(--tw-gradient-to-position);
|
|
934
944
|
}
|
|
935
945
|
.to-\[93\.83\%\] {
|
|
936
946
|
--tw-gradient-to-position: 93.83%;
|
|
@@ -1168,22 +1178,6 @@ video {
|
|
|
1168
1178
|
--tw-text-opacity: 1;
|
|
1169
1179
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
1170
1180
|
}
|
|
1171
|
-
.text-brand-400 {
|
|
1172
|
-
--tw-text-opacity: 1;
|
|
1173
|
-
color: rgb(104 157 246 / var(--tw-text-opacity));
|
|
1174
|
-
}
|
|
1175
|
-
.text-brand-500 {
|
|
1176
|
-
--tw-text-opacity: 1;
|
|
1177
|
-
color: rgb(66 133 244 / var(--tw-text-opacity));
|
|
1178
|
-
}
|
|
1179
|
-
.text-brand-600 {
|
|
1180
|
-
--tw-text-opacity: 1;
|
|
1181
|
-
color: rgb(53 106 195 / var(--tw-text-opacity));
|
|
1182
|
-
}
|
|
1183
|
-
.text-brand-700 {
|
|
1184
|
-
--tw-text-opacity: 1;
|
|
1185
|
-
color: rgb(40 80 146 / var(--tw-text-opacity));
|
|
1186
|
-
}
|
|
1187
1181
|
.text-dark {
|
|
1188
1182
|
--tw-text-opacity: 1;
|
|
1189
1183
|
color: rgb(7 7 7 / var(--tw-text-opacity));
|
|
@@ -1216,9 +1210,18 @@ video {
|
|
|
1216
1210
|
--tw-text-opacity: 1;
|
|
1217
1211
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1218
1212
|
}
|
|
1213
|
+
.text-primary-400 {
|
|
1214
|
+
color: var(--primary-400);
|
|
1215
|
+
}
|
|
1216
|
+
.text-primary-500 {
|
|
1217
|
+
color: var(--primary-500);
|
|
1218
|
+
}
|
|
1219
1219
|
.text-primary-600 {
|
|
1220
1220
|
color: var(--primary-600);
|
|
1221
1221
|
}
|
|
1222
|
+
.text-primary-700 {
|
|
1223
|
+
color: var(--primary-700);
|
|
1224
|
+
}
|
|
1222
1225
|
.text-primary-800 {
|
|
1223
1226
|
color: var(--primary-800);
|
|
1224
1227
|
}
|
|
@@ -1336,9 +1339,6 @@ video {
|
|
|
1336
1339
|
.ease-in-out {
|
|
1337
1340
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1338
1341
|
}
|
|
1339
|
-
.test {
|
|
1340
|
-
border: 1px solid red;
|
|
1341
|
-
}
|
|
1342
1342
|
.gradientOne {
|
|
1343
1343
|
background:
|
|
1344
1344
|
linear-gradient(
|
|
@@ -1388,21 +1388,21 @@ video {
|
|
|
1388
1388
|
appearance: none;
|
|
1389
1389
|
width: 36px;
|
|
1390
1390
|
height: 24px;
|
|
1391
|
-
background-color:
|
|
1391
|
+
background-color: var(--primary-500);
|
|
1392
1392
|
border-radius: 9999px;
|
|
1393
1393
|
cursor: pointer;
|
|
1394
1394
|
}
|
|
1395
1395
|
.slider::-webkit-slider-thumb:hover {
|
|
1396
|
-
background-color:
|
|
1396
|
+
background-color: var(--primary-700);
|
|
1397
1397
|
}
|
|
1398
1398
|
.slider::-webkit-slider-thumb:active {
|
|
1399
|
-
background-color:
|
|
1400
|
-
outline: 3px solid
|
|
1399
|
+
background-color: var(--primary-500);
|
|
1400
|
+
outline: 3px solid var(--primary-200);
|
|
1401
1401
|
box-shadow: 0px 4px 4.7px 0px #0000002e;
|
|
1402
1402
|
}
|
|
1403
1403
|
.slider::-moz-range-thumb {
|
|
1404
1404
|
width: 50px;
|
|
1405
|
-
outline: 3px solid
|
|
1405
|
+
outline: 3px solid var(--primary-200);
|
|
1406
1406
|
height: 50px;
|
|
1407
1407
|
background-color: #000;
|
|
1408
1408
|
border-radius: 0;
|
|
@@ -1411,9 +1411,8 @@ video {
|
|
|
1411
1411
|
.last\:border-none:last-child {
|
|
1412
1412
|
border-style: none;
|
|
1413
1413
|
}
|
|
1414
|
-
.checked\:border-
|
|
1415
|
-
|
|
1416
|
-
border-color: rgb(66 133 244 / var(--tw-border-opacity));
|
|
1414
|
+
.checked\:border-primary-500:checked {
|
|
1415
|
+
border-color: var(--primary-500);
|
|
1417
1416
|
}
|
|
1418
1417
|
.focus-within\:border-gray-400:focus-within {
|
|
1419
1418
|
--tw-border-opacity: 1;
|
|
@@ -1430,22 +1429,6 @@ video {
|
|
|
1430
1429
|
.hover\:border-2:hover {
|
|
1431
1430
|
border-width: 2px;
|
|
1432
1431
|
}
|
|
1433
|
-
.hover\:border-\[\#4285F4\]:hover {
|
|
1434
|
-
--tw-border-opacity: 1;
|
|
1435
|
-
border-color: rgb(66 133 244 / var(--tw-border-opacity));
|
|
1436
|
-
}
|
|
1437
|
-
.hover\:border-brand-200:hover {
|
|
1438
|
-
--tw-border-opacity: 1;
|
|
1439
|
-
border-color: rgb(179 206 251 / var(--tw-border-opacity));
|
|
1440
|
-
}
|
|
1441
|
-
.hover\:border-brand-300:hover {
|
|
1442
|
-
--tw-border-opacity: 1;
|
|
1443
|
-
border-color: rgb(142 182 248 / var(--tw-border-opacity));
|
|
1444
|
-
}
|
|
1445
|
-
.hover\:border-brand-500:hover {
|
|
1446
|
-
--tw-border-opacity: 1;
|
|
1447
|
-
border-color: rgb(66 133 244 / var(--tw-border-opacity));
|
|
1448
|
-
}
|
|
1449
1432
|
.hover\:border-gray-300:hover {
|
|
1450
1433
|
--tw-border-opacity: 1;
|
|
1451
1434
|
border-color: rgb(228 228 228 / var(--tw-border-opacity));
|
|
@@ -1454,6 +1437,15 @@ video {
|
|
|
1454
1437
|
--tw-border-opacity: 1;
|
|
1455
1438
|
border-color: rgb(162 162 162 / var(--tw-border-opacity));
|
|
1456
1439
|
}
|
|
1440
|
+
.hover\:border-primary-200:hover {
|
|
1441
|
+
border-color: var(--primary-200);
|
|
1442
|
+
}
|
|
1443
|
+
.hover\:border-primary-300:hover {
|
|
1444
|
+
border-color: var(--primary-300);
|
|
1445
|
+
}
|
|
1446
|
+
.hover\:border-primary-500:hover {
|
|
1447
|
+
border-color: var(--primary-500);
|
|
1448
|
+
}
|
|
1457
1449
|
.hover\:bg-blue-500:hover {
|
|
1458
1450
|
--tw-bg-opacity: 1;
|
|
1459
1451
|
background-color: rgb(59 130 246 / var(--tw-bg-opacity));
|
|
@@ -1462,17 +1454,6 @@ video {
|
|
|
1462
1454
|
--tw-bg-opacity: 1;
|
|
1463
1455
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity));
|
|
1464
1456
|
}
|
|
1465
|
-
.hover\:bg-brand-100:hover {
|
|
1466
|
-
--tw-bg-opacity: 1;
|
|
1467
|
-
background-color: rgb(217 231 253 / var(--tw-bg-opacity));
|
|
1468
|
-
}
|
|
1469
|
-
.hover\:bg-brand-25\/25:hover {
|
|
1470
|
-
background-color: rgb(245 250 255 / 0.25);
|
|
1471
|
-
}
|
|
1472
|
-
.hover\:bg-brand-50:hover {
|
|
1473
|
-
--tw-bg-opacity: 1;
|
|
1474
|
-
background-color: rgb(236 243 254 / var(--tw-bg-opacity));
|
|
1475
|
-
}
|
|
1476
1457
|
.hover\:bg-gray-100:hover {
|
|
1477
1458
|
--tw-bg-opacity: 1;
|
|
1478
1459
|
background-color: rgb(248 248 248 / var(--tw-bg-opacity));
|
|
@@ -1492,9 +1473,15 @@ video {
|
|
|
1492
1473
|
--tw-bg-opacity: 1;
|
|
1493
1474
|
background-color: rgb(70 70 70 / var(--tw-bg-opacity));
|
|
1494
1475
|
}
|
|
1476
|
+
.hover\:bg-primary-100:hover {
|
|
1477
|
+
background-color: var(--primary-100);
|
|
1478
|
+
}
|
|
1495
1479
|
.hover\:bg-primary-200:hover {
|
|
1496
1480
|
background-color: var(--primary-200);
|
|
1497
1481
|
}
|
|
1482
|
+
.hover\:bg-primary-50:hover {
|
|
1483
|
+
background-color: var(--primary-50);
|
|
1484
|
+
}
|
|
1498
1485
|
.hover\:bg-primary-600:hover {
|
|
1499
1486
|
background-color: var(--primary-600);
|
|
1500
1487
|
}
|
|
@@ -1514,9 +1501,9 @@ video {
|
|
|
1514
1501
|
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
1515
1502
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1516
1503
|
}
|
|
1517
|
-
.hover\:from-
|
|
1518
|
-
--tw-gradient-from:
|
|
1519
|
-
--tw-gradient-to: rgb(
|
|
1504
|
+
.hover\:from-primary-500:hover {
|
|
1505
|
+
--tw-gradient-from: var(--primary-500) var(--tw-gradient-from-position);
|
|
1506
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
1520
1507
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1521
1508
|
}
|
|
1522
1509
|
.hover\:via-black\/70:hover {
|
|
@@ -1538,14 +1525,13 @@ video {
|
|
|
1538
1525
|
.hover\:to-\[\#356AC3D9\]:hover {
|
|
1539
1526
|
--tw-gradient-to: #356AC3D9 var(--tw-gradient-to-position);
|
|
1540
1527
|
}
|
|
1541
|
-
.hover\:text-brand-400:hover {
|
|
1542
|
-
--tw-text-opacity: 1;
|
|
1543
|
-
color: rgb(104 157 246 / var(--tw-text-opacity));
|
|
1544
|
-
}
|
|
1545
1528
|
.hover\:text-gray-500:hover {
|
|
1546
1529
|
--tw-text-opacity: 1;
|
|
1547
1530
|
color: rgb(162 162 162 / var(--tw-text-opacity));
|
|
1548
1531
|
}
|
|
1532
|
+
.hover\:text-primary-400:hover {
|
|
1533
|
+
color: var(--primary-400);
|
|
1534
|
+
}
|
|
1549
1535
|
.hover\:text-white:hover {
|
|
1550
1536
|
--tw-text-opacity: 1;
|
|
1551
1537
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
@@ -1598,7 +1584,7 @@ video {
|
|
|
1598
1584
|
var(--tw-ring-shadow),
|
|
1599
1585
|
var(--tw-shadow, 0 0 #0000);
|
|
1600
1586
|
}
|
|
1601
|
-
.hover\:ring
|
|
1587
|
+
.hover\:ring-brand-500:hover {
|
|
1602
1588
|
--tw-ring-opacity: 1;
|
|
1603
1589
|
--tw-ring-color: rgb(66 133 244 / var(--tw-ring-opacity));
|
|
1604
1590
|
}
|
|
@@ -1607,13 +1593,11 @@ video {
|
|
|
1607
1593
|
-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);
|
|
1608
1594
|
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);
|
|
1609
1595
|
}
|
|
1610
|
-
.focus-within\:hover\:border-
|
|
1611
|
-
|
|
1612
|
-
border-color: rgb(217 231 253 / var(--tw-border-opacity));
|
|
1596
|
+
.focus-within\:hover\:border-primary-100:hover:focus-within {
|
|
1597
|
+
border-color: var(--primary-100);
|
|
1613
1598
|
}
|
|
1614
|
-
.focus-within\:hover\:bg-
|
|
1615
|
-
|
|
1616
|
-
background-color: rgb(236 243 254 / var(--tw-bg-opacity));
|
|
1599
|
+
.focus-within\:hover\:bg-primary-50:hover:focus-within {
|
|
1600
|
+
background-color: var(--primary-50);
|
|
1617
1601
|
}
|
|
1618
1602
|
.focus-within\:hover\:text-dark:hover:focus-within {
|
|
1619
1603
|
--tw-text-opacity: 1;
|
|
@@ -1635,9 +1619,8 @@ video {
|
|
|
1635
1619
|
var(--tw-ring-shadow),
|
|
1636
1620
|
var(--tw-shadow, 0 0 #0000);
|
|
1637
1621
|
}
|
|
1638
|
-
.focus\:ring-
|
|
1639
|
-
--tw-ring-
|
|
1640
|
-
--tw-ring-color: rgb(66 133 244 / var(--tw-ring-opacity));
|
|
1622
|
+
.focus\:ring-primary-500:focus {
|
|
1623
|
+
--tw-ring-color: var(--primary-500);
|
|
1641
1624
|
}
|
|
1642
1625
|
.active\:bg-gray-25:active {
|
|
1643
1626
|
--tw-bg-opacity: 1;
|
|
@@ -1717,9 +1700,8 @@ video {
|
|
|
1717
1700
|
--tw-translate-x: 0.75rem;
|
|
1718
1701
|
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));
|
|
1719
1702
|
}
|
|
1720
|
-
.peer:checked ~ .peer-checked\:bg-
|
|
1721
|
-
|
|
1722
|
-
background-color: rgb(66 133 244 / var(--tw-bg-opacity));
|
|
1703
|
+
.peer:checked ~ .peer-checked\:bg-primary-500 {
|
|
1704
|
+
background-color: var(--primary-500);
|
|
1723
1705
|
}
|
|
1724
1706
|
.peer:checked ~ .peer-checked\:opacity-100 {
|
|
1725
1707
|
opacity: 1;
|
|
@@ -1732,9 +1714,8 @@ video {
|
|
|
1732
1714
|
var(--tw-ring-shadow),
|
|
1733
1715
|
var(--tw-shadow, 0 0 #0000);
|
|
1734
1716
|
}
|
|
1735
|
-
.peer:active ~ .peer-active\:ring-
|
|
1736
|
-
--tw-ring-
|
|
1737
|
-
--tw-ring-color: rgb(142 182 248 / var(--tw-ring-opacity));
|
|
1717
|
+
.peer:active ~ .peer-active\:ring-primary-300 {
|
|
1718
|
+
--tw-ring-color: var(--primary-300);
|
|
1738
1719
|
}
|
|
1739
1720
|
.has-\[\:disabled\]\:pointer-events-none:has(:disabled) {
|
|
1740
1721
|
pointer-events: none;
|
|
@@ -1753,14 +1734,6 @@ video {
|
|
|
1753
1734
|
.has-\[\:disabled\]\:opacity-30:has(:disabled) {
|
|
1754
1735
|
opacity: 0.3;
|
|
1755
1736
|
}
|
|
1756
|
-
.dark\:border-brand-100:is(.dark *) {
|
|
1757
|
-
--tw-border-opacity: 1;
|
|
1758
|
-
border-color: rgb(217 231 253 / var(--tw-border-opacity));
|
|
1759
|
-
}
|
|
1760
|
-
.dark\:border-brand-800:is(.dark *) {
|
|
1761
|
-
--tw-border-opacity: 1;
|
|
1762
|
-
border-color: rgb(26 53 98 / var(--tw-border-opacity));
|
|
1763
|
-
}
|
|
1764
1737
|
.dark\:border-gray-600:is(.dark *) {
|
|
1765
1738
|
--tw-border-opacity: 1;
|
|
1766
1739
|
border-color: rgb(121 121 121 / var(--tw-border-opacity));
|
|
@@ -1773,6 +1746,12 @@ video {
|
|
|
1773
1746
|
--tw-border-opacity: 1;
|
|
1774
1747
|
border-color: rgb(37 37 37 / var(--tw-border-opacity));
|
|
1775
1748
|
}
|
|
1749
|
+
.dark\:border-primary-100:is(.dark *) {
|
|
1750
|
+
border-color: var(--primary-100);
|
|
1751
|
+
}
|
|
1752
|
+
.dark\:border-primary-800:is(.dark *) {
|
|
1753
|
+
border-color: var(--primary-800);
|
|
1754
|
+
}
|
|
1776
1755
|
.dark\:bg-dark:is(.dark *) {
|
|
1777
1756
|
--tw-bg-opacity: 1;
|
|
1778
1757
|
background-color: rgb(7 7 7 / var(--tw-bg-opacity));
|
|
@@ -1797,16 +1776,16 @@ video {
|
|
|
1797
1776
|
--tw-gradient-to: rgb(37 37 37 / 0) var(--tw-gradient-to-position);
|
|
1798
1777
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1799
1778
|
}
|
|
1800
|
-
.dark\:from-brand-900:is(.dark *) {
|
|
1801
|
-
--tw-gradient-from: #0D1B31 var(--tw-gradient-from-position);
|
|
1802
|
-
--tw-gradient-to: rgb(13 27 49 / 0) var(--tw-gradient-to-position);
|
|
1803
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1804
|
-
}
|
|
1805
1779
|
.dark\:from-cyan-500:is(.dark *) {
|
|
1806
1780
|
--tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
|
|
1807
1781
|
--tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
|
|
1808
1782
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1809
1783
|
}
|
|
1784
|
+
.dark\:from-primary-900:is(.dark *) {
|
|
1785
|
+
--tw-gradient-from: var(--primary-900) var(--tw-gradient-from-position);
|
|
1786
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
1787
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1788
|
+
}
|
|
1810
1789
|
.dark\:to-\[\#070707D9\]:is(.dark *) {
|
|
1811
1790
|
--tw-gradient-to: #070707D9 var(--tw-gradient-to-position);
|
|
1812
1791
|
}
|
|
@@ -1816,10 +1795,6 @@ video {
|
|
|
1816
1795
|
.dark\:to-dark:is(.dark *) {
|
|
1817
1796
|
--tw-gradient-to: #070707 var(--tw-gradient-to-position);
|
|
1818
1797
|
}
|
|
1819
|
-
.dark\:text-brand-200:is(.dark *) {
|
|
1820
|
-
--tw-text-opacity: 1;
|
|
1821
|
-
color: rgb(179 206 251 / var(--tw-text-opacity));
|
|
1822
|
-
}
|
|
1823
1798
|
.dark\:text-dark:is(.dark *) {
|
|
1824
1799
|
--tw-text-opacity: 1;
|
|
1825
1800
|
color: rgb(7 7 7 / var(--tw-text-opacity));
|
|
@@ -1848,6 +1823,9 @@ video {
|
|
|
1848
1823
|
--tw-text-opacity: 1;
|
|
1849
1824
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1850
1825
|
}
|
|
1826
|
+
.dark\:text-primary-200:is(.dark *) {
|
|
1827
|
+
color: var(--primary-200);
|
|
1828
|
+
}
|
|
1851
1829
|
.dark\:text-white:is(.dark *) {
|
|
1852
1830
|
--tw-text-opacity: 1;
|
|
1853
1831
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
@@ -1880,10 +1858,6 @@ video {
|
|
|
1880
1858
|
--tw-border-opacity: 1;
|
|
1881
1859
|
border-color: rgb(121 121 121 / var(--tw-border-opacity));
|
|
1882
1860
|
}
|
|
1883
|
-
.dark\:hover\:bg-brand-800:hover:is(.dark *) {
|
|
1884
|
-
--tw-bg-opacity: 1;
|
|
1885
|
-
background-color: rgb(26 53 98 / var(--tw-bg-opacity));
|
|
1886
|
-
}
|
|
1887
1861
|
.dark\:hover\:bg-gray-600:hover:is(.dark *) {
|
|
1888
1862
|
--tw-bg-opacity: 1;
|
|
1889
1863
|
background-color: rgb(121 121 121 / var(--tw-bg-opacity));
|
|
@@ -1892,6 +1866,9 @@ video {
|
|
|
1892
1866
|
--tw-bg-opacity: 1;
|
|
1893
1867
|
background-color: rgb(70 70 70 / var(--tw-bg-opacity));
|
|
1894
1868
|
}
|
|
1869
|
+
.dark\:hover\:bg-primary-800:hover:is(.dark *) {
|
|
1870
|
+
background-color: var(--primary-800);
|
|
1871
|
+
}
|
|
1895
1872
|
.hover\:dark\:bg-transparent:is(.dark *):hover {
|
|
1896
1873
|
background-color: transparent;
|
|
1897
1874
|
}
|
|
@@ -1903,14 +1880,13 @@ video {
|
|
|
1903
1880
|
.dark\:hover\:to-\[\#070707D9\]:hover:is(.dark *) {
|
|
1904
1881
|
--tw-gradient-to: #070707D9 var(--tw-gradient-to-position);
|
|
1905
1882
|
}
|
|
1906
|
-
.dark\:hover\:text-brand-600:hover:is(.dark *) {
|
|
1907
|
-
--tw-text-opacity: 1;
|
|
1908
|
-
color: rgb(53 106 195 / var(--tw-text-opacity));
|
|
1909
|
-
}
|
|
1910
1883
|
.dark\:hover\:text-light:hover:is(.dark *) {
|
|
1911
1884
|
--tw-text-opacity: 1;
|
|
1912
1885
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1913
1886
|
}
|
|
1887
|
+
.dark\:hover\:text-primary-600:hover:is(.dark *) {
|
|
1888
|
+
color: var(--primary-600);
|
|
1889
|
+
}
|
|
1914
1890
|
.dark\:focus-within\:hover\:bg-gray-700:hover:focus-within:is(.dark *) {
|
|
1915
1891
|
--tw-bg-opacity: 1;
|
|
1916
1892
|
background-color: rgb(101 101 101 / var(--tw-bg-opacity));
|
package/dist/index.js
CHANGED
|
@@ -55,7 +55,7 @@ function AccordionItem({
|
|
|
55
55
|
{
|
|
56
56
|
className: cn(
|
|
57
57
|
"rounded-lg mb-3 shadow-cardShadow dark:shadow-none border dark:border-gray-900",
|
|
58
|
-
isOpen ? "border-
|
|
58
|
+
isOpen ? "border-primary-500 shadow-cardShadowActive dark:bg-gray-900" : "hover:border-gray-500 hover:bg-gray-100 hover:dark:bg-transparent hover:dark:border-gray-600",
|
|
59
59
|
disabled ? "opacity-50 cursor-not-allowed" : "cursor-pointer"
|
|
60
60
|
)
|
|
61
61
|
},
|
|
@@ -273,7 +273,7 @@ var Checkbox = forwardRef(
|
|
|
273
273
|
"div",
|
|
274
274
|
{
|
|
275
275
|
className: cn(
|
|
276
|
-
"group inline-flex relative items-center rounded-full border-2 border-transparent hover:border-
|
|
276
|
+
"group inline-flex relative items-center rounded-full border-2 border-transparent hover:border-primary-300",
|
|
277
277
|
disabled && "border-none"
|
|
278
278
|
)
|
|
279
279
|
},
|
|
@@ -287,7 +287,7 @@ var Checkbox = forwardRef(
|
|
|
287
287
|
readOnly,
|
|
288
288
|
checked,
|
|
289
289
|
className: cn(
|
|
290
|
-
"peer relative h-5 w-5 cursor-pointer appearance-none rounded-full border-2 border-gray-300 transition-all checked:border-
|
|
290
|
+
"peer relative h-5 w-5 cursor-pointer appearance-none rounded-full border-2 border-gray-300 transition-all checked:border-primary-500 hover:border-primary-500 hover:bg-primary-25/25 disabled:opacity-30 disabled:pointer-events-none disabled:border-gray-400",
|
|
291
291
|
className
|
|
292
292
|
)
|
|
293
293
|
}
|
|
@@ -296,7 +296,7 @@ var Checkbox = forwardRef(
|
|
|
296
296
|
"span",
|
|
297
297
|
{
|
|
298
298
|
className: cn(
|
|
299
|
-
"absolute text-
|
|
299
|
+
"absolute text-primary-600 transition-opacity opacity-0 pointer-events-none top-2/4 left-2/4 -translate-y-2/4 -translate-x-2/4 peer-checked:opacity-100",
|
|
300
300
|
disabled && "text-gray-300"
|
|
301
301
|
)
|
|
302
302
|
},
|
|
@@ -333,9 +333,9 @@ import { cva as cva5 } from "class-variance-authority";
|
|
|
333
333
|
var chipVariants = cva5("", {
|
|
334
334
|
variants: {
|
|
335
335
|
variant: {
|
|
336
|
-
primary: "bg-white text-
|
|
337
|
-
secondary: "bg-
|
|
338
|
-
glass: "text-
|
|
336
|
+
primary: "bg-white text-primary-500 hover:text-white hover:bg-gradient-to-r hover:from-primary-500 hover:to-[#264D8E]",
|
|
337
|
+
secondary: "bg-primary-500 text-white hover:text-white hover:bg-gradient-to-r hover:from-primary-500 hover:to-[#285092]",
|
|
338
|
+
glass: "text-primary-500"
|
|
339
339
|
},
|
|
340
340
|
size: {
|
|
341
341
|
sm: "text-sm py-1 px-3",
|
|
@@ -363,10 +363,10 @@ var Chip = ({
|
|
|
363
363
|
className: cn(
|
|
364
364
|
"rounded-radius-xl bg-gradient-to-r w-fit",
|
|
365
365
|
{
|
|
366
|
-
solid: "from-
|
|
367
|
-
primary: "from-
|
|
368
|
-
secondary: "from-
|
|
369
|
-
glass: "border border-
|
|
366
|
+
solid: "from-primary-200 to-primary-500",
|
|
367
|
+
primary: "from-primary-200 to-primary-500",
|
|
368
|
+
secondary: "from-primary-200 to-primary-500",
|
|
369
|
+
glass: "border border-primary-500"
|
|
370
370
|
}[variant || "primary"],
|
|
371
371
|
"p-[1px]"
|
|
372
372
|
)
|
|
@@ -474,12 +474,12 @@ function Footer({
|
|
|
474
474
|
"footer",
|
|
475
475
|
{
|
|
476
476
|
className: cn(
|
|
477
|
-
"bg-gradient-to-b from-gray-25 to-
|
|
477
|
+
"bg-gradient-to-b from-gray-25 to-primary-100 dark:from-primary-900 dark:to-dark",
|
|
478
478
|
className
|
|
479
479
|
)
|
|
480
480
|
},
|
|
481
481
|
children,
|
|
482
|
-
footerBottom && /* @__PURE__ */ React10.createElement("section", { className: "border-t border-
|
|
482
|
+
footerBottom && /* @__PURE__ */ React10.createElement("section", { className: "border-t border-primary-500 dark:border-primary-800 text-center py-spacing-md" }, footerBottom)
|
|
483
483
|
);
|
|
484
484
|
}
|
|
485
485
|
var FooterHeader = ({ children, className }) => {
|
|
@@ -521,20 +521,20 @@ var FooterList = ({ footerItems, target }) => {
|
|
|
521
521
|
Paragraph_default,
|
|
522
522
|
{
|
|
523
523
|
variant: "b3",
|
|
524
|
-
className: "dark:text-gray-300 hover:text-
|
|
524
|
+
className: "dark:text-gray-300 hover:text-primary-400 dark:hover:text-primary-600 text-gray-900"
|
|
525
525
|
},
|
|
526
526
|
data2?.text
|
|
527
527
|
)))))))
|
|
528
528
|
);
|
|
529
529
|
};
|
|
530
530
|
var FooterIcons = ({ icons }) => {
|
|
531
|
-
return /* @__PURE__ */ React10.createElement("div", { className: "flex flex-wrap justify-center items-center gap-5 text-
|
|
531
|
+
return /* @__PURE__ */ React10.createElement("div", { className: "flex flex-wrap justify-center items-center gap-5 text-primary-700 dark:text-primary-200" }, icons.map((icon, index) => /* @__PURE__ */ React10.createElement(
|
|
532
532
|
Link,
|
|
533
533
|
{
|
|
534
534
|
href: icon.link,
|
|
535
535
|
key: index,
|
|
536
536
|
target: "_blank",
|
|
537
|
-
className: "hover:bg-
|
|
537
|
+
className: "hover:bg-primary-100 dark:hover:bg-primary-800 p-1 rounded-radius-sm"
|
|
538
538
|
},
|
|
539
539
|
icon.icon
|
|
540
540
|
)));
|
|
@@ -554,7 +554,7 @@ var ImageCard = ({
|
|
|
554
554
|
"div",
|
|
555
555
|
{
|
|
556
556
|
className: cn(
|
|
557
|
-
"transition-all duration-300 ease-in-out hover:ring-1 hover:ring-
|
|
557
|
+
"transition-all duration-300 ease-in-out hover:ring-1 hover:ring-brand-500 relative rounded-radius-xl overflow-hidden block z-10 bg-cover bg-no-repeat bg-center",
|
|
558
558
|
className
|
|
559
559
|
),
|
|
560
560
|
style: {
|
|
@@ -575,7 +575,7 @@ var inputVariants = cva6(
|
|
|
575
575
|
{
|
|
576
576
|
variants: {
|
|
577
577
|
variant: {
|
|
578
|
-
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:has-[:disabled]:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-
|
|
578
|
+
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:has-[:disabled]:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-primary-100 focus-within:hover:bg-primary-50 has-[:disabled]:bg-gray-25 has-[:disabled]:border-gray-400",
|
|
579
579
|
glass: "backdrop-blur-[3.5px] bg-light/10 dark:bg-dark/20 dark:border-gray-800 border-gray-200/50 text-light"
|
|
580
580
|
}
|
|
581
581
|
},
|
|
@@ -650,7 +650,7 @@ var ListItem = React14.forwardRef(
|
|
|
650
650
|
({ className, title, href, onClick, as = "link", variant = "solid", icon }, ref) => {
|
|
651
651
|
const pathname = usePathname();
|
|
652
652
|
const isActive = as === "link" && href === pathname;
|
|
653
|
-
const variantClasses = variant === "solid" ? "rounded-radius-lg hover:bg-
|
|
653
|
+
const variantClasses = variant === "solid" ? "rounded-radius-lg hover:bg-primary-50 text-dark group border border-transparent hover:border-primary-200 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:text-white leading-none no-underline outline-none transition-colors" : variant === "glass" ? "rounded-radius-lg group border border-transparent hover:border-primary-200 focus:outline-none focus:ring-1 focus:ring-primary-500 focus:text-white leading-none no-underline outline-none transition-colors" : "";
|
|
654
654
|
if (as === "button") {
|
|
655
655
|
return /* @__PURE__ */ React14.createElement(
|
|
656
656
|
"button",
|
|
@@ -670,7 +670,7 @@ var ListItem = React14.forwardRef(
|
|
|
670
670
|
passHref: true,
|
|
671
671
|
className: cn(
|
|
672
672
|
"px-4 py-[8px] font-karla w-full flex items-center gap-2 group",
|
|
673
|
-
isActive ? "bg-
|
|
673
|
+
isActive ? "bg-primary-400 text-white border border-primary-200" : variantClasses,
|
|
674
674
|
className
|
|
675
675
|
),
|
|
676
676
|
ref
|
|
@@ -709,7 +709,7 @@ var Slider = forwardRef3(
|
|
|
709
709
|
size === "sm" ? "h-1.5" : "h-4"
|
|
710
710
|
),
|
|
711
711
|
style: {
|
|
712
|
-
background: `linear-gradient(to right,
|
|
712
|
+
background: `linear-gradient(to right, var(--primary-500) ${progress}%, #d1d5db ${progress}%)`
|
|
713
713
|
}
|
|
714
714
|
}
|
|
715
715
|
));
|
|
@@ -730,12 +730,12 @@ var StatsCard = ({
|
|
|
730
730
|
Card,
|
|
731
731
|
{
|
|
732
732
|
className: cn(
|
|
733
|
-
"border border-[#eee] hover:border-
|
|
733
|
+
"border border-[#eee] hover:border-primary-500 rounded-radius-xl bg-[#FFFFFFE5] bg-gradient-to-b bg-[#fff] hover:from-[#8EB6F8D9] hover:to-[#356AC3D9] dark:from-[#252525D9] dark:to-[#070707D9] dark:hover:from-[#1A3562D9] dark:hover:to-[#070707D9] backdrop-blur-sm px-[32px] py-[64px] group",
|
|
734
734
|
className
|
|
735
735
|
)
|
|
736
736
|
},
|
|
737
737
|
/* @__PURE__ */ React16.createElement("span", { className: "group-hover:text-white text-dark dark:text-white" }, cardIcon),
|
|
738
|
-
/* @__PURE__ */ React16.createElement(CardTitle, { className: "group-hover:text-white text-[48px] font-bold text-
|
|
738
|
+
/* @__PURE__ */ React16.createElement(CardTitle, { className: "group-hover:text-white text-[48px] font-bold text-primary-500 dark:text-white my-4" }, statTitle),
|
|
739
739
|
/* @__PURE__ */ React16.createElement(CardDescription, { className: "group-hover:text-white text-[24px] hover:text-white text-dark leading-[25px]" }, statDesc)
|
|
740
740
|
);
|
|
741
741
|
};
|
|
@@ -751,7 +751,7 @@ var textareaVariants = cva8(
|
|
|
751
751
|
{
|
|
752
752
|
variants: {
|
|
753
753
|
variant: {
|
|
754
|
-
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:disabled:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-
|
|
754
|
+
default: "dark:text-gray-500 dark:bg-gray-900 dark:border-gray-800 dark:hover:text-light dark:hover:bg-gray-800 dark:hover:border-gray-700 dark:focus-within:bg-gray-100 dark:focus-within:border-gray-800 dark:focus-within:hover:bg-gray-700 dark:focus-within:text-dark dark:disabled:bg-gray-700 bg-gray-100 border-gray-200 text-gray-600 hover:border-gray-300 hover:text-gray-500 hover:bg-gray-300 focus-within:bg-gray-50 focus-within:border-gray-400 focus-within:text-dark focus-within:hover:text-dark focus-within:hover:border-primary-100 focus-within:hover:bg-primary-50 disabled:bg-gray-25 disabled:border-gray-400",
|
|
755
755
|
glass: "backdrop-blur-[3.5px] bg-light/10 dark:bg-dark/20 dark:border-gray-800 border-gray-200/50 text-light"
|
|
756
756
|
}
|
|
757
757
|
},
|
|
@@ -783,7 +783,7 @@ var Textarea_default = Textarea;
|
|
|
783
783
|
import { cva as cva9 } from "class-variance-authority";
|
|
784
784
|
import React18, { forwardRef as forwardRef5 } from "react";
|
|
785
785
|
var toggleVariants = cva9(
|
|
786
|
-
"rounded-radius-xl bg-gray-300 transition-colors peer-checked:bg-
|
|
786
|
+
"rounded-radius-xl bg-gray-300 transition-colors peer-checked:bg-primary-500 peer-active:ring-2 peer-active:ring-primary-300",
|
|
787
787
|
{
|
|
788
788
|
variants: {
|
|
789
789
|
size: {
|