@gem-sdk/core 1.14.0-dev.485 → 1.14.0-dev.489
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 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -390,7 +390,7 @@ type InputNumberControlType<T> = SharedControlType<T> & {
|
|
|
390
390
|
readonly?: boolean;
|
|
391
391
|
};
|
|
392
392
|
|
|
393
|
-
type SizeUnit$2 = 's' | '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax';
|
|
393
|
+
type SizeUnit$2 = 's' | '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax' | 'ms';
|
|
394
394
|
type InputUnitControlType<T> = SharedControlType<T> & {
|
|
395
395
|
type: 'input:unit';
|
|
396
396
|
placeholder?: string;
|
|
@@ -1000,7 +1000,13 @@ type ParallaxScrollingType<T> = SharedControlType<T> & {
|
|
|
1000
1000
|
type: 'parallax-scrolling';
|
|
1001
1001
|
};
|
|
1002
1002
|
|
|
1003
|
-
type
|
|
1003
|
+
type PlayPauseControlType<T> = SharedControlType<T> & {
|
|
1004
|
+
type: 'play-pause';
|
|
1005
|
+
readonly?: boolean;
|
|
1006
|
+
hideLabel?: boolean;
|
|
1007
|
+
};
|
|
1008
|
+
|
|
1009
|
+
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> | LayoutBannerControlType<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> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | PlayPauseControlType<T>;
|
|
1004
1010
|
type Setting<P extends BaseProps> = {
|
|
1005
1011
|
id: 'setting';
|
|
1006
1012
|
note?: string;
|