@total_onion/onion-library 2.0.119 → 2.0.121

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.
@@ -46,10 +46,10 @@
46
46
  height: 40px;
47
47
  border: 1px solid #faf8ec;
48
48
  overflow: hidden;
49
-
49
+
50
50
  .servings-dec-btn {
51
51
  cursor: pointer;
52
- background-color: #0054FF;
52
+ background-color: #0054ff;
53
53
  color: #faf8ec;
54
54
  font-size: 28px;
55
55
  padding-bottom: 4px;
@@ -57,11 +57,11 @@
57
57
  height: 100%;
58
58
  border: unset;
59
59
  transform: translateX(0);
60
- transition: transform .3s ease;
60
+ transition: transform 0.3s ease;
61
61
 
62
62
  &::after {
63
63
  content: '\2212';
64
- color: #0054FF;
64
+ color: #0054ff;
65
65
  padding-top: 4px;
66
66
  width: 38px;
67
67
  height: 38px;
@@ -106,14 +106,14 @@
106
106
 
107
107
  .servings-inc-btn {
108
108
  cursor: pointer;
109
- color: #0054FF;
109
+ color: #0054ff;
110
110
  font-size: 30px;
111
111
  background-color: #faf8ec;
112
112
  width: 100%;
113
113
  height: 100%;
114
114
  border: unset;
115
115
  transform: translateX(-100%);
116
- transition: transform .3s ease;
116
+ transition: transform 0.3s ease;
117
117
 
118
118
  &::after {
119
119
  content: '+';
@@ -124,7 +124,7 @@
124
124
  position: absolute;
125
125
  top: 0;
126
126
  right: -38px;
127
- background-color: #0054FF;
127
+ background-color: #0054ff;
128
128
  }
129
129
  }
130
130
 
@@ -209,12 +209,12 @@
209
209
  gap: core-functions-v3.fluidSize(30);
210
210
  }
211
211
 
212
- // to be changed
213
- img {
214
- max-width: 50px;
212
+ .ingredient-image {
213
+ max-width: core-functions-v3.fluidSize(50);
214
+ aspect-ratio: 1;
215
215
 
216
216
  @include core-mixins-v3.device(breakpoints.$tabPortrait) {
217
- max-width: 100px;
217
+ max-width: core-functions-v3.fluidSize(100);
218
218
  }
219
219
  }
220
220
 
@@ -260,16 +260,16 @@
260
260
  gap: core-functions-v3.fluidSize(30);
261
261
  }
262
262
 
263
- // to be changed
264
- img {
265
- max-width: 50px;
263
+ .equipment-image {
264
+ max-width: core-functions-v3.fluidSize(50);
265
+ aspect-ratio: 1;
266
266
 
267
267
  @include core-mixins-v3.device(breakpoints.$tabPortrait) {
268
- max-width: 100px;
268
+ max-width: core-functions-v3.fluidSize(100);
269
269
  }
270
270
  }
271
271
 
272
- .equipments-text {
272
+ .equipment-text {
273
273
  font-family: var(--tertiary-font-family);
274
274
  font-size: core-functions-v3.fontSize(18);
275
275
  font-weight: 400;
@@ -288,7 +288,7 @@
288
288
  font-weight: 500;
289
289
  text-transform: uppercase;
290
290
  padding-block: core-functions-v3.fluidSize(10);
291
-
291
+
292
292
  @include core-mixins-v3.device(breakpoints.$tabPortrait) {
293
293
  padding-block: core-functions-v3.fluidSize(40);
294
294
  font-size: core-functions-v3.fontSize(160);
@@ -324,4 +324,4 @@
324
324
  }
325
325
  }
326
326
  }
327
- }
327
+ }
@@ -55,7 +55,9 @@
55
55
 
56
56
  {% for ingredient in ingredients %}
57
57
  <div class="ingredients-wrapper">
58
- <img src="{{ get_image(ingredient.ingredient_image) }}" width="20">
58
+ {% set ingredientSelect = ingredient.ingredients_list %}
59
+ {% set image = get_image(options.ingredient[ingredientSelect].ingredient_image) %}
60
+ <img class="ingredient-image" src="{{ image }}" width="{{ image.width }}" height="{{ image.height }}" alt="{{ image.alt }}">
59
61
  <p class="ingredient-text" data-ingredients data-amount="{{ ingredient.amount }}" data-unit="{{ ingredient.default_unit }}" data-name="{{ ingredient.name }}">{{ ingredient.amount }}{{ ingredient.default_unit }}
