@total_onion/onion-library 1.0.182 → 1.0.183

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.
@@ -1,2 +1,47 @@
1
1
  @mixin additionalStyles() {
2
+ .group-container-v3__grid-container {
3
+ overflow-x: auto;
4
+ overscroll-behavior-x: contain;
5
+ scroll-snap-type: x mandatory;
6
+ scroll-behavior: smooth;
7
+ }
8
+ .group-container-v3__grid-container::scroll-button(left) {
9
+ content: '◄';
10
+ position: absolute;
11
+ left: 0;
12
+ top: 50%;
13
+ transform: translateY(-50%);
14
+ z-index: 100;
15
+ }
16
+
17
+ .group-container-v3__grid-container::scroll-button(right) {
18
+ content: '►';
19
+ position: absolute;
20
+ right: 0;
21
+ top: 50%;
22
+ transform: translateY(-50%);
23
+ z-index: 100;
24
+ }
25
+ .group-container-v3__grid-container::scroll-button(*) {
26
+ border: 0;
27
+ font-size: 2rem;
28
+ background: none;
29
+ color: green;
30
+ opacity: 0.7;
31
+ cursor: pointer;
32
+ }
33
+
34
+ .group-container-v3__grid-container::scroll-button(*):hover,
35
+ .group-container-v3__grid-container::scroll-button(*):focus {
36
+ opacity: 1;
37
+ }
38
+
39
+ .group-container-v3__grid-container::scroll-button(*):active {
40
+ translate: 1px 1px;
41
+ }
42
+
43
+ .group-container-v3__grid-container::scroll-button(*):disabled {
44
+ opacity: 0.2;
45
+ cursor: unset;
46
+ }
2
47
  }
@@ -5,25 +5,39 @@
5
5
  @mixin gridLayoutContainer() {
6
6
  display: var(--display-type, 'grid');
7
7
  position: relative;
8
+ scroll-snap-type: var(--scroll-snap-type, none);
9
+ > div {
10
+ scroll-snap-align: var(--scroll-snap-align, start);
11
+ }
12
+ overflow: var(--container-overflow-type, hidden);
13
+ grid-gap: calc(var(--global-inline-spacing) * var(--row-gap-mult-mobile, 0))
14
+ calc(var(--global-inline-spacing) * var(--column-gap-mult-mobile, 0));
8
15
  grid-auto-flow: var(--grid-auto-flow-mobile, row);
9
16
  --grid-auto-columns-custom-size: #{core-functions-v3.fluidSize(
10
17
  var(--grid-auto-columns-custom),
11
18
  'static'
12
19
  )};
13
- grid-auto-columns: var(--grid-auto-columns, auto);
14
- grid-gap: calc(var(--global-inline-spacing) * var(--row-gap-mult-mobile, 0))
15
- calc(var(--global-inline-spacing) * var(--column-gap-mult-mobile, 0));
20
+ grid-auto-columns: var(--grid-auto-columns-mobile, 1fr);
21
+ grid-auto-rows: var(--grid-auto-rows-mobile, 1fr);
16
22
  grid-template-columns: var(
17
23
  --grid-template-columns-custom-mobile,
18
24
  repeat(
19
- var(--grid-columns-mobile, 1),
20
- var(--grid-auto-columns-custom-size, var(--grid-auto-columns, auto))
25
+ var(--grid-template-columns-mobile),
26
+ var(--grid-auto-columns-mobile, 1fr)
27
+ )
28
+ );
29
+ grid-template-rows: var(
30
+ --grid-template-rows-custom-mobile,
31
+ repeat(
32
+ var(--grid-template-rows-mobile),
33
+ var(--grid-auto-rows-mobile, 1fr)
21
34
  )
22
35
  );
23
- grid-template-rows: var(--grid-template-rows-custom-mobile);
24
- grid-auto-rows: var(--grid-auto-rows);
25
36
 
