@bagelink/vue 1.4.159 → 1.4.163

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 (30) hide show
  1. package/dist/components/Modal.vue.d.ts.map +1 -1
  2. package/dist/components/calendar/CalendarPopover.vue.d.ts +2 -0
  3. package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
  4. package/dist/components/calendar/CalendarTypes.d.ts +2 -0
  5. package/dist/components/calendar/CalendarTypes.d.ts.map +1 -1
  6. package/dist/components/calendar/Index.vue.d.ts +2 -0
  7. package/dist/components/calendar/Index.vue.d.ts.map +1 -1
  8. package/dist/components/calendar/views/WeekView.vue.d.ts.map +1 -1
  9. package/dist/components/form/inputs/RadioGroup.vue.d.ts +6 -0
  10. package/dist/components/form/inputs/RadioGroup.vue.d.ts.map +1 -1
  11. package/dist/components/form/inputs/RichText/index.vue.d.ts +1 -0
  12. package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  14. package/dist/components/layout/AppSidebar.vue.d.ts +1 -1
  15. package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
  16. package/dist/index.cjs +22 -22
  17. package/dist/index.mjs +22 -22
  18. package/dist/style.css +1 -1
  19. package/package.json +1 -1
  20. package/src/components/Modal.vue +45 -23
  21. package/src/components/calendar/CalendarPopover.vue +20 -24
  22. package/src/components/calendar/CalendarTypes.ts +2 -0
  23. package/src/components/calendar/Index.vue +5 -5
  24. package/src/components/calendar/views/WeekView.vue +7 -1
  25. package/src/components/form/inputs/RadioGroup.vue +22 -6
  26. package/src/components/form/inputs/RichText/index.vue +275 -149
  27. package/src/components/form/inputs/SelectInput.vue +2 -2
  28. package/src/styles/appearance.css +10 -1
  29. package/src/styles/layout.css +2 -1
  30. package/src/styles/theme.css +1 -0
@@ -273,7 +273,7 @@ onMounted(() => {
273
273
  </label>
274
274
  </template>
275
275
  <Skeleton v-if="isLoading" :count="6" width="200px" height="25px" class="mx-1 my-1" />
276
- <Card class="p-05" :style="{ width: fullWidth ? '100%' : 'auto' }" @click.stop>
276
+ <Card class="p-05" frame :style="{ width: fullWidth ? '100%' : 'auto' }" @click.stop>
277
277
  <div ref="selectOptions" class="selectinput-options" :class="{ multiselect }">
278
278
  <div
279
279
  v-for="(option, i) in results" :key="`${String(getValue(option))}-${i}`"
@@ -387,6 +387,6 @@ onMounted(() => {
387
387
  border: none;
388
388
  /* background: transparent; if anyone is changing this please talk to me first*/
389
389
  border-radius: var(--card-border-radius);
390
- /* color: var(--input-color); */
390
+ color: var(--dropdown-color);
391
391
  }
392
392
  </style>
@@ -165,6 +165,14 @@
165
165
  border-inline-end: 1px solid var(--border-color)
166
166
  }
167
167
 
168
+ .border-input input {
169
+ border: 1px solid var(--border-color) !important;
170
+ }
171
+
172
+ .border-input-none input {
173
+ border: none !important;
174
+ }
175
+
168
176
  .border-inner-bottom>* {
169
177
  border-bottom: 1px solid var(--border-color)
170
178
  }
@@ -428,7 +436,8 @@
428
436
 
429
437
  .m_border-color-unset {
430
438
  border-color: unset !important;
431
- }
439
+ }
440
+
432
441
  .m_border-bottom {
433
442
  border-bottom: 1px solid var(--border-color)
434
443
  }
@@ -7596,7 +7596,8 @@
7596
7596
  overflow: hidden;
7597
7597
  }
7598
7598
 
7599
- .overflow {
7599
+ .overflow,
7600
+ .overflow-auto {
7600
7601
  overflow: auto;
7601
7602
  }
7602
7603
 
@@ -20,6 +20,7 @@
20
20
  --label-color: #00000080;
21
21
  --input-bg: #f5f8fa;
22
22
  --input-color: #000000;
23
+ --dropdown-color: var(--bgl-black);
23
24
  --bgl-box-bg: var(--bgl-white);
24
25
  --bgl-popup-bg: var(--bgl-white);
25
26
  --bgl-popup-text: var(--bgl-black);