@augeo/smelt 1.2.2

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.
Files changed (152) hide show
  1. package/.claude/settings.json +11 -0
  2. package/.github/workflows/verify.yml +64 -0
  3. package/.gitmodules +3 -0
  4. package/.prettierignore +25 -0
  5. package/.prettierrc.cjs +9 -0
  6. package/.zed/settings.json +21 -0
  7. package/AGENTS.md +232 -0
  8. package/LICENSE +21 -0
  9. package/README.md +266 -0
  10. package/biome.json +58 -0
  11. package/dist/cli.d.mts +1 -0
  12. package/dist/cli.mjs +350 -0
  13. package/dist/schema.d.mts +265 -0
  14. package/dist/schema.mjs +21 -0
  15. package/docs/TESTING.md +293 -0
  16. package/docs/assets-plan.md +197 -0
  17. package/docs/build-spec.md +466 -0
  18. package/docs/library-conversion-plan.md +419 -0
  19. package/example/.gitattributes +7 -0
  20. package/example/.shopifyignore +28 -0
  21. package/example/.theme-check.yml +7 -0
  22. package/example/blocks/_built--sections--hero--blocks--feature.liquid +52 -0
  23. package/example/config/settings_schema.json +10 -0
  24. package/example/layout/theme.liquid +25 -0
  25. package/example/locales/en.default.json +1 -0
  26. package/example/package-lock.json +51 -0
  27. package/example/package.json +20 -0
  28. package/example/sections/built--sections--hero.liquid +83 -0
  29. package/example/snippets/built--components--button.liquid +38 -0
  30. package/example/snippets/built--components--card.liquid +33 -0
  31. package/example/src/components/button/button.css +13 -0
  32. package/example/src/components/card/card.css +16 -0
  33. package/example/src/components/card/card.liquid +9 -0
  34. package/example/src/sections/hero/blocks/feature/feature.css +11 -0
  35. package/example/src/sections/hero/blocks/feature/feature.liquid +9 -0
  36. package/example/src/sections/hero/blocks/feature/feature.schema.ts +14 -0
  37. package/example/src/sections/hero/hero.css +15 -0
  38. package/example/src/sections/hero/hero.liquid +16 -0
  39. package/example/src/sections/hero/hero.schema.ts +26 -0
  40. package/example/src/sections/hero/hero.test.ts +43 -0
  41. package/example/src/utilities/labels.ts +5 -0
  42. package/example/templates/index.liquid +1 -0
  43. package/example/tsconfig.json +10 -0
  44. package/example/vitest.config.ts +6 -0
  45. package/lib/build/build.test.ts +475 -0
  46. package/lib/build/build.ts +314 -0
  47. package/lib/build/command.ts +27 -0
  48. package/lib/build/index.ts +1 -0
  49. package/lib/cli.ts +17 -0
  50. package/lib/dev/command.ts +25 -0
  51. package/lib/dev/index.ts +1 -0
  52. package/lib/dev/watch.ts +52 -0
  53. package/lib/resolver.test.ts +275 -0
  54. package/lib/resolver.ts +156 -0
  55. package/lib/schema.ts +37 -0
  56. package/package.json +59 -0
  57. package/scripts/codegen-schema.ts +66 -0
  58. package/src/components/button/button.css +13 -0
  59. package/src/components/button/button.liquid +5 -0
  60. package/src/components/button/button.ts +5 -0
  61. package/src/tsconfig.json +10 -0
  62. package/tests/example.test.ts +101 -0
  63. package/tsconfig.json +20 -0
  64. package/tsdown.config.ts +14 -0
  65. package/vendor/theme-liquid-docs/.gitattributes +10 -0
  66. package/vendor/theme-liquid-docs/.github/CODEOWNERS +1 -0
  67. package/vendor/theme-liquid-docs/.github/CODE_OF_CONDUCT.md +73 -0
  68. package/vendor/theme-liquid-docs/.github/ISSUE_TEMPLATE/bug_report.md +17 -0
  69. package/vendor/theme-liquid-docs/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
  70. package/vendor/theme-liquid-docs/.github/dependabot.yaml +6 -0
  71. package/vendor/theme-liquid-docs/.github/workflows/ci.yml +33 -0
  72. package/vendor/theme-liquid-docs/.github/workflows/cla.yml +27 -0
  73. package/vendor/theme-liquid-docs/.github/workflows/shopify-dev-preview-automation.yml +86 -0
  74. package/vendor/theme-liquid-docs/.github/workflows/update-latest.yml +56 -0
  75. package/vendor/theme-liquid-docs/.prettierrc.json +16 -0
  76. package/vendor/theme-liquid-docs/.vscode/settings.json +28 -0
  77. package/vendor/theme-liquid-docs/LICENSE.md +7 -0
  78. package/vendor/theme-liquid-docs/README.md +48 -0
  79. package/vendor/theme-liquid-docs/ai/claude/CLAUDE.md +1485 -0
  80. package/vendor/theme-liquid-docs/ai/cursor/rules/assets.mdc +15 -0
  81. package/vendor/theme-liquid-docs/ai/cursor/rules/blocks.mdc +339 -0
  82. package/vendor/theme-liquid-docs/ai/cursor/rules/examples/block-example-group.mdc +103 -0
  83. package/vendor/theme-liquid-docs/ai/cursor/rules/examples/block-example-text.mdc +59 -0
  84. package/vendor/theme-liquid-docs/ai/cursor/rules/examples/section-example.mdc +61 -0
  85. package/vendor/theme-liquid-docs/ai/cursor/rules/examples/snippet-example.mdc +72 -0
  86. package/vendor/theme-liquid-docs/ai/cursor/rules/liquid.mdc +837 -0
  87. package/vendor/theme-liquid-docs/ai/cursor/rules/locales.mdc +100 -0
  88. package/vendor/theme-liquid-docs/ai/cursor/rules/localization.mdc +67 -0
  89. package/vendor/theme-liquid-docs/ai/cursor/rules/mcp.mdc +2 -0
  90. package/vendor/theme-liquid-docs/ai/cursor/rules/schemas.mdc +184 -0
  91. package/vendor/theme-liquid-docs/ai/cursor/rules/sections.mdc +84 -0
  92. package/vendor/theme-liquid-docs/ai/cursor/rules/settings-schema.mdc +51 -0
  93. package/vendor/theme-liquid-docs/ai/cursor/rules/snippets.mdc +119 -0
  94. package/vendor/theme-liquid-docs/ai/github/copilot-instructions.md +1485 -0
  95. package/vendor/theme-liquid-docs/ai/liquid.mdc +638 -0
  96. package/vendor/theme-liquid-docs/data/filters.json +6148 -0
  97. package/vendor/theme-liquid-docs/data/latest.json +2 -0
  98. package/vendor/theme-liquid-docs/data/objects.json +20594 -0
  99. package/vendor/theme-liquid-docs/data/shopify_system_translations.json +2586 -0
  100. package/vendor/theme-liquid-docs/data/tags.json +1276 -0
  101. package/vendor/theme-liquid-docs/package.json +20 -0
  102. package/vendor/theme-liquid-docs/schemas/manifest_schema.json +31 -0
  103. package/vendor/theme-liquid-docs/schemas/manifest_theme.json +19 -0
  104. package/vendor/theme-liquid-docs/schemas/manifest_theme_app_extension.json +10 -0
  105. package/vendor/theme-liquid-docs/schemas/theme/app_block_entry.json +13 -0
  106. package/vendor/theme-liquid-docs/schemas/theme/default_setting_values.json +24 -0
  107. package/vendor/theme-liquid-docs/schemas/theme/local_block_entry.json +25 -0
  108. package/vendor/theme-liquid-docs/schemas/theme/preset.json +72 -0
  109. package/vendor/theme-liquid-docs/schemas/theme/preset_blocks.json +91 -0
  110. package/vendor/theme-liquid-docs/schemas/theme/section.json +208 -0
  111. package/vendor/theme-liquid-docs/schemas/theme/setting.json +1413 -0
  112. package/vendor/theme-liquid-docs/schemas/theme/settings.json +10 -0
  113. package/vendor/theme-liquid-docs/schemas/theme/targetted_block_entry.json +15 -0
  114. package/vendor/theme-liquid-docs/schemas/theme/theme_block.json +91 -0
  115. package/vendor/theme-liquid-docs/schemas/theme/theme_block_entry.json +14 -0
  116. package/vendor/theme-liquid-docs/schemas/theme/theme_settings.json +83 -0
  117. package/vendor/theme-liquid-docs/schemas/theme/translations.json +63 -0
  118. package/vendor/theme-liquid-docs/schemas/update/update_extension_schema_v1.json +186 -0
  119. package/vendor/theme-liquid-docs/tests/fixtures/section-nested-blocks.json +18 -0
  120. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-1.json +90 -0
  121. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-2.json +201 -0
  122. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-3.json +29 -0
  123. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-4.json +315 -0
  124. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-5.json +114 -0
  125. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-6.json +63 -0
  126. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-conditional-settings.json +145 -0
  127. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-preset-blocks-as-hash.json +60 -0
  128. package/vendor/theme-liquid-docs/tests/fixtures/section-schema-static-block-preset.json +76 -0
  129. package/vendor/theme-liquid-docs/tests/fixtures/section-settings.json +34 -0
  130. package/vendor/theme-liquid-docs/tests/fixtures/theme-block-1.json +234 -0
  131. package/vendor/theme-liquid-docs/tests/fixtures/theme-block-2.json +253 -0
  132. package/vendor/theme-liquid-docs/tests/fixtures/theme-block-basics.json +48 -0
  133. package/vendor/theme-liquid-docs/tests/fixtures/theme-block-conditional-settings.json +202 -0
  134. package/vendor/theme-liquid-docs/tests/fixtures/theme-block-presets-as-hash.json +50 -0
  135. package/vendor/theme-liquid-docs/tests/fixtures/theme-block-settings.json +34 -0
  136. package/vendor/theme-liquid-docs/tests/fixtures/theme-settings-all-settings.json +313 -0
  137. package/vendor/theme-liquid-docs/tests/fixtures/theme-settings-dawn.json +1469 -0
  138. package/vendor/theme-liquid-docs/tests/fixtures/theme-settings-metadata.json +10 -0
  139. package/vendor/theme-liquid-docs/tests/fixtures/translations-1.json +14 -0
  140. package/vendor/theme-liquid-docs/tests/section.spec.ts +367 -0
  141. package/vendor/theme-liquid-docs/tests/test-constants.ts +58 -0
  142. package/vendor/theme-liquid-docs/tests/test-helpers.ts +104 -0
  143. package/vendor/theme-liquid-docs/tests/theme-settings/color_palette.spec.ts +184 -0
  144. package/vendor/theme-liquid-docs/tests/theme-settings/color_scheme_group.spec.ts +143 -0
  145. package/vendor/theme-liquid-docs/tests/theme-settings/general.spec.ts +192 -0
  146. package/vendor/theme-liquid-docs/tests/theme-settings/metaobject.spec.ts +94 -0
  147. package/vendor/theme-liquid-docs/tests/theme-settings/resource_list.spec.ts +58 -0
  148. package/vendor/theme-liquid-docs/tests/theme-settings/theme-metadata.spec.ts +59 -0
  149. package/vendor/theme-liquid-docs/tests/theme_block.spec.ts +266 -0
  150. package/vendor/theme-liquid-docs/tests/translations_schema.spec.ts +31 -0
  151. package/vendor/theme-liquid-docs/yarn.lock +543 -0
  152. package/vitest.config.ts +7 -0
