@webstudio-is/css-data 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/__generated__/property-value-descriptions.js +1 -1
- package/lib/cjs/__generated__/property-value-descriptions.js +1 -1
- package/lib/types/{src/__generated__ → __generated__}/property-value-descriptions.d.ts +1 -1
- package/package.json +4 -4
- package/src/__generated__/property-value-descriptions.ts +1 -1
- package/lib/types/bin/mdn-data.d.ts +0 -1
- package/lib/types/bin/property-value-descriptions.d.ts +0 -1
- /package/lib/types/{src/__generated__ → __generated__}/keyword-values.d.ts +0 -0
- /package/lib/types/{src/__generated__ → __generated__}/properties.d.ts +0 -0
- /package/lib/types/{src/__generated__ → __generated__}/units.d.ts +0 -0
- /package/lib/types/{src/html-check.d.ts → html-check.d.ts} +0 -0
- /package/lib/types/{src/html.d.ts → html.d.ts} +0 -0
- /package/lib/types/{src/index.d.ts → index.d.ts} +0 -0
- /package/lib/types/{src/parse-css-value.d.ts → parse-css-value.d.ts} +0 -0
- /package/lib/types/{src/parse-css-value.test.d.ts → parse-css-value.test.d.ts} +0 -0
- /package/lib/types/{src/parse-css.d.ts → parse-css.d.ts} +0 -0
- /package/lib/types/{src/parse-css.test.d.ts → parse-css.test.d.ts} +0 -0
- /package/lib/types/{src/popularity-index.d.ts → popularity-index.d.ts} +0 -0
- /package/lib/types/{src/property-parsers → property-parsers}/background.d.ts +0 -0
- /package/lib/types/{src/property-parsers → property-parsers}/background.test.d.ts +0 -0
- /package/lib/types/{src/property-parsers → property-parsers}/index.d.ts +0 -0
- /package/lib/types/{src/property-parsers → property-parsers}/parsers.d.ts +0 -0
- /package/lib/types/{src/property-parsers → property-parsers}/to-longhand.d.ts +0 -0
- /package/lib/types/{src/schema.d.ts → schema.d.ts} +0 -0
|
@@ -152,7 +152,7 @@ const properties = {
|
|
|
152
152
|
gridTemplateColumns: "Sets the size of the first letter in a block of text",
|
|
153
153
|
gridTemplateRows: "Sets the starting position of a grid item's column",
|
|
154
154
|
hangingPunctuation: "Sets the ending position of a grid item's column",
|
|
155
|
-
height: "Sets the
|
|
155
|
+
height: "Sets the height of an element",
|
|
156
156
|
hyphenateCharacter: "Sets the ending position of a grid item's row",
|
|
157
157
|
hyphens: "Defines named grid areas within the grid container",
|
|
158
158
|
imageOrientation: "Defines the number and sizes of columns in a grid container",
|
|
@@ -176,7 +176,7 @@ const properties = {
|
|
|
176
176
|
gridTemplateColumns: "Sets the size of the first letter in a block of text",
|
|
177
177
|
gridTemplateRows: "Sets the starting position of a grid item's column",
|
|
178
178
|
hangingPunctuation: "Sets the ending position of a grid item's column",
|
|
179
|
-
height: "Sets the
|
|
179
|
+
height: "Sets the height of an element",
|
|
180
180
|
hyphenateCharacter: "Sets the ending position of a grid item's row",
|
|
181
181
|
hyphens: "Defines named grid areas within the grid container",
|
|
182
182
|
imageOrientation: "Defines the number and sizes of columns in a grid container",
|
|
@@ -152,7 +152,7 @@ export declare const properties: {
|
|
|
152
152
|
readonly gridTemplateColumns: "Sets the size of the first letter in a block of text";
|
|
153
153
|
readonly gridTemplateRows: "Sets the starting position of a grid item's column";
|
|
154
154
|
readonly hangingPunctuation: "Sets the ending position of a grid item's column";
|
|
155
|
-
readonly height: "Sets the
|
|
155
|
+
readonly height: "Sets the height of an element";
|
|
156
156
|
readonly hyphenateCharacter: "Sets the ending position of a grid item's row";
|
|
157
157
|
readonly hyphens: "Defines named grid areas within the grid container";
|
|
158
158
|
readonly imageOrientation: "Defines the number and sizes of columns in a grid container";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/css-data",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.75.0",
|
|
4
4
|
"description": "CSS Data",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"exports": {
|
|
26
26
|
"source": "./src/index.ts",
|
|
27
|
+
"types": "./lib/types/index.d.ts",
|
|
27
28
|
"import": "./lib/index.js",
|
|
28
|
-
"require": "./lib/cjs/index.js"
|
|
29
|
-
"types": "./lib/types/index.d.ts"
|
|
29
|
+
"require": "./lib/cjs/index.js"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"lib/*",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"build": "build-package",
|
|
52
52
|
"build:mdn-data": "tsx ./bin/mdn-data.ts ./src/__generated__ && prettier --write \"./src/__generated__/**/*.ts\"",
|
|
53
53
|
"build:descriptions": "tsx ./bin/property-value-descriptions.ts",
|
|
54
|
-
"dts": "tsc --
|
|
54
|
+
"dts": "tsc --project tsconfig.dts.json",
|
|
55
55
|
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
|
|
56
56
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
|
|
57
57
|
}
|
|
@@ -177,7 +177,7 @@ export const properties = {
|
|
|
177
177
|
gridTemplateColumns: "Sets the size of the first letter in a block of text",
|
|
178
178
|
gridTemplateRows: "Sets the starting position of a grid item's column",
|
|
179
179
|
hangingPunctuation: "Sets the ending position of a grid item's column",
|
|
180
|
-
height: "Sets the
|
|
180
|
+
height: "Sets the height of an element",
|
|
181
181
|
hyphenateCharacter: "Sets the ending position of a grid item's row",
|
|
182
182
|
hyphens: "Defines named grid areas within the grid container",
|
|
183
183
|
imageOrientation:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|