@bagelink/vue 0.0.1262 → 0.0.1270

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/components/AddressSearch.vue.d.ts +6 -0
  2. package/dist/components/AddressSearch.vue.d.ts.map +1 -1
  3. package/dist/components/DropDown.vue.d.ts +51 -48
  4. package/dist/components/DropDown.vue.d.ts.map +1 -1
  5. package/dist/components/Icon/Icon.vue.d.ts.map +1 -1
  6. package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
  7. package/dist/components/form/inputs/DateInput.vue.d.ts +4 -1
  8. package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
  9. package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
  10. package/dist/components/form/inputs/RadioGroup.vue.d.ts +1 -1
  11. package/dist/components/form/inputs/RichText/composables/useCommands.d.ts.map +1 -1
  12. package/dist/components/form/inputs/RichText/composables/useEditor.d.ts +31 -23
  13. package/dist/components/form/inputs/RichText/composables/useEditor.d.ts.map +1 -1
  14. package/dist/components/form/inputs/RichText/composables/useEditorKeyboard.d.ts +2 -1
  15. package/dist/components/form/inputs/RichText/composables/useEditorKeyboard.d.ts.map +1 -1
  16. package/dist/components/form/inputs/RichText/config.d.ts +2 -1
  17. package/dist/components/form/inputs/RichText/config.d.ts.map +1 -1
  18. package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
  19. package/dist/components/form/inputs/RichText/utils/commands.d.ts +1 -0
  20. package/dist/components/form/inputs/RichText/utils/commands.d.ts.map +1 -1
  21. package/dist/components/form/inputs/RichText/utils/media.d.ts +5 -3
  22. package/dist/components/form/inputs/RichText/utils/media.d.ts.map +1 -1
  23. package/dist/components/form/inputs/RichText/utils/selection.d.ts.map +1 -1
  24. package/dist/components/form/inputs/SelectInput.vue.d.ts +12 -0
  25. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  26. package/dist/components/form/inputs/TelInput.vue.d.ts +8 -2
  27. package/dist/components/form/inputs/TelInput.vue.d.ts.map +1 -1
  28. package/dist/editor-7QC0nG_c.js +4 -0
  29. package/dist/editor-CpMNx6Eo.cjs +4 -0
  30. package/dist/index.cjs +1392 -820
  31. package/dist/index.mjs +1392 -820
  32. package/dist/style.css +100 -87
  33. package/package.json +1 -1
  34. package/src/components/DataTable/DataTable.vue +1 -1
  35. package/src/components/Dropdown.vue +5 -2
  36. package/src/components/Icon/Icon.vue +14 -0
  37. package/src/components/form/FieldArray.vue +3 -0
  38. package/src/components/form/inputs/DateInput.vue +341 -162
  39. package/src/components/form/inputs/PasswordInput.vue +5 -1
  40. package/src/components/form/inputs/RichText/components/EditorToolbar.vue +2 -2
  41. package/src/components/form/inputs/RichText/composables/useCommands.ts +53 -97
  42. package/src/components/form/inputs/RichText/composables/useEditor.ts +377 -270
  43. package/src/components/form/inputs/RichText/composables/useEditorKeyboard.ts +124 -58
  44. package/src/components/form/inputs/RichText/config.ts +27 -3
  45. package/src/components/form/inputs/RichText/editor.css +29 -0
  46. package/src/components/form/inputs/RichText/index.vue +129 -55
  47. package/src/components/form/inputs/RichText/richTextTypes.d.ts +35 -49
  48. package/src/components/form/inputs/RichText/utils/commands.ts +181 -0
  49. package/src/components/form/inputs/RichText/utils/media.ts +64 -3
  50. package/src/components/form/inputs/RichText/utils/selection.ts +40 -5
  51. package/src/styles/text.css +0 -8
package/dist/style.css CHANGED
@@ -1015,22 +1015,22 @@ display: block;
1015
1015
  font-size: 0.95rem;
