unlayer-types 1.281.0 → 1.283.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/embed.d.ts +12 -18
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -169,10 +169,20 @@ declare module "editor/themes/types" {
|
|
169
169
|
toolbar: {
|
170
170
|
backgroundColor: ColorValue;
|
171
171
|
borderColor: ColorValue;
|
172
|
+
separatorColor: ColorValue;
|
172
173
|
button: {
|
173
|
-
|
174
|
-
|
174
|
+
backgroundColor: ColorValue;
|
175
|
+
textColor: ColorValue;
|
176
|
+
borderColor: ColorValue;
|
177
|
+
':hover'?: {
|
178
|
+
backgroundColor?: ColorValue;
|
179
|
+
textColor?: ColorValue;
|
180
|
+
borderColor?: ColorValue;
|
181
|
+
};
|
182
|
+
':active'?: {
|
175
183
|
backgroundColor: ColorValue;
|
184
|
+
textColor?: ColorValue;
|
185
|
+
borderColor?: ColorValue;
|
176
186
|
};
|
177
187
|
};
|
178
188
|
};
|
@@ -1213,22 +1223,6 @@ declare module "editor/themes/types" {
|
|
1213
1223
|
};
|
1214
1224
|
};
|
1215
1225
|
/** @deprecated */
|
1216
|
-
toolbar: {
|
1217
|
-
backgroundColor: string;
|
1218
|
-
borderColor: string;
|
1219
|
-
separatorColor: string;
|
1220
|
-
button: {
|
1221
|
-
backgroundColor: string;
|
1222
|
-
textColor: string;
|
1223
|
-
borderColor: string;
|
1224
|
-
':hover'?: {
|
1225
|
-
backgroundColor?: string;
|
1226
|
-
textColor?: string;
|
1227
|
-
borderColor?: string;
|
1228
|
-
};
|
1229
|
-
};
|
1230
|
-
};
|
1231
|
-
/** @deprecated */
|
1232
1226
|
list: {
|
1233
1227
|
separatorColor: string;
|
1234
1228
|
hoverBackgroundColor: string;
|
package/package.json
CHANGED