@webstudio-is/react-sdk 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/css/normalize.js +12 -1
- package/lib/css/normalize.js +12 -1
- package/package.json +7 -7
- package/src/css/normalize.ts +12 -1
package/lib/cjs/css/normalize.js
CHANGED
|
@@ -93,7 +93,18 @@ const h5 = baseStyle;
|
|
|
93
93
|
const h6 = baseStyle;
|
|
94
94
|
const i = baseStyle;
|
|
95
95
|
const img = baseStyle;
|
|
96
|
-
const a =
|
|
96
|
+
const a = [
|
|
97
|
+
...baseStyle,
|
|
98
|
+
{
|
|
99
|
+
property: "color",
|
|
100
|
+
value: { type: "rgb", r: 0, g: 0, b: 238, alpha: 1 }
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
state: ":visited",
|
|
104
|
+
property: "color",
|
|
105
|
+
value: { type: "rgb", r: 85, g: 26, b: 139, alpha: 1 }
|
|
106
|
+
}
|
|
107
|
+
];
|
|
97
108
|
const li = baseStyle;
|
|
98
109
|
const ul = baseStyle;
|
|
99
110
|
const ol = baseStyle;
|
package/lib/css/normalize.js
CHANGED
|
@@ -24,7 +24,18 @@ const h5 = baseStyle;
|
|
|
24
24
|
const h6 = baseStyle;
|
|
25
25
|
const i = baseStyle;
|
|
26
26
|
const img = baseStyle;
|
|
27
|
-
const a =
|
|
27
|
+
const a = [
|
|
28
|
+
...baseStyle,
|
|
29
|
+
{
|
|
30
|
+
property: "color",
|
|
31
|
+
value: { type: "rgb", r: 0, g: 0, b: 238, alpha: 1 }
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
state: ":visited",
|
|
35
|
+
property: "color",
|
|
36
|
+
value: { type: "rgb", r: 85, g: 26, b: 139, alpha: 1 }
|
|
37
|
+
}
|
|
38
|
+
];
|
|
28
39
|
const li = baseStyle;
|
|
29
40
|
const ul = baseStyle;
|
|
30
41
|
const ol = baseStyle;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/react-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.0",
|
|
4
4
|
"description": "Webstudio JavaScript / TypeScript API",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"nanoevents": "^7.0.1",
|
|
34
34
|
"nanoid": "^3.2.0",
|
|
35
35
|
"nanostores": "^0.7.1",
|
|
36
|
-
"@webstudio-is/asset-uploader": "^0.
|
|
37
|
-
"@webstudio-is/css-data": "^0.
|
|
38
|
-
"@webstudio-is/css-engine": "^0.
|
|
39
|
-
"@webstudio-is/fonts": "^0.
|
|
40
|
-
"@webstudio-is/generate-arg-types": "^0.
|
|
41
|
-
"@webstudio-is/project-build": "^0.
|
|
36
|
+
"@webstudio-is/asset-uploader": "^0.74.0",
|
|
37
|
+
"@webstudio-is/css-data": "^0.74.0",
|
|
38
|
+
"@webstudio-is/css-engine": "^0.74.0",
|
|
39
|
+
"@webstudio-is/fonts": "^0.74.0",
|
|
40
|
+
"@webstudio-is/generate-arg-types": "^0.74.0",
|
|
41
|
+
"@webstudio-is/project-build": "^0.74.0"
|
|
42
42
|
},
|
|
43
43
|
"exports": {
|
|
44
44
|
".": {
|
package/src/css/normalize.ts
CHANGED
|
@@ -63,7 +63,18 @@ export const i = baseStyle;
|
|
|
63
63
|
|
|
64
64
|
export const img = baseStyle;
|
|
65
65
|
|
|
66
|
-
export const a =
|
|
66
|
+
export const a = [
|
|
67
|
+
...baseStyle,
|
|
68
|
+
{
|
|
69
|
+
property: "color",
|
|
70
|
+
value: { type: "rgb", r: 0, g: 0, b: 238, alpha: 1 },
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
state: ":visited",
|
|
74
|
+
property: "color",
|
|
75
|
+
value: { type: "rgb", r: 85, g: 26, b: 139, alpha: 1 },
|
|
76
|
+
},
|
|
77
|
+
] satisfies Styles;
|
|
67
78
|
export const li = baseStyle;
|
|
68
79
|
export const ul = baseStyle;
|
|
69
80
|
export const ol = baseStyle;
|