@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 +6 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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;
|