@nextui-org/theme 0.0.0-dev-v2-20230424224035 → 0.0.0-dev-v2-20230425031000
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-W2RCO7SN.mjs → chunk-5EODOBGH.mjs} +1 -1
- package/dist/{chunk-DBYBIR6S.mjs → chunk-DO44X4Z2.mjs} +2 -2
- package/dist/chunk-KUQBSI5S.mjs +29 -0
- package/dist/components/avatar.mjs +1 -1
- package/dist/components/badge.mjs +1 -1
- package/dist/components/button.js +1 -1
- package/dist/components/button.mjs +2 -2
- package/dist/components/chip.mjs +1 -1
- package/dist/components/code.mjs +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +31 -3
- package/dist/components/index.mjs +14 -10
- package/dist/components/input.js +2 -2
- package/dist/components/input.mjs +1 -1
- package/dist/components/kbd.d.ts +43 -0
- package/dist/components/kbd.js +53 -0
- package/dist/components/kbd.mjs +6 -0
- package/dist/components/pagination.mjs +1 -1
- package/dist/components/popover.mjs +1 -1
- package/dist/components/snippet.mjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +34 -6
- package/dist/index.mjs +14 -10
- package/dist/utils/index.mjs +1 -1
- package/package.json +1 -1
- /package/dist/{chunk-FD464FGG.mjs → chunk-N7T6GTBO.mjs} +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { tv } from "tailwind-variants";
|
|
3
3
|
var input = tv({
|
|
4
4
|
slots: {
|
|
5
|
-
base: "group flex flex-col gap-2",
|
|
5
|
+
base: "group flex flex-col data-[has-elements=true]:gap-2",
|
|
6
6
|
label: "block text-sm font-medium text-neutral-600",
|
|
7
7
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
8
8
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
@@ -225,7 +225,7 @@ var input = tv({
|
|
|
225
225
|
variant: "flat",
|
|
226
226
|
color: "neutral",
|
|
227
227
|
size: "md",
|
|
228
|
-
radius: "
|
|
228
|
+
radius: "lg",
|
|
229
229
|
fullWidth: true,
|
|
230
230
|
labelPosition: "inside",
|
|
231
231
|
isDisabled: false,
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// src/components/kbd.ts
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
var kbd = tv({
|
|
4
|
+
slots: {
|
|
5
|
+
base: [
|
|
6
|
+
"px-2",
|
|
7
|
+
"py-1",
|
|
8
|
+
"inline-block",
|
|
9
|
+
"space-x-0.5",
|
|
10
|
+
"font-sans",
|
|
11
|
+
"font-medium",
|
|
12
|
+
"text-center",
|
|
13
|
+
"text-sm",
|
|
14
|
+
"border",
|
|
15
|
+
"border-neutral",
|
|
16
|
+
"bg-neutral-100",
|
|
17
|
+
"text-neutral-600",
|
|
18
|
+
"rounded-md"
|
|
19
|
+
],
|
|
20
|
+
abbr: "no-underline",
|
|
21
|
+
content: ""
|
|
22
|
+
},
|
|
23
|
+
variants: {},
|
|
24
|
+
defaultVariants: {}
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
kbd
|
|
29
|
+
};
|
|
@@ -115,7 +115,7 @@ var button = (0, import_tailwind_variants.tv)({
|
|
|
115
115
|
"subpixel-antialiased",
|
|
116
116
|
"data-[pressed=true]:scale-95",
|
|
117
117
|
"overflow-hidden",
|
|
118
|
-
"gap-
|
|
118
|
+
"gap-1.5",
|
|
119
119
|
"[&>svg]:max-w-[2em]",
|
|
120
120
|
"data-[focus-visible=true]:outline-none",
|
|
121
121
|
"data-[focus-visible=true]:ring-2",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
button
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-5EODOBGH.mjs";
|
|
4
4
|
import "../chunk-CMYR6AOY.mjs";
|
|
5
|
-
import "../chunk-RO3WUCFF.mjs";
|
|
6
5
|
import "../chunk-K7LK7NCE.mjs";
|
|
6
|
+
import "../chunk-RO3WUCFF.mjs";
|
|
7
7
|
import "../chunk-INZK6TTL.mjs";
|
|
8
8
|
export {
|
|
9
9
|
button
|
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.mjs
CHANGED
|
@@ -33,5 +33,6 @@ export { NavbarSlots, NavbarVariantProps, navbar } from './navbar.js';
|
|
|
33
33
|
export { TableReturnType, TableSlots, TableVariantProps, table } from './table.js';
|
|
34
34
|
export { SpacerVariantProps, spacer } from './spacer.js';
|
|
35
35
|
export { DividerVariantProps, divider } from './divider.js';
|
|
36
|
+
export { KbdSlots, KbdVariantProps, kbd } from './kbd.js';
|
|
36
37
|
import 'tailwind-variants';
|
|
37
38
|
import 'tailwind-variants/dist/config';
|
package/dist/components/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __export(components_exports, {
|
|
|
41
41
|
dropdownSection: () => dropdownSection,
|
|
42
42
|
image: () => image,
|
|
43
43
|
input: () => input,
|
|
44
|
+
kbd: () => kbd,
|
|
44
45
|
link: () => link,
|
|
45
46
|
modal: () => modal,
|
|
46
47
|
navbar: () => navbar,
|
|
@@ -673,7 +674,7 @@ var button = (0, import_tailwind_variants6.tv)({
|
|
|
673
674
|
"subpixel-antialiased",
|
|
674
675
|
"data-[pressed=true]:scale-95",
|
|
675
676
|
"overflow-hidden",
|
|
676
|
-
"gap-
|
|
677
|
+
"gap-1.5",
|
|
677
678
|
"[&>svg]:max-w-[2em]",
|
|
678
679
|
"data-[focus-visible=true]:outline-none",
|
|
679
680
|
"data-[focus-visible=true]:ring-2",
|
|
@@ -3774,7 +3775,7 @@ var circularProgress = (0, import_tailwind_variants24.tv)({
|
|
|
3774
3775
|
var import_tailwind_variants25 = require("tailwind-variants");
|
|
3775
3776
|
var input = (0, import_tailwind_variants25.tv)({
|
|
3776
3777
|
slots: {
|
|
3777
|
-
base: "group flex flex-col gap-2",
|
|
3778
|
+
base: "group flex flex-col data-[has-elements=true]:gap-2",
|
|
3778
3779
|
label: "block text-sm font-medium text-neutral-600",
|
|
3779
3780
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
3780
3781
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
@@ -3997,7 +3998,7 @@ var input = (0, import_tailwind_variants25.tv)({
|
|
|
3997
3998
|
variant: "flat",
|
|
3998
3999
|
color: "neutral",
|
|
3999
4000
|
size: "md",
|
|
4000
|
-
radius: "
|
|
4001
|
+
radius: "lg",
|
|
4001
4002
|
fullWidth: true,
|
|
4002
4003
|
labelPosition: "inside",
|
|
4003
4004
|
isDisabled: false,
|
|
@@ -5736,6 +5737,32 @@ var divider = (0, import_tailwind_variants35.tv)({
|
|
|
5736
5737
|
orientation: "horizontal"
|
|
5737
5738
|
}
|
|
5738
5739
|
});
|
|
5740
|
+
|
|
5741
|
+
// src/components/kbd.ts
|
|
5742
|
+
var import_tailwind_variants36 = require("tailwind-variants");
|
|
5743
|
+
var kbd = (0, import_tailwind_variants36.tv)({
|
|
5744
|
+
slots: {
|
|
5745
|
+
base: [
|
|
5746
|
+
"px-2",
|
|
5747
|
+
"py-1",
|
|
5748
|
+
"inline-block",
|
|
5749
|
+
"space-x-0.5",
|
|
5750
|
+
"font-sans",
|
|
5751
|
+
"font-medium",
|
|
5752
|
+
"text-center",
|
|
5753
|
+
"text-sm",
|
|
5754
|
+
"border",
|
|
5755
|
+
"border-neutral",
|
|
5756
|
+
"bg-neutral-100",
|
|
5757
|
+
"text-neutral-600",
|
|
5758
|
+
"rounded-md"
|
|
5759
|
+
],
|
|
5760
|
+
abbr: "no-underline",
|
|
5761
|
+
content: ""
|
|
5762
|
+
},
|
|
5763
|
+
variants: {},
|
|
5764
|
+
defaultVariants: {}
|
|
5765
|
+
});
|
|
5739
5766
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5740
5767
|
0 && (module.exports = {
|
|
5741
5768
|
accordion,
|
|
@@ -5759,6 +5786,7 @@ var divider = (0, import_tailwind_variants35.tv)({
|
|
|
5759
5786
|
dropdownSection,
|
|
5760
5787
|
image,
|
|
5761
5788
|
input,
|
|
5789
|
+
kbd,
|
|
5762
5790
|
link,
|
|
5763
5791
|
modal,
|
|
5764
5792
|
navbar,
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-N7T6GTBO.mjs";
|
|
2
|
+
import {
|
|
3
|
+
spinner
|
|
4
|
+
} from "../chunk-XUL76UJD.mjs";
|
|
2
5
|
import {
|
|
3
6
|
table
|
|
4
7
|
} from "../chunk-KWWWVBJL.mjs";
|
|
@@ -8,6 +11,9 @@ import {
|
|
|
8
11
|
import {
|
|
9
12
|
user
|
|
10
13
|
} from "../chunk-MW7UVOSP.mjs";
|
|
14
|
+
import {
|
|
15
|
+
navbar
|
|
16
|
+
} from "../chunk-ACYWLBDN.mjs";
|
|
11
17
|
import {
|
|
12
18
|
pagination
|
|
13
19
|
} from "../chunk-TYA6TT57.mjs";
|
|
@@ -29,9 +35,6 @@ import {
|
|
|
29
35
|
import {
|
|
30
36
|
spacer
|
|
31
37
|
} from "../chunk-3B4SYPW2.mjs";
|
|
32
|
-
import {
|
|
33
|
-
spinner
|
|
34
|
-
} from "../chunk-XUL76UJD.mjs";
|
|
35
38
|
import {
|
|
36
39
|
dropdownSection
|
|
37
40
|
} from "../chunk-AVGEHFT4.mjs";
|
|
@@ -43,16 +46,16 @@ import {
|
|
|
43
46
|
} from "../chunk-6GGRJ6I7.mjs";
|
|
44
47
|
import {
|
|
45
48
|
input
|
|
46
|
-
} from "../chunk-
|
|
49
|
+
} from "../chunk-DO44X4Z2.mjs";
|
|
50
|
+
import {
|
|
51
|
+
kbd
|
|
52
|
+
} from "../chunk-KUQBSI5S.mjs";
|
|
47
53
|
import {
|
|
48
54
|
link
|
|
49
55
|
} from "../chunk-XICTHLAR.mjs";
|
|
50
56
|
import {
|
|
51
57
|
modal
|
|
52
58
|
} from "../chunk-YMIOHWCD.mjs";
|
|
53
|
-
import {
|
|
54
|
-
navbar
|
|
55
|
-
} from "../chunk-ACYWLBDN.mjs";
|
|
56
59
|
import {
|
|
57
60
|
checkbox
|
|
58
61
|
} from "../chunk-7EKGN7JP.mjs";
|
|
@@ -94,10 +97,10 @@ import {
|
|
|
94
97
|
} from "../chunk-VKFQ7EZN.mjs";
|
|
95
98
|
import {
|
|
96
99
|
button
|
|
97
|
-
} from "../chunk-
|
|
100
|
+
} from "../chunk-5EODOBGH.mjs";
|
|
98
101
|
import "../chunk-CMYR6AOY.mjs";
|
|
99
|
-
import "../chunk-RO3WUCFF.mjs";
|
|
100
102
|
import "../chunk-K7LK7NCE.mjs";
|
|
103
|
+
import "../chunk-RO3WUCFF.mjs";
|
|
101
104
|
import {
|
|
102
105
|
card
|
|
103
106
|
} from "../chunk-TDD767J7.mjs";
|
|
@@ -130,6 +133,7 @@ export {
|
|
|
130
133
|
dropdownSection,
|
|
131
134
|
image,
|
|
132
135
|
input,
|
|
136
|
+
kbd,
|
|
133
137
|
link,
|
|
134
138
|
modal,
|
|
135
139
|
navbar,
|
package/dist/components/input.js
CHANGED
|
@@ -26,7 +26,7 @@ module.exports = __toCommonJS(input_exports);
|
|
|
26
26
|
var import_tailwind_variants = require("tailwind-variants");
|
|
27
27
|
var input = (0, import_tailwind_variants.tv)({
|
|
28
28
|
slots: {
|
|
29
|
-
base: "group flex flex-col gap-2",
|
|
29
|
+
base: "group flex flex-col data-[has-elements=true]:gap-2",
|
|
30
30
|
label: "block text-sm font-medium text-neutral-600",
|
|
31
31
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
32
32
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
@@ -249,7 +249,7 @@ var input = (0, import_tailwind_variants.tv)({
|
|
|
249
249
|
variant: "flat",
|
|
250
250
|
color: "neutral",
|
|
251
251
|
size: "md",
|
|
252
|
-
radius: "
|
|
252
|
+
radius: "lg",
|
|
253
253
|
fullWidth: true,
|
|
254
254
|
labelPosition: "inside",
|
|
255
255
|
isDisabled: false,
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
* Keyboard Key wrapper **Tailwind Variants** component
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
*
|
|
10
|
+
* const { base, abbr, content } = kbd()
|
|
11
|
+
*
|
|
12
|
+
* <kbd className={base()} >
|
|
13
|
+
* <abbr title="Command" className={abbr()}>⌘</abbr>
|
|
14
|
+
* <abbr title="Shift" className={abbr()}>⇧</abbr>
|
|
15
|
+
* <abbr title="Control" className={abbr()}>⌃</abbr>
|
|
16
|
+
* <abbr title="Option" className={abbr()}>⌥</abbr>
|
|
17
|
+
* <abbr title="Enter" className={abbr()}>↵</abbr>
|
|
18
|
+
* <abbr title="Delete" className={abbr()}>⌫</abbr>
|
|
19
|
+
* <abbr title="Escape" className={abbr()}>⎋</abbr>
|
|
20
|
+
* <abbr title="Tab" className={abbr()}>⇥</abbr>
|
|
21
|
+
* <abbr title="Caps Lock" className={abbr()}>⇪</abbr>
|
|
22
|
+
* <abbr title="Up" className={abbr()}>↑</abbr>
|
|
23
|
+
* <abbr title="Right" className={abbr()}>→</abbr>
|
|
24
|
+
* <abbr title="Down" className={abbr()}>↓</abbr>
|
|
25
|
+
* <abbr title="Left" className={abbr()}>←</abbr>
|
|
26
|
+
* <abbr title="Page Up" className={abbr()}>⇞</abbr>
|
|
27
|
+
* <abbr title="Page Down" className={abbr()}>⇟</abbr>
|
|
28
|
+
* <abbr title="Home" className={abbr()}>↖</abbr>
|
|
29
|
+
* <abbr title="End" className={abbr()}>↘</abbr>
|
|
30
|
+
* <abbr title="Help" className={abbr()}>?</abbr>
|
|
31
|
+
* <abbr title="Space" className={abbr()}>␣</abbr>
|
|
32
|
+
* <span className={content()}>A</span>
|
|
33
|
+
* </kbd>
|
|
34
|
+
*/
|
|
35
|
+
declare const kbd: tailwind_variants.TVReturnType<{}, unknown, {
|
|
36
|
+
base: string[];
|
|
37
|
+
abbr: string;
|
|
38
|
+
content: string;
|
|
39
|
+
}, undefined, undefined, tailwind_variants_dist_config.TVConfig<{}, unknown>>;
|
|
40
|
+
type KbdVariantProps = VariantProps<typeof kbd>;
|
|
41
|
+
type KbdSlots = keyof ReturnType<typeof kbd>;
|
|
42
|
+
|
|
43
|
+
export { KbdSlots, KbdVariantProps, kbd };
|
|
@@ -0,0 +1,53 @@
|
|
|
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/kbd.ts
|
|
21
|
+
var kbd_exports = {};
|
|
22
|
+
__export(kbd_exports, {
|
|
23
|
+
kbd: () => kbd
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(kbd_exports);
|
|
26
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
27
|
+
var kbd = (0, import_tailwind_variants.tv)({
|
|
28
|
+
slots: {
|
|
29
|
+
base: [
|
|
30
|
+
"px-2",
|
|
31
|
+
"py-1",
|
|
32
|
+
"inline-block",
|
|
33
|
+
"space-x-0.5",
|
|
34
|
+
"font-sans",
|
|
35
|
+
"font-medium",
|
|
36
|
+
"text-center",
|
|
37
|
+
"text-sm",
|
|
38
|
+
"border",
|
|
39
|
+
"border-neutral",
|
|
40
|
+
"bg-neutral-100",
|
|
41
|
+
"text-neutral-600",
|
|
42
|
+
"rounded-md"
|
|
43
|
+
],
|
|
44
|
+
abbr: "no-underline",
|
|
45
|
+
content: ""
|
|
46
|
+
},
|
|
47
|
+
variants: {},
|
|
48
|
+
defaultVariants: {}
|
|
49
|
+
});
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
kbd
|
|
53
|
+
});
|
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export { NavbarSlots, NavbarVariantProps, navbar } from './components/navbar.js'
|
|
|
35
35
|
export { TableReturnType, TableSlots, TableVariantProps, table } from './components/table.js';
|
|
36
36
|
export { SpacerVariantProps, spacer } from './components/spacer.js';
|
|
37
37
|
export { DividerVariantProps, divider } from './components/divider.js';
|
|
38
|
+
export { KbdSlots, KbdVariantProps, kbd } from './components/kbd.js';
|
|
38
39
|
export { absoluteFullClasses, baseStyles, focusVisibleClasses, ringClasses, translateCenterClasses } from './utils/classes.js';
|
|
39
40
|
export { SlotsToClasses } from './utils/types.js';
|
|
40
41
|
export { colorVariants } from './utils/variants.js';
|
package/dist/index.js
CHANGED
|
@@ -54,6 +54,7 @@ __export(src_exports, {
|
|
|
54
54
|
focusVisibleClasses: () => focusVisibleClasses,
|
|
55
55
|
image: () => image,
|
|
56
56
|
input: () => input,
|
|
57
|
+
kbd: () => kbd,
|
|
57
58
|
link: () => link,
|
|
58
59
|
modal: () => modal,
|
|
59
60
|
navbar: () => navbar,
|
|
@@ -71,7 +72,7 @@ __export(src_exports, {
|
|
|
71
72
|
table: () => table,
|
|
72
73
|
toggle: () => toggle,
|
|
73
74
|
translateCenterClasses: () => translateCenterClasses,
|
|
74
|
-
tv: () =>
|
|
75
|
+
tv: () => import_tailwind_variants38.tv,
|
|
75
76
|
user: () => user
|
|
76
77
|
});
|
|
77
78
|
module.exports = __toCommonJS(src_exports);
|
|
@@ -705,7 +706,7 @@ var button = (0, import_tailwind_variants6.tv)({
|
|
|
705
706
|
"subpixel-antialiased",
|
|
706
707
|
"data-[pressed=true]:scale-95",
|
|
707
708
|
"overflow-hidden",
|
|
708
|
-
"gap-
|
|
709
|
+
"gap-1.5",
|
|
709
710
|
"[&>svg]:max-w-[2em]",
|
|
710
711
|
"data-[focus-visible=true]:outline-none",
|
|
711
712
|
"data-[focus-visible=true]:ring-2",
|
|
@@ -3806,7 +3807,7 @@ var circularProgress = (0, import_tailwind_variants24.tv)({
|
|
|
3806
3807
|
var import_tailwind_variants25 = require("tailwind-variants");
|
|
3807
3808
|
var input = (0, import_tailwind_variants25.tv)({
|
|
3808
3809
|
slots: {
|
|
3809
|
-
base: "group flex flex-col gap-2",
|
|
3810
|
+
base: "group flex flex-col data-[has-elements=true]:gap-2",
|
|
3810
3811
|
label: "block text-sm font-medium text-neutral-600",
|
|
3811
3812
|
inputWrapper: "relative w-full inline-flex flex-row items-center shadow-sm px-3 gap-3",
|
|
3812
3813
|
innerWrapper: "inline-flex h-full items-center w-full gap-1.5 box-border",
|
|
@@ -4029,7 +4030,7 @@ var input = (0, import_tailwind_variants25.tv)({
|
|
|
4029
4030
|
variant: "flat",
|
|
4030
4031
|
color: "neutral",
|
|
4031
4032
|
size: "md",
|
|
4032
|
-
radius: "
|
|
4033
|
+
radius: "lg",
|
|
4033
4034
|
fullWidth: true,
|
|
4034
4035
|
labelPosition: "inside",
|
|
4035
4036
|
isDisabled: false,
|
|
@@ -5769,6 +5770,32 @@ var divider = (0, import_tailwind_variants35.tv)({
|
|
|
5769
5770
|
}
|
|
5770
5771
|
});
|
|
5771
5772
|
|
|
5773
|
+
// src/components/kbd.ts
|
|
5774
|
+
var import_tailwind_variants36 = require("tailwind-variants");
|
|
5775
|
+
var kbd = (0, import_tailwind_variants36.tv)({
|
|
5776
|
+
slots: {
|
|
5777
|
+
base: [
|
|
5778
|
+
"px-2",
|
|
5779
|
+
"py-1",
|
|
5780
|
+
"inline-block",
|
|
5781
|
+
"space-x-0.5",
|
|
5782
|
+
"font-sans",
|
|
5783
|
+
"font-medium",
|
|
5784
|
+
"text-center",
|
|
5785
|
+
"text-sm",
|
|
5786
|
+
"border",
|
|
5787
|
+
"border-neutral",
|
|
5788
|
+
"bg-neutral-100",
|
|
5789
|
+
"text-neutral-600",
|
|
5790
|
+
"rounded-md"
|
|
5791
|
+
],
|
|
5792
|
+
abbr: "no-underline",
|
|
5793
|
+
content: ""
|
|
5794
|
+
},
|
|
5795
|
+
variants: {},
|
|
5796
|
+
defaultVariants: {}
|
|
5797
|
+
});
|
|
5798
|
+
|
|
5772
5799
|
// src/colors/blue.ts
|
|
5773
5800
|
var blue = {
|
|
5774
5801
|
50: "#e6f1fe",
|
|
@@ -6326,9 +6353,9 @@ var nextui = (config = {}) => {
|
|
|
6326
6353
|
};
|
|
6327
6354
|
|
|
6328
6355
|
// src/index.ts
|
|
6329
|
-
var import_tailwind_variants36 = require("tailwind-variants");
|
|
6330
6356
|
var import_tailwind_variants37 = require("tailwind-variants");
|
|
6331
|
-
var
|
|
6357
|
+
var import_tailwind_variants38 = require("tailwind-variants");
|
|
6358
|
+
var cn = (...classes) => (0, import_tailwind_variants37.cn)(classes)();
|
|
6332
6359
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6333
6360
|
0 && (module.exports = {
|
|
6334
6361
|
absoluteFullClasses,
|
|
@@ -6359,6 +6386,7 @@ var cn = (...classes) => (0, import_tailwind_variants36.cn)(classes)();
|
|
|
6359
6386
|
focusVisibleClasses,
|
|
6360
6387
|
image,
|
|
6361
6388
|
input,
|
|
6389
|
+
kbd,
|
|
6362
6390
|
link,
|
|
6363
6391
|
modal,
|
|
6364
6392
|
navbar,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-N7T6GTBO.mjs";
|
|
2
|
+
import {
|
|
3
|
+
spinner
|
|
4
|
+
} from "./chunk-XUL76UJD.mjs";
|
|
2
5
|
import {
|
|
3
6
|
table
|
|
4
7
|
} from "./chunk-KWWWVBJL.mjs";
|
|
@@ -8,6 +11,9 @@ import {
|
|
|
8
11
|
import {
|
|
9
12
|
user
|
|
10
13
|
} from "./chunk-MW7UVOSP.mjs";
|
|
14
|
+
import {
|
|
15
|
+
navbar
|
|
16
|
+
} from "./chunk-ACYWLBDN.mjs";
|
|
11
17
|
import {
|
|
12
18
|
pagination
|
|
13
19
|
} from "./chunk-TYA6TT57.mjs";
|
|
@@ -29,9 +35,6 @@ import {
|
|
|
29
35
|
import {
|
|
30
36
|
spacer
|
|
31
37
|
} from "./chunk-3B4SYPW2.mjs";
|
|
32
|
-
import {
|
|
33
|
-
spinner
|
|
34
|
-
} from "./chunk-XUL76UJD.mjs";
|
|
35
38
|
import {
|
|
36
39
|
dropdownSection
|
|
37
40
|
} from "./chunk-AVGEHFT4.mjs";
|
|
@@ -43,16 +46,16 @@ import {
|
|
|
43
46
|
} from "./chunk-6GGRJ6I7.mjs";
|
|
44
47
|
import {
|
|
45
48
|
input
|
|
46
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-DO44X4Z2.mjs";
|
|
50
|
+
import {
|
|
51
|
+
kbd
|
|
52
|
+
} from "./chunk-KUQBSI5S.mjs";
|
|
47
53
|
import {
|
|
48
54
|
link
|
|
49
55
|
} from "./chunk-XICTHLAR.mjs";
|
|
50
56
|
import {
|
|
51
57
|
modal
|
|
52
58
|
} from "./chunk-YMIOHWCD.mjs";
|
|
53
|
-
import {
|
|
54
|
-
navbar
|
|
55
|
-
} from "./chunk-ACYWLBDN.mjs";
|
|
56
59
|
import {
|
|
57
60
|
checkbox
|
|
58
61
|
} from "./chunk-7EKGN7JP.mjs";
|
|
@@ -94,12 +97,12 @@ import {
|
|
|
94
97
|
} from "./chunk-VKFQ7EZN.mjs";
|
|
95
98
|
import {
|
|
96
99
|
button
|
|
97
|
-
} from "./chunk-
|
|
100
|
+
} from "./chunk-5EODOBGH.mjs";
|
|
98
101
|
import "./chunk-CMYR6AOY.mjs";
|
|
102
|
+
import "./chunk-K7LK7NCE.mjs";
|
|
99
103
|
import {
|
|
100
104
|
colorVariants
|
|
101
105
|
} from "./chunk-RO3WUCFF.mjs";
|
|
102
|
-
import "./chunk-K7LK7NCE.mjs";
|
|
103
106
|
import {
|
|
104
107
|
card
|
|
105
108
|
} from "./chunk-TDD767J7.mjs";
|
|
@@ -174,6 +177,7 @@ export {
|
|
|
174
177
|
focusVisibleClasses,
|
|
175
178
|
image,
|
|
176
179
|
input,
|
|
180
|
+
kbd,
|
|
177
181
|
link,
|
|
178
182
|
modal,
|
|
179
183
|
navbar,
|
package/dist/utils/index.mjs
CHANGED
package/package.json
CHANGED
|
File without changes
|