26
37
  @include core-mixins-v3.device(breakpoints.$tabPortrait) {
38
+ grid-auto-flow: var(--grid-auto-flow-portrait, row);
39
+ grid-auto-columns: var(--grid-auto-columns-portrait, 1fr);
40
+ grid-auto-rows: var(--grid-auto-rows-portrait, 1fr);
27
41
  grid-gap: calc(
28
42
  var(--global-inline-spacing) * var(--row-gap-mult-portrait, 0)
29
43
  )
@@ -34,14 +48,17 @@
34
48
  grid-template-columns: var(
35
49
  --grid-template-columns-custom-portrait,
36
50
  repeat(
37
- var(--grid-columns-portrait, 1),
38
- var(
39
- --grid-auto-columns-custom-size,
40
- var(--grid-auto-columns, auto)
41
- )
51
+ var(--grid-template-columns-portrait),
52
+ var(--grid-auto-columns-portrait, 1fr)
53
+ )
54
+ );
55
+ grid-template-rows: var(
56
+ --grid-template-rows-custom-portrait,
57
+ repeat(
58
+ var(--grid-template-rows-portrait),
59
+ var(--grid-auto-rows-portrait, 1fr)
42
60
  )
43
61
  );
44
- grid-template-rows: var(--grid-template-rows-custom-portrait);
45
62
  }
46
63
 
47
64
  @include core-mixins-v3.device(breakpoints.$tabLandscape) {
@@ -51,11 +68,16 @@
51
68
  calc(
52
69
  var(--global-inline-spacing) * var(--column-gap-mult-desktop, 0)
53
70
  );
71
+ grid-auto-flow: var(--grid-auto-flow-desktop, row);
72
+ grid-auto-columns: var(--grid-auto-columns, auto);
73
+ grid-auto-rows: var(--grid-auto-rows, auto);
54
74
  grid-template-columns: var(
55
75
  --grid-template-columns-custom-desktop,
56
- repeat(var(--grid-columns-desktop, 1), 1fr)
76
+ repeat(
77
+ var(--grid-template-columns-desktop, 1),
78
+ var(--grid-auto-columns-desktop, 1fr)
79
+ )
57
80
  );
58
- grid-auto-flow: var(--grid-auto-flow-desktop, row);
59
81
  grid-template-rows: var(--grid-template-rows-custom-desktop);
60
82
  }
61
83
  }
@@ -1,23 +1,43 @@
1
- {% set gridColumnsDesktop = '--grid-template-columns-custom-desktop: repeat(' ~ fields.grid_layout.grid_columns_desktop|default(1) ~ ', 1fr);' %}
2
- {% set gridColumnsPortrait = '--grid-template-columns-custom-portrait: repeat(' ~ fields.grid_layout.grid_columns_portrait|default(1) ~ ', 1fr);' %}
3
- {% set gridColumnsMobile = '--grid-template-columns-custom-mobile: repeat(' ~ fields.grid_layout.grid_columns_mobile|default(1) ~ ', 1fr);' %}
1
+ {% set displayType = '--display-type: grid;' %}
2
+ {% set containerOverflowType = '--container-overflow-type: ' ~ fields.grid_layout.container_overflow_type|ru ~ ';' %}
3
+
4
+ {% set scrollSnap = '--scroll-snap-type: ' ~ fields.grid_layout.scroll_snap_type|ru ~ ';' %}
5
+ {% set scrollSnapAlign = '--scroll-snap-align: ' ~ fields.grid_layout.scroll_snap_align|ru ~ ';' %}
6
+
7
+ {% set gridTemplateColumnsDesktop = '--grid-template-columns-desktop:' ~ fields.grid_layout.grid_columns_desktop ~ ';' %}
8
+ {% set gridTemplateColumnsPortrait = '--grid-template-columns-portrait:' ~ fields.grid_layout.grid_columns_portrait|default(1) ~ ';' %}
9
+ {% set gridTemplateColumnsMobile = '--grid-template-columns-mobile:' ~ fields.grid_layout.grid_columns_mobile|default(1) ~ ';' %}
10
+
4
11
  {% set gridAutoFlowDesktop = '--grid-auto-flow-desktop: ' ~ fields.grid_layout.grid_auto_flow_desktop|ru ~ ';' %}