60
62
  {{ ingredient.name }}</p>
61
63
  </div>
@@ -68,8 +70,10 @@
68
70
 
69
71
  {% for equipment in equipments %}
70
72
  <div class="equipments-wrapper">
71
- <img src="{{ get_image(equipment.equipment_image) }}" width="20">
72
- <p class="equipments-text">{{ equipment.equipment_name }}</p>
73
+ {% set equipmentSelect = equipment.equipment_list %}
74
+ {% set image = get_image(options.equipments[equipmentSelect].equipment_image) %}
75
+ <img class="equipment-image" src="{{ image }}" width="{{ image.width }}" height="{{ image.height }}" alt="{{ image.alt }}">
76
+ <p class="equipment-text">{{ equipment.equipment_name }}</p>
73
77
  </div>
74
78
  {% endfor %}
75
79
  </div>
@@ -64,7 +64,9 @@
64
64
  "placeholder": "",
65
65
  "allow_custom": 0,
66
66
  "search_placeholder": "",
67
- "min": ""
67
+ "min": "",
68
+ "create_options": 0,
69
+ "save_options": 0
68
70
  },
69
71
  {
70
72
  "key": "field_6852a55cf66a6",
@@ -213,11 +215,10 @@
213
215
  ]
214
216
  ],
215
217
  "wrapper": {
216
- "width": "",
218
+ "width": "50",
217
219
  "class": "",
218
220
  "id": ""
219
221
  },
220
- "wpml_cf_preferences": 1,
221
222
  "uploader": "",
222
223
  "return_format": "array",
223
224
  "preview_style": "default",
@@ -230,6 +231,7 @@
230
231
  "min_size": "",
231
232
  "max_size": "",
232
233
  "mime_types": "",
234
+ "allow_in_bindings": 1,
233
235
  "placeholder": "Select",
234
236
  "stylised_button": 0,
235
237
  "min": ""
@@ -257,11 +259,10 @@
257
259
  ]
258
260
  ],
259
261
  "wrapper": {
260
- "width": "",
262
+ "width": "50",
261
263
  "class": "",
262
264
  "id": ""
263
265
  },
264
- "wpml_cf_preferences": 1,
265
266
  "uploader": "",
266
267
  "return_format": "array",
267
268
  "preview_style": "default",
@@ -274,10 +275,51 @@
274
275
  "min_size": "",
275
276
  "max_size": "",
276
277
  "mime_types": "",
278
+ "allow_in_bindings": 1,
277
279
  "placeholder": "Select",
278
280
  "stylised_button": 0,
279
281
  "min": ""
280
282
  },
283
+ {
284
+ "key": "field_690dcee93a7f6",
285
+ "label": "Muted",
286
+ "name": "muted",
287
+ "aria-label": "",
288
+ "type": "true_false",
289
+ "instructions": "",
290
+ "required": 0,
291
+ "conditional_logic": 0,
292
+ "wrapper": {
293
+ "width": "100",
294
+ "class": "",
295
+ "id": ""
296
+ },
297
+ "message": "",
298
+ "default_value": 0,
299
+ "allow_in_bindings": 1,
300
+ "ui_on_text": "",
301
+ "ui_off_text": "",
302
+ "ui": 1,
303
+ "style": ""
304
+ },
305
+ {
306
+ "key": "field_690dd018a08fd",
307
+ "label": "Important!",
308
+ "name": "",
309
+ "aria-label": "",
310
+ "type": "message",
311
+ "instructions": "",
312
+ "required": 0,
313
+ "conditional_logic": 0,
314
+ "wrapper": {
315
+ "width": "",
316
+ "class": "",
317
+ "id": ""
318
+ },
319
+ "message": "Autoplay needs Muted= Yes",
320
+ "new_lines": "wpautop",
321
+ "esc_html": 0
322
+ },
281
323
  {
282
324
  "key": "field_68c6d229ad78e",
283
325
  "label": "Autoplay desktop",
@@ -288,17 +330,17 @@
288
330
  "required": 0,
289
331
  "conditional_logic": 0,
290
332
  "wrapper": {
291
- "width": "",
333
+ "width": "50",
292
334
  "class": "",
293
335
  "id": ""
294
336
  },
295
- "wpml_cf_preferences": 1,
296
337
  "message": "",
297
338
  "default_value": 0,
298
- "style": "",
339
+ "allow_in_bindings": 1,
299
340
  "ui_on_text": "",
300
341
  "ui_off_text": "",
301
- "ui": 1
342
+ "ui": 1,
343
+ "style": ""
302
344
  },
