@gem-sdk/core 1.1.0 → 1.2.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
|
@@ -671,7 +671,17 @@ type YotpoLoyaltyCodes = {
|
|
|
671
671
|
id: string;
|
|
672
672
|
};
|
|
673
673
|
|
|
674
|
-
type
|
|
674
|
+
type WidthSizeUnit = 'px' | '%';
|
|
675
|
+
type InputWidthControlType<T> = SharedControlType<T> & {
|
|
676
|
+
type: 'input:width';
|
|
677
|
+
placeholder?: string;
|
|
678
|
+
min?: number;
|
|
679
|
+
max?: number;
|
|
680
|
+
units: WidthSizeUnit[];
|
|
681
|
+
readonly?: boolean;
|
|
682
|
+
};
|
|
683
|
+
|
|
684
|
+
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> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T>;
|
|
675
685
|
type Setting<P extends BaseProps> = {
|
|
676
686
|
id: 'setting';
|
|
677
687
|
controls?: ControlProp<NonNullable<P['setting']>>[];
|