12
+ {% set gridAutoFlowPortrait = '--grid-auto-flow-portrait: ' ~ fields.grid_layout.grid_auto_flow_portrait|ru ~ ';' %}
5
13
  {% set gridAutoFlowMobile = '--grid-auto-flow-mobile: ' ~ fields.grid_layout.grid_auto_flow_mobile|ru ~ ';' %}
6
- {% set containerOverflowType = '--container-overflow-type: ' ~ fields.grid_layout.container_overflow_type|ru ~ ';' %}
7
- {% set gridAutoColumns = '--grid-auto-columns: ' ~ fields.grid_layout.grid_auto_columns|ru ~ ';' %}
14
+
15
+ {% set gridAutoColumnsDesktop = '--grid-auto-columns-desktop: ' ~ fields.grid_layout.grid_auto_columns|ru ~ ';' %}
16
+ {% set gridAutoColumnsPortrait = '--grid-auto-columns-portrait: ' ~ fields.grid_layout.grid_auto_columns_portrait|ru ~ ';' %}
17
+ {% set gridAutoColumnsMobile = '--grid-auto-columns-mobile: ' ~ fields.grid_layout.grid_auto_columns_mobile|ru ~ ';' %}
18
+
8
19
  {% set gridAutoRows = '--grid-auto-rows: ' ~ fields.grid_layout.grid_auto_rows|ru ~ ';' %}
20
+ {% set gridAutoRowsPortrait = '--grid-auto-rows-portrait: ' ~ fields.grid_layout.grid_auto_rows_portrait|ru ~ ';' %}
21
+ {% set gridAutoRowsMobile = '--grid-auto-rows-mobile: ' ~ fields.grid_layout.grid_auto_rows_mobile|ru ~ ';' %}
9
22
 
10
- {% if fields.grid_layout.grid_auto_columns|ru == 'custom' %}
11
- {% set gridAutoColumns = '--grid-auto-columns-custom: ' ~ fields.grid_layout.grid_auto_columns_custom_width ~ ';' %}
23
+ {% if fields.grid_layout.grid_auto_columns_desktop|ru == 'custom' %}
24
+ {% set gridAutoColumnsDesktop = '--grid-auto-columns-desktop: ' ~ fields.grid_layout.grid_auto_columns_custom_width ~ ';' %}
25
+ {% endif %}
26
+ {% if fields.grid_layout.grid_auto_columns_portrait|ru == 'custom' %}
27
+ {% set gridAutoColumnsPortrait = '--grid-auto-columns-portrait: ' ~ fields.grid_layout.grid_auto_columns_custom_width_portrait ~ ';' %}
12
28
  {% endif %}
29
+ {% if fields.grid_layout.grid_auto_columns_mobile|ru == 'custom' %}
30
+ {% set gridAutoColumnsMobile = '--grid-auto-columns-mobile: ' ~ fields.grid_layout.grid_auto_columns_custom_width_mobile ~ ';' %}
31
+ {% endif %}
32
+
13
33
  {% if fields.grid_layout.grid_template_columns_custom_desktop is not empty %}
14
- {% set gridColumnsDesktop = '--grid-template-columns-custom-desktop: ' ~ fields.grid_layout.grid_template_columns_custom_desktop ~ ';' %}
34
+ {% set gridTemplateColumnsCustomDesktop = '--grid-template-columns-custom-desktop: ' ~ fields.grid_layout.grid_template_columns_custom_desktop ~ ';' %}
15
35
  {% endif %}
16
36
  {% if fields.grid_layout.grid_template_columns_custom_portrait is not empty %}
