@gem-sdk/core 1.7.1 → 1.7.7
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/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -774,7 +774,7 @@ type InputSpacing<T> = SharedControlType<T> & {
|
|
|
774
774
|
|
|
775
775
|
type UniqueIdControlType<T> = SharedControlType<T> & {
|
|
776
776
|
type: 'unique-id:button';
|
|
777
|
-
|
|
777
|
+
buttonText?: string;
|
|
778
778
|
};
|
|
779
779
|
|
|
780
780
|
type SwatchesLinkControlType<T> = SharedControlType<T> & {
|
|
@@ -786,6 +786,7 @@ type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPicker
|
|
|
786
786
|
type Setting<P extends BaseProps> = {
|
|
787
787
|
id: 'setting';
|
|
788
788
|
note?: string;
|
|
789
|
+
info?: Record<string, string>;
|
|
789
790
|
controls?: ControlProp<NonNullable<P['setting']>>[];
|
|
790
791
|
} | {
|
|
791
792
|
id: 'style';
|