@gem-sdk/components 2.2.0-staging.35 → 2.2.0-staging.36
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/third-party/components/FlyBundlesUpsellsFbt.js +31 -7
- package/dist/cjs/third-party/setting/FlyBundlesUpsellsFbt.js +5 -0
- package/dist/esm/third-party/components/FlyBundlesUpsellsFbt.js +31 -7
- package/dist/esm/third-party/setting/FlyBundlesUpsellsFbt.js +5 -0
- package/package.json +1 -1
|
@@ -14,20 +14,44 @@ const AppConfig = {
|
|
|
14
14
|
};
|
|
15
15
|
const widgetTypeOptions = [
|
|
16
16
|
{
|
|
17
|
-
label: 'Fly Bundles:
|
|
18
|
-
value: 'app-block-volume'
|
|
17
|
+
label: 'Fly Bundles: Quantity Breaks',
|
|
18
|
+
value: 'app-block-volume',
|
|
19
|
+
hideOnPage: [
|
|
20
|
+
'GP_ARTICLE',
|
|
21
|
+
'GP_BLOG',
|
|
22
|
+
'GP_COLLECTION',
|
|
23
|
+
'GP_INDEX',
|
|
24
|
+
'GP_STATIC'
|
|
25
|
+
]
|
|
19
26
|
},
|
|
20
27
|
{
|
|
21
|
-
label: 'Fly Bundles:
|
|
22
|
-
value: 'app-block-upsell-block'
|
|
28
|
+
label: 'Fly Bundles: Frequently Bought Together',
|
|
29
|
+
value: 'app-block-upsell-block',
|
|
30
|
+
hideOnPage: [
|
|
31
|
+
'GP_ARTICLE',
|
|
32
|
+
'GP_BLOG',
|
|
33
|
+
'GP_COLLECTION',
|
|
34
|
+
'GP_INDEX',
|
|
35
|
+
'GP_STATIC'
|
|
36
|
+
]
|
|
23
37
|
},
|
|
24
38
|
{
|
|
25
|
-
label: 'Fly Bundles:
|
|
26
|
-
value: 'app-block-fbt'
|
|
39
|
+
label: 'Fly Bundles: Product Bundles',
|
|
40
|
+
value: 'app-block-fbt',
|
|
41
|
+
hideOnPage: [
|
|
42
|
+
'GP_ARTICLE',
|
|
43
|
+
'GP_BLOG',
|
|
44
|
+
'GP_COLLECTION',
|
|
45
|
+
'GP_INDEX',
|
|
46
|
+
'GP_STATIC'
|
|
47
|
+
]
|
|
27
48
|
},
|
|
28
49
|
{
|
|
29
50
|
label: 'Fly Bundles: Custom Block',
|
|
30
|
-
value: 'app-block-custom'
|
|
51
|
+
value: 'app-block-custom',
|
|
52
|
+
hideOnPage: [
|
|
53
|
+
'GP_PRODUCT'
|
|
54
|
+
]
|
|
31
55
|
}
|
|
32
56
|
];
|
|
33
57
|
const FlyBundlesUpsellsFbtContent = ({ widgetName })=>{
|
|
@@ -10,20 +10,44 @@ const AppConfig = {
|
|
|
10
10
|
};
|
|
11
11
|
const widgetTypeOptions = [
|
|
12
12
|
{
|
|
13
|
-
label: 'Fly Bundles:
|
|
14
|
-
value: 'app-block-volume'
|
|
13
|
+
label: 'Fly Bundles: Quantity Breaks',
|
|
14
|
+
value: 'app-block-volume',
|
|
15
|
+
hideOnPage: [
|
|
16
|
+
'GP_ARTICLE',
|
|
17
|
+
'GP_BLOG',
|
|
18
|
+
'GP_COLLECTION',
|
|
19
|
+
'GP_INDEX',
|
|
20
|
+
'GP_STATIC'
|
|
21
|
+
]
|
|
15
22
|
},
|
|
16
23
|
{
|
|
17
|
-
label: 'Fly Bundles:
|
|
18
|
-
value: 'app-block-upsell-block'
|
|
24
|
+
label: 'Fly Bundles: Frequently Bought Together',
|
|
25
|
+
value: 'app-block-upsell-block',
|
|
26
|
+
hideOnPage: [
|
|
27
|
+
'GP_ARTICLE',
|
|
28
|
+
'GP_BLOG',
|
|
29
|
+
'GP_COLLECTION',
|
|
30
|
+
'GP_INDEX',
|
|
31
|
+
'GP_STATIC'
|
|
32
|
+
]
|
|
19
33
|
},
|
|
20
34
|
{
|
|
21
|
-
label: 'Fly Bundles:
|
|
22
|
-
value: 'app-block-fbt'
|
|
35
|
+
label: 'Fly Bundles: Product Bundles',
|
|
36
|
+
value: 'app-block-fbt',
|
|
37
|
+
hideOnPage: [
|
|
38
|
+
'GP_ARTICLE',
|
|
39
|
+
'GP_BLOG',
|
|
40
|
+
'GP_COLLECTION',
|
|
41
|
+
'GP_INDEX',
|
|
42
|
+
'GP_STATIC'
|
|
43
|
+
]
|
|
23
44
|
},
|
|
24
45
|
{
|
|
25
46
|
label: 'Fly Bundles: Custom Block',
|
|
26
|
-
value: 'app-block-custom'
|
|
47
|
+
value: 'app-block-custom',
|
|
48
|
+
hideOnPage: [
|
|
49
|
+
'GP_PRODUCT'
|
|
50
|
+
]
|
|
27
51
|
}
|
|
28
52
|
];
|
|
29
53
|
const FlyBundlesUpsellsFbtContent = ({ widgetName })=>{
|