@gem-sdk/components 2.2.0-staging.34 → 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/button/components/Button.liquid.js +3 -3
- package/dist/cjs/third-party/components/FlyBundlesUpsellsFbt.js +31 -7
- package/dist/cjs/third-party/setting/FlyBundlesUpsellsFbt.js +5 -0
- package/dist/esm/button/components/Button.liquid.js +3 -3
- 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
|
@@ -127,7 +127,7 @@ const Button = ({ className, builderProps, customAttrs, pageContext, setting = {
|
|
|
127
127
|
}}"
|
|
128
128
|
>
|
|
129
129
|
${!disabledLoading ? ` <svg
|
|
130
|
-
class="
|
|
130
|
+
class="gp-invisible gp-absolute gp-h-5 gp-w-5 group-data-[state=loading]/button:gp-animate-spin group-data-[state=loading]/button:gp-visible"
|
|
131
131
|
xmlns="http://www.w3.org/2000/svg"
|
|
132
132
|
fill="none"
|
|
133
133
|
viewBox="0 0 24 24"
|
|
@@ -151,7 +151,7 @@ const Button = ({ className, builderProps, customAttrs, pageContext, setting = {
|
|
|
151
151
|
'gp-flex-row-reverse': iconAlign === 'right'
|
|
152
152
|
})}">
|
|
153
153
|
${core.RenderIf(!!iconSvg && iconVisible, core.template`<span
|
|
154
|
-
class="${`gp-inline-flex gp-button-icon gp-transition-colors gp-duration-300 gp-shrink-0 gp-items-center gp-justify-center group-data-[state=loading]:gp-invisible gp-z-1 [&>svg]:!gp-h-[var(--height-desktop)] [&>svg]:!gp-w-auto tablet:[&>svg]:!gp-h-[var(--height-tablet)] mobile:[&>svg]:!gp-h-[var(--height-mobile)]`}"
|
|
154
|
+
class="${`gp-inline-flex gp-button-icon gp-transition-colors gp-duration-300 gp-shrink-0 gp-items-center gp-justify-center group-data-[state=loading]/button:gp-invisible gp-z-1 [&>svg]:!gp-h-[var(--height-desktop)] [&>svg]:!gp-w-auto tablet:[&>svg]:!gp-h-[var(--height-tablet)] mobile:[&>svg]:!gp-h-[var(--height-mobile)]`}"
|
|
155
155
|
style="${{
|
|
156
156
|
...label ? iconSpacingStyle : {},
|
|
157
157
|
'--height-desktop': `${size?.desktop}`,
|
|
@@ -161,7 +161,7 @@ const Button = ({ className, builderProps, customAttrs, pageContext, setting = {
|
|
|
161
161
|
>${iconSvg}</span>`)}
|
|
162
162
|
<span
|
|
163
163
|
data-gp-text
|
|
164
|
-
class="${`gp-content-product-button group-hover/button:!gp-text-inherit gp-button-text-only gp-break-words group-data-[state=loading]:gp-invisible [&_p]:gp-whitespace-pre-line gp-z-1 gp-h-full gp-flex gp-items-center gp-overflow-hidden ${nodePrice ? appendTypoClass : ''}
|
|
164
|
+
class="${`gp-content-product-button group-hover/button:!gp-text-inherit gp-button-text-only gp-break-words group-data-[state=loading]/button:gp-invisible [&_p]:gp-whitespace-pre-line gp-z-1 gp-h-full gp-flex gp-items-center gp-overflow-hidden ${nodePrice ? appendTypoClass : ''}
|
|
165
165
|
${styles?.typo?.attrs?.italic ? '[&:not(:has(p))]:gp-pr-[0.2em] [&_p]:[&:has(p)]:gp-pr-[0.2em]' : ''}`}"
|
|
166
166
|
style="${{
|
|
167
167
|
...nodePrice && appendTypoStyle,
|
|
@@ -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 })=>{
|
|
@@ -123,7 +123,7 @@ const Button = ({ className, builderProps, customAttrs, pageContext, setting = {
|
|
|
123
123
|
}}"
|
|
124
124
|
>
|
|
125
125
|
${!disabledLoading ? ` <svg
|
|
126
|
-
class="
|
|
126
|
+
class="gp-invisible gp-absolute gp-h-5 gp-w-5 group-data-[state=loading]/button:gp-animate-spin group-data-[state=loading]/button:gp-visible"
|
|
127
127
|
xmlns="http://www.w3.org/2000/svg"
|
|
128
128
|
fill="none"
|
|
129
129
|
viewBox="0 0 24 24"
|
|
@@ -147,7 +147,7 @@ const Button = ({ className, builderProps, customAttrs, pageContext, setting = {
|
|
|
147
147
|
'gp-flex-row-reverse': iconAlign === 'right'
|
|
148
148
|
})}">
|
|
149
149
|
${RenderIf(!!iconSvg && iconVisible, template`<span
|
|
150
|
-
class="${`gp-inline-flex gp-button-icon gp-transition-colors gp-duration-300 gp-shrink-0 gp-items-center gp-justify-center group-data-[state=loading]:gp-invisible gp-z-1 [&>svg]:!gp-h-[var(--height-desktop)] [&>svg]:!gp-w-auto tablet:[&>svg]:!gp-h-[var(--height-tablet)] mobile:[&>svg]:!gp-h-[var(--height-mobile)]`}"
|
|
150
|
+
class="${`gp-inline-flex gp-button-icon gp-transition-colors gp-duration-300 gp-shrink-0 gp-items-center gp-justify-center group-data-[state=loading]/button:gp-invisible gp-z-1 [&>svg]:!gp-h-[var(--height-desktop)] [&>svg]:!gp-w-auto tablet:[&>svg]:!gp-h-[var(--height-tablet)] mobile:[&>svg]:!gp-h-[var(--height-mobile)]`}"
|
|
151
151
|
style="${{
|
|
152
152
|
...label ? iconSpacingStyle : {},
|
|
153
153
|
'--height-desktop': `${size?.desktop}`,
|
|
@@ -157,7 +157,7 @@ const Button = ({ className, builderProps, customAttrs, pageContext, setting = {
|
|
|
157
157
|
>${iconSvg}</span>`)}
|
|
158
158
|
<span
|
|
159
159
|
data-gp-text
|
|
160
|
-
class="${`gp-content-product-button group-hover/button:!gp-text-inherit gp-button-text-only gp-break-words group-data-[state=loading]:gp-invisible [&_p]:gp-whitespace-pre-line gp-z-1 gp-h-full gp-flex gp-items-center gp-overflow-hidden ${nodePrice ? appendTypoClass : ''}
|
|
160
|
+
class="${`gp-content-product-button group-hover/button:!gp-text-inherit gp-button-text-only gp-break-words group-data-[state=loading]/button:gp-invisible [&_p]:gp-whitespace-pre-line gp-z-1 gp-h-full gp-flex gp-items-center gp-overflow-hidden ${nodePrice ? appendTypoClass : ''}
|
|
161
161
|
${styles?.typo?.attrs?.italic ? '[&:not(:has(p))]:gp-pr-[0.2em] [&_p]:[&:has(p)]:gp-pr-[0.2em]' : ''}`}"
|
|
162
162
|
style="${{
|
|
163
163
|
...nodePrice && appendTypoStyle,
|
|
@@ -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 })=>{
|