@nextui-org/theme 2.3.0 → 2.4.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.
- package/dist/chunk-E257OVH3.mjs +12 -0
- package/dist/{chunk-LCMN7HGG.mjs → chunk-FVKQU6KS.mjs} +1 -1
- package/dist/{chunk-IDHWVJY2.mjs → chunk-LJXTFBEV.mjs} +1 -1
- package/dist/{chunk-HIFLYEAM.mjs → chunk-QS3I2D2K.mjs} +1 -1
- package/dist/{chunk-KOCBDPPO.mjs → chunk-Y2BFQAAT.mjs} +1 -0
- package/dist/components/accordion.js +1 -1
- package/dist/components/accordion.mjs +1 -1
- package/dist/components/form.d.ts +20 -0
- package/dist/components/form.js +80 -0
- package/dist/components/form.mjs +8 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +10 -2
- package/dist/components/index.mjs +15 -11
- package/dist/components/input.js +1 -0
- package/dist/components/input.mjs +1 -1
- package/dist/components/select.js +1 -1
- package/dist/components/select.mjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +10 -2
- package/dist/index.mjs +18 -14
- package/dist/plugin.mjs +3 -3
- package/dist/utilities/index.mjs +2 -2
- package/package.json +2 -2
- package/dist/{chunk-XZMJGJQX.mjs → chunk-3FZCW6LN.mjs} +3 -3
- /package/dist/{chunk-MA4DKK64.mjs → chunk-3ZVSVLZD.mjs} +0 -0
|
@@ -26,7 +26,7 @@ var select = tv({
|
|
|
26
26
|
selectorIcon: "absolute end-3 w-4 h-4",
|
|
27
27
|
spinner: "absolute end-3",
|
|
28
28
|
value: ["text-foreground-500", "font-normal", "w-full", "text-start"],
|
|
29
|
-
listboxWrapper: "scroll-py-6
|
|
29
|
+
listboxWrapper: "scroll-py-6 w-full",
|
|
30
30
|
listbox: "",
|
|
31
31
|
popoverContent: "w-full p-1 overflow-hidden",
|
|
32
32
|
helperWrapper: "p-1 flex relative flex-col gap-1.5",
|
|
@@ -35,7 +35,7 @@ var accordionItem = tv({
|
|
|
35
35
|
startContent: "flex-shrink-0",
|
|
36
36
|
indicator: "text-default-400",
|
|
37
37
|
titleWrapper: "flex-1 flex flex-col text-start",
|
|
38
|
-
title: "text-foreground text-
|
|
38
|
+
title: "text-foreground text-medium",
|
|
39
39
|
subtitle: "text-small text-foreground-500 font-normal",
|
|
40
40
|
content: "py-2"
|
|
41
41
|
},
|
|
@@ -110,7 +110,7 @@ var accordionItem = tv({
|
|
|
110
110
|
startContent: "flex-shrink-0",
|
|
111
111
|
indicator: "text-default-400",
|
|
112
112
|
titleWrapper: "flex-1 flex flex-col text-start",
|
|
113
|
-
title: "text-foreground text-
|
|
113
|
+
title: "text-foreground text-medium",
|
|
114
114
|
subtitle: "text-small text-foreground-500 font-normal",
|
|
115
115
|
content: "py-2"
|
|
116
116
|
},
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as tailwind_variants from 'tailwind-variants';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Card **Tailwind Variants** component
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```js
|
|
10
|
+
* const classNames = form({...})
|
|
11
|
+
*
|
|
12
|
+
* <form className={base()}>
|
|
13
|
+
* // form content
|
|
14
|
+
* </form>
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
declare const form: tailwind_variants.TVReturnType<{} | {} | {}, undefined, "flex flex-col gap-2 items-start", tailwind_variants_dist_config.TVConfig<unknown, {} | {}>, {} | {}, undefined, tailwind_variants.TVReturnType<unknown, undefined, "flex flex-col gap-2 items-start", tailwind_variants_dist_config.TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
18
|
+
type FormVariantProps = VariantProps<typeof form>;
|
|
19
|
+
|
|
20
|
+
export { FormVariantProps, form };
|
|
@@ -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/form.ts
|
|
21
|
+
var form_exports = {};
|
|
22
|
+
__export(form_exports, {
|
|
23
|
+
form: () => form
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(form_exports);
|
|
26
|
+
|
|
27
|
+
// src/utils/tv.ts
|
|
28
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
29
|
+
|
|
30
|
+
// src/utils/tw-merge-config.ts
|
|
31
|
+
var COMMON_UNITS = ["small", "medium", "large"];
|
|
32
|
+
var twMergeConfig = {
|
|
33
|
+
theme: {
|
|
34
|
+
opacity: ["disabled"],
|
|
35
|
+
spacing: ["divider"],
|
|
36
|
+
borderWidth: COMMON_UNITS,
|
|
37
|
+
borderRadius: COMMON_UNITS
|
|
38
|
+
},
|
|
39
|
+
classGroups: {
|
|
40
|
+
shadow: [{ shadow: COMMON_UNITS }],
|
|
41
|
+
"font-size": [{ text: ["tiny", ...COMMON_UNITS] }],
|
|
42
|
+
"bg-image": [
|
|
43
|
+
"bg-stripe-gradient-default",
|
|
44
|
+
"bg-stripe-gradient-primary",
|
|
45
|
+
"bg-stripe-gradient-secondary",
|
|
46
|
+
"bg-stripe-gradient-success",
|
|
47
|
+
"bg-stripe-gradient-warning",
|
|
48
|
+
"bg-stripe-gradient-danger"
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
// src/utils/tv.ts
|
|
54
|
+
var tv = (options, config) => {
|
|
55
|
+
var _a, _b, _c;
|
|
56
|
+
return (0, import_tailwind_variants.tv)(options, {
|
|
57
|
+
...config,
|
|
58
|
+
twMerge: (_a = config == null ? void 0 : config.twMerge) != null ? _a : true,
|
|
59
|
+
twMergeConfig: {
|
|
60
|
+
...config == null ? void 0 : config.twMergeConfig,
|
|
61
|
+
theme: {
|
|
62
|
+
...(_b = config == null ? void 0 : config.twMergeConfig) == null ? void 0 : _b.theme,
|
|
63
|
+
...twMergeConfig.theme
|
|
64
|
+
},
|
|
65
|
+
classGroups: {
|
|
66
|
+
...(_c = config == null ? void 0 : config.twMergeConfig) == null ? void 0 : _c.classGroups,
|
|
67
|
+
...twMergeConfig.classGroups
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
// src/components/form.ts
|
|
74
|
+
var form = tv({
|
|
75
|
+
base: "flex flex-col gap-2 items-start"
|
|
76
|
+
});
|
|
77
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
78
|
+
0 && (module.exports = {
|
|
79
|
+
form
|
|
80
|
+
});
|
|
@@ -39,5 +39,6 @@ export { DateInputReturnType, DateInputSlots, DateInputVariantProps, dateInput }
|
|
|
39
39
|
export { DatePickerReturnType, DatePickerSlots, DatePickerVariantProps, DateRangePickerReturnType, DateRangePickerSlots, DateRangePickerVariantProps, datePicker, dateRangePicker } from './date-picker.js';
|
|
40
40
|
export { AlertSlots, AlertVariantProps, alert } from './alert.js';
|
|
41
41
|
export { DrawerVariants, drawer } from './drawer.js';
|
|
42
|
+
export { FormVariantProps, form } from './form.js';
|
|
42
43
|
import 'tailwind-variants';
|
|
43
44
|
import 'tailwind-variants/dist/config';
|
package/dist/components/index.js
CHANGED
|
@@ -48,6 +48,7 @@ __export(components_exports, {
|
|
|
48
48
|
dropdownItem: () => dropdownItem,
|
|
49
49
|
dropdownMenu: () => dropdownMenu,
|
|
50
50
|
dropdownSection: () => dropdownSection,
|
|
51
|
+
form: () => form,
|
|
51
52
|
image: () => image,
|
|
52
53
|
input: () => input,
|
|
53
54
|
inputOtp: () => inputOtp,
|
|
@@ -3487,7 +3488,7 @@ var accordionItem = tv({
|
|
|
3487
3488
|
startContent: "flex-shrink-0",
|
|
3488
3489
|
indicator: "text-default-400",
|
|
3489
3490
|
titleWrapper: "flex-1 flex flex-col text-start",
|
|
3490
|
-
title: "text-foreground text-
|
|
3491
|
+
title: "text-foreground text-medium",
|
|
3491
3492
|
subtitle: "text-small text-foreground-500 font-normal",
|
|
3492
3493
|
content: "py-2"
|
|
3493
3494
|
},
|
|
@@ -4217,6 +4218,7 @@ var input = tv({
|
|
|
4217
4218
|
"z-10",
|
|
4218
4219
|
"pointer-events-none",
|
|
4219
4220
|
"origin-top-left",
|
|
4221
|
+
"flex-shrink-0",
|
|
4220
4222
|
"rtl:origin-top-right",
|
|
4221
4223
|
"subpixel-antialiased",
|
|
4222
4224
|
"block",
|
|
@@ -6664,7 +6666,7 @@ var select = tv({
|
|
|
6664
6666
|
selectorIcon: "absolute end-3 w-4 h-4",
|
|
6665
6667
|
spinner: "absolute end-3",
|
|
6666
6668
|
value: ["text-foreground-500", "font-normal", "w-full", "text-start"],
|
|
6667
|
-
listboxWrapper: "scroll-py-6
|
|
6669
|
+
listboxWrapper: "scroll-py-6 w-full",
|
|
6668
6670
|
listbox: "",
|
|
6669
6671
|
popoverContent: "w-full p-1 overflow-hidden",
|
|
6670
6672
|
helperWrapper: "p-1 flex relative flex-col gap-1.5",
|
|
@@ -9679,6 +9681,11 @@ var drawer = tv({
|
|
|
9679
9681
|
}
|
|
9680
9682
|
}
|
|
9681
9683
|
});
|
|
9684
|
+
|
|
9685
|
+
// src/components/form.ts
|
|
9686
|
+
var form = tv({
|
|
9687
|
+
base: "flex flex-col gap-2 items-start"
|
|
9688
|
+
});
|
|
9682
9689
|
// Annotate the CommonJS export names for ESM import in node:
|
|
9683
9690
|
0 && (module.exports = {
|
|
9684
9691
|
accordion,
|
|
@@ -9709,6 +9716,7 @@ var drawer = tv({
|
|
|
9709
9716
|
dropdownItem,
|
|
9710
9717
|
dropdownMenu,
|
|
9711
9718
|
dropdownSection,
|
|
9719
|
+
form,
|
|
9712
9720
|
image,
|
|
9713
9721
|
input,
|
|
9714
9722
|
inputOtp,
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-3ZVSVLZD.mjs";
|
|
2
|
+
import {
|
|
3
|
+
spacer
|
|
4
|
+
} from "../chunk-AKXXHKTO.mjs";
|
|
2
5
|
import {
|
|
3
6
|
spinner
|
|
4
7
|
} from "../chunk-DBPAK7QN.mjs";
|
|
@@ -14,6 +17,9 @@ import {
|
|
|
14
17
|
import {
|
|
15
18
|
user
|
|
16
19
|
} from "../chunk-GMZHMFEU.mjs";
|
|
20
|
+
import {
|
|
21
|
+
popover
|
|
22
|
+
} from "../chunk-HHK47K4W.mjs";
|
|
17
23
|
import {
|
|
18
24
|
circularProgress,
|
|
19
25
|
progress
|
|
@@ -27,7 +33,7 @@ import {
|
|
|
27
33
|
} from "../chunk-AN5I7NTT.mjs";
|
|
28
34
|
import {
|
|
29
35
|
select
|
|
30
|
-
} from "../chunk-
|
|
36
|
+
} from "../chunk-LJXTFBEV.mjs";
|
|
31
37
|
import {
|
|
32
38
|
skeleton
|
|
33
39
|
} from "../chunk-OAHW4NON.mjs";
|
|
@@ -38,8 +44,8 @@ import {
|
|
|
38
44
|
snippet
|
|
39
45
|
} from "../chunk-SC2SILVU.mjs";
|
|
40
46
|
import {
|
|
41
|
-
|
|
42
|
-
} from "../chunk-
|
|
47
|
+
input
|
|
48
|
+
} from "../chunk-Y2BFQAAT.mjs";
|
|
43
49
|
import {
|
|
44
50
|
kbd
|
|
45
51
|
} from "../chunk-VX7HAPUO.mjs";
|
|
@@ -62,9 +68,6 @@ import {
|
|
|
62
68
|
import {
|
|
63
69
|
pagination
|
|
64
70
|
} from "../chunk-EGGHND3C.mjs";
|
|
65
|
-
import {
|
|
66
|
-
popover
|
|
67
|
-
} from "../chunk-HHK47K4W.mjs";
|
|
68
71
|
import {
|
|
69
72
|
divider
|
|
70
73
|
} from "../chunk-AXSF7SRE.mjs";
|
|
@@ -80,15 +83,15 @@ import {
|
|
|
80
83
|
dropdownMenu,
|
|
81
84
|
dropdownSection
|
|
82
85
|
} from "../chunk-EQPJSVMB.mjs";
|
|
86
|
+
import {
|
|
87
|
+
form
|
|
88
|
+
} from "../chunk-E257OVH3.mjs";
|
|
83
89
|
import {
|
|
84
90
|
image
|
|
85
91
|
} from "../chunk-TOQXZATI.mjs";
|
|
86
92
|
import {
|
|
87
93
|
inputOtp
|
|
88
94
|
} from "../chunk-6CPZ7K75.mjs";
|
|
89
|
-
import {
|
|
90
|
-
input
|
|
91
|
-
} from "../chunk-KOCBDPPO.mjs";
|
|
92
95
|
import {
|
|
93
96
|
button,
|
|
94
97
|
buttonGroup
|
|
@@ -119,7 +122,7 @@ import {
|
|
|
119
122
|
import {
|
|
120
123
|
accordion,
|
|
121
124
|
accordionItem
|
|
122
|
-
} from "../chunk-
|
|
125
|
+
} from "../chunk-QS3I2D2K.mjs";
|
|
123
126
|
import {
|
|
124
127
|
alert
|
|
125
128
|
} from "../chunk-MO6TCUI5.mjs";
|
|
@@ -173,6 +176,7 @@ export {
|
|
|
173
176
|
dropdownItem,
|
|
174
177
|
dropdownMenu,
|
|
175
178
|
dropdownSection,
|
|
179
|
+
form,
|
|
176
180
|
image,
|
|
177
181
|
input,
|
|
178
182
|
inputOtp,
|
package/dist/components/input.js
CHANGED
|
@@ -98,7 +98,7 @@ var select = tv({
|
|
|
98
98
|
selectorIcon: "absolute end-3 w-4 h-4",
|
|
99
99
|
spinner: "absolute end-3",
|
|
100
100
|
value: ["text-foreground-500", "font-normal", "w-full", "text-start"],
|
|
101
|
-
listboxWrapper: "scroll-py-6
|
|
101
|
+
listboxWrapper: "scroll-py-6 w-full",
|
|
102
102
|
listbox: "",
|
|
103
103
|
popoverContent: "w-full p-1 overflow-hidden",
|
|
104
104
|
helperWrapper: "p-1 flex relative flex-col gap-1.5",
|
package/dist/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export { DateInputReturnType, DateInputSlots, DateInputVariantProps, dateInput }
|
|
|
39
39
|
export { DatePickerReturnType, DatePickerSlots, DatePickerVariantProps, DateRangePickerReturnType, DateRangePickerSlots, DateRangePickerVariantProps, datePicker, dateRangePicker } from './components/date-picker.js';
|
|
40
40
|
export { AlertSlots, AlertVariantProps, alert } from './components/alert.js';
|
|
41
41
|
export { DrawerVariants, drawer } from './components/drawer.js';
|
|
42
|
+
export { FormVariantProps, form } from './components/form.js';
|
|
42
43
|
export { absoluteFullClasses, baseStyles, collapseAdjacentVariantBorders, dataFocusVisibleClasses, focusVisibleClasses, groupDataFocusVisibleClasses, ringClasses, translateCenterClasses } from './utils/classes.js';
|
|
43
44
|
export { SlotsToClasses } from './utils/types.js';
|
|
44
45
|
export { colorVariants } from './utils/variants.js';
|
package/dist/index.js
CHANGED
|
@@ -66,6 +66,7 @@ __export(src_exports, {
|
|
|
66
66
|
dropdownMenu: () => dropdownMenu,
|
|
67
67
|
dropdownSection: () => dropdownSection,
|
|
68
68
|
focusVisibleClasses: () => focusVisibleClasses,
|
|
69
|
+
form: () => form,
|
|
69
70
|
groupDataFocusVisibleClasses: () => groupDataFocusVisibleClasses,
|
|
70
71
|
image: () => image,
|
|
71
72
|
input: () => input,
|
|
@@ -3548,7 +3549,7 @@ var accordionItem = tv({
|
|
|
3548
3549
|
startContent: "flex-shrink-0",
|
|
3549
3550
|
indicator: "text-default-400",
|
|
3550
3551
|
titleWrapper: "flex-1 flex flex-col text-start",
|
|
3551
|
-
title: "text-foreground text-
|
|
3552
|
+
title: "text-foreground text-medium",
|
|
3552
3553
|
subtitle: "text-small text-foreground-500 font-normal",
|
|
3553
3554
|
content: "py-2"
|
|
3554
3555
|
},
|
|
@@ -4278,6 +4279,7 @@ var input = tv({
|
|
|
4278
4279
|
"z-10",
|
|
4279
4280
|
"pointer-events-none",
|
|
4280
4281
|
"origin-top-left",
|
|
4282
|
+
"flex-shrink-0",
|
|
4281
4283
|
"rtl:origin-top-right",
|
|
4282
4284
|
"subpixel-antialiased",
|
|
4283
4285
|
"block",
|
|
@@ -6725,7 +6727,7 @@ var select = tv({
|
|
|
6725
6727
|
selectorIcon: "absolute end-3 w-4 h-4",
|
|
6726
6728
|
spinner: "absolute end-3",
|
|
6727
6729
|
value: ["text-foreground-500", "font-normal", "w-full", "text-start"],
|
|
6728
|
-
listboxWrapper: "scroll-py-6
|
|
6730
|
+
listboxWrapper: "scroll-py-6 w-full",
|
|
6729
6731
|
listbox: "",
|
|
6730
6732
|
popoverContent: "w-full p-1 overflow-hidden",
|
|
6731
6733
|
helperWrapper: "p-1 flex relative flex-col gap-1.5",
|
|
@@ -9741,6 +9743,11 @@ var drawer = tv({
|
|
|
9741
9743
|
}
|
|
9742
9744
|
});
|
|
9743
9745
|
|
|
9746
|
+
// src/components/form.ts
|
|
9747
|
+
var form = tv({
|
|
9748
|
+
base: "flex flex-col gap-2 items-start"
|
|
9749
|
+
});
|
|
9750
|
+
|
|
9744
9751
|
// src/colors/blue.ts
|
|
9745
9752
|
var blue = {
|
|
9746
9753
|
50: "#e6f1fe",
|
|
@@ -10529,6 +10536,7 @@ var nextui = (config = {}) => {
|
|
|
10529
10536
|
dropdownMenu,
|
|
10530
10537
|
dropdownSection,
|
|
10531
10538
|
focusVisibleClasses,
|
|
10539
|
+
form,
|
|
10532
10540
|
groupDataFocusVisibleClasses,
|
|
10533
10541
|
image,
|
|
10534
10542
|
input,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-3ZVSVLZD.mjs";
|
|
2
|
+
import {
|
|
3
|
+
spacer
|
|
4
|
+
} from "./chunk-AKXXHKTO.mjs";
|
|
2
5
|
import {
|
|
3
6
|
spinner
|
|
4
7
|
} from "./chunk-DBPAK7QN.mjs";
|
|
@@ -14,6 +17,9 @@ import {
|
|
|
14
17
|
import {
|
|
15
18
|
user
|
|
16
19
|
} from "./chunk-GMZHMFEU.mjs";
|
|
20
|
+
import {
|
|
21
|
+
popover
|
|
22
|
+
} from "./chunk-HHK47K4W.mjs";
|
|
17
23
|
import {
|
|
18
24
|
circularProgress,
|
|
19
25
|
progress
|
|
@@ -27,7 +33,7 @@ import {
|
|
|
27
33
|
} from "./chunk-AN5I7NTT.mjs";
|
|
28
34
|
import {
|
|
29
35
|
select
|
|
30
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-LJXTFBEV.mjs";
|
|
31
37
|
import {
|
|
32
38
|
skeleton
|
|
33
39
|
} from "./chunk-OAHW4NON.mjs";
|
|
@@ -38,8 +44,8 @@ import {
|
|
|
38
44
|
snippet
|
|
39
45
|
} from "./chunk-SC2SILVU.mjs";
|
|
40
46
|
import {
|
|
41
|
-
|
|
42
|
-
} from "./chunk-
|
|
47
|
+
input
|
|
48
|
+
} from "./chunk-Y2BFQAAT.mjs";
|
|
43
49
|
import {
|
|
44
50
|
kbd
|
|
45
51
|
} from "./chunk-VX7HAPUO.mjs";
|
|
@@ -62,9 +68,6 @@ import {
|
|
|
62
68
|
import {
|
|
63
69
|
pagination
|
|
64
70
|
} from "./chunk-EGGHND3C.mjs";
|
|
65
|
-
import {
|
|
66
|
-
popover
|
|
67
|
-
} from "./chunk-HHK47K4W.mjs";
|
|
68
71
|
import {
|
|
69
72
|
divider
|
|
70
73
|
} from "./chunk-AXSF7SRE.mjs";
|
|
@@ -80,15 +83,15 @@ import {
|
|
|
80
83
|
dropdownMenu,
|
|
81
84
|
dropdownSection
|
|
82
85
|
} from "./chunk-EQPJSVMB.mjs";
|
|
86
|
+
import {
|
|
87
|
+
form
|
|
88
|
+
} from "./chunk-E257OVH3.mjs";
|
|
83
89
|
import {
|
|
84
90
|
image
|
|
85
91
|
} from "./chunk-TOQXZATI.mjs";
|
|
86
92
|
import {
|
|
87
93
|
inputOtp
|
|
88
94
|
} from "./chunk-6CPZ7K75.mjs";
|
|
89
|
-
import {
|
|
90
|
-
input
|
|
91
|
-
} from "./chunk-KOCBDPPO.mjs";
|
|
92
95
|
import {
|
|
93
96
|
button,
|
|
94
97
|
buttonGroup
|
|
@@ -119,7 +122,7 @@ import {
|
|
|
119
122
|
import {
|
|
120
123
|
accordion,
|
|
121
124
|
accordionItem
|
|
122
|
-
} from "./chunk-
|
|
125
|
+
} from "./chunk-QS3I2D2K.mjs";
|
|
123
126
|
import {
|
|
124
127
|
alert
|
|
125
128
|
} from "./chunk-MO6TCUI5.mjs";
|
|
@@ -156,12 +159,12 @@ import {
|
|
|
156
159
|
} from "./chunk-GIXI35A3.mjs";
|
|
157
160
|
import {
|
|
158
161
|
nextui
|
|
159
|
-
} from "./chunk-
|
|
162
|
+
} from "./chunk-FVKQU6KS.mjs";
|
|
160
163
|
import "./chunk-D2XMP2NC.mjs";
|
|
161
|
-
import "./chunk-
|
|
164
|
+
import "./chunk-3FZCW6LN.mjs";
|
|
165
|
+
import "./chunk-4Z22WXZX.mjs";
|
|
162
166
|
import "./chunk-WN6AL2BX.mjs";
|
|
163
167
|
import "./chunk-W5UU3F46.mjs";
|
|
164
|
-
import "./chunk-4Z22WXZX.mjs";
|
|
165
168
|
import {
|
|
166
169
|
absoluteFullClasses,
|
|
167
170
|
baseStyles,
|
|
@@ -240,6 +243,7 @@ export {
|
|
|
240
243
|
dropdownMenu,
|
|
241
244
|
dropdownSection,
|
|
242
245
|
focusVisibleClasses,
|
|
246
|
+
form,
|
|
243
247
|
groupDataFocusVisibleClasses,
|
|
244
248
|
image,
|
|
245
249
|
input,
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FVKQU6KS.mjs";
|
|
4
4
|
import "./chunk-D2XMP2NC.mjs";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-3FZCW6LN.mjs";
|
|
6
|
+
import "./chunk-4Z22WXZX.mjs";
|
|
6
7
|
import "./chunk-WN6AL2BX.mjs";
|
|
7
8
|
import "./chunk-W5UU3F46.mjs";
|
|
8
|
-
import "./chunk-4Z22WXZX.mjs";
|
|
9
9
|
import "./chunk-XHQUSKIE.mjs";
|
|
10
10
|
import "./chunk-WQEDQHKX.mjs";
|
|
11
11
|
import "./chunk-QZTWGJ72.mjs";
|
package/dist/utilities/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextui-org/theme",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "The default theme for NextUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"theme",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"clsx": "^1.2.1",
|
|
45
45
|
"tailwind-variants": "^0.1.20",
|
|
46
46
|
"tailwind-merge": "^2.5.2",
|
|
47
|
-
"@nextui-org/shared-utils": "2.
|
|
47
|
+
"@nextui-org/shared-utils": "2.1.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"tailwindcss": ">=3.4.0"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
scrollbar_hide_default
|
|
3
|
+
} from "./chunk-4Z22WXZX.mjs";
|
|
1
4
|
import {
|
|
2
5
|
transition_default
|
|
3
6
|
} from "./chunk-WN6AL2BX.mjs";
|
|
4
7
|
import {
|
|
5
8
|
custom_default
|
|
6
9
|
} from "./chunk-W5UU3F46.mjs";
|
|
7
|
-
import {
|
|
8
|
-
scrollbar_hide_default
|
|
9
|
-
} from "./chunk-4Z22WXZX.mjs";
|
|
10
10
|
|
|
11
11
|
// src/utilities/index.ts
|
|
12
12
|
var utilities = {
|
|
File without changes
|