@nextui-org/theme 0.0.0-dev-v2-20230724140319 → 0.0.0-dev-v2-20230725153517
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-QZTWGJ72.mjs → chunk-4PUMM2WN.mjs} +2 -2
- package/dist/{chunk-G4RCK475.mjs → chunk-DUCM3D3Q.mjs} +3 -3
- package/dist/{chunk-QZOZ7UWM.mjs → chunk-PKP3F3VC.mjs} +26 -9
- package/dist/{chunk-PW52XQD7.mjs → chunk-YT3RYKKN.mjs} +7 -7
- package/dist/colors/common.mjs +2 -2
- package/dist/colors/index.mjs +5 -5
- package/dist/colors/semantic.mjs +4 -4
- package/dist/colors.mjs +5 -5
- package/dist/components/accordion.mjs +1 -1
- package/dist/components/avatar.mjs +2 -2
- package/dist/components/badge.mjs +2 -2
- package/dist/components/button.mjs +2 -2
- package/dist/components/card.mjs +1 -1
- package/dist/components/checkbox.mjs +1 -1
- package/dist/components/chip.d.ts +56 -42
- package/dist/components/chip.js +23 -6
- package/dist/components/chip.mjs +2 -2
- package/dist/components/code.mjs +2 -2
- package/dist/components/dropdown.mjs +1 -1
- package/dist/components/index.js +23 -6
- package/dist/components/index.mjs +19 -19
- package/dist/components/input.mjs +1 -1
- package/dist/components/link.mjs +1 -1
- package/dist/components/modal.mjs +1 -1
- package/dist/components/navbar.mjs +1 -1
- package/dist/components/pagination.mjs +2 -2
- package/dist/components/popover.mjs +2 -2
- package/dist/components/radio.mjs +1 -1
- package/dist/components/snippet.mjs +2 -2
- package/dist/components/table.mjs +1 -1
- package/dist/components/tabs.mjs +2 -2
- package/dist/components/toggle.mjs +1 -1
- package/dist/components/user.mjs +1 -1
- package/dist/index.js +23 -6
- package/dist/index.mjs +49 -49
- package/dist/plugin.mjs +12 -12
- package/dist/utilities/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/{chunk-HDWYLUG3.mjs → chunk-77O7KLUI.mjs} +3 -3
- package/dist/{chunk-O3IKQG57.mjs → chunk-B55QBA5E.mjs} +3 -3
- package/dist/{chunk-RUD4TZ7J.mjs → chunk-FQPXTWQY.mjs} +3 -3
- package/dist/{chunk-HREHHLTK.mjs → chunk-HFOW2Y4W.mjs} +3 -3
- package/dist/{chunk-VWORG6VH.mjs → chunk-JDBNJZCP.mjs} +3 -3
- package/dist/{chunk-IAS3SFA4.mjs → chunk-JXK6SYAO.mjs} +3 -3
- package/dist/{chunk-AWPGSFD6.mjs → chunk-RHIZZ5XX.mjs} +3 -3
- package/dist/{chunk-VB6YPWEW.mjs → chunk-RPMLQF4Y.mjs} +3 -3
- package/dist/{chunk-3RZCOCFH.mjs → chunk-XCWQAA5D.mjs} +3 -3
- package/dist/{chunk-DYIIRM5B.mjs → chunk-Y32IWEMZ.mjs} +3 -3
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
tv
|
|
3
|
-
} from "./chunk-6AEINX52.mjs";
|
|
4
1
|
import {
|
|
5
2
|
colorVariants
|
|
6
3
|
} from "./chunk-2PIR7DFM.mjs";
|
|
4
|
+
import {
|
|
5
|
+
tv
|
|
6
|
+
} from "./chunk-6AEINX52.mjs";
|
|
7
7
|
import {
|
|
8
8
|
ringClasses
|
|
9
9
|
} from "./chunk-T7JNS25F.mjs";
|
|
@@ -103,18 +103,20 @@ var chip = tv({
|
|
|
103
103
|
base: "rounded-full"
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
|
+
isOneChar: {
|
|
107
|
+
true: {},
|
|
108
|
+
false: {}
|
|
109
|
+
},
|
|
110
|
+
isCloseable: {
|
|
111
|
+
true: {},
|
|
112
|
+
false: {}
|
|
113
|
+
},
|
|
106
114
|
hasStartContent: {
|
|
107
115
|
true: {}
|
|
108
116
|
},
|
|
109
117
|
hasEndContent: {
|
|
110
118
|
true: {}
|
|
111
119
|
},
|
|
112
|
-
isOneChar: {
|
|
113
|
-
true: {
|
|
114
|
-
base: "px-0 justify-center",
|
|
115
|
-
content: "px-0 flex-none"
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
120
|
isDisabled: {
|
|
119
121
|
true: { base: "opacity-disabled pointer-events-none" }
|
|
120
122
|
},
|
|
@@ -405,6 +407,21 @@ var chip = tv({
|
|
|
405
407
|
base: "w-7 h-7 min-w-unit-7 min-h-7"
|
|
406
408
|
}
|
|
407
409
|
},
|
|
410
|
+
{
|
|
411
|
+
isOneChar: true,
|
|
412
|
+
isCloseable: false,
|
|
413
|
+
class: {
|
|
414
|
+
base: "px-0 justify-center",
|
|
415
|
+
content: "px-0 flex-none"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
isOneChar: true,
|
|
420
|
+
isCloseable: true,
|
|
421
|
+
class: {
|
|
422
|
+
base: "w-auto"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
408
425
|
{
|
|
409
426
|
hasStartContent: true,
|
|
410
427
|
size: "sm",
|
|
@@ -5,13 +5,13 @@ import {
|
|
|
5
5
|
} from "./chunk-NW5W5ANO.mjs";
|
|
6
6
|
import {
|
|
7
7
|
utilities
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import {
|
|
10
|
-
baseStyles
|
|
11
|
-
} from "./chunk-T7JNS25F.mjs";
|
|
8
|
+
} from "./chunk-Y32IWEMZ.mjs";
|
|
12
9
|
import {
|
|
13
10
|
semanticColors
|
|
14
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-DUCM3D3Q.mjs";
|
|
12
|
+
import {
|
|
13
|
+
commonColors
|
|
14
|
+
} from "./chunk-JXK6SYAO.mjs";
|
|
15
15
|
import {
|
|
16
16
|
flattenThemeObject
|
|
17
17
|
} from "./chunk-KUNVFLXJ.mjs";
|
|
@@ -24,8 +24,8 @@ import {
|
|
|
24
24
|
animations
|
|
25
25
|
} from "./chunk-DMASP6FA.mjs";
|
|
26
26
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
27
|
+
baseStyles
|
|
28
|
+
} from "./chunk-T7JNS25F.mjs";
|
|
29
29
|
|
|
30
30
|
// src/plugin.ts
|
|
31
31
|
import Color from "color";
|
package/dist/colors/common.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
commonColors
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-JXK6SYAO.mjs";
|
|
4
4
|
import "../chunk-JUEOCLA3.mjs";
|
|
5
5
|
import "../chunk-3LKKH4AR.mjs";
|
|
6
|
+
import "../chunk-GHZ36ATJ.mjs";
|
|
6
7
|
import "../chunk-T3GWIVAM.mjs";
|
|
7
8
|
import "../chunk-OR5PUD24.mjs";
|
|
8
9
|
import "../chunk-DCEG5LGX.mjs";
|
|
9
10
|
import "../chunk-L2OL7R23.mjs";
|
|
10
11
|
import "../chunk-YZYGFPNK.mjs";
|
|
11
|
-
import "../chunk-GHZ36ATJ.mjs";
|
|
12
12
|
export {
|
|
13
13
|
commonColors
|
|
14
14
|
};
|
package/dist/colors/index.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
colors
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-4PUMM2WN.mjs";
|
|
4
4
|
import {
|
|
5
5
|
semanticColors
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-KUNVFLXJ.mjs";
|
|
6
|
+
} from "../chunk-DUCM3D3Q.mjs";
|
|
8
7
|
import "../chunk-M63AFAHO.mjs";
|
|
9
8
|
import {
|
|
10
9
|
commonColors
|
|
11
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-JXK6SYAO.mjs";
|
|
12
11
|
import "../chunk-JUEOCLA3.mjs";
|
|
13
12
|
import "../chunk-3LKKH4AR.mjs";
|
|
13
|
+
import "../chunk-GHZ36ATJ.mjs";
|
|
14
14
|
import "../chunk-T3GWIVAM.mjs";
|
|
15
15
|
import "../chunk-OR5PUD24.mjs";
|
|
16
16
|
import "../chunk-DCEG5LGX.mjs";
|
|
17
17
|
import "../chunk-L2OL7R23.mjs";
|
|
18
18
|
import "../chunk-YZYGFPNK.mjs";
|
|
19
|
-
import "../chunk-
|
|
19
|
+
import "../chunk-KUNVFLXJ.mjs";
|
|
20
20
|
export {
|
|
21
21
|
colors,
|
|
22
22
|
commonColors,
|
package/dist/colors/semantic.mjs
CHANGED
|
@@ -2,17 +2,17 @@ import {
|
|
|
2
2
|
semanticColors,
|
|
3
3
|
themeColorsDark,
|
|
4
4
|
themeColorsLight
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-IAS3SFA4.mjs";
|
|
5
|
+
} from "../chunk-DUCM3D3Q.mjs";
|
|
6
|
+
import "../chunk-JXK6SYAO.mjs";
|
|
8
7
|
import "../chunk-JUEOCLA3.mjs";
|
|
9
8
|
import "../chunk-3LKKH4AR.mjs";
|
|
9
|
+
import "../chunk-GHZ36ATJ.mjs";
|
|
10
10
|
import "../chunk-T3GWIVAM.mjs";
|
|
11
11
|
import "../chunk-OR5PUD24.mjs";
|
|
12
12
|
import "../chunk-DCEG5LGX.mjs";
|
|
13
13
|
import "../chunk-L2OL7R23.mjs";
|
|
14
14
|
import "../chunk-YZYGFPNK.mjs";
|
|
15
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-KUNVFLXJ.mjs";
|
|
16
16
|
export {
|
|
17
17
|
semanticColors,
|
|
18
18
|
themeColorsDark,
|
package/dist/colors.mjs
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import "./chunk-WQEDQHKX.mjs";
|
|
2
2
|
import {
|
|
3
3
|
colors
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-4PUMM2WN.mjs";
|
|
5
5
|
import {
|
|
6
6
|
semanticColors
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-KUNVFLXJ.mjs";
|
|
7
|
+
} from "./chunk-DUCM3D3Q.mjs";
|
|
9
8
|
import "./chunk-M63AFAHO.mjs";
|
|
10
9
|
import {
|
|
11
10
|
commonColors
|
|
12
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-JXK6SYAO.mjs";
|
|
13
12
|
import "./chunk-JUEOCLA3.mjs";
|
|
14
13
|
import "./chunk-3LKKH4AR.mjs";
|
|
14
|
+
import "./chunk-GHZ36ATJ.mjs";
|
|
15
15
|
import "./chunk-T3GWIVAM.mjs";
|
|
16
16
|
import "./chunk-OR5PUD24.mjs";
|
|
17
17
|
import "./chunk-DCEG5LGX.mjs";
|
|
18
18
|
import "./chunk-L2OL7R23.mjs";
|
|
19
19
|
import "./chunk-YZYGFPNK.mjs";
|
|
20
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-KUNVFLXJ.mjs";
|
|
21
21
|
export {
|
|
22
22
|
colors,
|
|
23
23
|
commonColors,
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
accordion,
|
|
3
3
|
accordionItem
|
|
4
4
|
} from "../chunk-UHF2F2WJ.mjs";
|
|
5
|
-
import "../chunk-6AEINX52.mjs";
|
|
6
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
7
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
8
7
|
import "../chunk-2PIR7DFM.mjs";
|
|
8
|
+
import "../chunk-6AEINX52.mjs";
|
|
9
9
|
import "../chunk-T7JNS25F.mjs";
|
|
10
10
|
import "../chunk-WA5F6AED.mjs";
|
|
11
11
|
export {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
avatar,
|
|
3
3
|
avatarGroup
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-6AEINX52.mjs";
|
|
4
|
+
} from "../chunk-RPMLQF4Y.mjs";
|
|
6
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
7
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
8
7
|
import "../chunk-2PIR7DFM.mjs";
|
|
8
|
+
import "../chunk-6AEINX52.mjs";
|
|
9
9
|
import "../chunk-T7JNS25F.mjs";
|
|
10
10
|
import "../chunk-WA5F6AED.mjs";
|
|
11
11
|
export {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
badge
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-6AEINX52.mjs";
|
|
3
|
+
} from "../chunk-XCWQAA5D.mjs";
|
|
5
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
6
|
import "../chunk-2PIR7DFM.mjs";
|
|
7
|
+
import "../chunk-6AEINX52.mjs";
|
|
8
8
|
import "../chunk-T7JNS25F.mjs";
|
|
9
9
|
import "../chunk-WA5F6AED.mjs";
|
|
10
10
|
export {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
button,
|
|
3
3
|
buttonGroup
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-6AEINX52.mjs";
|
|
4
|
+
} from "../chunk-JDBNJZCP.mjs";
|
|
6
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
7
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
8
7
|
import "../chunk-2PIR7DFM.mjs";
|
|
8
|
+
import "../chunk-6AEINX52.mjs";
|
|
9
9
|
import "../chunk-T7JNS25F.mjs";
|
|
10
10
|
import "../chunk-WA5F6AED.mjs";
|
|
11
11
|
export {
|
package/dist/components/card.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
card
|
|
3
3
|
} from "../chunk-O5HCT4VI.mjs";
|
|
4
|
-
import "../chunk-6AEINX52.mjs";
|
|
5
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
6
|
import "../chunk-2PIR7DFM.mjs";
|
|
7
|
+
import "../chunk-6AEINX52.mjs";
|
|
8
8
|
import "../chunk-T7JNS25F.mjs";
|
|
9
9
|
import "../chunk-WA5F6AED.mjs";
|
|
10
10
|
export {
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
checkbox,
|
|
3
3
|
checkboxGroup
|
|
4
4
|
} from "../chunk-2T5RQ7SK.mjs";
|
|
5
|
-
import "../chunk-6AEINX52.mjs";
|
|
6
5
|
import "../chunk-CMYR6AOY.mjs";
|
|
7
6
|
import "../chunk-K7LK7NCE.mjs";
|
|
8
7
|
import "../chunk-2PIR7DFM.mjs";
|
|
8
|
+
import "../chunk-6AEINX52.mjs";
|
|
9
9
|
import "../chunk-T7JNS25F.mjs";
|
|
10
10
|
import "../chunk-WA5F6AED.mjs";
|
|
11
11
|
export {
|
|
@@ -94,18 +94,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
94
94
|
base: string;
|
|
95
95
|
};
|
|
96
96
|
};
|
|
97
|
+
isOneChar: {
|
|
98
|
+
true: {};
|
|
99
|
+
false: {};
|
|
100
|
+
};
|
|
101
|
+
isCloseable: {
|
|
102
|
+
true: {};
|
|
103
|
+
false: {};
|
|
104
|
+
};
|
|
97
105
|
hasStartContent: {
|
|
98
106
|
true: {};
|
|
99
107
|
};
|
|
100
108
|
hasEndContent: {
|
|
101
109
|
true: {};
|
|
102
110
|
};
|
|
103
|
-
isOneChar: {
|
|
104
|
-
true: {
|
|
105
|
-
base: string;
|
|
106
|
-
content: string;
|
|
107
|
-
};
|
|
108
|
-
};
|
|
109
111
|
isDisabled: {
|
|
110
112
|
true: {
|
|
111
113
|
base: string;
|
|
@@ -197,18 +199,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
197
199
|
base: string;
|
|
198
200
|
};
|
|
199
201
|
};
|
|
202
|
+
isOneChar: {
|
|
203
|
+
true: {};
|
|
204
|
+
false: {};
|
|
205
|
+
};
|
|
206
|
+
isCloseable: {
|
|
207
|
+
true: {};
|
|
208
|
+
false: {};
|
|
209
|
+
};
|
|
200
210
|
hasStartContent: {
|
|
201
211
|
true: {};
|
|
202
212
|
};
|
|
203
213
|
hasEndContent: {
|
|
204
214
|
true: {};
|
|
205
215
|
};
|
|
206
|
-
isOneChar: {
|
|
207
|
-
true: {
|
|
208
|
-
base: string;
|
|
209
|
-
content: string;
|
|
210
|
-
};
|
|
211
|
-
};
|
|
212
216
|
isDisabled: {
|
|
213
217
|
true: {
|
|
214
218
|
base: string;
|
|
@@ -294,18 +298,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
294
298
|
base: string;
|
|
295
299
|
};
|
|
296
300
|
};
|
|
301
|
+
isOneChar: {
|
|
302
|
+
true: {};
|
|
303
|
+
false: {};
|
|
304
|
+
};
|
|
305
|
+
isCloseable: {
|
|
306
|
+
true: {};
|
|
307
|
+
false: {};
|
|
308
|
+
};
|
|
297
309
|
hasStartContent: {
|
|
298
310
|
true: {};
|
|
299
311
|
};
|
|
300
312
|
hasEndContent: {
|
|
301
313
|
true: {};
|
|
302
314
|
};
|
|
303
|
-
isOneChar: {
|
|
304
|
-
true: {
|
|
305
|
-
base: string;
|
|
306
|
-
content: string;
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
315
|
isDisabled: {
|
|
310
316
|
true: {
|
|
311
317
|
base: string;
|
|
@@ -391,18 +397,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
391
397
|
base: string;
|
|
392
398
|
};
|
|
393
399
|
};
|
|
400
|
+
isOneChar: {
|
|
401
|
+
true: {};
|
|
402
|
+
false: {};
|
|
403
|
+
};
|
|
404
|
+
isCloseable: {
|
|
405
|
+
true: {};
|
|
406
|
+
false: {};
|
|
407
|
+
};
|
|
394
408
|
hasStartContent: {
|
|
395
409
|
true: {};
|
|
396
410
|
};
|
|
397
411
|
hasEndContent: {
|
|
398
412
|
true: {};
|
|
399
413
|
};
|
|
400
|
-
isOneChar: {
|
|
401
|
-
true: {
|
|
402
|
-
base: string;
|
|
403
|
-
content: string;
|
|
404
|
-
};
|
|
405
|
-
};
|
|
406
414
|
isDisabled: {
|
|
407
415
|
true: {
|
|
408
416
|
base: string;
|
|
@@ -494,18 +502,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
494
502
|
base: string;
|
|
495
503
|
};
|
|
496
504
|
};
|
|
505
|
+
isOneChar: {
|
|
506
|
+
true: {};
|
|
507
|
+
false: {};
|
|
508
|
+
};
|
|
509
|
+
isCloseable: {
|
|
510
|
+
true: {};
|
|
511
|
+
false: {};
|
|
512
|
+
};
|
|
497
513
|
hasStartContent: {
|
|
498
514
|
true: {};
|
|
499
515
|
};
|
|
500
516
|
hasEndContent: {
|
|
501
517
|
true: {};
|
|
502
518
|
};
|
|
503
|
-
isOneChar: {
|
|
504
|
-
true: {
|
|
505
|
-
base: string;
|
|
506
|
-
content: string;
|
|
507
|
-
};
|
|
508
|
-
};
|
|
509
519
|
isDisabled: {
|
|
510
520
|
true: {
|
|
511
521
|
base: string;
|
|
@@ -597,18 +607,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
597
607
|
base: string;
|
|
598
608
|
};
|
|
599
609
|
};
|
|
610
|
+
isOneChar: {
|
|
611
|
+
true: {};
|
|
612
|
+
false: {};
|
|
613
|
+
};
|
|
614
|
+
isCloseable: {
|
|
615
|
+
true: {};
|
|
616
|
+
false: {};
|
|
617
|
+
};
|
|
600
618
|
hasStartContent: {
|
|
601
619
|
true: {};
|
|
602
620
|
};
|
|
603
621
|
hasEndContent: {
|
|
604
622
|
true: {};
|
|
605
623
|
};
|
|
606
|
-
isOneChar: {
|
|
607
|
-
true: {
|
|
608
|
-
base: string;
|
|
609
|
-
content: string;
|
|
610
|
-
};
|
|
611
|
-
};
|
|
612
624
|
isDisabled: {
|
|
613
625
|
true: {
|
|
614
626
|
base: string;
|
|
@@ -694,18 +706,20 @@ declare const chip: tailwind_variants.TVReturnType<{
|
|
|
694
706
|
base: string;
|
|
695
707
|
};
|
|
696
708
|
};
|
|
709
|
+
isOneChar: {
|
|
710
|
+
true: {};
|
|
711
|
+
false: {};
|
|
712
|
+
};
|
|
713
|
+
isCloseable: {
|
|
714
|
+
true: {};
|
|
715
|
+
false: {};
|
|
716
|
+
};
|
|
697
717
|
hasStartContent: {
|
|
698
718
|
true: {};
|
|
699
719
|
};
|
|
700
720
|
hasEndContent: {
|
|
701
721
|
true: {};
|
|
702
722
|
};
|
|
703
|
-
isOneChar: {
|
|
704
|
-
true: {
|
|
705
|
-
base: string;
|
|
706
|
-
content: string;
|
|
707
|
-
};
|
|
708
|
-
};
|
|
709
723
|
isDisabled: {
|
|
710
724
|
true: {
|
|
711
725
|
base: string;
|
package/dist/components/chip.js
CHANGED
|
@@ -294,18 +294,20 @@ var chip = tv({
|
|
|
294
294
|
base: "rounded-full"
|
|
295
295
|
}
|
|
296
296
|
},
|
|
297
|
+
isOneChar: {
|
|
298
|
+
true: {},
|
|
299
|
+
false: {}
|
|
300
|
+
},
|
|
301
|
+
isCloseable: {
|
|
302
|
+
true: {},
|
|
303
|
+
false: {}
|
|
304
|
+
},
|
|
297
305
|
hasStartContent: {
|
|
298
306
|
true: {}
|
|
299
307
|
},
|
|
300
308
|
hasEndContent: {
|
|
301
309
|
true: {}
|
|
302
310
|
},
|
|
303
|
-
isOneChar: {
|
|
304
|
-
true: {
|
|
305
|
-
base: "px-0 justify-center",
|
|
306
|
-
content: "px-0 flex-none"
|
|
307
|
-
}
|
|
308
|
-
},
|
|
309
311
|
isDisabled: {
|
|
310
312
|
true: { base: "opacity-disabled pointer-events-none" }
|
|
311
313
|
},
|
|
@@ -596,6 +598,21 @@ var chip = tv({
|
|
|
596
598
|
base: "w-7 h-7 min-w-unit-7 min-h-7"
|
|
597
599
|
}
|
|
598
600
|
},
|
|
601
|
+
{
|
|
602
|
+
isOneChar: true,
|
|
603
|
+
isCloseable: false,
|
|
604
|
+
class: {
|
|
605
|
+
base: "px-0 justify-center",
|
|
606
|
+
content: "px-0 flex-none"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
isOneChar: true,
|
|
611
|
+
isCloseable: true,
|
|
612
|
+
class: {
|
|
613
|
+
base: "w-auto"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
599
616
|
{
|
|
600
617
|
hasStartContent: true,
|
|
601
618
|
size: "sm",
|
package/dist/components/chip.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
chip
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-6AEINX52.mjs";
|
|
3
|
+
} from "../chunk-PKP3F3VC.mjs";
|
|
5
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
6
|
import "../chunk-2PIR7DFM.mjs";
|
|
7
|
+
import "../chunk-6AEINX52.mjs";
|
|
8
8
|
import "../chunk-T7JNS25F.mjs";
|
|
9
9
|
import "../chunk-WA5F6AED.mjs";
|
|
10
10
|
export {
|
package/dist/components/code.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
code
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-6AEINX52.mjs";
|
|
3
|
+
} from "../chunk-77O7KLUI.mjs";
|
|
5
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
6
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
7
6
|
import "../chunk-2PIR7DFM.mjs";
|
|
7
|
+
import "../chunk-6AEINX52.mjs";
|
|
8
8
|
import "../chunk-T7JNS25F.mjs";
|
|
9
9
|
import "../chunk-WA5F6AED.mjs";
|
|
10
10
|
export {
|
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
dropdownMenu,
|
|
5
5
|
dropdownSection
|
|
6
6
|
} from "../chunk-23KK2ZAZ.mjs";
|
|
7
|
-
import "../chunk-6AEINX52.mjs";
|
|
8
7
|
import "../chunk-CMYR6AOY.mjs";
|
|
9
8
|
import "../chunk-K7LK7NCE.mjs";
|
|
10
9
|
import "../chunk-2PIR7DFM.mjs";
|
|
10
|
+
import "../chunk-6AEINX52.mjs";
|
|
11
11
|
import "../chunk-T7JNS25F.mjs";
|
|
12
12
|
import "../chunk-WA5F6AED.mjs";
|
|
13
13
|
export {
|
package/dist/components/index.js
CHANGED
|
@@ -1713,18 +1713,20 @@ var chip = tv({
|
|
|
1713
1713
|
base: "rounded-full"
|
|
1714
1714
|
}
|
|
1715
1715
|
},
|
|
1716
|
+
isOneChar: {
|
|
1717
|
+
true: {},
|
|
1718
|
+
false: {}
|
|
1719
|
+
},
|
|
1720
|
+
isCloseable: {
|
|
1721
|
+
true: {},
|
|
1722
|
+
false: {}
|
|
1723
|
+
},
|
|
1716
1724
|
hasStartContent: {
|
|
1717
1725
|
true: {}
|
|
1718
1726
|
},
|
|
1719
1727
|
hasEndContent: {
|
|
1720
1728
|
true: {}
|
|
1721
1729
|
},
|
|
1722
|
-
isOneChar: {
|
|
1723
|
-
true: {
|
|
1724
|
-
base: "px-0 justify-center",
|
|
1725
|
-
content: "px-0 flex-none"
|
|
1726
|
-
}
|
|
1727
|
-
},
|
|
1728
1730
|
isDisabled: {
|
|
1729
1731
|
true: { base: "opacity-disabled pointer-events-none" }
|
|
1730
1732
|
},
|
|
@@ -2015,6 +2017,21 @@ var chip = tv({
|
|
|
2015
2017
|
base: "w-7 h-7 min-w-unit-7 min-h-7"
|
|
2016
2018
|
}
|
|
2017
2019
|
},
|
|
2020
|
+
{
|
|
2021
|
+
isOneChar: true,
|
|
2022
|
+
isCloseable: false,
|
|
2023
|
+
class: {
|
|
2024
|
+
base: "px-0 justify-center",
|
|
2025
|
+
content: "px-0 flex-none"
|
|
2026
|
+
}
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
isOneChar: true,
|
|
2030
|
+
isCloseable: true,
|
|
2031
|
+
class: {
|
|
2032
|
+
base: "w-auto"
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2018
2035
|
{
|
|
2019
2036
|
hasStartContent: true,
|
|
2020
2037
|
size: "sm",
|