@bagelink/vue 1.15.0 → 1.15.5

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 (87) hide show
  1. package/dist/components/AddressSearch.vue.d.ts +7 -6
  2. package/dist/components/Btn.vue.d.ts +1 -1
  3. package/dist/components/Btn.vue.d.ts.map +1 -1
  4. package/dist/components/Carousel.vue.d.ts +11 -0
  5. package/dist/components/Dropdown.vue.d.ts +2 -0
  6. package/dist/components/FilterQuery.vue.d.ts +3 -8
  7. package/dist/components/FilterQuery.vue.d.ts.map +1 -1
  8. package/dist/components/ImportData.vue.d.ts.map +1 -1
  9. package/dist/components/Modal.vue.d.ts +1 -0
  10. package/dist/components/Pill.vue.d.ts.map +1 -1
  11. package/dist/components/Swiper.vue.d.ts +12 -6
  12. package/dist/components/analytics/PieChart.vue.d.ts +2 -2
  13. package/dist/components/calendar/CalendarPopover.vue.d.ts +4 -8
  14. package/dist/components/calendar/CalendarTypes.d.ts +10 -0
  15. package/dist/components/calendar/Index.vue.d.ts +20 -4
  16. package/dist/components/calendar/views/WeekView.vue.d.ts +9 -1
  17. package/dist/components/form/inputs/ArrayInput.vue.d.ts +4 -2
  18. package/dist/components/form/inputs/CheckInput.vue.d.ts +2 -1
  19. package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts +54 -0
  20. package/dist/components/form/inputs/ColorInput.vue.d.ts +3 -1
  21. package/dist/components/form/inputs/DateInput.vue.d.ts +2 -1
  22. package/dist/components/form/inputs/DatePicker.vue.d.ts +1 -0
  23. package/dist/components/form/inputs/EmailInput.vue.d.ts +5 -2
  24. package/dist/components/form/inputs/JSONInput.vue.d.ts +2 -1
  25. package/dist/components/form/inputs/MarkdownEditor.vue.d.ts +7 -2
  26. package/dist/components/form/inputs/NumberInput.vue.d.ts +2 -1
  27. package/dist/components/form/inputs/OTP.vue.d.ts +2 -1
  28. package/dist/components/form/inputs/PasswordInput.vue.d.ts +16 -10
  29. package/dist/components/form/inputs/RadioGroup.vue.d.ts +3 -1
  30. package/dist/components/form/inputs/RadioGroup.vue.d.ts.map +1 -1
  31. package/dist/components/form/inputs/RangeInput.vue.d.ts +6 -1
  32. package/dist/components/form/inputs/RichText/index.vue.d.ts +2 -1
  33. package/dist/components/form/inputs/SelectBtn.vue.d.ts +2 -2
  34. package/dist/components/form/inputs/SelectBtn.vue.d.ts.map +1 -1
  35. package/dist/components/form/inputs/SelectInput.vue.d.ts +20 -13
  36. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  37. package/dist/components/form/inputs/SignaturePad.vue.d.ts +6 -1
  38. package/dist/components/form/inputs/TableField.vue.d.ts +2 -1
  39. package/dist/components/form/inputs/TelInput.vue.d.ts +2 -1
  40. package/dist/components/form/inputs/TextInput.vue.d.ts +3 -2
  41. package/dist/components/form/inputs/ToggleInput.vue.d.ts +2 -1
  42. package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts +27 -6
  43. package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts.map +1 -1
  44. package/dist/components/form/inputs/Upload/upload.d.ts +1 -1
  45. package/dist/components/form/inputs/index.d.ts +1 -0
  46. package/dist/components/index.d.ts +3 -1
  47. package/dist/components/layout/AppContent.vue.d.ts +1 -1
  48. package/dist/components/layout/AppLayout.vue.d.ts +2 -0
  49. package/dist/components/layout/AppSidebar.vue.d.ts +5 -1
  50. package/dist/components/layout/TabsNav.vue.d.ts +12 -1
  51. package/dist/directives/ripple.d.ts.map +1 -1
  52. package/dist/form-flow/MultiStepForm.vue.d.ts +6 -1
  53. package/dist/form-flow/MultiStepForm.vue.d.ts.map +1 -1
  54. package/dist/form-flow/form-flow.d.ts +24 -1
  55. package/dist/i18n/index.d.ts +838 -0
  56. package/dist/index.cjs +133 -160
  57. package/dist/index.d.ts +2 -0
  58. package/dist/index.mjs +33700 -27754
  59. package/dist/style.css +2 -1
  60. package/dist/types/BagelForm.d.ts +10 -1
  61. package/dist/types/NavLink.d.ts +2 -1
  62. package/dist/types/index.d.ts +2 -1
  63. package/dist/types/index.d.ts.map +1 -1
  64. package/dist/utils/BagelFormUtils.d.ts +1 -0
  65. package/dist/utils/calendar/dateUtils.d.ts +2 -2
  66. package/dist/utils/index.d.ts +1 -1
  67. package/dist/utils/index.d.ts.map +1 -1
  68. package/dist/utils/options.d.ts.map +1 -1
  69. package/dist/utils/showdown.d.ts.map +1 -1
  70. package/dist/utils/useSearch.d.ts +1 -1
  71. package/package.json +1 -1
  72. package/src/components/Btn.vue +17 -16
  73. package/src/components/form/inputs/RadioGroup.vue +2 -2
  74. package/src/components/form/inputs/SelectBtn.vue +5 -3
  75. package/src/components/form/inputs/SelectInput.vue +1 -1
  76. package/src/directives/ripple.ts +23 -3
  77. package/src/form-flow/MultiStepForm.vue +9 -1
  78. package/src/styles/base-colors.css +176 -176
  79. package/src/types/index.ts +1 -1
  80. package/src/utils/index.ts +38 -2
  81. package/src/utils/options.ts +2 -2
  82. package/src/utils/showdown.ts +7 -0
  83. package/vite.config.ts +0 -1
  84. package/dist/components/Filter.vue.d.ts +0 -30
  85. package/dist/components/Filter.vue.d.ts.map +0 -1
  86. package/dist/components/QueryFilter.vue.d.ts +0 -30
  87. package/dist/components/QueryFilter.vue.d.ts.map +0 -1
