@total_onion/onion-library 1.0.113 → 1.0.115

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.
@@ -231,7 +231,7 @@
231
231
  },
232
232
  "wpml_cf_preferences": 3,
233
233
  "clone": [
234
- "field_64f700a0ede46"
234
+ "group_68822860bda9f"
235
235
  ],
236
236
  "display": "seamless",
237
237
  "layout": "block",
@@ -348,10 +348,10 @@
348
348
  },
349
349
  "wpml_cf_preferences": 3,
350
350
  "clone": [
351
- "group_6504a81a0623c"
351
+ "group_68822860bda9f"
352
352
  ],
353
353
  "display": "seamless",
354
- "layout": "",
354
+ "layout": "block",
355
355
  "prefix_label": 0,
356
356
  "prefix_name": 0,
357
357
  "acfe_seamless_style": 0,
@@ -465,7 +465,7 @@
465
465
  },
466
466
  "wpml_cf_preferences": 3,
467
467
  "clone": [
468
- "group_6504a81a0623c"
468
+ "group_68822860bda9f"
469
469
  ],
470
470
  "display": "seamless",
471
471
  "layout": "block",
@@ -582,7 +582,7 @@
582
582
  },
583
583
  "wpml_cf_preferences": 3,
584
584
  "clone": [
585
- "group_6504a81a0623c"
585
+ "group_68822860bda9f"
586
586
  ],
587
587
  "display": "seamless",
588
588
  "layout": "block",
@@ -677,7 +677,7 @@
677
677
  "class": "",
678
678
  "id": ""
679
679
  },
680
- "wpml_cf_preferences": 0,
680
+ "wpml_cf_preferences": 3,
681
681
  "placement": "top",
682
682
  "endpoint": 0,
683
683
  "no_preference": 0,
@@ -699,7 +699,7 @@
699
699
  },
700
700
  "wpml_cf_preferences": 3,
701
701
  "clone": [
702
- "group_6504a81a0623c"
702
+ "group_68822860bda9f"
703
703
  ],
704
704
  "display": "seamless",
705
705
  "layout": "block",
@@ -725,7 +725,7 @@
725
725
  "class": "",
726
726
  "id": ""
727
727
  },
728
- "wpml_cf_preferences": 0,
728
+ "wpml_cf_preferences": 3,
729
729
  "placement": "top",
730
730
  "endpoint": 0,
731
731
  "no_preference": 0,
@@ -934,7 +934,7 @@
934
934
  "class": "",
935
935
  "id": ""
936
936
  },
937
- "wpml_cf_preferences": 0,
937
+ "wpml_cf_preferences": 3,
938
938
  "placement": "top",
939
939
  "endpoint": 0,
940
940
  "no_preference": 0,
@@ -998,7 +998,7 @@
998
998
  },
999
999
  "wpml_cf_preferences": 3,
1000
1000
  "clone": [
1001
- "group_6504a81a0623c"
1001
+ "group_68822860bda9f"
1002
1002
  ],
1003
1003
  "display": "seamless",
1004
1004
  "layout": "block",
@@ -1869,5 +1869,5 @@
1869
1869
  "acfe_display_title": "",
1870
1870
  "acfe_meta": "",
1871
1871
  "acfe_note": "",
1872
- "modified": 1753357107
1872
+ "modified": 1754307212
1873
1873
  }
@@ -8,6 +8,7 @@
8
8
  var(--block-min-height-mobile),
9
9
  'mobile'
10
10
  );
11
+ height: var(--block-height-mobile, auto);
11
12
  overflow: var(--block-overflow, hidden);
12
13
  border-radius: var(--block-border-radius);
13
14
  place-items: center;
@@ -25,6 +26,7 @@
25
26
  }
26
27
 
27
28
  @include core-mixins.device(breakpoints.$tabPortrait) {
29
+ height: var(--block-height-portrait, auto);
28
30
  aspect-ratio: var(--block-aspect-ratio-portrait);
29
31
  min-height: core-functions.fluidSize(
30
32
  var(--block-min-height-portrait),
@@ -32,6 +34,7 @@
32
34
  );
33
35
  }
