@gem-sdk/core 1.2.4 → 1.3.2
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 +8 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -580,6 +580,7 @@ type RadiusPresetControlType<T> = SharedControlType<T> & {
|
|
|
580
580
|
|
|
581
581
|
type SizeControlType<T> = SharedControlType<T> & {
|
|
582
582
|
type: 'size';
|
|
583
|
+
component?: 'tag' | string;
|
|
583
584
|
};
|
|
584
585
|
|
|
585
586
|
type ChildItemType<T> = SharedControlType<T> & {
|
|
@@ -685,7 +686,12 @@ type CustomContentControlType<T> = SharedControlType<T> & {
|
|
|
685
686
|
type: 'custom-content';
|
|
686
687
|
};
|
|
687
688
|
|
|
688
|
-
type
|
|
689
|
+
type CustomCodeEditor = {
|
|
690
|
+
type: 'customCodeEditor';
|
|
691
|
+
id: string;
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | CustomCodeEditor;
|
|
689
695
|
type Setting<P extends BaseProps> = {
|
|
690
696
|
id: 'setting';
|
|
691
697
|
controls?: ControlProp<NonNullable<P['setting']>>[];
|
|
@@ -696,6 +702,7 @@ type Setting<P extends BaseProps> = {
|
|
|
696
702
|
type ComponentSetting<P extends BaseProps> = {
|
|
697
703
|
tag: string;
|
|
698
704
|
label: string;
|
|
705
|
+
customLabel?: string;
|
|
699
706
|
title?: string;
|
|
700
707
|
description?: string;
|
|
701
708
|
image?: string;
|