@webstudio-is/css-data 0.75.0 → 0.77.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/__generated__/properties.js +2 -2
- package/lib/__generated__/property-value-descriptions.js +2733 -2930
- package/lib/cjs/__generated__/properties.js +2 -2
- package/lib/cjs/__generated__/property-value-descriptions.js +2733 -2930
- package/lib/cjs/property-parsers/box-shadow.js +128 -0
- package/lib/cjs/property-parsers/index.js +1 -0
- package/lib/cjs/property-parsers/parsers.js +3 -1
- package/lib/cjs/schema.js +17 -12
- package/lib/property-parsers/box-shadow.js +98 -0
- package/lib/property-parsers/index.js +1 -0
- package/lib/property-parsers/parsers.js +3 -1
- package/lib/schema.js +17 -12
- package/lib/types/__generated__/properties.d.ts +2 -2
- package/lib/types/__generated__/property-value-descriptions.d.ts +5442 -2929
- package/lib/types/index.d.ts +2 -2
- package/lib/types/property-parsers/box-shadow.d.ts +3 -0
- package/lib/types/property-parsers/box-shadow.test.d.ts +1 -0
- package/lib/types/property-parsers/index.d.ts +1 -0
- package/lib/types/property-parsers/parsers.d.ts +1 -0
- package/lib/types/schema.d.ts +671 -0
- package/package.json +2 -4
- package/src/__generated__/properties.ts +2 -2
- package/src/__generated__/property-value-descriptions.ts +3024 -3590
- package/src/property-parsers/background.ts +0 -1
- package/src/property-parsers/box-shadow.test.ts +294 -0
- package/src/property-parsers/box-shadow.ts +134 -0
- package/src/property-parsers/index.ts +1 -0
- package/src/property-parsers/parsers.ts +1 -0
- package/src/schema.ts +18 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/css-data",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.0",
|
|
4
4
|
"description": "CSS Data",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -41,18 +41,16 @@
|
|
|
41
41
|
"css-tree": "^2.3.1",
|
|
42
42
|
"hyphenate-style-name": "^1.0.4",
|
|
43
43
|
"openai": "^3.2.1",
|
|
44
|
-
"undici": "^5.22.1",
|
|
45
44
|
"warn-once": "^0.1.1"
|
|
46
45
|
},
|
|
47
46
|
"scripts": {
|
|
48
47
|
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
|
|
49
|
-
"checks": "pnpm typecheck
|
|
48
|
+
"checks": "pnpm typecheck",
|
|
50
49
|
"dev": "build-package --watch",
|
|
51
50
|
"build": "build-package",
|
|
52
51
|
"build:mdn-data": "tsx ./bin/mdn-data.ts ./src/__generated__ && prettier --write \"./src/__generated__/**/*.ts\"",
|
|
53
52
|
"build:descriptions": "tsx ./bin/property-value-descriptions.ts",
|
|
54
53
|
"dts": "tsc --project tsconfig.dts.json",
|
|
55
|
-
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
|
|
56
54
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
|
|
57
55
|
}
|
|
58
56
|
}
|
|
@@ -933,7 +933,7 @@ export const properties = {
|
|
|
933
933
|
inherited: true,
|
|
934
934
|
initial: {
|
|
935
935
|
type: "keyword",
|
|
936
|
-
value: "
|
|
936
|
+
value: "black",
|
|
937
937
|
},
|
|
938
938
|
popularity: 0.90791486,
|
|
939
939
|
appliesTo: "allElementsAndText",
|
|
@@ -3118,7 +3118,7 @@ export const properties = {
|
|
|
3118
3118
|
inherited: true,
|
|
3119
3119
|
initial: {
|
|
3120
3120
|
type: "keyword",
|
|
3121
|
-
value: "
|
|
3121
|
+
value: "start",
|
|
3122
3122
|
},
|
|
3123
3123
|
popularity: 0.89287477,
|
|
3124
3124
|
appliesTo: "blockContainers",
|