vlite3 1.3.8 → 1.3.9
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/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
- package/components/CommandPalette/{CommandPaletteItem.vue.js → CommandPaletteItem.vue2.js} +1 -1
- package/components/Dropdown/DropdownMenu.vue.js +1 -1
- package/components/NavbarCommandPalette.vue.js +1 -1
- package/package.json +1 -1
- package/style.css +5 -0
- /package/components/Dropdown/{DropdownMenu.vue3.js → DropdownMenu.vue2.js} +0 -0
|
@@ -4,7 +4,7 @@ import k from "../Icon.vue.js";
|
|
|
4
4
|
import { $t as E } from "../../utils/i18n.js";
|
|
5
5
|
import { useCommandPaletteItems as Y } from "./useCommandPaletteItems.js";
|
|
6
6
|
import { useCommandPaletteNav as Z } from "./useCommandPaletteNav.js";
|
|
7
|
-
import ee from "./CommandPaletteItem.
|
|
7
|
+
import ee from "./CommandPaletteItem.vue2.js";
|
|
8
8
|
const te = { class: "command-palette-content flex flex-col w-full h-full max-h-[70vh]" }, oe = { class: "flex items-center gap-3 px-4 py-3 border-b border-border/80 shrink-0" }, se = ["placeholder"], ne = ["aria-label"], re = {
|
|
9
9
|
key: 0,
|
|
10
10
|
class: "flex flex-col items-center justify-center py-14 px-6 text-center select-none",
|
|
@@ -3,7 +3,7 @@ import L from "./Icon.vue.js";
|
|
|
3
3
|
import v from "./Modal.vue.js";
|
|
4
4
|
import N from "./CommandPalette/CommandPaletteContent.vue.js";
|
|
5
5
|
import { $t as U } from "../utils/i18n.js";
|
|
6
|
-
/* empty css
|
|
6
|
+
/* empty css */
|
|
7
7
|
const V = { class: "block truncate -text-fs-1.5" }, S = { class: "ml-auto inline-flex items-center gap-0.5 px-1.5 py-0.5 rounded text-[10px] font-mono font-medium border border-border/80 bg-background text-muted-foreground ml-1" }, A = /* @__PURE__ */ x({
|
|
8
8
|
__name: "NavbarCommandPalette",
|
|
9
9
|
props: {
|
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
--color-border: '';
|
|
18
18
|
--color-input: '';
|
|
19
19
|
--color-card: '';
|
|
20
|
+
--color-card-light: '';
|
|
20
21
|
--color-secondary: '';
|
|
21
22
|
--color-secondary-foreground: '';
|
|
22
23
|
--color-muted: '';
|
|
@@ -651,12 +652,16 @@
|
|
|
651
652
|
.dark .bg-card-light {
|
|
652
653
|
--color-body: #121212 !important;
|
|
653
654
|
--color-white: #121212 !important;
|
|
655
|
+
--color-mixture-1: #1b1b1b !important;
|
|
656
|
+
--color-mixture-2: #ffffff !important;
|
|
654
657
|
background-color: #121212 !important;
|
|
655
658
|
}
|
|
656
659
|
|
|
657
660
|
.dark .bg-card .bg-card-light {
|
|
658
661
|
--color-body: #1a1a1a !important;
|
|
659
662
|
--color-white: #1a1a1a !important;
|
|
663
|
+
--color-mixture-1: #232323 !important;
|
|
664
|
+
--color-mixture-2: #000000;
|
|
660
665
|
background-color: #1a1a1a !important;
|
|
661
666
|
}
|
|
662
667
|
|
|
File without changes
|