@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.
Files changed (43) hide show
  1. package/dist/components/calendar/CalendarTypes.d.ts.map +1 -1
  2. package/dist/components/calendar/Index.vue.d.ts.map +1 -1
  3. package/dist/components/calendar/views/WeekView.vue.d.ts.map +1 -1
  4. package/dist/components/dataTable/DataTable.vue.d.ts.map +1 -1
  5. package/dist/components/form/inputs/ArrayInput.vue.d.ts.map +1 -1
  6. package/dist/components/layout/AppLayout.vue.d.ts.map +1 -1
  7. package/dist/components/layout/AppSidebar.vue.d.ts.map +1 -1
  8. package/dist/dialog/DialogForm.vue.d.ts.map +1 -1
  9. package/dist/form-flow/FormFlow.vue.d.ts.map +1 -1
  10. package/dist/form-flow/form-flow.d.ts.map +1 -1
  11. package/dist/i18n/index.d.ts.map +1 -1
  12. package/dist/index.cjs +124 -124
  13. package/dist/index.mjs +13282 -13011
  14. package/dist/plugins/bagel.d.ts.map +1 -1
  15. package/dist/style.css +1 -1
  16. package/dist/types/index.d.ts.map +1 -1
  17. package/package.json +2 -2
  18. package/src/components/Pagination.vue +1 -1
  19. package/src/components/calendar/CalendarTypes.ts +11 -0
  20. package/src/components/calendar/Index.vue +25 -4
  21. package/src/components/calendar/views/WeekView.vue +260 -16
  22. package/src/components/dataTable/DataTable.vue +10 -0
  23. package/src/components/form/inputs/ArrayInput.vue +4 -3
  24. package/src/components/layout/AppLayout.vue +4 -2
  25. package/src/components/layout/AppSidebar.vue +21 -8
  26. package/src/dialog/DialogForm.vue +7 -9
  27. package/src/form-flow/FormFlow.vue +14 -1
  28. package/src/form-flow/MultiStepForm.vue +1 -1
  29. package/src/form-flow/form-flow.ts +2 -2
  30. package/src/i18n/locales/en.json +48 -0
  31. package/src/i18n/locales/es.json +1 -0
  32. package/src/i18n/locales/fr.json +1 -0
  33. package/src/i18n/locales/he.json +48 -0
  34. package/src/i18n/locales/it.json +1 -0
  35. package/src/i18n/locales/ru.json +1 -0
  36. package/src/plugins/bagel.ts +2 -0
  37. package/src/plugins/useModal.ts +2 -2
  38. package/src/styles/buttons.css +6 -4
  39. package/src/styles/layout.css +48 -2
  40. package/src/styles/mobilLayout.css +41 -0
  41. package/src/styles/text.css +1759 -1755
  42. package/src/types/index.ts +4 -3
  43. package/src/utils/elementUtils.ts +1 -1
@@ -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,