@bagelink/vue 1.14.10 → 1.14.13
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/AddressSearch.vue.d.ts +7 -6
- package/dist/components/Btn.vue.d.ts +1 -1
- package/dist/components/Carousel.vue.d.ts +11 -0
- package/dist/components/Dropdown.vue.d.ts +2 -0
- package/dist/components/FilterQuery.vue.d.ts +3 -8
- package/dist/components/Modal.vue.d.ts +1 -0
- package/dist/components/Swiper.vue.d.ts +12 -6
- package/dist/components/Swiper.vue.d.ts.map +1 -1
- package/dist/components/analytics/PieChart.vue.d.ts +2 -2
- package/dist/components/calendar/CalendarPopover.vue.d.ts +4 -8
- package/dist/components/calendar/CalendarTypes.d.ts +10 -0
- package/dist/components/calendar/Index.vue.d.ts +20 -4
- package/dist/components/calendar/views/WeekView.vue.d.ts +9 -1
- package/dist/components/form/inputs/ArrayInput.vue.d.ts +4 -2
- package/dist/components/form/inputs/CheckInput.vue.d.ts +2 -1
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts +54 -0
- package/dist/components/form/inputs/ColorInput.vue.d.ts +3 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +2 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts +1 -0
- package/dist/components/form/inputs/EmailInput.vue.d.ts +5 -2
- package/dist/components/form/inputs/JSONInput.vue.d.ts +2 -1
- package/dist/components/form/inputs/MarkdownEditor.vue.d.ts +7 -2
- package/dist/components/form/inputs/NumberInput.vue.d.ts +2 -1
- package/dist/components/form/inputs/OTP.vue.d.ts +2 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +16 -10
- package/dist/components/form/inputs/RadioGroup.vue.d.ts +3 -1
- package/dist/components/form/inputs/RangeInput.vue.d.ts +6 -1
- package/dist/components/form/inputs/RichText/index.vue.d.ts +2 -1
- package/dist/components/form/inputs/SelectBtn.vue.d.ts +2 -2
- package/dist/components/form/inputs/SelectInput.vue.d.ts +20 -13
- package/dist/components/form/inputs/SignaturePad.vue.d.ts +6 -1
- package/dist/components/form/inputs/TableField.vue.d.ts +2 -1
- package/dist/components/form/inputs/TelInput.vue.d.ts +2 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts +3 -2
- package/dist/components/form/inputs/ToggleInput.vue.d.ts +2 -1
- package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts +27 -6
- package/dist/components/form/inputs/Upload/upload.d.ts +1 -1
- package/dist/components/form/inputs/index.d.ts +1 -0
- package/dist/components/index.d.ts +3 -1
- package/dist/components/layout/AppContent.vue.d.ts +1 -1
- package/dist/components/layout/AppLayout.vue.d.ts +2 -0
- package/dist/components/layout/AppSidebar.vue.d.ts +5 -1
- package/dist/components/layout/TabsNav.vue.d.ts +12 -1
- package/dist/form-flow/MultiStepForm.vue.d.ts +6 -1
- package/dist/form-flow/form-flow.d.ts +24 -1
- package/dist/i18n/index.d.ts +838 -0
- package/dist/index.cjs +163 -187
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +35663 -29811
- package/dist/style.css +2 -1
- package/dist/types/BagelForm.d.ts +10 -1
- package/dist/types/NavLink.d.ts +2 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/utils/BagelFormUtils.d.ts +1 -0
- package/dist/utils/calendar/dateUtils.d.ts +2 -2
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/useSearch.d.ts +1 -1
- package/package.json +1 -1
- package/src/styles/inputs.css +6 -1
- package/dist/components/Filter.vue.d.ts +0 -30
- package/dist/components/Filter.vue.d.ts.map +0 -1
- package/dist/components/QueryFilter.vue.d.ts +0 -30
- 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")> &
|
|
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:
|
|
181
|
-
}
|
|
181
|
+
shown: boolean;
|
|
182
|
+
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
182
183
|
$slots: {
|
|
183
184
|
trigger?(_: {
|
|
184
185
|
show: () => Promise<void>;
|
|
@@ -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:
|
|
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;
|
|
@@ -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?: "
|
|
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
|
|
2315
|
+
update: (initial: boolean, p?: {
|
|
2316
|
+
autoScroll?: boolean;
|
|
2317
|
+
}) => void;
|
|
2312
2318
|
init: () => boolean;
|
|
2313
2319
|
};
|
|
2314
2320
|
virtual: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Swiper.vue.d.ts","sourceRoot":"","sources":["../../src/components/Swiper.vue"],"names":[],"mappings":"AAmgBA,OAAO,KAAK,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,QAAQ,CAAA;AAClD,OAAO,KAAK,EAAE,eAAe,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;AAK7G,OAAO,YAAY,CAAA;AACnB,OAAO,uBAAuB,CAAA;AAC9B,OAAO,uBAAuB,CAAA;AAC9B,OAAO,wBAAwB,CAAA;AAC/B,OAAO,6BAA6B,CAAA;AACpC,OAAO,wBAAwB,CAAA;AAC/B,OAAO,wBAAwB,CAAA;AAC/B,OAAO,yBAAyB,CAAA;yBAEf,CAAC,GAAG,GAAG,EACvB,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;WAomBO,mBAAmB,CAAC;;;gBA/kBlB,CAAC,EAAE;gBAGH,MAAM;;qBAMD,MAAM,GAAG,MAAM;;;gBAKpB,MAAM;eACP,OAAO;uBACC,MAAM;wBAGL,MAAM,GAAG,MAAM;uBAChB,MAAM;yBACJ,OAAO;qBAGX,OAAO;mBACT,OAAO;qBACL,OAAO;qBAGP,OAAO;qBAGP,OAAO;qBAGP,OAAO,GAAG,iBAAiB;mBAG7B,OAAO,GAAG,eAAe;0BAGlB,OAAO,CAAC,sBAAsB,CAAC;sBAGnC,aAAa,CAAC,aAAa,CAAC;0BAGxB,aAAa;mBAgiB6D,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uDAxnB/C,GAjOsB
|
|
1
|
+
{"version":3,"file":"Swiper.vue.d.ts","sourceRoot":"","sources":["../../src/components/Swiper.vue"],"names":[],"mappings":"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"}
|
|
@@ -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> &
|
|
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> &
|
|
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 {
|
|
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<
|
|
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<
|
|
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:
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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?:
|
|
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<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { BagelInputShellProps } from './bagelInputShell';
|
|
2
|
+
interface Props extends BagelInputShellProps {
|
|
2
3
|
maxLength?: number;
|
|
3
4
|
placeholder?: string;
|
|
4
5
|
label?: string;
|
|
@@ -15,7 +16,11 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
15
16
|
"update:modelValue": (value: string) => any;
|
|
16
17
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
18
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
18
|
-
}>, {
|
|
19
|
+
}>, {
|
|
20
|
+
label: string;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
showFormatting: boolean;
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
19
24
|
textareaRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./TextInput.vue').TextInputProps> & Readonly<{
|
|
20
25
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21
26
|
onDebounce?: ((...args: any[]) => any) | undefined;
|