@k8o/arte-odyssey 10.0.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
3
3
|
//#region src/components/data-display/card/interactive-card.tsx
|
|
4
4
|
const InteractiveCard = ({ children, width = "full", appearance = "shadow", ...rest }) => /* @__PURE__ */ jsx("div", {
|
|
5
5
|
...rest,
|
|
6
|
-
className: cn("rounded-xl transition-transform hover:scale-[1.02] active:scale-[0.98]", appearance === "shadow" && "shadow-sm", appearance === "bordered" && "border border-border-mute", width === "full" && "w-full", width === "fit" && "w-fit", "bg-bg-base"),
|
|
6
|
+
className: cn("rounded-xl transition-transform hover:scale-[1.02] active:scale-[0.98]", appearance === "shadow" && "shadow-sm border border-transparent dark:border-border-subtle", appearance === "bordered" && "border border-border-mute", width === "full" && "w-full", width === "fit" && "w-fit", "bg-bg-base"),
|
|
7
7
|
children
|
|
8
8
|
});
|
|
9
9
|
//#endregion
|
|
@@ -3,7 +3,7 @@ declare const CheckboxGroup: import("react").FC<{
|
|
|
3
3
|
invalid?: boolean;
|
|
4
4
|
required?: boolean;
|
|
5
5
|
name: string;
|
|
6
|
-
} & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "
|
|
6
|
+
} & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "defaultValue" | "onChange" | "className" | "style" | "name"> & {
|
|
7
7
|
children?: import("react").ReactNode | undefined;
|
|
8
8
|
} & ({
|
|
9
9
|
value: string[];
|
|
@@ -18,7 +18,7 @@ declare const CheckboxGroup: import("react").FC<{
|
|
|
18
18
|
invalid?: boolean;
|
|
19
19
|
required?: boolean;
|
|
20
20
|
name: string;
|
|
21
|
-
} & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "
|
|
21
|
+
} & Omit<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, "defaultValue" | "onChange" | "className" | "style" | "name"> & {
|
|
22
22
|
children?: import("react").ReactNode | undefined;
|
|
23
23
|
} & ({
|
|
24
24
|
value: string[];
|
|
@@ -33,7 +33,7 @@ declare const CheckboxGroup: import("react").FC<{
|
|
|
33
33
|
Item: import("react").FC<{
|
|
34
34
|
itemValue?: string;
|
|
35
35
|
label: string;
|
|
36
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "value" | "
|
|
36
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "type" | "className" | "style" | "children" | "checked" | "defaultChecked"> & ({
|
|
37
37
|
value: boolean;
|
|
38
38
|
onChange: (checked: boolean, event: import("react").ChangeEvent<HTMLInputElement>) => void;
|
|
39
39
|
defaultChecked?: never;
|
|
@@ -39,15 +39,17 @@ declare const buttonProps: z.ZodObject<{
|
|
|
39
39
|
href: z.ZodOptional<z.ZodString>;
|
|
40
40
|
}, z.core.$strip>;
|
|
41
41
|
declare const iconName: z.ZodEnum<{
|
|
42
|
-
link: "link";
|
|
43
|
-
check: "check";
|
|
44
42
|
form: "form";
|
|
45
43
|
list: "list";
|
|
44
|
+
link: "link";
|
|
45
|
+
table: "table";
|
|
46
|
+
send: "send";
|
|
47
|
+
location: "location";
|
|
48
|
+
copy: "copy";
|
|
49
|
+
check: "check";
|
|
46
50
|
plus: "plus";
|
|
47
51
|
minus: "minus";
|
|
48
52
|
close: "close";
|
|
49
|
-
copy: "copy";
|
|
50
|
-
send: "send";
|
|
51
53
|
mail: "mail";
|
|
52
54
|
subscribe: "subscribe";
|
|
53
55
|
rss: "rss";
|
|
@@ -55,9 +57,7 @@ declare const iconName: z.ZodEnum<{
|
|
|
55
57
|
"update-date": "update-date";
|
|
56
58
|
"publish-date": "publish-date";
|
|
57
59
|
"external-link": "external-link";
|
|
58
|
-
location: "location";
|
|
59
60
|
"navigation-menu": "navigation-menu";
|
|
60
|
-
table: "table";
|
|
61
61
|
view: "view";
|
|
62
62
|
"view-off": "view-off";
|
|
63
63
|
"light-mode": "light-mode";
|
|
@@ -94,15 +94,17 @@ declare const iconName: z.ZodEnum<{
|
|
|
94
94
|
}>;
|
|
95
95
|
declare const iconProps: z.ZodObject<{
|
|
96
96
|
name: z.ZodEnum<{
|
|
97
|
-
link: "link";
|
|
98
|
-
check: "check";
|
|
99
97
|
form: "form";
|
|
100
98
|
list: "list";
|
|
99
|
+
link: "link";
|
|
100
|
+
table: "table";
|
|
101
|
+
send: "send";
|
|
102
|
+
location: "location";
|
|
103
|
+
copy: "copy";
|
|
104
|
+
check: "check";
|
|
101
105
|
plus: "plus";
|
|
102
106
|
minus: "minus";
|
|
103
107
|
close: "close";
|
|
104
|
-
copy: "copy";
|
|
105
|
-
send: "send";
|
|
106
108
|
mail: "mail";
|
|
107
109
|
subscribe: "subscribe";
|
|
108
110
|
rss: "rss";
|
|
@@ -110,9 +112,7 @@ declare const iconProps: z.ZodObject<{
|
|
|
110
112
|
"update-date": "update-date";
|
|
111
113
|
"publish-date": "publish-date";
|
|
112
114
|
"external-link": "external-link";
|
|
113
|
-
location: "location";
|
|
114
115
|
"navigation-menu": "navigation-menu";
|
|
115
|
-
table: "table";
|
|
116
116
|
view: "view";
|
|
117
117
|
"view-off": "view-off";
|
|
118
118
|
"light-mode": "light-mode";
|
|
@@ -155,15 +155,17 @@ declare const iconProps: z.ZodObject<{
|
|
|
155
155
|
}, z.core.$strip>;
|
|
156
156
|
declare const iconButtonProps: z.ZodObject<{
|
|
157
157
|
icon: z.ZodEnum<{
|
|
158
|
-
link: "link";
|
|
159
|
-
check: "check";
|
|
160
158
|
form: "form";
|
|
161
159
|
list: "list";
|
|
160
|
+
link: "link";
|
|
161
|
+
table: "table";
|
|
162
|
+
send: "send";
|
|
163
|
+
location: "location";
|
|
164
|
+
copy: "copy";
|
|
165
|
+
check: "check";
|
|
162
166
|
plus: "plus";
|
|
163
167
|
minus: "minus";
|
|
164
168
|
close: "close";
|
|
165
|
-
copy: "copy";
|
|
166
|
-
send: "send";
|
|
167
169
|
mail: "mail";
|
|
168
170
|
subscribe: "subscribe";
|
|
169
171
|
rss: "rss";
|
|
@@ -171,9 +173,7 @@ declare const iconButtonProps: z.ZodObject<{
|
|
|
171
173
|
"update-date": "update-date";
|
|
172
174
|
"publish-date": "publish-date";
|
|
173
175
|
"external-link": "external-link";
|
|
174
|
-
location: "location";
|
|
175
176
|
"navigation-menu": "navigation-menu";
|
|
176
|
-
table: "table";
|
|
177
177
|
view: "view";
|
|
178
178
|
"view-off": "view-off";
|
|
179
179
|
"light-mode": "light-mode";
|
|
@@ -356,8 +356,8 @@ declare const progressProps: z.ZodObject<{
|
|
|
356
356
|
}, z.core.$strip>;
|
|
357
357
|
declare const skeletonProps: z.ZodObject<{
|
|
358
358
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
359
|
-
rect: "rect";
|
|
360
359
|
circle: "circle";
|
|
360
|
+
rect: "rect";
|
|
361
361
|
}>>;
|
|
362
362
|
size: z.ZodOptional<z.ZodEnum<{
|
|
363
363
|
sm: "sm";
|
|
@@ -402,8 +402,8 @@ declare const stackProps: z.ZodObject<{
|
|
|
402
402
|
align: z.ZodOptional<z.ZodEnum<{
|
|
403
403
|
start: "start";
|
|
404
404
|
end: "end";
|
|
405
|
-
center: "center";
|
|
406
405
|
stretch: "stretch";
|
|
406
|
+
center: "center";
|
|
407
407
|
}>>;
|
|
408
408
|
justify: z.ZodOptional<z.ZodEnum<{
|
|
409
409
|
start: "start";
|
|
@@ -48,8 +48,8 @@ declare const catalog: import("@json-render/core").Catalog<{
|
|
|
48
48
|
align: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
49
49
|
start: "start";
|
|
50
50
|
end: "end";
|
|
51
|
-
center: "center";
|
|
52
51
|
stretch: "stretch";
|
|
52
|
+
center: "center";
|
|
53
53
|
}>>;
|
|
54
54
|
justify: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
55
55
|
start: "start";
|
|
@@ -321,8 +321,8 @@ declare const catalog: import("@json-render/core").Catalog<{
|
|
|
321
321
|
Skeleton: {
|
|
322
322
|
props: import("zod").ZodObject<{
|
|
323
323
|
shape: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
324
|
-
rect: "rect";
|
|
325
324
|
circle: "circle";
|
|
325
|
+
rect: "rect";
|
|
326
326
|
}>>;
|
|
327
327
|
size: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
328
328
|
sm: "sm";
|
|
@@ -336,15 +336,17 @@ declare const catalog: import("@json-render/core").Catalog<{
|
|
|
336
336
|
Icon: {
|
|
337
337
|
props: import("zod").ZodObject<{
|
|
338
338
|
name: import("zod").ZodEnum<{
|
|
339
|
-
link: "link";
|
|
340
|
-
check: "check";
|
|
341
339
|
form: "form";
|
|
342
340
|
list: "list";
|
|
341
|
+
link: "link";
|
|
342
|
+
table: "table";
|
|
343
|
+
send: "send";
|
|
344
|
+
location: "location";
|
|
345
|
+
copy: "copy";
|
|
346
|
+
check: "check";
|
|
343
347
|
plus: "plus";
|
|
344
348
|
minus: "minus";
|
|
345
349
|
close: "close";
|
|
346
|
-
copy: "copy";
|
|
347
|
-
send: "send";
|
|
348
350
|
mail: "mail";
|
|
349
351
|
subscribe: "subscribe";
|
|
350
352
|
rss: "rss";
|
|
@@ -352,9 +354,7 @@ declare const catalog: import("@json-render/core").Catalog<{
|
|
|
352
354
|
"update-date": "update-date";
|
|
353
355
|
"publish-date": "publish-date";
|
|
354
356
|
"external-link": "external-link";
|
|
355
|
-
location: "location";
|
|
356
357
|
"navigation-menu": "navigation-menu";
|
|
357
|
-
table: "table";
|
|
358
358
|
view: "view";
|
|
359
359
|
"view-off": "view-off";
|
|
360
360
|
"light-mode": "light-mode";
|
|
@@ -432,15 +432,17 @@ declare const catalog: import("@json-render/core").Catalog<{
|
|
|
432
432
|
IconButton: {
|
|
433
433
|
props: import("zod").ZodObject<{
|
|
434
434
|
icon: import("zod").ZodEnum<{
|
|
435
|
-
link: "link";
|
|
436
|
-
check: "check";
|
|
437
435
|
form: "form";
|
|
438
436
|
list: "list";
|
|
437
|
+
link: "link";
|
|
438
|
+
table: "table";
|
|
439
|
+
send: "send";
|
|
440
|
+
location: "location";
|
|
441
|
+
copy: "copy";
|
|
442
|
+
check: "check";
|
|
439
443
|
plus: "plus";
|
|
440
444
|
minus: "minus";
|
|
441
445
|
close: "close";
|
|
442
|
-
copy: "copy";
|
|
443
|
-
send: "send";
|
|
444
446
|
mail: "mail";
|
|
445
447
|
subscribe: "subscribe";
|
|
446
448
|
rss: "rss";
|
|
@@ -448,9 +450,7 @@ declare const catalog: import("@json-render/core").Catalog<{
|
|
|
448
450
|
"update-date": "update-date";
|
|
449
451
|
"publish-date": "publish-date";
|
|
450
452
|
"external-link": "external-link";
|
|
451
|
-
location: "location";
|
|
452
453
|
"navigation-menu": "navigation-menu";
|
|
453
|
-
table: "table";
|
|
454
454
|
view: "view";
|
|
455
455
|
"view-off": "view-off";
|
|
456
456
|
"light-mode": "light-mode";
|