@worktile/gantt 14.0.2 → 14.0.3
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/class/date-point.d.ts +2 -1
- package/class/item.d.ts +2 -3
- package/esm2020/class/date-point.mjs +3 -2
- package/esm2020/class/item.mjs +14 -21
- package/esm2020/components/calendar/calendar.component.mjs +3 -3
- package/esm2020/components/toolbar/toolbar.component.mjs +2 -2
- package/esm2020/gantt-upper.mjs +8 -8
- package/esm2020/views/day.mjs +3 -2
- package/esm2020/views/month.mjs +3 -2
- package/esm2020/views/quarter.mjs +3 -2
- package/esm2020/views/view.mjs +1 -1
- package/esm2020/views/week.mjs +3 -2
- package/esm2020/views/year.mjs +3 -2
- package/fesm2015/worktile-gantt.mjs +68 -66
- package/fesm2015/worktile-gantt.mjs.map +1 -1
- package/fesm2020/worktile-gantt.mjs +66 -66
- package/fesm2020/worktile-gantt.mjs.map +1 -1
- package/gantt-upper.d.ts +2 -2
- package/gantt.component.scss +2 -0
- package/package.json +1 -1
- package/views/view.d.ts +1 -0
package/gantt-upper.d.ts
CHANGED
|
@@ -87,8 +87,8 @@ export declare abstract class GanttUpper implements OnChanges, OnInit, OnDestroy
|
|
|
87
87
|
getGanttItem(id: string): GanttItemInternal;
|
|
88
88
|
getGanttItems(ids: string[]): GanttItemInternal[];
|
|
89
89
|
isSelected(id: string): boolean;
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
changeView(type: GanttViewType): void;
|
|
91
|
+
rerenderView(): void;
|
|
92
92
|
static ɵfac: i0.ɵɵFactoryDeclaration<GanttUpper, never>;
|
|
93
93
|
static ɵdir: i0.ɵɵDirectiveDeclaration<GanttUpper, never, never, { "originItems": "items"; "originGroups": "groups"; "originBaselineItems": "baselineItems"; "viewType": "viewType"; "start": "start"; "end": "end"; "showTodayLine": "showTodayLine"; "draggable": "draggable"; "styles": "styles"; "showToolbar": "showToolbar"; "toolbarOptions": "toolbarOptions"; "viewOptions": "viewOptions"; "linkOptions": "linkOptions"; "disabledLoadOnScroll": "disabledLoadOnScroll"; "selectable": "selectable"; "multiple": "multiple"; }, { "loadOnScroll": "loadOnScroll"; "dragStarted": "dragStarted"; "dragMoved": "dragMoved"; "dragEnded": "dragEnded"; "barClick": "barClick"; "viewChange": "viewChange"; }, ["barTemplate", "rangeTemplate", "itemTemplate", "groupTemplate", "groupHeaderTemplate", "toolbarTemplate"], never, false>;
|
|
94
94
|
}
|
package/gantt.component.scss
CHANGED
package/package.json
CHANGED