@algorithm-shift/design-system 1.2.21 → 1.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +13 -18
- package/dist/index.d.ts +13 -18
- package/dist/index.js +294 -258
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +270 -233
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
// src/components/Layout/Flex.tsx
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
var Flex = ({
|
|
4
|
+
children,
|
|
5
|
+
className,
|
|
6
|
+
style
|
|
7
|
+
}) => {
|
|
8
|
+
return /* @__PURE__ */ jsx("div", { className, style, children });
|
|
9
|
+
};
|
|
10
|
+
var Flex_default = Flex;
|
|
11
|
+
|
|
12
|
+
// src/components/Layout/Grid.tsx
|
|
13
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
14
|
+
var Grid = ({
|
|
15
|
+
children,
|
|
16
|
+
className,
|
|
17
|
+
style
|
|
18
|
+
}) => {
|
|
19
|
+
return /* @__PURE__ */ jsx2("div", { className, style, children });
|
|
20
|
+
};
|
|
21
|
+
var Grid_default = Grid;
|
|
22
|
+
|
|
1
23
|
// src/components/ui/button.tsx
|
|
2
24
|
import { Slot } from "@radix-ui/react-slot";
|
|
3
25
|
import { cva } from "class-variance-authority";
|
|
@@ -10,7 +32,7 @@ function cn(...inputs) {
|
|
|
10
32
|
}
|
|
11
33
|
|
|
12
34
|
// src/components/ui/button.tsx
|
|
13
|
-
import { jsx } from "react/jsx-runtime";
|
|
35
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
14
36
|
var buttonVariants = cva(
|
|
15
37
|
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
|
|
16
38
|
{
|
|
@@ -44,7 +66,7 @@ function Button({
|
|
|
44
66
|
...props
|
|
45
67
|
}) {
|
|
46
68
|
const Comp = asChild ? Slot : "button";
|
|
47
|
-
return /* @__PURE__ */
|
|
69
|
+
return /* @__PURE__ */ jsx3(
|
|
48
70
|
Comp,
|
|
49
71
|
{
|
|
50
72
|
"data-slot": "button",
|
|
@@ -54,64 +76,29 @@ function Button({
|
|
|
54
76
|
);
|
|
55
77
|
}
|
|
56
78
|
|
|
57
|
-
// src/components/
|
|
58
|
-
import { jsx as
|
|
59
|
-
var
|
|
60
|
-
children,
|
|
61
|
-
className,
|
|
62
|
-
style
|
|
63
|
-
}) => {
|
|
64
|
-
return /* @__PURE__ */ jsx2("div", { className, style, children });
|
|
65
|
-
};
|
|
66
|
-
var Flex_default = Flex;
|
|
67
|
-
|
|
68
|
-
// src/components/Layout/Grid.tsx
|
|
69
|
-
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
70
|
-
var Grid = ({
|
|
71
|
-
children,
|
|
72
|
-
className,
|
|
73
|
-
style
|
|
74
|
-
}) => {
|
|
75
|
-
return /* @__PURE__ */ jsx3("div", { className, style, children });
|
|
76
|
-
};
|
|
77
|
-
var Grid_default = Grid;
|
|
78
|
-
|
|
79
|
-
// src/components/Basic/Typography/Typography.tsx
|
|
80
|
-
import React from "react";
|
|
81
|
-
var Typography = ({
|
|
79
|
+
// src/components/Basic/Button/Button.tsx
|
|
80
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
81
|
+
var ButtonComponent = ({
|
|
82
82
|
className,
|
|
83
83
|
style,
|
|
84
|
-
|
|
85
|
-
textContent
|
|
84
|
+
textContent = "Button"
|
|
86
85
|
}) => {
|
|
87
|
-
const
|
|
88
|
-
|
|
89
|
-
|
|
86
|
+
const classNames = cn(
|
|
87
|
+
"inline-flex items-center justify-center rounded-md px-4 py-2 text-sm font-medium",
|
|
88
|
+
"bg-[#000000] text-white transition-colors disabled:opacity-50",
|
|
89
|
+
className
|
|
90
|
+
);
|
|
91
|
+
return /* @__PURE__ */ jsx4(
|
|
92
|
+
Button,
|
|
90
93
|
{
|
|
94
|
+
type: "button",
|
|
95
|
+
className: classNames,
|
|
91
96
|
style,
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
[
|
|
95
|
-
React.createElement("span", {
|
|
96
|
-
key: "html",
|
|
97
|
-
className: "pointer-events-none",
|
|
98
|
-
dangerouslySetInnerHTML: { __html: textContent }
|
|
99
|
-
})
|
|
100
|
-
]
|
|
97
|
+
children: textContent
|
|
98
|
+
}
|
|
101
99
|
);
|
|
102
100
|
};
|
|
103
|
-
var
|
|
104
|
-
|
|
105
|
-
// src/components/Basic/Shape/Shape.tsx
|
|
106
|
-
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
107
|
-
var Shape = ({
|
|
108
|
-
children,
|
|
109
|
-
className,
|
|
110
|
-
style
|
|
111
|
-
}) => {
|
|
112
|
-
return /* @__PURE__ */ jsx4("div", { className, style, children });
|
|
113
|
-
};
|
|
114
|
-
var Shape_default = Shape;
|
|
101
|
+
var Button_default = ButtonComponent;
|
|
115
102
|
|
|
116
103
|
// src/assets/image-placeholder.png
|
|
117
104
|
var image_placeholder_default = "data:image/png;base64,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";
|
|
@@ -141,13 +128,50 @@ var ImageControl = ({
|
|
|
141
128
|
};
|
|
142
129
|
var Image_default = ImageControl;
|
|
143
130
|
|
|
131
|
+
// src/components/Basic/Shape/Shape.tsx
|
|
132
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
133
|
+
var Shape = ({
|
|
134
|
+
children,
|
|
135
|
+
className,
|
|
136
|
+
style
|
|
137
|
+
}) => {
|
|
138
|
+
return /* @__PURE__ */ jsx6("div", { className, style, children });
|
|
139
|
+
};
|
|
140
|
+
var Shape_default = Shape;
|
|
141
|
+
|
|
142
|
+
// src/components/Basic/Typography/Typography.tsx
|
|
143
|
+
import React from "react";
|
|
144
|
+
var Typography = ({
|
|
145
|
+
className,
|
|
146
|
+
style,
|
|
147
|
+
tagName,
|
|
148
|
+
textContent
|
|
149
|
+
}) => {
|
|
150
|
+
const Tag = tagName || "h1";
|
|
151
|
+
return React.createElement(
|
|
152
|
+
Tag,
|
|
153
|
+
{
|
|
154
|
+
style,
|
|
155
|
+
className: cn(className, "pointer-events-auto")
|
|
156
|
+
},
|
|
157
|
+
[
|
|
158
|
+
React.createElement("span", {
|
|
159
|
+
key: "html",
|
|
160
|
+
className: "pointer-events-none",
|
|
161
|
+
dangerouslySetInnerHTML: { __html: textContent }
|
|
162
|
+
})
|
|
163
|
+
]
|
|
164
|
+
);
|
|
165
|
+
};
|
|
166
|
+
var Typography_default = Typography;
|
|
167
|
+
|
|
144
168
|
// src/components/Inputs/TextInput/TextInput.tsx
|
|
145
169
|
import * as React2 from "react";
|
|
146
170
|
|
|
147
171
|
// src/components/ui/input.tsx
|
|
148
|
-
import { jsx as
|
|
172
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
149
173
|
function Input({ className, type, ...props }) {
|
|
150
|
-
return /* @__PURE__ */
|
|
174
|
+
return /* @__PURE__ */ jsx7(
|
|
151
175
|
"input",
|
|
152
176
|
{
|
|
153
177
|
type,
|
|
@@ -164,7 +188,7 @@ function Input({ className, type, ...props }) {
|
|
|
164
188
|
}
|
|
165
189
|
|
|
166
190
|
// src/components/Inputs/TextInput/TextInput.tsx
|
|
167
|
-
import { Fragment, jsx as
|
|
191
|
+
import { Fragment, jsx as jsx8, jsxs } from "react/jsx-runtime";
|
|
168
192
|
var TextInput = ({ className, style, ...props }) => {
|
|
169
193
|
const placeholder = props.placeholder || "Placeholder text";
|
|
170
194
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -190,7 +214,7 @@ var TextInput = ({ className, style, ...props }) => {
|
|
|
190
214
|
}
|
|
191
215
|
};
|
|
192
216
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
193
|
-
/* @__PURE__ */
|
|
217
|
+
/* @__PURE__ */ jsx8(
|
|
194
218
|
Input,
|
|
195
219
|
{
|
|
196
220
|
type: "text",
|
|
@@ -207,9 +231,10 @@ var TextInput = ({ className, style, ...props }) => {
|
|
|
207
231
|
pattern: regexPattern || void 0
|
|
208
232
|
}
|
|
209
233
|
),
|
|
210
|
-
error && /* @__PURE__ */
|
|
234
|
+
error && /* @__PURE__ */ jsx8("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
211
235
|
] });
|
|
212
236
|
};
|
|
237
|
+
var TextInput_default = TextInput;
|
|
213
238
|
|
|
214
239
|
// src/components/Inputs/NumberInput/NumberInput.tsx
|
|
215
240
|
import * as React3 from "react";
|
|
@@ -383,7 +408,7 @@ var __iconNode11 = [
|
|
|
383
408
|
var Search = createLucideIcon("search", __iconNode11);
|
|
384
409
|
|
|
385
410
|
// src/components/Inputs/NumberInput/NumberInput.tsx
|
|
386
|
-
import { Fragment as Fragment2, jsx as
|
|
411
|
+
import { Fragment as Fragment2, jsx as jsx9, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
387
412
|
var NumberInput = ({ className, style, ...props }) => {
|
|
388
413
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
389
414
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -410,8 +435,8 @@ var NumberInput = ({ className, style, ...props }) => {
|
|
|
410
435
|
};
|
|
411
436
|
return /* @__PURE__ */ jsxs2(Fragment2, { children: [
|
|
412
437
|
/* @__PURE__ */ jsxs2("div", { className: "flex justify-start items-center relative", children: [
|
|
413
|
-
/* @__PURE__ */
|
|
414
|
-
/* @__PURE__ */
|
|
438
|
+
/* @__PURE__ */ jsx9(Calculator, { className: "absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-[#BDBDBD]" }),
|
|
439
|
+
/* @__PURE__ */ jsx9(
|
|
415
440
|
Input,
|
|
416
441
|
{
|
|
417
442
|
type: "number",
|
|
@@ -430,13 +455,14 @@ var NumberInput = ({ className, style, ...props }) => {
|
|
|
430
455
|
}
|
|
431
456
|
)
|
|
432
457
|
] }),
|
|
433
|
-
error && /* @__PURE__ */
|
|
458
|
+
error && /* @__PURE__ */ jsx9("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
434
459
|
] });
|
|
435
460
|
};
|
|
461
|
+
var NumberInput_default = NumberInput;
|
|
436
462
|
|
|
437
463
|
// src/components/Inputs/EmailInput/EmailInput.tsx
|
|
438
464
|
import * as React4 from "react";
|
|
439
|
-
import { Fragment as Fragment3, jsx as
|
|
465
|
+
import { Fragment as Fragment3, jsx as jsx10, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
440
466
|
var EmailInput = ({ className, style, ...props }) => {
|
|
441
467
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
442
468
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -463,8 +489,8 @@ var EmailInput = ({ className, style, ...props }) => {
|
|
|
463
489
|
};
|
|
464
490
|
return /* @__PURE__ */ jsxs3(Fragment3, { children: [
|
|
465
491
|
/* @__PURE__ */ jsxs3("div", { className: "flex justify-start items-center relative", children: [
|
|
466
|
-
/* @__PURE__ */
|
|
467
|
-
/* @__PURE__ */
|
|
492
|
+
/* @__PURE__ */ jsx10(Mail, { className: "absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-[#BDBDBD]" }),
|
|
493
|
+
/* @__PURE__ */ jsx10(
|
|
468
494
|
Input,
|
|
469
495
|
{
|
|
470
496
|
type: "email",
|
|
@@ -482,13 +508,14 @@ var EmailInput = ({ className, style, ...props }) => {
|
|
|
482
508
|
}
|
|
483
509
|
)
|
|
484
510
|
] }),
|
|
485
|
-
error && /* @__PURE__ */
|
|
511
|
+
error && /* @__PURE__ */ jsx10("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
486
512
|
] });
|
|
487
513
|
};
|
|
514
|
+
var EmailInput_default = EmailInput;
|
|
488
515
|
|
|
489
516
|
// src/components/Inputs/PasswordInput/PasswordInput.tsx
|
|
490
517
|
import * as React5 from "react";
|
|
491
|
-
import { Fragment as Fragment4, jsx as
|
|
518
|
+
import { Fragment as Fragment4, jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
492
519
|
var PasswordInput = ({ className, style, ...props }) => {
|
|
493
520
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
494
521
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -515,8 +542,8 @@ var PasswordInput = ({ className, style, ...props }) => {
|
|
|
515
542
|
};
|
|
516
543
|
return /* @__PURE__ */ jsxs4(Fragment4, { children: [
|
|
517
544
|
/* @__PURE__ */ jsxs4("div", { className: "flex justify-start items-center relative", children: [
|
|
518
|
-
/* @__PURE__ */
|
|
519
|
-
/* @__PURE__ */
|
|
545
|
+
/* @__PURE__ */ jsx11(ScanEye, { className: "absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-[#BDBDBD]" }),
|
|
546
|
+
/* @__PURE__ */ jsx11(
|
|
520
547
|
Input,
|
|
521
548
|
{
|
|
522
549
|
type: "password",
|
|
@@ -535,17 +562,18 @@ var PasswordInput = ({ className, style, ...props }) => {
|
|
|
535
562
|
}
|
|
536
563
|
)
|
|
537
564
|
] }),
|
|
538
|
-
error && /* @__PURE__ */
|
|
565
|
+
error && /* @__PURE__ */ jsx11("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
539
566
|
] });
|
|
540
567
|
};
|
|
568
|
+
var PasswordInput_default = PasswordInput;
|
|
541
569
|
|
|
542
570
|
// src/components/Inputs/Textarea/Textarea.tsx
|
|
543
571
|
import * as React6 from "react";
|
|
544
572
|
|
|
545
573
|
// src/components/ui/textarea.tsx
|
|
546
|
-
import { jsx as
|
|
574
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
547
575
|
function Textarea({ className, ...props }) {
|
|
548
|
-
return /* @__PURE__ */
|
|
576
|
+
return /* @__PURE__ */ jsx12(
|
|
549
577
|
"textarea",
|
|
550
578
|
{
|
|
551
579
|
"data-slot": "textarea",
|
|
@@ -559,7 +587,7 @@ function Textarea({ className, ...props }) {
|
|
|
559
587
|
}
|
|
560
588
|
|
|
561
589
|
// src/components/Inputs/Textarea/Textarea.tsx
|
|
562
|
-
import { Fragment as Fragment5, jsx as
|
|
590
|
+
import { Fragment as Fragment5, jsx as jsx13, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
563
591
|
var Textarea2 = ({ className, style, ...props }) => {
|
|
564
592
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
565
593
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -585,7 +613,7 @@ var Textarea2 = ({ className, style, ...props }) => {
|
|
|
585
613
|
}
|
|
586
614
|
};
|
|
587
615
|
return /* @__PURE__ */ jsxs5(Fragment5, { children: [
|
|
588
|
-
/* @__PURE__ */
|
|
616
|
+
/* @__PURE__ */ jsx13(
|
|
589
617
|
Textarea,
|
|
590
618
|
{
|
|
591
619
|
id: "textarea-field",
|
|
@@ -601,13 +629,14 @@ var Textarea2 = ({ className, style, ...props }) => {
|
|
|
601
629
|
maxLength: noOfCharacters
|
|
602
630
|
}
|
|
603
631
|
),
|
|
604
|
-
error && /* @__PURE__ */
|
|
632
|
+
error && /* @__PURE__ */ jsx13("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
605
633
|
] });
|
|
606
634
|
};
|
|
635
|
+
var Textarea_default = Textarea2;
|
|
607
636
|
|
|
608
637
|
// src/components/Inputs/UrlInput/UrlInput.tsx
|
|
609
638
|
import * as React7 from "react";
|
|
610
|
-
import { Fragment as Fragment6, jsx as
|
|
639
|
+
import { Fragment as Fragment6, jsx as jsx14, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
611
640
|
var UrlInput = ({ className, style, ...props }) => {
|
|
612
641
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
613
642
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -634,8 +663,8 @@ var UrlInput = ({ className, style, ...props }) => {
|
|
|
634
663
|
};
|
|
635
664
|
return /* @__PURE__ */ jsxs6(Fragment6, { children: [
|
|
636
665
|
/* @__PURE__ */ jsxs6("div", { className: "flex justify-start items-center relative", children: [
|
|
637
|
-
/* @__PURE__ */
|
|
638
|
-
/* @__PURE__ */
|
|
666
|
+
/* @__PURE__ */ jsx14("div", { className: "bg-[#E9E9E9] absolute px-10 text-center top-1/2 h-full justify-center items-center flex w-10 -translate-y-1/2 text-[#383838] font-[500] text-[12px]", children: "https://" }),
|
|
667
|
+
/* @__PURE__ */ jsx14(
|
|
639
668
|
Input,
|
|
640
669
|
{
|
|
641
670
|
type: "url",
|
|
@@ -654,18 +683,19 @@ var UrlInput = ({ className, style, ...props }) => {
|
|
|
654
683
|
}
|
|
655
684
|
)
|
|
656
685
|
] }),
|
|
657
|
-
error && /* @__PURE__ */
|
|
686
|
+
error && /* @__PURE__ */ jsx14("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
658
687
|
] });
|
|
659
688
|
};
|
|
689
|
+
var UrlInput_default = UrlInput;
|
|
660
690
|
|
|
661
691
|
// src/components/ui/checkbox.tsx
|
|
662
692
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
663
|
-
import { jsx as
|
|
693
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
664
694
|
function Checkbox({
|
|
665
695
|
className,
|
|
666
696
|
...props
|
|
667
697
|
}) {
|
|
668
|
-
return /* @__PURE__ */
|
|
698
|
+
return /* @__PURE__ */ jsx15(
|
|
669
699
|
CheckboxPrimitive.Root,
|
|
670
700
|
{
|
|
671
701
|
"data-slot": "checkbox",
|
|
@@ -674,12 +704,12 @@ function Checkbox({
|
|
|
674
704
|
className
|
|
675
705
|
),
|
|
676
706
|
...props,
|
|
677
|
-
children: /* @__PURE__ */
|
|
707
|
+
children: /* @__PURE__ */ jsx15(
|
|
678
708
|
CheckboxPrimitive.Indicator,
|
|
679
709
|
{
|
|
680
710
|
"data-slot": "checkbox-indicator",
|
|
681
711
|
className: "flex items-center justify-center text-current transition-none",
|
|
682
|
-
children: /* @__PURE__ */
|
|
712
|
+
children: /* @__PURE__ */ jsx15(Check, { className: "size-3.5" })
|
|
683
713
|
}
|
|
684
714
|
)
|
|
685
715
|
}
|
|
@@ -688,12 +718,12 @@ function Checkbox({
|
|
|
688
718
|
|
|
689
719
|
// src/components/ui/label.tsx
|
|
690
720
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
691
|
-
import { jsx as
|
|
721
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
692
722
|
function Label({
|
|
693
723
|
className,
|
|
694
724
|
...props
|
|
695
725
|
}) {
|
|
696
|
-
return /* @__PURE__ */
|
|
726
|
+
return /* @__PURE__ */ jsx16(
|
|
697
727
|
LabelPrimitive.Root,
|
|
698
728
|
{
|
|
699
729
|
"data-slot": "label",
|
|
@@ -707,23 +737,24 @@ function Label({
|
|
|
707
737
|
}
|
|
708
738
|
|
|
709
739
|
// src/components/Inputs/Checkbox/Checkbox.tsx
|
|
710
|
-
import { jsx as
|
|
740
|
+
import { jsx as jsx17, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
711
741
|
var CheckboxInput = ({ className, style, ...props }) => {
|
|
712
742
|
const text = props.text ? props.text : "Subscribe";
|
|
713
|
-
return /* @__PURE__ */
|
|
714
|
-
/* @__PURE__ */
|
|
715
|
-
/* @__PURE__ */
|
|
743
|
+
return /* @__PURE__ */ jsx17("div", { className, style, children: /* @__PURE__ */ jsxs7("div", { className: "flex items-center space-x-2", children: [
|
|
744
|
+
/* @__PURE__ */ jsx17(Checkbox, { id: "newsletter" }),
|
|
745
|
+
/* @__PURE__ */ jsx17(Label, { htmlFor: "newsletter", children: text })
|
|
716
746
|
] }) });
|
|
717
747
|
};
|
|
748
|
+
var Checkbox_default = CheckboxInput;
|
|
718
749
|
|
|
719
750
|
// src/components/ui/radio-group.tsx
|
|
720
751
|
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
721
|
-
import { jsx as
|
|
752
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
722
753
|
function RadioGroup({
|
|
723
754
|
className,
|
|
724
755
|
...props
|
|
725
756
|
}) {
|
|
726
|
-
return /* @__PURE__ */
|
|
757
|
+
return /* @__PURE__ */ jsx18(
|
|
727
758
|
RadioGroupPrimitive.Root,
|
|
728
759
|
{
|
|
729
760
|
"data-slot": "radio-group",
|
|
@@ -736,7 +767,7 @@ function RadioGroupItem({
|
|
|
736
767
|
className,
|
|
737
768
|
...props
|
|
738
769
|
}) {
|
|
739
|
-
return /* @__PURE__ */
|
|
770
|
+
return /* @__PURE__ */ jsx18(
|
|
740
771
|
RadioGroupPrimitive.Item,
|
|
741
772
|
{
|
|
742
773
|
"data-slot": "radio-group-item",
|
|
@@ -745,12 +776,12 @@ function RadioGroupItem({
|
|
|
745
776
|
className
|
|
746
777
|
),
|
|
747
778
|
...props,
|
|
748
|
-
children: /* @__PURE__ */
|
|
779
|
+
children: /* @__PURE__ */ jsx18(
|
|
749
780
|
RadioGroupPrimitive.Indicator,
|
|
750
781
|
{
|
|
751
782
|
"data-slot": "radio-group-indicator",
|
|
752
783
|
className: "relative flex items-center justify-center",
|
|
753
|
-
children: /* @__PURE__ */
|
|
784
|
+
children: /* @__PURE__ */ jsx18(Circle, { className: "fill-primary absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2" })
|
|
754
785
|
}
|
|
755
786
|
)
|
|
756
787
|
}
|
|
@@ -758,37 +789,39 @@ function RadioGroupItem({
|
|
|
758
789
|
}
|
|
759
790
|
|
|
760
791
|
// src/components/Inputs/RadioInput/RadioInput.tsx
|
|
761
|
-
import { jsx as
|
|
792
|
+
import { jsx as jsx19, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
762
793
|
var RadioInput = ({ className, style, ...props }) => {
|
|
763
794
|
const text = Array.isArray(props.text) ? props.text : [props.text ?? "Subscribe"];
|
|
764
795
|
const formatList = text.filter((i) => i.value && i.label).map((item) => ({
|
|
765
796
|
label: item.label,
|
|
766
797
|
value: item.value
|
|
767
798
|
}));
|
|
768
|
-
return /* @__PURE__ */
|
|
769
|
-
/* @__PURE__ */
|
|
770
|
-
/* @__PURE__ */
|
|
799
|
+
return /* @__PURE__ */ jsx19("div", { className, style, children: /* @__PURE__ */ jsx19(RadioGroup, { defaultValue: "option-1", children: formatList?.map((item, index) => /* @__PURE__ */ jsxs8("div", { className: "flex items-center space-x-2", children: [
|
|
800
|
+
/* @__PURE__ */ jsx19(RadioGroupItem, { value: item.value, id: `r${index}` }),
|
|
801
|
+
/* @__PURE__ */ jsx19(Label, { htmlFor: `r${index}`, children: item.label })
|
|
771
802
|
] }, index)) }) });
|
|
772
803
|
};
|
|
804
|
+
var RadioInput_default = RadioInput;
|
|
773
805
|
|
|
774
806
|
// src/components/Inputs/MultiCheckbox/MultiCheckbox.tsx
|
|
775
|
-
import { jsx as
|
|
807
|
+
import { jsx as jsx20, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
776
808
|
var MultiCheckbox = ({ className, style, ...props }) => {
|
|
777
809
|
const text = Array.isArray(props.text) ? props.text : [props.text ?? "Subscribe"];
|
|
778
810
|
const formatList = text.filter((i) => i.value && i.label).map((item) => ({
|
|
779
811
|
label: item.label,
|
|
780
812
|
value: item.value
|
|
781
813
|
}));
|
|
782
|
-
return /* @__PURE__ */
|
|
783
|
-
/* @__PURE__ */
|
|
784
|
-
/* @__PURE__ */
|
|
814
|
+
return /* @__PURE__ */ jsx20("div", { className, style, children: /* @__PURE__ */ jsx20("div", { className: "flex gap-3 flex-col", children: formatList?.map((item, index) => /* @__PURE__ */ jsxs9("div", { className: "flex items-center space-x-2", children: [
|
|
815
|
+
/* @__PURE__ */ jsx20(Checkbox, { id: `newsletter-${index}` }),
|
|
816
|
+
/* @__PURE__ */ jsx20(Label, { htmlFor: `newsletter-${index}`, children: item.label })
|
|
785
817
|
] }, index)) }) });
|
|
786
818
|
};
|
|
819
|
+
var MultiCheckbox_default = MultiCheckbox;
|
|
787
820
|
|
|
788
821
|
// src/components/Global/TinyMceEditor.tsx
|
|
789
822
|
import { useMemo, useRef } from "react";
|
|
790
823
|
import { Editor } from "@tinymce/tinymce-react";
|
|
791
|
-
import { jsx as
|
|
824
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
792
825
|
function MyEditor({
|
|
793
826
|
value,
|
|
794
827
|
onChange,
|
|
@@ -813,7 +846,7 @@ function MyEditor({
|
|
|
813
846
|
}
|
|
814
847
|
return toolbar;
|
|
815
848
|
}, [isDefault]);
|
|
816
|
-
return /* @__PURE__ */
|
|
849
|
+
return /* @__PURE__ */ jsx21(
|
|
817
850
|
Editor,
|
|
818
851
|
{
|
|
819
852
|
apiKey: process.env.NEXT_PUBLIC_TINYMCE_API_KEY,
|
|
@@ -857,9 +890,9 @@ function MyEditor({
|
|
|
857
890
|
}
|
|
858
891
|
|
|
859
892
|
// src/components/Inputs/RichText/RichText.tsx
|
|
860
|
-
import { jsx as
|
|
893
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
861
894
|
function RichText({ className, style }) {
|
|
862
|
-
return /* @__PURE__ */
|
|
895
|
+
return /* @__PURE__ */ jsx22("div", { className, style, children: /* @__PURE__ */ jsx22(MyEditor, { isDefault: true }) });
|
|
863
896
|
}
|
|
864
897
|
|
|
865
898
|
// src/components/Inputs/Dropdown/Dropdown.tsx
|
|
@@ -867,16 +900,16 @@ import * as React8 from "react";
|
|
|
867
900
|
|
|
868
901
|
// src/components/ui/select.tsx
|
|
869
902
|
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
870
|
-
import { jsx as
|
|
903
|
+
import { jsx as jsx23, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
871
904
|
function Select({
|
|
872
905
|
...props
|
|
873
906
|
}) {
|
|
874
|
-
return /* @__PURE__ */
|
|
907
|
+
return /* @__PURE__ */ jsx23(SelectPrimitive.Root, { "data-slot": "select", ...props });
|
|
875
908
|
}
|
|
876
909
|
function SelectValue({
|
|
877
910
|
...props
|
|
878
911
|
}) {
|
|
879
|
-
return /* @__PURE__ */
|
|
912
|
+
return /* @__PURE__ */ jsx23(SelectPrimitive.Value, { "data-slot": "select-value", ...props });
|
|
880
913
|
}
|
|
881
914
|
function SelectTrigger({
|
|
882
915
|
className,
|
|
@@ -896,7 +929,7 @@ function SelectTrigger({
|
|
|
896
929
|
...props,
|
|
897
930
|
children: [
|
|
898
931
|
children,
|
|
899
|
-
/* @__PURE__ */
|
|
932
|
+
/* @__PURE__ */ jsx23(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx23(ChevronDown, { className: "size-4 opacity-50" }) })
|
|
900
933
|
]
|
|
901
934
|
}
|
|
902
935
|
);
|
|
@@ -907,7 +940,7 @@ function SelectContent({
|
|
|
907
940
|
position = "popper",
|
|
908
941
|
...props
|
|
909
942
|
}) {
|
|
910
|
-
return /* @__PURE__ */
|
|
943
|
+
return /* @__PURE__ */ jsx23(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs10(
|
|
911
944
|
SelectPrimitive.Content,
|
|
912
945
|
{
|
|
913
946
|
"data-slot": "select-content",
|
|
@@ -919,8 +952,8 @@ function SelectContent({
|
|
|
919
952
|
position,
|
|
920
953
|
...props,
|
|
921
954
|
children: [
|
|
922
|
-
/* @__PURE__ */
|
|
923
|
-
/* @__PURE__ */
|
|
955
|
+
/* @__PURE__ */ jsx23(SelectScrollUpButton, {}),
|
|
956
|
+
/* @__PURE__ */ jsx23(
|
|
924
957
|
SelectPrimitive.Viewport,
|
|
925
958
|
{
|
|
926
959
|
className: cn(
|
|
@@ -930,7 +963,7 @@ function SelectContent({
|
|
|
930
963
|
children
|
|
931
964
|
}
|
|
932
965
|
),
|
|
933
|
-
/* @__PURE__ */
|
|
966
|
+
/* @__PURE__ */ jsx23(SelectScrollDownButton, {})
|
|
934
967
|
]
|
|
935
968
|
}
|
|
936
969
|
) });
|
|
@@ -950,8 +983,8 @@ function SelectItem({
|
|
|
950
983
|
),
|
|
951
984
|
...props,
|
|
952
985
|
children: [
|
|
953
|
-
/* @__PURE__ */
|
|
954
|
-
/* @__PURE__ */
|
|
986
|
+
/* @__PURE__ */ jsx23("span", { className: "absolute right-2 flex size-3.5 items-center justify-center", children: /* @__PURE__ */ jsx23(SelectPrimitive.ItemIndicator, { children: /* @__PURE__ */ jsx23(Check, { className: "size-4" }) }) }),
|
|
987
|
+
/* @__PURE__ */ jsx23(SelectPrimitive.ItemText, { children })
|
|
955
988
|
]
|
|
956
989
|
}
|
|
957
990
|
);
|
|
@@ -960,7 +993,7 @@ function SelectScrollUpButton({
|
|
|
960
993
|
className,
|
|
961
994
|
...props
|
|
962
995
|
}) {
|
|
963
|
-
return /* @__PURE__ */
|
|
996
|
+
return /* @__PURE__ */ jsx23(
|
|
964
997
|
SelectPrimitive.ScrollUpButton,
|
|
965
998
|
{
|
|
966
999
|
"data-slot": "select-scroll-up-button",
|
|
@@ -969,7 +1002,7 @@ function SelectScrollUpButton({
|
|
|
969
1002
|
className
|
|
970
1003
|
),
|
|
971
1004
|
...props,
|
|
972
|
-
children: /* @__PURE__ */
|
|
1005
|
+
children: /* @__PURE__ */ jsx23(ChevronUp, { className: "size-4" })
|
|
973
1006
|
}
|
|
974
1007
|
);
|
|
975
1008
|
}
|
|
@@ -977,7 +1010,7 @@ function SelectScrollDownButton({
|
|
|
977
1010
|
className,
|
|
978
1011
|
...props
|
|
979
1012
|
}) {
|
|
980
|
-
return /* @__PURE__ */
|
|
1013
|
+
return /* @__PURE__ */ jsx23(
|
|
981
1014
|
SelectPrimitive.ScrollDownButton,
|
|
982
1015
|
{
|
|
983
1016
|
"data-slot": "select-scroll-down-button",
|
|
@@ -986,13 +1019,13 @@ function SelectScrollDownButton({
|
|
|
986
1019
|
className
|
|
987
1020
|
),
|
|
988
1021
|
...props,
|
|
989
|
-
children: /* @__PURE__ */
|
|
1022
|
+
children: /* @__PURE__ */ jsx23(ChevronDown, { className: "size-4" })
|
|
990
1023
|
}
|
|
991
1024
|
);
|
|
992
1025
|
}
|
|
993
1026
|
|
|
994
1027
|
// src/components/Global/SelectDropdown.tsx
|
|
995
|
-
import { jsx as
|
|
1028
|
+
import { jsx as jsx24, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
996
1029
|
function SelectDropdown({
|
|
997
1030
|
options,
|
|
998
1031
|
placeholder = "Select an option",
|
|
@@ -1005,22 +1038,22 @@ function SelectDropdown({
|
|
|
1005
1038
|
style
|
|
1006
1039
|
}) {
|
|
1007
1040
|
return /* @__PURE__ */ jsxs11(Select, { value, onValueChange: onChange, disabled, children: [
|
|
1008
|
-
/* @__PURE__ */
|
|
1041
|
+
/* @__PURE__ */ jsx24(
|
|
1009
1042
|
SelectTrigger,
|
|
1010
1043
|
{
|
|
1011
1044
|
id,
|
|
1012
1045
|
className,
|
|
1013
1046
|
style: style ?? {},
|
|
1014
1047
|
"aria-readonly": readOnly,
|
|
1015
|
-
children: /* @__PURE__ */
|
|
1048
|
+
children: /* @__PURE__ */ jsx24(SelectValue, { placeholder })
|
|
1016
1049
|
}
|
|
1017
1050
|
),
|
|
1018
|
-
/* @__PURE__ */
|
|
1051
|
+
/* @__PURE__ */ jsx24(SelectContent, { children: options.map((opt) => /* @__PURE__ */ jsx24(SelectItem, { value: opt.value, children: opt.label }, opt.value)) })
|
|
1019
1052
|
] });
|
|
1020
1053
|
}
|
|
1021
1054
|
|
|
1022
1055
|
// src/components/Inputs/Dropdown/Dropdown.tsx
|
|
1023
|
-
import { Fragment as Fragment7, jsx as
|
|
1056
|
+
import { Fragment as Fragment7, jsx as jsx25, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1024
1057
|
var Dropdown = ({ className, style, ...props }) => {
|
|
1025
1058
|
const text = Array.isArray(props.text) ? props.text : [props.text ?? "Default"];
|
|
1026
1059
|
const placeholder = props.placeholder ? props.placeholder : "Placeholder text";
|
|
@@ -1048,7 +1081,7 @@ var Dropdown = ({ className, style, ...props }) => {
|
|
|
1048
1081
|
}
|
|
1049
1082
|
};
|
|
1050
1083
|
return /* @__PURE__ */ jsxs12(Fragment7, { children: [
|
|
1051
|
-
/* @__PURE__ */
|
|
1084
|
+
/* @__PURE__ */ jsx25("div", { className: "flex gap-3 flex-col", children: /* @__PURE__ */ jsx25(
|
|
1052
1085
|
SelectDropdown,
|
|
1053
1086
|
{
|
|
1054
1087
|
options: formatList,
|
|
@@ -1065,18 +1098,19 @@ var Dropdown = ({ className, style, ...props }) => {
|
|
|
1065
1098
|
pattern: regexPattern || void 0
|
|
1066
1099
|
}
|
|
1067
1100
|
) }),
|
|
1068
|
-
error && /* @__PURE__ */
|
|
1101
|
+
error && /* @__PURE__ */ jsx25("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
1069
1102
|
] });
|
|
1070
1103
|
};
|
|
1104
|
+
var Dropdown_default = Dropdown;
|
|
1071
1105
|
|
|
1072
1106
|
// src/components/ui/switch.tsx
|
|
1073
1107
|
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
1074
|
-
import { jsx as
|
|
1108
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
1075
1109
|
function Switch({
|
|
1076
1110
|
className,
|
|
1077
1111
|
...props
|
|
1078
1112
|
}) {
|
|
1079
|
-
return /* @__PURE__ */
|
|
1113
|
+
return /* @__PURE__ */ jsx26(
|
|
1080
1114
|
SwitchPrimitive.Root,
|
|
1081
1115
|
{
|
|
1082
1116
|
"data-slot": "switch",
|
|
@@ -1085,7 +1119,7 @@ function Switch({
|
|
|
1085
1119
|
className
|
|
1086
1120
|
),
|
|
1087
1121
|
...props,
|
|
1088
|
-
children: /* @__PURE__ */
|
|
1122
|
+
children: /* @__PURE__ */ jsx26(
|
|
1089
1123
|
SwitchPrimitive.Thumb,
|
|
1090
1124
|
{
|
|
1091
1125
|
"data-slot": "switch-thumb",
|
|
@@ -1099,20 +1133,21 @@ function Switch({
|
|
|
1099
1133
|
}
|
|
1100
1134
|
|
|
1101
1135
|
// src/components/Inputs/SwitchToggle/SwitchToggle.tsx
|
|
1102
|
-
import { jsx as
|
|
1136
|
+
import { jsx as jsx27, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1103
1137
|
var SwitchToggle = ({ className, style, ...props }) => {
|
|
1104
1138
|
const text = Array.isArray(props.text) ? props.text : [props.text ?? "Subscribe"];
|
|
1105
|
-
return /* @__PURE__ */
|
|
1106
|
-
/* @__PURE__ */
|
|
1107
|
-
/* @__PURE__ */
|
|
1139
|
+
return /* @__PURE__ */ jsx27("div", { className, style, children: text?.map((item, index) => /* @__PURE__ */ jsxs13("div", { className: "flex items-center space-x-2 mb-2", children: [
|
|
1140
|
+
/* @__PURE__ */ jsx27(Switch, { id: `switch-${index}` }),
|
|
1141
|
+
/* @__PURE__ */ jsx27(Label, { htmlFor: `switch-${index}`, children: item })
|
|
1108
1142
|
] }, index)) });
|
|
1109
1143
|
};
|
|
1144
|
+
var SwitchToggle_default = SwitchToggle;
|
|
1110
1145
|
|
|
1111
1146
|
// src/components/Inputs/PhoneInput/PhoneInput.tsx
|
|
1112
1147
|
import * as React9 from "react";
|
|
1113
1148
|
import { PhoneInput as PhoneInputField } from "react-international-phone";
|
|
1114
1149
|
import "react-international-phone/style.css";
|
|
1115
|
-
import { Fragment as Fragment8, jsx as
|
|
1150
|
+
import { Fragment as Fragment8, jsx as jsx28, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1116
1151
|
var PhoneInput = ({ className, style, ...props }) => {
|
|
1117
1152
|
const placeholder = props.placeholder ?? "Enter phone number";
|
|
1118
1153
|
const [value, setValue] = React9.useState("");
|
|
@@ -1135,7 +1170,7 @@ var PhoneInput = ({ className, style, ...props }) => {
|
|
|
1135
1170
|
}
|
|
1136
1171
|
};
|
|
1137
1172
|
return /* @__PURE__ */ jsxs14(Fragment8, { children: [
|
|
1138
|
-
/* @__PURE__ */
|
|
1173
|
+
/* @__PURE__ */ jsx28(
|
|
1139
1174
|
PhoneInputField,
|
|
1140
1175
|
{
|
|
1141
1176
|
defaultCountry: "in",
|
|
@@ -1152,13 +1187,14 @@ var PhoneInput = ({ className, style, ...props }) => {
|
|
|
1152
1187
|
style
|
|
1153
1188
|
}
|
|
1154
1189
|
),
|
|
1155
|
-
error && /* @__PURE__ */
|
|
1190
|
+
error && /* @__PURE__ */ jsx28("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
1156
1191
|
] });
|
|
1157
1192
|
};
|
|
1193
|
+
var PhoneInput_default = PhoneInput;
|
|
1158
1194
|
|
|
1159
1195
|
// src/components/Inputs/SearchInput/SearchInput.tsx
|
|
1160
1196
|
import * as React10 from "react";
|
|
1161
|
-
import { Fragment as Fragment9, jsx as
|
|
1197
|
+
import { Fragment as Fragment9, jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1162
1198
|
var SearchInput = ({ className, style, ...props }) => {
|
|
1163
1199
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
1164
1200
|
const regexPattern = props.regexPattern ?? "";
|
|
@@ -1185,8 +1221,8 @@ var SearchInput = ({ className, style, ...props }) => {
|
|
|
1185
1221
|
};
|
|
1186
1222
|
return /* @__PURE__ */ jsxs15(Fragment9, { children: [
|
|
1187
1223
|
/* @__PURE__ */ jsxs15("div", { className: "flex justify-start items-center relative", children: [
|
|
1188
|
-
/* @__PURE__ */
|
|
1189
|
-
/* @__PURE__ */
|
|
1224
|
+
/* @__PURE__ */ jsx29(Search, { className: "absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-[#BDBDBD]" }),
|
|
1225
|
+
/* @__PURE__ */ jsx29(
|
|
1190
1226
|
Input,
|
|
1191
1227
|
{
|
|
1192
1228
|
type: "text",
|
|
@@ -1205,17 +1241,18 @@ var SearchInput = ({ className, style, ...props }) => {
|
|
|
1205
1241
|
}
|
|
1206
1242
|
)
|
|
1207
1243
|
] }),
|
|
1208
|
-
error && /* @__PURE__ */
|
|
1244
|
+
error && /* @__PURE__ */ jsx29("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
1209
1245
|
] });
|
|
1210
1246
|
};
|
|
1247
|
+
var SearchInput_default = SearchInput;
|
|
1211
1248
|
|
|
1212
1249
|
// src/components/Inputs/FileInput/FileInput.tsx
|
|
1213
|
-
import { jsx as
|
|
1250
|
+
import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1214
1251
|
var FileInput = ({ className, style, ...props }) => {
|
|
1215
1252
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
1216
1253
|
return /* @__PURE__ */ jsxs16("div", { className: "d-flex items-center relative align-middle", children: [
|
|
1217
|
-
/* @__PURE__ */
|
|
1218
|
-
/* @__PURE__ */
|
|
1254
|
+
/* @__PURE__ */ jsx30("div", { className: "bg-[#E9E9E9] absolute px-10 text-center top-1/2 h-full justify-center items-center flex w-10 -translate-y-1/2 text-[#383838] font-[500] text-[11px]", children: "Browse" }),
|
|
1255
|
+
/* @__PURE__ */ jsx30(
|
|
1219
1256
|
Input,
|
|
1220
1257
|
{
|
|
1221
1258
|
type: "file",
|
|
@@ -1228,10 +1265,11 @@ var FileInput = ({ className, style, ...props }) => {
|
|
|
1228
1265
|
)
|
|
1229
1266
|
] });
|
|
1230
1267
|
};
|
|
1268
|
+
var FileInput_default = FileInput;
|
|
1231
1269
|
|
|
1232
1270
|
// src/components/Inputs/DatePicker/DatePicker.tsx
|
|
1233
1271
|
import React11 from "react";
|
|
1234
|
-
import { Fragment as Fragment10, jsx as
|
|
1272
|
+
import { Fragment as Fragment10, jsx as jsx31, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1235
1273
|
function DatePicker({ className, style, ...props }) {
|
|
1236
1274
|
const placeholder = props.placeholder ?? "Placeholder text";
|
|
1237
1275
|
const minimumDate = props.minimumDate ?? "none";
|
|
@@ -1271,8 +1309,8 @@ function DatePicker({ className, style, ...props }) {
|
|
|
1271
1309
|
};
|
|
1272
1310
|
return /* @__PURE__ */ jsxs17(Fragment10, { children: [
|
|
1273
1311
|
/* @__PURE__ */ jsxs17("div", { className: "flex justify-start items-center relative", children: [
|
|
1274
|
-
/* @__PURE__ */
|
|
1275
|
-
/* @__PURE__ */
|
|
1312
|
+
/* @__PURE__ */ jsx31(Calendar, { className: "absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-[#BDBDBD]" }),
|
|
1313
|
+
/* @__PURE__ */ jsx31(
|
|
1276
1314
|
Input,
|
|
1277
1315
|
{
|
|
1278
1316
|
type: "date",
|
|
@@ -1291,7 +1329,7 @@ function DatePicker({ className, style, ...props }) {
|
|
|
1291
1329
|
}
|
|
1292
1330
|
)
|
|
1293
1331
|
] }),
|
|
1294
|
-
error && /* @__PURE__ */
|
|
1332
|
+
error && /* @__PURE__ */ jsx31("p", { className: "mt-1 text-xs text-red-500", children: error })
|
|
1295
1333
|
] });
|
|
1296
1334
|
}
|
|
1297
1335
|
|
|
@@ -1302,7 +1340,7 @@ import { addDays, format } from "date-fns";
|
|
|
1302
1340
|
// src/components/ui/calendar.tsx
|
|
1303
1341
|
import * as React12 from "react";
|
|
1304
1342
|
import { DayPicker, getDefaultClassNames } from "react-day-picker";
|
|
1305
|
-
import { jsx as
|
|
1343
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
1306
1344
|
function Calendar2({
|
|
1307
1345
|
className,
|
|
1308
1346
|
classNames,
|
|
@@ -1314,7 +1352,7 @@ function Calendar2({
|
|
|
1314
1352
|
...props
|
|
1315
1353
|
}) {
|
|
1316
1354
|
const defaultClassNames = getDefaultClassNames();
|
|
1317
|
-
return /* @__PURE__ */
|
|
1355
|
+
return /* @__PURE__ */ jsx32(
|
|
1318
1356
|
DayPicker,
|
|
1319
1357
|
{
|
|
1320
1358
|
showOutsideDays,
|
|
@@ -1413,7 +1451,7 @@ function Calendar2({
|
|
|
1413
1451
|
},
|
|
1414
1452
|
components: {
|
|
1415
1453
|
Root: ({ className: className2, rootRef, ...props2 }) => {
|
|
1416
|
-
return /* @__PURE__ */
|
|
1454
|
+
return /* @__PURE__ */ jsx32(
|
|
1417
1455
|
"div",
|
|
1418
1456
|
{
|
|
1419
1457
|
"data-slot": "calendar",
|
|
@@ -1425,10 +1463,10 @@ function Calendar2({
|
|
|
1425
1463
|
},
|
|
1426
1464
|
Chevron: ({ className: className2, orientation, ...props2 }) => {
|
|
1427
1465
|
if (orientation === "left") {
|
|
1428
|
-
return /* @__PURE__ */
|
|
1466
|
+
return /* @__PURE__ */ jsx32(ChevronLeft, { className: cn("size-4", className2), ...props2 });
|
|
1429
1467
|
}
|
|
1430
1468
|
if (orientation === "right") {
|
|
1431
|
-
return /* @__PURE__ */
|
|
1469
|
+
return /* @__PURE__ */ jsx32(
|
|
1432
1470
|
ChevronRight,
|
|
1433
1471
|
{
|
|
1434
1472
|
className: cn("size-4", className2),
|
|
@@ -1436,11 +1474,11 @@ function Calendar2({
|
|
|
1436
1474
|
}
|
|
1437
1475
|
);
|
|
1438
1476
|
}
|
|
1439
|
-
return /* @__PURE__ */
|
|
1477
|
+
return /* @__PURE__ */ jsx32(ChevronDown, { className: cn("size-4", className2), ...props2 });
|
|
1440
1478
|
},
|
|
1441
1479
|
DayButton: CalendarDayButton,
|
|
1442
1480
|
WeekNumber: ({ children, ...props2 }) => {
|
|
1443
|
-
return /* @__PURE__ */
|
|
1481
|
+
return /* @__PURE__ */ jsx32("td", { ...props2, children: /* @__PURE__ */ jsx32("div", { className: "flex size-(--cell-size) items-center justify-center text-center", children }) });
|
|
1444
1482
|
},
|
|
1445
1483
|
...components
|
|
1446
1484
|
},
|
|
@@ -1459,7 +1497,7 @@ function CalendarDayButton({
|
|
|
1459
1497
|
React12.useEffect(() => {
|
|
1460
1498
|
if (modifiers.focused) ref.current?.focus();
|
|
1461
1499
|
}, [modifiers.focused]);
|
|
1462
|
-
return /* @__PURE__ */
|
|
1500
|
+
return /* @__PURE__ */ jsx32(
|
|
1463
1501
|
Button,
|
|
1464
1502
|
{
|
|
1465
1503
|
ref,
|
|
@@ -1482,16 +1520,16 @@ function CalendarDayButton({
|
|
|
1482
1520
|
|
|
1483
1521
|
// src/components/ui/popover.tsx
|
|
1484
1522
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
1485
|
-
import { jsx as
|
|
1523
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
1486
1524
|
function Popover({
|
|
1487
1525
|
...props
|
|
1488
1526
|
}) {
|
|
1489
|
-
return /* @__PURE__ */
|
|
1527
|
+
return /* @__PURE__ */ jsx33(PopoverPrimitive.Root, { "data-slot": "popover", ...props });
|
|
1490
1528
|
}
|
|
1491
1529
|
function PopoverTrigger({
|
|
1492
1530
|
...props
|
|
1493
1531
|
}) {
|
|
1494
|
-
return /* @__PURE__ */
|
|
1532
|
+
return /* @__PURE__ */ jsx33(PopoverPrimitive.Trigger, { "data-slot": "popover-trigger", ...props });
|
|
1495
1533
|
}
|
|
1496
1534
|
function PopoverContent({
|
|
1497
1535
|
className,
|
|
@@ -1499,7 +1537,7 @@ function PopoverContent({
|
|
|
1499
1537
|
sideOffset = 4,
|
|
1500
1538
|
...props
|
|
1501
1539
|
}) {
|
|
1502
|
-
return /* @__PURE__ */
|
|
1540
|
+
return /* @__PURE__ */ jsx33(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx33(
|
|
1503
1541
|
PopoverPrimitive.Content,
|
|
1504
1542
|
{
|
|
1505
1543
|
"data-slot": "popover-content",
|
|
@@ -1515,14 +1553,14 @@ function PopoverContent({
|
|
|
1515
1553
|
}
|
|
1516
1554
|
|
|
1517
1555
|
// src/components/Inputs/DateRange/DateRange.tsx
|
|
1518
|
-
import { Fragment as Fragment11, jsx as
|
|
1556
|
+
import { Fragment as Fragment11, jsx as jsx34, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1519
1557
|
var DateRange = ({ className, style }) => {
|
|
1520
1558
|
const [date, setDate] = React13.useState({
|
|
1521
1559
|
from: /* @__PURE__ */ new Date(),
|
|
1522
1560
|
to: addDays(/* @__PURE__ */ new Date(), 7)
|
|
1523
1561
|
});
|
|
1524
|
-
return /* @__PURE__ */
|
|
1525
|
-
/* @__PURE__ */
|
|
1562
|
+
return /* @__PURE__ */ jsx34("div", { className, style, children: /* @__PURE__ */ jsxs18(Popover, { children: [
|
|
1563
|
+
/* @__PURE__ */ jsx34(PopoverTrigger, { asChild: true, children: /* @__PURE__ */ jsx34(
|
|
1526
1564
|
Button,
|
|
1527
1565
|
{
|
|
1528
1566
|
id: "date",
|
|
@@ -1536,10 +1574,10 @@ var DateRange = ({ className, style }) => {
|
|
|
1536
1574
|
" -",
|
|
1537
1575
|
" ",
|
|
1538
1576
|
format(date.to, "LLL dd, y")
|
|
1539
|
-
] }) : format(date.from, "LLL dd, y") : /* @__PURE__ */
|
|
1577
|
+
] }) : format(date.from, "LLL dd, y") : /* @__PURE__ */ jsx34("span", { children: "Pick a date range" })
|
|
1540
1578
|
}
|
|
1541
1579
|
) }),
|
|
1542
|
-
/* @__PURE__ */
|
|
1580
|
+
/* @__PURE__ */ jsx34(PopoverContent, { className: "w-auto p-0", align: "start", children: /* @__PURE__ */ jsx34(
|
|
1543
1581
|
Calendar2,
|
|
1544
1582
|
{
|
|
1545
1583
|
mode: "range",
|
|
@@ -1561,14 +1599,14 @@ import {
|
|
|
1561
1599
|
} from "@tanstack/react-table";
|
|
1562
1600
|
|
|
1563
1601
|
// src/components/ui/table.tsx
|
|
1564
|
-
import { jsx as
|
|
1602
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
1565
1603
|
function Table({ className, ...props }) {
|
|
1566
|
-
return /* @__PURE__ */
|
|
1604
|
+
return /* @__PURE__ */ jsx35(
|
|
1567
1605
|
"div",
|
|
1568
1606
|
{
|
|
1569
1607
|
"data-slot": "table-container",
|
|
1570
1608
|
className: "relative w-full overflow-x-auto rounded-md border border-gray-200 bg-white",
|
|
1571
|
-
children: /* @__PURE__ */
|
|
1609
|
+
children: /* @__PURE__ */ jsx35(
|
|
1572
1610
|
"table",
|
|
1573
1611
|
{
|
|
1574
1612
|
"data-slot": "table",
|
|
@@ -1580,7 +1618,7 @@ function Table({ className, ...props }) {
|
|
|
1580
1618
|
);
|
|
1581
1619
|
}
|
|
1582
1620
|
function TableHeader({ className, ...props }) {
|
|
1583
|
-
return /* @__PURE__ */
|
|
1621
|
+
return /* @__PURE__ */ jsx35(
|
|
1584
1622
|
"thead",
|
|
1585
1623
|
{
|
|
1586
1624
|
"data-slot": "table-header",
|
|
@@ -1593,7 +1631,7 @@ function TableHeader({ className, ...props }) {
|
|
|
1593
1631
|
);
|
|
1594
1632
|
}
|
|
1595
1633
|
function TableBody({ className, ...props }) {
|
|
1596
|
-
return /* @__PURE__ */
|
|
1634
|
+
return /* @__PURE__ */ jsx35(
|
|
1597
1635
|
"tbody",
|
|
1598
1636
|
{
|
|
1599
1637
|
"data-slot": "table-body",
|
|
@@ -1606,7 +1644,7 @@ function TableBody({ className, ...props }) {
|
|
|
1606
1644
|
);
|
|
1607
1645
|
}
|
|
1608
1646
|
function TableRow({ className, ...props }) {
|
|
1609
|
-
return /* @__PURE__ */
|
|
1647
|
+
return /* @__PURE__ */ jsx35(
|
|
1610
1648
|
"tr",
|
|
1611
1649
|
{
|
|
1612
1650
|
"data-slot": "table-row",
|
|
@@ -1619,7 +1657,7 @@ function TableRow({ className, ...props }) {
|
|
|
1619
1657
|
);
|
|
1620
1658
|
}
|
|
1621
1659
|
function TableHead({ className, ...props }) {
|
|
1622
|
-
return /* @__PURE__ */
|
|
1660
|
+
return /* @__PURE__ */ jsx35(
|
|
1623
1661
|
"th",
|
|
1624
1662
|
{
|
|
1625
1663
|
"data-slot": "table-head",
|
|
@@ -1632,7 +1670,7 @@ function TableHead({ className, ...props }) {
|
|
|
1632
1670
|
);
|
|
1633
1671
|
}
|
|
1634
1672
|
function TableCell({ className, ...props }) {
|
|
1635
|
-
return /* @__PURE__ */
|
|
1673
|
+
return /* @__PURE__ */ jsx35(
|
|
1636
1674
|
"td",
|
|
1637
1675
|
{
|
|
1638
1676
|
"data-slot": "table-cell",
|
|
@@ -1646,7 +1684,7 @@ function TableCell({ className, ...props }) {
|
|
|
1646
1684
|
}
|
|
1647
1685
|
|
|
1648
1686
|
// src/components/ui/data-table.tsx
|
|
1649
|
-
import { Fragment as Fragment12, jsx as
|
|
1687
|
+
import { Fragment as Fragment12, jsx as jsx36, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1650
1688
|
function DataTable({
|
|
1651
1689
|
columns,
|
|
1652
1690
|
rowActions,
|
|
@@ -1671,14 +1709,14 @@ function DataTable({
|
|
|
1671
1709
|
onCellClick(rowData, columnId);
|
|
1672
1710
|
}
|
|
1673
1711
|
};
|
|
1674
|
-
return /* @__PURE__ */
|
|
1675
|
-
/* @__PURE__ */
|
|
1676
|
-
return /* @__PURE__ */
|
|
1712
|
+
return /* @__PURE__ */ jsx36("div", { className: "overflow-hidden rounded-md border w-full", children: /* @__PURE__ */ jsxs19(Table, { children: [
|
|
1713
|
+
/* @__PURE__ */ jsx36(TableHeader, { children: table.getHeaderGroups().map((headerGroup) => /* @__PURE__ */ jsx36(TableRow, { children: headerGroup.headers.map((header) => {
|
|
1714
|
+
return /* @__PURE__ */ jsx36(TableHead, { children: header.isPlaceholder ? null : flexRender(
|
|
1677
1715
|
header.column.columnDef.header,
|
|
1678
1716
|
header.getContext()
|
|
1679
1717
|
) }, header.id);
|
|
1680
1718
|
}) }, headerGroup.id)) }),
|
|
1681
|
-
/* @__PURE__ */
|
|
1719
|
+
/* @__PURE__ */ jsx36(TableBody, { children: loading ? /* @__PURE__ */ jsx36(TableRow, { children: /* @__PURE__ */ jsx36(TableCell, { colSpan: columns.length, className: "h-24 text-center", children: "Loading..." }) }) : /* @__PURE__ */ jsx36(Fragment12, { children: table.getRowModel().rows?.length ? table.getRowModel().rows.map((row) => /* @__PURE__ */ jsxs19(
|
|
1682
1720
|
TableRow,
|
|
1683
1721
|
{
|
|
1684
1722
|
"data-state": row.getIsSelected() && "selected",
|
|
@@ -1688,7 +1726,7 @@ function DataTable({
|
|
|
1688
1726
|
const isCellClickable = cellClickEnabled(row.original, cell.column.id);
|
|
1689
1727
|
const dynamicClass = cell.column.columnDef.meta?.cellClass || "";
|
|
1690
1728
|
const dynamicStyle = cell.column.columnDef.meta?.cellStyle || {};
|
|
1691
|
-
return /* @__PURE__ */
|
|
1729
|
+
return /* @__PURE__ */ jsx36(
|
|
1692
1730
|
TableCell,
|
|
1693
1731
|
{
|
|
1694
1732
|
className: `${dynamicClass} ${isCellClickable ? "underline cursor-pointer" : ""}`,
|
|
@@ -1703,36 +1741,36 @@ function DataTable({
|
|
|
1703
1741
|
cell.id
|
|
1704
1742
|
);
|
|
1705
1743
|
}),
|
|
1706
|
-
rowActions.length > 0 && /* @__PURE__ */
|
|
1744
|
+
rowActions.length > 0 && /* @__PURE__ */ jsx36("div", { className: "absolute top-0 right-0 bg-white py-3 min-w-[100px] z-50 shadow-md flex items-center justify-center gap-3 p-2 opacity-0 group-hover:opacity-100 duration-300 h-full", children: rowActions.map((action, index) => /* @__PURE__ */ jsx36("p", { className: "text-[#383838] text-[12px] cursor-pointer font-[400]", children: action.header }, index)) })
|
|
1707
1745
|
]
|
|
1708
1746
|
},
|
|
1709
1747
|
row.id
|
|
1710
|
-
)) : /* @__PURE__ */
|
|
1748
|
+
)) : /* @__PURE__ */ jsx36(TableRow, { children: /* @__PURE__ */ jsx36(TableCell, { colSpan: columns.length, className: "h-24 text-center", children: "No results." }) }) }) })
|
|
1711
1749
|
] }) });
|
|
1712
1750
|
}
|
|
1713
1751
|
|
|
1714
1752
|
// src/components/DataDisplay/Table/Table.tsx
|
|
1715
|
-
import { jsx as
|
|
1753
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
1716
1754
|
var Table2 = ({ columns, data, rowActions, className, style }) => {
|
|
1717
1755
|
const rawColumns = Array.isArray(columns) ? columns : [];
|
|
1718
1756
|
const rawData = Array.isArray(data) ? data : [];
|
|
1719
1757
|
const rawRowActions = Array.isArray(rowActions) ? rowActions : [];
|
|
1720
|
-
return /* @__PURE__ */
|
|
1758
|
+
return /* @__PURE__ */ jsx37("div", { className, style, children: /* @__PURE__ */ jsx37(DataTable, { columns: rawColumns, data: rawData, rowActions: rawRowActions }) });
|
|
1721
1759
|
};
|
|
1722
1760
|
var Table_default = Table2;
|
|
1723
1761
|
|
|
1724
1762
|
// src/components/ui/dropdown-menu.tsx
|
|
1725
1763
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
1726
|
-
import { jsx as
|
|
1764
|
+
import { jsx as jsx38, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1727
1765
|
function DropdownMenu({
|
|
1728
1766
|
...props
|
|
1729
1767
|
}) {
|
|
1730
|
-
return /* @__PURE__ */
|
|
1768
|
+
return /* @__PURE__ */ jsx38(DropdownMenuPrimitive.Root, { "data-slot": "dropdown-menu", ...props });
|
|
1731
1769
|
}
|
|
1732
1770
|
function DropdownMenuTrigger({
|
|
1733
1771
|
...props
|
|
1734
1772
|
}) {
|
|
1735
|
-
return /* @__PURE__ */
|
|
1773
|
+
return /* @__PURE__ */ jsx38(
|
|
1736
1774
|
DropdownMenuPrimitive.Trigger,
|
|
1737
1775
|
{
|
|
1738
1776
|
"data-slot": "dropdown-menu-trigger",
|
|
@@ -1745,7 +1783,7 @@ function DropdownMenuContent({
|
|
|
1745
1783
|
sideOffset = 4,
|
|
1746
1784
|
...props
|
|
1747
1785
|
}) {
|
|
1748
|
-
return /* @__PURE__ */
|
|
1786
|
+
return /* @__PURE__ */ jsx38(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx38(
|
|
1749
1787
|
DropdownMenuPrimitive.Content,
|
|
1750
1788
|
{
|
|
1751
1789
|
"data-slot": "dropdown-menu-content",
|
|
@@ -1764,7 +1802,7 @@ function DropdownMenuItem({
|
|
|
1764
1802
|
variant = "default",
|
|
1765
1803
|
...props
|
|
1766
1804
|
}) {
|
|
1767
|
-
return /* @__PURE__ */
|
|
1805
|
+
return /* @__PURE__ */ jsx38(
|
|
1768
1806
|
DropdownMenuPrimitive.Item,
|
|
1769
1807
|
{
|
|
1770
1808
|
"data-slot": "dropdown-menu-item",
|
|
@@ -1780,7 +1818,7 @@ function DropdownMenuItem({
|
|
|
1780
1818
|
}
|
|
1781
1819
|
|
|
1782
1820
|
// src/components/Navigation/Tabs/Tabs.tsx
|
|
1783
|
-
import { jsx as
|
|
1821
|
+
import { jsx as jsx39, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1784
1822
|
var Tabs = ({ tabs, className, style, pathname, LinkComponent }) => {
|
|
1785
1823
|
const rawTabs = Array.isArray(tabs) ? tabs : [];
|
|
1786
1824
|
const baseClasses = "text-[12px] text-[#E9E9E9] p-2 text-center rounded-md transition-colors border-none outline-none focus:outline-none focus:ring-0 focus:ring-offset-0 cursor-pointer select-none ";
|
|
@@ -1790,7 +1828,7 @@ var Tabs = ({ tabs, className, style, pathname, LinkComponent }) => {
|
|
|
1790
1828
|
if (!path) return false;
|
|
1791
1829
|
return pathname === path || path !== "/" && pathname?.startsWith(path);
|
|
1792
1830
|
};
|
|
1793
|
-
return /* @__PURE__ */
|
|
1831
|
+
return /* @__PURE__ */ jsx39("div", { className, style, children: rawTabs.map((tab, index) => {
|
|
1794
1832
|
const finalClasses = [
|
|
1795
1833
|
baseClasses,
|
|
1796
1834
|
isActive(tab.href) ? activeClasses : hoverClasses,
|
|
@@ -1805,22 +1843,22 @@ var Tabs = ({ tabs, className, style, pathname, LinkComponent }) => {
|
|
|
1805
1843
|
className: `${finalClasses} inline-flex items-center gap-1`,
|
|
1806
1844
|
children: [
|
|
1807
1845
|
tab.header,
|
|
1808
|
-
/* @__PURE__ */
|
|
1846
|
+
/* @__PURE__ */ jsx39(ChevronDown, { className: "h-4 w-4 opacity-80" })
|
|
1809
1847
|
]
|
|
1810
1848
|
}
|
|
1811
1849
|
),
|
|
1812
|
-
/* @__PURE__ */
|
|
1850
|
+
/* @__PURE__ */ jsx39(
|
|
1813
1851
|
DropdownMenuContent,
|
|
1814
1852
|
{
|
|
1815
1853
|
align: "start",
|
|
1816
1854
|
sideOffset: 6,
|
|
1817
1855
|
className: "z-50 min-w-[160px] rounded-md border border-gray-200 bg-white p-1 shadow-lg",
|
|
1818
|
-
children: tab.children.map((item) => /* @__PURE__ */
|
|
1856
|
+
children: tab.children.map((item) => /* @__PURE__ */ jsx39(
|
|
1819
1857
|
DropdownMenuItem,
|
|
1820
1858
|
{
|
|
1821
1859
|
asChild: true,
|
|
1822
1860
|
className: "cursor-pointer rounded-sm px-3 py-2 text-[12px] text-gray-800 hover:bg-gray-100 focus:bg-gray-100",
|
|
1823
|
-
children: LinkComponent ? /* @__PURE__ */
|
|
1861
|
+
children: LinkComponent ? /* @__PURE__ */ jsx39(LinkComponent, { href: item.href || "#", children: item.header }) : item.header
|
|
1824
1862
|
},
|
|
1825
1863
|
item.id
|
|
1826
1864
|
))
|
|
@@ -1828,19 +1866,19 @@ var Tabs = ({ tabs, className, style, pathname, LinkComponent }) => {
|
|
|
1828
1866
|
)
|
|
1829
1867
|
] }, index);
|
|
1830
1868
|
}
|
|
1831
|
-
return tab.url && LinkComponent ? /* @__PURE__ */
|
|
1869
|
+
return tab.url && LinkComponent ? /* @__PURE__ */ jsx39(LinkComponent, { href: tab.url, className: finalClasses, style: tab.style, children: tab.header }, index) : /* @__PURE__ */ jsx39("div", { className: finalClasses, style: tab.style, role: "button", tabIndex: 0, children: tab.header }, index);
|
|
1832
1870
|
}) });
|
|
1833
1871
|
};
|
|
1834
1872
|
var Tabs_default = Tabs;
|
|
1835
1873
|
|
|
1836
1874
|
// src/components/Navigation/Stages/Stages.tsx
|
|
1837
1875
|
import React14 from "react";
|
|
1838
|
-
import { jsx as
|
|
1876
|
+
import { jsx as jsx40, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1839
1877
|
var StagesComponent = ({ stages, isShowBtn, buttonText, className, style }) => {
|
|
1840
|
-
return /* @__PURE__ */
|
|
1841
|
-
/* @__PURE__ */
|
|
1842
|
-
/* @__PURE__ */
|
|
1843
|
-
/* @__PURE__ */
|
|
1878
|
+
return /* @__PURE__ */ jsx40("div", { className, style, children: /* @__PURE__ */ jsxs22("div", { className: "flex items-center justify-between bg-gray-50 p-2 rounded-lg border border-gray-200 w-full", children: [
|
|
1879
|
+
/* @__PURE__ */ jsx40("div", { className: "flex items-center", children: /* @__PURE__ */ jsx40("button", { className: "p-2 hover:bg-gray-100 rounded", children: /* @__PURE__ */ jsx40("svg", { className: "w-4 h-4 text-gray-600", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx40("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M19 9l-7 7-7-7" }) }) }) }),
|
|
1880
|
+
/* @__PURE__ */ jsx40("div", { className: "flex items-center flex-1 px-2", children: stages?.length > 0 && stages?.map((stage, index) => /* @__PURE__ */ jsxs22(React14.Fragment, { children: [
|
|
1881
|
+
/* @__PURE__ */ jsx40(
|
|
1844
1882
|
"button",
|
|
1845
1883
|
{
|
|
1846
1884
|
className: `
|
|
@@ -1848,26 +1886,26 @@ var StagesComponent = ({ stages, isShowBtn, buttonText, className, style }) => {
|
|
|
1848
1886
|
children: stage.header
|
|
1849
1887
|
}
|
|
1850
1888
|
),
|
|
1851
|
-
index < stages.length - 1 && /* @__PURE__ */
|
|
1889
|
+
index < stages.length - 1 && /* @__PURE__ */ jsx40("div", { className: "flex-shrink-0 w-3 h-px bg-gray-300" })
|
|
1852
1890
|
] }, stage.id)) }),
|
|
1853
|
-
isShowBtn && /* @__PURE__ */
|
|
1891
|
+
isShowBtn && /* @__PURE__ */ jsx40("div", { className: "flex items-center", children: /* @__PURE__ */ jsx40("button", { className: "bg-[#034486] text-white px-6 py-2 rounded-lg text-sm font-medium transition-colors duration-200 shadow-sm", children: buttonText }) })
|
|
1854
1892
|
] }) });
|
|
1855
1893
|
};
|
|
1856
1894
|
var Stages_default = StagesComponent;
|
|
1857
1895
|
|
|
1858
1896
|
// src/components/Navigation/Spacer/Spacer.tsx
|
|
1859
|
-
import { jsx as
|
|
1897
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
1860
1898
|
var Spacer = ({ className, style }) => {
|
|
1861
|
-
return /* @__PURE__ */
|
|
1899
|
+
return /* @__PURE__ */ jsx41("div", { className: `${className}`, style });
|
|
1862
1900
|
};
|
|
1863
1901
|
var Spacer_default = Spacer;
|
|
1864
1902
|
|
|
1865
1903
|
// src/components/Navigation/Profile/Profile.tsx
|
|
1866
|
-
import { jsx as
|
|
1904
|
+
import { jsx as jsx42, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1867
1905
|
var Profile = ({ profileType, showName, userName, className, style }) => {
|
|
1868
|
-
return /* @__PURE__ */
|
|
1869
|
-
showName && /* @__PURE__ */
|
|
1870
|
-
profileType === "avatar" ? /* @__PURE__ */
|
|
1906
|
+
return /* @__PURE__ */ jsx42("div", { className, style, children: /* @__PURE__ */ jsxs23("div", { className: "flex gap-2 items-center justify-between w-30 cursor-pointer", children: [
|
|
1907
|
+
showName && /* @__PURE__ */ jsx42("h4", { className: "text-[#000000] dark:text-[#fff] text-[13px] font-[500] mb-0", children: userName }),
|
|
1908
|
+
profileType === "avatar" ? /* @__PURE__ */ jsx42(
|
|
1871
1909
|
"img",
|
|
1872
1910
|
{
|
|
1873
1911
|
src: "https://builder.development.algorithmshift.ai/images/toolset/profile.svg",
|
|
@@ -1875,16 +1913,16 @@ var Profile = ({ profileType, showName, userName, className, style }) => {
|
|
|
1875
1913
|
width: 24,
|
|
1876
1914
|
height: 24
|
|
1877
1915
|
}
|
|
1878
|
-
) : /* @__PURE__ */
|
|
1916
|
+
) : /* @__PURE__ */ jsx42("div", { className: "w-6 h-6 bg-[#12715b] rounded-full text-[#fff] text-center text-[11px] flex items-center justify-center", children: "A" })
|
|
1879
1917
|
] }) });
|
|
1880
1918
|
};
|
|
1881
1919
|
var Profile_default = Profile;
|
|
1882
1920
|
|
|
1883
1921
|
// src/components/Navigation/Notification/Notification.tsx
|
|
1884
|
-
import { jsx as
|
|
1922
|
+
import { jsx as jsx43, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1885
1923
|
var Notification = ({ className, style, badgeType, badgeCount = 0, hideBadgeWhenZero }) => {
|
|
1886
|
-
return /* @__PURE__ */
|
|
1887
|
-
/* @__PURE__ */
|
|
1924
|
+
return /* @__PURE__ */ jsx43("div", { className, style, children: /* @__PURE__ */ jsxs24("div", { className: "w-[34px] h-[34px] bg-[#E9E9E9] rounded-md text-center flex items-center justify-center relative", children: [
|
|
1925
|
+
/* @__PURE__ */ jsx43(
|
|
1888
1926
|
"img",
|
|
1889
1927
|
{
|
|
1890
1928
|
src: "https://builder.development.algorithmshift.ai/images/toolset/notification.svg",
|
|
@@ -1893,7 +1931,7 @@ var Notification = ({ className, style, badgeType, badgeCount = 0, hideBadgeWhen
|
|
|
1893
1931
|
height: 18
|
|
1894
1932
|
}
|
|
1895
1933
|
),
|
|
1896
|
-
badgeType === "number" && !(hideBadgeWhenZero && badgeCount === 0) && badgeCount > 0 ? /* @__PURE__ */
|
|
1934
|
+
badgeType === "number" && !(hideBadgeWhenZero && badgeCount === 0) && badgeCount > 0 ? /* @__PURE__ */ jsx43("span", { className: "text-[10px] text-[#fff] bg-[#FF4A4A] w-[20px] h-[20px] rounded-full absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 leading-[20px]", children: badgeCount }) : /* @__PURE__ */ jsx43("span", { className: "bg-[#FF4A4A] w-[10px] h-[10px] rounded-full absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 leading-[20px]" })
|
|
1897
1935
|
] }) });
|
|
1898
1936
|
};
|
|
1899
1937
|
var Notification_default = Notification;
|
|
@@ -1902,7 +1940,7 @@ var Notification_default = Notification;
|
|
|
1902
1940
|
var logo_placeholder_default = "data:image/png;base64,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dBvJqqioiFtuuSUmT55c6FaOq7q6Ou6666546KGHYs+ePYVu55jKy8vj+9///pe3ki408wpw1OCInIHT3syZM+P2229P4gD0qy644IK47bbbBuRD7JIlSwZNuPGF0tLSuPHGGwfdt4FfZW1BbkaMGBH33HPPoD4I/sLIkSPjRz/60aDbtPML119/fYwcObLQbUSEeQX4KgEHkHdz5syJG2+8MW93Acm3adOmxR133JHX/hcuXBgzZ87MW/3+KC8vj+uvv77QbRyTtQW5qaqqinvvvXdQh5XfNGrUqPje9743YHdAytWkSZPivPPOK3QbEWFeAb5JwAHk1bnnnhvf+c53kv8g09jYGDfffHNeXkdjY2NcdtllmdfN0mDc08LagtxUVFTEnXfeOWjOOOiLxsbGuOKKKwrdxpdKSkriuuuuK3QbEWFeAY5FwAHkTV1dXSxevHjQbMDWX9/61rfiqquuyrRmZWVlLFmyxMFtH1lbkJvi4uK49dZbo6amptCtnLJvf/vbUVdXV+g2IuLo2Qdjx44tdBvmFeA4To9PhsCgU15eHt/73veirKys0K1kav78+XHuuedmVu/qq6+OqqqqzOqdCawtyN1VV10VkyZNKnQb/VJcXBzf/e53BcFfYV4Bjs3OZkBeXHvttVFdXV3oNvLihhtuiM8++yza29v7VaehoWHQXMedEmsLcjNp0qS46KKLMq3Z29sbGzZsiE8//TS2bdsWu3btis7OzoiIGD58eIwfPz6amppi2rRpmYaQdXV1MWfOnHj33Xczq5kq8wpwfAIOIHONjY0xe/bsQreRN5WVlXHdddfFk08+2a8611xzjW+u+sjagtyUlJRk/u346tWr49VXX43W1tZj/ry9vT0+//zzWLFiRVRWVsaCBQti3rx5mV1K9k//9E/x3nvvndG3VjavACfmEhUgU0VFRXHDDTcUuo28a25ujqamplN+fmNjYzQ0NGTY0enP2oLcXXrppZntz7B///546KGH4sknnzzuQfA3tbe3x/PPPx+//e1v4/Dhw5n0MWrUqJg1a1YmtVJlXgFOzBkcQKbmzJmT103PDh06FOvXr4/NmzfHjh07Ys+ePdHR0RERR6/nraqqipqammhoaIjJkyfHmDFj8tbL5ZdfHp9++ukpPXcg7pqyd+/eWLduXWzYsCF27twZbW1tERFRVlYWtbW1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";
|
|
1903
1941
|
|
|
1904
1942
|
// src/components/Navigation/Logo/Logo.tsx
|
|
1905
|
-
import { jsx as
|
|
1943
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
1906
1944
|
var Logo = ({
|
|
1907
1945
|
className,
|
|
1908
1946
|
style,
|
|
@@ -1910,7 +1948,7 @@ var Logo = ({
|
|
|
1910
1948
|
altText = "Preview"
|
|
1911
1949
|
}) => {
|
|
1912
1950
|
if (!imageUrl) {
|
|
1913
|
-
return /* @__PURE__ */
|
|
1951
|
+
return /* @__PURE__ */ jsx44(
|
|
1914
1952
|
"div",
|
|
1915
1953
|
{
|
|
1916
1954
|
className: cn(
|
|
@@ -1918,45 +1956,44 @@ var Logo = ({
|
|
|
1918
1956
|
"p-0"
|
|
1919
1957
|
),
|
|
1920
1958
|
style,
|
|
1921
|
-
children: /* @__PURE__ */
|
|
1959
|
+
children: /* @__PURE__ */ jsx44("img", { src: logo_placeholder_default, alt: altText, className: "opacity-50", width: 150, height: 80 })
|
|
1922
1960
|
}
|
|
1923
1961
|
);
|
|
1924
1962
|
}
|
|
1925
|
-
return /* @__PURE__ */
|
|
1963
|
+
return /* @__PURE__ */ jsx44("img", { src: imageUrl, alt: altText, className, style });
|
|
1926
1964
|
};
|
|
1927
1965
|
var Logo_default = Logo;
|
|
1928
1966
|
export {
|
|
1929
|
-
Button,
|
|
1930
|
-
|
|
1967
|
+
Button_default as Button,
|
|
1968
|
+
Checkbox_default as Checkbox,
|
|
1931
1969
|
DatePicker,
|
|
1932
1970
|
DateRange_default as DateRange,
|
|
1933
|
-
Dropdown,
|
|
1934
|
-
EmailInput,
|
|
1935
|
-
FileInput,
|
|
1971
|
+
Dropdown_default as Dropdown,
|
|
1972
|
+
EmailInput_default as EmailInput,
|
|
1973
|
+
FileInput_default as FileInput,
|
|
1936
1974
|
Flex_default as FlexLayout,
|
|
1937
1975
|
Grid_default as GridLayout,
|
|
1938
1976
|
Image_default as Image,
|
|
1939
1977
|
Logo_default as Logo,
|
|
1940
|
-
MultiCheckbox,
|
|
1978
|
+
MultiCheckbox_default as MultiCheckbox,
|
|
1941
1979
|
Notification_default as Notification,
|
|
1942
|
-
NumberInput,
|
|
1943
|
-
PasswordInput,
|
|
1944
|
-
PhoneInput,
|
|
1980
|
+
NumberInput_default as NumberInput,
|
|
1981
|
+
PasswordInput_default as PasswordInput,
|
|
1982
|
+
PhoneInput_default as PhoneInput,
|
|
1945
1983
|
Profile_default as Profile,
|
|
1946
|
-
RadioInput,
|
|
1984
|
+
RadioInput_default as RadioInput,
|
|
1947
1985
|
RichText,
|
|
1948
|
-
SearchInput,
|
|
1986
|
+
SearchInput_default as SearchInput,
|
|
1949
1987
|
Shape_default as Shape,
|
|
1950
1988
|
Spacer_default as Spacer,
|
|
1951
1989
|
Stages_default as Stages,
|
|
1952
|
-
SwitchToggle,
|
|
1990
|
+
SwitchToggle_default as SwitchToggle,
|
|
1953
1991
|
Table_default as Table,
|
|
1954
1992
|
Tabs_default as Tabs,
|
|
1955
|
-
TextInput,
|
|
1956
|
-
|
|
1993
|
+
TextInput_default as TextInput,
|
|
1994
|
+
Textarea_default as Textarea,
|
|
1957
1995
|
Typography_default as Typography,
|
|
1958
|
-
UrlInput,
|
|
1959
|
-
buttonVariants,
|
|
1996
|
+
UrlInput_default as UrlInput,
|
|
1960
1997
|
cn
|
|
1961
1998
|
};
|
|
1962
1999
|
/*! Bundled license information:
|