@@ -35,13 +35,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
35
35
  show: number;
36
36
  hide: number;
37
37
  } | undefined;
38
+ readonly referenceEl?: (Element | null) | undefined;
38
39
  readonly onHide?: (() => any) | undefined;
39
40
  readonly "onUpdate:shown"?: ((value: boolean) => any) | undefined;
40
41
  readonly onShow?: (() => any) | undefined;
41
42
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
42
- $attrs: {
43
- [x: string]: unknown;
44
- };
43
+ $attrs: import('vue').Attrs;
45
44
  $refs: {
46
45
  [x: string]: unknown;
47
46
  } & {
@@ -86,6 +85,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
86
85
  show: number;
87
86
  hide: number;
88
87
  };
88
+ referenceEl?: Element | null;
89
89
  }> & Readonly<{
90
90
  onHide?: (() => any) | undefined;
91
91
  "onUpdate:shown"?: ((value: boolean) => any) | undefined;
@@ -170,15 +170,16 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
170
170
  show: number;
171
171
  hide: number;
172
172
  };
173
+ referenceEl?: Element | null;
173
174
  }> & Readonly<{
174
175
  onHide?: (() => any) | undefined;
175
176
  "onUpdate:shown"?: ((value: boolean) => any) | undefined;
176
177
  onShow?: (() => any) | undefined;
177
- }>, "hide" | "shown" | "show" | ("flat" | "thin" | "placement" | "disablePlacement" | "autoHide" | "triggers" | "popperTriggers" | "popperShowTriggers" | "popperHideTriggers" | "card")> & import('vue').ShallowUnwrapRef<{
178
+ }>, "hide" | "shown" | "show" | ("flat" | "thin" | "placement" | "disablePlacement" | "autoHide" | "triggers" | "popperTriggers" | "popperShowTriggers" | "popperHideTriggers" | "card")> & {
178
179
  show: () => Promise<void>;
179
180
  hide: () => void;
180
- shown: import('vue').ModelRef<boolean, string, boolean, boolean>;
181
- }> & {} & import('vue').ComponentCustomProperties & {} & {
181
+ shown: boolean;
182
+ } & {} & import('vue').ComponentCustomProperties & {} & {
182
183
  $slots: {
183
184
  trigger?(_: {
184
185
  show: () => Promise<void>;
@@ -16,7 +16,7 @@ type __VLS_Props = {
16
16
  loading?: boolean;
17
17
  role?: string;
18
18
  value?: TranslatableString;
19
- to?: string;
19
+ to?: string | Record<string, any>;
20
20
  href?: string;
21
21
  round?: boolean;
22
22
  is?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Btn.vue.d.ts","sourceRoot":"","sources":["../../src/components/Btn.vue"],"names":[],"mappings":"AAAA,OAgaO,KAAK,EAAE,QAAQ,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAMpF,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC1B,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAChC,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;IACtC,wEAAwE;IACxE,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,gCAAgC;IAChC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;IACvC,2DAA2D;IAC3D,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAA;IACpC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,kBAAkB,CAAA;IAC1B,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACjC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,KAAK,CAAA;IACrC,cAAc,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,KAAK,CAAA;IAC3C,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI,CAAA;IACjC,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;CAC1B,CAAC;AA4IH,iBAAS,cAAc;WA2KT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;aApVT,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI;WAPzB,OAAO;UANR,QAAQ,GAAG,QAAQ,GAAG,OAAO;cApBzB,OAAO;YAWT,OAAO;aAFN,OAAO;eAoBL,OAAO;YADV,OAAO;aAPN,OAAO;UACV,MAAM;QAKR,MAAM;qBAGO,OAAO;cACd,QAAQ,GAAG,OAAO,GAAG,KAAK;oBACpB,QAAQ,GAAG,OAAO,GAAG,KAAK;6EA8V3C,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Btn.vue.d.ts","sourceRoot":"","sources":["../../src/components/Btn.vue"],"names":[],"mappings":"AAiaA,OAAO,KAAK,EAAE,QAAQ,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAMpF,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC1B,cAAc,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAChC,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;IACtC,wEAAwE;IACxE,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,gCAAgC;IAChC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;IACvC,2DAA2D;IAC3D,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAA;IACpC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,kBAAkB,CAAA;IAC1B,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACjC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,KAAK,CAAA;IACrC,cAAc,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,KAAK,CAAA;IAC3C,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI,CAAA;IACjC,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;CAC1B,CAAC;AA4IH,iBAAS,cAAc;WAuKT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;aAhVT,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI;WAPzB,OAAO;UANR,QAAQ,GAAG,QAAQ,GAAG,OAAO;cApBzB,OAAO;YAWT,OAAO;aAFN,OAAO;eAoBL,OAAO;YADV,OAAO;aAPN,OAAO;UACV,MAAM;QAKR,MAAM;qBAGO,OAAO;cACd,QAAQ,GAAG,OAAO,GAAG,KAAK;oBACpB,QAAQ,GAAG,OAAO,GAAG,KAAK;6EA0V3C,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,3 +1,4 @@
1
+ declare function jumpToSlide(index: number): void;
1
2
  declare function goToSlide(index: number, isTouchNav?: boolean): void;
2
3
  declare function next(): void;
3
4
  declare function prev(): void;
@@ -59,8 +60,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
59
60
  type: BooleanConstructor;
60
61
  default: boolean;
61
62
  };
63
+ loop: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
62
67
  }>, {
63
68
  goToSlide: typeof goToSlide;
69
+ jumpToSlide: typeof jumpToSlide;
64
70
  next: typeof next;
65
71
  prev: typeof prev;
66
72
  countSlides: typeof countSlides;
@@ -104,10 +110,15 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
104
110
  type: BooleanConstructor;
105
111
  default: boolean;
106
112
  };
113
+ loop: {
114
+ type: BooleanConstructor;
115
+ default: boolean;
116
+ };
107
117
  }>> & Readonly<{
108
118
  "onUpdate:index"?: ((...args: any[]) => any) | undefined;
109
119
  }>, {
110
120
  autoplay: boolean;
121
+ loop: boolean;
111
122
  index: number;
112
123
  rtl: boolean;
113
124
  autoHeight: boolean;
@@ -31,6 +31,8 @@ type __VLS_Props = {
31
31
  show: number;
32
32
  hide: number;
33
33
  };
34
+ /** Override the anchor element used for positioning. When provided, the #trigger slot is not rendered. */
35
+ referenceEl?: Element | null;
34
36
  };
35
37
  declare const shown: import('vue').ModelRef<boolean, string, boolean, boolean>;
36
38
  declare function internalShow(): Promise<void>;
@@ -1,5 +1,6 @@
1
- import { Option } from '..';
2
1
  import { QueryConditions } from '../utils/queryFilter';
2
+ import { FilterField, QueryOption, OptionsSource } from './FilterQuery.types';
3
+ export type { FilterField, QueryOption, OptionsSource };
3
4
  declare const _default: <T extends Record<string, any>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
5
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
5
6
  readonly onSave?: ((value: QueryConditions<T>) => any) | undefined;
@@ -8,13 +9,7 @@ declare const _default: <T extends Record<string, any>>(__VLS_props: NonNullable
8
9
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:modelValue" | "onSave"> & ({
9
10
  modelValue?: QueryConditions<T>;
10
11
  } & {
11
- fields: Array<{
12
- label: string;
13
- value: string;
14
- type?: "string" | "number" | "boolean" | "date";
15
- options?: Option[] | ((query: string) => Promise<Option[]>);
16
- multiple?: boolean;
17
- }>;
12
+ fields: FilterField[];
18
13
  }) & Partial<{}>> & import('vue').PublicProps;
19
14
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
20
15
  attrs: any;
@@ -1 +1 @@
1
- {"version":3,"file":"FilterQuery.vue.d.ts","sourceRoot":"","sources":["../../src/components/FilterQuery.vue"],"names":[],"mappings":"AAAA,OAqkBO,KAAK,EAAuC,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAMhG,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAClF,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,CACtD;yBACgB,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC7C,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAw4BO,mBAAmB,CAAC;;;;;qBArhBf,eAAe,CAAC,CAAC,CAAC;;gBAzWtB,WAAW,EAAE;oBA83BwE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;UAEJ,6KAAoC;EAEvC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAn5BzE,wBAm5B4E;AAE5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"FilterQuery.vue.d.ts","sourceRoot":"","sources":["../../src/components/FilterQuery.vue"],"names":[],"mappings":"AAqkBA,OAAO,KAAK,EAAuC,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAMhG,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAClF,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,CACtD;yBACgB,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC7C,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAw4BO,mBAAmB,CAAC;;;;;qBArhBf,eAAe,CAAC,CAAC,CAAC;;gBAzWtB,WAAW,EAAE;oBA83BwE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;UAEJ,6KAAoC;EAEvC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAn5BzE,wBAm5B4E;AAE5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ImportData.vue.d.ts","sourceRoot":"","sources":["../../src/components/ImportData.vue"],"names":[],"mappings":"AAutDA,OAAO,KAAK,EAAE,cAAc,EAAU,MAAM,eAAe,CAAA;AAC3D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,KAAK,CAAA;yBAoB1B,CAAC,EACjB,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WA2kFO,mBAAmB,CAAC;;;iBAzkFlB,gBAAgB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;gBACpC,MAAM;mBAwkF+E,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cArkFN,eAAe,QAAQ,CAAC,EAAE,KAAG,IAAI;EAykFlC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAtlFzE,wBAslF4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"ImportData.vue.d.ts","sourceRoot":"","sources":["../../src/components/ImportData.vue"],"names":[],"mappings":"AAutDA,OAAO,KAAK,EAAE,cAAc,EAAU,MAAM,eAAe,CAAA;AAC3D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,KAAK,CAAA;yBAoB1B,CAAC,EACjB,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAuiFO,mBAAmB,CAAC;;;iBAriFlB,gBAAgB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;gBACpC,MAAM;mBAoiF+E,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cAjiFN,eAAe,QAAQ,CAAC,EAAE,KAAG,IAAI;EAqiFlC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAljFzE,wBAkjF4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1,6 +1,7 @@
1
1
  import { BtnOptions } from '..';
2
2
  interface ModalProps {
3
3
  thin?: boolean;
4
+ mobileThin?: boolean;
4
5
  side?: boolean;
5
6
  title?: string;
6
7
  width?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Pill.vue.d.ts","sourceRoot":"","sources":["../../src/components/Pill.vue"],"names":[],"mappings":"AAyJA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAIxD,OAAO,2BAA2B,CAAA;AAElC,UAAU,OAAO;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;CACd;AAED,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AAoCF,iBAAS,cAAc;WA0HT,OAAO,IAA6B;;;;;;YAVpB,GAAG;;;;EAehC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Pill.vue.d.ts","sourceRoot":"","sources":["../../src/components/Pill.vue"],"names":[],"mappings":"AAuJA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAIxD,OAAO,2BAA2B,CAAA;AAElC,UAAU,OAAO;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;CACd;AAED,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AAoCF,iBAAS,cAAc;WA0HT,OAAO,IAA6B;;;;;;YAVpB,GAAG;;;;EAehC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -6,7 +6,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
6
6
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:index"> & {
7
7
  items?: T[];
8
8
  index?: number;
9
- variant?: "default" | "cards" | "testimonial" | "gallery" | "coverflow" | "hero";
9
+ variant?: "cards" | "default" | "testimonial" | "gallery" | "coverflow" | "hero";
10
10
  slideWidth?: number | string;
11
11
  effect?: "cards" | "flip" | "coverflow" | "slide" | "fade" | "cube";
12
12
  direction?: "vertical" | "horizontal";
@@ -160,6 +160,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
160
160
  slidesOffsetAfter?: number | undefined;
161
161
  normalizeSlideIndex?: boolean | undefined;
162
162
  centerInsufficientSlides?: boolean | undefined;
163
+ snapToSlideEdge?: boolean | undefined;
163
164
  grabCursor?: boolean | undefined;
164
165
  touchEventsTarget?: "container" | "wrapper" | undefined;
165
166
  touchRatio?: number | undefined;
@@ -410,7 +411,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
410
411
  wrapperClass?: string | undefined;
411
412
  lazyPreloaderClass?: string | undefined;
412
413
  lazyPreloadPrevNext?: number | undefined;
413
- a11y?: {
414
+ a11y?: boolean | {
414
415
  enabled?: boolean | undefined;
415
416
  prevSlideMessage?: string | undefined;
416
417
  nextSlideMessage?: string | undefined;
@@ -436,7 +437,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
436
437
  waitForTransition?: boolean | undefined;
437
438
  pauseOnMouseEnter?: boolean | undefined;
438
439
  } | undefined;
439
- controller?: {
440
+ controller?: boolean | {
440
441
  control?: string | HTMLElement | /*elided*/ any | /*elided*/ any[] | null | undefined;
441
442
  inverse?: boolean | undefined;
442
443
  by?: "slide" | "container" | undefined;
@@ -506,6 +507,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
506
507
  enabled?: boolean | undefined;
507
508
  onlyInViewport?: boolean | undefined;
508
509
  pageUpDown?: boolean | undefined;
510
+ speed?: number | undefined;
509
511
  } | undefined;
510
512
  mousewheel?: boolean | {
511
513
  enabled?: boolean | undefined;
@@ -1234,6 +1236,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
1234
1236
  slidesOffsetAfter?: number | undefined;
1235
1237
  normalizeSlideIndex?: boolean | undefined;
1236
1238
  centerInsufficientSlides?: boolean | undefined;
1239
+ snapToSlideEdge?: boolean | undefined;
1237
1240
  grabCursor?: boolean | undefined;
1238
1241
  touchEventsTarget?: "container" | "wrapper" | undefined;
1239
1242
  touchRatio?: number | undefined;
@@ -1484,7 +1487,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
1484
1487
  wrapperClass?: string | undefined;
1485
1488
  lazyPreloaderClass?: string | undefined;
1486
1489
  lazyPreloadPrevNext?: number | undefined;
1487
- a11y?: {
1490
+ a11y?: boolean | {
1488
1491
  enabled?: boolean | undefined;
1489
1492
  prevSlideMessage?: string | undefined;
1490
1493
  nextSlideMessage?: string | undefined;
@@ -1510,7 +1513,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
1510
1513
  waitForTransition?: boolean | undefined;
1511
1514
  pauseOnMouseEnter?: boolean | undefined;
1512
1515
  } | undefined;
1513
- controller?: {
1516
+ controller?: boolean | {
1514
1517
  control?: string | HTMLElement | /*elided*/ any | /*elided*/ any[] | null | undefined;
1515
1518
  inverse?: boolean | undefined;
1516
1519
  by?: "slide" | "container" | undefined;
@@ -1580,6 +1583,7 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
1580
1583
  enabled?: boolean | undefined;
1581
1584
  onlyInViewport?: boolean | undefined;
1582
1585
  pageUpDown?: boolean | undefined;
1586
+ speed?: number | undefined;
1583
1587
  } | undefined;
1584
1588
  mousewheel?: boolean | {
1585
1589
  enabled?: boolean | undefined;
@@ -2308,7 +2312,9 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
2308
2312
  };
2309
2313
  thumbs: {
2310
2314
  swiper: /*elided*/ any;
2311
- update: (initial: boolean) => void;
2315
+ update: (initial: boolean, p?: {
2316
+ autoScroll?: boolean;
2317
+ }) => void;
2312
2318
  init: () => boolean;
2313
2319
  };
2314
2320
  virtual: {
@@ -29,10 +29,11 @@ declare function restartAnimation(): void;
29
29
  declare const _default: import('vue').DefineComponent<Props, {
30
30
  restartAnimation: typeof restartAnimation;
31
31
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
32
- size: number;
33
32
  title: string;
34
33
  icon: string;
34
+ size: number;
35
35
  color: string;
36
+ labelColor: string;
36
37
  thickness: number;
37
38
  percentageChange: number;
38
39
  animated: boolean;
@@ -45,7 +46,6 @@ declare const _default: import('vue').DefineComponent<Props, {
45
46
  showCenterTotal: boolean;
46
47
  showLabelsOnChart: boolean;
47
48
  showConnectorLines: boolean;
48
- labelColor: string;
49
49
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
50
50
  chartRef: HTMLDivElement;
51
51
  }, HTMLDivElement>;
@@ -34,9 +34,7 @@ declare function __VLS_template(): {
34
34
  readonly frame?: boolean | undefined;
35
35
  readonly bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent" | undefined;
36
36
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
37
- $attrs: {
38
- [x: string]: unknown;
39
- };
37
+ $attrs: import('vue').Attrs;
40
38
  $refs: {
41
39
  [x: string]: unknown;
42
40
  };
@@ -90,7 +88,7 @@ declare function __VLS_template(): {
90
88
  overflowY?: boolean;
91
89
  frame?: boolean;
92
90
  bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
93
- }> & Readonly<{}>, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
91
+ }> & Readonly<{}>, never> & {} & import('vue').ComponentCustomProperties & {} & {
94
92
  $slots: {
95
93
  default?(_: {}): any;
96
94
  };
@@ -121,9 +119,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
121
119
  readonly frame?: boolean | undefined;
122
120
  readonly bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent" | undefined;
123
121
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
124
- $attrs: {
125
- [x: string]: unknown;
126
- };
122
+ $attrs: import('vue').Attrs;
127
123
  $refs: {
128
124
  [x: string]: unknown;
129
125
  };
@@ -177,7 +173,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
177
173
  overflowY?: boolean;
178
174
  frame?: boolean;
179
175
  bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
180
- }> & Readonly<{}>, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
176
+ }> & Readonly<{}>, never> & {} & import('vue').ComponentCustomProperties & {} & {
181
177
  $slots: {
182
178
  default?(_: {}): any;
183
179
  };
@@ -12,11 +12,21 @@ export interface CalendarEvent {
12
12
  }
13
13
  export type CalendarView = 'Week' | 'Month' | 'Day' | 'Agenda';
14
14
  export type WeekStart = 'Sunday' | 'Monday';
15
+ export interface AvailabilitySlot {
16
+ start_time: Date;
17
+ end_time: Date;
18
+ }
15
19
  export interface CalendarProps {
16
20
  events?: CalendarEvent[];
17
21
  startDate?: Date;
18
22
  view?: CalendarView;
19
23
  weekStart?: WeekStart;
24
+ /** When true, renders availability blocks on the week grid */
25
+ availabilityMode?: boolean;
26
+ /** When true, allows drag-to-paint editing of availability (requires availabilityMode) */
27
+ availabilityEditable?: boolean;
28
+ /** Existing availability slots to display as painted blocks */
29
+ availabilitySlots?: AvailabilitySlot[];
20
30
  }
21
31
  export interface CalendarViewState {
22
32
  currentView?: CalendarView;
@@ -1,4 +1,14 @@
1
- import { CalendarEvent, CalendarProps, CalendarView, CalendarViewState } from './CalendarTypes';
1
+ import { AvailabilitySlot, CalendarEvent, CalendarView, CalendarViewState, WeekStart } from './CalendarTypes';
2
+ type __VLS_Props = {
3
+ events?: CalendarEvent[];
4
+ startDate?: Date;
5
+ view?: CalendarView;
6
+ weekStart?: WeekStart;
7
+ availabilityMode?: boolean;
8
+ availabilityEditable?: boolean;
9
+ availabilitySlots?: AvailabilitySlot[];
10
+ viewSwitcher?: 'dropdown' | 'tabs';
11
+ };
2
12
  declare function openPopover(event: CalendarEvent, position?: {
3
13
  top: number;
4
14
  left: number;
@@ -20,7 +30,7 @@ declare function __VLS_template(): {
20
30
  rootEl: HTMLDivElement;
21
31
  };
22
32
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
- declare const __VLS_component: import('vue').DefineComponent<CalendarProps, {
33
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
24
34
  visibleDateRange: import('vue').ComputedRef<{
25
35
  start: Date;
26
36
  end: Date;
@@ -36,17 +46,19 @@ declare const __VLS_component: import('vue').DefineComponent<CalendarProps, {
36
46
  start_time: Date;
37
47
  end_time: Date;
38
48
  }) => any;
49
+ availabilityChange: (slots: AvailabilitySlot[]) => any;
39
50
  eventUpdate: (event: CalendarEvent) => any;
40
51
  eventDelete: (eventId: string) => any;
41
52
  viewChange: (changeEvent: CalendarViewState) => any;
42
53
  ready: (changeEvent: CalendarViewState) => any;
43
- }, string, import('vue').PublicProps, Readonly<CalendarProps> & Readonly<{
54
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
44
55
  onEventClick?: ((event: CalendarEvent) => any) | undefined;
45
56
  onDateChange?: ((changeEvent: CalendarViewState) => any) | undefined;
46
57
  onEventCreate?: ((event: {
47
58
  start_time: Date;
48
59
  end_time: Date;
49
60
  }) => any) | undefined;
61
+ onAvailabilityChange?: ((slots: AvailabilitySlot[]) => any) | undefined;
50
62
  onEventUpdate?: ((event: CalendarEvent) => any) | undefined;
51
63
  onEventDelete?: ((eventId: string) => any) | undefined;
52
64
  onViewChange?: ((changeEvent: CalendarViewState) => any) | undefined;
@@ -55,7 +67,11 @@ declare const __VLS_component: import('vue').DefineComponent<CalendarProps, {
55
67
  view: CalendarView;
56
68
  events: CalendarEvent[];
57
69
  startDate: Date;
58
- weekStart: import('./CalendarTypes').WeekStart;
70
+ weekStart: WeekStart;
71
+ availabilityMode: boolean;
72
+ availabilityEditable: boolean;
73
+ availabilitySlots: AvailabilitySlot[];
74
+ viewSwitcher: "dropdown" | "tabs";
59
75
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
60
76
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
61
77
  export default _default;
@@ -1,8 +1,11 @@
1
- import { CalendarEvent, WeekStart } from '../CalendarTypes';
1
+ import { AvailabilitySlot, CalendarEvent, WeekStart } from '../CalendarTypes';
2
2
  type __VLS_Props = {
3
3
  events?: CalendarEvent[];
4
4
  startDate?: Date;
5
5
  weekStart?: WeekStart;
6
+ availabilityMode?: boolean;
7
+ availabilityEditable?: boolean;
8
+ availabilitySlots?: AvailabilitySlot[];
6
9
  };
7
10
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
8
11
  eventClick: (event: CalendarEvent) => any;
@@ -14,6 +17,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
14
17
  start_time: Date;
15
18
  end_time: Date;
16
19
  }) => any;
20
+ availabilityChange: (slots: AvailabilitySlot[]) => any;
17
21
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
22
  onEventClick?: ((event: CalendarEvent) => any) | undefined;
19
23
  onOpenPopover?: ((event: CalendarEvent, position?: {
@@ -24,10 +28,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
24
28
  start_time: Date;
25
29
  end_time: Date;
26
30
  }) => any) | undefined;
31
+ onAvailabilityChange?: ((slots: AvailabilitySlot[]) => any) | undefined;
27
32
  }>, {
28
33
  events: CalendarEvent[];
29
34
  startDate: Date;
30
35
  weekStart: WeekStart;
36
+ availabilityMode: boolean;
37
+ availabilityEditable: boolean;
38
+ availabilitySlots: AvailabilitySlot[];
31
39
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
32
40
  calendarGrid: HTMLDivElement;
33
41
  scrollableContainer: HTMLDivElement;
@@ -1,8 +1,9 @@
1
1
  import { WritableComputedRef } from 'vue';
2
+ import { BagelInputShellProps } from './bagelInputShell';
2
3
  declare const _default: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3
4
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
4
5
  readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
5
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & {
6
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
6
7
  label?: string;
7
8
  helpText?: string;
8
9
  modelValue: T[];
@@ -13,7 +14,8 @@ declare const _default: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __
13
14
  deleteTooltip?: string;
14
15
  itemLabel?: string;
15
16
  collapsible?: boolean;
16
- } & Partial<{}>> & import('vue').PublicProps;
17
+ simple?: boolean;
18
+ } & BagelInputShellProps) & Partial<{}>> & import('vue').PublicProps;
17
19
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
18
20
  attrs: any;
19
21
  slots: Readonly<{
@@ -1,3 +1,4 @@
1
+ import { BagelInputShellProps } from './bagelInputShell';
1
2
  declare const _default: <T extends boolean | undefined | any[]>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2
3
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
3
4
  readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
@@ -12,7 +13,7 @@ declare const _default: <T extends boolean | undefined | any[]>(__VLS_props: Non
12
13
  disabled?: boolean;
13
14
  defaultValue?: T;
14
15
  value?: any;
15
- }) & Partial<{}>> & import('vue').PublicProps;
16
+ } & BagelInputShellProps) & Partial<{}>> & import('vue').PublicProps;
16
17
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
17
18
  attrs: any;
18
19
  slots: {
@@ -37,6 +37,30 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
37
37
  type: PropType<HighlightTheme>;
38
38
  default: string;
39
39
  };
40
+ frame: {
41
+ type: BooleanConstructor;
42
+ default: undefined;
43
+ };
44
+ outline: {
45
+ type: BooleanConstructor;
46
+ default: undefined;
47
+ };
48
+ minWidth: {
49
+ type: StringConstructor;
50
+ default: undefined;
51
+ };
52
+ maxWidth: {
53
+ type: StringConstructor;
54
+ default: undefined;
55
+ };
56
+ labelColor: {
57
+ type: StringConstructor;
58
+ default: undefined;
59
+ };
60
+ labelActiveColor: {
61
+ type: StringConstructor;
62
+ default: undefined;
63
+ };
40
64
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
41
65
  "update:modelValue": (...args: any[]) => void;
42
66
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -76,6 +100,30 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
76
100
  type: PropType<HighlightTheme>;
77
101
  default: string;
78
102
  };
103
+ frame: {
104
+ type: BooleanConstructor;
105
+ default: undefined;
106
+ };
107
+ outline: {
108
+ type: BooleanConstructor;
109
+ default: undefined;
110
+ };
111
+ minWidth: {
112
+ type: StringConstructor;
113
+ default: undefined;
114
+ };
115
+ maxWidth: {
116
+ type: StringConstructor;
117
+ default: undefined;
118
+ };
119
+ labelColor: {
120
+ type: StringConstructor;
121
+ default: undefined;
122
+ };
123
+ labelActiveColor: {
124
+ type: StringConstructor;
125
+ default: undefined;
126
+ };
79
127
  }>> & Readonly<{
80
128
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
81
129
  }>, {
@@ -83,7 +131,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
83
131
  height: string;
84
132
  language: string;
85
133
  disabled: boolean;
134
+ outline: boolean;
86
135
  modelValue: string | Record<string, any>;
136
+ frame: boolean;
137
+ minWidth: string;
138
+ maxWidth: string;
139
+ labelColor: string;
140
+ labelActiveColor: string;
87
141
  theme: HighlightTheme;
88
142
  readonly: boolean;
89
143
  autodetect: boolean;
@@ -1,3 +1,4 @@
1
+ import { BagelInputShellProps } from './bagelInputShell';
1
2
  type __VLS_Props = {
2
3
  label?: string;
3
4
  id?: string;
@@ -9,7 +10,8 @@ type __VLS_Props = {
9
10
  nativeInputAttrs?: {
10
11
  [key: string]: any;
11
12
  };
12
- };
13
+ underlined?: boolean;
14
+ } & BagelInputShellProps;
13
15
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
16
  "update:modelValue": (...args: any[]) => void;
15
17
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
@@ -1,6 +1,7 @@
1
1
  import { ModeType } from '../../../utils/calendar/typings';
2
2
  import { WEEK_START_DAY } from '../../../utils/calendar/time';
3
- export interface DateInputProps {
3
+ import { BagelInputShellProps } from './bagelInputShell';
4
+ export interface DateInputProps extends BagelInputShellProps {
4
5
  required?: boolean;
5
6
  label?: string;
6
7
  placeholder?: string;
@@ -11,6 +11,7 @@ type __VLS_Props = {
11
11
  enableTime?: boolean;
12
12
  highlightedDates?: MaybeRefOrGetter<(string | Date)[]>;
13
13
  disabledDates?: MaybeRefOrGetter<(string | Date)[]>;
14
+ allowedDates?: MaybeRefOrGetter<(string | Date)[]>;
14
15
  autoSize?: boolean;
15
16
  };
16
17
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -1,5 +1,6 @@
1
1
  import { IconType, ValidateInputBaseT } from '../../..';
2
- export interface EmailInputProps extends ValidateInputBaseT {
2
+ import { BagelInputShellProps } from './bagelInputShell';
3
+ export interface EmailInputProps extends ValidateInputBaseT, BagelInputShellProps {
3
4
  id?: string;
4
5
  title?: string;
5
6
  helptext?: string;
@@ -19,7 +20,7 @@ export interface EmailInputProps extends ValidateInputBaseT {
19
20
  };
20
21
  icon?: IconType;
21
22
  iconStart?: IconType;
22
- autocomplete?: AutoFillField;
23
+ autocomplete?: string;
23
24
  autofocus?: boolean;
24
25
  error?: string;
25
26
  onFocusout?: (e: FocusEvent) => void;
@@ -27,6 +28,7 @@ export interface EmailInputProps extends ValidateInputBaseT {
27
28
  autocorrect?: boolean;
28
29
  serverValidate?: boolean;
29
30
  preventFakeEmails?: boolean;
31
+ formatValidation?: boolean;
30
32
  }
31
33
  declare const _default: import('vue').DefineComponent<EmailInputProps, {
32
34
  focus: () => void | undefined;
@@ -43,6 +45,7 @@ declare const _default: import('vue').DefineComponent<EmailInputProps, {
43
45
  autocorrect: boolean;
44
46
  serverValidate: boolean;
45
47
  preventFakeEmails: boolean;
48
+ formatValidation: boolean;
46
49
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
47
50
  input: HTMLInputElement;
48
51
  }, HTMLDivElement>;
@@ -1,3 +1,4 @@
1
+ import { BagelInputShellProps } from './bagelInputShell';
1
2
  type __VLS_Props = {
2
3
  description?: string;
3
4
  label?: string;
@@ -5,7 +6,7 @@ type __VLS_Props = {
5
6
  placeholder?: string;
6
7
  editMode?: boolean;
7
8
  small?: boolean;
8
- };
9
+ } & BagelInputShellProps;
9
10
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
11
  "update:modelValue": (...args: any[]) => void;
11
12
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{