@webstudio-is/css-data 0.73.0 → 0.74.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/index.js +5 -2
- package/lib/index.js +8 -2
- package/lib/types/src/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/lib/cjs/index.js
CHANGED
|
@@ -29,17 +29,20 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
29
29
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
30
|
var src_exports = {};
|
|
31
31
|
__export(src_exports, {
|
|
32
|
+
declarationDescriptions: () => import_property_value_descriptions.declarations,
|
|
32
33
|
html: () => html,
|
|
33
|
-
properties: () =>
|
|
34
|
+
properties: () => properties2,
|
|
35
|
+
propertyDescriptions: () => import_property_value_descriptions.properties
|
|
34
36
|
});
|
|
35
37
|
module.exports = __toCommonJS(src_exports);
|
|
36
38
|
var exportedHtml = __toESM(require("./html"), 1);
|
|
37
39
|
__reExport(src_exports, require("./__generated__/keyword-values"), module.exports);
|
|
38
40
|
__reExport(src_exports, require("./__generated__/units"), module.exports);
|
|
41
|
+
var import_property_value_descriptions = require("./__generated__/property-value-descriptions");
|
|
39
42
|
__reExport(src_exports, require("./schema"), module.exports);
|
|
40
43
|
__reExport(src_exports, require("./property-parsers/index"), module.exports);
|
|
41
44
|
__reExport(src_exports, require("./parse-css-value"), module.exports);
|
|
42
45
|
__reExport(src_exports, require("./parse-css"), module.exports);
|
|
43
46
|
var import_properties = require("./__generated__/properties");
|
|
44
47
|
const html = exportedHtml;
|
|
45
|
-
const
|
|
48
|
+
const properties2 = import_properties.properties;
|
package/lib/index.js
CHANGED
|
@@ -2,13 +2,19 @@ import * as exportedHtml from "./html";
|
|
|
2
2
|
const html = exportedHtml;
|
|
3
3
|
export * from "./__generated__/keyword-values";
|
|
4
4
|
export * from "./__generated__/units";
|
|
5
|
+
import {
|
|
6
|
+
properties,
|
|
7
|
+
declarations
|
|
8
|
+
} from "./__generated__/property-value-descriptions";
|
|
5
9
|
export * from "./schema";
|
|
6
10
|
export * from "./property-parsers/index";
|
|
7
11
|
export * from "./parse-css-value";
|
|
8
12
|
export * from "./parse-css";
|
|
9
13
|
import { properties as generatedProperties } from "./__generated__/properties";
|
|
10
|
-
const
|
|
14
|
+
const properties2 = generatedProperties;
|
|
11
15
|
export {
|
|
16
|
+
declarations as declarationDescriptions,
|
|
12
17
|
html,
|
|
13
|
-
properties
|
|
18
|
+
properties2 as properties,
|
|
19
|
+
properties as propertyDescriptions
|
|
14
20
|
};
|
package/lib/types/src/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { Html } from "./html";
|
|
|
2
2
|
export declare const html: Html;
|
|
3
3
|
export * from "./__generated__/keyword-values";
|
|
4
4
|
export * from "./__generated__/units";
|
|
5
|
+
export { properties as propertyDescriptions, declarations as declarationDescriptions, } from "./__generated__/property-value-descriptions";
|
|
5
6
|
export * from "./schema";
|
|
6
7
|
export * from "./property-parsers/index";
|
|
7
8
|
export * from "./parse-css-value";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -5,6 +5,10 @@ export const html: Html = exportedHtml;
|
|
|
5
5
|
|
|
6
6
|
export * from "./__generated__/keyword-values";
|
|
7
7
|
export * from "./__generated__/units";
|
|
8
|
+
export {
|
|
9
|
+
properties as propertyDescriptions,
|
|
10
|
+
declarations as declarationDescriptions,
|
|
11
|
+
} from "./__generated__/property-value-descriptions";
|
|
8
12
|
export * from "./schema";
|
|
9
13
|
|
|
10
14
|
// longhand property parsers
|