@worktile/gantt 14.0.2 → 14.0.4

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.
@@ -18,6 +18,7 @@ export declare class GanttDomService implements OnDestroy {
18
18
  container: Element;
19
19
  sideContainer: Element;
20
20
  mainContainer: Element;
21
+ mainItems: Element;
21
22
  calendarOverlay: Element;
22
23
  linksOverlay: Element;
23
24
  private unsubscribe$;
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
- viewTypeChange(type: GanttViewType): void;
91
- renderView(type: GanttViewType): void;
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
  }
@@ -54,7 +54,9 @@
54
54
  bottom: 0;
55
55
  left: 0;
56
56
  right: 0;
57
+ // 兼容火狐浏览器
57
58
  overflow: auto;
59
+ overflow: overlay;
58
60
  background-color: variables.$gantt-container-background-color;
59
61
 
60
62
  .gantt-main-groups,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worktile/gantt",
3
- "version": "14.0.2",
3
+ "version": "14.0.4",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "exports": {
6
6
  ".": {
package/views/view.d.ts CHANGED
@@ -18,6 +18,7 @@ export interface GanttViewOptions {
18
18
  addAmount?: number;
19
19
  addUnit?: GanttDateUtil;
20
20
  dateFormat?: GanttDateFormat;
21
+ fillDays?: number;
21
22
  [key: string]: any;
22
23
  }
23
24
  export declare abstract class GanttView {