@gem-sdk/components 2.6.0-staging.18 → 2.6.0-staging.20
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/cjs/grid/setting/Row.js +1 -2
- package/dist/cjs/third-party/setting/RechargeSubscriptions.js +5 -0
- package/dist/cjs/third-party/setting/SubifySubscriptionsApp.js +5 -0
- package/dist/esm/grid/setting/Row.js +1 -2
- package/dist/esm/third-party/setting/RechargeSubscriptions.js +5 -0
- package/dist/esm/third-party/setting/SubifySubscriptionsApp.js +5 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +2 -2
|
@@ -368,7 +368,6 @@ const config = {
|
|
|
368
368
|
label: {
|
|
369
369
|
en: 'Align'
|
|
370
370
|
},
|
|
371
|
-
condition: `(layout.display !== 'fill' || (layout.display === 'fill' && !!layout.cols && layout.cols.length > 1)) && pageType != "POST_PURCHASE"`,
|
|
372
371
|
controls: [
|
|
373
372
|
{
|
|
374
373
|
type: 'control',
|
|
@@ -378,7 +377,7 @@ const config = {
|
|
|
378
377
|
setting: {
|
|
379
378
|
id: 'verticalAlign'
|
|
380
379
|
},
|
|
381
|
-
condition:
|
|
380
|
+
condition: `((!!layout.cols && layout.cols.length > 1) || (!!layout.cols && layout.cols.length == 1 && height == '100%')) && pageType != "POST_PURCHASE"`
|
|
382
381
|
},
|
|
383
382
|
{
|
|
384
383
|
type: 'control',
|
|
@@ -364,7 +364,6 @@ const config = {
|
|
|
364
364
|
label: {
|
|
365
365
|
en: 'Align'
|
|
366
366
|
},
|
|
367
|
-
condition: `(layout.display !== 'fill' || (layout.display === 'fill' && !!layout.cols && layout.cols.length > 1)) && pageType != "POST_PURCHASE"`,
|
|
368
367
|
controls: [
|
|
369
368
|
{
|
|
370
369
|
type: 'control',
|
|
@@ -374,7 +373,7 @@ const config = {
|
|
|
374
373
|
setting: {
|
|
375
374
|
id: 'verticalAlign'
|
|
376
375
|
},
|
|
377
|
-
condition:
|
|
376
|
+
condition: `((!!layout.cols && layout.cols.length > 1) || (!!layout.cols && layout.cols.length == 1 && height == '100%')) && pageType != "POST_PURCHASE"`
|
|
378
377
|
},
|
|
379
378
|
{
|
|
380
379
|
type: 'control',
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2457,6 +2457,7 @@ type RechargeSubscriptionsProps = BaseProps<{
|
|
|
2457
2457
|
align?: ObjectDevices<AlignProp>;
|
|
2458
2458
|
openApp?: any;
|
|
2459
2459
|
install?: any;
|
|
2460
|
+
productHandle?: string;
|
|
2460
2461
|
}>;
|
|
2461
2462
|
declare const RechargeSubscriptions$1: React.FC<RechargeSubscriptionsProps>;
|
|
2462
2463
|
|
|
@@ -2987,6 +2988,7 @@ type SubifySubscriptionsAppProps = BaseProps<{
|
|
|
2987
2988
|
install?: any;
|
|
2988
2989
|
appBlockId?: string;
|
|
2989
2990
|
widgetType?: string;
|
|
2991
|
+
productHandle?: string;
|
|
2990
2992
|
}>;
|
|
2991
2993
|
declare const SubifySubscriptionsApp$1: React.FC<SubifySubscriptionsAppProps>;
|
|
2992
2994
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/components",
|
|
3
|
-
"version": "2.6.0-staging.
|
|
3
|
+
"version": "2.6.0-staging.20",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"format": "prettier --write \"./src/**/*.{ts,tsx}\""
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@gem-sdk/core": "2.6.0-staging.
|
|
24
|
+
"@gem-sdk/core": "2.6.0-staging.19",
|
|
25
25
|
"@gem-sdk/styles": "2.6.0-staging.13",
|
|
26
26
|
"@types/react-transition-group": "^4.4.5"
|
|
27
27
|
},
|