34
36
  @include core-mixins.device(breakpoints.$tabLandscape) {
37
+ height: var(--block-height-desktop, auto);
35
38
  aspect-ratio: var(--block-aspect-ratio);
36
39
  min-height: core-functions.fluidSize(
37
40
  var(--block-min-height-desktop),
@@ -12,6 +12,9 @@
12
12
  {% set blockMinHeightMobile = '--block-min-height-mobile: ' ~ fields.block_min_height.mobile_min_height|default(0) ~ ';' %}
13
13
  {% set blockMinHeightPortrait = '--block-min-height-portrait: ' ~ fields.block_min_height.portrait_min_height|default(0) ~ ';' %}
14
14
  {% set blockMinHeightDesktop = '--block-min-height-desktop: ' ~ fields.block_min_height.desktop_min_height|default(0) ~ ';' %}
15
+ {% set blockHeightMobile = '--block-height-mobile: ' ~ fields.block_height.mobile_height|ru|default('auto') ~ ';' %}
16
+ {% set blockHeightPortrait = '--block-height-portrait: ' ~ fields.block_height.portrait_height|ru ~ ';' %}
17
+ {% set blockHeightDesktop = '--block-height-desktop: ' ~ fields.block_height.desktop_height|ru ~ ';' %}
15
18
  {% set blockPositionType = '--block-position-type:' ~ fields.block_position_type|ru|default('relative') ~ ';' %}
16
19
  {% set blockPositionTypeTabletPortrait = '--block-position-type-tablet-portrait:' ~ fields.block_position_type_tablet_portrait|ru|default('relative') ~ ';' %}
17
20
  {% set blockPositionTypeMobile = '--block-position-type-mobile:' ~ fields.block_position_type_mobile|ru|default('relative') ~ ';' %}
@@ -25,7 +28,7 @@
25
28
  {% set blockPositionBottom = '--block-position-bottom: ' ~ fields.block_inset_value ~ ';' %}
26
29
  {% set blockPositionLeft = '--block-position-left: ' ~ fields.block_inset_value ~ ';' %}
27
30
  {% endif %}
28
- {% set blockSettingsString = blockBorderRadius ~ blockAspectRatio ~ blockAspectRatioPortrait ~ blockAspectRatioMobile ~ blockZIndex ~ blockOverflow ~ blockBgColour ~ blockPointerEvents ~ blockPosition ~ blockInset ~ blockPositionTop ~ blockPositionRight ~ blockPositionBottom ~ blockPositionLeft ~ blockPositionType ~ blockPositionTypeTabletPortrait ~ blockPositionTypeMobile ~ blockMinHeightMobile ~ blockMinHeightPortrait ~ blockMinHeightDesktop %}
31
+ {% set blockSettingsString = blockBorderRadius ~ blockAspectRatio ~ blockAspectRatioPortrait ~ blockAspectRatioMobile ~ blockZIndex ~ blockOverflow ~ blockBgColour ~ blockPointerEvents ~ blockPosition ~ blockInset ~ blockPositionTop ~ blockPositionRight ~ blockPositionBottom ~ blockPositionLeft ~ blockPositionType ~ blockPositionTypeTabletPortrait ~ blockPositionTypeMobile ~ blockMinHeightMobile ~ blockMinHeightPortrait ~ blockMinHeightDesktop ~ blockHeightMobile ~ blockHeightPortrait ~ blockHeightDesktop %}
29
32
 
30
33
 
31
34
  {{blockSettingsString}}
@@ -219,6 +219,138 @@
219
219
  }
220
220
  ]
221
221
  },
222
+ {
223
+ "key": "field_6890929777da9",
224
+ "label": "Block height",
225
+ "name": "block_height",
226
+ "aria-label": "",
227
+ "type": "group",
228
+ "instructions": "",
229
+ "required": 0,
230
+ "conditional_logic": 0,
231
+ "wrapper": {
232
+ "width": "",
233
+ "class": "hidden",
234
+ "id": ""
235
+ },
236
+ "wpml_cf_preferences": 3,
237
+ "layout": "block",
238
+ "acfe_seamless_style": 0,
239
+ "acfe_group_modal": 0,
240
+ "sub_fields": [
241
+ {
242
+ "key": "field_6890929777daa",
243
+ "label": "Desktop height",
244
+ "name": "desktop_height",
245
+ "aria-label": "",
246
+ "type": "select",
247
+ "instructions": "",
248
+ "required": 0,
249
+ "conditional_logic": 0,
250
+ "wrapper": {
251
+ "width": "33",
252
+ "class": "",
253
+ "id": ""
254
+ },
255
+ "wpml_cf_preferences": 3,
256
+ "choices": {
257
+ "__max-content": "max-content",
258
+ "__min-content": "min-content",
259
+ "__fit-content": "fit-content",
260
+ "__auto": "auto",
261
+ "__unset": "unset"
262
+ },
263
+ "default_value": "__auto",
264
+ "return_format": "value",
265
+ "multiple": 0,
266
+ "max": "",
267
+ "prepend": "",
268
+ "append": "",
269
+ "allow_null": 0,
270
+ "ui": 0,
271
+ "ajax": 0,
272
+ "placeholder": "",
273
+ "allow_custom": 0,
274
+ "search_placeholder": "",
275
+ "min": ""
276
+ },
277
+ {
278
+ "key": "field_6890944cb2579",
279
+ "label": "Portrait height",
280
+ "name": "portrait_height",
281
+ "aria-label": "",
282
+ "type": "select",
283
+ "instructions": "",
284
+ "required": 0,
285
+ "conditional_logic": 0,
286
+ "wrapper": {
287
+ "width": "33",
288
+ "class": "",
289
+ "id": ""
290
+ },
291
+ "wpml_cf_preferences": 3,
292
+ "choices": {
293
+ "__max-content": "max-content",
294
+ "__min-content": "min-content",
295
+ "__fit-content": "fit-content",
296
+ "__auto": "auto",
297
+ "__unset": "unset"
298
+ },
299
+ "default_value": "__auto",
300
+ "return_format": "value",
301
+ "multiple": 0,
302
+ "max": "",
303
+ "prepend": "",
304
+ "append": "",
305
+ "allow_null": 0,
306
+ "ui": 0,
307
+ "ajax": 0,
308
+ "placeholder": "",
309
+ "allow_custom": 0,
310
+ "search_placeholder": "",
311
+ "min": ""
312
+ },
313
+ {
314
+ "key": "field_68909454b257a",
315
+ "label": "Mobile height",
316
+ "name": "mobile_height",
317
+ "aria-label": "",
318
+ "type": "select",
319
+ "instructions": "",
320
+ "required": 0,
321
+ "conditional_logic": 0,
322
+ "wrapper": {
323
+ "width": "33",
324
+ "class": "",
325
+ "id": ""
326
+ },
327
+ "wpml_cf_preferences": 3,
328
+ "choices": {
329
+ "__max-content": "max-content",
330
+ "__min-content": "min-content",
331
+ "__fit-content": "fit-content",
332
+ "__auto": "auto",
333
+ "__unset": "unset"
334
+ },
335
+ "default_value": "__auto",
336
+ "return_format": "value",
337
+ "multiple": 0,
338
+ "max": "",
339
+ "prepend": "",
340
+ "append": "",
341
+ "allow_null": 0,
342
+ "ui": 0,
343
+ "ajax": 0,
344
+ "placeholder": "",
345
+ "allow_custom": 0,
346
+ "search_placeholder": "",
347
+ "min": ""
348
+ }
349
+ ],
350
+ "acfe_group_modal_close": 0,
351
+ "acfe_group_modal_button": "",
352
+ "acfe_group_modal_size": "large"
353
+ },
222
354
  {
223
355
  "key": "field_64f1fb9b2d3df",
224
356
  "label": "Block aspect ratio desktop",
@@ -432,7 +564,6 @@
432
564
  "__relative": "Relative",
433
565
  "__absolute": "Absolute",
434
566
  "__sticky": "Sticky",
435
- "__fixed": "Fixed",
436
567
  "__static": "Static"
437
568
  },
