@gem-sdk/core 1.44.0-staging.50 → 1.44.0-staging.55
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.
|
@@ -135,6 +135,9 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
135
135
|
if (constant.disableWrap.includes(props.tag) && /*#__PURE__*/ react.isValidElement(children)) {
|
|
136
136
|
return /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
137
137
|
children: [
|
|
138
|
+
/*#__PURE__*/ jsxRuntime.jsx(ComponentAnimation.default, {
|
|
139
|
+
...props
|
|
140
|
+
}),
|
|
138
141
|
/*#__PURE__*/ jsxRuntime.jsx(RenderCustomCode.default, {
|
|
139
142
|
uid: props.uid,
|
|
140
143
|
advanced: advanced
|
|
@@ -131,6 +131,9 @@ const ComponentWrapperPreview = ({ children, ...props })=>{
|
|
|
131
131
|
if (disableWrap.includes(props.tag) && /*#__PURE__*/ isValidElement(children)) {
|
|
132
132
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
133
133
|
children: [
|
|
134
|
+
/*#__PURE__*/ jsx(ComponentAnimation, {
|
|
135
|
+
...props
|
|
136
|
+
}),
|
|
134
137
|
/*#__PURE__*/ jsx(RenderCustomCode, {
|
|
135
138
|
uid: props.uid,
|
|
136
139
|
advanced: advanced
|
package/dist/types/index.d.ts
CHANGED
|
@@ -6938,7 +6938,7 @@ type InputNumberControlType<T> = SharedControlType<T> & {
|
|
|
6938
6938
|
readonly?: boolean;
|
|
6939
6939
|
};
|
|
6940
6940
|
|
|
6941
|
-
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' | 'min';
|
|
6941
|
+
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' | 'min' | 'days';
|
|
6942
6942
|
type InputUnitControlType<T> = SharedControlType<T> & {
|
|
6943
6943
|
type: 'input:unit';
|
|
6944
6944
|
placeholder?: string;
|
|
@@ -7850,6 +7850,7 @@ type ControlUI = {
|
|
|
7850
7850
|
noRecordHistory?: boolean;
|
|
7851
7851
|
};
|
|
7852
7852
|
};
|
|
7853
|
+
onlyShowInTags?: string[];
|
|
7853
7854
|
};
|
|
7854
7855
|
type PageType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'GP_ARTICLE' | 'GP_BLOG' | 'GP_COLLECTION' | 'GP_INDEX' | 'GP_PRODUCT' | 'GP_STATIC' | 'PRODUCT' | 'STATIC' | 'THEME_SECTION';
|
|
7855
7856
|
type ComponentPreset = {
|