@nextui-org/theme 0.0.0-dev-v2-20230424125106 → 0.0.0-dev-v2-20230424201229
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-5HKM2D3Z.mjs +18 -0
- package/dist/{chunk-BLEVU2FW.mjs → chunk-NQICV62H.mjs} +2 -2
- package/dist/{chunk-6U5W7RS7.mjs → chunk-PBWDYOO2.mjs} +7 -7
- package/dist/{chunk-FJNSTLAL.mjs → chunk-UYHZ35FY.mjs} +4 -4
- package/dist/colors/common.mjs +3 -3
- package/dist/colors/index.js +3 -3
- package/dist/colors/index.mjs +6 -6
- package/dist/colors/semantic.js +3 -3
- package/dist/colors/semantic.mjs +4 -4
- package/dist/colors.js +3 -3
- package/dist/colors.mjs +6 -6
- package/dist/components/avatar.mjs +1 -1
- package/dist/components/badge.mjs +1 -1
- package/dist/components/button.mjs +1 -1
- package/dist/components/chip.mjs +1 -1
- package/dist/components/code.mjs +1 -1
- package/dist/components/divider.d.ts +27 -0
- package/dist/components/divider.js +42 -0
- package/dist/components/divider.mjs +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +17 -0
- package/dist/components/index.mjs +38 -34
- package/dist/components/link.mjs +1 -1
- 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 +24 -7
- package/dist/index.mjs +57 -53
- package/dist/plugin.js +4 -4
- package/dist/plugin.mjs +9 -9
- package/dist/utils/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/{chunk-RH7YHIQY.mjs → chunk-FD464FGG.mjs} +0 -0
- package/dist/{chunk-CRCBVLUP.mjs → chunk-W4HTBNGS.mjs} +6 -6
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/components/divider.ts
|
|
2
|
+
import { tv } from "tailwind-variants";
|
|
3
|
+
var divider = tv({
|
|
4
|
+
base: "shrink-0 bg-border border-none",
|
|
5
|
+
variants: {
|
|
6
|
+
orientation: {
|
|
7
|
+
horizontal: "w-full h-px",
|
|
8
|
+
vertical: "h-full w-px"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
defaultVariants: {
|
|
12
|
+
orientation: "horizontal"
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export {
|
|
17
|
+
divider
|
|
18
|
+
};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import {
|
|
2
2
|
utilities
|
|
3
3
|
} from "./chunk-XLATS5QU.mjs";
|
|
4
|
-
import {
|
|
5
|
-
baseStyles
|
|
6
|
-
} from "./chunk-INZK6TTL.mjs";
|
|
7
4
|
import {
|
|
8
5
|
semanticColors
|
|
9
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-UYHZ35FY.mjs";
|
|
10
7
|
import {
|
|
11
8
|
removeDefaultKeys
|
|
12
9
|
} from "./chunk-37PIXVP4.mjs";
|
|
10
|
+
import {
|
|
11
|
+
commonColors
|
|
12
|
+
} from "./chunk-W4HTBNGS.mjs";
|
|
13
13
|
import {
|
|
14
14
|
animations
|
|
15
15
|
} from "./chunk-DMASP6FA.mjs";
|
|
16
16
|
import {
|
|
17
|
-
|
|
18
|
-
} from "./chunk-
|
|
17
|
+
baseStyles
|
|
18
|
+
} from "./chunk-INZK6TTL.mjs";
|
|
19
19
|
|
|
20
20
|
// src/plugin.ts
|
|
21
21
|
import Color from "color";
|
|
22
|
-
import plugin from "tailwindcss/plugin";
|
|
22
|
+
import plugin from "tailwindcss/plugin.js";
|
|
23
23
|
import forEach from "lodash.foreach";
|
|
24
24
|
import flatten from "flat";
|
|
25
25
|
import get from "lodash.get";
|
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
} from "./chunk-37PIXVP4.mjs";
|
|
4
4
|
import {
|
|
5
5
|
commonColors
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-W4HTBNGS.mjs";
|
|
7
7
|
|
|
8
8
|
// src/colors/semantic.ts
|
|
9
|
-
import twColors from "tailwindcss/colors";
|
|
9
|
+
import twColors from "tailwindcss/colors.js";
|
|
10
10
|
import { readableColor } from "color2k";
|
|
11
11
|
var base = {
|
|
12
12
|
light: {
|
|
@@ -17,7 +17,7 @@ var base = {
|
|
|
17
17
|
DEFAULT: "#11181C"
|
|
18
18
|
},
|
|
19
19
|
border: {
|
|
20
|
-
DEFAULT:
|
|
20
|
+
DEFAULT: twColors.zinc[300]
|
|
21
21
|
},
|
|
22
22
|
content1: {
|
|
23
23
|
DEFAULT: twColors.zinc[50],
|
|
@@ -44,7 +44,7 @@ var base = {
|
|
|
44
44
|
DEFAULT: "#ECEDEE"
|
|
45
45
|
},
|
|
46
46
|
border: {
|
|
47
|
-
DEFAULT:
|
|
47
|
+
DEFAULT: twColors.zinc[700]
|
|
48
48
|
},
|
|
49
49
|
content1: {
|
|
50
50
|
DEFAULT: twColors.zinc[900],
|
package/dist/colors/common.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
commonColors
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
5
|
-
import "../chunk-L2OL7R23.mjs";
|
|
3
|
+
} from "../chunk-W4HTBNGS.mjs";
|
|
6
4
|
import "../chunk-YZYGFPNK.mjs";
|
|
7
5
|
import "../chunk-Y4YW5MKL.mjs";
|
|
8
6
|
import "../chunk-KZJBCC2H.mjs";
|
|
9
7
|
import "../chunk-T3GWIVAM.mjs";
|
|
10
8
|
import "../chunk-OR5PUD24.mjs";
|
|
9
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
10
|
+
import "../chunk-L2OL7R23.mjs";
|
|
11
11
|
export {
|
|
12
12
|
commonColors
|
|
13
13
|
};
|
package/dist/colors/index.js
CHANGED
|
@@ -144,7 +144,7 @@ var commonColors = {
|
|
|
144
144
|
};
|
|
145
145
|
|
|
146
146
|
// src/colors/semantic.ts
|
|
147
|
-
var import_colors = __toESM(require("tailwindcss/colors"));
|
|
147
|
+
var import_colors = __toESM(require("tailwindcss/colors.js"));
|
|
148
148
|
var import_color2k = require("color2k");
|
|
149
149
|
|
|
150
150
|
// src/utils/object.ts
|
|
@@ -175,7 +175,7 @@ var base = {
|
|
|
175
175
|
DEFAULT: "#11181C"
|
|
176
176
|
},
|
|
177
177
|
border: {
|
|
178
|
-
DEFAULT:
|
|
178
|
+
DEFAULT: import_colors.default.zinc[300]
|
|
179
179
|
},
|
|
180
180
|
content1: {
|
|
181
181
|
DEFAULT: import_colors.default.zinc[50],
|
|
@@ -202,7 +202,7 @@ var base = {
|
|
|
202
202
|
DEFAULT: "#ECEDEE"
|
|
203
203
|
},
|
|
204
204
|
border: {
|
|
205
|
-
DEFAULT:
|
|
205
|
+
DEFAULT: import_colors.default.zinc[700]
|
|
206
206
|
},
|
|
207
207
|
content1: {
|
|
208
208
|
DEFAULT: import_colors.default.zinc[900],
|
package/dist/colors/index.mjs
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
colors
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-NQICV62H.mjs";
|
|
4
4
|
import {
|
|
5
5
|
semanticColors
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-37PIXVP4.mjs";
|
|
6
|
+
} from "../chunk-UYHZ35FY.mjs";
|
|
8
7
|
import "../chunk-M63AFAHO.mjs";
|
|
8
|
+
import "../chunk-37PIXVP4.mjs";
|
|
9
9
|
import {
|
|
10
10
|
commonColors
|
|
11
|
-
} from "../chunk-
|
|
12
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
13
|
-
import "../chunk-L2OL7R23.mjs";
|
|
11
|
+
} from "../chunk-W4HTBNGS.mjs";
|
|
14
12
|
import "../chunk-YZYGFPNK.mjs";
|
|
15
13
|
import "../chunk-Y4YW5MKL.mjs";
|
|
16
14
|
import "../chunk-KZJBCC2H.mjs";
|
|
17
15
|
import "../chunk-T3GWIVAM.mjs";
|
|
18
16
|
import "../chunk-OR5PUD24.mjs";
|
|
17
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
18
|
+
import "../chunk-L2OL7R23.mjs";
|
|
19
19
|
export {
|
|
20
20
|
colors,
|
|
21
21
|
commonColors,
|
package/dist/colors/semantic.js
CHANGED
|
@@ -31,7 +31,7 @@ __export(semantic_exports, {
|
|
|
31
31
|
semanticColorsLight: () => semanticColorsLight
|
|
32
32
|
});
|
|
33
33
|
module.exports = __toCommonJS(semantic_exports);
|
|
34
|
-
var import_colors = __toESM(require("tailwindcss/colors"));
|
|
34
|
+
var import_colors = __toESM(require("tailwindcss/colors.js"));
|
|
35
35
|
var import_color2k = require("color2k");
|
|
36
36
|
|
|
37
37
|
// src/utils/object.ts
|
|
@@ -173,7 +173,7 @@ var base = {
|
|
|
173
173
|
DEFAULT: "#11181C"
|
|
174
174
|
},
|
|
175
175
|
border: {
|
|
176
|
-
DEFAULT:
|
|
176
|
+
DEFAULT: import_colors.default.zinc[300]
|
|
177
177
|
},
|
|
178
178
|
content1: {
|
|
179
179
|
DEFAULT: import_colors.default.zinc[50],
|
|
@@ -200,7 +200,7 @@ var base = {
|
|
|
200
200
|
DEFAULT: "#ECEDEE"
|
|
201
201
|
},
|
|
202
202
|
border: {
|
|
203
|
-
DEFAULT:
|
|
203
|
+
DEFAULT: import_colors.default.zinc[700]
|
|
204
204
|
},
|
|
205
205
|
content1: {
|
|
206
206
|
DEFAULT: import_colors.default.zinc[900],
|
package/dist/colors/semantic.mjs
CHANGED
|
@@ -2,16 +2,16 @@ import {
|
|
|
2
2
|
semanticColors,
|
|
3
3
|
semanticColorsDark,
|
|
4
4
|
semanticColorsLight
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-UYHZ35FY.mjs";
|
|
6
6
|
import "../chunk-37PIXVP4.mjs";
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-DCEG5LGX.mjs";
|
|
9
|
-
import "../chunk-L2OL7R23.mjs";
|
|
7
|
+
import "../chunk-W4HTBNGS.mjs";
|
|
10
8
|
import "../chunk-YZYGFPNK.mjs";
|
|
11
9
|
import "../chunk-Y4YW5MKL.mjs";
|
|
12
10
|
import "../chunk-KZJBCC2H.mjs";
|
|
13
11
|
import "../chunk-T3GWIVAM.mjs";
|
|
14
12
|
import "../chunk-OR5PUD24.mjs";
|
|
13
|
+
import "../chunk-DCEG5LGX.mjs";
|
|
14
|
+
import "../chunk-L2OL7R23.mjs";
|
|
15
15
|
export {
|
|
16
16
|
semanticColors,
|
|
17
17
|
semanticColorsDark,
|
package/dist/colors.js
CHANGED
|
@@ -144,7 +144,7 @@ var commonColors = {
|
|
|
144
144
|
};
|
|
145
145
|
|
|
146
146
|
// src/colors/semantic.ts
|
|
147
|
-
var import_colors = __toESM(require("tailwindcss/colors"));
|
|
147
|
+
var import_colors = __toESM(require("tailwindcss/colors.js"));
|
|
148
148
|
var import_color2k = require("color2k");
|
|
149
149
|
|
|
150
150
|
// src/utils/object.ts
|
|
@@ -175,7 +175,7 @@ var base = {
|
|
|
175
175
|
DEFAULT: "#11181C"
|
|
176
176
|
},
|
|
177
177
|
border: {
|
|
178
|
-
DEFAULT:
|
|
178
|
+
DEFAULT: import_colors.default.zinc[300]
|
|
179
179
|
},
|
|
180
180
|
content1: {
|
|
181
181
|
DEFAULT: import_colors.default.zinc[50],
|
|
@@ -202,7 +202,7 @@ var base = {
|
|
|
202
202
|
DEFAULT: "#ECEDEE"
|
|
203
203
|
},
|
|
204
204
|
border: {
|
|
205
|
-
DEFAULT:
|
|
205
|
+
DEFAULT: import_colors.default.zinc[700]
|
|
206
206
|
},
|
|
207
207
|
content1: {
|
|
208
208
|
DEFAULT: import_colors.default.zinc[900],
|
package/dist/colors.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import "./chunk-WQEDQHKX.mjs";
|
|
2
2
|
import {
|
|
3
3
|
colors
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-NQICV62H.mjs";
|
|
5
5
|
import {
|
|
6
6
|
semanticColors
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-37PIXVP4.mjs";
|
|
7
|
+
} from "./chunk-UYHZ35FY.mjs";
|
|
9
8
|
import "./chunk-M63AFAHO.mjs";
|
|
9
|
+
import "./chunk-37PIXVP4.mjs";
|
|
10
10
|
import {
|
|
11
11
|
commonColors
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
14
|
-
import "./chunk-L2OL7R23.mjs";
|
|
12
|
+
} from "./chunk-W4HTBNGS.mjs";
|
|
15
13
|
import "./chunk-YZYGFPNK.mjs";
|
|
16
14
|
import "./chunk-Y4YW5MKL.mjs";
|
|
17
15
|
import "./chunk-KZJBCC2H.mjs";
|
|
18
16
|
import "./chunk-T3GWIVAM.mjs";
|
|
19
17
|
import "./chunk-OR5PUD24.mjs";
|
|
18
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
19
|
+
import "./chunk-L2OL7R23.mjs";
|
|
20
20
|
export {
|
|
21
21
|
colors,
|
|
22
22
|
commonColors,
|
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.mjs
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
* Divider wrapper **Tailwind Variants** component
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
*
|
|
10
|
+
* const styles = divider()
|
|
11
|
+
*
|
|
12
|
+
* <span className={styles} />
|
|
13
|
+
*/
|
|
14
|
+
declare const divider: tailwind_variants.TVReturnType<{
|
|
15
|
+
orientation: {
|
|
16
|
+
horizontal: string;
|
|
17
|
+
vertical: string;
|
|
18
|
+
};
|
|
19
|
+
}, unknown, undefined, undefined, "shrink-0 bg-border border-none", tailwind_variants_dist_config.TVConfig<{
|
|
20
|
+
orientation: {
|
|
21
|
+
horizontal: string;
|
|
22
|
+
vertical: string;
|
|
23
|
+
};
|
|
24
|
+
}, unknown>>;
|
|
25
|
+
type DividerVariantProps = VariantProps<typeof divider>;
|
|
26
|
+
|
|
27
|
+
export { DividerVariantProps, divider };
|
|
@@ -0,0 +1,42 @@
|
|
|
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/divider.ts
|
|
21
|
+
var divider_exports = {};
|
|
22
|
+
__export(divider_exports, {
|
|
23
|
+
divider: () => divider
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(divider_exports);
|
|
26
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
27
|
+
var divider = (0, import_tailwind_variants.tv)({
|
|
28
|
+
base: "shrink-0 bg-border border-none",
|
|
29
|
+
variants: {
|
|
30
|
+
orientation: {
|
|
31
|
+
horizontal: "w-full h-px",
|
|
32
|
+
vertical: "h-full w-px"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
defaultVariants: {
|
|
36
|
+
orientation: "horizontal"
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
40
|
+
0 && (module.exports = {
|
|
41
|
+
divider
|
|
42
|
+
});
|
|
@@ -32,5 +32,6 @@ export { ModalSlots, ModalVariantProps, modal } from './modal.js';
|
|
|
32
32
|
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
|
+
export { DividerVariantProps, divider } from './divider.js';
|
|
35
36
|
import 'tailwind-variants';
|
|
36
37
|
import 'tailwind-variants/dist/config';
|
package/dist/components/index.js
CHANGED
|
@@ -33,6 +33,7 @@ __export(components_exports, {
|
|
|
33
33
|
chip: () => chip,
|
|
34
34
|
circularProgress: () => circularProgress,
|
|
35
35
|
code: () => code,
|
|
36
|
+
divider: () => divider,
|
|
36
37
|
drip: () => drip,
|
|
37
38
|
dropdown: () => dropdown,
|
|
38
39
|
dropdownItem: () => dropdownItem,
|
|
@@ -5690,6 +5691,21 @@ var spacer = (0, import_tailwind_variants34.tv)({
|
|
|
5690
5691
|
isInline: false
|
|
5691
5692
|
}
|
|
5692
5693
|
});
|
|
5694
|
+
|
|
5695
|
+
// src/components/divider.ts
|
|
5696
|
+
var import_tailwind_variants35 = require("tailwind-variants");
|
|
5697
|
+
var divider = (0, import_tailwind_variants35.tv)({
|
|
5698
|
+
base: "shrink-0 bg-border border-none",
|
|
5699
|
+
variants: {
|
|
5700
|
+
orientation: {
|
|
5701
|
+
horizontal: "w-full h-px",
|
|
5702
|
+
vertical: "h-full w-px"
|
|
5703
|
+
}
|
|
5704
|
+
},
|
|
5705
|
+
defaultVariants: {
|
|
5706
|
+
orientation: "horizontal"
|
|
5707
|
+
}
|
|
5708
|
+
});
|
|
5693
5709
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5694
5710
|
0 && (module.exports = {
|
|
5695
5711
|
accordion,
|
|
@@ -5705,6 +5721,7 @@ var spacer = (0, import_tailwind_variants34.tv)({
|
|
|
5705
5721
|
chip,
|
|
5706
5722
|
circularProgress,
|
|
5707
5723
|
code,
|
|
5724
|
+
divider,
|
|
5708
5725
|
drip,
|
|
5709
5726
|
dropdown,
|
|
5710
5727
|
dropdownItem,
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import "../chunk-
|
|
2
|
-
import {
|
|
3
|
-
toggle
|
|
4
|
-
} from "../chunk-NCFXYR7C.mjs";
|
|
5
|
-
import {
|
|
6
|
-
user
|
|
7
|
-
} from "../chunk-MW7UVOSP.mjs";
|
|
8
|
-
import {
|
|
9
|
-
popover
|
|
10
|
-
} from "../chunk-JWVJZEAT.mjs";
|
|
11
|
-
import {
|
|
12
|
-
progress
|
|
13
|
-
} from "../chunk-I7DM7NL7.mjs";
|
|
1
|
+
import "../chunk-FD464FGG.mjs";
|
|
14
2
|
import {
|
|
15
3
|
radioGroup
|
|
16
4
|
} from "../chunk-HHWXPWYN.mjs";
|
|
@@ -30,11 +18,11 @@ import {
|
|
|
30
18
|
table
|
|
31
19
|
} from "../chunk-KWWWVBJL.mjs";
|
|
32
20
|
import {
|
|
33
|
-
|
|
34
|
-
} from "../chunk-
|
|
21
|
+
toggle
|
|
22
|
+
} from "../chunk-NCFXYR7C.mjs";
|
|
35
23
|
import {
|
|
36
|
-
|
|
37
|
-
} from "../chunk-
|
|
24
|
+
user
|
|
25
|
+
} from "../chunk-MW7UVOSP.mjs";
|
|
38
26
|
import {
|
|
39
27
|
input
|
|
40
28
|
} from "../chunk-DBYBIR6S.mjs";
|
|
@@ -51,17 +39,17 @@ import {
|
|
|
51
39
|
pagination
|
|
52
40
|
} from "../chunk-TYA6TT57.mjs";
|
|
53
41
|
import {
|
|
54
|
-
|
|
55
|
-
} from "../chunk-
|
|
56
|
-
import {
|
|
57
|
-
chip
|
|
58
|
-
} from "../chunk-NQJBJXX3.mjs";
|
|
42
|
+
popover
|
|
43
|
+
} from "../chunk-JWVJZEAT.mjs";
|
|
59
44
|
import {
|
|
60
|
-
|
|
61
|
-
} from "../chunk-
|
|
45
|
+
progress
|
|
46
|
+
} from "../chunk-I7DM7NL7.mjs";
|
|
62
47
|
import {
|
|
63
48
|
code
|
|
64
49
|
} from "../chunk-WFCALVUC.mjs";
|
|
50
|
+
import {
|
|
51
|
+
divider
|
|
52
|
+
} from "../chunk-5HKM2D3Z.mjs";
|
|
65
53
|
import {
|
|
66
54
|
drip
|
|
67
55
|
} from "../chunk-OIVGIOVG.mjs";
|
|
@@ -75,14 +63,11 @@ import {
|
|
|
75
63
|
dropdownSection
|
|
76
64
|
} from "../chunk-AVGEHFT4.mjs";
|
|
77
65
|
import {
|
|
78
|
-
|
|
79
|
-
} from "../chunk-
|
|
80
|
-
import {
|
|
81
|
-
avatarGroup
|
|
82
|
-
} from "../chunk-MLH3XSY7.mjs";
|
|
66
|
+
dropdown
|
|
67
|
+
} from "../chunk-UNMHV7HH.mjs";
|
|
83
68
|
import {
|
|
84
|
-
|
|
85
|
-
} from "../chunk-
|
|
69
|
+
image
|
|
70
|
+
} from "../chunk-6GGRJ6I7.mjs";
|
|
86
71
|
import {
|
|
87
72
|
badge
|
|
88
73
|
} from "../chunk-LCSLO6UV.mjs";
|
|
@@ -92,18 +77,36 @@ import {
|
|
|
92
77
|
import {
|
|
93
78
|
button
|
|
94
79
|
} from "../chunk-W2RCO7SN.mjs";
|
|
95
|
-
import "../chunk-CMYR6AOY.mjs";
|
|
96
|
-
import "../chunk-K7LK7NCE.mjs";
|
|
97
|
-
import "../chunk-RO3WUCFF.mjs";
|
|
98
80
|
import {
|
|
99
81
|
card
|
|
100
82
|
} from "../chunk-TDD767J7.mjs";
|
|
101
83
|
import {
|
|
102
84
|
checkboxGroup
|
|
103
85
|
} from "../chunk-U77YMEWM.mjs";
|
|
86
|
+
import {
|
|
87
|
+
checkbox
|
|
88
|
+
} from "../chunk-7EKGN7JP.mjs";
|
|
89
|
+
import {
|
|
90
|
+
chip
|
|
91
|
+
} from "../chunk-NQJBJXX3.mjs";
|
|
92
|
+
import {
|
|
93
|
+
circularProgress
|
|
94
|
+
} from "../chunk-FK5GDC67.mjs";
|
|
104
95
|
import {
|
|
105
96
|
accordionItem
|
|
106
97
|
} from "../chunk-XSFH4S4Y.mjs";
|
|
98
|
+
import {
|
|
99
|
+
accordion
|
|
100
|
+
} from "../chunk-YYBLBQIV.mjs";
|
|
101
|
+
import {
|
|
102
|
+
avatarGroup
|
|
103
|
+
} from "../chunk-MLH3XSY7.mjs";
|
|
104
|
+
import {
|
|
105
|
+
avatar
|
|
106
|
+
} from "../chunk-VZVHC65R.mjs";
|
|
107
|
+
import "../chunk-CMYR6AOY.mjs";
|
|
108
|
+
import "../chunk-RO3WUCFF.mjs";
|
|
109
|
+
import "../chunk-K7LK7NCE.mjs";
|
|
107
110
|
import "../chunk-INZK6TTL.mjs";
|
|
108
111
|
export {
|
|
109
112
|
accordion,
|
|
@@ -119,6 +122,7 @@ export {
|
|
|
119
122
|
chip,
|
|
120
123
|
circularProgress,
|
|
121
124
|
code,
|
|
125
|
+
divider,
|
|
122
126
|
drip,
|
|
123
127
|
dropdown,
|
|
124
128
|
dropdownItem,
|
package/dist/components/link.mjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { ModalSlots, ModalVariantProps, modal } from './components/modal.js';
|
|
|
34
34
|
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
|
+
export { DividerVariantProps, divider } from './components/divider.js';
|
|
37
38
|
export { absoluteFullClasses, baseStyles, focusVisibleClasses, ringClasses, translateCenterClasses } from './utils/classes.js';
|
|
38
39
|
export { SlotsToClasses } from './utils/types.js';
|
|
39
40
|
export { colorVariants } from './utils/variants.js';
|
package/dist/index.js
CHANGED
|
@@ -45,6 +45,7 @@ __export(src_exports, {
|
|
|
45
45
|
colorVariants: () => colorVariants,
|
|
46
46
|
colors: () => colors,
|
|
47
47
|
commonColors: () => commonColors,
|
|
48
|
+
divider: () => divider,
|
|
48
49
|
drip: () => drip,
|
|
49
50
|
dropdown: () => dropdown,
|
|
50
51
|
dropdownItem: () => dropdownItem,
|
|
@@ -70,7 +71,7 @@ __export(src_exports, {
|
|
|
70
71
|
table: () => table,
|
|
71
72
|
toggle: () => toggle,
|
|
72
73
|
translateCenterClasses: () => translateCenterClasses,
|
|
73
|
-
tv: () =>
|
|
74
|
+
tv: () => import_tailwind_variants37.tv,
|
|
74
75
|
user: () => user
|
|
75
76
|
});
|
|
76
77
|
module.exports = __toCommonJS(src_exports);
|
|
@@ -5714,6 +5715,21 @@ var spacer = (0, import_tailwind_variants34.tv)({
|
|
|
5714
5715
|
}
|
|
5715
5716
|
});
|
|
5716
5717
|
|
|
5718
|
+
// src/components/divider.ts
|
|
5719
|
+
var import_tailwind_variants35 = require("tailwind-variants");
|
|
5720
|
+
var divider = (0, import_tailwind_variants35.tv)({
|
|
5721
|
+
base: "shrink-0 bg-border border-none",
|
|
5722
|
+
variants: {
|
|
5723
|
+
orientation: {
|
|
5724
|
+
horizontal: "w-full h-px",
|
|
5725
|
+
vertical: "h-full w-px"
|
|
5726
|
+
}
|
|
5727
|
+
},
|
|
5728
|
+
defaultVariants: {
|
|
5729
|
+
orientation: "horizontal"
|
|
5730
|
+
}
|
|
5731
|
+
});
|
|
5732
|
+
|
|
5717
5733
|
// src/colors/blue.ts
|
|
5718
5734
|
var blue = {
|
|
5719
5735
|
50: "#e6f1fe",
|
|
@@ -5826,7 +5842,7 @@ var commonColors = {
|
|
|
5826
5842
|
};
|
|
5827
5843
|
|
|
5828
5844
|
// src/colors/semantic.ts
|
|
5829
|
-
var import_colors = __toESM(require("tailwindcss/colors"));
|
|
5845
|
+
var import_colors = __toESM(require("tailwindcss/colors.js"));
|
|
5830
5846
|
var import_color2k = require("color2k");
|
|
5831
5847
|
|
|
5832
5848
|
// src/utils/object.ts
|
|
@@ -5868,7 +5884,7 @@ var base = {
|
|
|
5868
5884
|
DEFAULT: "#11181C"
|
|
5869
5885
|
},
|
|
5870
5886
|
border: {
|
|
5871
|
-
DEFAULT:
|
|
5887
|
+
DEFAULT: import_colors.default.zinc[300]
|
|
5872
5888
|
},
|
|
5873
5889
|
content1: {
|
|
5874
5890
|
DEFAULT: import_colors.default.zinc[50],
|
|
@@ -5895,7 +5911,7 @@ var base = {
|
|
|
5895
5911
|
DEFAULT: "#ECEDEE"
|
|
5896
5912
|
},
|
|
5897
5913
|
border: {
|
|
5898
|
-
DEFAULT:
|
|
5914
|
+
DEFAULT: import_colors.default.zinc[700]
|
|
5899
5915
|
},
|
|
5900
5916
|
content1: {
|
|
5901
5917
|
DEFAULT: import_colors.default.zinc[900],
|
|
@@ -5994,7 +6010,7 @@ var colors = {
|
|
|
5994
6010
|
|
|
5995
6011
|
// src/plugin.ts
|
|
5996
6012
|
var import_color = __toESM(require("color"));
|
|
5997
|
-
var import_plugin = __toESM(require("tailwindcss/plugin"));
|
|
6013
|
+
var import_plugin = __toESM(require("tailwindcss/plugin.js"));
|
|
5998
6014
|
var import_lodash = __toESM(require("lodash.foreach"));
|
|
5999
6015
|
var import_flat = __toESM(require("flat"));
|
|
6000
6016
|
var import_lodash2 = __toESM(require("lodash.get"));
|
|
@@ -6271,9 +6287,9 @@ var nextui = (config = {}) => {
|
|
|
6271
6287
|
};
|
|
6272
6288
|
|
|
6273
6289
|
// src/index.ts
|
|
6274
|
-
var import_tailwind_variants35 = require("tailwind-variants");
|
|
6275
6290
|
var import_tailwind_variants36 = require("tailwind-variants");
|
|
6276
|
-
var
|
|
6291
|
+
var import_tailwind_variants37 = require("tailwind-variants");
|
|
6292
|
+
var cn = (...classes) => (0, import_tailwind_variants36.cn)(classes)();
|
|
6277
6293
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6278
6294
|
0 && (module.exports = {
|
|
6279
6295
|
absoluteFullClasses,
|
|
@@ -6295,6 +6311,7 @@ var cn = (...classes) => (0, import_tailwind_variants35.cn)(classes)();
|
|
|
6295
6311
|
colorVariants,
|
|
6296
6312
|
colors,
|
|
6297
6313
|
commonColors,
|
|
6314
|
+
divider,
|
|
6298
6315
|
drip,
|
|
6299
6316
|
dropdown,
|
|
6300
6317
|
dropdownItem,
|
package/dist/index.mjs
CHANGED
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import "./chunk-
|
|
2
|
-
import {
|
|
3
|
-
toggle
|
|
4
|
-
} from "./chunk-NCFXYR7C.mjs";
|
|
5
|
-
import {
|
|
6
|
-
user
|
|
7
|
-
} from "./chunk-MW7UVOSP.mjs";
|
|
8
|
-
import {
|
|
9
|
-
popover
|
|
10
|
-
} from "./chunk-JWVJZEAT.mjs";
|
|
11
|
-
import {
|
|
12
|
-
progress
|
|
13
|
-
} from "./chunk-I7DM7NL7.mjs";
|
|
1
|
+
import "./chunk-FD464FGG.mjs";
|
|
14
2
|
import {
|
|
15
3
|
radioGroup
|
|
16
4
|
} from "./chunk-HHWXPWYN.mjs";
|
|
@@ -30,11 +18,11 @@ import {
|
|
|
30
18
|
table
|
|
31
19
|
} from "./chunk-KWWWVBJL.mjs";
|
|
32
20
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
21
|
+
toggle
|
|
22
|
+
} from "./chunk-NCFXYR7C.mjs";
|
|
35
23
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
24
|
+
user
|
|
25
|
+
} from "./chunk-MW7UVOSP.mjs";
|
|
38
26
|
import {
|
|
39
27
|
input
|
|
40
28
|
} from "./chunk-DBYBIR6S.mjs";
|
|
@@ -51,17 +39,17 @@ import {
|
|
|
51
39
|
pagination
|
|
52
40
|
} from "./chunk-TYA6TT57.mjs";
|
|
53
41
|
import {
|
|
54
|
-
|
|
55
|
-
} from "./chunk-
|
|
56
|
-
import {
|
|
57
|
-
chip
|
|
58
|
-
} from "./chunk-NQJBJXX3.mjs";
|
|
42
|
+
popover
|
|
43
|
+
} from "./chunk-JWVJZEAT.mjs";
|
|
59
44
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
45
|
+
progress
|
|
46
|
+
} from "./chunk-I7DM7NL7.mjs";
|
|
62
47
|
import {
|
|
63
48
|
code
|
|
64
49
|
} from "./chunk-WFCALVUC.mjs";
|
|
50
|
+
import {
|
|
51
|
+
divider
|
|
52
|
+
} from "./chunk-5HKM2D3Z.mjs";
|
|
65
53
|
import {
|
|
66
54
|
drip
|
|
67
55
|
} from "./chunk-OIVGIOVG.mjs";
|
|
@@ -75,14 +63,11 @@ import {
|
|
|
75
63
|
dropdownSection
|
|
76
64
|
} from "./chunk-AVGEHFT4.mjs";
|
|
77
65
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
80
|
-
import {
|
|
81
|
-
avatarGroup
|
|
82
|
-
} from "./chunk-MLH3XSY7.mjs";
|
|
66
|
+
dropdown
|
|
67
|
+
} from "./chunk-UNMHV7HH.mjs";
|
|
83
68
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
69
|
+
image
|
|
70
|
+
} from "./chunk-6GGRJ6I7.mjs";
|
|
86
71
|
import {
|
|
87
72
|
badge
|
|
88
73
|
} from "./chunk-LCSLO6UV.mjs";
|
|
@@ -92,11 +77,6 @@ import {
|
|
|
92
77
|
import {
|
|
93
78
|
button
|
|
94
79
|
} from "./chunk-W2RCO7SN.mjs";
|
|
95
|
-
import "./chunk-CMYR6AOY.mjs";
|
|
96
|
-
import "./chunk-K7LK7NCE.mjs";
|
|
97
|
-
import {
|
|
98
|
-
colorVariants
|
|
99
|
-
} from "./chunk-RO3WUCFF.mjs";
|
|
100
80
|
import {
|
|
101
81
|
card
|
|
102
82
|
} from "./chunk-TDD767J7.mjs";
|
|
@@ -104,39 +84,62 @@ import {
|
|
|
104
84
|
checkboxGroup
|
|
105
85
|
} from "./chunk-U77YMEWM.mjs";
|
|
106
86
|
import {
|
|
107
|
-
|
|
108
|
-
} from "./chunk-
|
|
87
|
+
checkbox
|
|
88
|
+
} from "./chunk-7EKGN7JP.mjs";
|
|
89
|
+
import {
|
|
90
|
+
chip
|
|
91
|
+
} from "./chunk-NQJBJXX3.mjs";
|
|
92
|
+
import {
|
|
93
|
+
circularProgress
|
|
94
|
+
} from "./chunk-FK5GDC67.mjs";
|
|
109
95
|
import {
|
|
110
96
|
nextui
|
|
111
|
-
} from "./chunk-
|
|
97
|
+
} from "./chunk-PBWDYOO2.mjs";
|
|
112
98
|
import "./chunk-XLATS5QU.mjs";
|
|
113
|
-
import {
|
|
114
|
-
absoluteFullClasses,
|
|
115
|
-
baseStyles,
|
|
116
|
-
focusVisibleClasses,
|
|
117
|
-
ringClasses,
|
|
118
|
-
translateCenterClasses
|
|
119
|
-
} from "./chunk-INZK6TTL.mjs";
|
|
120
99
|
import "./chunk-WQEDQHKX.mjs";
|
|
121
100
|
import {
|
|
122
101
|
colors
|
|
123
|
-
} from "./chunk-
|
|
102
|
+
} from "./chunk-NQICV62H.mjs";
|
|
124
103
|
import {
|
|
125
104
|
semanticColors
|
|
126
|
-
} from "./chunk-
|
|
127
|
-
import "./chunk-37PIXVP4.mjs";
|
|
105
|
+
} from "./chunk-UYHZ35FY.mjs";
|
|
128
106
|
import "./chunk-M63AFAHO.mjs";
|
|
129
|
-
import "./chunk-
|
|
107
|
+
import "./chunk-37PIXVP4.mjs";
|
|
130
108
|
import {
|
|
131
109
|
commonColors
|
|
132
|
-
} from "./chunk-
|
|
133
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
134
|
-
import "./chunk-L2OL7R23.mjs";
|
|
110
|
+
} from "./chunk-W4HTBNGS.mjs";
|
|
135
111
|
import "./chunk-YZYGFPNK.mjs";
|
|
136
112
|
import "./chunk-Y4YW5MKL.mjs";
|
|
137
113
|
import "./chunk-KZJBCC2H.mjs";
|
|
138
114
|
import "./chunk-T3GWIVAM.mjs";
|
|
139
115
|
import "./chunk-OR5PUD24.mjs";
|
|
116
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
117
|
+
import "./chunk-L2OL7R23.mjs";
|
|
118
|
+
import "./chunk-DMASP6FA.mjs";
|
|
119
|
+
import {
|
|
120
|
+
accordionItem
|
|
121
|
+
} from "./chunk-XSFH4S4Y.mjs";
|
|
122
|
+
import {
|
|
123
|
+
accordion
|
|
124
|
+
} from "./chunk-YYBLBQIV.mjs";
|
|
125
|
+
import {
|
|
126
|
+
avatarGroup
|
|
127
|
+
} from "./chunk-MLH3XSY7.mjs";
|
|
128
|
+
import {
|
|
129
|
+
avatar
|
|
130
|
+
} from "./chunk-VZVHC65R.mjs";
|
|
131
|
+
import "./chunk-CMYR6AOY.mjs";
|
|
132
|
+
import {
|
|
133
|
+
colorVariants
|
|
134
|
+
} from "./chunk-RO3WUCFF.mjs";
|
|
135
|
+
import "./chunk-K7LK7NCE.mjs";
|
|
136
|
+
import {
|
|
137
|
+
absoluteFullClasses,
|
|
138
|
+
baseStyles,
|
|
139
|
+
focusVisibleClasses,
|
|
140
|
+
ringClasses,
|
|
141
|
+
translateCenterClasses
|
|
142
|
+
} from "./chunk-INZK6TTL.mjs";
|
|
140
143
|
|
|
141
144
|
// src/index.ts
|
|
142
145
|
import { cn as cnBase } from "tailwind-variants";
|
|
@@ -162,6 +165,7 @@ export {
|
|
|
162
165
|
colorVariants,
|
|
163
166
|
colors,
|
|
164
167
|
commonColors,
|
|
168
|
+
divider,
|
|
165
169
|
drip,
|
|
166
170
|
dropdown,
|
|
167
171
|
dropdownItem,
|
package/dist/plugin.js
CHANGED
|
@@ -30,7 +30,7 @@ __export(plugin_exports, {
|
|
|
30
30
|
});
|
|
31
31
|
module.exports = __toCommonJS(plugin_exports);
|
|
32
32
|
var import_color = __toESM(require("color"));
|
|
33
|
-
var import_plugin = __toESM(require("tailwindcss/plugin"));
|
|
33
|
+
var import_plugin = __toESM(require("tailwindcss/plugin.js"));
|
|
34
34
|
var import_lodash = __toESM(require("lodash.foreach"));
|
|
35
35
|
var import_flat = __toESM(require("flat"));
|
|
36
36
|
var import_lodash2 = __toESM(require("lodash.get"));
|
|
@@ -148,7 +148,7 @@ var commonColors = {
|
|
|
148
148
|
};
|
|
149
149
|
|
|
150
150
|
// src/colors/semantic.ts
|
|
151
|
-
var import_colors = __toESM(require("tailwindcss/colors"));
|
|
151
|
+
var import_colors = __toESM(require("tailwindcss/colors.js"));
|
|
152
152
|
var import_color2k = require("color2k");
|
|
153
153
|
|
|
154
154
|
// src/utils/object.ts
|
|
@@ -190,7 +190,7 @@ var base = {
|
|
|
190
190
|
DEFAULT: "#11181C"
|
|
191
191
|
},
|
|
192
192
|
border: {
|
|
193
|
-
DEFAULT:
|
|
193
|
+
DEFAULT: import_colors.default.zinc[300]
|
|
194
194
|
},
|
|
195
195
|
content1: {
|
|
196
196
|
DEFAULT: import_colors.default.zinc[50],
|
|
@@ -217,7 +217,7 @@ var base = {
|
|
|
217
217
|
DEFAULT: "#ECEDEE"
|
|
218
218
|
},
|
|
219
219
|
border: {
|
|
220
|
-
DEFAULT:
|
|
220
|
+
DEFAULT: import_colors.default.zinc[700]
|
|
221
221
|
},
|
|
222
222
|
content1: {
|
|
223
223
|
DEFAULT: import_colors.default.zinc[900],
|
package/dist/plugin.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
nextui
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PBWDYOO2.mjs";
|
|
4
4
|
import "./chunk-XLATS5QU.mjs";
|
|
5
|
-
import "./chunk-INZK6TTL.mjs";
|
|
6
5
|
import "./chunk-WQEDQHKX.mjs";
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-37PIXVP4.mjs";
|
|
6
|
+
import "./chunk-NQICV62H.mjs";
|
|
7
|
+
import "./chunk-UYHZ35FY.mjs";
|
|
10
8
|
import "./chunk-M63AFAHO.mjs";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-DCEG5LGX.mjs";
|
|
14
|
-
import "./chunk-L2OL7R23.mjs";
|
|
9
|
+
import "./chunk-37PIXVP4.mjs";
|
|
10
|
+
import "./chunk-W4HTBNGS.mjs";
|
|
15
11
|
import "./chunk-YZYGFPNK.mjs";
|
|
16
12
|
import "./chunk-Y4YW5MKL.mjs";
|
|
17
13
|
import "./chunk-KZJBCC2H.mjs";
|
|
18
14
|
import "./chunk-T3GWIVAM.mjs";
|
|
19
15
|
import "./chunk-OR5PUD24.mjs";
|
|
16
|
+
import "./chunk-DCEG5LGX.mjs";
|
|
17
|
+
import "./chunk-L2OL7R23.mjs";
|
|
18
|
+
import "./chunk-DMASP6FA.mjs";
|
|
19
|
+
import "./chunk-INZK6TTL.mjs";
|
|
20
20
|
export {
|
|
21
21
|
nextui
|
|
22
22
|
};
|
package/dist/utils/index.mjs
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
pink
|
|
3
|
-
} from "./chunk-DCEG5LGX.mjs";
|
|
4
|
-
import {
|
|
5
|
-
purple
|
|
6
|
-
} from "./chunk-L2OL7R23.mjs";
|
|
7
1
|
import {
|
|
8
2
|
red
|
|
9
3
|
} from "./chunk-YZYGFPNK.mjs";
|
|
@@ -19,6 +13,12 @@ import {
|
|
|
19
13
|
import {
|
|
20
14
|
green
|
|
21
15
|
} from "./chunk-OR5PUD24.mjs";
|
|
16
|
+
import {
|
|
17
|
+
pink
|
|
18
|
+
} from "./chunk-DCEG5LGX.mjs";
|
|
19
|
+
import {
|
|
20
|
+
purple
|
|
21
|
+
} from "./chunk-L2OL7R23.mjs";
|
|
22
22
|
|
|
23
23
|
// src/colors/common.ts
|
|
24
24
|
var commonColors = {
|