17
- {% set gridColumnsPortrait = '--grid-template-columns-custom-portrait: ' ~ fields.grid_layout.grid_template_columns_custom_portrait ~ ';' %}
37
+ {% set gridTemplateColumnsPortrait = '--grid-template-columns-custom-portrait: ' ~ fields.grid_layout.grid_template_columns_custom_portrait ~ ';' %}
18
38
  {% endif %}
19
39
  {% if fields.grid_layout.grid_template_columns_custom_mobile is not empty %}
20
- {% set gridColumnsMobile = '--grid-template-columns-custom-mobile: ' ~ fields.grid_layout.grid_template_columns_custom_mobile ~ ';' %}
40
+ {% set gridTemplateColumnsCustomMobile = '--grid-template-columns-custom-mobile: ' ~ fields.grid_layout.grid_template_columns_custom_mobile ~ ';' %}
21
41
  {% endif %}
22
42
  {% if fields.grid_layout.grid_template_rows_custom_desktop is not empty %}
23
43
  {% set gridTemplateRowsCustomDesktop = '--grid-template-rows-custom-desktop: ' ~ fields.grid_layout.grid_template_rows_custom_desktop ~ ';' %}
@@ -28,9 +48,10 @@
28
48
  {% if fields.grid_layout.grid_template_rows_custom_mobile is not empty %}
29
49
  {% set gridTemplateRowsCustomMobile = '--grid-template-rows-custom-mobile: ' ~ fields.grid_layout.grid_template_rows_custom_mobile ~ ';' %}
30
50
  {% endif %}
31
- {% set displayType = '--display-type: grid;' %}
51
+
52
+
32
53
  {% set gridGapMults = include('components/grid-gap-mults-v3.twig', {fields: fields.grid_layout}, with_context = false) %}
33
- {% set gridLayoutContainer = displayType ~ gridColumnsDesktop ~ gridColumnsPortrait ~ gridGapMults ~ gridColumnsMobile ~ gridAutoFlowDesktop ~ gridAutoFlowMobile ~ containerOverflowType ~ gridAutoColumns ~ gridTemplateRowsCustomDesktop ~ gridTemplateRowsCustomPortrait ~ gridTemplateRowsCustomMobile ~ gridAutoRows %}
54
+ {% set gridLayoutContainer = displayType ~ gridTemplateColumnsDesktop ~ gridTemplateColumnsPortrait ~ gridTemplateColumnsMobile ~ gridGapMults ~ gridTemplateColumnsCustomDesktop ~ gridTemplateColumnsPortrait ~ gridTemplateColumnsCustomMobile ~ gridAutoFlowDesktop ~ gridAutoFlowPortrait ~ gridAutoFlowMobile ~ containerOverflowType ~ gridAutoColumnsDesktop ~ gridTemplateRowsCustomDesktop ~ gridTemplateRowsCustomPortrait ~ gridTemplateRowsCustomMobile ~ gridAutoRows ~ gridAutoRowsPortrait ~ gridAutoRowsMobile ~ gridAutoColumnsPortrait ~ gridAutoColumnsMobile ~ scrollSnap ~ scrollSnapAlign %}
34
55
 
35
56
 
36
57
  {{gridLayoutContainer}}
@@ -431,9 +431,29 @@
431
431
  "layout": "horizontal",
432
432
  "save_other_choice": 0
433
433
  },
