meno-core 1.0.38 → 1.0.39
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/build-astro.ts +914 -0
- package/dist/build-static.js +2 -2
- package/dist/chunks/{chunk-UR7L5UZ3.js → chunk-HNAS6BSS.js} +2 -2
- package/dist/chunks/{chunk-EUCAKI5U.js → chunk-W6HDII4T.js} +8 -1
- package/dist/chunks/{chunk-EUCAKI5U.js.map → chunk-W6HDII4T.js.map} +2 -2
- package/dist/chunks/{chunk-JACS3C25.js → chunk-WK5XLASY.js} +2 -2
- package/dist/entries/server-router.js +2 -2
- package/dist/lib/client/index.js +5 -3
- package/dist/lib/client/index.js.map +2 -2
- package/dist/lib/server/index.js +1840 -5
- package/dist/lib/server/index.js.map +4 -4
- package/dist/lib/shared/index.js +5 -3
- package/dist/lib/shared/index.js.map +2 -2
- package/lib/client/theme.ts +4 -1
- package/lib/server/astro/componentEmitter.ts +208 -0
- package/lib/server/astro/cssCollector.ts +147 -0
- package/lib/server/astro/index.ts +5 -0
- package/lib/server/astro/nodeToAstro.ts +771 -0
- package/lib/server/astro/pageEmitter.ts +190 -0
- package/lib/server/astro/tailwindMapper.ts +547 -0
- package/lib/server/index.ts +3 -0
- package/lib/server/ssr/htmlGenerator.ts +3 -0
- package/lib/server/ssr/ssrRenderer.test.ts +8 -4
- package/lib/server/ssr/ssrRenderer.ts +1 -3
- package/lib/shared/themeDefaults.test.ts +1 -1
- package/lib/shared/themeDefaults.ts +4 -1
- package/package.json +1 -1
- /package/dist/chunks/{chunk-UR7L5UZ3.js.map → chunk-HNAS6BSS.js.map} +0 -0
- /package/dist/chunks/{chunk-JACS3C25.js.map → chunk-WK5XLASY.js.map} +0 -0
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
migrateTemplatesDirectory,
|
|
16
16
|
parseJSON,
|
|
17
17
|
prepareClientData
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-W6HDII4T.js";
|
|
19
19
|
import {
|
|
20
20
|
minifyJS,
|
|
21
21
|
projectPaths
|
|
@@ -1130,4 +1130,4 @@ export {
|
|
|
1130
1130
|
injectTrackingScript,
|
|
1131
1131
|
buildStaticPages
|
|
1132
1132
|
};
|
|
1133
|
-
//# sourceMappingURL=chunk-
|
|
1133
|
+
//# sourceMappingURL=chunk-WK5XLASY.js.map
|
|
@@ -6,13 +6,13 @@ import {
|
|
|
6
6
|
PageService,
|
|
7
7
|
WebSocketManager,
|
|
8
8
|
createServer
|
|
9
|
-
} from "../chunks/chunk-
|
|
9
|
+
} from "../chunks/chunk-HNAS6BSS.js";
|
|
10
10
|
import {
|
|
11
11
|
CMSService,
|
|
12
12
|
FileSystemCMSProvider,
|
|
13
13
|
loadProjectConfig,
|
|
14
14
|
migrateTemplatesDirectory
|
|
15
|
-
} from "../chunks/chunk-
|
|
15
|
+
} from "../chunks/chunk-W6HDII4T.js";
|
|
16
16
|
import {
|
|
17
17
|
configService
|
|
18
18
|
} from "../chunks/chunk-A6KWUEA6.js";
|
package/dist/lib/client/index.js
CHANGED
|
@@ -4205,7 +4205,8 @@ var lightThemeColors = {
|
|
|
4205
4205
|
buttonDangerHover: "#cb2431",
|
|
4206
4206
|
inputBackground: "#f9fafb",
|
|
4207
4207
|
inputBorder: "#e4e7ed",
|
|
4208
|
-
hoverBackground: "#f1f3f5"
|
|
4208
|
+
hoverBackground: "#f1f3f5",
|
|
4209
|
+
variableBackground: "#ebedf0"
|
|
4209
4210
|
}
|
|
4210
4211
|
};
|
|
4211
4212
|
var darkThemeColors = {
|
|
@@ -4240,7 +4241,7 @@ var darkThemeColors = {
|
|
|
4240
4241
|
text: "#cccccc",
|
|
4241
4242
|
textSecondary: "#cccccc",
|
|
4242
4243
|
textMuted: "#888888",
|
|
4243
|
-
codeString: "#
|
|
4244
|
+
codeString: "#ffffff",
|
|
4244
4245
|
codeNumber: "#b5cea8",
|
|
4245
4246
|
codeKey: "#9cdcfe",
|
|
4246
4247
|
codeType: "#4ec9b0",
|
|
@@ -4251,7 +4252,8 @@ var darkThemeColors = {
|
|
|
4251
4252
|
buttonDangerHover: "#ff6b6b",
|
|
4252
4253
|
inputBackground: "#1e1e1e",
|
|
4253
4254
|
inputBorder: "#444444",
|
|
4254
|
-
hoverBackground: "#2a2d2e"
|
|
4255
|
+
hoverBackground: "#2a2d2e",
|
|
4256
|
+
variableBackground: "#2a2a2a"
|
|
4255
4257
|
}
|
|
4256
4258
|
};
|
|
4257
4259
|
function getThemeColors(theme) {
|