438
569
  "default_value": "__relative",
@@ -475,6 +606,9 @@
475
606
  "layout": "block",
476
607
  "acfe_seamless_style": 0,
477
608
  "acfe_group_modal": 0,
609
+ "acfe_group_modal_close": 0,
610
+ "acfe_group_modal_button": "",
611
+ "acfe_group_modal_size": "large",
478
612
  "sub_fields": [
479
613
  {
480
614
  "key": "field_6836b81fed41b",
@@ -560,10 +694,7 @@
560
694
  "prepend": "",
561
695
  "append": ""
562
696
  }
563
- ],
564
- "acfe_group_modal_close": 0,
565
- "acfe_group_modal_button": "",
566
- "acfe_group_modal_size": "large"
697
+ ]
567
698
  },
568
699
  {
569
700
  "key": "field_65d28f09ca104",
@@ -696,5 +827,5 @@
696
827
  "acfe_display_title": "",
697
828
  "acfe_meta": "",
698
829
  "acfe_note": "",
699
- "modified": 1749284669
830
+ "modified": 1754305763
700
831
  }
@@ -0,0 +1,501 @@
1
+ {
2
+ "key": "group_64c29a6750b1c",
3
+ "title": "Fields: Product Info - Library",
4
+ "fields": [
5
+ {
6
+ "key": "field_64c29a675f572",
7
+ "label": "Product logo",
8
+ "name": "product_logo",
9
+ "aria-label": "",
10
+ "type": "image",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "wpml_cf_preferences": 3,
20
+ "user_roles": [
21
+ "all"
22
+ ],
23
+ "return_format": "id",
24
+ "library": "all",
25
+ "min_width": "",
26
+ "min_height": "",
27
+ "min_size": "",
28
+ "max_width": "",
29
+ "max_height": "",
30
+ "max_size": "",
31
+ "mime_types": "",
32
+ "preview_size": "medium",
33
+ "uploader": "",
34
+ "acfe_thumbnail": 0,
35
+ "upload_folder": ""
36
+ },
37
+ {
38
+ "key": "field_65958c5954c49",
39
+ "label": "Product Name",
40
+ "name": "product_name",
41
+ "aria-label": "",
42
+ "type": "text",
43
+ "instructions": "",
44
+ "required": 0,
45
+ "conditional_logic": 0,
46
+ "wrapper": {
47
+ "width": "",
48
+ "class": "",
49
+ "id": ""
50
+ },
51
+ "wpml_cf_preferences": 2,
52
+ "user_roles": [
53
+ "all"
54
+ ],
55
+ "default_value": "",
56
+ "maxlength": "",
57
+ "placeholder": "",
58
+ "prepend": "",
59
+ "append": ""
60
+ },
61
+ {
62
+ "key": "field_64c29a675f5ba",
63
+ "label": "Country",
64
+ "name": "product_country",
65
+ "aria-label": "",
66
+ "type": "text",
67
+ "instructions": "",
68
+ "required": 0,
69
+ "conditional_logic": 0,
70
+ "wrapper": {
71
+ "width": "",
72
+ "class": "",
73
+ "id": ""
74
+ },
75
+ "wpml_cf_preferences": 2,
76
+ "user_roles": [
77
+ "all"
78
+ ],
79
+ "default_value": "",
80
+ "maxlength": "",
81
+ "placeholder": "",
82
+ "prepend": "",
83
+ "append": ""
84
+ },
85
+ {
86
+ "key": "field_64c29a675f602",
87
+ "label": "Bazaarvoice ID",
88
+ "name": "product_bazaarvoice",
89
+ "aria-label": "",
90
+ "type": "text",
91
+ "instructions": "",
92
+ "required": 0,
93
+ "conditional_logic": 0,
94
+ "wrapper": {
95
+ "width": "",
96
+ "class": "",
97
+ "id": ""
98
+ },
99
+ "wpml_cf_preferences": 2,
100
+ "user_roles": [
101
+ "all"
102
+ ],
103
+ "default_value": "",
104
+ "maxlength": "",
105
+ "placeholder": "",
106
+ "prepend": "",
107
+ "append": ""
108
+ },
109
+ {
110
+ "key": "field_64c3db7fde285",
111
+ "label": "Shopify PIM ID",
112
+ "name": "shopify_pim_id",
113
+ "aria-label": "",
114
+ "type": "text",
115
+ "instructions": "",
116
+ "required": 0,
117
+ "conditional_logic": 0,
118
+ "wrapper": {
119
+ "width": "",
120
+ "class": "",
121
+ "id": ""
122
+ },
123
+ "wpml_cf_preferences": 2,
124
+ "default_value": "",
125
+ "maxlength": "",
126
+ "placeholder": "",
127
+ "prepend": "",
128
+ "append": ""
129
+ },
130
+ {
131
+ "key": "field_672227480fb15",
132
+ "label": "Shopify Engraved PIM ID",
133
+ "name": "shopify_engraved_pim_id",
134
+ "aria-label": "",
135
+ "type": "text",
136
+ "instructions": "",
137
+ "required": 0,
138
+ "conditional_logic": 0,
139
+ "wrapper": {
140
+ "width": "",
141
+ "class": "",
142
+ "id": ""
143
+ },
144
+ "wpml_cf_preferences": 2,
145
+ "default_value": "",
146
+ "maxlength": "",
147
+ "placeholder": "",
148
+ "prepend": "",
149
+ "append": ""
150
+ },
151
+ {
152
+ "key": "field_64c29a675f64a",
153
+ "label": "Age statement",
154
+ "name": "product_age_statement",
155
+ "aria-label": "",
156
+ "type": "text",
157
+ "instructions": "",
158
+ "required": 0,
159
+ "conditional_logic": 0,
160
+ "wrapper": {
161
+ "width": "",
162
+ "class": "",
163
+ "id": ""
164
+ },
165
+ "wpml_cf_preferences": 2,
166
+ "user_roles": [
167
+ "all"
168
+ ],
169
+ "default_value": "",
170
+ "maxlength": "",
171
+ "placeholder": "",
172
+ "prepend": "",
173
+ "append": ""
174
+ },
175
+ {
176
+ "key": "field_6740b0399a35e",
177
+ "label": "Price",
178
+ "name": "product_price",
179
+ "aria-label": "",
180
+ "type": "text",
181
+ "instructions": "",
182
+ "required": 0,
183
+ "conditional_logic": 0,
184
+ "wrapper": {
185
+ "width": "",
186
+ "class": "",
187
+ "id": ""
188
+ },
189
+ "wpml_cf_preferences": 2,
190
+ "default_value": "",
191
+ "maxlength": "",
192
+ "placeholder": "",
193
+ "prepend": "",
194
+ "append": ""
195
+ },
196
+ {
197
+ "key": "field_64c29a675f692",
198
+ "label": "ABV",
199
+ "name": "product_abv",
200
+ "aria-label": "",
201
+ "type": "text",
202
+ "instructions": "",
203
+ "required": 0,
204
+ "conditional_logic": 0,
205
+ "wrapper": {
206
+ "width": "",
207
+ "class": "",
208
+ "id": ""
209
+ },
210
+ "wpml_cf_preferences": 2,
211
+ "user_roles": [
212
+ "all"
213
+ ],
214
+ "default_value": "",
215
+ "maxlength": "",
216
+ "placeholder": "",
217
+ "prepend": "",
218
+ "append": ""
219
+ },
220
+ {
221
+ "key": "field_64c29a675f6d9",
222
+ "label": "Whisky type",
223
+ "name": "product_whisky_type",
224
+ "aria-label": "",
225
+ "type": "text",
226
+ "instructions": "",
227
+ "required": 0,
228
+ "conditional_logic": 0,
229
+ "wrapper": {
230
+ "width": "",
231
+ "class": "",
232
+ "id": ""
233
+ },
234
+ "wpml_cf_preferences": 2,
235
+ "user_roles": [
236
+ "all"
237
+ ],
238
+ "default_value": "",
239
+ "maxlength": "",
240
+ "placeholder": "",
241
+ "prepend": "",
242
+ "append": ""
243
+ },
244
+ {
245
+ "key": "field_64c29a9c8820a",
246
+ "label": "Ingredients",
247
+ "name": "ingredients",
248
+ "aria-label": "",
249
+ "type": "textarea",
250
+ "instructions": "",
251
+ "required": 0,
252
+ "conditional_logic": 0,
253
+ "wrapper": {
254
+ "width": "",
255
+ "class": "",
256
+ "id": ""
257
+ },
258
+ "wpml_cf_preferences": 2,
259
+ "user_roles": [
260
+ "all"
261
+ ],
262
+ "default_value": "",
263
+ "maxlength": "",
264
+ "rows": "",
265
+ "placeholder": "",
266
+ "new_lines": "",
267
+ "acfe_textarea_code": 0
268
+ },
269
+ {
270
+ "key": "field_64c29a675f72e",
271
+ "label": "Cask type",
272
+ "name": "product_cask_type",
273
+ "aria-label": "",
274
+ "type": "text",
275
+ "instructions": "",
276
+ "required": 0,
277
+ "conditional_logic": 0,
278
+ "wrapper": {
279
+ "width": "",
280
+ "class": "",
281
+ "id": ""
282
+ },
283
+ "wpml_cf_preferences": 2,
284
+ "user_roles": [
285
+ "all"
286
+ ],
287
+ "default_value": "",
288
+ "maxlength": "",
289
+ "placeholder": "",
290
+ "prepend": "",
291
+ "append": ""
292
+ },
293
+ {
294
+ "key": "field_64c29a675f777",
295
+ "label": "Nose",
296
+ "name": "product_nose",
297
+ "aria-label": "",
298
+ "type": "text",
299
+ "instructions": "",
300
+ "required": 0,
301
+ "conditional_logic": 0,
302
+ "wrapper": {
303
+ "width": "",
304
+ "class": "",
305
+ "id": ""
306
+ },
307
+ "wpml_cf_preferences": 2,
308
+ "user_roles": [
309
+ "all"
310
+ ],
311
+ "default_value": "Product Nose",
312
+ "maxlength": "",
313
+ "placeholder": "",
314
+ "prepend": "",
315
+ "append": ""
316
+ },
317
+ {
318
+ "key": "field_64c29a675f7bf",
319
+ "label": "Taste",
320
+ "name": "product_taste",
321
+ "aria-label": "",
322
+ "type": "text",
323
+ "instructions": "",
324
+ "required": 0,
325
+ "conditional_logic": 0,
326
+ "wrapper": {
327
+ "width": "",
328
+ "class": "",
329
+ "id": ""
330
+ },
331
+ "wpml_cf_preferences": 2,
332
+ "user_roles": [
333
+ "all"
334
+ ],
335
+ "default_value": "",
336
+ "maxlength": "",
337
+ "placeholder": "",
338
+ "prepend": "",
339
+ "append": ""
340
+ },
341
+ {
342
+ "key": "field_64c29a675f801",
343
+ "label": "Finish",
344
+ "name": "product_finish",
345
+ "aria-label": "",
346
+ "type": "text",
347
+ "instructions": "",
348
+ "required": 0,
349
+ "conditional_logic": 0,
350
+ "wrapper": {
351
+ "width": "",
352
+ "class": "",
353
+ "id": ""
354
+ },
355
+ "wpml_cf_preferences": 2,
356
+ "user_roles": [
357
+ "all"
358
+ ],
359
+ "default_value": "",
360
+ "maxlength": "",
361
+ "placeholder": "",
362
+ "prepend": "",
363
+ "append": ""
364
+ },
365
+ {
366
+ "key": "field_64c29a675f850",
367
+ "label": "History",
368
+ "name": "product_history",
369
+ "aria-label": "",
370
+ "type": "textarea",
371
+ "instructions": "",
372
+ "required": 0,
373
+ "conditional_logic": 0,
374
+ "wrapper": {
375
+ "width": "",
376
+ "class": "",
377
+ "id": ""
378
+ },
379
+ "wpml_cf_preferences": 2,
380
+ "user_roles": [
381
+ "all"
382
+ ],
383
+ "default_value": "",
384
+ "maxlength": "",
385
+ "rows": "",
386
+ "placeholder": "",
387
+ "new_lines": "",
388
+ "acfe_textarea_code": 0
389
+ },
390
+ {
391
+ "key": "field_64c29a675f898",
392
+ "label": "SKU",
393
+ "name": "sku",
394
+ "aria-label": "",
395
+ "type": "text",
396
+ "instructions": "",
397
+ "required": 0,
398
+ "conditional_logic": 0,
399
+ "wrapper": {
400
+ "width": "",
401
+ "class": "",
402
+ "id": ""
403
+ },
404
+ "wpml_cf_preferences": 2,
405
+ "user_roles": [
406
+ "all"
407
+ ],
408
+ "default_value": "",
409
+ "maxlength": "",
410
+ "placeholder": "",
411
+ "prepend": "",
412
+ "append": ""
413
+ },
414
+ {
415
+ "key": "field_64c29a675f8df",
416
+ "label": "MPN",
417
+ "name": "mpn",
418
+ "aria-label": "",
419
+ "type": "text",
420
+ "instructions": "",
421
+ "required": 0,
422
+ "conditional_logic": 0,
423
+ "wrapper": {
424
+ "width": "",
425
+ "class": "",
426
+ "id": ""
427
+ },
428
+ "wpml_cf_preferences": 2,
429
+ "user_roles": [
430
+ "all"
431
+ ],
432
+ "default_value": "",
433
+ "maxlength": "",
434
+ "placeholder": "",
435
+ "prepend": "",
436
+ "append": ""
437
+ },
438
+ {
439
+ "key": "field_66469130e72ef",
440
+ "label": "Related Products",
441
+ "name": "related_products",
442
+ "aria-label": "",
443
+ "type": "relationship",
444
+ "instructions": "",
445
+ "required": 0,
446
+ "conditional_logic": 0,
447
+ "wrapper": {
448
+ "width": "",
449
+ "class": "",
450
+ "id": ""
451
+ },
452
+ "wpml_cf_preferences": 3,
453
+ "post_type": [
454
+ "product"
455
+ ],
456
+ "post_status": "",
457
+ "taxonomy": "",
458
+ "filters": [
459
+ "search"
460
+ ],
461
+ "return_format": "object",
462
+ "acfe_add_post": 0,
463
+ "acfe_edit_post": 0,
464
+ "acfe_bidirectional": {
465
+ "acfe_bidirectional_enabled": "0"
466
+ },
467
+ "min": "",
468
+ "max": "",
469
+ "elements": "",
470
+ "bidirectional": 0,
471
+ "bidirectional_target": []
472
+ }
473
+ ],
474
+ "location": [
475
+ [
476
+ {
477
+ "param": "post_type",
478
+ "operator": "==",
479
+ "value": "product"
480
+ }
481
+ ]
482
+ ],
483
+ "menu_order": 0,
484
+ "position": "normal",
485
+ "style": "default",
486
+ "label_placement": "top",
487
+ "instruction_placement": "label",
488
+ "hide_on_screen": "",
489
+ "active": true,
490
+ "description": "Library version - Do not modify in this project as any changes will be overwritten by future updates.",
491
+ "show_in_rest": 0,
492
+ "acfe_autosync": [
493
+ "json"
494
+ ],
495
+ "acfml_field_group_mode": "localization",
496
+ "acfe_form": 0,
497
+ "acfe_display_title": "",
498
+ "acfe_meta": "",
499
+ "acfe_note": "",
500
+ "modified": 1746891765
501
+ }
@@ -0,0 +1,411 @@
1
+ {
2
+ "key": "group_689098dd3a131",
3
+ "title": "Fields: Product Info v3",
4
+ "fields": [
5
+ {
6
+ "key": "field_689098dd4ff5c",
7
+ "label": "Product logo",
8
+ "name": "product_logo",
9
+ "aria-label": "",
10
+ "type": "image",
11
+ "instructions": "",
12
+ "required": 0,
13
+ "conditional_logic": 0,
14
+ "wrapper": {
15
+ "width": "",
16
+ "class": "",
17
+ "id": ""
18
+ },
19
+ "wpml_cf_preferences": 3,
20
+ "user_roles": [
21
+ "all"
22
+ ],
23
+ "return_format": "id",
24
+ "library": "all",
25
+ "min_width": "",
26
+ "min_height": "",
27
+ "min_size": "",
28
+ "max_width": "",
29
+ "max_height": "",
30
+ "max_size": "",
31
+ "mime_types": "",
32
+ "preview_size": "medium",
33
+ "uploader": "",
34
+ "acfe_thumbnail": 0,
35
+ "upload_folder": ""
36
+ },
37
+ {
38
+ "key": "field_689098dd50338",
39
+ "label": "Product Name",
40
+ "name": "product_name",
41
+ "aria-label": "",
42
+ "type": "text",
43
+ "instructions": "",
44
+ "required": 0,
45
+ "conditional_logic": 0,
46
+ "wrapper": {
47
+ "width": "",
48
+ "class": "",
49
+ "id": ""
50
+ },
51
+ "wpml_cf_preferences": 2,
52
+ "user_roles": [
53
+ "all"
54
+ ],
55
+ "default_value": "",
56
+ "maxlength": "",
57
+ "placeholder": "",
58
+ "prepend": "",
59
+ "append": ""
60
+ },
61
+ {
62
+ "key": "field_689098dd5072d",
63
+ "label": "Country",
64
+ "name": "product_country",
65
+ "aria-label": "",
66
+ "type": "text",
67
+ "instructions": "",
68
+ "required": 0,
69
+ "conditional_logic": 0,
70
+ "wrapper": {
71
+ "width": "",
72
+ "class": "",
73
+ "id": ""
74
+ },
75
+ "wpml_cf_preferences": 2,
76
+ "user_roles": [
77
+ "all"
78
+ ],
79
+ "default_value": "",
80
+ "maxlength": "",
81
+ "placeholder": "",
82
+ "prepend": "",
83
+ "append": ""
84
+ },
85
+ {
86
+ "key": "field_689098dd50b0f",
87
+ "label": "Bazaarvoice ID",
88
+ "name": "product_bazaarvoice",
89
+ "aria-label": "",
90
+ "type": "text",
91
+ "instructions": "",
92
+ "required": 0,
93
+ "conditional_logic": 0,
94
+ "wrapper": {
95
+ "width": "",
96
+ "class": "",
97
+ "id": ""
98
+ },
99
+ "wpml_cf_preferences": 2,
100
+ "user_roles": [
101
+ "all"
102
+ ],
103
+ "default_value": "",
104
+ "maxlength": "",
105
+ "placeholder": "",
106
+ "prepend": "",
107
+ "append": ""
108
+ },
109
+ {
110
+ "key": "field_689098dd516c9",
111
+ "label": "Age statement",
112
+ "name": "product_age_statement",
113
+ "aria-label": "",
114
+ "type": "text",
115
+ "instructions": "",
116
+ "required": 0,
117
+ "conditional_logic": 0,
118
+ "wrapper": {
119
+ "width": "",
120
+ "class": "",
121
+ "id": ""
122
+ },
123
+ "wpml_cf_preferences": 2,
124
+ "user_roles": [
125
+ "all"
126
+ ],
127
+ "default_value": "",
128
+ "maxlength": "",
129
+ "placeholder": "",
130
+ "prepend": "",
131
+ "append": ""
132
+ },
133
+ {
134
+ "key": "field_689098dd51abb",
135
+ "label": "Price",
136
+ "name": "product_price",
137
+ "aria-label": "",
138
+ "type": "text",
139
+ "instructions": "",
140
+ "required": 0,
141
+ "conditional_logic": 0,
142
+ "wrapper": {
143
+ "width": "",
144
+ "class": "",
145
+ "id": ""
146
+ },
147
+ "wpml_cf_preferences": 2,
148
+ "default_value": "",
149
+ "maxlength": "",
150
+ "placeholder": "",
151
+ "prepend": "",
152
+ "append": ""
153
+ },
154
+ {
155
+ "key": "field_689098dd51ebd",
156
+ "label": "ABV",
157
+ "name": "product_abv",
158
+ "aria-label": "",
159
+ "type": "text",
160
+ "instructions": "",
161
+ "required": 0,
162
+ "conditional_logic": 0,
163
+ "wrapper": {
164
+ "width": "",
165
+ "class": "",
166
+ "id": ""
167
+ },
168
+ "wpml_cf_preferences": 2,
169
+ "user_roles": [
170
+ "all"
171
+ ],
172
+ "default_value": "",
173
+ "maxlength": "",
174
+ "placeholder": "",
175
+ "prepend": "",
176
+ "append": ""
177
+ },
178
+ {
179
+ "key": "field_689098dd52322",
180
+ "label": "Whisky type",
181
+ "name": "product_whisky_type",
182
+ "aria-label": "",
183
+ "type": "text",
184
+ "instructions": "",
185
+ "required": 0,
186
+ "conditional_logic": 0,
187
+ "wrapper": {
188
+ "width": "",
189
+ "class": "",
190
+ "id": ""
191
+ },
192
+ "wpml_cf_preferences": 2,
193
+ "user_roles": [
194
+ "all"
195
+ ],
196
+ "default_value": "",
197
+ "maxlength": "",
198
+ "placeholder": "",
199
+ "prepend": "",
200
+ "append": ""
201
+ },
202
+ {
203
+ "key": "field_689098dd52671",
204
+ "label": "Ingredients",
205
+ "name": "ingredients",
206
+ "aria-label": "",
207
+ "type": "textarea",
208
+ "instructions": "",
209
+ "required": 0,
210
+ "conditional_logic": 0,
211
+ "wrapper": {
212
+ "width": "",
213
+ "class": "",
214
+ "id": ""
215
+ },
216
+ "wpml_cf_preferences": 2,
217
+ "user_roles": [
218
+ "all"
219
+ ],
220
+ "default_value": "",
221
+ "maxlength": "",
222
+ "rows": "",
223
+ "placeholder": "",
224
+ "new_lines": "",
225
+ "acfe_textarea_code": 0
226
+ },
227
+ {
228
+ "key": "field_689098dd52a4d",
229
+ "label": "Cask type",
230
+ "name": "product_cask_type",
231
+ "aria-label": "",
232
+ "type": "text",
233
+ "instructions": "",
234
+ "required": 0,
235
+ "conditional_logic": 0,
236
+ "wrapper": {
237
+ "width": "",
238
+ "class": "",
239
+ "id": ""
240
+ },
241
+ "wpml_cf_preferences": 2,
242
+ "user_roles": [
243
+ "all"
244
+ ],
245
+ "default_value": "",
246
+ "maxlength": "",
247
+ "placeholder": "",
248
+ "prepend": "",
249
+ "append": ""
250
+ },
251
+ {
252
+ "key": "field_689098dd52e3e",
253
+ "label": "Nose",
254
+ "name": "product_nose",
255
+ "aria-label": "",
256
+ "type": "text",
257
+ "instructions": "",
258
+ "required": 0,
259
+ "conditional_logic": 0,
260
+ "wrapper": {
261
+ "width": "",
262
+ "class": "",
263
+ "id": ""
264
+ },
265
+ "wpml_cf_preferences": 2,
266
+ "user_roles": [
267
+ "all"
268
+ ],
269
+ "default_value": "Product Nose",
270
+ "maxlength": "",
271
+ "placeholder": "",
272
+ "prepend": "",
273
+ "append": ""
274
+ },
275
+ {
276
+ "key": "field_689098dd53233",
277
+ "label": "Taste",
278
+ "name": "product_taste",
279
+ "aria-label": "",
280
+ "type": "text",
281
+ "instructions": "",
282
+ "required": 0,
283
+ "conditional_logic": 0,
284
+ "wrapper": {
285
+ "width": "",
286
+ "class": "",
287
+ "id": ""
288
+ },
289
+ "wpml_cf_preferences": 2,
290
+ "user_roles": [
291
+ "all"
292
+ ],
293
+ "default_value": "",
294
+ "maxlength": "",
295
+ "placeholder": "",
296
+ "prepend": "",
297
+ "append": ""
298
+ },
299
+ {
300
+ "key": "field_689098dd53649",
301
+ "label": "Finish",
302
+ "name": "product_finish",
303
+ "aria-label": "",
304
+ "type": "text",
305
+ "instructions": "",
306
+ "required": 0,
307
+ "conditional_logic": 0,
308
+ "wrapper": {
309
+ "width": "",
310
+ "class": "",
311
+ "id": ""
312
+ },
313
+ "wpml_cf_preferences": 2,
314
+ "user_roles": [
315
+ "all"
316
+ ],
317
+ "default_value": "",
318
+ "maxlength": "",
319
+ "placeholder": "",
320
+ "prepend": "",
321
+ "append": ""
322
+ },
323
+ {
324
+ "key": "field_689098dd539f4",
325
+ "label": "History",
326
+ "name": "product_history",
327
+ "aria-label": "",
328
+ "type": "textarea",
329
+ "instructions": "",
330
+ "required": 0,
331
+ "conditional_logic": 0,
332
+ "wrapper": {
333
+ "width": "",
334
+ "class": "",
335
+ "id": ""
336
+ },
337
+ "wpml_cf_preferences": 2,
338
+ "user_roles": [
339
+ "all"
340
+ ],
341
+ "default_value": "",
342
+ "maxlength": "",
343
+ "rows": "",
344
+ "placeholder": "",
345
+ "new_lines": "",
346
+ "acfe_textarea_code": 0
347
+ },
348
+ {
349
+ "key": "field_689098dd545b8",
350
+ "label": "Related Products",
351
+ "name": "related_products",
352
+ "aria-label": "",
353
+ "type": "relationship",
354
+ "instructions": "",
355
+ "required": 0,
356
+ "conditional_logic": 0,
357
+ "wrapper": {
358
+ "width": "",
359
+ "class": "",
360
+ "id": ""
361
+ },
362
+ "wpml_cf_preferences": 3,
363
+ "post_type": [
364
+ "product"
365
+ ],
366
+ "post_status": "",
367
+ "taxonomy": "",
368
+ "filters": [
369
+ "search"
370
+ ],
371
+ "return_format": "object",
372
+ "acfe_add_post": 0,
373
+ "acfe_edit_post": 0,
374
+ "acfe_bidirectional": {
375
+ "acfe_bidirectional_enabled": "0"
376
+ },
377
+ "min": "",
378
+ "max": "",
379
+ "elements": "",
380
+ "bidirectional": 0,
381
+ "bidirectional_target": []
382
+ }
383
+ ],
384
+ "location": [
385
+ [
386
+ {
387
+ "param": "post_type",
388
+ "operator": "==",
389
+ "value": "product"
390
+ }
391
+ ]
392
+ ],
393
+ "menu_order": 0,
394
+ "position": "normal",
395
+ "style": "default",
396
+ "label_placement": "top",
397
+ "instruction_placement": "label",
398
+ "hide_on_screen": "",
399
+ "active": true,
400
+ "description": "Library version - Do not modify in this project as any changes will be overwritten by future updates.",
401
+ "show_in_rest": 0,
402
+ "acfe_autosync": [
403
+ "json"
404
+ ],
405
+ "acfml_field_group_mode": "localization",
406
+ "acfe_form": 0,
407
+ "acfe_display_title": "",
408
+ "acfe_meta": "",
409
+ "acfe_note": "",
410
+ "modified": 1754306832
411
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@total_onion/onion-library",
3
- "version": "1.0.113",
3
+ "version": "1.0.115",
4
4
  "description": "Component library",
5
5
  "main": "index.js",
6
6
  "scripts": {