unlayer-types 1.282.0 → 1.284.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 -19
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -169,11 +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;
|
176
|
-
|
184
|
+
textColor?: ColorValue;
|
185
|
+
borderColor?: ColorValue;
|
177
186
|
};
|
178
187
|
};
|
179
188
|
};
|
@@ -1214,22 +1223,6 @@ declare module "editor/themes/types" {
|
|
1214
1223
|
};
|
1215
1224
|
};
|
1216
1225
|
/** @deprecated */
|
1217
|
-
toolbar: {
|
1218
|
-
backgroundColor: string;
|
1219
|
-
borderColor: string;
|
1220
|
-
separatorColor: string;
|
1221
|
-
button: {
|
1222
|
-
backgroundColor: string;
|
1223
|
-
textColor: string;
|
1224
|
-
borderColor: string;
|
1225
|
-
':hover'?: {
|
1226
|
-
backgroundColor?: string;
|
1227
|
-
textColor?: string;
|
1228
|
-
borderColor?: string;
|
1229
|
-
};
|
1230
|
-
};
|
1231
|
-
};
|
1232
|
-
/** @deprecated */
|
1233
1226
|
list: {
|
1234
1227
|
separatorColor: string;
|
1235
1228
|
hoverBackgroundColor: string;
|
package/package.json
CHANGED