@bagelink/vue 1.4.26 → 1.4.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Image.vue.d.ts +1 -0
- package/dist/components/Image.vue.d.ts.map +1 -1
- package/dist/components/dataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/index.cjs +73 -44
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +73 -44
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +369 -87
- package/dist/types/BagelForm.d.ts +5 -1
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/utils/BagelFormUtils.d.ts +14 -10
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/dist/utils/useSearch.d.ts.map +1 -1
- package/package.json +3 -4
- package/src/components/Image.vue +4 -3
- package/src/components/ListItem.vue +1 -1
- package/src/components/dataTable/DataTable.vue +7 -37
- package/src/index.ts +2 -1
- package/src/plugins/modal.ts +1 -0
- package/src/styles/layout.css +195 -6
- package/src/styles/mobilLayout.css +199 -12
- package/src/types/BagelForm.ts +11 -1
- package/src/utils/BagelFormUtils.ts +27 -16
- package/src/utils/useSearch.ts +23 -11
package/dist/style.css
CHANGED
|
@@ -862,88 +862,67 @@ to {
|
|
|
862
862
|
text-align: center;
|
|
863
863
|
}
|
|
864
864
|
|
|
865
|
-
.table-list-wrap[data-v-
|
|
865
|
+
.table-list-wrap[data-v-6da6fbe2] {
|
|
866
866
|
min-height: 150px;
|
|
867
867
|
}
|
|
868
|
-
.selected[data-v-
|
|
868
|
+
.selected[data-v-6da6fbe2] {
|
|
869
869
|
background: var(--bgl-primary-tint);
|
|
870
870
|
}
|
|
871
|
-
tbody tr.selected[data-v-
|
|
871
|
+
tbody tr.selected[data-v-6da6fbe2]:hover {
|
|
872
872
|
background: var(--bgl-primary-light);
|
|
873
873
|
}
|
|
874
|
-
.
|
|
875
|
-
position: relative;
|
|
876
|
-
}
|
|
877
|
-
.inset[data-v-f795f660] {
|
|
878
|
-
inset: 0;
|
|
879
|
-
}
|
|
880
|
-
.loading-table-animation[data-v-f795f660] {
|
|
881
|
-
--size: 60px;
|
|
882
|
-
top: 30vh;
|
|
883
|
-
inset-inline-start: calc(50% - var(--size));
|
|
884
|
-
border: 3px solid var(--bgl-gray-20);
|
|
885
|
-
border-top: 4px solid var(--bgl-primary);
|
|
886
|
-
width: var(--size);
|
|
887
|
-
height: var(--size);
|
|
888
|
-
animation: loading-table-f795f660 1s linear infinite;
|
|
889
|
-
}
|
|
890
|
-
@keyframes loading-table-f795f660 {
|
|
891
|
-
0% {
|
|
892
|
-
transform: translate(-50%, -50%) rotate(0deg);
|
|
893
|
-
}
|
|
894
|
-
100% {
|
|
895
|
-
transform: translate(-50%, -50%) rotate(360deg);
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
.list-arrows[data-v-f795f660] {
|
|
874
|
+
.list-arrows[data-v-6da6fbe2] {
|
|
899
875
|
opacity: 0;
|
|
900
876
|
}
|
|
901
|
-
.list-arrows .bgl_icon-font[data-v-
|
|
877
|
+
.list-arrows .bgl_icon-font[data-v-6da6fbe2] {
|
|
902
878
|
transition: all ease-in-out 0.2s;
|
|
903
879
|
}
|
|
904
|
-
.list-arrows.sorted[data-v-
|
|
880
|
+
.list-arrows.sorted[data-v-6da6fbe2] {
|
|
905
881
|
opacity: 1;
|
|
906
882
|
}
|
|
907
|
-
.col img[data-v-
|
|
883
|
+
.col img[data-v-6da6fbe2] {
|
|
908
884
|
height: 35px;
|
|
909
885
|
margin-top: -14px;
|
|
910
886
|
margin-bottom: -14px;
|
|
911
887
|
border-radius: 5px;
|
|
912
888
|
object-fit: cover;
|
|
913
889
|
}
|
|
914
|
-
.col[data-v-
|
|
890
|
+
.col[data-v-6da6fbe2]:has(img) {
|
|
915
891
|
padding-inline-end: 0.5rem;
|
|
916
892
|
}
|
|
917
|
-
.
|
|
893
|
+
.overflowHiddenLoading[data-v-6da6fbe2]{
|
|
894
|
+
overflow: hidden !important;
|
|
895
|
+
}
|
|
896
|
+
.list-arrows.sorted .desc[data-v-6da6fbe2] {
|
|
918
897
|
transform: rotate(180deg);
|
|
919
898
|
display: inline-block;
|
|
920
899
|
}
|
|
921
|
-
table[data-v-
|
|
900
|
+
table[data-v-6da6fbe2] {
|
|
922
901
|
border-spacing: 0 15px;
|
|
923
902
|
border-collapse: collapse;
|
|
924
903
|
width: 100%;
|
|
925
904
|
}
|
|
926
|
-
th[data-v-
|
|
905
|
+
th[data-v-6da6fbe2] {
|
|
927
906
|
font-size: 0.8rem;
|
|
928
907
|
color: var(--bgl-black-tint);
|
|
929
908
|
position: sticky;
|
|
930
909
|
top: 0;
|
|
931
910
|
z-index: 2;
|
|
932
911
|
background: var(--bgl-box-bg);
|
|
933
|
-
height: var(--
|
|
912
|
+
height: var(--70bc72ee);
|
|
934
913
|
vertical-align: bottom;
|
|
935
914
|
font-weight: 400;
|
|
936
915
|
text-align: start;
|
|
937
916
|
}
|
|
938
|
-
.embedded-field[data-v-
|
|
917
|
+
.embedded-field[data-v-6da6fbe2] {
|
|
939
918
|
margin-bottom: -0.2rem;
|
|
940
919
|
margin-top: -0.2rem;
|
|
941
920
|
}
|
|
942
|
-
.row[data-v-
|
|
921
|
+
.row[data-v-6da6fbe2] {
|
|
943
922
|
border-bottom: 1px solid var(--border-color);
|
|
944
923
|
cursor: pointer;
|
|
945
924
|
}
|
|
946
|
-
.row.first-row[data-v-
|
|
925
|
+
.row.first-row[data-v-6da6fbe2] {
|
|
947
926
|
font-size: 0.8rem;
|
|
948
927
|
color: var(--bgl-black-tint);
|
|
949
928
|
position: sticky;
|
|
@@ -952,7 +931,7 @@ th[data-v-f795f660] {
|
|
|
952
931
|
background: var(--bgl-box-bg);
|
|
953
932
|
vertical-align: bottom;
|
|
954
933
|
}
|
|
955
|
-
.row.first-row[data-v-
|
|
934
|
+
.row.first-row[data-v-6da6fbe2]::after {
|
|
956
935
|
content: '';
|
|
957
936
|
border-bottom: 1px solid var(--border-color);
|
|
958
937
|
position: absolute;
|
|
@@ -960,11 +939,11 @@ th[data-v-f795f660] {
|
|
|
960
939
|
right: 0;
|
|
961
940
|
bottom: -1px;
|
|
962
941
|
}
|
|
963
|
-
.first-row .col[data-v-
|
|
942
|
+
.first-row .col[data-v-6da6fbe2] {
|
|
964
943
|
cursor: pointer;
|
|
965
944
|
background: var(--bgl-box-bg);
|
|
966
945
|
}
|
|
967
|
-
.col[data-v-
|
|
946
|
+
.col[data-v-6da6fbe2] {
|
|
968
947
|
white-space: nowrap;
|
|
969
948
|
padding: 0.75rem 1rem;
|
|
970
949
|
transition: var(--bgl-transition);
|
|
@@ -974,19 +953,19 @@ th[data-v-f795f660] {
|
|
|
974
953
|
overflow: hidden;
|
|
975
954
|
max-width: 30vw;
|
|
976
955
|
}
|
|
977
|
-
.col[data-v-
|
|
956
|
+
.col[data-v-6da6fbe2]:has(.bagel-input) {
|
|
978
957
|
padding: 0rem 0.25rem;
|
|
979
958
|
}
|
|
980
|
-
.col > div[data-v-
|
|
959
|
+
.col > div[data-v-6da6fbe2] {
|
|
981
960
|
display: flex;
|
|
982
961
|
gap: 0.5rem;
|
|
983
962
|
}
|
|
984
|
-
.max-col-width[data-v-
|
|
963
|
+
.max-col-width[data-v-6da6fbe2] {
|
|
985
964
|
max-width: 30vw;
|
|
986
965
|
overflow: hidden;
|
|
987
966
|
text-overflow: ellipsis;
|
|
988
967
|
}
|
|
989
|
-
.col.check .bgl_icon-font[data-v-
|
|
968
|
+
.col.check .bgl_icon-font[data-v-6da6fbe2] {
|
|
990
969
|
border-radius: 100%;
|
|
991
970
|
background: var(--bgl-blue-20);
|
|
992
971
|
color: var(--bgl-primary);
|
|
@@ -997,35 +976,35 @@ th[data-v-f795f660] {
|
|
|
997
976
|
justify-content: center;
|
|
998
977
|
margin-top: -2px;
|
|
999
978
|
}
|
|
1000
|
-
.rows[data-v-
|
|
979
|
+
.rows[data-v-6da6fbe2] {
|
|
1001
980
|
font-size: 0.88em;
|
|
1002
981
|
}
|
|
1003
|
-
.table-list[data-v-
|
|
982
|
+
.table-list[data-v-6da6fbe2] {
|
|
1004
983
|
height: 100%;
|
|
1005
984
|
position: relative;
|
|
1006
985
|
padding-left: 0 !important;
|
|
1007
986
|
padding-right: 0 !important;
|
|
1008
987
|
overflow: auto;
|
|
1009
988
|
}
|
|
1010
|
-
.BagelTable .table-list[data-v-
|
|
989
|
+
.BagelTable .table-list[data-v-6da6fbe2] {
|
|
1011
990
|
overflow: unset;
|
|
1012
991
|
}
|
|
1013
|
-
.row-item[data-v-
|
|
1014
|
-
height: var(--
|
|
992
|
+
.row-item[data-v-6da6fbe2] {
|
|
993
|
+
height: var(--70bc72ee);
|
|
1015
994
|
transition: all 200ms ease;
|
|
1016
995
|
}
|
|
1017
|
-
.row-item[data-v-
|
|
996
|
+
.row-item[data-v-6da6fbe2]:hover {
|
|
1018
997
|
background: var(--bgl-gray-light);
|
|
1019
998
|
}
|
|
1020
|
-
.row-item input[type='checkbox'][data-v-
|
|
999
|
+
.row-item input[type='checkbox'][data-v-6da6fbe2] {
|
|
1021
1000
|
margin-top: 0.45rem !important;
|
|
1022
1001
|
accent-color: var(--bgl-accent-color);
|
|
1023
1002
|
}
|
|
1024
|
-
.infinite-wrapper[data-v-
|
|
1003
|
+
.infinite-wrapper[data-v-6da6fbe2] {
|
|
1025
1004
|
overflow-y: auto;
|
|
1026
1005
|
width: 100%;
|
|
1027
1006
|
}
|
|
1028
|
-
input[type='checkbox'][data-v-
|
|
1007
|
+
input[type='checkbox'][data-v-6da6fbe2] {
|
|
1029
1008
|
margin-top: 0.3rem !important;
|
|
1030
1009
|
accent-color: var(--bgl-accent-color);
|
|
1031
1010
|
transform: scale(1.2);
|
|
@@ -1037,7 +1016,7 @@ input[type='checkbox'][data-v-f795f660] {
|
|
|
1037
1016
|
height: 0.85rem;
|
|
1038
1017
|
width: 0.85rem;
|
|
1039
1018
|
}
|
|
1040
|
-
input[type='checkbox'][data-v-
|
|
1019
|
+
input[type='checkbox'][data-v-6da6fbe2]::before {
|
|
1041
1020
|
content: '';
|
|
1042
1021
|
height: 0.85rem;
|
|
1043
1022
|
width: 0.85rem;
|
|
@@ -1050,18 +1029,18 @@ input[type='checkbox'][data-v-f795f660]::before {
|
|
|
1050
1029
|
transform: scale(1);
|
|
1051
1030
|
position: absolute;
|
|
1052
1031
|
}
|
|
1053
|
-
input[type='checkbox'][data-v-
|
|
1032
|
+
input[type='checkbox'][data-v-6da6fbe2]:hover::before {
|
|
1054
1033
|
opacity: 0.2;
|
|
1055
1034
|
transform: scale(2);
|
|
1056
1035
|
}
|
|
1057
|
-
[lang='he'] [dir='ltr'][data-v-
|
|
1036
|
+
[lang='he'] [dir='ltr'][data-v-6da6fbe2] {
|
|
1058
1037
|
text-align: right;
|
|
1059
1038
|
}
|
|
1060
|
-
th input[type='checkbox'][data-v-
|
|
1039
|
+
th input[type='checkbox'][data-v-6da6fbe2] {
|
|
1061
1040
|
transform: translateY(0.2rem) scale(1.2);
|
|
1062
1041
|
accent-color: var(--bgl-accent-color);
|
|
1063
1042
|
}
|
|
1064
|
-
th[data-v-
|
|
1043
|
+
th[data-v-6da6fbe2]::after {
|
|
1065
1044
|
content: '';
|
|
1066
1045
|
border-bottom: 1px solid var(--border-color);
|
|
1067
1046
|
position: absolute;
|
|
@@ -1069,24 +1048,24 @@ th[data-v-f795f660]::after {
|
|
|
1069
1048
|
right: 0;
|
|
1070
1049
|
bottom: -1px;
|
|
1071
1050
|
}
|
|
1072
|
-
tr[data-v-
|
|
1051
|
+
tr[data-v-6da6fbe2] {
|
|
1073
1052
|
border-bottom: 1px solid var(--border-color);
|
|
1074
1053
|
cursor: pointer;
|
|
1075
1054
|
align-items: center;
|
|
1076
1055
|
}
|
|
1077
|
-
td[data-v-
|
|
1078
|
-
th[data-v-
|
|
1056
|
+
td[data-v-6da6fbe2],
|
|
1057
|
+
th[data-v-6da6fbe2] {
|
|
1079
1058
|
white-space: nowrap;
|
|
1080
1059
|
padding: 0.75rem 0.65rem;
|
|
1081
1060
|
transition: var(--bgl-transition);
|
|
1082
1061
|
line-height: 1;
|
|
1083
1062
|
}
|
|
1084
|
-
tbody tr[data-v-
|
|
1063
|
+
tbody tr[data-v-6da6fbe2] {
|
|
1085
1064
|
font-size: 0.88em;
|
|
1086
|
-
height: var(--
|
|
1065
|
+
height: var(--70bc72ee);
|
|
1087
1066
|
transition: all 200ms ease;
|
|
1088
1067
|
}
|
|
1089
|
-
tbody tr[data-v-
|
|
1068
|
+
tbody tr[data-v-6da6fbe2]:hover {
|
|
1090
1069
|
background: var(--bgl-gray-light);
|
|
1091
1070
|
}
|
|
1092
1071
|
|
|
@@ -2615,13 +2594,13 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2615
2594
|
font-family: 'Font Awesome 6 Brands', serif !important;
|
|
2616
2595
|
}
|
|
2617
2596
|
|
|
2618
|
-
.img-web-kit[data-v-
|
|
2597
|
+
.img-web-kit[data-v-eed047eb] {
|
|
2619
2598
|
max-width: 100%;
|
|
2620
2599
|
vertical-align: middle;
|
|
2621
2600
|
border: 0;
|
|
2622
2601
|
width: 100%;
|
|
2623
2602
|
}
|
|
2624
|
-
.error-image[data-v-
|
|
2603
|
+
.error-image[data-v-eed047eb] {
|
|
2625
2604
|
background-color: var(--skeleton-bg);
|
|
2626
2605
|
}
|
|
2627
2606
|
|
|
@@ -2915,7 +2894,7 @@ button.list-item {
|
|
|
2915
2894
|
border-bottom: none;
|
|
2916
2895
|
}
|
|
2917
2896
|
.list-item:hover,
|
|
2918
|
-
.list-item.router-link-active {
|
|
2897
|
+
.list-item.router-link-exact-active {
|
|
2919
2898
|
background-color: var(--bgl-primary-tint);
|
|
2920
2899
|
}
|
|
2921
2900
|
.notClickable:hover{
|
|
@@ -8440,30 +8419,146 @@ to {
|
|
|
8440
8419
|
display: grid;
|
|
8441
8420
|
grid-template-columns: 1fr;
|
|
8442
8421
|
grid-template-rows: 1fr;
|
|
8443
|
-
}.grid-wrap-50
|
|
8422
|
+
}.grid-wrap-50,
|
|
8423
|
+
.grid-wrap-50-fit {
|
|
8444
8424
|
grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr));
|
|
8445
8425
|
height: max-content;
|
|
8446
8426
|
width: 100%;
|
|
8447
|
-
}.grid-wrap-100
|
|
8427
|
+
}.grid-wrap-100,
|
|
8428
|
+
.grid-wrap-100-fit {
|
|
8448
8429
|
grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
|
|
8449
8430
|
height: max-content;
|
|
8450
8431
|
width: 100%;
|
|
8451
|
-
}.grid-wrap-
|
|
8432
|
+
}.grid-wrap-150,
|
|
8433
|
+
.grid-wrap-150-fit {
|
|
8434
|
+
grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
|
|
8435
|
+
height: max-content;
|
|
8436
|
+
width: 100%;
|
|
8437
|
+
}.grid-wrap-200,
|
|
8438
|
+
.grid-wrap-200-fit {
|
|
8452
8439
|
grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
|
|
8453
8440
|
height: max-content;
|
|
8454
8441
|
width: 100%;
|
|
8455
|
-
}.grid-wrap-
|
|
8442
|
+
}.grid-wrap-250,
|
|
8443
|
+
.grid-wrap-250-fit {
|
|
8444
|
+
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
|
|
8445
|
+
height: max-content;
|
|
8446
|
+
width: 100%;
|
|
8447
|
+
}.grid-wrap-300,
|
|
8448
|
+
.grid-wrap-300-fit {
|
|
8456
8449
|
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
|
|
8457
8450
|
height: max-content;
|
|
8458
8451
|
width: 100%;
|
|
8459
|
-
}.grid-wrap-
|
|
8452
|
+
}.grid-wrap-350,
|
|
8453
|
+
.grid-wrap-350-fit {
|
|
8454
|
+
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
|
|
8455
|
+
height: max-content;
|
|
8456
|
+
width: 100%;
|
|
8457
|
+
}.grid-wrap-400,
|
|
8458
|
+
.grid-wrap-400-fit {
|
|
8460
8459
|
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
|
|
8461
8460
|
height: max-content;
|
|
8462
8461
|
width: 100%;
|
|
8463
|
-
}.grid-wrap-
|
|
8462
|
+
}.grid-wrap-450,
|
|
8463
|
+
.grid-wrap-450-fit {
|
|
8464
|
+
grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
|
|
8465
|
+
height: max-content;
|
|
8466
|
+
width: 100%;
|
|
8467
|
+
}.grid-wrap-500,
|
|
8468
|
+
.grid-wrap-500-fit {
|
|
8464
8469
|
grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
|
|
8465
8470
|
height: max-content;
|
|
8466
8471
|
width: 100%;
|
|
8472
|
+
}.grid-wrap-550,
|
|
8473
|
+
.grid-wrap-550-fit {
|
|
8474
|
+
grid-template-columns: repeat(auto-fit, minmax(min(550px, 100%), 1fr));
|
|
8475
|
+
height: max-content;
|
|
8476
|
+
width: 100%;
|
|
8477
|
+
}.grid-wrap-600,
|
|
8478
|
+
.grid-wrap-600-fit {
|
|
8479
|
+
grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
|
|
8480
|
+
height: max-content;
|
|
8481
|
+
width: 100%;
|
|
8482
|
+
}.grid-wrap-650,
|
|
8483
|
+
.grid-wrap-650-fit {
|
|
8484
|
+
grid-template-columns: repeat(auto-fit, minmax(min(650px, 100%), 1fr));
|
|
8485
|
+
height: max-content;
|
|
8486
|
+
width: 100%;
|
|
8487
|
+
}.grid-wrap-700,
|
|
8488
|
+
.grid-wrap-700-fit {
|
|
8489
|
+
grid-template-columns: repeat(auto-fit, minmax(min(700px, 100%), 1fr));
|
|
8490
|
+
height: max-content;
|
|
8491
|
+
width: 100%;
|
|
8492
|
+
}.grid-wrap-750,
|
|
8493
|
+
.grid-wrap-750-fit {
|
|
8494
|
+
grid-template-columns: repeat(auto-fit, minmax(min(750px, 100%), 1fr));
|
|
8495
|
+
height: max-content;
|
|
8496
|
+
width: 100%;
|
|
8497
|
+
}.grid-wrap-800,
|
|
8498
|
+
.grid-wrap-800-fit {
|
|
8499
|
+
grid-template-columns: repeat(auto-fit, minmax(min(800px, 100%), 1fr));
|
|
8500
|
+
height: max-content;
|
|
8501
|
+
width: 100%;
|
|
8502
|
+
}.grid-wrap-850,
|
|
8503
|
+
.grid-wrap-850-fit {
|
|
8504
|
+
grid-template-columns: repeat(auto-fit, minmax(min(850px, 100%), 1fr));
|
|
8505
|
+
height: max-content;
|
|
8506
|
+
width: 100%;
|
|
8507
|
+
}.grid-wrap-900,
|
|
8508
|
+
.grid-wrap-900-fit {
|
|
8509
|
+
grid-template-columns: repeat(auto-fit, minmax(min(900px, 100%), 1fr));
|
|
8510
|
+
height: max-content;
|
|
8511
|
+
width: 100%;
|
|
8512
|
+
}.grid-wrap-950,
|
|
8513
|
+
.grid-wrap-950-fit {
|
|
8514
|
+
grid-template-columns: repeat(auto-fit, minmax(min(950px, 100%), 1fr));
|
|
8515
|
+
height: max-content;
|
|
8516
|
+
width: 100%;
|
|
8517
|
+
}.grid-wrap-1000,
|
|
8518
|
+
.grid-wrap-1000-fit {
|
|
8519
|
+
grid-template-columns: repeat(auto-fit, minmax(min(1000px, 100%), 1fr));
|
|
8520
|
+
height: max-content;
|
|
8521
|
+
width: 100%;
|
|
8522
|
+
}.grid-wrap-50-fill {
|
|
8523
|
+
grid-template-columns: repeat(auto-fill, minmax(min(50px, 100%), 1fr));
|
|
8524
|
+
}.grid-wrap-100-fill {
|
|
8525
|
+
grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), 1fr));
|
|
8526
|
+
}.grid-wrap-150-fill {
|
|
8527
|
+
grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
|
|
8528
|
+
}.grid-wrap-200-fill {
|
|
8529
|
+
grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
|
|
8530
|
+
}.grid-wrap-250-fill {
|
|
8531
|
+
grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
|
|
8532
|
+
}.grid-wrap-300-fill {
|
|
8533
|
+
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
|
|
8534
|
+
}.grid-wrap-350-fill {
|
|
8535
|
+
grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
|
|
8536
|
+
}.grid-wrap-400-fill {
|
|
8537
|
+
grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
|
|
8538
|
+
}.grid-wrap-450-fill {
|
|
8539
|
+
grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
|
|
8540
|
+
}.grid-wrap-500-fill {
|
|
8541
|
+
grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
|
|
8542
|
+
}.grid-wrap-550-fill {
|
|
8543
|
+
grid-template-columns: repeat(auto-fill, minmax(min(550px, 100%), 1fr));
|
|
8544
|
+
}.grid-wrap-600-fill {
|
|
8545
|
+
grid-template-columns: repeat(auto-fill, minmax(min(600px, 100%), 1fr));
|
|
8546
|
+
}.grid-wrap-650-fill {
|
|
8547
|
+
grid-template-columns: repeat(auto-fill, minmax(min(650px, 100%), 1fr));
|
|
8548
|
+
}.grid-wrap-700-fill {
|
|
8549
|
+
grid-template-columns: repeat(auto-fill, minmax(min(700px, 100%), 1fr));
|
|
8550
|
+
}.grid-wrap-750-fill {
|
|
8551
|
+
grid-template-columns: repeat(auto-fill, minmax(min(750px, 100%), 1fr));
|
|
8552
|
+
}.grid-wrap-800-fill {
|
|
8553
|
+
grid-template-columns: repeat(auto-fill, minmax(min(800px, 100%), 1fr));
|
|
8554
|
+
}.grid-wrap-850-fill {
|
|
8555
|
+
grid-template-columns: repeat(auto-fill, minmax(min(850px, 100%), 1fr));
|
|
8556
|
+
}.grid-wrap-900-fill {
|
|
8557
|
+
grid-template-columns: repeat(auto-fill, minmax(min(900px, 100%), 1fr));
|
|
8558
|
+
}.grid-wrap-950-fill {
|
|
8559
|
+
grid-template-columns: repeat(auto-fill, minmax(min(950px, 100%), 1fr));
|
|
8560
|
+
}.grid-wrap-1000-fill {
|
|
8561
|
+
grid-template-columns: repeat(auto-fill, minmax(min(1000px, 100%), 1fr));
|
|
8467
8562
|
}.grid-wrap-1 {
|
|
8468
8563
|
grid-template-columns: repeat(1, 1fr);
|
|
8469
8564
|
height: max-content;
|
|
@@ -14031,40 +14126,227 @@ to {
|
|
|
14031
14126
|
}
|
|
14032
14127
|
|
|
14033
14128
|
|
|
14034
|
-
|
|
14129
|
+
|
|
14130
|
+
.m_grid-wrap-50,
|
|
14131
|
+
.m_grid-wrap-50-fit {
|
|
14035
14132
|
grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr));
|
|
14036
14133
|
height: max-content;
|
|
14037
|
-
width: 100
|
|
14134
|
+
width: 100%;
|
|
14038
14135
|
}
|
|
14039
14136
|
|
|
14040
|
-
.m_grid-wrap-100
|
|
14137
|
+
.m_grid-wrap-100,
|
|
14138
|
+
.m_grid-wrap-100-fit {
|
|
14041
14139
|
grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
|
|
14042
14140
|
height: max-content;
|
|
14043
|
-
width: 100
|
|
14141
|
+
width: 100%;
|
|
14142
|
+
}
|
|
14143
|
+
|
|
14144
|
+
.m_grid-wrap-150,
|
|
14145
|
+
.m_grid-wrap-150-fit {
|
|
14146
|
+
grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
|
|
14147
|
+
height: max-content;
|
|
14148
|
+
width: 100%;
|
|
14044
14149
|
}
|
|
14045
14150
|
|
|
14046
|
-
.m_grid-wrap-200
|
|
14151
|
+
.m_grid-wrap-200,
|
|
14152
|
+
.m_grid-wrap-200-fit {
|
|
14047
14153
|
grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
|
|
14048
14154
|
height: max-content;
|
|
14049
|
-
width: 100
|
|
14155
|
+
width: 100%;
|
|
14156
|
+
}
|
|
14157
|
+
|
|
14158
|
+
.m_grid-wrap-250,
|
|
14159
|
+
.m_grid-wrap-250-fit {
|
|
14160
|
+
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
|
|
14161
|
+
height: max-content;
|
|
14162
|
+
width: 100%;
|
|
14050
14163
|
}
|
|
14051
14164
|
|
|
14052
|
-
.m_grid-wrap-300
|
|
14165
|
+
.m_grid-wrap-300,
|
|
14166
|
+
.m_grid-wrap-300-fit {
|
|
14053
14167
|
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
|
|
14054
14168
|
height: max-content;
|
|
14055
|
-
width: 100
|
|
14169
|
+
width: 100%;
|
|
14170
|
+
}
|
|
14171
|
+
|
|
14172
|
+
.m_grid-wrap-350,
|
|
14173
|
+
.m_grid-wrap-350-fit {
|
|
14174
|
+
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
|
|
14175
|
+
height: max-content;
|
|
14176
|
+
width: 100%;
|
|
14056
14177
|
}
|
|
14057
14178
|
|
|
14058
|
-
.m_grid-wrap-400
|
|
14179
|
+
.m_grid-wrap-400,
|
|
14180
|
+
.m_grid-wrap-400-fit {
|
|
14059
14181
|
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
|
|
14060
14182
|
height: max-content;
|
|
14061
|
-
width: 100
|
|
14183
|
+
width: 100%;
|
|
14062
14184
|
}
|
|
14063
14185
|
|
|
14064
|
-
.m_grid-wrap-
|
|
14186
|
+
.m_grid-wrap-450,
|
|
14187
|
+
.m_grid-wrap-450-fit {
|
|
14188
|
+
grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
|
|
14189
|
+
height: max-content;
|
|
14190
|
+
width: 100%;
|
|
14191
|
+
}
|
|
14192
|
+
|
|
14193
|
+
.m_grid-wrap-500,
|
|
14194
|
+
.m_grid-wrap-500-fit {
|
|
14065
14195
|
grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
|
|
14066
14196
|
height: max-content;
|
|
14067
|
-
width: 100
|
|
14197
|
+
width: 100%;
|
|
14198
|
+
}
|
|
14199
|
+
|
|
14200
|
+
.m_grid-wrap-550,
|
|
14201
|
+
.m_grid-wrap-550-fit {
|
|
14202
|
+
grid-template-columns: repeat(auto-fit, minmax(min(550px, 100%), 1fr));
|
|
14203
|
+
height: max-content;
|
|
14204
|
+
width: 100%;
|
|
14205
|
+
}
|
|
14206
|
+
|
|
14207
|
+
.m_grid-wrap-600,
|
|
14208
|
+
.m_grid-wrap-600-fit {
|
|
14209
|
+
grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
|
|
14210
|
+
height: max-content;
|
|
14211
|
+
width: 100%;
|
|
14212
|
+
}
|
|
14213
|
+
|
|
14214
|
+
.m_grid-wrap-650,
|
|
14215
|
+
.m_grid-wrap-650-fit {
|
|
14216
|
+
grid-template-columns: repeat(auto-fit, minmax(min(650px, 100%), 1fr));
|
|
14217
|
+
height: max-content;
|
|
14218
|
+
width: 100%;
|
|
14219
|
+
}
|
|
14220
|
+
|
|
14221
|
+
.m_grid-wrap-700,
|
|
14222
|
+
.m_grid-wrap-700-fit {
|
|
14223
|
+
grid-template-columns: repeat(auto-fit, minmax(min(700px, 100%), 1fr));
|
|
14224
|
+
height: max-content;
|
|
14225
|
+
width: 100%;
|
|
14226
|
+
}
|
|
14227
|
+
|
|
14228
|
+
.m_grid-wrap-750,
|
|
14229
|
+
.m_grid-wrap-750-fit {
|
|
14230
|
+
grid-template-columns: repeat(auto-fit, minmax(min(750px, 100%), 1fr));
|
|
14231
|
+
height: max-content;
|
|
14232
|
+
width: 100%;
|
|
14233
|
+
}
|
|
14234
|
+
|
|
14235
|
+
.m_grid-wrap-800,
|
|
14236
|
+
.m_grid-wrap-800-fit {
|
|
14237
|
+
grid-template-columns: repeat(auto-fit, minmax(min(800px, 100%), 1fr));
|
|
14238
|
+
height: max-content;
|
|
14239
|
+
width: 100%;
|
|
14240
|
+
}
|
|
14241
|
+
|
|
14242
|
+
.m_grid-wrap-850,
|
|
14243
|
+
.m_grid-wrap-850-fit {
|
|
14244
|
+
grid-template-columns: repeat(auto-fit, minmax(min(850px, 100%), 1fr));
|
|
14245
|
+
height: max-content;
|
|
14246
|
+
width: 100%;
|
|
14247
|
+
}
|
|
14248
|
+
|
|
14249
|
+
.m_grid-wrap-900,
|
|
14250
|
+
.m_grid-wrap-900-fit {
|
|
14251
|
+
grid-template-columns: repeat(auto-fit, minmax(min(900px, 100%), 1fr));
|
|
14252
|
+
height: max-content;
|
|
14253
|
+
width: 100%;
|
|
14254
|
+
}
|
|
14255
|
+
|
|
14256
|
+
.m_grid-wrap-950,
|
|
14257
|
+
.m_grid-wrap-950-fit {
|
|
14258
|
+
grid-template-columns: repeat(auto-fit, minmax(min(950px, 100%), 1fr));
|
|
14259
|
+
height: max-content;
|
|
14260
|
+
width: 100%;
|
|
14261
|
+
}
|
|
14262
|
+
|
|
14263
|
+
.m_grid-wrap-1000,
|
|
14264
|
+
.m_grid-wrap-1000-fit {
|
|
14265
|
+
grid-template-columns: repeat(auto-fit, minmax(min(1000px, 100%), 1fr));
|
|
14266
|
+
height: max-content;
|
|
14267
|
+
width: 100%;
|
|
14268
|
+
}
|
|
14269
|
+
|
|
14270
|
+
|
|
14271
|
+
|
|
14272
|
+
.m_grid-wrap-50-fill {
|
|
14273
|
+
grid-template-columns: repeat(auto-fill, minmax(min(50px, 100%), 1fr));
|
|
14274
|
+
}
|
|
14275
|
+
|
|
14276
|
+
.m_grid-wrap-100-fill {
|
|
14277
|
+
grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), 1fr));
|
|
14278
|
+
}
|
|
14279
|
+
|
|
14280
|
+
.m_grid-wrap-150-fill {
|
|
14281
|
+
grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
|
|
14282
|
+
}
|
|
14283
|
+
|
|
14284
|
+
.m_grid-wrap-200-fill {
|
|
14285
|
+
grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
|
|
14286
|
+
}
|
|
14287
|
+
|
|
14288
|
+
.m_grid-wrap-250-fill {
|
|
14289
|
+
grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
|
|
14290
|
+
}
|
|
14291
|
+
|
|
14292
|
+
.m_grid-wrap-300-fill {
|
|
14293
|
+
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
|
|
14294
|
+
}
|
|
14295
|
+
|
|
14296
|
+
.m_grid-wrap-350-fill {
|
|
14297
|
+
grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
|
|
14298
|
+
}
|
|
14299
|
+
|
|
14300
|
+
.m_grid-wrap-400-fill {
|
|
14301
|
+
grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
|
|
14302
|
+
}
|
|
14303
|
+
|
|
14304
|
+
.m_grid-wrap-450-fill {
|
|
14305
|
+
grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
|
|
14306
|
+
}
|
|
14307
|
+
|
|
14308
|
+
.m_grid-wrap-500-fill {
|
|
14309
|
+
grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
|
|
14310
|
+
}
|
|
14311
|
+
|
|
14312
|
+
.m_grid-wrap-550-fill {
|
|
14313
|
+
grid-template-columns: repeat(auto-fill, minmax(min(550px, 100%), 1fr));
|
|
14314
|
+
}
|
|
14315
|
+
|
|
14316
|
+
.m_grid-wrap-600-fill {
|
|
14317
|
+
grid-template-columns: repeat(auto-fill, minmax(min(600px, 100%), 1fr));
|
|
14318
|
+
}
|
|
14319
|
+
|
|
14320
|
+
.m_grid-wrap-650-fill {
|
|
14321
|
+
grid-template-columns: repeat(auto-fill, minmax(min(650px, 100%), 1fr));
|
|
14322
|
+
}
|
|
14323
|
+
|
|
14324
|
+
.m_grid-wrap-700-fill {
|
|
14325
|
+
grid-template-columns: repeat(auto-fill, minmax(min(700px, 100%), 1fr));
|
|
14326
|
+
}
|
|
14327
|
+
|
|
14328
|
+
.m_grid-wrap-750-fill {
|
|
14329
|
+
grid-template-columns: repeat(auto-fill, minmax(min(750px, 100%), 1fr));
|
|
14330
|
+
}
|
|
14331
|
+
|
|
14332
|
+
.m_grid-wrap-800-fill {
|
|
14333
|
+
grid-template-columns: repeat(auto-fill, minmax(min(800px, 100%), 1fr));
|
|
14334
|
+
}
|
|
14335
|
+
|
|
14336
|
+
.m_grid-wrap-850-fill {
|
|
14337
|
+
grid-template-columns: repeat(auto-fill, minmax(min(850px, 100%), 1fr));
|
|
14338
|
+
}
|
|
14339
|
+
|
|
14340
|
+
.m_grid-wrap-900-fill {
|
|
14341
|
+
grid-template-columns: repeat(auto-fill, minmax(min(900px, 100%), 1fr));
|
|
14342
|
+
}
|
|
14343
|
+
|
|
14344
|
+
.m_grid-wrap-950-fill {
|
|
14345
|
+
grid-template-columns: repeat(auto-fill, minmax(min(950px, 100%), 1fr));
|
|
14346
|
+
}
|
|
14347
|
+
|
|
14348
|
+
.m_grid-wrap-1000-fill {
|
|
14349
|
+
grid-template-columns: repeat(auto-fill, minmax(min(1000px, 100%), 1fr));
|
|
14068
14350
|
}
|
|
14069
14351
|
|
|
14070
14352
|
.m_grid-wrap-1 {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SelectInput, TextInput } from '..';
|
|
1
|
+
import { ArrayAttrs, FieldArray, SelectInput, TextInput } from '..';
|
|
2
2
|
import { Paths, Get, IterableElement, OmitIndexSignature } from 'type-fest';
|
|
3
3
|
import { ToString } from 'type-fest/source/internal';
|
|
4
4
|
import { LiteralStringUnion } from 'type-fest/source/literal-union';
|
|
@@ -73,6 +73,10 @@ export interface SelectBagelField<T, P extends Path<T, PO>, PO extends PathsOpti
|
|
|
73
73
|
$el: 'select' | ComponentExposed<typeof SelectInput>;
|
|
74
74
|
type?: string;
|
|
75
75
|
}
|
|
76
|
+
export interface ArrayBagelField<T, P extends Path<T, PO>, PO extends PathsOptions = DefaultPathsOptions> extends BaseBagelField<T, P, PO> {
|
|
77
|
+
$el: 'array' | ComponentExposed<typeof FieldArray>;
|
|
78
|
+
attrs?: ArrayAttrs<T, P>;
|
|
79
|
+
}
|
|
76
80
|
export interface ValidateInputBaseT {
|
|
77
81
|
validate?: ValidationFn<{
|
|
78
82
|
[key: string]: unknown;
|