pangea-lib 4.0.8 → 4.0.10
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/main.cjs.js +43 -43
- package/dist/main.css +2 -2
- package/dist/main.es.js +9323 -9341
- package/dist/types/components/PgaCalendar.vue.d.ts +11 -8
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@ type Range = {
|
|
|
18
18
|
start: Date;
|
|
19
19
|
end: Date;
|
|
20
20
|
};
|
|
21
|
-
declare const _default: import('vue').DefineComponent<{
|
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
22
22
|
modelValue: {
|
|
23
23
|
required: true;
|
|
24
24
|
type: import('vue').PropType<CalendarEvent[]>;
|
|
@@ -51,9 +51,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
51
51
|
vacations: {
|
|
52
52
|
type: import('vue').PropType<Vacation[]>;
|
|
53
53
|
};
|
|
54
|
-
toName: {
|
|
55
|
-
type: import('vue').PropType<string>;
|
|
56
|
-
};
|
|
57
54
|
updateDatesFn: {
|
|
58
55
|
type: import('vue').PropType<(event: CalendarEvent) => Promise<void>>;
|
|
59
56
|
};
|
|
@@ -93,14 +90,20 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
93
90
|
vacations: {
|
|
94
91
|
type: import('vue').PropType<Vacation[]>;
|
|
95
92
|
};
|
|
96
|
-
toName: {
|
|
97
|
-
type: import('vue').PropType<string>;
|
|
98
|
-
};
|
|
99
93
|
updateDatesFn: {
|
|
100
94
|
type: import('vue').PropType<(event: CalendarEvent) => Promise<void>>;
|
|
101
95
|
};
|
|
102
96
|
}>> & {
|
|
103
97
|
onCreateEvent?: (range: Range) => any;
|
|
104
98
|
onRefreshList?: (range: Range) => any;
|
|
105
|
-
}, {}, {}
|
|
99
|
+
}, {}, {}>, {
|
|
100
|
+
event?(_: {
|
|
101
|
+
event: CalendarEvent;
|
|
102
|
+
}): any;
|
|
103
|
+
}>;
|
|
106
104
|
export default _default;
|
|
105
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
106
|
+
new (): {
|
|
107
|
+
$slots: S;
|
|
108
|
+
};
|
|
109
|
+
};
|