@gem-sdk/core 1.44.0-staging.50 → 1.44.0-staging.56

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
@@ -36,7 +36,8 @@ const disableWrap = [
36
36
  'ProductImagesV2',
37
37
  'PostPurchaseProductImages',
38
38
  'Sticky',
39
- 'Heading'
39
+ 'Heading',
40
+ 'EstimateDate'
40
41
  ];
41
42
  const customRenderChildren = [
42
43
  'Accordion',
@@ -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
@@ -34,7 +34,8 @@ const disableWrap = [
34
34
  'ProductImagesV2',
35
35
  'PostPurchaseProductImages',
36
36
  'Sticky',
37
- 'Heading'
37
+ 'Heading',
38
+ 'EstimateDate'
38
39
  ];
39
40
  const customRenderChildren = [
40
41
  'Accordion',
@@ -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 = {
@@ -27040,6 +27041,8 @@ type TypographyProps = {
27040
27041
  lineHeight?: string;
27041
27042
  letterSpacing?: string;
27042
27043
  fallbackFontFamily?: string;
27044
+ textShadow?: ShadowProps;
27045
+ hasShadowText?: boolean;
27043
27046
  };
27044
27047
  type TypographyV2Props = Omit<TypographyProps, 'fontSize' | 'lineHeight'> & {
27045
27048
  fontSize?: ObjectDevices<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.44.0-staging.50",
3
+ "version": "1.44.0-staging.56",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",