@kopexa/theme 1.4.2 → 1.4.4
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/{chunk-HQ27V5V4.mjs → chunk-2C5EQ4P3.mjs} +4 -0
- package/dist/chunk-32L6KXLV.mjs +324 -0
- package/dist/{chunk-IL3JFLE2.mjs → chunk-4UDOCFU5.mjs} +7 -0
- package/dist/chunk-67PPUTSS.mjs +53 -0
- package/dist/chunk-JWF5ABNP.mjs +56 -0
- package/dist/{chunk-5FI7W32M.mjs → chunk-KE2E5LGH.mjs} +2 -11
- package/dist/chunk-PQSL3W26.mjs +96 -0
- package/dist/chunk-XSN6P5JL.mjs +0 -0
- package/dist/components/button.js +24 -11
- package/dist/components/button.mjs +3 -3
- package/dist/components/calendar.d.mts +124 -0
- package/dist/components/calendar.d.ts +124 -0
- package/dist/components/calendar.js +80 -0
- package/dist/components/calendar.mjs +6 -0
- package/dist/components/chip.d.mts +356 -0
- package/dist/components/chip.d.ts +356 -0
- package/dist/components/chip.js +396 -0
- package/dist/components/chip.mjs +7 -0
- package/dist/components/dropdown-menu.d.mts +9 -9
- package/dist/components/dropdown-menu.d.ts +9 -9
- package/dist/components/index.d.mts +3 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +516 -27
- package/dist/components/index.mjs +22 -8
- package/dist/components/input.d.mts +177 -0
- package/dist/components/input.d.ts +177 -0
- package/dist/components/input.js +124 -0
- package/dist/components/input.mjs +9 -0
- package/dist/components/spinner.d.mts +21 -0
- package/dist/components/spinner.d.ts +21 -0
- package/dist/components/spinner.js +7 -0
- package/dist/components/spinner.mjs +1 -1
- package/dist/index.css +98 -19
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +516 -27
- package/dist/index.mjs +23 -8
- package/dist/utils/classes.d.mts +2 -1
- package/dist/utils/classes.d.ts +2 -1
- package/dist/utils/classes.js +7 -2
- package/dist/utils/classes.mjs +5 -3
- package/dist/utils/index.d.mts +2 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.js +18 -0
- package/dist/utils/index.mjs +1 -0
- package/dist/utils/types.d.mts +10 -0
- package/dist/utils/types.d.ts +10 -0
- package/dist/utils/types.js +18 -0
- package/dist/utils/types.mjs +0 -0
- package/dist/utils/variants.d.mts +20 -0
- package/dist/utils/variants.d.ts +20 -0
- package/dist/utils/variants.js +24 -2
- package/dist/utils/variants.mjs +1 -1
- package/package.json +2 -2
- package/dist/chunk-U6ONJKJY.mjs +0 -31
- /package/dist/{chunk-KIDK6JOG.mjs → chunk-N2UQGV46.mjs} +0 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
|
|
4
|
+
declare const calendar: tailwind_variants.TVReturnType<{
|
|
5
|
+
captionLayout: {
|
|
6
|
+
label: {
|
|
7
|
+
captionLabel: string;
|
|
8
|
+
};
|
|
9
|
+
default: {
|
|
10
|
+
captionLabel: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
}, {
|
|
14
|
+
base: string[];
|
|
15
|
+
icon: string;
|
|
16
|
+
root: string;
|
|
17
|
+
months: string;
|
|
18
|
+
month: string;
|
|
19
|
+
nav: string;
|
|
20
|
+
buttonPrevious: string;
|
|
21
|
+
buttonNext: string;
|
|
22
|
+
monthCaption: string;
|
|
23
|
+
dropdown: string;
|
|
24
|
+
dropdowns: string;
|
|
25
|
+
dropdownRoot: string;
|
|
26
|
+
captionLabel: string;
|
|
27
|
+
table: string;
|
|
28
|
+
weekdays: string;
|
|
29
|
+
weekday: string;
|
|
30
|
+
week: string;
|
|
31
|
+
weekNumberWrapper: string;
|
|
32
|
+
weekNumberHeader: string;
|
|
33
|
+
weekNumber: string;
|
|
34
|
+
day: string;
|
|
35
|
+
dayButton: string;
|
|
36
|
+
rangeStart: string;
|
|
37
|
+
rangeMiddle: string;
|
|
38
|
+
rangeEnd: string;
|
|
39
|
+
today: string;
|
|
40
|
+
outside: string;
|
|
41
|
+
disabled: string;
|
|
42
|
+
hidden: string;
|
|
43
|
+
}, undefined, {
|
|
44
|
+
captionLayout: {
|
|
45
|
+
label: {
|
|
46
|
+
captionLabel: string;
|
|
47
|
+
};
|
|
48
|
+
default: {
|
|
49
|
+
captionLabel: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}, {
|
|
53
|
+
base: string[];
|
|
54
|
+
icon: string;
|
|
55
|
+
root: string;
|
|
56
|
+
months: string;
|
|
57
|
+
month: string;
|
|
58
|
+
nav: string;
|
|
59
|
+
buttonPrevious: string;
|
|
60
|
+
buttonNext: string;
|
|
61
|
+
monthCaption: string;
|
|
62
|
+
dropdown: string;
|
|
63
|
+
dropdowns: string;
|
|
64
|
+
dropdownRoot: string;
|
|
65
|
+
captionLabel: string;
|
|
66
|
+
table: string;
|
|
67
|
+
weekdays: string;
|
|
68
|
+
weekday: string;
|
|
69
|
+
week: string;
|
|
70
|
+
weekNumberWrapper: string;
|
|
71
|
+
weekNumberHeader: string;
|
|
72
|
+
weekNumber: string;
|
|
73
|
+
day: string;
|
|
74
|
+
dayButton: string;
|
|
75
|
+
rangeStart: string;
|
|
76
|
+
rangeMiddle: string;
|
|
77
|
+
rangeEnd: string;
|
|
78
|
+
today: string;
|
|
79
|
+
outside: string;
|
|
80
|
+
disabled: string;
|
|
81
|
+
hidden: string;
|
|
82
|
+
}, tailwind_variants.TVReturnType<{
|
|
83
|
+
captionLayout: {
|
|
84
|
+
label: {
|
|
85
|
+
captionLabel: string;
|
|
86
|
+
};
|
|
87
|
+
default: {
|
|
88
|
+
captionLabel: string;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}, {
|
|
92
|
+
base: string[];
|
|
93
|
+
icon: string;
|
|
94
|
+
root: string;
|
|
95
|
+
months: string;
|
|
96
|
+
month: string;
|
|
97
|
+
nav: string;
|
|
98
|
+
buttonPrevious: string;
|
|
99
|
+
buttonNext: string;
|
|
100
|
+
monthCaption: string;
|
|
101
|
+
dropdown: string;
|
|
102
|
+
dropdowns: string;
|
|
103
|
+
dropdownRoot: string;
|
|
104
|
+
captionLabel: string;
|
|
105
|
+
table: string;
|
|
106
|
+
weekdays: string;
|
|
107
|
+
weekday: string;
|
|
108
|
+
week: string;
|
|
109
|
+
weekNumberWrapper: string;
|
|
110
|
+
weekNumberHeader: string;
|
|
111
|
+
weekNumber: string;
|
|
112
|
+
day: string;
|
|
113
|
+
dayButton: string;
|
|
114
|
+
rangeStart: string;
|
|
115
|
+
rangeMiddle: string;
|
|
116
|
+
rangeEnd: string;
|
|
117
|
+
today: string;
|
|
118
|
+
outside: string;
|
|
119
|
+
disabled: string;
|
|
120
|
+
hidden: string;
|
|
121
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
122
|
+
type CalendarVariantProps = VariantProps<typeof calendar>;
|
|
123
|
+
|
|
124
|
+
export { type CalendarVariantProps, calendar };
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
|
|
4
|
+
declare const calendar: tailwind_variants.TVReturnType<{
|
|
5
|
+
captionLayout: {
|
|
6
|
+
label: {
|
|
7
|
+
captionLabel: string;
|
|
8
|
+
};
|
|
9
|
+
default: {
|
|
10
|
+
captionLabel: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
}, {
|
|
14
|
+
base: string[];
|
|
15
|
+
icon: string;
|
|
16
|
+
root: string;
|
|
17
|
+
months: string;
|
|
18
|
+
month: string;
|
|
19
|
+
nav: string;
|
|
20
|
+
buttonPrevious: string;
|
|
21
|
+
buttonNext: string;
|
|
22
|
+
monthCaption: string;
|
|
23
|
+
dropdown: string;
|
|
24
|
+
dropdowns: string;
|
|
25
|
+
dropdownRoot: string;
|
|
26
|
+
captionLabel: string;
|
|
27
|
+
table: string;
|
|
28
|
+
weekdays: string;
|
|
29
|
+
weekday: string;
|
|
30
|
+
week: string;
|
|
31
|
+
weekNumberWrapper: string;
|
|
32
|
+
weekNumberHeader: string;
|
|
33
|
+
weekNumber: string;
|
|
34
|
+
day: string;
|
|
35
|
+
dayButton: string;
|
|
36
|
+
rangeStart: string;
|
|
37
|
+
rangeMiddle: string;
|
|
38
|
+
rangeEnd: string;
|
|
39
|
+
today: string;
|
|
40
|
+
outside: string;
|
|
41
|
+
disabled: string;
|
|
42
|
+
hidden: string;
|
|
43
|
+
}, undefined, {
|
|
44
|
+
captionLayout: {
|
|
45
|
+
label: {
|
|
46
|
+
captionLabel: string;
|
|
47
|
+
};
|
|
48
|
+
default: {
|
|
49
|
+
captionLabel: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}, {
|
|
53
|
+
base: string[];
|
|
54
|
+
icon: string;
|
|
55
|
+
root: string;
|
|
56
|
+
months: string;
|
|
57
|
+
month: string;
|
|
58
|
+
nav: string;
|
|
59
|
+
buttonPrevious: string;
|
|
60
|
+
buttonNext: string;
|
|
61
|
+
monthCaption: string;
|
|
62
|
+
dropdown: string;
|
|
63
|
+
dropdowns: string;
|
|
64
|
+
dropdownRoot: string;
|
|
65
|
+
captionLabel: string;
|
|
66
|
+
table: string;
|
|
67
|
+
weekdays: string;
|
|
68
|
+
weekday: string;
|
|
69
|
+
week: string;
|
|
70
|
+
weekNumberWrapper: string;
|
|
71
|
+
weekNumberHeader: string;
|
|
72
|
+
weekNumber: string;
|
|
73
|
+
day: string;
|
|
74
|
+
dayButton: string;
|
|
75
|
+
rangeStart: string;
|
|
76
|
+
rangeMiddle: string;
|
|
77
|
+
rangeEnd: string;
|
|
78
|
+
today: string;
|
|
79
|
+
outside: string;
|
|
80
|
+
disabled: string;
|
|
81
|
+
hidden: string;
|
|
82
|
+
}, tailwind_variants.TVReturnType<{
|
|
83
|
+
captionLayout: {
|
|
84
|
+
label: {
|
|
85
|
+
captionLabel: string;
|
|
86
|
+
};
|
|
87
|
+
default: {
|
|
88
|
+
captionLabel: string;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}, {
|
|
92
|
+
base: string[];
|
|
93
|
+
icon: string;
|
|
94
|
+
root: string;
|
|
95
|
+
months: string;
|
|
96
|
+
month: string;
|
|
97
|
+
nav: string;
|
|
98
|
+
buttonPrevious: string;
|
|
99
|
+
buttonNext: string;
|
|
100
|
+
monthCaption: string;
|
|
101
|
+
dropdown: string;
|
|
102
|
+
dropdowns: string;
|
|
103
|
+
dropdownRoot: string;
|
|
104
|
+
captionLabel: string;
|
|
105
|
+
table: string;
|
|
106
|
+
weekdays: string;
|
|
107
|
+
weekday: string;
|
|
108
|
+
week: string;
|
|
109
|
+
weekNumberWrapper: string;
|
|
110
|
+
weekNumberHeader: string;
|
|
111
|
+
weekNumber: string;
|
|
112
|
+
day: string;
|
|
113
|
+
dayButton: string;
|
|
114
|
+
rangeStart: string;
|
|
115
|
+
rangeMiddle: string;
|
|
116
|
+
rangeEnd: string;
|
|
117
|
+
today: string;
|
|
118
|
+
outside: string;
|
|
119
|
+
disabled: string;
|
|
120
|
+
hidden: string;
|
|
121
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
122
|
+
type CalendarVariantProps = VariantProps<typeof calendar>;
|
|
123
|
+
|
|
124
|
+
export { type CalendarVariantProps, calendar };
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/components/calendar.ts
|
|
21
|
+
var calendar_exports = {};
|
|
22
|
+
__export(calendar_exports, {
|
|
23
|
+
calendar: () => calendar
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(calendar_exports);
|
|
26
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
27
|
+
var calendar = (0, import_tailwind_variants.tv)({
|
|
28
|
+
slots: {
|
|
29
|
+
base: [
|
|
30
|
+
"bg-background group/calendar p-3 [--cell-size:--spacing(8)] [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent",
|
|
31
|
+
String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,
|
|
32
|
+
String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`
|
|
33
|
+
],
|
|
34
|
+
icon: "size-4",
|
|
35
|
+
root: "w-fit",
|
|
36
|
+
months: "flex gap-4 flex-col md:flex-row relative",
|
|
37
|
+
month: "flex flex-col w-full gap-4",
|
|
38
|
+
nav: "flex items-center gap-1 w-full absolute top-0 inset-x-0 justify-between",
|
|
39
|
+
buttonPrevious: "size-(--cell-size) aria-disabled:opacity-50 p-0 select-none",
|
|
40
|
+
buttonNext: "size-(--cell-size) aria-disabled:opacity-50 p-0 select-none",
|
|
41
|
+
monthCaption: "flex items-center justify-center h-(--cell-size) w-full px-(--cell-size)",
|
|
42
|
+
dropdown: "absolute bg-popover inset-0 opacity-0",
|
|
43
|
+
dropdowns: "w-full flex items-center text-sm font-medium justify-center h-(--cell-size) gap-1.5",
|
|
44
|
+
dropdownRoot: "relative has-focus:border-ring border border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] rounded-md",
|
|
45
|
+
captionLabel: "select-none font-medium",
|
|
46
|
+
table: "w-full border-collapse",
|
|
47
|
+
weekdays: "flex",
|
|
48
|
+
weekday: "text-muted-foreground rounded-md flex-1 font-normal text-[0.8rem] select-none",
|
|
49
|
+
week: "flex w-full mt-2",
|
|
50
|
+
weekNumberWrapper: "flex size-(--cell-size) items-center justify-center text-center",
|
|
51
|
+
weekNumberHeader: "select-none w-(--cell-size)",
|
|
52
|
+
weekNumber: "text-[0.8rem] select-none text-muted-foreground",
|
|
53
|
+
day: "relative w-full h-full p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md group/day aspect-square select-none",
|
|
54
|
+
dayButton: "data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 dark:hover:text-accent-foreground flex aspect-square size-auto w-full min-w-(--cell-size) flex-col gap-1 leading-none font-normal group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] data-[range-end=true]:rounded-md data-[range-end=true]:rounded-r-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md data-[range-start=true]:rounded-l-md [&>span]:text-xs [&>span]:opacity-70",
|
|
55
|
+
rangeStart: "rounded-l-md bg-accent",
|
|
56
|
+
rangeMiddle: "rounded-none",
|
|
57
|
+
rangeEnd: "rounded-r-md bg-accent",
|
|
58
|
+
today: "bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",
|
|
59
|
+
outside: "text-muted-foreground aria-selected:text-muted-foreground",
|
|
60
|
+
disabled: "text-muted-foreground opacity-50",
|
|
61
|
+
hidden: "invisible"
|
|
62
|
+
},
|
|
63
|
+
variants: {
|
|
64
|
+
captionLayout: {
|
|
65
|
+
label: {
|
|
66
|
+
captionLabel: "text-sm"
|
|
67
|
+
},
|
|
68
|
+
default: {
|
|
69
|
+
captionLabel: "rounded-md pl-2 pr-1 flex items-center gap-1 text-sm h-8 [&>svg]:text-muted-foreground [&>svg]:size-3.5"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
defaultVariants: {
|
|
74
|
+
captionLayout: "default"
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
78
|
+
0 && (module.exports = {
|
|
79
|
+
calendar
|
|
80
|
+
});
|
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
|
|
4
|
+
declare const chip: tailwind_variants.TVReturnType<{
|
|
5
|
+
variant: {
|
|
6
|
+
solid: {};
|
|
7
|
+
bordered: {
|
|
8
|
+
root: string;
|
|
9
|
+
};
|
|
10
|
+
faded: {
|
|
11
|
+
root: string;
|
|
12
|
+
};
|
|
13
|
+
flat: {};
|
|
14
|
+
};
|
|
15
|
+
color: {
|
|
16
|
+
default: {
|
|
17
|
+
status: string;
|
|
18
|
+
};
|
|
19
|
+
primary: {
|
|
20
|
+
status: string;
|
|
21
|
+
};
|
|
22
|
+
secondary: {
|
|
23
|
+
status: string;
|
|
24
|
+
};
|
|
25
|
+
success: {
|
|
26
|
+
status: string;
|
|
27
|
+
};
|
|
28
|
+
destructive: {
|
|
29
|
+
status: string;
|
|
30
|
+
};
|
|
31
|
+
warning: {
|
|
32
|
+
status: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
indicatorColor: {
|
|
36
|
+
default: {
|
|
37
|
+
indicatorDot: string;
|
|
38
|
+
};
|
|
39
|
+
primary: {
|
|
40
|
+
indicatorDot: string;
|
|
41
|
+
};
|
|
42
|
+
secondary: {
|
|
43
|
+
indicatorDot: string;
|
|
44
|
+
};
|
|
45
|
+
success: {
|
|
46
|
+
indicatorDot: string;
|
|
47
|
+
};
|
|
48
|
+
warning: {
|
|
49
|
+
indicatorDot: string;
|
|
50
|
+
};
|
|
51
|
+
destructive: {
|
|
52
|
+
indicatorDot: string;
|
|
53
|
+
};
|
|
54
|
+
info: {
|
|
55
|
+
indicatorDot: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
indicator: {
|
|
59
|
+
true: {};
|
|
60
|
+
false: {};
|
|
61
|
+
};
|
|
62
|
+
indicatorVariant: {
|
|
63
|
+
pulse: {};
|
|
64
|
+
};
|
|
65
|
+
size: {
|
|
66
|
+
sm: {
|
|
67
|
+
root: string;
|
|
68
|
+
status: string;
|
|
69
|
+
content: string;
|
|
70
|
+
closeButton: string[];
|
|
71
|
+
};
|
|
72
|
+
md: {
|
|
73
|
+
root: string;
|
|
74
|
+
status: string;
|
|
75
|
+
content: string;
|
|
76
|
+
closeButton: string[];
|
|
77
|
+
};
|
|
78
|
+
lg: {
|
|
79
|
+
root: string;
|
|
80
|
+
status: string;
|
|
81
|
+
content: string;
|
|
82
|
+
closeButton: string[];
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
isCloseable: {
|
|
86
|
+
true: {};
|
|
87
|
+
false: {};
|
|
88
|
+
};
|
|
89
|
+
radius: {
|
|
90
|
+
none: {
|
|
91
|
+
root: string;
|
|
92
|
+
};
|
|
93
|
+
sm: {
|
|
94
|
+
root: string;
|
|
95
|
+
};
|
|
96
|
+
md: {
|
|
97
|
+
root: string;
|
|
98
|
+
};
|
|
99
|
+
lg: {
|
|
100
|
+
root: string;
|
|
101
|
+
};
|
|
102
|
+
full: {
|
|
103
|
+
root: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
disabled: {
|
|
107
|
+
true: {
|
|
108
|
+
root: string;
|
|
109
|
+
};
|
|
110
|
+
false: {};
|
|
111
|
+
};
|
|
112
|
+
}, {
|
|
113
|
+
root: string[];
|
|
114
|
+
content: string;
|
|
115
|
+
indicator: string;
|
|
116
|
+
indicatorPulse: string;
|
|
117
|
+
indicatorDot: string;
|
|
118
|
+
status: string;
|
|
119
|
+
closeButton: string[];
|
|
120
|
+
}, undefined, {
|
|
121
|
+
variant: {
|
|
122
|
+
solid: {};
|
|
123
|
+
bordered: {
|
|
124
|
+
root: string;
|
|
125
|
+
};
|
|
126
|
+
faded: {
|
|
127
|
+
root: string;
|
|
128
|
+
};
|
|
129
|
+
flat: {};
|
|
130
|
+
};
|
|
131
|
+
color: {
|
|
132
|
+
default: {
|
|
133
|
+
status: string;
|
|
134
|
+
};
|
|
135
|
+
primary: {
|
|
136
|
+
status: string;
|
|
137
|
+
};
|
|
138
|
+
secondary: {
|
|
139
|
+
status: string;
|
|
140
|
+
};
|
|
141
|
+
success: {
|
|
142
|
+
status: string;
|
|
143
|
+
};
|
|
144
|
+
destructive: {
|
|
145
|
+
status: string;
|
|
146
|
+
};
|
|
147
|
+
warning: {
|
|
148
|
+
status: string;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
indicatorColor: {
|
|
152
|
+
default: {
|
|
153
|
+
indicatorDot: string;
|
|
154
|
+
};
|
|
155
|
+
primary: {
|
|
156
|
+
indicatorDot: string;
|
|
157
|
+
};
|
|
158
|
+
secondary: {
|
|
159
|
+
indicatorDot: string;
|
|
160
|
+
};
|
|
161
|
+
success: {
|
|
162
|
+
indicatorDot: string;
|
|
163
|
+
};
|
|
164
|
+
warning: {
|
|
165
|
+
indicatorDot: string;
|
|
166
|
+
};
|
|
167
|
+
destructive: {
|
|
168
|
+
indicatorDot: string;
|
|
169
|
+
};
|
|
170
|
+
info: {
|
|
171
|
+
indicatorDot: string;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
indicator: {
|
|
175
|
+
true: {};
|
|
176
|
+
false: {};
|
|
177
|
+
};
|
|
178
|
+
indicatorVariant: {
|
|
179
|
+
pulse: {};
|
|
180
|
+
};
|
|
181
|
+
size: {
|
|
182
|
+
sm: {
|
|
183
|
+
root: string;
|
|
184
|
+
status: string;
|
|
185
|
+
content: string;
|
|
186
|
+
closeButton: string[];
|
|
187
|
+
};
|
|
188
|
+
md: {
|
|
189
|
+
root: string;
|
|
190
|
+
status: string;
|
|
191
|
+
content: string;
|
|
192
|
+
closeButton: string[];
|
|
193
|
+
};
|
|
194
|
+
lg: {
|
|
195
|
+
root: string;
|
|
196
|
+
status: string;
|
|
197
|
+
content: string;
|
|
198
|
+
closeButton: string[];
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
isCloseable: {
|
|
202
|
+
true: {};
|
|
203
|
+
false: {};
|
|
204
|
+
};
|
|
205
|
+
radius: {
|
|
206
|
+
none: {
|
|
207
|
+
root: string;
|
|
208
|
+
};
|
|
209
|
+
sm: {
|
|
210
|
+
root: string;
|
|
211
|
+
};
|
|
212
|
+
md: {
|
|
213
|
+
root: string;
|
|
214
|
+
};
|
|
215
|
+
lg: {
|
|
216
|
+
root: string;
|
|
217
|
+
};
|
|
218
|
+
full: {
|
|
219
|
+
root: string;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
disabled: {
|
|
223
|
+
true: {
|
|
224
|
+
root: string;
|
|
225
|
+
};
|
|
226
|
+
false: {};
|
|
227
|
+
};
|
|
228
|
+
}, {
|
|
229
|
+
root: string[];
|
|
230
|
+
content: string;
|
|
231
|
+
indicator: string;
|
|
232
|
+
indicatorPulse: string;
|
|
233
|
+
indicatorDot: string;
|
|
234
|
+
status: string;
|
|
235
|
+
closeButton: string[];
|
|
236
|
+
}, tailwind_variants.TVReturnType<{
|
|
237
|
+
variant: {
|
|
238
|
+
solid: {};
|
|
239
|
+
bordered: {
|
|
240
|
+
root: string;
|
|
241
|
+
};
|
|
242
|
+
faded: {
|
|
243
|
+
root: string;
|
|
244
|
+
};
|
|
245
|
+
flat: {};
|
|
246
|
+
};
|
|
247
|
+
color: {
|
|
248
|
+
default: {
|
|
249
|
+
status: string;
|
|
250
|
+
};
|
|
251
|
+
primary: {
|
|
252
|
+
status: string;
|
|
253
|
+
};
|
|
254
|
+
secondary: {
|
|
255
|
+
status: string;
|
|
256
|
+
};
|
|
257
|
+
success: {
|
|
258
|
+
status: string;
|
|
259
|
+
};
|
|
260
|
+
destructive: {
|
|
261
|
+
status: string;
|
|
262
|
+
};
|
|
263
|
+
warning: {
|
|
264
|
+
status: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
indicatorColor: {
|
|
268
|
+
default: {
|
|
269
|
+
indicatorDot: string;
|
|
270
|
+
};
|
|
271
|
+
primary: {
|
|
272
|
+
indicatorDot: string;
|
|
273
|
+
};
|
|
274
|
+
secondary: {
|
|
275
|
+
indicatorDot: string;
|
|
276
|
+
};
|
|
277
|
+
success: {
|
|
278
|
+
indicatorDot: string;
|
|
279
|
+
};
|
|
280
|
+
warning: {
|
|
281
|
+
indicatorDot: string;
|
|
282
|
+
};
|
|
283
|
+
destructive: {
|
|
284
|
+
indicatorDot: string;
|
|
285
|
+
};
|
|
286
|
+
info: {
|
|
287
|
+
indicatorDot: string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
indicator: {
|
|
291
|
+
true: {};
|
|
292
|
+
false: {};
|
|
293
|
+
};
|
|
294
|
+
indicatorVariant: {
|
|
295
|
+
pulse: {};
|
|
296
|
+
};
|
|
297
|
+
size: {
|
|
298
|
+
sm: {
|
|
299
|
+
root: string;
|
|
300
|
+
status: string;
|
|
301
|
+
content: string;
|
|
302
|
+
closeButton: string[];
|
|
303
|
+
};
|
|
304
|
+
md: {
|
|
305
|
+
root: string;
|
|
306
|
+
status: string;
|
|
307
|
+
content: string;
|
|
308
|
+
closeButton: string[];
|
|
309
|
+
};
|
|
310
|
+
lg: {
|
|
311
|
+
root: string;
|
|
312
|
+
status: string;
|
|
313
|
+
content: string;
|
|
314
|
+
closeButton: string[];
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
isCloseable: {
|
|
318
|
+
true: {};
|
|
319
|
+
false: {};
|
|
320
|
+
};
|
|
321
|
+
radius: {
|
|
322
|
+
none: {
|
|
323
|
+
root: string;
|
|
324
|
+
};
|
|
325
|
+
sm: {
|
|
326
|
+
root: string;
|
|
327
|
+
};
|
|
328
|
+
md: {
|
|
329
|
+
root: string;
|
|
330
|
+
};
|
|
331
|
+
lg: {
|
|
332
|
+
root: string;
|
|
333
|
+
};
|
|
334
|
+
full: {
|
|
335
|
+
root: string;
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
disabled: {
|
|
339
|
+
true: {
|
|
340
|
+
root: string;
|
|
341
|
+
};
|
|
342
|
+
false: {};
|
|
343
|
+
};
|
|
344
|
+
}, {
|
|
345
|
+
root: string[];
|
|
346
|
+
content: string;
|
|
347
|
+
indicator: string;
|
|
348
|
+
indicatorPulse: string;
|
|
349
|
+
indicatorDot: string;
|
|
350
|
+
status: string;
|
|
351
|
+
closeButton: string[];
|
|
352
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
353
|
+
type ChipVariantProps = VariantProps<typeof chip>;
|
|
354
|
+
type ChipSlots = keyof ReturnType<typeof chip>;
|
|
355
|
+
|
|
356
|
+
export { type ChipSlots, type ChipVariantProps, chip };
|