303
345
  {
304
346
  "key": "field_68c7c161ad78f",
@@ -309,18 +351,159 @@
309
351
  "instructions": "",
310
352
  "required": 0,
311
353
  "conditional_logic": 0,
354
+ "wrapper": {
355
+ "width": "50",
356
+ "class": "",
357
+ "id": ""
358
+ },
359
+ "message": "",
360
+ "default_value": 0,
361
+ "allow_in_bindings": 1,
362
+ "ui_on_text": "",
363
+ "ui_off_text": "",
364
+ "ui": 1,
365
+ "style": ""
366
+ },
367
+ {
368
+ "key": "field_690dca35e3bbf",
369
+ "label": "Enable Captions",
370
+ "name": "enable_captions",
371
+ "aria-label": "",
372
+ "type": "true_false",
373
+ "instructions": "",
374
+ "required": 0,
375
+ "conditional_logic": 0,
312
376
  "wrapper": {
313
377
  "width": "",
314
378
  "class": "",
315
379
  "id": ""
316
380
  },
317
- "wpml_cf_preferences": 1,
318
381
  "message": "",
319
382
  "default_value": 0,
383
+ "allow_in_bindings": 1,
320
384
  "ui_on_text": "",
321
385
  "ui_off_text": "",
322
386
  "ui": 1,
323
387
  "style": ""
388
+ },
389
+ {
390
+ "key": "field_690dca63905de",
391
+ "label": "Captions",
392
+ "name": "captions",
393
+ "aria-label": "",
394
+ "type": "repeater",
395
+ "instructions": "",
396
+ "required": 0,
397
+ "conditional_logic": [
398
+ [
399
+ {
400
+ "field": "field_6894ca9ff2725",
401
+ "operator": "==",
402
+ "value": "1"
403
+ },
404
+ {
405
+ "field": "field_6852a4f5f66a5",
406
+ "operator": "==",
407
+ "value": "__upload"
408
+ },
409
+ {
410
+ "field": "field_690dca35e3bbf",
411
+ "operator": "==",
412
+ "value": "1"
413
+ }
414
+ ]
415
+ ],
416
+ "wrapper": {
417
+ "width": "",
418
+ "class": "",
419
+ "id": ""
420
+ },
421
+ "acfe_repeater_stylised_button": 0,
422
+ "layout": "table",
423
+ "pagination": 0,
424
+ "min": 0,
425
+ "max": 0,
426
+ "collapsed": "",
427
+ "button_label": "Add Row",
428
+ "rows_per_page": 20,
429
+ "sub_fields": [
430
+ {
431
+ "key": "field_690dca63905df",
432
+ "label": "Captions File",
433
+ "name": "captions_file",
434
+ "aria-label": "",
435
+ "type": "file",
436
+ "instructions": "Must be in VTT (Video Text Track)",
437
+ "required": 0,
438
+ "conditional_logic": 0,
439
+ "wrapper": {
440
+ "width": "",
441
+ "class": "",
442
+ "id": ""
443
+ },
444
+ "uploader": "",
445
+ "return_format": "array",
446
+ "preview_style": "default",
447
+ "library": "all",
448
+ "upload_folder": "",
449
+ "button_label": "Add File",
450
+ "file_count": 0,
451
+ "multiple": 0,
452
+ "max": "",
453
+ "min_size": "",
454
+ "max_size": "",
455
+ "mime_types": "",
456
+ "allow_in_bindings": 1,
457
+ "placeholder": "Select",
458
+ "stylised_button": 0,
459
+ "min": "",
460
+ "parent_repeater": "field_690dca63905de"
461
+ },
462
+ {
463
+ "key": "field_690dca63905e0",
464
+ "label": "Language Code",
465
+ "name": "language_code",
466
+ "aria-label": "",
467
+ "type": "text",
468
+ "instructions": "For example: en, fr, es",
469
+ "required": 0,
470
+ "conditional_logic": 0,
471
+ "wrapper": {
472
+ "width": "",
473
+ "class": "",
474
+ "id": ""
475
+ },
476
+ "default_value": "",
477
+ "maxlength": "",
478
+ "allow_in_bindings": 1,
479
+ "placeholder": "",
480
+ "prepend": "",
481
+ "append": "",
482
+ "parent_repeater": "field_690dca63905de"
483
+ },
484
+ {
485
+ "key": "field_690dca63905e1",
486
+ "label": "Caption Label",
487
+ "name": "caption_label",
488
+ "aria-label": "",
489
+ "type": "text",
490
+ "instructions": "For example \"English Captions\"",
491
+ "required": 0,
492
+ "conditional_logic": 0,
493
+ "wrapper": {
494
+ "width": "",
495
+ "class": "",
496
+ "id": ""
497
+ },
498
+ "default_value": "",
499
+ "maxlength": "",
500
+ "allow_in_bindings": 1,
501
+ "placeholder": "",
502
+ "prepend": "",
503
+ "append": "",
504
+ "parent_repeater": "field_690dca63905de"
505
+ }
506
+ ]
324
507
  }
