unlayer-types 1.346.0 → 1.347.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 +6 -0
- package/package.json +1 -1
package/embed.d.ts
CHANGED
|
@@ -282,6 +282,7 @@ declare module "editor/themes/types" {
|
|
|
282
282
|
buttons: Record<ThemeVariant, ButtonThemeObject & {
|
|
283
283
|
':hover': Partial<ButtonThemeObject>;
|
|
284
284
|
':pressed': Partial<ButtonThemeObject>;
|
|
285
|
+
':disabled'?: Partial<ButtonThemeObject>;
|
|
285
286
|
}>;
|
|
286
287
|
checkbox: {
|
|
287
288
|
backgroundColor: ColorValue;
|
|
@@ -339,6 +340,10 @@ declare module "editor/themes/types" {
|
|
|
339
340
|
item: {
|
|
340
341
|
backgroundColor: ColorValue;
|
|
341
342
|
textColor: ColorValue;
|
|
343
|
+
':disabled'?: {
|
|
344
|
+
backgroundColor?: ColorValue;
|
|
345
|
+
textColor?: ColorValue;
|
|
346
|
+
};
|
|
342
347
|
':hover'?: {
|
|
343
348
|
backgroundColor?: ColorValue;
|
|
344
349
|
textColor?: ColorValue;
|
|
@@ -2393,6 +2398,7 @@ declare module "editor/design-system/components/Tooltip" {
|
|
|
2393
2398
|
children?: Ariakit.TooltipAnchorProps['children'];
|
|
2394
2399
|
className?: string;
|
|
2395
2400
|
disabled?: boolean;
|
|
2401
|
+
disableIfNotTruncated?: boolean;
|
|
2396
2402
|
gutter?: Ariakit.TooltipProps['gutter'];
|
|
2397
2403
|
placement: Ariakit.TooltipStoreProps['placement'];
|
|
2398
2404
|
style?: React.CSSProperties;
|
package/package.json
CHANGED