@bagelink/vue 0.0.1218 → 0.0.1224
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/Index.vue.d.ts +514 -0
- package/dist/components/Calendar/Index.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts +119 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts +37 -0
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts +37 -0
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Day.vue.d.ts +84 -0
- package/dist/components/Calendar/components/month/Day.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Event.vue.d.ts +69 -0
- package/dist/components/Calendar/components/month/Event.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Month.vue.d.ts +134 -0
- package/dist/components/Calendar/components/month/Month.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts +7 -0
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts +122 -0
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/Day.vue.d.ts +152 -0
- package/dist/components/Calendar/components/week/Day.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/DayEvent.vue.d.ts +136 -0
- package/dist/components/Calendar/components/week/DayEvent.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/DayTimeline.vue.d.ts +23 -0
- package/dist/components/Calendar/components/week/DayTimeline.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/FullDayEvent.vue.d.ts +42 -0
- package/dist/components/Calendar/components/week/FullDayEvent.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/Week.vue.d.ts +196 -0
- package/dist/components/Calendar/components/week/Week.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts +21 -0
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts.map +1 -0
- package/dist/components/Calendar/constants.d.ts +13 -0
- package/dist/components/Calendar/constants.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/DayIntervals.d.ts +17 -0
- package/dist/components/Calendar/helpers/DayIntervals.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EDate.d.ts +10 -0
- package/dist/components/Calendar/helpers/EDate.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Errors.d.ts +18 -0
- package/dist/components/Calendar/helpers/Errors.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventChange.d.ts +19 -0
- package/dist/components/Calendar/helpers/EventChange.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventConcurrency.d.ts +12 -0
- package/dist/components/Calendar/helpers/EventConcurrency.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventFlyoutPosition.d.ts +14 -0
- package/dist/components/Calendar/helpers/EventFlyoutPosition.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventPosition.d.ts +11 -0
- package/dist/components/Calendar/helpers/EventPosition.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventsFilter.d.ts +11 -0
- package/dist/components/Calendar/helpers/EventsFilter.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Helpers.d.ts +19 -0
- package/dist/components/Calendar/helpers/Helpers.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Time.d.ts +118 -0
- package/dist/components/Calendar/helpers/Time.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Week.d.ts +10 -0
- package/dist/components/Calendar/helpers/Week.d.ts.map +1 -0
- package/dist/components/Calendar/index.d.ts +4 -0
- package/dist/components/Calendar/index.d.ts.map +1 -0
- package/dist/components/Calendar/language/index.d.ts +7 -0
- package/dist/components/Calendar/language/index.d.ts.map +1 -0
- package/dist/components/Calendar/language/keys.d.ts +93 -0
- package/dist/components/Calendar/language/keys.d.ts.map +1 -0
- package/dist/components/Calendar/models/Event.d.ts +50 -0
- package/dist/components/Calendar/models/Event.d.ts.map +1 -0
- package/dist/components/Calendar/typings/config.interface.d.ts +77 -0
- package/dist/components/Calendar/typings/config.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/day.interface.d.ts +10 -0
- package/dist/components/Calendar/typings/interfaces/day.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/event.interface.d.ts +32 -0
- package/dist/components/Calendar/typings/interfaces/event.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/full-day-events-week.type.d.ts +7 -0
- package/dist/components/Calendar/typings/interfaces/full-day-events-week.type.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/period.interface.d.ts +6 -0
- package/dist/components/Calendar/typings/interfaces/period.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/time-modes.d.ts +6 -0
- package/dist/components/Calendar/typings/interfaces/time-modes.d.ts.map +1 -0
- package/dist/components/Calendar/typings/types.d.ts +21 -0
- package/dist/components/Calendar/typings/types.d.ts.map +1 -0
- package/dist/components/DataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/Spreadsheet/Index.vue.d.ts +24 -0
- package/dist/components/Spreadsheet/Index.vue.d.ts.map +1 -0
- package/dist/components/form/BagelForm.vue.d.ts +1 -1
- package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePick.vue.d.ts +9 -0
- package/dist/components/form/inputs/DatePick.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/directives/index.d.ts +2 -0
- package/dist/directives/index.d.ts.map +1 -1
- package/dist/directives/vResize.d.ts +18 -0
- package/dist/directives/vResize.d.ts.map +1 -0
- package/dist/index.cjs +5081 -925
- package/dist/index.mjs +5082 -926
- package/dist/style.css +1134 -401
- package/package.json +2 -1
- package/src/components/Calendar/Index.vue +417 -0
- package/src/components/Calendar/assets/base.css +60 -0
- package/src/components/Calendar/components/header/Header.vue +152 -0
- package/src/components/Calendar/components/month/AgendaEventTile.vue +128 -0
- package/src/components/Calendar/components/month/AgendaEvents.vue +61 -0
- package/src/components/Calendar/components/month/Day.vue +253 -0
- package/src/components/Calendar/components/month/Event.vue +164 -0
- package/src/components/Calendar/components/month/Month.vue +232 -0
- package/src/components/Calendar/components/month/WeekDay.vue +15 -0
- package/src/components/Calendar/components/partials/EventFlyout.vue +430 -0
- package/src/components/Calendar/components/week/Day.vue +198 -0
- package/src/components/Calendar/components/week/DayEvent.vue +585 -0
- package/src/components/Calendar/components/week/DayTimeline.vue +86 -0
- package/src/components/Calendar/components/week/FullDayEvent.vue +121 -0
- package/src/components/Calendar/components/week/Week.vue +414 -0
- package/src/components/Calendar/components/week/WeekTimeline.vue +101 -0
- package/src/components/Calendar/constants.ts +13 -0
- package/src/components/Calendar/env.d.ts +8 -0
- package/src/components/Calendar/helpers/DayIntervals.ts +48 -0
- package/src/components/Calendar/helpers/EDate.ts +18 -0
- package/src/components/Calendar/helpers/Errors.ts +69 -0
- package/src/components/Calendar/helpers/EventChange.ts +88 -0
- package/src/components/Calendar/helpers/EventConcurrency.ts +69 -0
- package/src/components/Calendar/helpers/EventFlyoutPosition.ts +96 -0
- package/src/components/Calendar/helpers/EventPosition.ts +154 -0
- package/src/components/Calendar/helpers/EventsFilter.ts +50 -0
- package/src/components/Calendar/helpers/Helpers.ts +86 -0
- package/src/components/Calendar/helpers/Time.ts +588 -0
- package/src/components/Calendar/helpers/Week.ts +37 -0
- package/src/components/Calendar/language/index.ts +40 -0
- package/src/components/Calendar/language/keys.ts +93 -0
- package/src/components/Calendar/models/Event.ts +112 -0
- package/src/components/Calendar/styles/_mixins.css +21 -0
- package/src/components/Calendar/styles/_variables.css +47 -0
- package/src/components/Calendar/typings/config.interface.ts +87 -0
- package/src/components/Calendar/typings/interfaces/day.interface.ts +10 -0
- package/src/components/Calendar/typings/interfaces/event.interface.ts +32 -0
- package/src/components/Calendar/typings/interfaces/full-day-events-week.type.ts +8 -0
- package/src/components/Calendar/typings/interfaces/period.interface.ts +5 -0
- package/src/components/Calendar/typings/interfaces/time-modes.ts +9 -0
- package/src/components/Calendar/typings/types.ts +23 -0
- package/src/components/DataTable/DataTable.vue +4 -0
- package/src/components/Spreadsheet/Index.vue +843 -0
- package/src/components/form/BagelForm.vue +1 -1
- package/src/components/form/inputs/DatePick.vue +193 -152
- package/src/components/form/inputs/DatePicker.vue +2 -2
- package/src/components/form/inputs/NumberInput.vue +3 -5
- package/src/components/index.ts +4 -6
- package/src/directives/index.ts +2 -0
- package/src/directives/vResize.ts +205 -0
- package/src/styles/buttons.css +81 -73
- package/src/styles/layout.css +25 -0
- package/src/styles/mobilLayout.css +25 -0
- package/src/styles/text.css +82 -1
- package/src/styles/theme.css +269 -258
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { default as Time } from '../../helpers/Time';
|
|
3
|
+
import { ConfigInterface } from '../../typings/config.interface';
|
|
4
|
+
import { DayInterface } from '../../typings/interfaces/day.interface';
|
|
5
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
6
|
+
config: {
|
|
7
|
+
type: PropType<ConfigInterface>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
time: {
|
|
11
|
+
type: PropType<Time>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
day: {
|
|
15
|
+
type: PropType<DayInterface>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
eventWasClicked: (...args: any[]) => void;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
+
config: {
|
|
22
|
+
type: PropType<ConfigInterface>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
time: {
|
|
26
|
+
type: PropType<Time>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
day: {
|
|
30
|
+
type: PropType<DayInterface>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
}>> & Readonly<{
|
|
34
|
+
onEventWasClicked?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=AgendaEvents.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgendaEvents.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/month/AgendaEvents.vue"],"names":[],"mappings":"AAAA,OA+DO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAA;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAA;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;;;cA2IxD,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,YAAY,CAAC;;;;;;;cARtB,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,YAAY,CAAC;;;;;;AAhBxC,wBAqBG"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { default as Time } from '../../helpers/Time';
|
|
3
|
+
import { ConfigInterface } from '../../typings/config.interface';
|
|
4
|
+
import { DayInterface } from '../../typings/interfaces/day.interface';
|
|
5
|
+
import { EventInterface } from '../../typings/interfaces/event.interface';
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
dayCell?(_: {
|
|
10
|
+
dayData: DayInterface;
|
|
11
|
+
}): any;
|
|
12
|
+
monthEvent?(_: {
|
|
13
|
+
eventData: EventInterface;
|
|
14
|
+
}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: any;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
21
|
+
config: {
|
|
22
|
+
type: PropType<ConfigInterface>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
time: {
|
|
26
|
+
type: PropType<Time>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
day: {
|
|
30
|
+
type: PropType<DayInterface>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
isSelected: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
38
|
+
updatedPeriod: (period: {
|
|
39
|
+
start: Date;
|
|
40
|
+
end: Date;
|
|
41
|
+
selectedDate: Date;
|
|
42
|
+
}) => any;
|
|
43
|
+
eventWasClicked: (event: EventInterface) => any;
|
|
44
|
+
eventWasDragged: (event: EventInterface) => any;
|
|
45
|
+
dateWasClicked: (date: string) => any;
|
|
46
|
+
dayWasSelected: (day: DayInterface) => any;
|
|
47
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
48
|
+
config: {
|
|
49
|
+
type: PropType<ConfigInterface>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
time: {
|
|
53
|
+
type: PropType<Time>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
day: {
|
|
57
|
+
type: PropType<DayInterface>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
isSelected: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
}>> & Readonly<{
|
|
65
|
+
onUpdatedPeriod?: ((period: {
|
|
66
|
+
start: Date;
|
|
67
|
+
end: Date;
|
|
68
|
+
selectedDate: Date;
|
|
69
|
+
}) => any) | undefined;
|
|
70
|
+
onEventWasClicked?: ((event: EventInterface) => any) | undefined;
|
|
71
|
+
onEventWasDragged?: ((event: EventInterface) => any) | undefined;
|
|
72
|
+
onDateWasClicked?: ((date: string) => any) | undefined;
|
|
73
|
+
onDayWasSelected?: ((day: DayInterface) => any) | undefined;
|
|
74
|
+
}>, {
|
|
75
|
+
isSelected: boolean;
|
|
76
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
77
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
78
|
+
export default _default;
|
|
79
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
80
|
+
new (): {
|
|
81
|
+
$slots: S;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
//# sourceMappingURL=Day.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Day.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/month/Day.vue"],"names":[],"mappings":"AA+PA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAA;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAA;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;AAC1E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAA;AAqG9E,iBAAS,cAAc;WAmHT,OAAO,IAA6B;;;;YAXrB,GAAG;;;YACA,GAAG;;;;EAelC;AAuCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQH,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;eAzPD,IAAI;aAAO,IAAI;sBAAgB,IAAI;;;;;;;;cAiPxD,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;eAzPD,IAAI;aAAO,IAAI;sBAAgB,IAAI;;;;;;;;4EAiQxE,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { default as Time } from '../../helpers/Time';
|
|
3
|
+
import { ConfigInterface } from '../../typings/config.interface';
|
|
4
|
+
import { DayInterface } from '../../typings/interfaces/day.interface';
|
|
5
|
+
import { EventInterface } from '../../typings/interfaces/event.interface';
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
monthEvent?(_: {
|
|
10
|
+
eventData: EventInterface;
|
|
11
|
+
}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {};
|
|
14
|
+
rootEl: any;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
18
|
+
time: {
|
|
19
|
+
type: PropType<Time>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
calendarEvent: {
|
|
23
|
+
type: PropType<EventInterface>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
config: {
|
|
27
|
+
type: PropType<ConfigInterface>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
day: {
|
|
31
|
+
type: PropType<DayInterface>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
35
|
+
eventWasClicked: (payload: {
|
|
36
|
+
clickedEvent: EventInterface;
|
|
37
|
+
eventElement: HTMLElement | null;
|
|
38
|
+
}) => any;
|
|
39
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
40
|
+
time: {
|
|
41
|
+
type: PropType<Time>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
calendarEvent: {
|
|
45
|
+
type: PropType<EventInterface>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
config: {
|
|
49
|
+
type: PropType<ConfigInterface>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
day: {
|
|
53
|
+
type: PropType<DayInterface>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
}>> & Readonly<{
|
|
57
|
+
onEventWasClicked?: ((payload: {
|
|
58
|
+
clickedEvent: EventInterface;
|
|
59
|
+
eventElement: HTMLElement | null;
|
|
60
|
+
}) => any) | undefined;
|
|
61
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
62
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
63
|
+
export default _default;
|
|
64
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
65
|
+
new (): {
|
|
66
|
+
$slots: S;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
//# sourceMappingURL=Event.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Event.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/month/Event.vue"],"names":[],"mappings":"AAsKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAA;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAA;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;AAC1E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAA;AAsG9E,iBAAS,cAAc;WAsET,OAAO,IAA6B;;;;YAVlB,GAAG;;;;EAelC;AAiCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQH,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,YAAY,CAAC;;;;;sBA/MS,cAAc;sBAAgB,WAAW,GAAG,IAAI;;;;cAmM/E,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,cAAc,CAAC;;;;cAIxB,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,YAAY,CAAC;;;;;sBA/MS,cAAc;sBAAgB,WAAW,GAAG,IAAI;;iFAmN/F,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { default as Time } from '../../helpers/Time';
|
|
3
|
+
import { ConfigInterface } from '../../typings/config.interface';
|
|
4
|
+
import { DayInterface } from '../../typings/interfaces/day.interface';
|
|
5
|
+
import { EventInterface } from '../../typings/interfaces/event.interface';
|
|
6
|
+
import { PeriodInterface } from '../../typings/interfaces/period.interface';
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
monthEvent?(_: {
|
|
11
|
+
eventData: EventInterface;
|
|
12
|
+
}): any;
|
|
13
|
+
dayCell?(_: {
|
|
14
|
+
dayData: DayInterface;
|
|
15
|
+
}): any;
|
|
16
|
+
eventDialog?(_: {
|
|
17
|
+
eventDialogData: {
|
|
18
|
+
id: import('../../typings/interfaces/event.interface').EventID;
|
|
19
|
+
title?: string | undefined;
|
|
20
|
+
time: {
|
|
21
|
+
start: string;
|
|
22
|
+
end: string;
|
|
23
|
+
};
|
|
24
|
+
description?: string | undefined;
|
|
25
|
+
topic?: string | undefined;
|
|
26
|
+
location?: string | undefined;
|
|
27
|
+
with?: string | undefined;
|
|
28
|
+
colorScheme?: string | undefined;
|
|
29
|
+
color?: import('../../typings/interfaces/event.interface').EventColor | undefined;
|
|
30
|
+
isEditable?: boolean | undefined;
|
|
31
|
+
disableDnD?: import('../../typings/types').modeType[] | undefined;
|
|
32
|
+
disableResize?: import('../../typings/types').modeType[] | undefined;
|
|
33
|
+
isCustom?: boolean | import('../../typings/types').modeType[] | undefined;
|
|
34
|
+
zIndex?: number | undefined;
|
|
35
|
+
nOfPreviousConcurrentEvents?: number | undefined;
|
|
36
|
+
totalConcurrentEvents?: number | undefined;
|
|
37
|
+
timeJS?: {
|
|
38
|
+
start: Date;
|
|
39
|
+
end: Date;
|
|
40
|
+
} | undefined;
|
|
41
|
+
originalEvent?: {
|
|
42
|
+
with?: string | undefined;
|
|
43
|
+
time: {
|
|
44
|
+
start: string;
|
|
45
|
+
end: string;
|
|
46
|
+
};
|
|
47
|
+
title?: string | undefined;
|
|
48
|
+
id: import('../../typings/interfaces/event.interface').EventID;
|
|
49
|
+
color?: import('../../typings/interfaces/event.interface').EventColor | undefined;
|
|
50
|
+
description?: string | undefined;
|
|
51
|
+
topic?: string | undefined;
|
|
52
|
+
location?: string | undefined;
|
|
53
|
+
colorScheme?: string | undefined;
|
|
54
|
+
isEditable?: boolean | undefined;
|
|
55
|
+
disableDnD?: import('../../typings/types').modeType[] | undefined;
|
|
56
|
+
disableResize?: import('../../typings/types').modeType[] | undefined;
|
|
57
|
+
isCustom?: boolean | import('../../typings/types').modeType[] | undefined;
|
|
58
|
+
zIndex?: number | undefined;
|
|
59
|
+
nOfPreviousConcurrentEvents?: number | undefined;
|
|
60
|
+
totalConcurrentEvents?: number | undefined;
|
|
61
|
+
timeJS?: {
|
|
62
|
+
start: Date;
|
|
63
|
+
end: Date;
|
|
64
|
+
} | undefined;
|
|
65
|
+
eventType?: import('../../typings/interfaces/event.interface').EVENT_TYPE | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
eventType?: import('../../typings/interfaces/event.interface').EVENT_TYPE | undefined;
|
|
68
|
+
} | null;
|
|
69
|
+
closeEventDialog: () => void;
|
|
70
|
+
}): any;
|
|
71
|
+
};
|
|
72
|
+
refs: {};
|
|
73
|
+
rootEl: HTMLDivElement;
|
|
74
|
+
};
|
|
75
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
76
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
77
|
+
config: {
|
|
78
|
+
type: PropType<ConfigInterface>;
|
|
79
|
+
required: true;
|
|
80
|
+
};
|
|
81
|
+
time: {
|
|
82
|
+
type: PropType<Time>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
period: {
|
|
86
|
+
type: PropType<PeriodInterface>;
|
|
87
|
+
required: true;
|
|
88
|
+
};
|
|
89
|
+
eventsProp: {
|
|
90
|
+
type: PropType<EventInterface[]>;
|
|
91
|
+
default: () => never[];
|
|
92
|
+
};
|
|
93
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
94
|
+
updatedPeriod: (period: any) => any;
|
|
95
|
+
eventWasClicked: (event: any) => any;
|
|
96
|
+
editEvent: (event: any) => any;
|
|
97
|
+
deleteEvent: (event: any) => any;
|
|
98
|
+
eventWasDragged: (event: any) => any;
|
|
99
|
+
dateWasClicked: (date: any) => any;
|
|
100
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
101
|
+
config: {
|
|
102
|
+
type: PropType<ConfigInterface>;
|
|
103
|
+
required: true;
|
|
104
|
+
};
|
|
105
|
+
time: {
|
|
106
|
+
type: PropType<Time>;
|
|
107
|
+
required: true;
|
|
108
|
+
};
|
|
109
|
+
period: {
|
|
110
|
+
type: PropType<PeriodInterface>;
|
|
111
|
+
required: true;
|
|
112
|
+
};
|
|
113
|
+
eventsProp: {
|
|
114
|
+
type: PropType<EventInterface[]>;
|
|
115
|
+
default: () => never[];
|
|
116
|
+
};
|
|
117
|
+
}>> & Readonly<{
|
|
118
|
+
onUpdatedPeriod?: ((period: any) => any) | undefined;
|
|
119
|
+
onEventWasClicked?: ((event: any) => any) | undefined;
|
|
120
|
+
onEditEvent?: ((event: any) => any) | undefined;
|
|
121
|
+
onDeleteEvent?: ((event: any) => any) | undefined;
|
|
122
|
+
onEventWasDragged?: ((event: any) => any) | undefined;
|
|
123
|
+
onDateWasClicked?: ((date: any) => any) | undefined;
|
|
124
|
+
}>, {
|
|
125
|
+
eventsProp: EventInterface[];
|
|
126
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
127
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
128
|
+
export default _default;
|
|
129
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
130
|
+
new (): {
|
|
131
|
+
$slots: S;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
//# sourceMappingURL=Month.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Month.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/month/Month.vue"],"names":[],"mappings":"AAAA,OA0OO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAA;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAA;AACrE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;AAC1E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAA;AAC9E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAA;AAsIhF,iBAAS,cAAc;WA4MT,OAAO,IAA6B;;;;YAZjB,GAAG;;;YACN,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YACC,GAAG;;;;EAepC;AAqCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQH,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,eAAe,CAAC;;;;cAI1B,QAAQ,CAAC,cAAc,EAAE,CAAC;;;;;;;;;;;;cAZzB,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,eAAe,CAAC;;;;cAI1B,QAAQ,CAAC,cAAc,EAAE,CAAC;;;;;;;;;;;;uFAKzC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DayInterface } from '../../typings/interfaces/day.interface';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
day: DayInterface;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
6
|
+
export default _default;
|
|
7
|
+
//# sourceMappingURL=WeekDay.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WeekDay.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/month/WeekDay.vue"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;AAE1E,KAAK,WAAW,GAAG;IAClB,GAAG,EAAE,YAAY,CAAA;CACjB,CAAC;;AAyCF,wBAOG"}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { default as Time } from '../../helpers/Time';
|
|
3
|
+
import { ConfigInterface } from '../../typings/config.interface';
|
|
4
|
+
import { EventInterface } from '../../typings/interfaces/event.interface';
|
|
5
|
+
declare function closeFlyout(): void;
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {
|
|
10
|
+
eventDialogData: {
|
|
11
|
+
id: import('../../typings/interfaces/event.interface').EventID;
|
|
12
|
+
title?: string | undefined;
|
|
13
|
+
time: {
|
|
14
|
+
start: string;
|
|
15
|
+
end: string;
|
|
16
|
+
};
|
|
17
|
+
description?: string | undefined;
|
|
18
|
+
topic?: string | undefined;
|
|
19
|
+
location?: string | undefined;
|
|
20
|
+
with?: string | undefined;
|
|
21
|
+
colorScheme?: string | undefined;
|
|
22
|
+
color?: import('../../typings/interfaces/event.interface').EventColor | undefined;
|
|
23
|
+
isEditable?: boolean | undefined;
|
|
24
|
+
disableDnD?: import('../../typings/types').modeType[] | undefined;
|
|
25
|
+
disableResize?: import('../../typings/types').modeType[] | undefined;
|
|
26
|
+
isCustom?: boolean | import('../../typings/types').modeType[] | undefined;
|
|
27
|
+
zIndex?: number | undefined;
|
|
28
|
+
nOfPreviousConcurrentEvents?: number | undefined;
|
|
29
|
+
totalConcurrentEvents?: number | undefined;
|
|
30
|
+
timeJS?: {
|
|
31
|
+
start: Date;
|
|
32
|
+
end: Date;
|
|
33
|
+
} | undefined;
|
|
34
|
+
originalEvent?: {
|
|
35
|
+
with?: string | undefined;
|
|
36
|
+
time: {
|
|
37
|
+
start: string;
|
|
38
|
+
end: string;
|
|
39
|
+
};
|
|
40
|
+
title?: string | undefined;
|
|
41
|
+
id: import('../../typings/interfaces/event.interface').EventID;
|
|
42
|
+
color?: import('../../typings/interfaces/event.interface').EventColor | undefined;
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
topic?: string | undefined;
|
|
45
|
+
location?: string | undefined;
|
|
46
|
+
colorScheme?: string | undefined;
|
|
47
|
+
isEditable?: boolean | undefined;
|
|
48
|
+
disableDnD?: import('../../typings/types').modeType[] | undefined;
|
|
49
|
+
disableResize?: import('../../typings/types').modeType[] | undefined;
|
|
50
|
+
isCustom?: boolean | import('../../typings/types').modeType[] | undefined;
|
|
51
|
+
zIndex?: number | undefined;
|
|
52
|
+
nOfPreviousConcurrentEvents?: number | undefined;
|
|
53
|
+
totalConcurrentEvents?: number | undefined;
|
|
54
|
+
timeJS?: {
|
|
55
|
+
start: Date;
|
|
56
|
+
end: Date;
|
|
57
|
+
} | undefined;
|
|
58
|
+
eventType?: import('../../typings/interfaces/event.interface').EVENT_TYPE | undefined;
|
|
59
|
+
} | undefined;
|
|
60
|
+
eventType?: import('../../typings/interfaces/event.interface').EVENT_TYPE | undefined;
|
|
61
|
+
} | null;
|
|
62
|
+
closeEventDialog: typeof closeFlyout;
|
|
63
|
+
}): any;
|
|
64
|
+
};
|
|
65
|
+
refs: {};
|
|
66
|
+
rootEl: HTMLDivElement;
|
|
67
|
+
};
|
|
68
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
69
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
70
|
+
calendarEventProp: {
|
|
71
|
+
type: PropType<EventInterface | null>;
|
|
72
|
+
default: () => {};
|
|
73
|
+
};
|
|
74
|
+
eventElement: {
|
|
75
|
+
type: PropType<HTMLElement | any>;
|
|
76
|
+
default: null;
|
|
77
|
+
};
|
|
78
|
+
time: {
|
|
79
|
+
type: PropType<Time>;
|
|
80
|
+
required: true;
|
|
81
|
+
};
|
|
82
|
+
config: {
|
|
83
|
+
type: PropType<ConfigInterface>;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
87
|
+
hide: (...args: any[]) => void;
|
|
88
|
+
editEvent: (...args: any[]) => void;
|
|
89
|
+
deleteEvent: (...args: any[]) => void;
|
|
90
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
91
|
+
calendarEventProp: {
|
|
92
|
+
type: PropType<EventInterface | null>;
|
|
93
|
+
default: () => {};
|
|
94
|
+
};
|
|
95
|
+
eventElement: {
|
|
96
|
+
type: PropType<HTMLElement | any>;
|
|
97
|
+
default: null;
|
|
98
|
+
};
|
|
99
|
+
time: {
|
|
100
|
+
type: PropType<Time>;
|
|
101
|
+
required: true;
|
|
102
|
+
};
|
|
103
|
+
config: {
|
|
104
|
+
type: PropType<ConfigInterface>;
|
|
105
|
+
required: true;
|
|
106
|
+
};
|
|
107
|
+
}>> & Readonly<{
|
|
108
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
109
|
+
onEditEvent?: ((...args: any[]) => any) | undefined;
|
|
110
|
+
onDeleteEvent?: ((...args: any[]) => any) | undefined;
|
|
111
|
+
}>, {
|
|
112
|
+
calendarEventProp: EventInterface | null;
|
|
113
|
+
eventElement: any;
|
|
114
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
115
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
116
|
+
export default _default;
|
|
117
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
118
|
+
new (): {
|
|
119
|
+
$slots: S;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
//# sourceMappingURL=EventFlyout.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventFlyout.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/partials/EventFlyout.vue"],"names":[],"mappings":"AAgbA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAA;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAA;AACrE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0CAA0C,CAAA;AA+I9E,iBAAS,WAAW,SAMnB;AAoDD,iBAAS,cAAc;WA6LT,OAAO,IAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAVpB,GAAG;;;;EAehC;AAsCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQH,QAAQ,CAAC,cAAc,GAAG,IAAI,CAAC;;;;cAI/B,QAAQ,CAAC,WAAW,GAAG,GAAG,CAAC;;;;cAI3B,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,eAAe,CAAC;;;;;;;;;cAZzB,QAAQ,CAAC,cAAc,GAAG,IAAI,CAAC;;;;cAI/B,QAAQ,CAAC,WAAW,GAAG,GAAG,CAAC;;;;cAI3B,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,eAAe,CAAC;;;;;;;;;;uFAKzC,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { default as Time } from '../../helpers/Time';
|
|
3
|
+
import { ConfigInterface, DayIntervalsType } from '../../typings/config.interface';
|
|
4
|
+
import { DayInterface } from '../../typings/interfaces/day.interface';
|
|
5
|
+
import { DayInfo, modeType } from '../../typings/types';
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
weekDayEvent?(_: {
|
|
10
|
+
eventData: {
|
|
11
|
+
id: import('../../typings/interfaces/event.interface').EventID;
|
|
12
|
+
title?: string | undefined;
|
|
13
|
+
time: {
|
|
14
|
+
start: string;
|
|
15
|
+
end: string;
|
|
16
|
+
};
|
|
17
|
+
description?: string | undefined;
|
|
18
|
+
topic?: string | undefined;
|
|
19
|
+
location?: string | undefined;
|
|
20
|
+
with?: string | undefined;
|
|
21
|
+
colorScheme?: string | undefined;
|
|
22
|
+
color?: import('../../typings/interfaces/event.interface').EventColor | undefined;
|
|
23
|
+
isEditable?: boolean | undefined;
|
|
24
|
+
disableDnD?: modeType[] | undefined;
|
|
25
|
+
disableResize?: modeType[] | undefined;
|
|
26
|
+
isCustom?: boolean | modeType[] | undefined;
|
|
27
|
+
zIndex?: number | undefined;
|
|
28
|
+
nOfPreviousConcurrentEvents?: number | undefined;
|
|
29
|
+
totalConcurrentEvents?: number | undefined;
|
|
30
|
+
timeJS?: {
|
|
31
|
+
start: Date;
|
|
32
|
+
end: Date;
|
|
33
|
+
} | undefined;
|
|
34
|
+
originalEvent?: {
|
|
35
|
+
with?: string | undefined;
|
|
36
|
+
time: {
|
|
37
|
+
start: string;
|
|
38
|
+
end: string;
|
|
39
|
+
};
|
|
40
|
+
title?: string | undefined;
|
|
41
|
+
id: import('../../typings/interfaces/event.interface').EventID;
|
|
42
|
+
color?: import('../../typings/interfaces/event.interface').EventColor | undefined;
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
topic?: string | undefined;
|
|
45
|
+
location?: string | undefined;
|
|
46
|
+
colorScheme?: string | undefined;
|
|
47
|
+
isEditable?: boolean | undefined;
|
|
48
|
+
disableDnD?: modeType[] | undefined;
|
|
49
|
+
disableResize?: modeType[] | undefined;
|
|
50
|
+
isCustom?: boolean | modeType[] | undefined;
|
|
51
|
+
zIndex?: number | undefined;
|
|
52
|
+
nOfPreviousConcurrentEvents?: number | undefined;
|
|
53
|
+
totalConcurrentEvents?: number | undefined;
|
|
54
|
+
timeJS?: {
|
|
55
|
+
start: Date;
|
|
56
|
+
end: Date;
|
|
57
|
+
} | undefined;
|
|
58
|
+
eventType?: import('../../typings/interfaces/event.interface').EVENT_TYPE | undefined;
|
|
59
|
+
} | undefined;
|
|
60
|
+
eventType?: import('../../typings/interfaces/event.interface').EVENT_TYPE | undefined;
|
|
61
|
+
};
|
|
62
|
+
}): any;
|
|
63
|
+
};
|
|
64
|
+
refs: {};
|
|
65
|
+
rootEl: HTMLDivElement;
|
|
66
|
+
};
|
|
67
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
68
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
69
|
+
day: {
|
|
70
|
+
type: PropType<DayInterface>;
|
|
71
|
+
required: true;
|
|
72
|
+
};
|
|
73
|
+
time: {
|
|
74
|
+
type: PropType<Time>;
|
|
75
|
+
required: true;
|
|
76
|
+
};
|
|
77
|
+
config: {
|
|
78
|
+
type: PropType<ConfigInterface>;
|
|
79
|
+
required: true;
|
|
80
|
+
};
|
|
81
|
+
dayInfo: {
|
|
82
|
+
type: PropType<DayInfo>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
mode: {
|
|
86
|
+
type: PropType<modeType>;
|
|
87
|
+
required: true;
|
|
88
|
+
};
|
|
89
|
+
dayIntervals: {
|
|
90
|
+
type: PropType<DayIntervalsType>;
|
|
91
|
+
required: true;
|
|
92
|
+
};
|
|
93
|
+
weekHeight: {
|
|
94
|
+
type: NumberConstructor;
|
|
95
|
+
required: true;
|
|
96
|
+
};
|
|
97
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
98
|
+
eventWasClicked: (...args: any[]) => void;
|
|
99
|
+
eventWasDragged: (...args: any[]) => void;
|
|
100
|
+
eventWasResized: (...args: any[]) => void;
|
|
101
|
+
dragStart: (...args: any[]) => void;
|
|
102
|
+
dragEnd: (...args: any[]) => void;
|
|
103
|
+
intervalWasClicked: (...args: any[]) => void;
|
|
104
|
+
dayWasClicked: (...args: any[]) => void;
|
|
105
|
+
datetimeWasClicked: (...args: any[]) => void;
|
|
106
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
107
|
+
day: {
|
|
108
|
+
type: PropType<DayInterface>;
|
|
109
|
+
required: true;
|
|
110
|
+
};
|
|
111
|
+
time: {
|
|
112
|
+
type: PropType<Time>;
|
|
113
|
+
required: true;
|
|
114
|
+
};
|
|
115
|
+
config: {
|
|
116
|
+
type: PropType<ConfigInterface>;
|
|
117
|
+
required: true;
|
|
118
|
+
};
|
|
119
|
+
dayInfo: {
|
|
120
|
+
type: PropType<DayInfo>;
|
|
121
|
+
required: true;
|
|
122
|
+
};
|
|
123
|
+
mode: {
|
|
124
|
+
type: PropType<modeType>;
|
|
125
|
+
required: true;
|
|
126
|
+
};
|
|
127
|
+
dayIntervals: {
|
|
128
|
+
type: PropType<DayIntervalsType>;
|
|
129
|
+
required: true;
|
|
130
|
+
};
|
|
131
|
+
weekHeight: {
|
|
132
|
+
type: NumberConstructor;
|
|
133
|
+
required: true;
|
|
134
|
+
};
|
|
135
|
+
}>> & Readonly<{
|
|
136
|
+
onEventWasClicked?: ((...args: any[]) => any) | undefined;
|
|
137
|
+
onEventWasDragged?: ((...args: any[]) => any) | undefined;
|
|
138
|
+
onEventWasResized?: ((...args: any[]) => any) | undefined;
|
|
139
|
+
onDragStart?: ((...args: any[]) => any) | undefined;
|
|
140
|
+
onDragEnd?: ((...args: any[]) => any) | undefined;
|
|
141
|
+
onIntervalWasClicked?: ((...args: any[]) => any) | undefined;
|
|
142
|
+
onDayWasClicked?: ((...args: any[]) => any) | undefined;
|
|
143
|
+
onDatetimeWasClicked?: ((...args: any[]) => any) | undefined;
|
|
144
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
145
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
146
|
+
export default _default;
|
|
147
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
148
|
+
new (): {
|
|
149
|
+
$slots: S;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
//# sourceMappingURL=Day.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Day.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Calendar/components/week/Day.vue"],"names":[],"mappings":"AAwMA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAA;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AACvF,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;AAE1E,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAA;AAyH5D,iBAAS,cAAc;WA8GT,OAAO,IAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAVf,GAAG;;;;EAerC;AA6CD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAQH,QAAQ,CAAC,YAAY,CAAC;;;;cAItB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,OAAO,CAAC;;;;cAIjB,QAAQ,CAAC,QAAQ,CAAC;;;;cAIlB,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;;;cApB1B,QAAQ,CAAC,YAAY,CAAC;;;;cAItB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,eAAe,CAAC;;;;cAIzB,QAAQ,CAAC,OAAO,CAAC;;;;cAIjB,QAAQ,CAAC,QAAQ,CAAC;;;;cAIlB,QAAQ,CAAC,gBAAgB,CAAC;;;;;;;;;;;;;;;;4FAS1C,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|