@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
|
@@ -932,7 +932,7 @@ const properties = {
|
|
|
932
932
|
inherited: true,
|
|
933
933
|
initial: {
|
|
934
934
|
type: "keyword",
|
|
935
|
-
value: "
|
|
935
|
+
value: "black"
|
|
936
936
|
},
|
|
937
937
|
popularity: 0.90791486,
|
|
938
938
|
appliesTo: "allElementsAndText"
|
|
@@ -3117,7 +3117,7 @@ const properties = {
|
|
|
3117
3117
|
inherited: true,
|
|
3118
3118
|
initial: {
|
|
3119
3119
|
type: "keyword",
|
|
3120
|
-
value: "
|
|
3120
|
+
value: "start"
|
|
3121
3121
|
},
|
|
3122
3122
|
popularity: 0.89287477,
|
|
3123
3123
|
appliesTo: "blockContainers"
|