@nextui-org/theme 0.0.0-dev-v2-20230622203738 → 0.0.0-dev-v2-20230623023752
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-HI3IKEJ5.mjs → chunk-IYCTMZYP.mjs} +7 -0
- package/dist/{chunk-4K3TOAY2.mjs → chunk-YIDZQ5FC.mjs} +9 -9
- package/dist/components/dropdown.d.ts +4 -4
- package/dist/components/dropdown.js +9 -9
- package/dist/components/dropdown.mjs +1 -1
- package/dist/components/index.js +16 -9
- package/dist/components/index.mjs +14 -14
- package/dist/components/tabs.js +7 -0
- package/dist/components/tabs.mjs +1 -1
- package/dist/index.js +16 -9
- package/dist/index.mjs +15 -15
- package/dist/plugin.mjs +1 -1
- package/package.json +1 -1
|
@@ -38,8 +38,8 @@ var dropdownItem = tv({
|
|
|
38
38
|
"data-[focus-visible=true]:dark:ring-offset-background-content1"
|
|
39
39
|
],
|
|
40
40
|
wrapper: "w-full flex flex-col items-start justify-center",
|
|
41
|
-
title: "flex-1",
|
|
42
|
-
description: ["text-
|
|
41
|
+
title: "flex-1 text-base font-normal truncate",
|
|
42
|
+
description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
|
|
43
43
|
selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
|
|
44
44
|
shortcut: [
|
|
45
45
|
"px-1",
|
|
@@ -243,42 +243,42 @@ var dropdownItem = tv({
|
|
|
243
243
|
variant: "flat",
|
|
244
244
|
color: "default",
|
|
245
245
|
class: {
|
|
246
|
-
base: "data-[hover=true]:bg-default
|
|
246
|
+
base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
|
|
247
247
|
}
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
variant: "flat",
|
|
251
251
|
color: "primary",
|
|
252
252
|
class: {
|
|
253
|
-
base: "data-[hover=true]:bg-primary
|
|
253
|
+
base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
|
|
254
254
|
}
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
variant: "flat",
|
|
258
258
|
color: "secondary",
|
|
259
259
|
class: {
|
|
260
|
-
base: "data-[hover=true]:bg-secondary
|
|
260
|
+
base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
263
|
{
|
|
264
264
|
variant: "flat",
|
|
265
265
|
color: "success",
|
|
266
266
|
class: {
|
|
267
|
-
base: "data-[hover=true]:bg-success
|
|
267
|
+
base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
|
|
268
268
|
}
|
|
269
269
|
},
|
|
270
270
|
{
|
|
271
271
|
variant: "flat",
|
|
272
272
|
color: "warning",
|
|
273
273
|
class: {
|
|
274
|
-
base: "data-[hover=true]:bg-warning
|
|
274
|
+
base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
variant: "flat",
|
|
279
279
|
color: "danger",
|
|
280
280
|
class: {
|
|
281
|
-
base: "data-[hover=true]:bg-danger
|
|
281
|
+
base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
|
|
282
282
|
}
|
|
283
283
|
},
|
|
284
284
|
{
|
|
@@ -390,7 +390,7 @@ var dropdownSection = tv({
|
|
|
390
390
|
}
|
|
391
391
|
});
|
|
392
392
|
var dropdownMenu = tv({
|
|
393
|
-
base: "w-full flex flex-col p-1"
|
|
393
|
+
base: "w-full flex flex-col gap-0.5 p-1"
|
|
394
394
|
});
|
|
395
395
|
|
|
396
396
|
export {
|
|
@@ -5,7 +5,7 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
5
5
|
/**
|
|
6
6
|
* Dropdown wrapper **Tailwind Variants** component
|
|
7
7
|
*
|
|
8
|
-
* const { base, menu
|
|
8
|
+
* const { base, menu } = dropdown({...})
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* <div>
|
|
@@ -281,11 +281,11 @@ declare const dropdownSection: tailwind_variants.TVReturnType<{
|
|
|
281
281
|
* const classNames = dropdownMenu({...})
|
|
282
282
|
|
|
283
283
|
*/
|
|
284
|
-
declare const dropdownMenu: tailwind_variants.TVReturnType<tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col p-1"> | {
|
|
284
|
+
declare const dropdownMenu: tailwind_variants.TVReturnType<tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {
|
|
285
285
|
[x: string]: {
|
|
286
|
-
[x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, "w-full flex flex-col p-1">;
|
|
286
|
+
[x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, "w-full flex flex-col gap-0.5 p-1">;
|
|
287
287
|
} | undefined;
|
|
288
|
-
} | {}, undefined, "w-full flex flex-col p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col p-1"> | {}>, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col p-1"> | {}, undefined>;
|
|
288
|
+
} | {}, undefined, "w-full flex flex-col gap-0.5 p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}>, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}, undefined>;
|
|
289
289
|
type DropdownSectionVariantProps = VariantProps<typeof dropdownSection>;
|
|
290
290
|
type DropdownSectionSlots = keyof ReturnType<typeof dropdownSection>;
|
|
291
291
|
type DropdownItemVariantProps = VariantProps<typeof dropdownItem>;
|
|
@@ -65,8 +65,8 @@ var dropdownItem = (0, import_tailwind_variants.tv)({
|
|
|
65
65
|
"data-[focus-visible=true]:dark:ring-offset-background-content1"
|
|
66
66
|
],
|
|
67
67
|
wrapper: "w-full flex flex-col items-start justify-center",
|
|
68
|
-
title: "flex-1",
|
|
69
|
-
description: ["text-
|
|
68
|
+
title: "flex-1 text-base font-normal truncate",
|
|
69
|
+
description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
|
|
70
70
|
selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
|
|
71
71
|
shortcut: [
|
|
72
72
|
"px-1",
|
|
@@ -270,42 +270,42 @@ var dropdownItem = (0, import_tailwind_variants.tv)({
|
|
|
270
270
|
variant: "flat",
|
|
271
271
|
color: "default",
|
|
272
272
|
class: {
|
|
273
|
-
base: "data-[hover=true]:bg-default
|
|
273
|
+
base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
|
|
274
274
|
}
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
277
|
variant: "flat",
|
|
278
278
|
color: "primary",
|
|
279
279
|
class: {
|
|
280
|
-
base: "data-[hover=true]:bg-primary
|
|
280
|
+
base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
|
|
281
281
|
}
|
|
282
282
|
},
|
|
283
283
|
{
|
|
284
284
|
variant: "flat",
|
|
285
285
|
color: "secondary",
|
|
286
286
|
class: {
|
|
287
|
-
base: "data-[hover=true]:bg-secondary
|
|
287
|
+
base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
|
|
288
288
|
}
|
|
289
289
|
},
|
|
290
290
|
{
|
|
291
291
|
variant: "flat",
|
|
292
292
|
color: "success",
|
|
293
293
|
class: {
|
|
294
|
-
base: "data-[hover=true]:bg-success
|
|
294
|
+
base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
|
|
295
295
|
}
|
|
296
296
|
},
|
|
297
297
|
{
|
|
298
298
|
variant: "flat",
|
|
299
299
|
color: "warning",
|
|
300
300
|
class: {
|
|
301
|
-
base: "data-[hover=true]:bg-warning
|
|
301
|
+
base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
variant: "flat",
|
|
306
306
|
color: "danger",
|
|
307
307
|
class: {
|
|
308
|
-
base: "data-[hover=true]:bg-danger
|
|
308
|
+
base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
|
|
309
309
|
}
|
|
310
310
|
},
|
|
311
311
|
{
|
|
@@ -417,7 +417,7 @@ var dropdownSection = (0, import_tailwind_variants.tv)({
|
|
|
417
417
|
}
|
|
418
418
|
});
|
|
419
419
|
var dropdownMenu = (0, import_tailwind_variants.tv)({
|
|
420
|
-
base: "w-full flex flex-col p-1"
|
|
420
|
+
base: "w-full flex flex-col gap-0.5 p-1"
|
|
421
421
|
});
|
|
422
422
|
// Annotate the CommonJS export names for ESM import in node:
|
|
423
423
|
0 && (module.exports = {
|
package/dist/components/index.js
CHANGED
|
@@ -4618,8 +4618,8 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
|
|
|
4618
4618
|
"data-[focus-visible=true]:dark:ring-offset-background-content1"
|
|
4619
4619
|
],
|
|
4620
4620
|
wrapper: "w-full flex flex-col items-start justify-center",
|
|
4621
|
-
title: "flex-1",
|
|
4622
|
-
description: ["text-
|
|
4621
|
+
title: "flex-1 text-base font-normal truncate",
|
|
4622
|
+
description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
|
|
4623
4623
|
selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
|
|
4624
4624
|
shortcut: [
|
|
4625
4625
|
"px-1",
|
|
@@ -4823,42 +4823,42 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
|
|
|
4823
4823
|
variant: "flat",
|
|
4824
4824
|
color: "default",
|
|
4825
4825
|
class: {
|
|
4826
|
-
base: "data-[hover=true]:bg-default
|
|
4826
|
+
base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
|
|
4827
4827
|
}
|
|
4828
4828
|
},
|
|
4829
4829
|
{
|
|
4830
4830
|
variant: "flat",
|
|
4831
4831
|
color: "primary",
|
|
4832
4832
|
class: {
|
|
4833
|
-
base: "data-[hover=true]:bg-primary
|
|
4833
|
+
base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
|
|
4834
4834
|
}
|
|
4835
4835
|
},
|
|
4836
4836
|
{
|
|
4837
4837
|
variant: "flat",
|
|
4838
4838
|
color: "secondary",
|
|
4839
4839
|
class: {
|
|
4840
|
-
base: "data-[hover=true]:bg-secondary
|
|
4840
|
+
base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
|
|
4841
4841
|
}
|
|
4842
4842
|
},
|
|
4843
4843
|
{
|
|
4844
4844
|
variant: "flat",
|
|
4845
4845
|
color: "success",
|
|
4846
4846
|
class: {
|
|
4847
|
-
base: "data-[hover=true]:bg-success
|
|
4847
|
+
base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
|
|
4848
4848
|
}
|
|
4849
4849
|
},
|
|
4850
4850
|
{
|
|
4851
4851
|
variant: "flat",
|
|
4852
4852
|
color: "warning",
|
|
4853
4853
|
class: {
|
|
4854
|
-
base: "data-[hover=true]:bg-warning
|
|
4854
|
+
base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
|
|
4855
4855
|
}
|
|
4856
4856
|
},
|
|
4857
4857
|
{
|
|
4858
4858
|
variant: "flat",
|
|
4859
4859
|
color: "danger",
|
|
4860
4860
|
class: {
|
|
4861
|
-
base: "data-[hover=true]:bg-danger
|
|
4861
|
+
base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
|
|
4862
4862
|
}
|
|
4863
4863
|
},
|
|
4864
4864
|
{
|
|
@@ -4970,7 +4970,7 @@ var dropdownSection = (0, import_tailwind_variants21.tv)({
|
|
|
4970
4970
|
}
|
|
4971
4971
|
});
|
|
4972
4972
|
var dropdownMenu = (0, import_tailwind_variants21.tv)({
|
|
4973
|
-
base: "w-full flex flex-col p-1"
|
|
4973
|
+
base: "w-full flex flex-col gap-0.5 p-1"
|
|
4974
4974
|
});
|
|
4975
4975
|
|
|
4976
4976
|
// src/components/image.ts
|
|
@@ -6160,6 +6160,13 @@ var tabs = (0, import_tailwind_variants29.tv)({
|
|
|
6160
6160
|
tab: "data-[selected=true]:after:bg-danger"
|
|
6161
6161
|
}
|
|
6162
6162
|
}
|
|
6163
|
+
],
|
|
6164
|
+
compoundSlots: [
|
|
6165
|
+
{
|
|
6166
|
+
variant: "underlined",
|
|
6167
|
+
slots: ["tab", "tabList", "cursor"],
|
|
6168
|
+
class: ["rounded-none"]
|
|
6169
|
+
}
|
|
6163
6170
|
]
|
|
6164
6171
|
});
|
|
6165
6172
|
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import "../chunk-PRWEADY4.mjs";
|
|
2
|
-
import {
|
|
3
|
-
snippet
|
|
4
|
-
} from "../chunk-3D7G7PZH.mjs";
|
|
5
2
|
import {
|
|
6
3
|
spacer
|
|
7
4
|
} from "../chunk-3B4SYPW2.mjs";
|
|
@@ -13,17 +10,13 @@ import {
|
|
|
13
10
|
} from "../chunk-U54UQOTS.mjs";
|
|
14
11
|
import {
|
|
15
12
|
tabs
|
|
16
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-IYCTMZYP.mjs";
|
|
17
14
|
import {
|
|
18
15
|
toggle
|
|
19
16
|
} from "../chunk-UKSPZOXY.mjs";
|
|
20
17
|
import {
|
|
21
18
|
user
|
|
22
19
|
} from "../chunk-ZFYINWFR.mjs";
|
|
23
|
-
import {
|
|
24
|
-
link,
|
|
25
|
-
linkAnchorClasses
|
|
26
|
-
} from "../chunk-I36TDMJB.mjs";
|
|
27
20
|
import {
|
|
28
21
|
modal
|
|
29
22
|
} from "../chunk-AUOEYXLQ.mjs";
|
|
@@ -47,8 +40,8 @@ import {
|
|
|
47
40
|
skeleton
|
|
48
41
|
} from "../chunk-P5E3PNHW.mjs";
|
|
49
42
|
import {
|
|
50
|
-
|
|
51
|
-
} from "../chunk-
|
|
43
|
+
snippet
|
|
44
|
+
} from "../chunk-3D7G7PZH.mjs";
|
|
52
45
|
import {
|
|
53
46
|
divider
|
|
54
47
|
} from "../chunk-2ENRZMQI.mjs";
|
|
@@ -60,7 +53,7 @@ import {
|
|
|
60
53
|
dropdownItem,
|
|
61
54
|
dropdownMenu,
|
|
62
55
|
dropdownSection
|
|
63
|
-
} from "../chunk-
|
|
56
|
+
} from "../chunk-YIDZQ5FC.mjs";
|
|
64
57
|
import {
|
|
65
58
|
image
|
|
66
59
|
} from "../chunk-46ZSXBCH.mjs";
|
|
@@ -71,9 +64,9 @@ import {
|
|
|
71
64
|
kbd
|
|
72
65
|
} from "../chunk-GBPOVFEX.mjs";
|
|
73
66
|
import {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
} from "../chunk-
|
|
67
|
+
link,
|
|
68
|
+
linkAnchorClasses
|
|
69
|
+
} from "../chunk-I36TDMJB.mjs";
|
|
77
70
|
import {
|
|
78
71
|
avatar,
|
|
79
72
|
avatarGroup
|
|
@@ -98,9 +91,16 @@ import {
|
|
|
98
91
|
import {
|
|
99
92
|
circularProgress
|
|
100
93
|
} from "../chunk-UPBFQDTD.mjs";
|
|
94
|
+
import {
|
|
95
|
+
code
|
|
96
|
+
} from "../chunk-576B55VI.mjs";
|
|
101
97
|
import "../chunk-CMYR6AOY.mjs";
|
|
102
98
|
import "../chunk-K7LK7NCE.mjs";
|
|
103
99
|
import "../chunk-CEW7YOHH.mjs";
|
|
100
|
+
import {
|
|
101
|
+
accordion,
|
|
102
|
+
accordionItem
|
|
103
|
+
} from "../chunk-YNGJCDQN.mjs";
|
|
104
104
|
import "../chunk-TSW7CNKY.mjs";
|
|
105
105
|
export {
|
|
106
106
|
accordion,
|
package/dist/components/tabs.js
CHANGED
|
@@ -498,6 +498,13 @@ var tabs = (0, import_tailwind_variants.tv)({
|
|
|
498
498
|
tab: "data-[selected=true]:after:bg-danger"
|
|
499
499
|
}
|
|
500
500
|
}
|
|
501
|
+
],
|
|
502
|
+
compoundSlots: [
|
|
503
|
+
{
|
|
504
|
+
variant: "underlined",
|
|
505
|
+
slots: ["tab", "tabList", "cursor"],
|
|
506
|
+
class: ["rounded-none"]
|
|
507
|
+
}
|
|
501
508
|
]
|
|
502
509
|
});
|
|
503
510
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/components/tabs.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4650,8 +4650,8 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
|
|
|
4650
4650
|
"data-[focus-visible=true]:dark:ring-offset-background-content1"
|
|
4651
4651
|
],
|
|
4652
4652
|
wrapper: "w-full flex flex-col items-start justify-center",
|
|
4653
|
-
title: "flex-1",
|
|
4654
|
-
description: ["text-
|
|
4653
|
+
title: "flex-1 text-base font-normal truncate",
|
|
4654
|
+
description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
|
|
4655
4655
|
selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
|
|
4656
4656
|
shortcut: [
|
|
4657
4657
|
"px-1",
|
|
@@ -4855,42 +4855,42 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
|
|
|
4855
4855
|
variant: "flat",
|
|
4856
4856
|
color: "default",
|
|
4857
4857
|
class: {
|
|
4858
|
-
base: "data-[hover=true]:bg-default
|
|
4858
|
+
base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
|
|
4859
4859
|
}
|
|
4860
4860
|
},
|
|
4861
4861
|
{
|
|
4862
4862
|
variant: "flat",
|
|
4863
4863
|
color: "primary",
|
|
4864
4864
|
class: {
|
|
4865
|
-
base: "data-[hover=true]:bg-primary
|
|
4865
|
+
base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
|
|
4866
4866
|
}
|
|
4867
4867
|
},
|
|
4868
4868
|
{
|
|
4869
4869
|
variant: "flat",
|
|
4870
4870
|
color: "secondary",
|
|
4871
4871
|
class: {
|
|
4872
|
-
base: "data-[hover=true]:bg-secondary
|
|
4872
|
+
base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
|
|
4873
4873
|
}
|
|
4874
4874
|
},
|
|
4875
4875
|
{
|
|
4876
4876
|
variant: "flat",
|
|
4877
4877
|
color: "success",
|
|
4878
4878
|
class: {
|
|
4879
|
-
base: "data-[hover=true]:bg-success
|
|
4879
|
+
base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
|
|
4880
4880
|
}
|
|
4881
4881
|
},
|
|
4882
4882
|
{
|
|
4883
4883
|
variant: "flat",
|
|
4884
4884
|
color: "warning",
|
|
4885
4885
|
class: {
|
|
4886
|
-
base: "data-[hover=true]:bg-warning
|
|
4886
|
+
base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
|
|
4887
4887
|
}
|
|
4888
4888
|
},
|
|
4889
4889
|
{
|
|
4890
4890
|
variant: "flat",
|
|
4891
4891
|
color: "danger",
|
|
4892
4892
|
class: {
|
|
4893
|
-
base: "data-[hover=true]:bg-danger
|
|
4893
|
+
base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
|
|
4894
4894
|
}
|
|
4895
4895
|
},
|
|
4896
4896
|
{
|
|
@@ -5002,7 +5002,7 @@ var dropdownSection = (0, import_tailwind_variants21.tv)({
|
|
|
5002
5002
|
}
|
|
5003
5003
|
});
|
|
5004
5004
|
var dropdownMenu = (0, import_tailwind_variants21.tv)({
|
|
5005
|
-
base: "w-full flex flex-col p-1"
|
|
5005
|
+
base: "w-full flex flex-col gap-0.5 p-1"
|
|
5006
5006
|
});
|
|
5007
5007
|
|
|
5008
5008
|
// src/components/image.ts
|
|
@@ -6192,6 +6192,13 @@ var tabs = (0, import_tailwind_variants29.tv)({
|
|
|
6192
6192
|
tab: "data-[selected=true]:after:bg-danger"
|
|
6193
6193
|
}
|
|
6194
6194
|
}
|
|
6195
|
+
],
|
|
6196
|
+
compoundSlots: [
|
|
6197
|
+
{
|
|
6198
|
+
variant: "underlined",
|
|
6199
|
+
slots: ["tab", "tabList", "cursor"],
|
|
6200
|
+
class: ["rounded-none"]
|
|
6201
|
+
}
|
|
6195
6202
|
]
|
|
6196
6203
|
});
|
|
6197
6204
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import "./chunk-PRWEADY4.mjs";
|
|
2
|
-
import {
|
|
3
|
-
snippet
|
|
4
|
-
} from "./chunk-3D7G7PZH.mjs";
|
|
5
2
|
import {
|
|
6
3
|
spacer
|
|
7
4
|
} from "./chunk-3B4SYPW2.mjs";
|
|
@@ -13,17 +10,13 @@ import {
|
|
|
13
10
|
} from "./chunk-U54UQOTS.mjs";
|
|
14
11
|
import {
|
|
15
12
|
tabs
|
|
16
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-IYCTMZYP.mjs";
|
|
17
14
|
import {
|
|
18
15
|
toggle
|
|
19
16
|
} from "./chunk-UKSPZOXY.mjs";
|
|
20
17
|
import {
|
|
21
18
|
user
|
|
22
19
|
} from "./chunk-ZFYINWFR.mjs";
|
|
23
|
-
import {
|
|
24
|
-
link,
|
|
25
|
-
linkAnchorClasses
|
|
26
|
-
} from "./chunk-I36TDMJB.mjs";
|
|
27
20
|
import {
|
|
28
21
|
modal
|
|
29
22
|
} from "./chunk-AUOEYXLQ.mjs";
|
|
@@ -47,8 +40,8 @@ import {
|
|
|
47
40
|
skeleton
|
|
48
41
|
} from "./chunk-P5E3PNHW.mjs";
|
|
49
42
|
import {
|
|
50
|
-
|
|
51
|
-
} from "./chunk-
|
|
43
|
+
snippet
|
|
44
|
+
} from "./chunk-3D7G7PZH.mjs";
|
|
52
45
|
import {
|
|
53
46
|
divider
|
|
54
47
|
} from "./chunk-2ENRZMQI.mjs";
|
|
@@ -60,7 +53,7 @@ import {
|
|
|
60
53
|
dropdownItem,
|
|
61
54
|
dropdownMenu,
|
|
62
55
|
dropdownSection
|
|
63
|
-
} from "./chunk-
|
|
56
|
+
} from "./chunk-YIDZQ5FC.mjs";
|
|
64
57
|
import {
|
|
65
58
|
image
|
|
66
59
|
} from "./chunk-46ZSXBCH.mjs";
|
|
@@ -71,9 +64,9 @@ import {
|
|
|
71
64
|
kbd
|
|
72
65
|
} from "./chunk-GBPOVFEX.mjs";
|
|
73
66
|
import {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
67
|
+
link,
|
|
68
|
+
linkAnchorClasses
|
|
69
|
+
} from "./chunk-I36TDMJB.mjs";
|
|
77
70
|
import {
|
|
78
71
|
avatar,
|
|
79
72
|
avatarGroup
|
|
@@ -98,17 +91,25 @@ import {
|
|
|
98
91
|
import {
|
|
99
92
|
circularProgress
|
|
100
93
|
} from "./chunk-UPBFQDTD.mjs";
|
|
94
|
+
import {
|
|
95
|
+
code
|
|
96
|
+
} from "./chunk-576B55VI.mjs";
|
|
101
97
|
import "./chunk-CMYR6AOY.mjs";
|
|
102
98
|
import "./chunk-K7LK7NCE.mjs";
|
|
103
99
|
import {
|
|
104
100
|
colorVariants
|
|
105
101
|
} from "./chunk-CEW7YOHH.mjs";
|
|
102
|
+
import {
|
|
103
|
+
accordion,
|
|
104
|
+
accordionItem
|
|
105
|
+
} from "./chunk-YNGJCDQN.mjs";
|
|
106
106
|
import {
|
|
107
107
|
nextui
|
|
108
108
|
} from "./chunk-52QYM3YD.mjs";
|
|
109
109
|
import "./chunk-OQGOVMIP.mjs";
|
|
110
110
|
import "./chunk-4Z22WXZX.mjs";
|
|
111
111
|
import "./chunk-HJLDXSH7.mjs";
|
|
112
|
+
import "./chunk-DI2L75XK.mjs";
|
|
112
113
|
import {
|
|
113
114
|
absoluteFullClasses,
|
|
114
115
|
baseStyles,
|
|
@@ -116,7 +117,6 @@ import {
|
|
|
116
117
|
ringClasses,
|
|
117
118
|
translateCenterClasses
|
|
118
119
|
} from "./chunk-TSW7CNKY.mjs";
|
|
119
|
-
import "./chunk-DI2L75XK.mjs";
|
|
120
120
|
import "./chunk-WQEDQHKX.mjs";
|
|
121
121
|
import {
|
|
122
122
|
colors
|
package/dist/plugin.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
import "./chunk-OQGOVMIP.mjs";
|
|
5
5
|
import "./chunk-4Z22WXZX.mjs";
|
|
6
6
|
import "./chunk-HJLDXSH7.mjs";
|
|
7
|
-
import "./chunk-TSW7CNKY.mjs";
|
|
8
7
|
import "./chunk-DI2L75XK.mjs";
|
|
8
|
+
import "./chunk-TSW7CNKY.mjs";
|
|
9
9
|
import "./chunk-WQEDQHKX.mjs";
|
|
10
10
|
import "./chunk-LBMDDCFV.mjs";
|
|
11
11
|
import "./chunk-RB7R7Z3Y.mjs";
|