@webstudio-is/css-engine 0.74.0 → 0.75.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/lib/cjs/core/index.js +1 -0
- package/lib/core/index.js +1 -0
- package/lib/types/core/index.d.ts +1 -0
- package/package.json +6 -6
- package/src/core/index.ts +1 -0
package/lib/cjs/core/index.js
CHANGED
|
@@ -25,6 +25,7 @@ module.exports = __toCommonJS(core_exports);
|
|
|
25
25
|
var import_css_engine = require("./css-engine");
|
|
26
26
|
__reExport(core_exports, require("./create-css-engine"), module.exports);
|
|
27
27
|
__reExport(core_exports, require("./to-value"), module.exports);
|
|
28
|
+
__reExport(core_exports, require("./to-property"), module.exports);
|
|
28
29
|
__reExport(core_exports, require("./match-media"), module.exports);
|
|
29
30
|
__reExport(core_exports, require("./equal-media"), module.exports);
|
|
30
31
|
__reExport(core_exports, require("./compare-media"), module.exports);
|
package/lib/core/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export { CssEngine } from "./css-engine";
|
|
|
2
2
|
export type { AnyRule, StyleRule, MediaRule, PlaintextRule, FontFaceRule, } from "./rules";
|
|
3
3
|
export * from "./create-css-engine";
|
|
4
4
|
export * from "./to-value";
|
|
5
|
+
export * from "./to-property";
|
|
5
6
|
export * from "./match-media";
|
|
6
7
|
export * from "./equal-media";
|
|
7
8
|
export * from "./compare-media";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/css-engine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.75.0",
|
|
4
4
|
"description": "CSS Renderer for Webstudio",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"hyphenate-style-name": "^1.0.4",
|
|
10
10
|
"react": "^18.2.0",
|
|
11
11
|
"react-dom": "^18.2.0",
|
|
12
|
-
"@webstudio-is/css-data": "^0.
|
|
13
|
-
"@webstudio-is/fonts": "^0.
|
|
12
|
+
"@webstudio-is/css-data": "^0.75.0",
|
|
13
|
+
"@webstudio-is/fonts": "^0.75.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@jest/globals": "^29.3.1",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
"source": "./src/index.ts",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"types": "./lib/types/index.d.ts",
|
|
31
|
+
"import": "./lib/index.js"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"lib/*",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"checks": "pnpm typecheck && pnpm lint && pnpm test",
|
|
44
44
|
"dev": "build-package --watch",
|
|
45
45
|
"build": "build-package",
|
|
46
|
-
"dts": "tsc --
|
|
46
|
+
"dts": "tsc --project tsconfig.dts.json",
|
|
47
47
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
48
48
|
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
|
|
49
49
|
"storybook:run": "start-storybook -p 6006",
|
package/src/core/index.ts
CHANGED