@gem-sdk/components 2.1.13-staging.2 → 2.1.13
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/article/components/ArticleList.liquid.js +2 -6
- package/dist/cjs/builder.js +1 -5
- package/dist/cjs/index.js +0 -4
- package/dist/cjs/index.liquid.js +0 -4
- package/dist/cjs/third-party/components/BoostAISearchDiscovery.liquid.js +3 -1
- package/dist/cjs/third-party/next.js +1 -11
- package/dist/cjs/third-party/setting/BoostAISearchDiscovery.js +56 -3
- package/dist/cjs/third-party/setting/index.js +1 -5
- package/dist/esm/article/components/ArticleList.liquid.js +2 -6
- package/dist/esm/builder.js +1 -5
- package/dist/esm/index.js +0 -2
- package/dist/esm/index.liquid.js +0 -2
- package/dist/esm/third-party/components/BoostAISearchDiscovery.liquid.js +3 -1
- package/dist/esm/third-party/next.js +1 -11
- package/dist/esm/third-party/setting/BoostAISearchDiscovery.js +56 -3
- package/dist/esm/third-party/setting/index.js +202 -206
- package/dist/types/index.d.ts +4 -33
- package/package.json +2 -2
- package/dist/cjs/third-party/components/HextomCountdownTimerBar.js +0 -32
- package/dist/cjs/third-party/components/HextomCountdownTimerBar.liquid.js +0 -12
- package/dist/cjs/third-party/components/TrustBadgesBear.js +0 -32
- package/dist/cjs/third-party/components/TrustBadgesBear.liquid.js +0 -12
- package/dist/cjs/third-party/configs/HextomCountdownTimerBar.js +0 -12
- package/dist/cjs/third-party/configs/TrustBadgesBear.js +0 -12
- package/dist/cjs/third-party/setting/HextomCountdownTimerBar.js +0 -128
- package/dist/cjs/third-party/setting/TrustBadgesBear.js +0 -128
- package/dist/esm/third-party/components/HextomCountdownTimerBar.js +0 -28
- package/dist/esm/third-party/components/HextomCountdownTimerBar.liquid.js +0 -8
- package/dist/esm/third-party/components/TrustBadgesBear.js +0 -28
- package/dist/esm/third-party/components/TrustBadgesBear.liquid.js +0 -8
- package/dist/esm/third-party/configs/HextomCountdownTimerBar.js +0 -8
- package/dist/esm/third-party/configs/TrustBadgesBear.js +0 -8
- package/dist/esm/third-party/setting/HextomCountdownTimerBar.js +0 -124
- package/dist/esm/third-party/setting/TrustBadgesBear.js +0 -124
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
import AppConfig from '../configs/TrustBadgesBear.js';
|
|
2
|
-
|
|
3
|
-
const config = {
|
|
4
|
-
tag: AppConfig.tag,
|
|
5
|
-
label: AppConfig.label,
|
|
6
|
-
icon: '<img class="gp-w-6 gp-border gp-border-[#494949] gp-rounded-[3px]" src="https://cdn.shopify.com/app-store/listing_images/c9141bfba8db18a258f290a5a639986e/icon/CLDR_q6erfwCEAE=.png">',
|
|
7
|
-
editorConfigs: {
|
|
8
|
-
component: {
|
|
9
|
-
isThirdParty: true
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
presets: [
|
|
13
|
-
{
|
|
14
|
-
id: AppConfig.id,
|
|
15
|
-
name: {
|
|
16
|
-
en: AppConfig.label
|
|
17
|
-
},
|
|
18
|
-
hideTextContent: true,
|
|
19
|
-
icon: {
|
|
20
|
-
desktop: `<div class="w-full flex flex-col items-center">
|
|
21
|
-
<img class="w-24 border border-dark-200 rounded-medium" src="https://cdn.shopify.com/app-store/listing_images/c9141bfba8db18a258f290a5a639986e/icon/CLDR_q6erfwCEAE=.png">
|
|
22
|
-
<span class="preset-item-title">Trust Badges Bear</span>
|
|
23
|
-
</div>`
|
|
24
|
-
},
|
|
25
|
-
components: [
|
|
26
|
-
{
|
|
27
|
-
tag: AppConfig.tag
|
|
28
|
-
}
|
|
29
|
-
]
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
settings: [
|
|
33
|
-
{
|
|
34
|
-
id: 'setting',
|
|
35
|
-
controls: [
|
|
36
|
-
{
|
|
37
|
-
id: 'appBlockId',
|
|
38
|
-
type: 'input',
|
|
39
|
-
default: ''
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
id: 'widgetType',
|
|
43
|
-
label: 'Choose widget',
|
|
44
|
-
type: 'select',
|
|
45
|
-
options: [
|
|
46
|
-
{
|
|
47
|
-
label: 'Widget',
|
|
48
|
-
value: 'widget'
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
default: 'widget'
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
id: 'install',
|
|
55
|
-
type: 'open-link',
|
|
56
|
-
target: '_blank',
|
|
57
|
-
linkType: 'install',
|
|
58
|
-
href: 'https://apps.shopify.com/ultimate-trust-badges?utm_source=gempages',
|
|
59
|
-
appName: AppConfig.label
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
id: 'openApp',
|
|
63
|
-
type: 'open-link',
|
|
64
|
-
target: '_blank',
|
|
65
|
-
linkType: 'openApp',
|
|
66
|
-
href: 'https://admin.shopify.com/?redirect=/apps/ultimate-trust-badge',
|
|
67
|
-
appName: AppConfig.label
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
id: 'align',
|
|
71
|
-
label: 'Alignment',
|
|
72
|
-
type: 'segment',
|
|
73
|
-
options: [
|
|
74
|
-
{
|
|
75
|
-
label: 'Left',
|
|
76
|
-
value: 'left',
|
|
77
|
-
type: 'align'
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
label: 'Center',
|
|
81
|
-
value: 'center',
|
|
82
|
-
type: 'align'
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
label: 'Right',
|
|
86
|
-
value: 'right',
|
|
87
|
-
type: 'align'
|
|
88
|
-
}
|
|
89
|
-
],
|
|
90
|
-
devices: {
|
|
91
|
-
desktop: {
|
|
92
|
-
default: 'left'
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
]
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
ui: [
|
|
100
|
-
{
|
|
101
|
-
type: 'control',
|
|
102
|
-
setting: {
|
|
103
|
-
id: 'install'
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
type: 'control',
|
|
108
|
-
setting: {
|
|
109
|
-
id: 'openApp'
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
type: 'control',
|
|
114
|
-
label: {
|
|
115
|
-
en: 'Align'
|
|
116
|
-
},
|
|
117
|
-
setting: {
|
|
118
|
-
id: 'align'
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
]
|
|
122
|
-
};
|
|
123
|
-
|
|
124
|
-
export { config as default };
|