@@ -0,0 +1,1469 @@
1
+ [
2
+ {
3
+ "name": "theme_info",
4
+ "theme_name": "Dawn",
5
+ "theme_version": "13.0.0",
6
+ "theme_author": "Shopify",
7
+ "theme_documentation_url": "https://help.shopify.com/manual/online-store/themes",
8
+ "theme_support_url": "https://support.shopify.com/"
9
+ },
10
+ {
11
+ "name": "t:settings_schema.logo.name",
12
+ "settings": [
13
+ {
14
+ "type": "image_picker",
15
+ "id": "logo",
16
+ "label": "t:settings_schema.logo.settings.logo_image.label"
17
+ },
18
+ {
19
+ "type": "range",
20
+ "id": "logo_width",
21
+ "min": 50,
22
+ "max": 300,
23
+ "step": 10,
24
+ "default": 100,
25
+ "unit": "px",
26
+ "label": "t:settings_schema.logo.settings.logo_width.label"
27
+ },
28
+ {
29
+ "type": "image_picker",
30
+ "id": "favicon",
31
+ "label": "t:settings_schema.logo.settings.favicon.label",
32
+ "info": "t:settings_schema.logo.settings.favicon.info"
33
+ }
34
+ ]
35
+ },
36
+ {
37
+ "name": "t:settings_schema.colors.name",
38
+ "settings": [
39
+ {
40
+ "type": "color_scheme_group",
41
+ "id": "color_schemes",
42
+ "definition": [
43
+ {
44
+ "type": "color",
45
+ "id": "background",
46
+ "label": "t:settings_schema.colors.settings.background.label",
47
+ "default": "#FFFFFF"
48
+ },
49
+ {
50
+ "type": "color_background",
51
+ "id": "background_gradient",
52
+ "label": "t:settings_schema.colors.settings.background_gradient.label",
53
+ "info": "t:settings_schema.colors.settings.background_gradient.info"
54
+ },
55
+ {
56
+ "type": "color",
57
+ "id": "text",
58
+ "label": "t:settings_schema.colors.settings.text.label",
59
+ "default": "#121212"
60
+ },
61
+ {
62
+ "type": "color",
63
+ "id": "button",
64
+ "label": "t:settings_schema.colors.settings.button_background.label",
65
+ "default": "#121212"
66
+ },
67
+ {
68
+ "type": "color",
69
+ "id": "button_label",
70
+ "label": "t:settings_schema.colors.settings.button_label.label",
71
+ "default": "#FFFFFF"
72
+ },
73
+ {
74
+ "type": "color",
75
+ "id": "secondary_button_label",
76
+ "label": "t:settings_schema.colors.settings.secondary_button_label.label",
77
+ "default": "#121212"
78
+ },
79
+ {
80
+ "type": "color",
81
+ "id": "shadow",
82
+ "label": "t:settings_schema.colors.settings.shadow.label",
83
+ "default": "#121212"
84
+ }
85
+ ],
86
+ "role": {
87
+ "text": "text",
88
+ "background": {
89
+ "solid": "background",
90
+ "gradient": "background_gradient"
91
+ },
92
+ "links": "secondary_button_label",
93
+ "icons": "text",
94
+ "primary_button": "button",
95
+ "on_primary_button": "button_label",
96
+ "primary_button_border": "button",
97
+ "secondary_button": "background",
98
+ "on_secondary_button": "secondary_button_label",
99
+ "secondary_button_border": "secondary_button_label"
100
+ }
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "name": "t:settings_schema.typography.name",
106
+ "settings": [
107
+ {
108
+ "type": "header",
109
+ "content": "t:settings_schema.typography.settings.header__1.content"
110
+ },
111
+ {
112
+ "type": "font_picker",
113
+ "id": "type_header_font",
114
+ "default": "assistant_n4",
115
+ "label": "t:settings_schema.typography.settings.type_header_font.label",
116
+ "info": "t:settings_schema.typography.settings.type_header_font.info"
117
+ },
118
+ {
119
+ "type": "range",
120
+ "id": "heading_scale",
121
+ "min": 100,
122
+ "max": 150,
123
+ "step": 5,
124
+ "unit": "%",
125
+ "label": "t:settings_schema.typography.settings.heading_scale.label",
126
+ "default": 100
127
+ },
128
+ {
129
+ "type": "header",
130
+ "content": "t:settings_schema.typography.settings.header__2.content"
131
+ },
132
+ {
133
+ "type": "font_picker",
134
+ "id": "type_body_font",
135
+ "default": "assistant_n4",
136
+ "label": "t:settings_schema.typography.settings.type_body_font.label",
137
+ "info": "t:settings_schema.typography.settings.type_body_font.info"
138
+ },
139
+ {
140
+ "type": "range",
141
+ "id": "body_scale",
142
+ "min": 100,
143
+ "max": 130,
144
+ "step": 5,
145
+ "unit": "%",
146
+ "label": "t:settings_schema.typography.settings.body_scale.label",
147
+ "default": 100
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "name": "t:settings_schema.layout.name",
153
+ "settings": [
154
+ {
155
+ "type": "range",
156
+ "id": "page_width",
157
+ "min": 1000,
158
+ "max": 1600,
159
+ "step": 100,
160
+ "default": 1200,
161
+ "unit": "px",
162
+ "label": "t:settings_schema.layout.settings.page_width.label"
163
+ },
164
+ {
165
+ "type": "range",
166
+ "id": "spacing_sections",
167
+ "min": 0,
168
+ "max": 100,
169
+ "step": 4,
170
+ "unit": "px",
171
+ "label": "t:settings_schema.layout.settings.spacing_sections.label",
172
+ "default": 0
173
+ },
174
+ {
175
+ "type": "header",
176
+ "content": "t:settings_schema.layout.settings.header__grid.content"
177
+ },
178
+ {
179
+ "type": "paragraph",
180
+ "content": "t:settings_schema.layout.settings.paragraph__grid.content"
181
+ },
182
+ {
183
+ "type": "range",
184
+ "id": "spacing_grid_horizontal",
185
+ "min": 4,
186
+ "max": 40,
187
+ "step": 4,
188
+ "default": 8,
189
+ "unit": "px",
190
+ "label": "t:settings_schema.layout.settings.spacing_grid_horizontal.label"
191
+ },
192
+ {
193
+ "type": "range",
194
+ "id": "spacing_grid_vertical",
195
+ "min": 4,
196
+ "max": 40,
197
+ "step": 4,
198
+ "default": 8,
199
+ "unit": "px",
200
+ "label": "t:settings_schema.layout.settings.spacing_grid_vertical.label"
201
+ }
202
+ ]
203
+ },
204
+ {
205
+ "name": "t:settings_schema.animations.name",
206
+ "settings": [
207
+ {
208
+ "type": "checkbox",
209
+ "id": "animations_reveal_on_scroll",
210
+ "label": "t:settings_schema.animations.settings.animations_reveal_on_scroll.label",
211
+ "default": true
212
+ },
213
+ {
214
+ "type": "select",
215
+ "id": "animations_hover_elements",
216
+ "options": [
217
+ {
218
+ "value": "default",
219
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.options__1.label"
220
+ },
221
+ {
222
+ "value": "vertical-lift",
223
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.options__2.label"
224
+ },
225
+ {
226
+ "value": "3d-lift",
227
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.options__3.label"
228
+ }
229
+ ],
230
+ "default": "default",
231
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.label",
232
+ "info": "t:settings_schema.animations.settings.animations_hover_elements.info"
233
+ }
234
+ ]
235
+ },
236
+ {
237
+ "name": "t:settings_schema.buttons.name",
238
+ "settings": [
239
+ {
240
+ "type": "header",
241
+ "content": "t:settings_schema.global.settings.header__border.content"
242
+ },
243
+ {
244
+ "type": "range",
245
+ "id": "buttons_border_thickness",
246
+ "min": 0,
247
+ "max": 12,
248
+ "step": 1,
249
+ "unit": "px",
250
+ "label": "t:settings_schema.global.settings.thickness.label",
251
+ "default": 1
252
+ },
253
+ {
254
+ "type": "range",
255
+ "id": "buttons_border_opacity",
256
+ "min": 0,
257
+ "max": 100,
258
+ "step": 5,
259
+ "unit": "%",
260
+ "label": "t:settings_schema.global.settings.opacity.label",
261
+ "default": 100
262
+ },
263
+ {
264
+ "type": "range",
265
+ "id": "buttons_radius",
266
+ "min": 0,
267
+ "max": 40,
268
+ "step": 2,
269
+ "unit": "px",
270
+ "label": "t:settings_schema.global.settings.corner_radius.label",
271
+ "default": 0
272
+ },
273
+ {
274
+ "type": "header",
275
+ "content": "t:settings_schema.global.settings.header__shadow.content"
276
+ },
277
+ {
278
+ "type": "range",
279
+ "id": "buttons_shadow_opacity",
280
+ "min": 0,
281
+ "max": 100,
282
+ "step": 5,
283
+ "unit": "%",
284
+ "label": "t:settings_schema.global.settings.opacity.label",
285
+ "default": 0
286
+ },
287
+ {
288
+ "type": "range",
289
+ "id": "buttons_shadow_horizontal_offset",
290
+ "min": -12,
291
+ "max": 12,
292
+ "step": 2,
293
+ "unit": "px",
294
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
295
+ "default": 0
296
+ },
297
+ {
298
+ "type": "range",
299
+ "id": "buttons_shadow_vertical_offset",
300
+ "min": -12,
301
+ "max": 12,
302
+ "step": 2,
303
+ "unit": "px",
304
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
305
+ "default": 0
306
+ },
307
+ {
308
+ "type": "range",
309
+ "id": "buttons_shadow_blur",
310
+ "min": 0,
311
+ "max": 20,
312
+ "step": 5,
313
+ "unit": "px",
314
+ "label": "t:settings_schema.global.settings.blur.label",
315
+ "default": 0
316
+ }
317
+ ]
318
+ },
319
+ {
320
+ "name": "t:settings_schema.variant_pills.name",
321
+ "settings": [
322
+ {
323
+ "type": "paragraph",
324
+ "content": "t:settings_schema.variant_pills.paragraph"
325
+ },
326
+ {
327
+ "type": "header",
328
+ "content": "t:settings_schema.global.settings.header__border.content"
329
+ },
330
+ {
331
+ "type": "range",
332
+ "id": "variant_pills_border_thickness",
333
+ "min": 0,
334
+ "max": 12,
335
+ "step": 1,
336
+ "unit": "px",
337
+ "label": "t:settings_schema.global.settings.thickness.label",
338
+ "default": 1
339
+ },
340
+ {
341
+ "type": "range",
342
+ "id": "variant_pills_border_opacity",
343
+ "min": 0,
344
+ "max": 100,
345
+ "step": 5,
346
+ "unit": "%",
347
+ "label": "t:settings_schema.global.settings.opacity.label",
348
+ "default": 55
349
+ },
350
+ {
351
+ "type": "range",
352
+ "id": "variant_pills_radius",
353
+ "min": 0,
354
+ "max": 40,
355
+ "step": 2,
356
+ "unit": "px",
357
+ "label": "t:settings_schema.global.settings.corner_radius.label",
358
+ "default": 40
359
+ },
360
+ {
361
+ "type": "header",
362
+ "content": "t:settings_schema.global.settings.header__shadow.content"
363
+ },
364
+ {
365
+ "type": "range",
366
+ "id": "variant_pills_shadow_opacity",
367
+ "min": 0,
368
+ "max": 100,
369
+ "step": 5,
370
+ "unit": "%",
371
+ "label": "t:settings_schema.global.settings.opacity.label",
372
+ "default": 0
373
+ },
374
+ {
375
+ "type": "range",
376
+ "id": "variant_pills_shadow_horizontal_offset",
377
+ "min": -12,
378
+ "max": 12,
379
+ "step": 2,
380
+ "unit": "px",
381
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
382
+ "default": 0
383
+ },
384
+ {
385
+ "type": "range",
386
+ "id": "variant_pills_shadow_vertical_offset",
387
+ "min": -12,
388
+ "max": 12,
389
+ "step": 2,
390
+ "unit": "px",
391
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
392
+ "default": 0
393
+ },
394
+ {
395
+ "type": "range",
396
+ "id": "variant_pills_shadow_blur",
397
+ "min": 0,
398
+ "max": 20,
399
+ "step": 5,
400
+ "unit": "px",
401
+ "label": "t:settings_schema.global.settings.blur.label",
402
+ "default": 0
403
+ }
404
+ ]
405
+ },
406
+ {
407
+ "name": "t:settings_schema.inputs.name",
408
+ "settings": [
409
+ {
410
+ "type": "header",
411
+ "content": "t:settings_schema.global.settings.header__border.content"
412
+ },
413
+ {
414
+ "type": "range",
415
+ "id": "inputs_border_thickness",
416
+ "min": 0,
417
+ "max": 12,
418
+ "step": 1,
419
+ "unit": "px",
420
+ "label": "t:settings_schema.global.settings.thickness.label",
421
+ "default": 1
422
+ },
423
+ {
424
+ "type": "range",
425
+ "id": "inputs_border_opacity",
426
+ "min": 0,
427
+ "max": 100,
428
+ "step": 5,
429
+ "unit": "%",
430
+ "label": "t:settings_schema.global.settings.opacity.label",
431
+ "default": 55
432
+ },
433
+ {
434
+ "type": "range",
435
+ "id": "inputs_radius",
436
+ "min": 0,
437
+ "max": 40,
438
+ "step": 2,
439
+ "unit": "px",
440
+ "label": "t:settings_schema.global.settings.corner_radius.label",
441
+ "default": 0
442
+ },
443
+ {
444
+ "type": "header",
445
+ "content": "t:settings_schema.global.settings.header__shadow.content"
446
+ },
447
+ {
448
+ "type": "range",
449
+ "id": "inputs_shadow_opacity",
450
+ "min": 0,
451
+ "max": 100,
452
+ "step": 5,
453
+ "unit": "%",
454
+ "label": "t:settings_schema.global.settings.opacity.label",
455
+ "default": 0
456
+ },
457
+ {
458
+ "type": "range",
459
+ "id": "inputs_shadow_horizontal_offset",
460
+ "min": -12,
461
+ "max": 12,
462
+ "step": 2,
463
+ "unit": "px",
464
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
465
+ "default": 0
466
+ },
467
+ {
468
+ "type": "range",
469
+ "id": "inputs_shadow_vertical_offset",
470
+ "min": -12,
471
+ "max": 12,
472
+ "step": 2,
473
+ "unit": "px",
474
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
475
+ "default": 0
476
+ },
477
+ {
478
+ "type": "range",
479
+ "id": "inputs_shadow_blur",
480
+ "min": 0,
481
+ "max": 20,
482
+ "step": 5,
483
+ "unit": "px",
484
+ "label": "t:settings_schema.global.settings.blur.label",
485
+ "default": 0
486
+ }
487
+ ]
488
+ },
489
+ {
490
+ "name": "t:settings_schema.cards.name",
491
+ "settings": [
492
+ {
493
+ "type": "select",
494
+ "id": "card_style",
495
+ "options": [
496
+ {
497
+ "value": "standard",
498
+ "label": "t:settings_schema.cards.settings.style.options__1.label"
499
+ },
500
+ {
501
+ "value": "card",
502
+ "label": "t:settings_schema.cards.settings.style.options__2.label"
503
+ }
504
+ ],
505
+ "default": "standard",
506
+ "label": "t:settings_schema.cards.settings.style.label"
507
+ },
508
+ {
509
+ "type": "range",
510
+ "id": "card_image_padding",
511
+ "min": 0,
512
+ "max": 20,
513
+ "step": 2,
514
+ "unit": "px",
515
+ "label": "t:settings_schema.global.settings.image_padding.label",
516
+ "default": 0
517
+ },
518
+ {
519
+ "type": "select",
520
+ "id": "card_text_alignment",
521
+ "options": [
522
+ {
523
+ "value": "left",
524
+ "label": "t:settings_schema.global.settings.text_alignment.options__1.label"
525
+ },
526
+ {
527
+ "value": "center",
528
+ "label": "t:settings_schema.global.settings.text_alignment.options__2.label"
529
+ },
530
+ {
531
+ "value": "right",
532
+ "label": "t:settings_schema.global.settings.text_alignment.options__3.label"
533
+ }
534
+ ],
535
+ "default": "left",
536
+ "label": "t:settings_schema.global.settings.text_alignment.label"
537
+ },
538
+ {
539
+ "type": "color_scheme",
540
+ "id": "card_color_scheme",
541
+ "label": "t:sections.all.colors.label",
542
+ "default": "scheme-2"
543
+ },
544
+ {
545
+ "type": "header",
546
+ "content": "t:settings_schema.global.settings.header__border.content"
547
+ },
548
+ {
549
+ "type": "range",
550
+ "id": "card_border_thickness",
551
+ "min": 0,
552
+ "max": 24,
553
+ "step": 1,
554
+ "unit": "px",
555
+ "label": "t:settings_schema.global.settings.thickness.label",
556
+ "default": 0
557
+ },
558
+ {
559
+ "type": "range",
560
+ "id": "card_border_opacity",
561
+ "min": 0,
562
+ "max": 100,
563
+ "step": 5,
564
+ "unit": "%",
565
+ "label": "t:settings_schema.global.settings.opacity.label",
566
+ "default": 0
567
+ },
568
+ {
569
+ "type": "range",
570
+ "id": "card_corner_radius",
571
+ "min": 0,
572
+ "max": 40,
573
+ "step": 2,
574
+ "unit": "px",
575
+ "label": "t:settings_schema.global.settings.corner_radius.label",
576
+ "default": 0
577
+ },
578
+ {
579
+ "type": "header",
580
+ "content": "t:settings_schema.global.settings.header__shadow.content"
581
+ },
582
+ {
583
+ "type": "range",
584
+ "id": "card_shadow_opacity",
585
+ "min": 0,
586
+ "max": 100,
587
+ "step": 5,
588
+ "unit": "%",
589
+ "label": "t:settings_schema.global.settings.opacity.label",
590
+ "default": 10
591
+ },
592
+ {
593
+ "type": "range",
594
+ "id": "card_shadow_horizontal_offset",
595
+ "min": -40,
596
+ "max": 40,
597
+ "step": 2,
598
+ "unit": "px",
599
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
600
+ "default": 0
601
+ },
602
+ {
603
+ "type": "range",
604
+ "id": "card_shadow_vertical_offset",
605
+ "min": -40,
606
+ "max": 40,
607
+ "step": 2,
608
+ "unit": "px",
609
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
610
+ "default": 0
611
+ },
612
+ {
613
+ "type": "range",
614
+ "id": "card_shadow_blur",
615
+ "min": 0,
616
+ "max": 40,
617
+ "step": 5,
618
+ "unit": "px",
619
+ "label": "t:settings_schema.global.settings.blur.label",
620
+ "default": 0
621
+ }
622
+ ]
623
+ },
624
+ {
625
+ "name": "t:settings_schema.collection_cards.name",
626
+ "settings": [
627
+ {
628
+ "type": "select",
629
+ "id": "collection_card_style",
630
+ "options": [
631
+ {
632
+ "value": "standard",
633
+ "label": "t:settings_schema.collection_cards.settings.style.options__1.label"
634
+ },
635
+ {
636
+ "value": "card",
637
+ "label": "t:settings_schema.collection_cards.settings.style.options__2.label"
638
+ }
639
+ ],
640
+ "default": "standard",
641
+ "label": "t:settings_schema.collection_cards.settings.style.label"
642
+ },
643
+ {
644
+ "type": "range",
645
+ "id": "collection_card_image_padding",
646
+ "min": 0,
647
+ "max": 20,
648
+ "step": 2,
649
+ "unit": "px",
650
+ "label": "t:settings_schema.global.settings.image_padding.label",
651
+ "default": 0
652
+ },
653
+ {
654
+ "type": "select",
655
+ "id": "collection_card_text_alignment",
656
+ "options": [
657
+ {
658
+ "value": "left",
659
+ "label": "t:settings_schema.global.settings.text_alignment.options__1.label"
660
+ },
661
+ {
662
+ "value": "center",
663
+ "label": "t:settings_schema.global.settings.text_alignment.options__2.label"
664
+ },
665
+ {
666
+ "value": "right",
667
+ "label": "t:settings_schema.global.settings.text_alignment.options__3.label"
668
+ }
669
+ ],
670
+ "default": "left",
671
+ "label": "t:settings_schema.global.settings.text_alignment.label"
672
+ },
673
+ {
674
+ "type": "color_scheme",
675
+ "id": "collection_card_color_scheme",
676
+ "label": "t:sections.all.colors.label",
677
+ "default": "scheme-2"
678
+ },
679
+ {
680
+ "type": "header",
681
+ "content": "t:settings_schema.global.settings.header__border.content"
682
+ },
683
+ {
684
+ "type": "range",
685
+ "id": "collection_card_border_thickness",
686
+ "min": 0,
687
+ "max": 24,
688
+ "step": 1,
689
+ "unit": "px",
690
+ "label": "t:settings_schema.global.settings.thickness.label",
691
+ "default": 0
692
+ },
693
+ {
694
+ "type": "range",
695
+ "id": "collection_card_border_opacity",
696
+ "min": 0,
697
+ "max": 100,
698
+ "step": 5,
699
+ "unit": "%",
700
+ "label": "t:settings_schema.global.settings.opacity.label",
701
+ "default": 0
702
+ },
703
+ {
704
+ "type": "range",
705
+ "id": "collection_card_corner_radius",
706
+ "min": 0,
707
+ "max": 40,
708
+ "step": 2,
709
+ "unit": "px",
710
+ "label": "t:settings_schema.global.settings.corner_radius.label",
711
+ "default": 0
712
+ },
713
+ {
714
+ "type": "header",
715
+ "content": "t:settings_schema.global.settings.header__shadow.content"
716
+ },
717
+ {
718
+ "type": "range",
719
+ "id": "collection_card_shadow_opacity",
720
+ "min": 0,
721
+ "max": 100,
722
+ "step": 5,
723
+ "unit": "%",
724
+ "label": "t:settings_schema.global.settings.opacity.label",
725
+ "default": 10
726
+ },
727
+ {
728
+ "type": "range",
729
+ "id": "collection_card_shadow_horizontal_offset",
730
+ "min": -40,
731
+ "max": 40,
732
+ "step": 2,
733
+ "unit": "px",
734
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
735
+ "default": 0
736
+ },
737
+ {
738
+ "type": "range",
739
+ "id": "collection_card_shadow_vertical_offset",
740
+ "min": -40,
741
+ "max": 40,
742
+ "step": 2,
743
+ "unit": "px",
744
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
745
+ "default": 0
746
+ },
747
+ {
748
+ "type": "range",
749
+ "id": "collection_card_shadow_blur",
750
+ "min": 0,
751
+ "max": 40,
752
+ "step": 5,
753
+ "unit": "px",
754
+ "label": "t:settings_schema.global.settings.blur.label",
755
+ "default": 0
756
+ }
757
+ ]
758
+ },
759
+ {
760
+ "name": "t:settings_schema.blog_cards.name",
761
+ "settings": [
762
+ {
763
+ "type": "select",
764
+ "id": "blog_card_style",
765
+ "options": [
766
+ {
767
+ "value": "standard",
768
+ "label": "t:settings_schema.blog_cards.settings.style.options__1.label"
769
+ },
770
+ {
771
+ "value": "card",
772
+ "label": "t:settings_schema.blog_cards.settings.style.options__2.label"
773
+ }
774
+ ],
775
+ "default": "standard",
776
+ "label": "t:settings_schema.blog_cards.settings.style.label"
777
+ },
778
+ {
779
+ "type": "range",
780
+ "id": "blog_card_image_padding",
781
+ "min": 0,
782
+ "max": 20,
783
+ "step": 2,
784
+ "unit": "px",
785
+ "label": "t:settings_schema.global.settings.image_padding.label",
786
+ "default": 0
787
+ },
788
+ {
789
+ "type": "select",
790
+ "id": "blog_card_text_alignment",
791
+ "options": [
792
+ {
793
+ "value": "left",
794
+ "label": "t:settings_schema.global.settings.text_alignment.options__1.label"
795
+ },
796
+ {
797
+ "value": "center",
798
+ "label": "t:settings_schema.global.settings.text_alignment.options__2.label"
799
+ },
800
+ {
801
+ "value": "right",
802
+ "label": "t:settings_schema.global.settings.text_alignment.options__3.label"
803
+ }
804
+ ],
805
+ "default": "left",
806
+ "label": "t:settings_schema.global.settings.text_alignment.label"
807
+ },
808
+ {
809
+ "type": "color_scheme",
810
+ "id": "blog_card_color_scheme",
811
+ "label": "t:sections.all.colors.label",
812
+ "default": "scheme-2"
813
+ },
814
+ {
815
+ "type": "header",
816
+ "content": "t:settings_schema.global.settings.header__border.content"
817
+ },
818
+ {
819
+ "type": "range",
820
+ "id": "blog_card_border_thickness",
821
+ "min": 0,
822
+ "max": 24,
823
+ "step": 1,
824
+ "unit": "px",
825
+ "label": "t:settings_schema.global.settings.thickness.label",
826
+ "default": 0
827
+ },
828
+ {
829
+ "type": "range",
830
+ "id": "blog_card_border_opacity",
831
+ "min": 0,
832
+ "max": 100,
833
+ "step": 5,
834
+ "unit": "%",
835
+ "label": "t:settings_schema.global.settings.opacity.label",
836
+ "default": 0
837
+ },
838
+ {
839
+ "type": "range",
840
+ "id": "blog_card_corner_radius",
841
+ "min": 0,
842
+ "max": 40,
843
+ "step": 2,
844
+ "unit": "px",
845
+ "label": "t:settings_schema.global.settings.corner_radius.label",
846
+ "default": 0
847
+ },
848
+ {
849
+ "type": "header",
850
+ "content": "t:settings_schema.global.settings.header__shadow.content"
851
+ },
852
+ {
853
+ "type": "range",
854
+ "id": "blog_card_shadow_opacity",
855
+ "min": 0,
856
+ "max": 100,
857
+ "step": 5,
858
+ "unit": "%",
859
+ "label": "t:settings_schema.global.settings.opacity.label",
860
+ "default": 10
861
+ },
862
+ {
863
+ "type": "range",
864
+ "id": "blog_card_shadow_horizontal_offset",
865
+ "min": -40,
866
+ "max": 40,
867
+ "step": 2,
868
+ "unit": "px",
869
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
870
+ "default": 0
871
+ },
872
+ {
873
+ "type": "range",
874
+ "id": "blog_card_shadow_vertical_offset",
875
+ "min": -40,
876
+ "max": 40,
877
+ "step": 2,
878
+ "unit": "px",
879
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
880
+ "default": 0
881
+ },
882
+ {
883
+ "type": "range",
884
+ "id": "blog_card_shadow_blur",
885
+ "min": 0,
886
+ "max": 40,
887
+ "step": 5,
888
+ "unit": "px",
889
+ "label": "t:settings_schema.global.settings.blur.label",
890
+ "default": 0
891
+ }
892
+ ]
893
+ },
894
+ {
895
+ "name": "t:settings_schema.content_containers.name",
896
+ "settings": [
897
+ {
898
+ "type": "header",
899
+ "content": "t:settings_schema.global.settings.header__border.content"
900
+ },
901
+ {
902
+ "type": "range",
903
+ "id": "text_boxes_border_thickness",
904
+ "min": 0,
905
+ "max": 24,
906
+ "step": 1,
907
+ "unit": "px",
908
+ "label": "t:settings_schema.global.settings.thickness.label",
909
+ "default": 0
910
+ },
911
+ {
912
+ "type": "range",
913
+ "id": "text_boxes_border_opacity",
914
+ "min": 0,
915
+ "max": 100,
916
+ "step": 5,
917
+ "unit": "%",
918
+ "label": "t:settings_schema.global.settings.opacity.label",
919
+ "default": 0
920
+ },
921
+ {
922
+ "type": "range",
923
+ "id": "text_boxes_radius",
924
+ "min": 0,
925
+ "max": 40,
926
+ "step": 2,
927
+ "unit": "px",
928
+ "label": "t:settings_schema.global.settings.corner_radius.label",
929
+ "default": 0
930
+ },
931
+ {
932
+ "type": "header",
933
+ "content": "t:settings_schema.global.settings.header__shadow.content"
934
+ },
935
+ {
936
+ "type": "range",
937
+ "id": "text_boxes_shadow_opacity",
938
+ "min": 0,
939
+ "max": 100,
940
+ "step": 5,
941
+ "unit": "%",
942
+ "label": "t:settings_schema.global.settings.opacity.label",
943
+ "default": 0
944
+ },
945
+ {
946
+ "type": "range",
947
+ "id": "text_boxes_shadow_horizontal_offset",
948
+ "min": -40,
949
+ "max": 40,
950
+ "step": 2,
951
+ "unit": "px",
952
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
953
+ "default": 0
954
+ },
955
+ {
956
+ "type": "range",
957
+ "id": "text_boxes_shadow_vertical_offset",
958
+ "min": -40,
959
+ "max": 40,
960
+ "step": 2,
961
+ "unit": "px",
962
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
963
+ "default": 0
964
+ },
965
+ {
966
+ "type": "range",
967
+ "id": "text_boxes_shadow_blur",
968
+ "min": 0,
969
+ "max": 40,
970
+ "step": 5,
971
+ "unit": "px",
972
+ "label": "t:settings_schema.global.settings.blur.label",
973
+ "default": 0
974
+ }
975
+ ]
976
+ },
977
+ {
978
+ "name": "t:settings_schema.media.name",
979
+ "settings": [
980
+ {
981
+ "type": "header",
982
+ "content": "t:settings_schema.global.settings.header__border.content"
983
+ },
984
+ {
985
+ "type": "range",
986
+ "id": "media_border_thickness",
987
+ "min": 0,
988
+ "max": 24,
989
+ "step": 1,
990
+ "unit": "px",
991
+ "label": "t:settings_schema.global.settings.thickness.label",
992
+ "default": 1
993
+ },
994
+ {
995
+ "type": "range",
996
+ "id": "media_border_opacity",
997
+ "min": 0,
998
+ "max": 100,
999
+ "step": 5,
1000
+ "unit": "%",
1001
+ "label": "t:settings_schema.global.settings.opacity.label",
1002
+ "default": 5
1003
+ },
1004
+ {
1005
+ "type": "range",
1006
+ "id": "media_radius",
1007
+ "min": 0,
1008
+ "max": 40,
1009
+ "step": 2,
1010
+ "unit": "px",
1011
+ "label": "t:settings_schema.global.settings.corner_radius.label",
1012
+ "default": 0
1013
+ },
1014
+ {
1015
+ "type": "header",
1016
+ "content": "t:settings_schema.global.settings.header__shadow.content"
1017
+ },
1018
+ {
1019
+ "type": "range",
1020
+ "id": "media_shadow_opacity",
1021
+ "min": 0,
1022
+ "max": 100,
1023
+ "step": 5,
1024
+ "unit": "%",
1025
+ "label": "t:settings_schema.global.settings.opacity.label",
1026
+ "default": 0
1027
+ },
1028
+ {
1029
+ "type": "range",
1030
+ "id": "media_shadow_horizontal_offset",
1031
+ "min": -40,
1032
+ "max": 40,
1033
+ "step": 2,
1034
+ "unit": "px",
1035
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
1036
+ "default": 0
1037
+ },
1038
+ {
1039
+ "type": "range",
1040
+ "id": "media_shadow_vertical_offset",
1041
+ "min": -40,
1042
+ "max": 40,
1043
+ "step": 2,
1044
+ "unit": "px",
1045
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
1046
+ "default": 0
1047
+ },
1048
+ {
1049
+ "type": "range",
1050
+ "id": "media_shadow_blur",
1051
+ "min": 0,
1052
+ "max": 40,
1053
+ "step": 5,
1054
+ "unit": "px",
1055
+ "label": "t:settings_schema.global.settings.blur.label",
1056
+ "default": 0
1057
+ }
1058
+ ]
1059
+ },
1060
+ {
1061
+ "name": "t:settings_schema.popups.name",
1062
+ "settings": [
1063
+ {
1064
+ "type": "paragraph",
1065
+ "content": "t:settings_schema.popups.paragraph"
1066
+ },
1067
+ {
1068
+ "type": "header",
1069
+ "content": "t:settings_schema.global.settings.header__border.content"
1070
+ },
1071
+ {
1072
+ "type": "range",
1073
+ "id": "popup_border_thickness",
1074
+ "min": 0,
1075
+ "max": 24,
1076
+ "step": 1,
1077
+ "unit": "px",
1078
+ "label": "t:settings_schema.global.settings.thickness.label",
1079
+ "default": 1
1080
+ },
1081
+ {
1082
+ "type": "range",
1083
+ "id": "popup_border_opacity",
1084
+ "min": 0,
1085
+ "max": 100,
1086
+ "step": 5,
1087
+ "unit": "%",
1088
+ "label": "t:settings_schema.global.settings.opacity.label",
1089
+ "default": 10
1090
+ },
1091
+ {
1092
+ "type": "range",
1093
+ "id": "popup_corner_radius",
1094
+ "min": 0,
1095
+ "max": 40,
1096
+ "step": 2,
1097
+ "unit": "px",
1098
+ "label": "t:settings_schema.global.settings.corner_radius.label",
1099
+ "default": 0
1100
+ },
1101
+ {
1102
+ "type": "header",
1103
+ "content": "t:settings_schema.global.settings.header__shadow.content"
1104
+ },
1105
+ {
1106
+ "type": "range",
1107
+ "id": "popup_shadow_opacity",
1108
+ "min": 0,
1109
+ "max": 100,
1110
+ "step": 5,
1111
+ "unit": "%",
1112
+ "label": "t:settings_schema.global.settings.opacity.label",
1113
+ "default": 0
1114
+ },
1115
+ {
1116
+ "type": "range",
1117
+ "id": "popup_shadow_horizontal_offset",
1118
+ "min": -40,
1119
+ "max": 40,
1120
+ "step": 2,
1121
+ "unit": "px",
1122
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
1123
+ "default": 0
1124
+ },
1125
+ {
1126
+ "type": "range",
1127
+ "id": "popup_shadow_vertical_offset",
1128
+ "min": -40,
1129
+ "max": 40,
1130
+ "step": 2,
1131
+ "unit": "px",
1132
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
1133
+ "default": 0
1134
+ },
1135
+ {
1136
+ "type": "range",
1137
+ "id": "popup_shadow_blur",
1138
+ "min": 0,
1139
+ "max": 40,
1140
+ "step": 5,
1141
+ "unit": "px",
1142
+ "label": "t:settings_schema.global.settings.blur.label",
1143
+ "default": 0
1144
+ }
1145
+ ]
1146
+ },
1147
+ {
1148
+ "name": "t:settings_schema.drawers.name",
1149
+ "settings": [
1150
+ {
1151
+ "type": "header",
1152
+ "content": "t:settings_schema.global.settings.header__border.content"
1153
+ },
1154
+ {
1155
+ "type": "range",
1156
+ "id": "drawer_border_thickness",
1157
+ "min": 0,
1158
+ "max": 24,
1159
+ "step": 1,
1160
+ "unit": "px",
1161
+ "label": "t:settings_schema.global.settings.thickness.label",
1162
+ "default": 1
1163
+ },
1164
+ {
1165
+ "type": "range",
1166
+ "id": "drawer_border_opacity",
1167
+ "min": 0,
1168
+ "max": 100,
1169
+ "step": 5,
1170
+ "unit": "%",
1171
+ "label": "t:settings_schema.global.settings.opacity.label",
1172
+ "default": 10
1173
+ },
1174
+ {
1175
+ "type": "header",
1176
+ "content": "t:settings_schema.global.settings.header__shadow.content"
1177
+ },
1178
+ {
1179
+ "type": "range",
1180
+ "id": "drawer_shadow_opacity",
1181
+ "min": 0,
1182
+ "max": 100,
1183
+ "step": 5,
1184
+ "unit": "%",
1185
+ "label": "t:settings_schema.global.settings.opacity.label",
1186
+ "default": 0
1187
+ },
1188
+ {
1189
+ "type": "range",
1190
+ "id": "drawer_shadow_horizontal_offset",
1191
+ "min": -40,
1192
+ "max": 40,
1193
+ "step": 2,
1194
+ "unit": "px",
1195
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
1196
+ "default": 0
1197
+ },
1198
+ {
1199
+ "type": "range",
1200
+ "id": "drawer_shadow_vertical_offset",
1201
+ "min": -40,
1202
+ "max": 40,
1203
+ "step": 2,
1204
+ "unit": "px",
1205
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
1206
+ "default": 0
1207
+ },
1208
+ {
1209
+ "type": "range",
1210
+ "id": "drawer_shadow_blur",
1211
+ "min": 0,
1212
+ "max": 40,
1213
+ "step": 5,
1214
+ "unit": "px",
1215
+ "label": "t:settings_schema.global.settings.blur.label",
1216
+ "default": 0
1217
+ }
1218
+ ]
1219
+ },
1220
+ {
1221
+ "name": "t:settings_schema.badges.name",
1222
+ "settings": [
1223
+ {
1224
+ "type": "select",
1225
+ "id": "badge_position",
1226
+ "options": [
1227
+ {
1228
+ "value": "bottom left",
1229
+ "label": "t:settings_schema.badges.settings.position.options__1.label"
1230
+ },
1231
+ {
1232
+ "value": "bottom right",
1233
+ "label": "t:settings_schema.badges.settings.position.options__2.label"
1234
+ },
1235
+ {
1236
+ "value": "top left",
1237
+ "label": "t:settings_schema.badges.settings.position.options__3.label"
1238
+ },
1239
+ {
1240
+ "value": "top right",
1241
+ "label": "t:settings_schema.badges.settings.position.options__4.label"
1242
+ }
1243
+ ],
1244
+ "default": "bottom left",
1245
+ "label": "t:settings_schema.badges.settings.position.label"
1246
+ },
1247
+ {
1248
+ "type": "range",
1249
+ "id": "badge_corner_radius",
1250
+ "min": 0,
1251
+ "max": 40,
1252
+ "step": 2,
1253
+ "unit": "px",
1254
+ "label": "t:settings_schema.global.settings.corner_radius.label",
1255
+ "default": 40
1256
+ },
1257
+ {
1258
+ "type": "color_scheme",
1259
+ "id": "sale_badge_color_scheme",
1260
+ "label": "t:settings_schema.badges.settings.sale_badge_color_scheme.label",
1261
+ "default": "scheme-5"
1262
+ },
1263
+ {
1264
+ "type": "color_scheme",
1265
+ "id": "sold_out_badge_color_scheme",
1266
+ "label": "t:settings_schema.badges.settings.sold_out_badge_color_scheme.label",
1267
+ "default": "scheme-3"
1268
+ }
1269
+ ]
1270
+ },
1271
+ {
1272
+ "name": "t:settings_schema.brand_information.name",
1273
+ "settings": [
1274
+ {
1275
+ "type": "paragraph",
1276
+ "content": "t:settings_schema.brand_information.settings.paragraph.content"
1277
+ },
1278
+ {
1279
+ "type": "inline_richtext",
1280
+ "id": "brand_headline",
1281
+ "label": "t:settings_schema.brand_information.settings.brand_headline.label"
1282
+ },
1283
+ {
1284
+ "type": "richtext",
1285
+ "id": "brand_description",
1286
+ "label": "t:settings_schema.brand_information.settings.brand_description.label"
1287
+ },
1288
+ {
1289
+ "type": "image_picker",
1290
+ "id": "brand_image",
1291
+ "label": "t:settings_schema.brand_information.settings.brand_image.label"
1292
+ },
1293
+ {
1294
+ "type": "range",
1295
+ "id": "brand_image_width",
1296
+ "min": 50,
1297
+ "max": 550,
1298
+ "step": 5,
1299
+ "default": 100,
1300
+ "unit": "px",
1301
+ "label": "t:settings_schema.brand_information.settings.brand_image_width.label"
1302
+ }
1303
+ ]
1304
+ },
1305
+ {
1306
+ "name": "t:settings_schema.social-media.name",
1307
+ "settings": [
1308
+ {
1309
+ "type": "header",
1310
+ "content": "t:settings_schema.social-media.settings.header.content"
1311
+ },
1312
+ {
1313
+ "type": "text",
1314
+ "id": "social_facebook_link",
1315
+ "label": "t:settings_schema.social-media.settings.social_facebook_link.label",
1316
+ "placeholder": "t:settings_schema.social-media.settings.social_facebook_link.info"
1317
+ },
1318
+ {
1319
+ "type": "text",
1320
+ "id": "social_instagram_link",
1321
+ "label": "t:settings_schema.social-media.settings.social_instagram_link.label",
1322
+ "placeholder": "t:settings_schema.social-media.settings.social_instagram_link.info"
1323
+ },
1324
+ {
1325
+ "type": "text",
1326
+ "id": "social_youtube_link",
1327
+ "label": "t:settings_schema.social-media.settings.social_youtube_link.label",
1328
+ "placeholder": "t:settings_schema.social-media.settings.social_youtube_link.info"
1329
+ },
1330
+ {
1331
+ "type": "text",
1332
+ "id": "social_tiktok_link",
1333
+ "label": "t:settings_schema.social-media.settings.social_tiktok_link.label",
1334
+ "placeholder": "t:settings_schema.social-media.settings.social_tiktok_link.info"
1335
+ },
1336
+ {
1337
+ "type": "text",
1338
+ "id": "social_twitter_link",
1339
+ "label": "t:settings_schema.social-media.settings.social_twitter_link.label",
1340
+ "placeholder": "t:settings_schema.social-media.settings.social_twitter_link.info"
1341
+ },
1342
+ {
1343
+ "type": "text",
1344
+ "id": "social_snapchat_link",
1345
+ "label": "t:settings_schema.social-media.settings.social_snapchat_link.label",
1346
+ "placeholder": "t:settings_schema.social-media.settings.social_snapchat_link.info"
1347
+ },
1348
+ {
1349
+ "type": "text",
1350
+ "id": "social_pinterest_link",
1351
+ "label": "t:settings_schema.social-media.settings.social_pinterest_link.label",
1352
+ "placeholder": "t:settings_schema.social-media.settings.social_pinterest_link.info"
1353
+ },
1354
+ {
1355
+ "type": "text",
1356
+ "id": "social_tumblr_link",
1357
+ "label": "t:settings_schema.social-media.settings.social_tumblr_link.label",
1358
+ "placeholder": "t:settings_schema.social-media.settings.social_tumblr_link.info"
1359
+ },
1360
+ {
1361
+ "type": "text",
1362
+ "id": "social_vimeo_link",
1363
+ "label": "t:settings_schema.social-media.settings.social_vimeo_link.label",
1364
+ "placeholder": "t:settings_schema.social-media.settings.social_vimeo_link.info"
1365
+ }
1366
+ ]
1367
+ },
1368
+ {
1369
+ "name": "t:settings_schema.search_input.name",
1370
+ "settings": [
1371
+ {
1372
+ "type": "header",
1373
+ "content": "t:settings_schema.search_input.settings.header.content"
1374
+ },
1375
+ {
1376
+ "type": "checkbox",
1377
+ "id": "predictive_search_enabled",
1378
+ "default": true,
1379
+ "label": "t:settings_schema.search_input.settings.predictive_search_enabled.label"
1380
+ },
1381
+ {
1382
+ "type": "checkbox",
1383
+ "id": "predictive_search_show_vendor",
1384
+ "default": false,
1385
+ "label": "t:settings_schema.search_input.settings.predictive_search_show_vendor.label",
1386
+ "info": "t:settings_schema.search_input.settings.predictive_search_show_vendor.info"
1387
+ },
1388
+ {
1389
+ "type": "checkbox",
1390
+ "id": "predictive_search_show_price",
1391
+ "default": false,
1392
+ "label": "t:settings_schema.search_input.settings.predictive_search_show_price.label",
1393
+ "info": "t:settings_schema.search_input.settings.predictive_search_show_price.info"
1394
+ }
1395
+ ]
1396
+ },
1397
+ {
1398
+ "name": "t:settings_schema.currency_format.name",
1399
+ "settings": [
1400
+ {
1401
+ "type": "header",
1402
+ "content": "t:settings_schema.currency_format.settings.content"
1403
+ },
1404
+ {
1405
+ "type": "paragraph",
1406
+ "content": "t:settings_schema.currency_format.settings.paragraph"
1407
+ },
1408
+ {
1409
+ "type": "checkbox",
1410
+ "id": "currency_code_enabled",
1411
+ "label": "t:settings_schema.currency_format.settings.currency_code_enabled.label",
1412
+ "default": true
1413
+ }
1414
+ ]
1415
+ },
1416
+ {
1417
+ "name": "t:settings_schema.cart.name",
1418
+ "settings": [
1419
+ {
1420
+ "type": "select",
1421
+ "id": "cart_type",
1422
+ "options": [
1423
+ {
1424
+ "value": "drawer",
1425
+ "label": "t:settings_schema.cart.settings.cart_type.drawer.label"
1426
+ },
1427
+ {
1428
+ "value": "page",
1429
+ "label": "t:settings_schema.cart.settings.cart_type.page.label"
1430
+ },
1431
+ {
1432
+ "value": "notification",
1433
+ "label": "t:settings_schema.cart.settings.cart_type.notification.label"
1434
+ }
1435
+ ],
1436
+ "default": "notification",
1437
+ "label": "t:settings_schema.cart.settings.cart_type.label"
1438
+ },
1439
+ {
1440
+ "type": "checkbox",
1441
+ "id": "show_vendor",
1442
+ "label": "t:settings_schema.cart.settings.show_vendor.label",
1443
+ "default": false
1444
+ },
1445
+ {
1446
+ "type": "checkbox",
1447
+ "id": "show_cart_note",
1448
+ "label": "t:settings_schema.cart.settings.show_cart_note.label",
1449
+ "default": false
1450
+ },
1451
+ {
1452
+ "type": "header",
1453
+ "content": "t:settings_schema.cart.settings.cart_drawer.header"
1454
+ },
1455
+ {
1456
+ "type": "collection",
1457
+ "id": "cart_drawer_collection",
1458
+ "label": "t:settings_schema.cart.settings.cart_drawer.collection.label",
1459
+ "info": "t:settings_schema.cart.settings.cart_drawer.collection.info"
1460
+ },
1461
+ {
1462
+ "type": "color_scheme",
1463
+ "id": "cart_color_scheme",
1464
+ "label": "t:sections.all.colors.label",
1465
+ "default": "scheme-1"
1466
+ }
1467
+ ]
1468
+ }
1469
+ ]