@syncfusion/ej2-vue-schedule 20.4.53 → 21.1.37
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/CHANGELOG.md +18 -0
- package/dist/ej2-vue-schedule.umd.min.js +2 -2
- package/dist/ej2-vue-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-schedule.es2015.js +401 -543
- package/dist/es6/ej2-vue-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-schedule.es5.js +440 -628
- package/dist/es6/ej2-vue-schedule.es5.js.map +1 -1
- package/dist/global/ej2-vue-schedule.min.js +2 -2
- package/package.json +11 -10
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -28
- package/src/recurrence-editor/recurrenceeditor.component.js +101 -130
- package/src/schedule/headerrows.directive.d.ts +2 -12
- package/src/schedule/headerrows.directive.js +22 -71
- package/src/schedule/resources.directive.d.ts +2 -12
- package/src/schedule/resources.directive.js +22 -71
- package/src/schedule/schedule.component.d.ts +3 -70
- package/src/schedule/schedule.component.js +258 -286
- package/src/schedule/views.directive.d.ts +2 -12
- package/src/schedule/views.directive.js +22 -71
- package/styles/bootstrap-dark.css +99 -89
- package/styles/bootstrap.css +99 -89
- package/styles/bootstrap4.css +99 -89
- package/styles/bootstrap5-dark.css +110 -100
- package/styles/bootstrap5.css +110 -100
- package/styles/fabric-dark.css +98 -88
- package/styles/fabric.css +98 -88
- package/styles/fluent-dark.css +109 -99
- package/styles/fluent.css +109 -99
- package/styles/highcontrast-light.css +98 -88
- package/styles/highcontrast.css +98 -88
- package/styles/material-dark.css +98 -88
- package/styles/material.css +98 -88
- package/styles/schedule/bootstrap-dark.css +99 -89
- package/styles/schedule/bootstrap.css +99 -89
- package/styles/schedule/bootstrap4.css +99 -89
- package/styles/schedule/bootstrap5-dark.css +110 -100
- package/styles/schedule/bootstrap5.css +110 -100
- package/styles/schedule/fabric-dark.css +98 -88
- package/styles/schedule/fabric.css +98 -88
- package/styles/schedule/fluent-dark.css +109 -99
- package/styles/schedule/fluent.css +109 -99
- package/styles/schedule/highcontrast-light.css +98 -88
- package/styles/schedule/highcontrast.css +98 -88
- package/styles/schedule/material-dark.css +98 -88
- package/styles/schedule/material.css +98 -88
- package/styles/schedule/tailwind-dark.css +106 -96
- package/styles/schedule/tailwind.css +106 -96
- package/styles/tailwind-dark.css +106 -96
- package/styles/tailwind.css +106 -96
|
@@ -1,82 +1,15 @@
|
|
|
1
|
-
import { ComponentBase } from '@syncfusion/ej2-vue-base';
|
|
2
1
|
export declare const properties: string[];
|
|
3
2
|
export declare const modelProps: string[];
|
|
4
3
|
export declare const testProp: any;
|
|
5
|
-
export declare const props: any;
|
|
6
|
-
export declare const watch: any;
|
|
7
|
-
export declare const emitProbs: any;
|
|
4
|
+
export declare const props: any, watch: any, emitProbs: any;
|
|
8
5
|
/**
|
|
9
6
|
* `ej-schedule` represents the VueJS Schedule Component.
|
|
10
7
|
* ```vue
|
|
11
8
|
* <ejs-schedule></ejs-schedule>
|
|
12
9
|
* ```
|
|
13
10
|
*/
|
|
14
|
-
export declare
|
|
15
|
-
|
|
16
|
-
propKeys: string[];
|
|
17
|
-
models: string[];
|
|
18
|
-
hasChildDirective: boolean;
|
|
19
|
-
protected hasInjectedModules: boolean;
|
|
20
|
-
tagMapper: {
|
|
21
|
-
[key: string]: Object;
|
|
22
|
-
};
|
|
23
|
-
tagNameMapper: Object;
|
|
24
|
-
isVue3: boolean;
|
|
25
|
-
templateCollection: any;
|
|
26
|
-
constructor();
|
|
27
|
-
clearTemplate(templateNames?: string[]): any;
|
|
28
|
-
setProperties(prop: any, muteOnChange: boolean): void;
|
|
29
|
-
trigger(eventName: string, eventProp: {
|
|
30
|
-
[key: string]: Object;
|
|
31
|
-
}, successHandler?: Function): void;
|
|
32
|
-
render(createElement: any): any;
|
|
33
|
-
custom(): void;
|
|
34
|
-
addEvent(data: Object | Object[]): void;
|
|
35
|
-
addResource(resources: Object | Object[], name: string, index: number): void;
|
|
36
|
-
changeCurrentView(viewName: Object, viewIndex?: number): void;
|
|
37
|
-
closeEditor(): void;
|
|
38
|
-
closeQuickInfoPopup(): void;
|
|
39
|
-
closeTooltip(): void;
|
|
40
|
-
collapseResource(resourceId: string | number, name: string): void;
|
|
41
|
-
deleteEvent(id: string | number | Object | Object[], currentAction?: Object): void;
|
|
42
|
-
expandResource(resourceId: string | number, name: string): void;
|
|
43
|
-
exportToExcel(excelExportOptions?: Object): void;
|
|
44
|
-
exportToICalendar(fileName?: string, customData?: Object[]): void;
|
|
45
|
-
getBlockEvents(startDate?: Object, endDate?: Object, includeOccurrences?: boolean): Object[];
|
|
46
|
-
getCellDetails(tdCol: Object | Object[]): Object;
|
|
47
|
-
getCurrentViewDates(): Object[];
|
|
48
|
-
getCurrentViewEvents(): Object[];
|
|
49
|
-
getCurrentViewIndex(): number;
|
|
50
|
-
getDeletedOccurrences(recurrenceData: string | number | Object): Object[];
|
|
51
|
-
getEventDetails(element: Object): Object;
|
|
52
|
-
getEventMaxID(): number | string;
|
|
53
|
-
getEvents(startDate?: Object, endDate?: Object, includeOccurrences?: boolean): Object[];
|
|
54
|
-
getIndexFromResourceId(id: string | number, name?: string): number;
|
|
55
|
-
getOccurrencesByID(eventID: number | string): Object[];
|
|
56
|
-
getOccurrencesByRange(startTime: Object, endTime: Object): Object[];
|
|
57
|
-
getResourceCollections(): Object[];
|
|
58
|
-
getResourcesByIndex(index: number): Object;
|
|
59
|
-
getSelectedElements(): Object[];
|
|
60
|
-
hideSpinner(): void;
|
|
61
|
-
importICalendar(fileContent: Object | string): void;
|
|
62
|
-
isSlotAvailable(startTime: Object | Object, endTime?: Object, groupIndex?: number): boolean;
|
|
63
|
-
openEditor(data: Object, action: Object, isEventData?: boolean, repeatType?: number): void;
|
|
64
|
-
openQuickInfoPopup(data: Object): void;
|
|
65
|
-
print(printOptions?: Object): void;
|
|
66
|
-
refreshEvents(isRemoteRefresh: boolean): void;
|
|
67
|
-
refreshLayout(): void;
|
|
68
|
-
refreshTemplates(templateName?: string): void;
|
|
69
|
-
removeResource(resourceId: string | string[] | number | number[], name: string): void;
|
|
70
|
-
resetWorkHours(dates: Object[], start?: string, end?: string, groupIndex?: number): void;
|
|
71
|
-
saveEvent(data: Object | Object[], currentAction?: Object): void;
|
|
72
|
-
scrollTo(hour: string, scrollDate?: Object): void;
|
|
73
|
-
scrollToResource(resourceId: string | number, groupName?: string): void;
|
|
74
|
-
selectResourceByIndex(groupIndex: number): void;
|
|
75
|
-
setRecurrenceEditor(recurrenceEditor: Object): void;
|
|
76
|
-
setResourceCollections(resourceCol: Object[]): void;
|
|
77
|
-
setWorkHours(dates: Object[], start: string, end: string, groupIndex?: number): void;
|
|
78
|
-
showSpinner(): void;
|
|
79
|
-
}
|
|
11
|
+
export declare let ScheduleComponent: any;
|
|
12
|
+
export declare type ScheduleComponent = InstanceType<typeof ScheduleComponent>;
|
|
80
13
|
export declare const SchedulePlugin: {
|
|
81
14
|
name: string;
|
|
82
15
|
install(Vue: any): void;
|