1016
1016
  }
1017
1017
 
1018
- .table-list-wrap[data-v-8e14fc71] {
1018
+ .table-list-wrap[data-v-89f6838b] {
1019
1019
  min-height: 150px;
1020
1020
  }
1021
- .selected[data-v-8e14fc71] {
1021
+ .selected[data-v-89f6838b] {
1022
1022
  background: var(--bgl-primary-tint);
1023
1023
  }
1024
- tbody tr.selected[data-v-8e14fc71]:hover {
1024
+ tbody tr.selected[data-v-89f6838b]:hover {
1025
1025
  background: var(--bgl-primary-light);
1026
1026
  }
1027
- .loading-table[data-v-8e14fc71] {
1027
+ .loading-table[data-v-89f6838b] {
1028
1028
  position: relative;
1029
1029
  }
1030
- .inset[data-v-8e14fc71] {
1030
+ .inset[data-v-89f6838b] {
1031
1031
  inset: 0;
1032
1032
  }
1033
- .loading-table-animation[data-v-8e14fc71] {
1033
+ .loading-table-animation[data-v-89f6838b] {
1034
1034
  --size: 60px;
1035
1035
  top: 30vh;
1036
1036
  inset-inline-start: calc(50% - var(--size));
@@ -1038,9 +1038,9 @@ tbody tr.selected[data-v-8e14fc71]:hover {
1038
1038
  border-top: 4px solid var(--bgl-primary);
1039
1039
  width: var(--size);
1040
1040
  height: var(--size);
1041
- animation: loading-table-8e14fc71 1s linear infinite;
1041
+ animation: loading-table-89f6838b 1s linear infinite;
1042
1042
  }
1043
- @keyframes loading-table-8e14fc71 {
1043
+ @keyframes loading-table-89f6838b {
1044
1044
  0% {
1045
1045
  transform: translate(-50%, -50%) rotate(0deg);
1046
1046
  }
@@ -1048,55 +1048,55 @@ tbody tr.selected[data-v-8e14fc71]:hover {
1048
1048
  transform: translate(-50%, -50%) rotate(360deg);
1049
1049
  }
1050
1050
  }
1051
- .list-arrows[data-v-8e14fc71] {
1051
+ .list-arrows[data-v-89f6838b] {
1052
1052
  opacity: 0;
1053
1053
  }
1054
- .list-arrows .bgl_icon-font[data-v-8e14fc71] {
1054
+ .list-arrows .bgl_icon-font[data-v-89f6838b] {
1055
1055
  transition: all ease-in-out 0.2s;
1056
1056
  }
1057
- .list-arrows.sorted[data-v-8e14fc71] {
1057
+ .list-arrows.sorted[data-v-89f6838b] {
1058
1058
  opacity: 1;
1059
1059
  }
1060
- .col img[data-v-8e14fc71] {
1060
+ .col img[data-v-89f6838b] {
1061
1061
  height: 35px;
1062
1062
  margin-top: -14px;
1063
1063
  margin-bottom: -14px;
1064
1064
  border-radius: 5px;
1065
1065
  object-fit: cover;
1066
1066
  }
1067
- .col[data-v-8e14fc71]:has(img) {
1067
+ .col[data-v-89f6838b]:has(img) {
1068
1068
  padding-inline-end: 0.5rem;
1069
1069
  }
1070
- .list-arrows.sorted .desc[data-v-8e14fc71] {
1070
+ .list-arrows.sorted .desc[data-v-89f6838b] {
1071
1071
  transform: rotate(180deg);
1072
1072
  display: inline-block;
1073
1073
  }
1074
- table[data-v-8e14fc71] {
1074
+ table[data-v-89f6838b] {
1075
1075
  border-spacing: 0 15px;
1076
1076
  border-collapse: collapse;
1077
1077
  width: 100%;
1078
1078
  }
1079
- th[data-v-8e14fc71] {
1079
+ th[data-v-89f6838b] {
1080
1080
  font-size: 0.8rem;
1081
1081
  color: var(--bgl-black-tint);
1082
1082
  position: sticky;
1083
1083
  top: 0;
1084
1084
  z-index: 2;
1085
1085
  background: var(--bgl-box-bg);
1086
- height: var(--1ab0cc24);
1086
+ height: var(--40bb5b9a);
1087
1087
  vertical-align: bottom;
1088
1088
  font-weight: 400;
1089
1089
  text-align: start;
1090
1090
  }
1091
- .embedded-field[data-v-8e14fc71] {
1091
+ .embedded-field[data-v-89f6838b] {
1092
1092
  margin-bottom: -0.2rem;
1093
1093
  margin-top: -0.2rem;
1094
1094
  }
1095
- .row[data-v-8e14fc71] {
1095
+ .row[data-v-89f6838b] {
1096
1096
  border-bottom: 1px solid var(--border-color);
1097
1097
  cursor: pointer;
1098
1098
  }
1099
- .row.first-row[data-v-8e14fc71] {
1099
+ .row.first-row[data-v-89f6838b] {
1100
1100
  font-size: 0.8rem;
1101
1101
  color: var(--bgl-black-tint);
1102
1102
  position: sticky;
@@ -1105,7 +1105,7 @@ th[data-v-8e14fc71] {
1105
1105
  background: var(--bgl-box-bg);
1106
1106
  vertical-align: bottom;
1107
1107
  }
1108
- .row.first-row[data-v-8e14fc71]::after {
1108
+ .row.first-row[data-v-89f6838b]::after {
1109
1109
  content: '';
1110
1110
  border-bottom: 1px solid var(--border-color);
1111
1111
  position: absolute;
@@ -1113,11 +1113,11 @@ th[data-v-8e14fc71] {
1113
1113
  right: 0;
1114
1114
  bottom: -1px;
1115
1115
  }
1116
- .first-row .col[data-v-8e14fc71] {
1116
+ .first-row .col[data-v-89f6838b] {
1117
1117
  cursor: pointer;
1118
1118
  background: var(--bgl-box-bg);
1119
1119
  }
1120
- .col[data-v-8e14fc71] {
1120
+ .col[data-v-89f6838b] {
1121
1121
  white-space: nowrap;
1122
1122
  padding: 0.75rem 1rem;
1123
1123
  transition: var(--bgl-transition);
@@ -1127,19 +1127,19 @@ th[data-v-8e14fc71] {
1127
1127
  overflow: hidden;
1128
1128
  max-width: 30vw;
1129
1129
  }
1130
- .col[data-v-8e14fc71]:has(.bagel-input) {
1130
+ .col[data-v-89f6838b]:has(.bagel-input) {
1131
1131
  padding: 0rem 0.25rem;
1132
1132
  }
1133
- .col > div[data-v-8e14fc71] {
1133
+ .col > div[data-v-89f6838b] {
1134
1134
  display: flex;
1135
1135
  gap: 0.5rem;
1136
1136
  }
1137
- .max-col-width[data-v-8e14fc71] {
1137
+ .max-col-width[data-v-89f6838b] {
1138
1138
  max-width: 30vw;
1139
1139
  overflow: hidden;
1140
1140
  text-overflow: ellipsis;
1141
1141
  }
1142
- .col.check .bgl_icon-font[data-v-8e14fc71] {
1142
+ .col.check .bgl_icon-font[data-v-89f6838b] {
1143
1143
  border-radius: 100%;
1144
1144
  background: var(--bgl-blue-20);
1145
1145
  color: var(--bgl-primary);
@@ -1150,35 +1150,35 @@ th[data-v-8e14fc71] {
1150
1150
  justify-content: center;
1151
1151
  margin-top: -2px;
1152
1152
  }
1153
- .rows[data-v-8e14fc71] {
1153
+ .rows[data-v-89f6838b] {
1154
1154
  font-size: 0.88em;
1155
1155
  }
1156
- .table-list[data-v-8e14fc71] {
1156
+ .table-list[data-v-89f6838b] {
1157
1157
  height: 100%;
1158
1158
  position: relative;
1159
1159
  padding-left: 0 !important;
1160
1160
  padding-right: 0 !important;
1161
1161
  overflow: auto;
1162
1162
  }
1163
- .BagelTable .table-list[data-v-8e14fc71] {
1163
+ .BagelTable .table-list[data-v-89f6838b] {
1164
1164
  overflow: unset;
1165
1165
  }
1166
- .row-item[data-v-8e14fc71] {
1167
- height: var(--1ab0cc24);
1166
+ .row-item[data-v-89f6838b] {
1167
+ height: var(--40bb5b9a);
1168
1168
  transition: all 200ms ease;
1169
1169
  }
1170
- .row-item[data-v-8e14fc71]:hover {
1170
+ .row-item[data-v-89f6838b]:hover {
1171
1171
  background: var(--bgl-gray-light);
1172
1172
  }
1173
- .row-item input[type='checkbox'][data-v-8e14fc71] {
1173
+ .row-item input[type='checkbox'][data-v-89f6838b] {
1174
1174
  margin-top: 0.45rem !important;
1175
1175
  accent-color: var(--bgl-accent-color);
1176
1176
  }
1177
- .infinite-wrapper[data-v-8e14fc71] {
1177
+ .infinite-wrapper[data-v-89f6838b] {
1178
1178
  overflow-y: auto;
1179
1179
  width: 100%;
1180
1180
  }
1181
- input[type='checkbox'][data-v-8e14fc71] {
1181
+ input[type='checkbox'][data-v-89f6838b] {
1182
1182
  margin-top: 0.3rem !important;
1183
1183
  accent-color: var(--bgl-accent-color);
1184
1184
  transform: scale(1.2);
@@ -1190,7 +1190,7 @@ input[type='checkbox'][data-v-8e14fc71] {
1190
1190
  height: 0.85rem;
1191
1191
  width: 0.85rem;
1192
1192
  }
1193
- input[type='checkbox'][data-v-8e14fc71]::before {
1193
+ input[type='checkbox'][data-v-89f6838b]::before {
1194
1194
  content: '';
1195
1195
  height: 0.85rem;
1196
1196
  width: 0.85rem;
@@ -1203,18 +1203,18 @@ input[type='checkbox'][data-v-8e14fc71]::before {
1203
1203
  transform: scale(1);
1204
1204
  position: absolute;
1205
1205
  }
1206
- input[type='checkbox'][data-v-8e14fc71]:hover::before {
1206
+ input[type='checkbox'][data-v-89f6838b]:hover::before {
1207
1207
  opacity: 0.2;
1208
1208
  transform: scale(2);
1209
1209
  }
1210
- [lang='he'] [dir='ltr'][data-v-8e14fc71] {
1210
+ [lang='he'] [dir='ltr'][data-v-89f6838b] {
1211
1211
  text-align: right;
1212
1212
  }
1213
- th input[type='checkbox'][data-v-8e14fc71] {
1213
+ th input[type='checkbox'][data-v-89f6838b] {
1214
1214
  transform: translateY(0.2rem) scale(1.2);
1215
1215
  accent-color: var(--bgl-accent-color);
1216
1216
  }
1217
- th[data-v-8e14fc71]::after {
1217
+ th[data-v-89f6838b]::after {
1218
1218
  content: '';
1219
1219
  border-bottom: 1px solid var(--border-color);
1220
1220
  position: absolute;
@@ -1222,24 +1222,24 @@ th[data-v-8e14fc71]::after {
1222
1222
  right: 0;
1223
1223
  bottom: -1px;
1224
1224
  }
1225
- tr[data-v-8e14fc71] {
1225
+ tr[data-v-89f6838b] {
1226
1226
  border-bottom: 1px solid var(--border-color);
1227
1227
  cursor: pointer;
1228
1228
  align-items: center;
1229
1229
  }
1230
- td[data-v-8e14fc71],
1231
- th[data-v-8e14fc71] {
1230
+ td[data-v-89f6838b],
1231
+ th[data-v-89f6838b] {
1232
1232
  white-space: nowrap;
1233
1233
  padding: 0.75rem 0.65rem;
1234
1234
  transition: var(--bgl-transition);
1235
1235
  line-height: 1;
1236
1236
  }
1237
- tbody tr[data-v-8e14fc71] {
1237
+ tbody tr[data-v-89f6838b] {
1238
1238
  font-size: 0.88em;
1239
- height: var(--1ab0cc24);
1239
+ height: var(--40bb5b9a);
1240
1240
  transition: all 200ms ease;
1241
1241
  }
1242
- tbody tr[data-v-8e14fc71]:hover {
1242
+ tbody tr[data-v-89f6838b]:hover {
1243
1243
  background: var(--bgl-gray-light);
1244
1244
  }
1245
1245
 
@@ -1285,6 +1285,9 @@ fieldset[data-v-f7e758e5] {
1285
1285
  .itemBox .custom-select .input {
1286
1286
  background: var(--bgl-white) !important;
1287
1287
  }
1288
+ .itemBox .code-editor-wrap textarea{
1289
+ background: transparent !important;
1290
+ }
1288
1291
  .itemBox .bagel-input{
1289
1292
  margin-bottom: 0.15rem !important;
1290
1293
  }
@@ -1397,69 +1400,69 @@ pre code.hljs{
1397
1400
  outline: none;
1398
1401
  }
1399
1402
 
1400
- .calendar-container[data-v-a2f98d6e] {
1403
+ .calendar-container[data-v-5d1b6a15] {
1401
1404
  max-width: 90vw;
1402
1405
  }
1403
- .calendar-section[data-v-a2f98d6e] {
1406
+ .calendar-section[data-v-5d1b6a15] {
1404
1407
  min-width: 280px;
1405
1408
  }
1406
- .calendar-grid[data-v-a2f98d6e] {
1409
+ .calendar-grid[data-v-5d1b6a15] {
1407
1410
  grid-template-columns: repeat(7, 1fr);
1408
1411
  }
1409
- .month-grid[data-v-a2f98d6e] {
1412
+ .month-grid[data-v-5d1b6a15] {
1410
1413
  grid-template-columns: repeat(3, 1fr);
1411
1414
  grid-template-rows: repeat(4, 1fr);
1412
1415
  }
1413
- .year-grid[data-v-a2f98d6e] {
1416
+ .year-grid[data-v-5d1b6a15] {
1414
1417
  grid-template-columns: repeat(3, 1fr);
1415
1418
  grid-template-rows: repeat(7, 1fr);
1416
1419
  }
1417
- .month-item[data-v-a2f98d6e],
1418
- .year-item[data-v-a2f98d6e] {
1420
+ .month-item[data-v-5d1b6a15],
1421
+ .year-item[data-v-5d1b6a15] {
1419
1422
  background: none;
1420
1423
  color: var(--bgl-text-color);
1421
1424
  }
1422
- .month-item[data-v-a2f98d6e]:hover:not(.disabled),
1423
- .year-item[data-v-a2f98d6e]:hover:not(.disabled) {
1425
+ .month-item[data-v-5d1b6a15]:hover:not(.disabled),
1426
+ .year-item[data-v-5d1b6a15]:hover:not(.disabled) {
1424
1427
  background: var(--bgl-box-bg);
1425
1428
  filter: var(--bgl-hover-filter);
1426
1429
  }
1427
- .month-item[data-v-a2f98d6e]:active:not(.disabled),
1428
- .year-item[data-v-a2f98d6e]:active:not(.disabled) {
1430
+ .month-item[data-v-5d1b6a15]:active:not(.disabled),
1431
+ .year-item[data-v-5d1b6a15]:active:not(.disabled) {
1429
1432
  background: var(--bgl-box-bg);
1430
1433
  filter: var(--bgl-active-filter);
1431
1434
  }
1432
- .month-item.selected[data-v-a2f98d6e],
1433
- .year-item.selected[data-v-a2f98d6e] {
1435
+ .month-item.selected[data-v-5d1b6a15],
1436
+ .year-item.selected[data-v-5d1b6a15] {
1434
1437
  background-color: var(--bgl-primary);
1435
1438
  color: white;
1436
1439
  }
1437
- .month-item.disabled[data-v-a2f98d6e],
1438
- .year-item.disabled[data-v-a2f98d6e] {
1440
+ .month-item.disabled[data-v-5d1b6a15],
1441
+ .year-item.disabled[data-v-5d1b6a15] {
1439
1442
  opacity: 0.6;
1440
1443
  filter: grayscale(0.3);
1441
1444
  }
1442
- .day[data-v-a2f98d6e] {
1445
+ .day[data-v-5d1b6a15] {
1443
1446
  border: none;
1444
1447
  background: none;
1445
1448
  color: var(--bgl-text-color);
1446
1449
  }
1447
- .day[data-v-a2f98d6e]:hover:not(.disabled) {
1450
+ .day[data-v-5d1b6a15]:hover:not(.disabled) {
1448
1451
  background-color: var(--input-bg);
1449
1452
  }
1450
- .day.selected[data-v-a2f98d6e] {
1453
+ .day.selected[data-v-5d1b6a15] {
1451
1454
  background-color: var(--bgl-primary);
1452
1455
  color: var(--bgl-white);
1453
1456
  }
1454
- .day.today[data-v-a2f98d6e]:not(.selected) {
1457
+ .day.today[data-v-5d1b6a15]:not(.selected) {
1455
1458
  border: 1px solid var(--bgl-primary);
1456
1459
  }
1457
- .day.disabled[data-v-a2f98d6e] {
1460
+ .day.disabled[data-v-5d1b6a15] {
1458
1461
  opacity: 0.6;
1459
1462
  filter: grayscale(0.3);
1460
1463
  cursor: not-allowed;
1461
1464
  }
1462
- .day.not-in-month[data-v-a2f98d6e] {
1465
+ .day.not-in-month[data-v-5d1b6a15] {
1463
1466
  opacity: 0.4;
1464
1467
  }
1465
1468
 
@@ -1915,6 +1918,10 @@ pre code.hljs{
1915
1918
  .m-password {
1916
1919
  height: var(--input-height) !important;
1917
1920
  }
1921
+ [dir='rtl'] .passwordInput input {
1922
+ direction: ltr;
1923
+ text-align: right;
1924
+ }
1918
1925
 
1919
1926
  .radio-input-list[data-v-a692c596]{
1920
1927
  width: auto;
@@ -2040,7 +2047,7 @@ input[type="range"][data-v-25d991e5]:active::-webkit-slider-thumb {
2040
2047
  background: var(--bgl-primary-light);
2041
2048
  }
2042
2049
 
2043
- .toolbar[data-v-bcd681b9] .active {
2050
+ .toolbar[data-v-9d8a6eb6] .active {
2044
2051
  background: var(--bgl-primary);
2045
2052
  color: white;
2046
2053
  }
@@ -2051,26 +2058,26 @@ input[type="range"][data-v-25d991e5]:active::-webkit-slider-thumb {
2051
2058
  line-height: 1.65;
2052
2059
  }
2053
2060
 
2054
- .rich-text-editor[data-v-08117333] {
2061
+ .rich-text-editor[data-v-b58de58d] {
2055
2062
  background: var(--input-bg);
2056
2063
  border: 1px solid var(--border-color);
2057
2064
  transition: all 0.3s ease;
2058
2065
  }
2059
- .editor-container[data-v-08117333] {
2066
+ .editor-container[data-v-b58de58d] {
2060
2067
  display: flex;
2061
2068
  gap: 1rem;
2062
2069
  }
2063
- .content-area[data-v-08117333],
2064
- .preview-area[data-v-08117333] {
2070
+ .content-area[data-v-b58de58d],
2071
+ .preview-area[data-v-b58de58d] {
2065
2072
  flex: 1;
2066
2073
  min-height: 200px;
2067
2074
  background: var(--bgl-richtext-color);
2068
2075
  }
2069
- .split-view[data-v-08117333] {
2076
+ .split-view[data-v-b58de58d] {
2070
2077
  display: grid;
2071
2078
  grid-template-columns: 1fr 1fr;
2072
2079
  }
2073
- .editableContent[data-v-08117333] {
2080
+ .editableContent[data-v-b58de58d] {
2074
2081
  width: 100%;
2075
2082
  min-height: 240px;
2076
2083
  height: 100%;
@@ -2078,7 +2085,7 @@ line-height: 1.65;
2078
2085
  outline: none;
2079
2086
  background: transparent;
2080
2087
  }
2081
- .html-editor[data-v-08117333] {
2088
+ .html-editor[data-v-b58de58d] {
2082
2089
  width: 100%;
2083
2090
  height: 100%;
2084
2091
  min-height: 200px;
@@ -2089,12 +2096,12 @@ line-height: 1.65;
2089
2096
  color: white;
2090
2097
  background-color: var(--bgl-black);
2091
2098
  }
2092
- .preview-area[data-v-08117333] {
2099
+ .preview-area[data-v-b58de58d] {
2093
2100
  font-family: monospace;
2094
2101
  white-space: pre-wrap;
2095
2102
  overflow-x: auto;
2096
2103
  }
2097
- .fullscreen-mode[data-v-08117333] {
2104
+ .fullscreen-mode[data-v-b58de58d] {
2098
2105
  position: fixed;
2099
2106
  top: 0;
2100
2107
  left: 0;
@@ -2103,18 +2110,18 @@ line-height: 1.65;
2103
2110
  z-index: 9999;
2104
2111
  padding: 2rem;
2105
2112
  }
2106
- .fullscreen-mode .editor-container[data-v-08117333] {
2113
+ .fullscreen-mode .editor-container[data-v-b58de58d] {
2107
2114
  height: calc(100vh - 4rem);
2108
2115
  }
2109
- .fullscreen-mode .content-area[data-v-08117333],
2110
- .fullscreen-mode .preview-area[data-v-08117333] {
2116
+ .fullscreen-mode .content-area[data-v-b58de58d],
2117
+ .fullscreen-mode .preview-area[data-v-b58de58d] {
2111
2118
  height: 100%;
2112
2119
  overflow-y: auto;
2113
2120
  }
2114
- .fullscreen-mode .code-editor[data-v-08117333]{
2121
+ .fullscreen-mode .code-editor[data-v-b58de58d]{
2115
2122
  height: 100% !important;
2116
2123
  }
2117
- .debug-controls[data-v-08117333] {
2124
+ .debug-controls[data-v-b58de58d] {
2118
2125
  display: flex;
2119
2126
  gap: 0.5rem;
2120
2127
  justify-content: flex-end;
@@ -2736,6 +2743,16 @@ line-height: 1.65;
2736
2743
  transform: rotateY(180deg) !important;
2737
2744
  }
2738
2745
 
2746
+ .bgl_icon-font[data-v-b28cd148] {
2747
+ font-family: 'Material Symbols Outlined', serif !important;
2748
+ }
2749
+ .bgl_icon-font.fa[data-v-b28cd148] {
2750
+ font-family: 'Font Awesome 6 Free', serif !important;
2751
+ }
2752
+ .bgl_icon-font.fa-brands[data-v-b28cd148] {
2753
+ font-family: 'Font Awesome 6 Brands', serif !important;
2754
+ }
2755
+
2739
2756
  .img-web-kit[data-v-2f5e271c] {
2740
2757
  max-width: 100%;
2741
2758
  vertical-align: middle;
@@ -14603,10 +14620,6 @@ select {
14603
14620
  text-transform: lowercase;
14604
14621
  }.capitalize {
14605
14622
  text-transform: capitalize;
14606
- }.bgl_icon-font {
14607
- font-family: 'Material Symbols Outlined', serif !important;
14608
- }.bgl_icon-font.fa {
14609
- font-family: 'Font Awesome 6 Free', serif !important;
14610
14623
  }.nowrap {
14611
14624
  white-space: nowrap;
14612
14625
  }.balance {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.1262",
4
+ "version": "0.0.1270",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -89,7 +89,7 @@ function renderFieldForRow(field: BaseBagelField<T>, row: T) {
89
89
  mode: 'table',
90
90
  getRowData: () => {
91
91
  if (field.id) {
92
- return { [field.id]: getNestedValue(row, field.id) }
92
+ return { [field.id]: getNestedValue(row, field.id) } as T
93
93
  }
94
94
  return row
95
95
  }
@@ -1,5 +1,6 @@
1
1
  <script setup lang="ts">
2
2
  import type { IconType } from '@bagelink/vue'
3
+ import type { TriggerEvent } from 'floating-vue'
3
4
  import { Btn } from '@bagelink/vue'
4
5
  import { Dropdown as DDown } from 'floating-vue'
5
6
 
@@ -21,6 +22,8 @@ defineProps<{
21
22
  placement?: AlignedPlacement
22
23
  noAutoFocus?: boolean
23
24
  positioningDisabled?: boolean
25
+ autoHide?: boolean
26
+ triggers?: TriggerEvent[]
24
27
  // theme
25
28
  // referenceNode
26
29
  // shown
@@ -31,7 +34,6 @@ defineProps<{
31
34
  // delay
32
35
  // distance
33
36
  // skidding
34
- // triggers
35
37
  // showTriggers
36
38
  // hideTriggers
37
39
  // popperTriggers
@@ -40,7 +42,6 @@ defineProps<{
40
42
  // container
41
43
  // boundary
42
44
  // strategy
43
- // autoHide
44
45
  // handleResize
45
46
  // instantMove
46
47
  // eagerMount
@@ -79,6 +80,8 @@ defineExpose({ show, hide, shown })
79
80
  v-model:shown="shown"
80
81
  :disabled="disabled"
81
82
  :noAutoFocus :placement
83
+ :autoHide="autoHide"
84
+ :triggers="triggers"
82
85
  @hide="emit('hide')"
83
86
  @show="emit('show')"
84
87
  >
@@ -46,4 +46,18 @@ const isFaBrand = $computed(() => FONT_AWESOME_BRANDS_ICONS.includes(iconRender)
46
46
  }
47
47
  </style>
48
48
 
49
+ <style scoped>
50
+ .bgl_icon-font {
51
+ font-family: 'Material Symbols Outlined', serif !important;
52
+ }
53
+
54
+ .bgl_icon-font.fa {
55
+ font-family: 'Font Awesome 6 Free', serif !important;
56
+ }
57
+
58
+ .bgl_icon-font.fa-brands {
59
+ font-family: 'Font Awesome 6 Brands', serif !important;
60
+ }
61
+ </style>
62
+
49
63
  <!-- <style src="./font-awesome.css" /> -->
@@ -139,6 +139,9 @@ const { renderField } = useSchemaField<Record<string, any>>({
139
139
  .itemBox .custom-select .input {
140
140
  background: var(--bgl-white) !important;
141
141
  }
142
+ .itemBox .code-editor-wrap textarea{
143
+ background: transparent !important;
144
+ }
142
145
  .itemBox .bagel-input{
143
146
  margin-bottom: 0.15rem !important;
144
147
  }