meno-core 1.1.0 → 1.1.1
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/chunks/{chunk-NUP7H7D3.js → chunk-7ZLF4NE5.js} +2 -2
- package/dist/chunks/{chunk-2IIQK7T3.js → chunk-J4IPTP5X.js} +393 -3
- package/dist/chunks/{chunk-2IIQK7T3.js.map → chunk-J4IPTP5X.js.map} +3 -3
- package/dist/lib/client/index.js +2 -2
- package/dist/lib/server/index.js +14 -5
- package/dist/lib/server/index.js.map +2 -2
- package/dist/lib/shared/index.js +5 -1
- package/dist/lib/shared/index.js.map +2 -2
- package/lib/server/ssr/htmlGenerator.ts +18 -2
- package/lib/server/ssr/ssrRenderer.test.ts +25 -0
- package/lib/server/ssr/ssrRenderer.ts +12 -2
- package/lib/shared/cssGeneration.test.ts +10 -0
- package/lib/shared/cssGeneration.ts +10 -8
- package/lib/shared/index.ts +6 -0
- package/lib/shared/interactiveStyles.test.ts +3 -1
- package/lib/shared/tailwindThemeScale.ts +256 -0
- package/lib/shared/utilityClassConfig.ts +116 -0
- package/lib/shared/utilityClassMapper.test.ts +148 -0
- package/lib/shared/utilityClassMapper.ts +33 -0
- package/lib/shared/utilityClassNames.ts +146 -0
- package/package.json +1 -1
- /package/dist/chunks/{chunk-NUP7H7D3.js.map → chunk-7ZLF4NE5.js.map} +0 -0
package/dist/lib/shared/index.js
CHANGED
|
@@ -119,6 +119,7 @@ import {
|
|
|
119
119
|
StyleMappingSchema,
|
|
120
120
|
StyleObjectSchema,
|
|
121
121
|
StyleValueSchema,
|
|
122
|
+
THEME_SCALE_ENTRIES,
|
|
122
123
|
VOID_ELEMENTS,
|
|
123
124
|
addItemUrl,
|
|
124
125
|
addItemUrls,
|
|
@@ -144,6 +145,7 @@ import {
|
|
|
144
145
|
convertPagePathToComponentPath,
|
|
145
146
|
createNodeType,
|
|
146
147
|
createStyleMappingFromProps,
|
|
148
|
+
defaultTailwindThemeVariables,
|
|
147
149
|
defineNodeType,
|
|
148
150
|
domPathStringToTreePath,
|
|
149
151
|
evaluateNodeIf,
|
|
@@ -290,7 +292,7 @@ import {
|
|
|
290
292
|
validatePath,
|
|
291
293
|
validatePropDefinition,
|
|
292
294
|
validateStructuredComponentDefinition
|
|
293
|
-
} from "../../chunks/chunk-
|
|
295
|
+
} from "../../chunks/chunk-J4IPTP5X.js";
|
|
294
296
|
import {
|
|
295
297
|
DEFAULT_I18N_CONFIG,
|
|
296
298
|
buildLocalizedPath,
|
|
@@ -1691,6 +1693,7 @@ export {
|
|
|
1691
1693
|
StyleObjectSchema,
|
|
1692
1694
|
StyleValueSchema,
|
|
1693
1695
|
TAB_SWITCH_DELAY_MS,
|
|
1696
|
+
THEME_SCALE_ENTRIES,
|
|
1694
1697
|
TREE_SCROLL_DELAY_MS,
|
|
1695
1698
|
UNITLESS_PROPERTIES,
|
|
1696
1699
|
VARIABLE_GROUPS,
|
|
@@ -1745,6 +1748,7 @@ export {
|
|
|
1745
1748
|
createValidationError,
|
|
1746
1749
|
createVariableReference,
|
|
1747
1750
|
deepClone,
|
|
1751
|
+
defaultTailwindThemeVariables,
|
|
1748
1752
|
defineNodeType,
|
|
1749
1753
|
detectColorMode,
|
|
1750
1754
|
detectRichTextFormat,
|