325
508
  ],
326
509
  "location": [
@@ -341,13 +524,13 @@
341
524
  "active": false,
342
525
  "description": "",
343
526
  "show_in_rest": 0,
527
+ "display_title": "",
344
528
  "acfe_autosync": [
345
529
  "json"
346
530
  ],
347
- "acfml_field_group_mode": "translation",
348
531
  "acfe_form": 0,
349
532
  "acfe_display_title": "",
350
533
  "acfe_meta": "",
351
534
  "acfe_note": "",
352
- "modified": 1757922184
535
+ "modified": 1762513105
353
536
  }
@@ -67,42 +67,12 @@
67
67
  "button_label": "Add Row",
68
68
  "rows_per_page": 20,
69
69
  "sub_fields": [
70
- {
71
- "key": "field_68ffebf28918f",
72
- "label": "Ingredient Image",
73
- "name": "ingredient_image",
74
- "aria-label": "",
75
- "type": "image",
76
- "instructions": "",
77
- "required": 0,
78
- "conditional_logic": 0,
79
- "wrapper": {
80
- "width": "",
81
- "class": "",
82
- "id": ""
83
- },
84
- "wpml_cf_preferences": 3,
85
- "uploader": "",
86
- "return_format": "id",
87
- "library": "all",
88
- "upload_folder": "",
89
- "acfe_thumbnail": 0,
90
- "min_width": "",
91
- "min_height": "",
92
- "min_size": "",
93
- "max_width": "",
94
- "max_height": "",
95
- "max_size": "",
96
- "mime_types": "",
97
- "preview_size": "medium",
98
- "parent_repeater": "field_68ffeb3d8918b"
99
- },
100
70
  {
101
71
  "key": "field_6900f15dbea6c",
102
72
  "label": "Ingredients List",
103
73
  "name": "ingredients_list",
104
74
  "aria-label": "",
105
- "type": "acfe_field_types",
75
+ "type": "select",
106
76
  "instructions": "",
107
77
  "required": 0,
108
78
  "conditional_logic": 0,
@@ -111,26 +81,28 @@
111
81
  "class": "",
112
82
  "id": ""
113
83
  },
114
- "wpml_cf_preferences": 2,
115
- "field_types": [
116
- "repeater"
84
+ "wpml_cf_preferences": 3,
85
+ "choices": [
86
+ "sour cream",
87
+ "coca cola",
88
+ "arrroow"
117
89
  ],
118
- "field_type": "select",
119
- "default_value": [],
120
- "return_format": "object",
121
- "allow_null": 0,
90
+ "default_value": "placeholder1",
91
+ "return_format": "value",
122
92
  "multiple": 0,
93
+ "max": "",
94
+ "placeholder": "",
95
+ "prepend": "",
96
+ "append": "",
97
+ "allow_null": 0,
98
+ "allow_in_bindings": 0,
123
99
  "ui": 0,
124
- "choices": [],
125
100
  "ajax": 0,
126
- "placeholder": "",
127
- "search_placeholder": "",
128
- "layout": "",
129
- "toggle": 0,
101
+ "create_options": 0,
102
+ "save_options": 0,
130
103
  "allow_custom": 0,
131
- "other_choice": 0,
104
+ "search_placeholder": "",
132
105
  "min": "",
133
- "max": "",
134
106
  "parent_repeater": "field_68ffeb3d8918b"
135
107
  },
136
108
  {
@@ -171,7 +143,7 @@
171
143
  "class": "",
172
144
  "id": ""
173
145
  },
174
- "wpml_cf_preferences": 0,
146
+ "wpml_cf_preferences": 3,
175
147
  "choices": {
176
148
  "parts": "Parts",
177
149
  "ml": "ML",
@@ -192,7 +164,9 @@
192
164
  "allow_custom": 0,
193
165
  "search_placeholder": "",
194
166
  "min": "",
195
- "parent_repeater": "field_68ffeb3d8918b"
167
+ "parent_repeater": "field_68ffeb3d8918b",
168
+ "create_options": 0,
169
+ "save_options": 0
196
170
  },
197
171
  {
198
172
  "key": "field_68ffebe08918e",
@@ -302,33 +276,40 @@
302
276
  "rows_per_page": 20,
303
277
  "sub_fields": [
304
278
  {
305
- "key": "field_68ffec4f89192",
306
- "label": "Equipment Image",
307
- "name": "equipment_image",
279
+ "key": "field_690a596627485",
280
+ "label": "Equipment List",
281
+ "name": "equipment_list",
308
282
  "aria-label": "",
309
- "type": "image",
283
+ "type": "select",
310
284
  "instructions": "",
311
285
  "required": 0,
312
286
  "conditional_logic": 0,
313
287
  "wrapper": {
314
- "width": "50",
288
+ "width": "",
315
289
  "class": "",
316
290
  "id": ""
317
291
  },
318
- "wpml_cf_preferences": 3,
319
- "uploader": "",
320
- "return_format": "id",
321
- "library": "all",
322
- "upload_folder": "",
323
- "acfe_thumbnail": 0,
324
- "min_width": "",
325
- "min_height": "",
326
- "min_size": "",
327
- "max_width": "",
328
- "max_height": "",
329
- "max_size": "",
330
- "mime_types": "",
331
- "preview_size": "medium",
292
+ "wpml_cf_preferences": 0,
293
+ "choices": {
294
+ "placeholder1": "Placeholder 1",
295
+ "placeholder2": "Placeholder 2"
296
+ },
297
+ "default_value": "placeholder1",
298
+ "return_format": "value",
299
+ "multiple": 0,
300
+ "max": "",
301
+ "prepend": "",
302
+ "append": "",
303
+ "allow_null": 0,
304
+ "allow_in_bindings": 0,
305
+ "ui": 0,
306
+ "ajax": 0,
307
+ "placeholder": "",
308
+ "create_options": 0,
309
+ "save_options": 0,
310
+ "allow_custom": 0,
311
+ "search_placeholder": "",
312
+ "min": "",
332
313
  "parent_repeater": "field_68ffec3389191"
333
314
  },
334
315
  {
@@ -463,6 +444,7 @@
463
444
  "active": true,
464
445
  "description": "Library version - Do not modify in this project as any changes will be overwritten by future updates.",
465
446
  "show_in_rest": 0,
447
+ "display_title": "",
466
448
  "acfe_autosync": [
467
449
  "json"
468
450
  ],
@@ -471,5 +453,5 @@
471
453
  "acfe_display_title": "",
472
454
  "acfe_meta": "",
473
455
  "acfe_note": "",
474
- "modified": 1761835240
456
+ "modified": 1762286000
475
457
  }
@@ -16,14 +16,14 @@
16
16
  "class": "",
17
17
  "id": ""
18
18
  },
19
- "wpml_cf_preferences": 0,
19
+ "wpml_cf_preferences": 3,
20
20
  "acfe_repeater_stylised_button": 0,
21
21
  "layout": "table",
22
22
  "pagination": 0,
23
23
  "min": 0,
24
24
  "max": 0,
25
25
  "collapsed": "",
26
- "button_label": "Add Row",
26
+ "button_label": "Add Ingredient",
27
27
  "rows_per_page": 20,
28
28
  "sub_fields": [
29
29
  {
@@ -40,7 +40,7 @@
40
40
  "class": "",
41
41
  "id": ""
42
42
  },
43
- "wpml_cf_preferences": 0,
43
+ "wpml_cf_preferences": 3,
44
44
  "uploader": "",
45
45
  "return_format": "id",
46
46
  "library": "all",
@@ -53,6 +53,7 @@
53
53
  "max_height": "",
54
54
  "max_size": "",
55
55
  "mime_types": "",
56
+ "allow_in_bindings": 1,
56
57
  "preview_size": "medium",
57
58
  "parent_repeater": "field_6900f19ee7cdd"
58
59
  },
@@ -70,15 +71,127 @@
70
71
  "class": "",
71
72
  "id": ""
72
73
  },
73
- "wpml_cf_preferences": 0,
74
+ "wpml_cf_preferences": 2,
74
75
  "default_value": "",
75
76
  "maxlength": "",
77
+ "allow_in_bindings": 1,
76
78
  "placeholder": "",
77
79
  "prepend": "",
78
80
  "append": "",
79
81
  "parent_repeater": "field_6900f19ee7cdd"
80
82
  }
