@gem-sdk/core 1.2.0 → 1.3.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/dist/types/index.d.ts +11 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -681,7 +681,16 @@ type InputWidthControlType<T> = SharedControlType<T> & {
|
|
|
681
681
|
readonly?: boolean;
|
|
682
682
|
};
|
|
683
683
|
|
|
684
|
-
type
|
|
684
|
+
type CustomContentControlType<T> = SharedControlType<T> & {
|
|
685
|
+
type: 'custom-content';
|
|
686
|
+
};
|
|
687
|
+
|
|
688
|
+
type CustomCodeEditor = {
|
|
689
|
+
type: 'customCodeEditor';
|
|
690
|
+
id: string;
|
|
691
|
+
};
|
|
692
|
+
|
|
693
|
+
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;
|
|
685
694
|
type Setting<P extends BaseProps> = {
|
|
686
695
|
id: 'setting';
|
|
687
696
|
controls?: ControlProp<NonNullable<P['setting']>>[];
|
|
@@ -692,6 +701,7 @@ type Setting<P extends BaseProps> = {
|
|
|
692
701
|
type ComponentSetting<P extends BaseProps> = {
|
|
693
702
|
tag: string;
|
|
694
703
|
label: string;
|
|
704
|
+
customLabel?: string;
|
|
695
705
|
title?: string;
|
|
696
706
|
description?: string;
|
|
697
707
|
image?: string;
|