@bagelink/vue 1.12.19 → 1.12.25
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/calendar/CalendarTypes.d.ts.map +1 -1
- 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/dataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/ArrayInput.vue.d.ts.map +1 -1
- package/dist/components/layout/AppLayout.vue.d.ts.map +1 -1
- package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
- package/dist/dialog/DialogForm.vue.d.ts.map +1 -1
- package/dist/form-flow/FormFlow.vue.d.ts.map +1 -1
- package/dist/form-flow/form-flow.d.ts.map +1 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.cjs +124 -124
- package/dist/index.mjs +13282 -13011
- package/dist/plugins/bagel.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Pagination.vue +1 -1
- package/src/components/calendar/CalendarTypes.ts +11 -0
- package/src/components/calendar/Index.vue +25 -4
- package/src/components/calendar/views/WeekView.vue +260 -16
- package/src/components/dataTable/DataTable.vue +10 -0
- package/src/components/form/inputs/ArrayInput.vue +4 -3
- package/src/components/layout/AppLayout.vue +4 -2
- package/src/components/layout/AppSidebar.vue +21 -8
- package/src/dialog/DialogForm.vue +7 -9
- package/src/form-flow/FormFlow.vue +14 -1
- package/src/form-flow/MultiStepForm.vue +1 -1
- package/src/form-flow/form-flow.ts +2 -2
- package/src/i18n/locales/en.json +48 -0
- package/src/i18n/locales/es.json +1 -0
- package/src/i18n/locales/fr.json +1 -0
- package/src/i18n/locales/he.json +48 -0
- package/src/i18n/locales/it.json +1 -0
- package/src/i18n/locales/ru.json +1 -0
- package/src/plugins/bagel.ts +2 -0
- package/src/plugins/useModal.ts +2 -2
- package/src/styles/buttons.css +6 -4
- package/src/styles/layout.css +48 -2
- package/src/styles/mobilLayout.css +41 -0
- package/src/styles/text.css +1759 -1755
- package/src/types/index.ts +4 -3
- package/src/utils/elementUtils.ts +1 -1
package/src/types/index.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import type { IconType, MaterialIcons } from '../components/Icon/types'
|
|
2
2
|
|
|
3
|
+
export type { AvailabilitySlot, CalendarEvent, CalendarProps, CalendarView, CalendarViewState } from '../components/calendar/CalendarTypes'
|
|
4
|
+
|
|
5
|
+
export type { IconType, MaterialIcons }
|
|
6
|
+
|
|
3
7
|
export type {
|
|
4
8
|
ModalComponentProps,
|
|
5
9
|
ModalComponentProps as ModalFormComponentProps,
|
|
6
10
|
ModalOptions,
|
|
7
11
|
} from '../plugins/modalTypes'
|
|
8
|
-
|
|
9
|
-
export type { IconType, MaterialIcons }
|
|
10
|
-
|
|
11
12
|
export type { AddToCalendarEvent } from '../utils/calendar/types'
|
|
12
13
|
export * from './BagelForm'
|
|
13
14
|
export * from './BtnOptions'
|
|
@@ -530,7 +530,7 @@ export function column<T = any, P extends Path<T, PO> = any, PO extends PathsOpt
|
|
|
530
530
|
return {
|
|
531
531
|
$el: 'div',
|
|
532
532
|
id,
|
|
533
|
-
class: options?.class ?? 'column-class',
|
|
533
|
+
class: options?.class ?? 'column-class ellipsis-1 line-height-15',
|
|
534
534
|
vIf: options?.vIf,
|
|
535
535
|
style: options?.style,
|
|
536
536
|
transform: options?.transform,
|