@lightspeed/crane-api 2.3.2-rc.1 → 2.3.3-rc.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.3.3 - 2026-05-22
4
+
5
+ ### Fixed
6
+
7
+ - Add visible to transformed text, image, and logo design default types.
8
+
3
9
  ## 2.3.2 - 2026-05-21
4
10
 
5
11
  ### Added
package/dist/index.d.mts CHANGED
@@ -5987,9 +5987,11 @@ interface TextDesignEditorDefaultsTransformed {
5987
5987
  readonly size?: TextSize | string;
5988
5988
  readonly bold?: boolean;
5989
5989
  readonly italic?: boolean;
5990
+ readonly visible?: boolean;
5990
5991
  }
5991
5992
  interface ImageDesignEditorDefaultsTransformed {
5992
5993
  readonly overlay: OverlayTransformed;
5994
+ readonly visible?: boolean;
5993
5995
  }
5994
5996
  interface ColorPickerDesignEditorDefaultsTransformed {
5995
5997
  readonly color?: InternalColor;
@@ -6014,6 +6016,7 @@ interface LogoDesignEditorDefaultsTransformed {
6014
6016
  readonly italic?: boolean;
6015
6017
  readonly spacing?: number;
6016
6018
  readonly capitalization?: CapitalizationType;
6019
+ readonly visible?: boolean;
6017
6020
  }
6018
6021
  interface SelectboxDesignEditorDefaultsTransformed {
6019
6022
  readonly value?: string;
package/dist/index.d.ts CHANGED
@@ -5988,9 +5988,11 @@ interface TextDesignEditorDefaultsTransformed {
5988
5988
  readonly size?: TextSize | string;
5989
5989
  readonly bold?: boolean;
5990
5990
  readonly italic?: boolean;
5991
+ readonly visible?: boolean;
5991
5992
  }
5992
5993
  interface ImageDesignEditorDefaultsTransformed {
5993
5994
  readonly overlay: OverlayTransformed;
5995
+ readonly visible?: boolean;
5994
5996
  }
5995
5997
  interface ColorPickerDesignEditorDefaultsTransformed {
5996
5998
  readonly color?: InternalColor;
@@ -6015,6 +6017,7 @@ interface LogoDesignEditorDefaultsTransformed {
6015
6017
  readonly italic?: boolean;
6016
6018
  readonly spacing?: number;
6017
6019
  readonly capitalization?: CapitalizationType;
6020
+ readonly visible?: boolean;
6018
6021
  }
6019
6022
  interface SelectboxDesignEditorDefaultsTransformed {
6020
6023
  readonly value?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightspeed/crane-api",
3
- "version": "2.3.2-rc.1",
3
+ "version": "2.3.3-rc.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",