434
+ {
435
+ "key": "field_689ce5d0bb07c",
436
+ "label": "Auto Columns",
437
+ "name": "",
438
+ "aria-label": "",
439
+ "type": "tab",
440
+ "instructions": "",
441
+ "required": 0,
442
+ "conditional_logic": 0,
443
+ "wrapper": {
444
+ "width": "",
445
+ "class": "",
446
+ "id": ""
447
+ },
448
+ "wpml_cf_preferences": 3,
449
+ "placement": "top",
450
+ "endpoint": 0,
451
+ "no_preference": 0,
452
+ "selected": 0
453
+ },
434
454
  {
435
455
  "key": "field_6882282e77289",
436
- "label": "Grid auto columns",
456
+ "label": "Grid auto columns desktop",
437
457
  "name": "grid_auto_columns",
438
458
  "aria-label": "",
439
459
  "type": "select",
@@ -449,6 +469,8 @@
449
469
  "choices": {
450
470
  "__auto": "Auto",
451
471
  "__1fr": "1fr",
472
+ "__min-content": "Min Content",
473
+ "__max-content": "Max Content",
452
474
  "__custom": "Custom"
453
475
  },
454
476
  "default_value": "__auto",
@@ -467,10 +489,10 @@
467
489
  },
468
490
  {
469
491
  "key": "field_6882282e7766d",
470
- "label": "Grid auto columns custom width",
471
- "name": "grid_auto_columns_custom_width",
492
+ "label": "Grid auto columns desktop custom",
493
+ "name": "grid_auto_columns_desktop_custom",
472
494
  "aria-label": "",
473
- "type": "range",
495
+ "type": "text",
474
496
  "instructions": "",
475
497
  "required": 0,
476
498
  "conditional_logic": [
@@ -487,17 +509,164 @@
487
509
  "class": "",
488
510
  "id": ""
489
511
  },
512
+ "wpml_cf_preferences": 2,
513
+ "default_value": "",
514
+ "maxlength": "",
515
+ "placeholder": "",
516
+ "prepend": "",
517
+ "append": ""
518
+ },
519
+ {
520
+ "key": "field_689d9c794d260",
521
+ "label": "Grid auto columns portrait",
522
+ "name": "grid_auto_columns_portrait",
523
+ "aria-label": "",
524
+ "type": "select",
525
+ "instructions": "",
526
+ "required": 0,
527
+ "conditional_logic": 0,
528
+ "wrapper": {
529
+ "width": "",
530
+ "class": "",
531
+ "id": ""
532
+ },
533
+ "wpml_cf_preferences": 3,
534
+ "choices": {
535
+ "__auto": "Auto",
536
+ "__1fr": "1fr",
537
+ "__min-content": "Min Content",
538
+ "__max-content": "Max Content",
539
+ "__custom": "Custom"
540
+ },
541
+ "default_value": "__auto",
542
+ "return_format": "value",
543
+ "multiple": 0,
544
+ "prepend": "",
545
+ "append": "",
546
+ "allow_null": 0,
547
+ "ui": 0,
548
+ "ajax": 0,
549
+ "placeholder": "",
550
+ "allow_custom": 0,
551
+ "search_placeholder": "",
552
+ "min": "",
553
+ "max": ""
554
+ },
555
+ {
556
+ "key": "field_689d9c824d261",
557
+ "label": "Grid auto columns portrait custom",
558
+ "name": "grid_auto_columns_portrait_custom",
559
+ "aria-label": "",
560
+ "type": "text",
561
+ "instructions": "",
562
+ "required": 0,
563
+ "conditional_logic": [
564
+ [
565
+ {
566
+ "field": "field_689d9c794d260",
567
+ "operator": "==",
568
+ "value": "__custom"
569
+ }
570
+ ]
571
+ ],
572
+ "wrapper": {
573
+ "width": "",
574
+ "class": "",
575
+ "id": ""
576
+ },
577
+ "wpml_cf_preferences": 2,
578
+ "default_value": "",
579
+ "maxlength": "",
580
+ "placeholder": "",
581
+ "prepend": "",
582
+ "append": ""
583
+ },
584
+ {
585
+ "key": "field_689ce3f6636e4",
586
+ "label": "Grid auto columns mobile",
587
+ "name": "grid_auto_columns_mobile",
588
+ "aria-label": "",
589
+ "type": "select",
590
+ "instructions": "",
591
+ "required": 0,
592
+ "conditional_logic": 0,
593
+ "wrapper": {
594
+ "width": "",
595
+ "class": "",
596
+ "id": ""
597
+ },
490
598
  "wpml_cf_preferences": 3,
599
+ "choices": {
600
+ "__auto": "Auto",
601
+ "__1fr": "1fr",
602
+ "__custom": "Custom"
603
+ },
604
+ "default_value": "__auto",
605
+ "return_format": "value",
606
+ "multiple": 0,
607
+ "prepend": "",
608
+ "append": "",
609
+ "allow_null": 0,
610
+ "ui": 0,
611
+ "ajax": 0,
612
+ "placeholder": "",
613
+ "allow_custom": 0,
614
+ "search_placeholder": "",
615
+ "min": "",
616
+ "max": ""
617
+ },
618
+ {
619
+ "key": "field_689ce400636e5",
620
+ "label": "Grid auto columns custom width mobile",
621
+ "name": "grid_auto_columns_custom_width_mobile",
622
+ "aria-label": "",
623
+ "type": "text",
624
+ "instructions": "",
625
+ "required": 0,
626
+ "conditional_logic": [
627
+ [
628
+ {
629
+ "field": "field_689ce3f6636e4",
630
+ "operator": "==",
631
+ "value": "__custom"
632
+ }
633
+ ]
634
+ ],
635
+ "wrapper": {
636
+ "width": "",
637
+ "class": "",
638
+ "id": ""
639
+ },
640
+ "wpml_cf_preferences": 2,
491
641
  "default_value": "",
492
- "min": 0,
493
- "max": 1000,
494
- "step": "",
642
+ "maxlength": "",
643
+ "placeholder": "",
495
644
  "prepend": "",
496
645
  "append": ""
497
646
  },
