@symbo.ls/brender 3.6.8 → 3.7.0
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/cjs/render.js +2 -2
- package/dist/esm/render.js +2 -2
- package/package.json +2 -2
- package/render.js +2 -2
package/dist/cjs/render.js
CHANGED
|
@@ -508,8 +508,8 @@ const generateGlobalCSS = async (ds, config) => {
|
|
|
508
508
|
const result = {
|
|
509
509
|
CSS_VARS: conf.CSS_VARS || {},
|
|
510
510
|
CSS_MEDIA_VARS: conf.CSS_MEDIA_VARS || {},
|
|
511
|
-
|
|
512
|
-
|
|
511
|
+
reset: conf.reset || {},
|
|
512
|
+
animation: conf.animation || {}
|
|
513
513
|
}
|
|
514
514
|
// Export as globalThis so we can read it
|
|
515
515
|
globalThis.__BR_GLOBAL_CSS__ = result
|
package/dist/esm/render.js
CHANGED
|
@@ -471,8 +471,8 @@ const generateGlobalCSS = async (ds, config) => {
|
|
|
471
471
|
const result = {
|
|
472
472
|
CSS_VARS: conf.CSS_VARS || {},
|
|
473
473
|
CSS_MEDIA_VARS: conf.CSS_MEDIA_VARS || {},
|
|
474
|
-
|
|
475
|
-
|
|
474
|
+
reset: conf.reset || {},
|
|
475
|
+
animation: conf.animation || {}
|
|
476
476
|
}
|
|
477
477
|
// Export as globalThis so we can read it
|
|
478
478
|
globalThis.__BR_GLOBAL_CSS__ = result
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/brender",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"license": "CC-BY-NC-4.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dev:rita": "node examples/serve-rita.js"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@symbo.ls/helmet": "^3.
|
|
39
|
+
"@symbo.ls/helmet": "^3.7.0",
|
|
40
40
|
"linkedom": "^0.16.8"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
package/render.js
CHANGED
|
@@ -585,8 +585,8 @@ const generateGlobalCSS = async (ds, config) => {
|
|
|
585
585
|
const result = {
|
|
586
586
|
CSS_VARS: conf.CSS_VARS || {},
|
|
587
587
|
CSS_MEDIA_VARS: conf.CSS_MEDIA_VARS || {},
|
|
588
|
-
|
|
589
|
-
|
|
588
|
+
reset: conf.reset || {},
|
|
589
|
+
animation: conf.animation || {}
|
|
590
590
|
}
|
|
591
591
|
// Export as globalThis so we can read it
|
|
592
592
|
globalThis.__BR_GLOBAL_CSS__ = result
|