@bagelink/vue 1.2.15 → 1.2.20
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 +13 -0
- package/dist/components/calendar/CalendarTypes.d.ts.map +1 -0
- package/dist/components/calendar/Index.vue.d.ts +39 -507
- package/dist/components/calendar/Index.vue.d.ts.map +1 -1
- package/dist/components/calendar/utils.d.ts +31 -0
- package/dist/components/calendar/utils.d.ts.map +1 -0
- package/dist/components/calendar/views/AgendaView.vue.d.ts +16 -0
- package/dist/components/calendar/views/AgendaView.vue.d.ts.map +1 -0
- package/dist/components/calendar/views/DayView.vue.d.ts +50 -0
- package/dist/components/calendar/views/DayView.vue.d.ts.map +1 -0
- package/dist/components/calendar/views/MonthView.vue.d.ts +20 -0
- package/dist/components/calendar/views/MonthView.vue.d.ts.map +1 -0
- package/dist/components/calendar/views/WeekView.vue.d.ts +33 -0
- package/dist/components/calendar/views/WeekView.vue.d.ts.map +1 -0
- package/dist/components/form/BglMultiStepForm.vue.d.ts +63 -0
- package/dist/components/form/BglMultiStepForm.vue.d.ts.map +1 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/form/index.d.ts.map +1 -1
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts +3 -3
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +2241 -3891
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2242 -3892
- package/dist/style.css +567 -633
- package/dist/utils/BagelFormUtils.d.ts +4 -2
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/dist/utils/calendar/EDate.d.ts +2 -0
- package/dist/utils/calendar/EDate.d.ts.map +1 -0
- package/dist/utils/calendar/Helpers.d.ts +19 -0
- package/dist/utils/calendar/Helpers.d.ts.map +1 -0
- package/dist/utils/calendar/constants.d.ts +3 -0
- package/dist/utils/calendar/constants.d.ts.map +1 -0
- package/dist/utils/calendar/dateUtils.d.ts +30 -0
- package/dist/utils/calendar/dateUtils.d.ts.map +1 -0
- package/dist/utils/calendar/event.interface.d.ts +32 -0
- package/dist/utils/calendar/event.interface.d.ts.map +1 -0
- package/dist/utils/calendar/time.d.ts +117 -0
- package/dist/utils/calendar/time.d.ts.map +1 -0
- package/dist/utils/calendar/types.d.ts +27 -0
- package/dist/utils/calendar/types.d.ts.map +1 -0
- package/dist/utils/calendar/typings.d.ts +87 -0
- package/dist/utils/calendar/typings.d.ts.map +1 -0
- package/dist/utils/calendar/week.d.ts +117 -0
- package/dist/utils/calendar/week.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/components/calendar/CalendarTypes.ts +13 -0
- package/src/components/calendar/Index.vue +124 -389
- package/src/components/calendar/utils.ts +70 -0
- package/src/components/calendar/views/AgendaView.vue +263 -0
- package/src/components/calendar/views/DayView.vue +373 -0
- package/src/components/calendar/views/MonthView.vue +313 -0
- package/src/components/calendar/views/WeekView.vue +431 -0
- package/src/components/form/BglMultiStepForm.vue +383 -69
- package/src/components/form/index.ts +1 -0
- package/src/components/form/inputs/CodeEditor/Index.vue +11 -0
- package/src/components/form/inputs/DateInput.vue +3 -3
- package/src/components/form/inputs/DatePicker.vue +35 -30
- package/src/components/form/inputs/SelectInput.vue +2 -0
- package/src/components/form/inputs/Upload/upload.types.d.ts +0 -1
- package/src/index.ts +2 -2
- package/src/styles/inputs.css +138 -137
- package/src/styles/layout.css +3 -2
- package/src/styles/mobilLayout.css +4 -2
- package/src/utils/BagelFormUtils.ts +6 -2
- package/src/utils/calendar/EDate.ts +0 -0
- package/src/{components/calendar/helpers → utils/calendar}/Helpers.ts +6 -6
- package/src/utils/calendar/constants.ts +2 -0
- package/src/utils/{timeAgo.ts → calendar/dateUtils.ts} +38 -1
- package/src/utils/calendar/event.interface.ts +33 -0
- package/src/{components/calendar/helpers/Time.ts → utils/calendar/time.ts} +15 -15
- package/src/utils/calendar/types.ts +27 -0
- package/src/{components/calendar/typings/config.interface.ts → utils/calendar/typings.ts} +13 -6
- package/src/utils/calendar/week.ts +588 -0
- package/src/components/calendar/assets/base.css +0 -60
- package/src/components/calendar/components/header/Header.vue +0 -153
- package/src/components/calendar/components/month/AgendaEventTile.vue +0 -135
- package/src/components/calendar/components/month/AgendaEvents.vue +0 -72
- package/src/components/calendar/components/month/Day.vue +0 -256
- package/src/components/calendar/components/month/Event.vue +0 -164
- package/src/components/calendar/components/month/Month.vue +0 -241
- package/src/components/calendar/components/month/WeekDay.vue +0 -15
- package/src/components/calendar/components/partials/EventFlyout.vue +0 -430
- package/src/components/calendar/components/week/Day.vue +0 -198
- package/src/components/calendar/components/week/DayEvent.vue +0 -584
- package/src/components/calendar/components/week/DayTimeline.vue +0 -80
- package/src/components/calendar/components/week/FullDayEvent.vue +0 -121
- package/src/components/calendar/components/week/Week.vue +0 -414
- package/src/components/calendar/components/week/WeekTimeline.vue +0 -101
- package/src/components/calendar/constants.ts +0 -13
- package/src/components/calendar/helpers/DayIntervals.ts +0 -48
- package/src/components/calendar/helpers/EDate.ts +0 -18
- package/src/components/calendar/helpers/Errors.ts +0 -69
- package/src/components/calendar/helpers/EventChange.ts +0 -88
- package/src/components/calendar/helpers/EventConcurrency.ts +0 -69
- package/src/components/calendar/helpers/EventFlyoutPosition.ts +0 -96
- package/src/components/calendar/helpers/EventPosition.ts +0 -154
- package/src/components/calendar/helpers/EventsFilter.ts +0 -50
- package/src/components/calendar/helpers/Week.ts +0 -37
- package/src/components/calendar/language/index.ts +0 -41
- package/src/components/calendar/language/keys.ts +0 -99
- package/src/components/calendar/models/Event.ts +0 -112
- package/src/components/calendar/styles/_mixins.css +0 -21
- package/src/components/calendar/styles/_variables.css +0 -47
- package/src/components/calendar/typings/interfaces/day.interface.ts +0 -10
- package/src/components/calendar/typings/interfaces/event.interface.ts +0 -32
- package/src/components/calendar/typings/interfaces/full-day-events-week.type.ts +0 -8
- package/src/components/calendar/typings/interfaces/period.interface.ts +0 -5
- package/src/components/calendar/typings/interfaces/time-modes.ts +0 -11
- package/src/components/calendar/typings/types.ts +0 -27
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { CalendarEvent } from '../CalendarTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
events: CalendarEvent[];
|
|
4
|
+
startDate: Date;
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
eventContent?(_: {
|
|
10
|
+
event: {
|
|
11
|
+
id: string;
|
|
12
|
+
title: string;
|
|
13
|
+
description?: string | undefined;
|
|
14
|
+
start_time: Date;
|
|
15
|
+
end_time: Date;
|
|
16
|
+
color?: string | undefined;
|
|
17
|
+
category?: string | undefined;
|
|
18
|
+
allDay?: boolean | undefined;
|
|
19
|
+
};
|
|
20
|
+
}): any;
|
|
21
|
+
};
|
|
22
|
+
refs: {
|
|
23
|
+
popoverRef: HTMLDivElement;
|
|
24
|
+
};
|
|
25
|
+
rootEl: HTMLDivElement;
|
|
26
|
+
};
|
|
27
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
28
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
29
|
+
eventClick: (event: CalendarEvent) => any;
|
|
30
|
+
eventCreate: (event: {
|
|
31
|
+
start_time: Date;
|
|
32
|
+
end_time: Date;
|
|
33
|
+
}) => any;
|
|
34
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
35
|
+
onEventClick?: ((event: CalendarEvent) => any) | undefined;
|
|
36
|
+
onEventCreate?: ((event: {
|
|
37
|
+
start_time: Date;
|
|
38
|
+
end_time: Date;
|
|
39
|
+
}) => any) | undefined;
|
|
40
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
41
|
+
popoverRef: HTMLDivElement;
|
|
42
|
+
}, HTMLDivElement>;
|
|
43
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
44
|
+
export default _default;
|
|
45
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
46
|
+
new (): {
|
|
47
|
+
$slots: S;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=DayView.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DayView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/views/DayView.vue"],"names":[],"mappings":"AAuXA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AASrD,KAAK,WAAW,GAAG;IAClB,MAAM,EAAE,aAAa,EAAE,CAAA;IACvB,SAAS,EAAE,IAAI,CAAA;CACf,CAAC;AA2LF,iBAAS,cAAc;WAuIT,OAAO,IAA6B;;;;;;;;;;;;;YAXhB,GAAG;;;;;;EAgBpC;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;oBA5VoB,IAAI;kBAAY,IAAI;;;;;oBAApB,IAAI;kBAAY,IAAI;;;;kBAqW3D,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"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CalendarEvent } from '../CalendarTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
events: CalendarEvent[];
|
|
4
|
+
startDate: Date;
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): any;
|
|
7
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
8
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
9
|
+
eventClick: (event: CalendarEvent) => any;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
|
+
onEventClick?: ((event: CalendarEvent) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, any, any>;
|
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=MonthView.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MonthView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/views/MonthView.vue"],"names":[],"mappings":"AAAA,OA2TO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAgBrD,KAAK,WAAW,GAAG;IAClB,MAAM,EAAE,aAAa,EAAE,CAAA;IACvB,SAAS,EAAE,IAAI,CAAA;CACf,CAAC;AAsGF,iBAAS,cAAc,QA0ItB;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;mFASnB,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"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { CalendarEvent, WeekStart } from '../CalendarTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
events?: CalendarEvent[];
|
|
4
|
+
startDate?: Date;
|
|
5
|
+
weekStart?: WeekStart;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): any;
|
|
8
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
10
|
+
eventClick: (event: CalendarEvent) => any;
|
|
11
|
+
eventCreate: (event: {
|
|
12
|
+
start_time: Date;
|
|
13
|
+
end_time: Date;
|
|
14
|
+
}) => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
onEventClick?: ((event: CalendarEvent) => any) | undefined;
|
|
17
|
+
onEventCreate?: ((event: {
|
|
18
|
+
start_time: Date;
|
|
19
|
+
end_time: Date;
|
|
20
|
+
}) => any) | undefined;
|
|
21
|
+
}>, {
|
|
22
|
+
events: CalendarEvent[];
|
|
23
|
+
startDate: Date;
|
|
24
|
+
weekStart: WeekStart;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, any, any>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=WeekView.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WeekView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/views/WeekView.vue"],"names":[],"mappings":"AAAA,OAibO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAkBhE,KAAK,WAAW,GAAG;IAClB,MAAM,CAAC,EAAE,aAAa,EAAE,CAAA;IACxB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,SAAS,CAAC,EAAE,SAAS,CAAA;CACrB,CAAC;AA6PF,iBAAS,cAAc,QA0KtB;AA4BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;oBA3boB,IAAI;kBAAY,IAAI;;;;;oBAApB,IAAI;kBAAY,IAAI;;;YAZnD,aAAa,EAAE;eACZ,IAAI;eACJ,SAAS;8EA+cpB,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"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { BglFormSchemaFnT, BagelForm } from '../..';
|
|
2
|
+
import { ComponentProps } from 'vue-component-type-helpers';
|
|
3
|
+
declare const _default: <T extends {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}, P>(__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<{
|
|
6
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
7
|
+
readonly onSubmit?: ((...args: any[]) => any) | undefined;
|
|
8
|
+
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
9
|
+
readonly onStepChange?: ((...args: any[]) => any) | undefined;
|
|
10
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onSubmit" | "onUpdate:modelValue" | "onStepChange"> & ({
|
|
11
|
+
modelValue: T;
|
|
12
|
+
} & {
|
|
13
|
+
bagelFormProps?: Omit<ComponentProps<typeof BagelForm<T, P>>, ("schema" | `${string}modelValue` | `ref${string}` | `onVnode${string}` | "onSubmit")>;
|
|
14
|
+
schema: BglFormSchemaFnT<T>;
|
|
15
|
+
showProgress?: boolean;
|
|
16
|
+
rtl?: boolean;
|
|
17
|
+
stepLabels?: string[];
|
|
18
|
+
allowStepNavigation?: boolean;
|
|
19
|
+
validateOnSteps?: boolean;
|
|
20
|
+
/** Animation direction - auto detects based on step change or can be forced */
|
|
21
|
+
direction?: "auto" | "left" | "right";
|
|
22
|
+
}) & Partial<{}>> & import('vue').PublicProps;
|
|
23
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{
|
|
24
|
+
submit: () => void;
|
|
25
|
+
validateForm: () => boolean;
|
|
26
|
+
isDirty: import('vue').ComputedRef<boolean | undefined>;
|
|
27
|
+
reset: () => void;
|
|
28
|
+
goToStep: (stepIndex: number) => boolean;
|
|
29
|
+
currentStep: import('vue').ComputedRef<number>;
|
|
30
|
+
totalSteps: import('vue').ComputedRef<number>;
|
|
31
|
+
nextStep: () => void;
|
|
32
|
+
prevStep: () => void;
|
|
33
|
+
}>): void;
|
|
34
|
+
attrs: any;
|
|
35
|
+
slots: {
|
|
36
|
+
progress?(_: {
|
|
37
|
+
currentStep: number;
|
|
38
|
+
totalSteps: number;
|
|
39
|
+
goToStep: (stepIndex: number) => boolean;
|
|
40
|
+
stepLabels: string[] | undefined;
|
|
41
|
+
allowStepNavigation: boolean;
|
|
42
|
+
isStepValidated: (stepIndex: number) => boolean;
|
|
43
|
+
}): any;
|
|
44
|
+
success?(_: {}): any;
|
|
45
|
+
error?(_: {}): any;
|
|
46
|
+
steppers?(_: {
|
|
47
|
+
prevStep: () => void;
|
|
48
|
+
nextStep: () => void;
|
|
49
|
+
submit: () => void;
|
|
50
|
+
currentStep: number;
|
|
51
|
+
totalSteps: number;
|
|
52
|
+
canDoNext: boolean;
|
|
53
|
+
}): any;
|
|
54
|
+
};
|
|
55
|
+
emit: ((event: "submit" | "stepChange", ...args: any[]) => void) & ((evt: "update:modelValue", value: T) => void);
|
|
56
|
+
}>) => import('vue').VNode & {
|
|
57
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
58
|
+
};
|
|
59
|
+
export default _default;
|
|
60
|
+
type __VLS_PrettifyLocal<T> = {
|
|
61
|
+
[K in keyof T]: T[K];
|
|
62
|
+
} & {};
|
|
63
|
+
//# sourceMappingURL=BglMultiStepForm.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BglMultiStepForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/BglMultiStepForm.vue"],"names":[],"mappings":"AA0bA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAErD,OAAO,KAAK,EAAoB,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAClF,OAAO,EAAE,SAAS,EAAqB,MAAM,eAAe,CAAA;yBAG3C,CAAC,SAAS;IAAC,CAAC,GAAG,EAAC,MAAM,GAAE,GAAG,CAAA;CAAC,EAAE,CAAC,EAC/C,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;WAwgBO,mBAAmB,CAAC;;;;;oBA/Qd,CAAC;;yBAvPI,IAAI,CACpB,cAAc,CAAC,OAAO,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EACtC,CACA,QAAQ,GAAG,GAAG,MAAM,YAAY,GAAG,MAAM,MAAM,EAAE,GAAG,UAAU,MAAM,EAAE,GAAG,UAAU,CAClF,CACD;gBACO,gBAAgB,CAAC,CAAC,CAAC;uBACZ,OAAO;cAChB,OAAO;qBACA,MAAM,EAAE;8BACC,OAAO;0BACX,OAAO;QACzB,+EAA+E;oBACnE,MAAM,GAAG,MAAM,GAAG,OAAO;oBAyfuD,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;;;8BAvWlB,MAAM;;;;;MAuWkC,GAAG,IAAI;WACpE,GAAG;;;;;kCAxWkB,MAAM;;;yCAbgB,MAAM;YAgU3B,GAAG;yBACH,GAAG;uBACL,GAAG;;;;;;;;YACA,GAAG;;UAoD3B,2GAAqC;EAExC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAnhBzE,wBAmhB4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as BglForm } from './BagelForm.vue';
|
|
2
2
|
export { default as BagelForm } from './BagelForm.vue';
|
|
3
|
+
export { default as BagelMultiStepForm } from './BglMultiStepForm.vue';
|
|
3
4
|
export { default as FieldArray } from './FieldArray.vue';
|
|
4
5
|
export * from './inputs';
|
|
5
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,cAAc,UAAU,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AACtE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACxD,cAAc,UAAU,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Index.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/form/inputs/CodeEditor/Index.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Index.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/form/inputs/CodeEditor/Index.vue"],"names":[],"mappings":"AAqLA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAEtD,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,IAAI,EAAE,SAAS,CAAA;KACf;CACD;AAKD,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CACf,CAAC;;;;;;;;AAyLF,wBASG"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ModeType } from '
|
|
2
|
-
import { WEEK_START_DAY } from '
|
|
1
|
+
import { ModeType } from '../../../utils/calendar/typings';
|
|
2
|
+
import { WEEK_START_DAY } from '../../../utils/calendar/time';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
required?: boolean;
|
|
5
5
|
label?: string;
|
|
@@ -29,10 +29,10 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
29
29
|
}>, {
|
|
30
30
|
small: boolean;
|
|
31
31
|
mode: ModeType;
|
|
32
|
+
locale: string;
|
|
32
33
|
editMode: boolean;
|
|
33
34
|
enableTime: boolean;
|
|
34
35
|
firstDayOfWeek: WEEK_START_DAY;
|
|
35
|
-
locale: string;
|
|
36
36
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
37
37
|
datePickerRef: HTMLDivElement;
|
|
38
38
|
calendarRef: HTMLDivElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DateInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/DateInput.vue"],"names":[],"mappings":"AA6MA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"DateInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/DateInput.vue"],"names":[],"mappings":"AA6MA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAA;AAI/D,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAG7D,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC5B,cAAc,CAAC,EAAE,cAAc,CAAA;IAC/B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,OAAO,CAAA;CAChB,CAAC;AAuIH,KAAK,iBAAiB,GAAG;IACzB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB,GAAG,WAAW,CAAC;;;;;;WAvJN,OAAO;UASR,QAAQ;YAGN,MAAM;cAbJ,OAAO;gBAML,OAAO;oBAMH,cAAc;;;;;AA6TjC,wBAUG"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ModeType } from '
|
|
2
|
-
import { WEEK_START_DAY } from '
|
|
1
|
+
import { ModeType } from '../../../utils/calendar/typings';
|
|
2
|
+
import { WEEK_START_DAY } from '../../../utils/calendar/time';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
modelValue?: string | Date;
|
|
5
5
|
min?: string | Date;
|
|
@@ -15,9 +15,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
15
15
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
mode: ModeType;
|
|
18
|
+
locale: string;
|
|
18
19
|
enableTime: boolean;
|
|
19
20
|
firstDayOfWeek: WEEK_START_DAY;
|
|
20
|
-
locale: string;
|
|
21
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
22
|
export default _default;
|
|
23
23
|
//# sourceMappingURL=DatePicker.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/DatePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/DatePicker.vue"],"names":[],"mappings":"AA8cA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAA;AAG/D,OAAa,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAEnE,KAAK,WAAW,GAAG;IACjB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,cAAc,CAAC,EAAE,cAAc,CAAA;IAC/B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;;;;;;UAJM,QAAQ;YAEN,MAAM;gBACF,OAAO;oBAFH,cAAc;;AAgqBjC,wBASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AA6aA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,eAAe,CAAA;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAW1D,OAAO,wBAAwB,CAAA;AAE/B,UAAU,SAAS;IAClB,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,gBAAgB,CAAA;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;CAChD;AA8MD,iBAAS,cAAc;WA0TT,OAAO,IAA6B;;sBAbvB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCA1hB9B,KAvKwB;;;;;;;;;;;;;;;;;;;;;;;qCAuKxB,KAvJwC,kBAuJxC,cApJA;;;;qCAoJA,KAjJkC;;;;;;;;;;;;;;;qCAiJlC,KAnIK,kBAmIL,cAjI+B;;;;qCAiI/B,KA9HuD,kBA8HvD,cA5Hc,sCA4Hd,cA1HY,4BA0HZ,cAzHS;;;;qCAyHT,KAtHoB,kBAsHpB,cApHA,sCAoHA,cAnHiC,4BAmHjC,cAjHK;;;;qCAiHL,KA7GI,kBA6GJ,cA1GE;;;;qCA0GF,KAvGK,kBAuGL,cApGU,sCAoGV,cAhGC,4BAgGD,cA5FI;;;;qCA4FJ,KAnFG,kBAmFH,cAjFc,sCAiFd,cA9EiB,4BA8EjB,cA5E8B;;;;;;;;;;;;qCA4E9B,KAhEgB;;;;qCAgEhB,KAzDI;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAyDJ,KAtBwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAsBxB,GA1MmB;6BA0MnB,GArMG;gCAqMH,GAlME;iCAkMF,GAjMkB;;;;;;;;;;;;;sCAwOkB,cAAe;;;;;;;;;;qCASK,cACnC;yCAGR,cAAgC,sCACV,cACvB,4BACF,cACI;yCAEJ,cACiB,sCAEZ,cAAgC,4BAEpC,cAAgC;2CAA8C,cAEjE;+CAGrB,cACH,sCACE,cACU,4BAA4B,cAGxC;+CAGK,cACL,sCACS,cAAgC,4BACrB,cAEM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAlF1B,KAvKwB;;;;;;;;;;;;;;;;;;;;;;;qCAuKxB,KAvJwC,kBAuJxC,cApJA;;;;qCAoJA,KAjJkC;;;;;;;;;;;;;;;qCAiJlC,KAnIK,kBAmIL,cAjI+B;;;;qCAiI/B,KA9HuD,kBA8HvD,cA5Hc,sCA4Hd,cA1HY,4BA0HZ,cAzHS;;;;qCAyHT,KAtHoB,kBAsHpB,cApHA,sCAoHA,cAnHiC,4BAmHjC,cAjHK;;;;qCAiHL,KA7GI,kBA6GJ,cA1GE;;;;qCA0GF,KAvGK,kBAuGL,cApGU,sCAoGV,cAhGC,4BAgGD,cA5FI;;;;qCA4FJ,KAnFG,kBAmFH,cAjFc,sCAiFd,cA9EiB,4BA8EjB,cA5E8B;;;;;;;;;;;;qCA4E9B,KAhEgB;;;;qCAgEhB,KAzDI;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAyDJ,KAtBwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCA6DY,cAAe;;;;;;;;;;qCASK,cACnC;yCAGR,cAAgC,sCACV,cACvB,4BACF,cACI;yCAEJ,cACiB,sCAEZ,cAAgC,4BAEpC,cAAgC;2CAA8C,cAEjE;+CAGrB,cACH,sCACE,cACU,4BAA4B,cAGxC;+CAGK,cACL,sCACS,cAAgC,4BACrB,cAEM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAwYhB,GAAE,8CACH,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiF7E;AAmCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;eApjBR,gBAAgB;iBAZd,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAhBrB,KAvKwB;;;;;;;;;;;;;;;;;;;;;;;iCAuKxB,KAvJwC,kBAuJxC,cApJA;;;;iCAoJA,KAjJkC;;;;;;;;;;;;;;;iCAiJlC,KAnIK,kBAmIL,cAjI+B;;;;iCAiI/B,KA9HuD,kBA8HvD,cA5Hc,sCA4Hd,cA1HY,4BA0HZ,cAzHS;;;;iCAyHT,KAtHoB,kBAsHpB,cApHA,sCAoHA,cAnHiC,4BAmHjC,cAjHK;;;;iCAiHL,KA7GI,kBA6GJ,cA1GE;;;;iCA0GF,KAvGK,kBAuGL,cApGU,sCAoGV,cAhGC,4BAgGD,cA5FI;;;;iCA4FJ,KAnFG,kBAmFH,cAjFc,sCAiFd,cA9EiB,4BA8EjB,cA5E8B;;;;;;;;;;;;iCA4E9B,KAhEgB;;;;iCAgEhB,KAzDI;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAyDJ,KAtBwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAsBxB,GA1MmB;yBA0MnB,GArMG;4BAqMH,GAlME;6BAkMF,GAjMkB;;;;;;;;;;;;;kCAwOkB,cAAe;;;;;;;;;;iCASK,cACnC;qCAGR,cAAgC,sCACV,cACvB,4BACF,cACI;qCAEJ,cACiB,sCAEZ,cAAgC,4BAEpC,cAAgC;uCAA8C,cAEjE;2CAGrB,cACH,sCACE,cACU,4BAA4B,cAGxC;2CAGK,cACL,sCACS,cAAgC,4BACrB,cAEM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAlF1B,KAvKwB;;;;;;;;;;;;;;;;;;;;;;;iCAuKxB,KAvJwC,kBAuJxC,cApJA;;;;iCAoJA,KAjJkC;;;;;;;;;;;;;;;iCAiJlC,KAnIK,kBAmIL,cAjI+B;;;;iCAiI/B,KA9HuD,kBA8HvD,cA5Hc,sCA4Hd,cA1HY,4BA0HZ,cAzHS;;;;iCAyHT,KAtHoB,kBAsHpB,cApHA,sCAoHA,cAnHiC,4BAmHjC,cAjHK;;;;iCAiHL,KA7GI,kBA6GJ,cA1GE;;;;iCA0GF,KAvGK,kBAuGL,cApGU,sCAoGV,cAhGC,4BAgGD,cA5FI;;;;iCA4FJ,KAnFG,kBAmFH,cAjFc,sCAiFd,cA9EiB,4BA8EjB,cA5E8B;;;;;;;;;;;;iCA4E9B,KAhEgB;;;;iCAgEhB,KAzDI;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAyDJ,KAtBwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCA6DY,cAAe;;;;;;;;;;iCASK,cACnC;qCAGR,cAAgC,sCACV,cACvB,4BACF,cACI;qCAEJ,cACiB,sCAEZ,cAAgC,4BAEpC,cAAgC;uCAA8C,cAEjE;2CAGrB,cACH,sCACE,cACU,4BAA4B,cAGxC;2CAGK,cACL,sCACS,cAAgC,4BACrB,cAEM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwYhB,GAAE,8CACH,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+H5E,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"}
|