647
+ {
648
+ "key": "field_689ce6198afed",
649
+ "label": "Auto Rows",
650
+ "name": "",
651
+ "aria-label": "",
652
+ "type": "tab",
653
+ "instructions": "",
654
+ "required": 0,
655
+ "conditional_logic": 0,
656
+ "wrapper": {
657
+ "width": "",
658
+ "class": "",
659
+ "id": ""
660
+ },
661
+ "wpml_cf_preferences": 3,
662
+ "placement": "top",
663
+ "endpoint": 0,
664
+ "no_preference": 0,
665
+ "selected": 0
666
+ },
498
667
  {
499
668
  "key": "field_6882282e77a58",
500
- "label": "Grid auto rows",
669
+ "label": "Grid auto rows desktop",
501
670
  "name": "grid_auto_rows",
502
671
  "aria-label": "",
503
672
  "type": "select",
@@ -533,8 +702,74 @@
533
702
  },
534
703
  {
535
704
  "key": "field_6882282e77e3d",
536
- "label": "Grid auto rows custom height",
537
- "name": "grid_auto_rows_custom_height",
705
+ "label": "Grid auto rows desktop custom",
706
+ "name": "grid_auto_rows_desktop_custom",
707
+ "aria-label": "",
708
+ "type": "range",
709
+ "instructions": "",
710
+ "required": 0,
711
+ "conditional_logic": [
712
+ [
713
+ {
714
+ "field": "field_6882282e77a58",
715
+ "operator": "==",
716
+ "value": "__custom"
717
+ }
718
+ ]
719
+ ],
720
+ "wrapper": {
721
+ "width": "",
722
+ "class": "",
723
+ "id": ""
724
+ },
725
+ "wpml_cf_preferences": 3,
726
+ "default_value": "",
727
+ "min": 0,
728
+ "max": 1000,
729
+ "step": "",
730
+ "prepend": "",
731
+ "append": ""
732
+ },
733
+ {
734
+ "key": "field_689db0bd71354",
735
+ "label": "Grid auto rows portrait",
736
+ "name": "grid_auto_rows_portrait",
737
+ "aria-label": "",
738
+ "type": "select",
739
+ "instructions": "",
740
+ "required": 0,
741
+ "conditional_logic": 0,
742
+ "wrapper": {
743
+ "width": "",
744
+ "class": "",
745
+ "id": ""
746
+ },
747
+ "wpml_cf_preferences": 3,
748
+ "choices": {
749
+ "__auto": "Auto",
750
+ "__1fr": "1fr",
751
+ "__custom": "Custom",
752
+ "__min-content": "Min Content",
753
+ "__max-content": "Max Content"
754
+ },
755
+ "default_value": "__auto",
756
+ "return_format": "value",
757
+ "multiple": 0,
758
+ "prepend": "",
759
+ "append": "",
760
+ "allow_null": 0,
761
+ "ui": 0,
762
+ "ajax": 0,
763
+ "placeholder": "",
764
+ "allow_custom": 0,
765
+ "search_placeholder": "",
766
+ "min": "",
767
+ "max": ""
768
+ },
769
+ {
770
+ "key": "field_689db0d171355",
771
+ "label": "Grid auto rows portrait custom",
772
+ "name": "grid_auto_rows_portrait_custom",
538
773
  "aria-label": "",
539
774
  "type": "range",
540
775
  "instructions": "",
@@ -561,6 +796,72 @@
561
796
  "prepend": "",
562
797
  "append": ""
563
798
  },
