unlayer-types 0.0.0-dev-c5b4ec04 → 0.0.0-dev-cb64c384

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.
Files changed (2) hide show
  1. package/embed.d.ts +6 -0
  2. 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;
@@ -2394,6 +2399,7 @@ declare module "editor/design-system/components/Tooltip" {
2394
2399
  children?: Ariakit.TooltipAnchorProps['children'];
2395
2400
  className?: string;
2396
2401
  disabled?: boolean;
2402
+ disableIfNotTruncated?: boolean;
2397
2403
  gutter?: Ariakit.TooltipProps['gutter'];
2398
2404
  placement: Ariakit.TooltipStoreProps['placement'];
2399
2405
  style?: React.CSSProperties;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "unlayer-types",
3
- "version": "0.0.0-dev-c5b4ec04",
3
+ "version": "0.0.0-dev-cb64c384",
4
4
  "license": "MIT"
5
5
  }