@g4rcez/components 2.0.40 → 2.0.41
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/components/display/shortcut.jsx +3 -3
- package/dist/components/floating/command-palette.d.ts.map +1 -1
- package/dist/components/floating/command-palette.jsx +61 -81
- package/dist/components/floating/modal.jsx +2 -2
- package/dist/index.css +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3329 -3346
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +11 -11
- package/dist/index.umd.js.map +1 -1
- package/dist/preset/src/styles/dark.js +2 -2
- package/dist/styles/dark.js +2 -2
- package/package.json +2 -1
|
@@ -78,9 +78,9 @@ export var DARK_THEME = {
|
|
|
78
78
|
},
|
|
79
79
|
floating: {
|
|
80
80
|
foreground: "hsla(210, 40%, 98%)",
|
|
81
|
-
background: "hsla(
|
|
81
|
+
background: "hsla(219, 15%, 12%)",
|
|
82
82
|
hover: "hsla(221, 10%, 22%)",
|
|
83
|
-
border: "hsla(240, 7%,
|
|
83
|
+
border: "hsla(240, 7%, 17%)",
|
|
84
84
|
overlay: "hsla(0, 0%, 0%)",
|
|
85
85
|
},
|
|
86
86
|
tooltip: {
|
package/dist/styles/dark.js
CHANGED
|
@@ -78,9 +78,9 @@ export const DARK_THEME = {
|
|
|
78
78
|
},
|
|
79
79
|
floating: {
|
|
80
80
|
foreground: "hsla(210, 40%, 98%)",
|
|
81
|
-
background: "hsla(
|
|
81
|
+
background: "hsla(219, 15%, 12%)",
|
|
82
82
|
hover: "hsla(221, 10%, 22%)",
|
|
83
|
-
border: "hsla(240, 7%,
|
|
83
|
+
border: "hsla(240, 7%, 17%)",
|
|
84
84
|
overlay: "hsla(0, 0%, 0%)",
|
|
85
85
|
},
|
|
86
86
|
tooltip: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@g4rcez/components",
|
|
3
3
|
"description": "Customizable react components.",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.41",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"private": false,
|
|
7
7
|
"packageManager": "pnpm@10.12.3",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"watch": "vite build --watch --minify false",
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
26
27
|
"build": "rm -rf ./dist; vite build; npm run lib:types; npm run preset; npm run lib:css",
|
|
27
28
|
"format": "npx prettier --write .",
|
|
28
29
|
"lib:css": "BUILD_LIB=true tailwind -i ./src/index.css -o ./dist/index.css --minify",
|