799
+ {
800
+ "key": "field_689ce5a3428a5",
801
+ "label": "Grid auto rows mobile",
802
+ "name": "grid_auto_rows_mobile",
803
+ "aria-label": "",
804
+ "type": "select",
805
+ "instructions": "",
806
+ "required": 0,
807
+ "conditional_logic": 0,
808
+ "wrapper": {
809
+ "width": "",
810
+ "class": "",
811
+ "id": ""
812
+ },
813
+ "wpml_cf_preferences": 3,
814
+ "choices": {
815
+ "__auto": "Auto",
816
+ "__1fr": "1fr",
817
+ "__custom": "Custom",
818
+ "__min-content": "Min Content",
819
+ "__max-content": "Max Content"
820
+ },
821
+ "default_value": "__auto",
822
+ "return_format": "value",
823
+ "multiple": 0,
824
+ "prepend": "",
825
+ "append": "",
826
+ "allow_null": 0,
827
+ "ui": 0,
828
+ "ajax": 0,
829
+ "placeholder": "",
830
+ "allow_custom": 0,
831
+ "search_placeholder": "",
832
+ "min": "",
833
+ "max": ""
834
+ },
835
+ {
836
+ "key": "field_689ce5ab428a6",
837
+ "label": "Grid auto rows mobile custom",
838
+ "name": "grid_auto_rows_mobile_custom",
839
+ "aria-label": "",
840
+ "type": "range",
841
+ "instructions": "",
842
+ "required": 0,
843
+ "conditional_logic": [
844
+ [
845
+ {
846
+ "field": "field_689ce5a3428a5",
847
+ "operator": "==",
848
+ "value": "__custom"
849
+ }
850
+ ]
851
+ ],
852
+ "wrapper": {
853
+ "width": "",
854
+ "class": "",
855
+ "id": ""
856
+ },
857
+ "wpml_cf_preferences": 3,
858
+ "default_value": "",
859
+ "min": 0,
860
+ "max": 1000,
861
+ "step": "",
862
+ "prepend": "",
863
+ "append": ""
864
+ },
564
865
  {
565
866
  "key": "field_6882282e78223",
566
867
  "label": "Scroll Snap",
@@ -884,5 +1185,5 @@
884
1185
  "acfe_display_title": "",
885
1186
  "acfe_meta": "",
886
1187
  "acfe_note": "",
887
- "modified": 1754407595
1188
+ "modified": 1755164960
888
1189
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@total_onion/onion-library",
3
- "version": "1.0.182",
3
+ "version": "1.0.183",
4
4
  "description": "Component library",
5
5
  "main": "index.js",
6
6
  "scripts": {