@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.
- package/dist/components/Modal.vue.d.ts.map +1 -1
- package/dist/components/calendar/CalendarPopover.vue.d.ts +2 -0
- package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
- package/dist/components/calendar/CalendarTypes.d.ts +2 -0
- package/dist/components/calendar/CalendarTypes.d.ts.map +1 -1
- package/dist/components/calendar/Index.vue.d.ts +2 -0
- package/dist/components/calendar/Index.vue.d.ts.map +1 -1
- package/dist/components/calendar/views/WeekView.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RadioGroup.vue.d.ts +6 -0
- package/dist/components/form/inputs/RadioGroup.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/index.vue.d.ts +1 -0
- package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/layout/AppSidebar.vue.d.ts +1 -1
- package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
- package/dist/index.cjs +22 -22
- package/dist/index.mjs +22 -22
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Modal.vue +45 -23
- package/src/components/calendar/CalendarPopover.vue +20 -24
- package/src/components/calendar/CalendarTypes.ts +2 -0
- package/src/components/calendar/Index.vue +5 -5
- package/src/components/calendar/views/WeekView.vue +7 -1
- package/src/components/form/inputs/RadioGroup.vue +22 -6
- package/src/components/form/inputs/RichText/index.vue +275 -149
- package/src/components/form/inputs/SelectInput.vue +2 -2
- package/src/styles/appearance.css +10 -1
- package/src/styles/layout.css +2 -1
- 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
|
-
|
|
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
|
}
|
package/src/styles/layout.css
CHANGED
package/src/styles/theme.css
CHANGED