@gem-sdk/core 1.14.0-dev.364 → 1.14.0-dev.366
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 +6 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -932,6 +932,7 @@ type SettingConfig = {
|
|
|
932
932
|
displayOptions?: OptionKeyword[];
|
|
933
933
|
paddingConfig?: PaddingConfig;
|
|
934
934
|
name?: string;
|
|
935
|
+
units?: string[];
|
|
935
936
|
};
|
|
936
937
|
type SizeSetting$1<T> = SharedControlType<T> & {
|
|
937
938
|
type: 'size-setting';
|
|
@@ -949,7 +950,11 @@ type ChildIconType<T> = SharedControlType<T> & {
|
|
|
949
950
|
|
|
950
951
|
type DropdownInput<T> = SharedControlType<T> & {
|
|
951
952
|
type: 'dropdown:input';
|
|
952
|
-
displayOptions?:
|
|
953
|
+
displayOptions?: {
|
|
954
|
+
label: string;
|
|
955
|
+
value: string;
|
|
956
|
+
reversed?: boolean;
|
|
957
|
+
}[];
|
|
953
958
|
};
|
|
954
959
|
|
|
955
960
|
type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<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> | TypographyV2ControlType<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> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | ProductListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T>;
|