@gem-sdk/core 1.53.0-dev.14 → 1.53.0-dev.16
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.
|
@@ -14,7 +14,7 @@ const ComponentWrapper = ({ children, pageType, ...props })=>{
|
|
|
14
14
|
const advanced = props.advanced;
|
|
15
15
|
const interactionAttributes = ()=>{
|
|
16
16
|
let result = {};
|
|
17
|
-
if (props.advanced?.displayInitInteraction
|
|
17
|
+
if (props.advanced?.displayInitInteraction !== undefined) {
|
|
18
18
|
result = {
|
|
19
19
|
'display-init': props.advanced?.displayInitInteraction === false ? 'hide' : 'show',
|
|
20
20
|
'gp-interaction-wrapper': ''
|
|
@@ -10,7 +10,7 @@ const ComponentWrapper = ({ children, pageType, ...props })=>{
|
|
|
10
10
|
const advanced = props.advanced;
|
|
11
11
|
const interactionAttributes = ()=>{
|
|
12
12
|
let result = {};
|
|
13
|
-
if (props.advanced?.displayInitInteraction
|
|
13
|
+
if (props.advanced?.displayInitInteraction !== undefined) {
|
|
14
14
|
result = {
|
|
15
15
|
'display-init': props.advanced?.displayInitInteraction === false ? 'hide' : 'show',
|
|
16
16
|
'gp-interaction-wrapper': ''
|
package/dist/types/index.d.ts
CHANGED
|
@@ -38096,7 +38096,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
38096
38096
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
38097
38097
|
};
|
|
38098
38098
|
|
|
38099
|
-
declare const isLocalEnv
|
|
38099
|
+
declare const isLocalEnv: boolean;
|
|
38100
38100
|
declare const baseAssetURL: string;
|
|
38101
38101
|
|
|
38102
38102
|
declare const convertHTML: (str: string) => string;
|