81
83
  ]
84
+ },
85
+ {
86
+ "key": "field_690a82f1a07ff",
87
+ "label": "Enable Equipments",
88
+ "name": "enable_equipments",
89
+ "aria-label": "",
90
+ "type": "true_false",
91
+ "instructions": "",
92
+ "required": 0,
93
+ "conditional_logic": 0,
94
+ "wrapper": {
95
+ "width": "",
96
+ "class": "",
97
+ "id": ""
98
+ },
99
+ "wpml_cf_preferences": 3,
100
+ "message": "",
101
+ "default_value": 0,
102
+ "allow_in_bindings": 0,
103
+ "ui_on_text": "",
104
+ "ui_off_text": "",
105
+ "ui": 1,
106
+ "style": ""
107
+ },
108
+ {
109
+ "key": "field_690a82ffa0800",
110
+ "label": "Equipments",
111
+ "name": "equipments",
112
+ "aria-label": "",
113
+ "type": "repeater",
114
+ "instructions": "",
115
+ "required": 0,
116
+ "conditional_logic": [
117
+ [
118
+ {
119
+ "field": "field_690a82f1a07ff",
120
+ "operator": "==",
121
+ "value": "1"
122
+ }
123
+ ]
124
+ ],
125
+ "wrapper": {
126
+ "width": "",
127
+ "class": "",
128
+ "id": ""
129
+ },
130
+ "wpml_cf_preferences": 3,
131
+ "acfe_repeater_stylised_button": 0,
132
+ "layout": "table",
133
+ "pagination": 0,
134
+ "min": 0,
135
+ "max": 0,
136
+ "collapsed": "",
137
+ "button_label": "Add Equipment",
138
+ "rows_per_page": 20,
139
+ "sub_fields": [
140
+ {
141
+ "key": "field_690a82ffa0801",
142
+ "label": "Equipment Image",
143
+ "name": "equipment_image",
144
+ "aria-label": "",
145
+ "type": "image",
146
+ "instructions": "",
147
+ "required": 0,
148
+ "conditional_logic": 0,
149
+ "wrapper": {
150
+ "width": "",
151
+ "class": "",
152
+ "id": ""
153
+ },
154
+ "wpml_cf_preferences": 3,
155
+ "uploader": "",
156
+ "return_format": "id",
157
+ "library": "all",
158
+ "upload_folder": "",
159
+ "acfe_thumbnail": 0,
160
+ "min_width": "",
161
+ "min_height": "",
162
+ "min_size": "",
163
+ "max_width": "",
164
+ "max_height": "",
165
+ "max_size": "",
166
+ "mime_types": "",
167
+ "allow_in_bindings": 1,
168
+ "preview_size": "medium",
169
+ "parent_repeater": "field_690a82ffa0800"
170
+ },
171
+ {
172
+ "key": "field_690a82ffa0802",
173
+ "label": "Equipment Name",
174
+ "name": "equipment_name",
175
+ "aria-label": "",
176
+ "type": "text",
177
+ "instructions": "",
178
+ "required": 0,
179
+ "conditional_logic": 0,
180
+ "wrapper": {
181
+ "width": "",
182
+ "class": "",
183
+ "id": ""
184
+ },
185
+ "wpml_cf_preferences": 2,
186
+ "default_value": "",
187
+ "maxlength": "",
188
+ "allow_in_bindings": 1,
189
+ "placeholder": "",
190
+ "prepend": "",
191
+ "append": "",
192
+ "parent_repeater": "field_690a82ffa0800"
193
+ }
194
+ ]
82
195
  }
83
196
  ],
84
197
  "location": [
@@ -99,6 +212,7 @@
99
212
  "active": true,
100
213
  "description": "",
101
214
  "show_in_rest": 0,
215
+ "display_title": "",
102
216
  "acfe_autosync": [
103
217
  "json"
104
218
  ],
@@ -107,5 +221,5 @@
107
221
  "acfe_display_title": "",
108
222
  "acfe_meta": "",
109
223
  "acfe_note": "",
110
- "modified": 1761669641
224
+ "modified": 1762297559
111
225
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@total_onion/onion-library",
3
- "version": "2.0.119",
3
+ "version": "2.0.121",
4
4
  "description": "Component library",
5
5
  "main": "index.js",
6
6
  "scripts": {