@colijnit/extendedcomponents 12.0.4 → 12.0.5

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.
Files changed (61) hide show
  1. package/README.md +24 -24
  2. package/bundles/colijnit-extendedcomponents.umd.js +119 -972
  3. package/bundles/colijnit-extendedcomponents.umd.js.map +1 -1
  4. package/esm2015/public-api.js +1 -9
  5. package/fesm2015/colijnit-extendedcomponents.js +5 -977
  6. package/fesm2015/colijnit-extendedcomponents.js.map +1 -1
  7. package/lib/style/_variables.scss +0 -27
  8. package/lib/style/extendedcomponents-globals.scss +0 -40
  9. package/package.json +1 -9
  10. package/public-api.d.ts +0 -8
  11. package/esm2015/lib/components/grid/base/base-grid.component.js +0 -71
  12. package/esm2015/lib/components/grid/base/base-inline-edit-grid.component.js +0 -86
  13. package/esm2015/lib/components/grid/base/base-selection-grid.component.js +0 -100
  14. package/esm2015/lib/components/grid/base/base-toolbar-grid.component.js +0 -74
  15. package/esm2015/lib/components/grid/co-grid.component.js +0 -102
  16. package/esm2015/lib/components/grid/co-grid.module.js +0 -59
  17. package/esm2015/lib/components/grid/enum/grid-lines.enum.js +0 -9
  18. package/esm2015/lib/components/grid/interface/grid-menu-event-args.js +0 -2
  19. package/esm2015/lib/components/grid/interface/grid-row-drag-event-args.js +0 -2
  20. package/esm2015/lib/components/grid/interface/grid-row-drop-event-args.js +0 -2
  21. package/esm2015/lib/components/kanban/co-kanban.component.js +0 -127
  22. package/esm2015/lib/components/kanban/co-kanban.module.js +0 -30
  23. package/esm2015/lib/components/pivot/co-pivot.component.js +0 -195
  24. package/esm2015/lib/components/pivot/co-pivot.module.js +0 -30
  25. package/esm2015/lib/components/schedule/co-schedule.component.js +0 -99
  26. package/esm2015/lib/components/schedule/co-schedule.module.js +0 -30
  27. package/esm2015/lib/core/enum/schedule-view.enum.js +0 -16
  28. package/lib/bin/postinstall.js +0 -3
  29. package/lib/components/grid/base/base-grid.component.d.ts +0 -30
  30. package/lib/components/grid/base/base-inline-edit-grid.component.d.ts +0 -21
  31. package/lib/components/grid/base/base-selection-grid.component.d.ts +0 -34
  32. package/lib/components/grid/base/base-toolbar-grid.component.d.ts +0 -20
  33. package/lib/components/grid/co-grid.component.d.ts +0 -9
  34. package/lib/components/grid/co-grid.module.d.ts +0 -10
  35. package/lib/components/grid/enum/grid-lines.enum.d.ts +0 -7
  36. package/lib/components/grid/interface/grid-menu-event-args.d.ts +0 -3
  37. package/lib/components/grid/interface/grid-row-drag-event-args.d.ts +0 -3
  38. package/lib/components/grid/interface/grid-row-drop-event-args.d.ts +0 -3
  39. package/lib/components/grid/style/_layout.scss +0 -36
  40. package/lib/components/grid/style/_material-definition.scss +0 -8
  41. package/lib/components/grid/style/_theme.scss +0 -3
  42. package/lib/components/grid/style/material.scss +0 -4
  43. package/lib/components/kanban/co-kanban.component.d.ts +0 -31
  44. package/lib/components/kanban/co-kanban.module.d.ts +0 -9
  45. package/lib/components/kanban/style/_layout.scss +0 -52
  46. package/lib/components/kanban/style/_material-definition.scss +0 -27
  47. package/lib/components/kanban/style/_theme.scss +0 -3
  48. package/lib/components/kanban/style/material.scss +0 -5
  49. package/lib/components/pivot/co-pivot.component.d.ts +0 -43
  50. package/lib/components/pivot/co-pivot.module.d.ts +0 -9
  51. package/lib/components/pivot/style/_layout.scss +0 -92
  52. package/lib/components/pivot/style/_material-definition.scss +0 -1
  53. package/lib/components/pivot/style/_theme.scss +0 -3
  54. package/lib/components/pivot/style/material.scss +0 -4
  55. package/lib/components/schedule/co-schedule.component.d.ts +0 -22
  56. package/lib/components/schedule/co-schedule.module.d.ts +0 -9
  57. package/lib/components/schedule/style/_layout.scss +0 -4
  58. package/lib/components/schedule/style/_material-definition.scss +0 -0
  59. package/lib/components/schedule/style/_theme.scss +0 -4
  60. package/lib/components/schedule/style/material.scss +0 -4
  61. package/lib/core/enum/schedule-view.enum.d.ts +0 -14
@@ -1,4 +0,0 @@
1
- @import "../../../style/mixin";
2
- @import "./material-definition";
3
- @import "./layout";
4
- @import "./theme";
@@ -1,31 +0,0 @@
1
- import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
2
- import { CardClickEventArgs, CardSettingsModel, DialogEventArgs, DragEventArgs, KanbanComponent, SwimlaneSettingsModel } from "@syncfusion/ej2-angular-kanban";
3
- import * as i0 from "@angular/core";
4
- export declare class CoKanbanComponent implements OnInit, AfterViewInit {
5
- kanban: KanbanComponent;
6
- allowDragAndDrop: boolean;
7
- allowKeyboard: boolean;
8
- cardSettings: CardSettingsModel;
9
- enablePersistence: boolean;
10
- enableTooltip: boolean;
11
- keyField: string;
12
- showEmptyColumn: boolean;
13
- swimlaneSettings: SwimlaneSettingsModel;
14
- columns: {}[];
15
- data: any[];
16
- cardClickEvent: EventEmitter<CardClickEventArgs>;
17
- cardDoubleClickEvent: EventEmitter<CardClickEventArgs>;
18
- dragStartEvent: EventEmitter<DragEventArgs>;
19
- dragStopEvent: EventEmitter<DragEventArgs>;
20
- showClass(): boolean;
21
- constructor();
22
- ngOnInit(): void;
23
- ngAfterViewInit(): void;
24
- dialogOpen(args: DialogEventArgs): void;
25
- handleCardClick(args: CardClickEventArgs): void;
26
- handleCardDoubleClick(args: CardClickEventArgs): void;
27
- handleDragStart(args: DragEventArgs): void;
28
- handleDragStop(args: DragEventArgs): void;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<CoKanbanComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<CoKanbanComponent, "co-kanban", never, { "allowDragAndDrop": "allowDragAndDrop"; "allowKeyboard": "allowKeyboard"; "cardSettings": "cardSettings"; "enablePersistence": "enablePersistence"; "enableTooltip": "enableTooltip"; "keyField": "keyField"; "showEmptyColumn": "showEmptyColumn"; "swimlaneSettings": "swimlaneSettings"; "columns": "columns"; "data": "data"; }, { "cardClickEvent": "cardClickEvent"; "cardDoubleClickEvent": "cardDoubleClickEvent"; "dragStartEvent": "dragStartEvent"; "dragStopEvent": "dragStopEvent"; }, never, never>;
31
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./co-kanban.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@syncfusion/ej2-angular-kanban";
5
- export declare class CoKanbanModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<CoKanbanModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoKanbanModule, [typeof i1.CoKanbanComponent], [typeof i2.CommonModule, typeof i3.KanbanModule], [typeof i1.CoKanbanComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<CoKanbanModule>;
9
- }
@@ -1,52 +0,0 @@
1
- @include export-module('cc-kanban-layout') {
2
- .co-kanban {
3
-
4
- div.e-kanban-header {
5
- margin-bottom: $ec-kanban-header-margin-bottom;
6
- }
7
-
8
- div.e-header-text {
9
- font-family: $ec-kanban-header-font-family;
10
- font-size: $ec-kanban-header-font-size;
11
- color: $ec-kanban-header-text-color;
12
- }
13
-
14
- div.e-kanban-content {
15
- max-height: $ec-kanban-content-max-height;
16
- }
17
-
18
- div.e-item-count {
19
- font-family: $ec-kanban-header-item-count-font-family;
20
- font-size: $ec-kanban-header-item-count-font-size;
21
- color: $ec-kanban-header-item-count-text-color;
22
- }
23
-
24
- div.e-card {
25
- background-color: $ec-kanban-card-background-color;
26
- box-shadow: $ec-kanban-card-box-shadow;
27
- border: $ec-kanban-card-border !important;
28
- cursor: pointer;
29
- }
30
-
31
- div.e-card-header-title {
32
- font-family: $ec-kanban-card-header-font-family;
33
- font-size: $ec-kanban-card-header-font-size;
34
- }
35
-
36
- div.e-card-content {
37
- font-family: $ec-kanban-card-content-font-family;
38
- font-size: $ec-kanban-card-content-font-size;
39
- }
40
-
41
- th.e-header-cells {
42
- background-color: $ec-kanban-header-background-color !important;
43
- border: $ec-kanban-header-border !important;
44
- padding: $ec-kanban-header-padding !important;
45
- }
46
-
47
- td.e-content-cells {
48
- background-color: $ec-kanban-column-background-color !important;
49
- border: $ec-kanban-column-border !important;
50
- }
51
- }
52
- }
@@ -1,27 +0,0 @@
1
- $ec-kanban-header-font-family: $ec-font-family !default;
2
- $ec-kanban-header-font-size: 15px !default;
3
- $ec-kanban-header-text-color: #000000 !default;
4
-
5
- $ec-kanban-header-item-count-font-family: $ec-font-family !default;
6
- $ec-kanban-header-item-count-font-size: 12px !default;
7
- $ec-kanban-header-item-count-text-color: #000000 !default;
8
-
9
- $ec-kanban-header-background-color: #f5f5f5 !default;
10
- $ec-kanban-header-border: 1px solid transparent !default;
11
- $ec-kanban-header-padding: 5px 8px !default;
12
- $ec-kanban-header-margin-bottom: 0 !default;
13
-
14
- $ec-kanban-content-max-height: auto !default;
15
-
16
- $ec-kanban-card-background-color: #ffffff !default;
17
- $ec-kanban-card-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 16%) !default;
18
- $ec-kanban-card-border: 1px solid transparent !default;
19
-
20
- $ec-kanban-card-header-font-family: $ec-font-family !default;
21
- $ec-kanban-card-header-font-size: 14px !default;
22
-
23
- $ec-kanban-card-content-font-family: $ec-font-family !default;
24
- $ec-kanban-card-content-font-size: 13px !default;
25
-
26
- $ec-kanban-column-background-color: #f5f5f5 !default;
27
- $ec-kanban-column-border: 1px solid transparent !default;
@@ -1,3 +0,0 @@
1
- @include export-module('cc-kanban-layout') {
2
-
3
- }
@@ -1,5 +0,0 @@
1
- @import "../../../style/mixin";
2
- @import "./material-definition";
3
- @import "./layout";
4
- @import "./theme";
5
-
@@ -1,43 +0,0 @@
1
- import { AfterViewInit, EventEmitter, OnInit } from "@angular/core";
2
- import { FetchReportArgs, IDataOptions, LoadReportArgs, PivotViewComponent, RemoveReportArgs, RenameReportArgs, SaveReportArgs, ToolbarArgs, ToolbarItems } from "@syncfusion/ej2-angular-pivotview";
3
- import { GridSettings } from "@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings";
4
- import * as i0 from "@angular/core";
5
- export declare class CoPivotComponent implements OnInit, AfterViewInit {
6
- pivot: PivotViewComponent;
7
- dataSourceSettings: IDataOptions;
8
- gridSettings: GridSettings;
9
- toolbarOptions: ToolbarItems[];
10
- showGroupingBar: boolean;
11
- allowGrouping: boolean;
12
- enablePersistence: boolean;
13
- showFieldList: boolean;
14
- showToolbar: boolean;
15
- allowExcelExport: boolean;
16
- allowPdfExport: boolean;
17
- allowConditionalFormatting: boolean;
18
- allowNumberFormatting: boolean;
19
- allowCalculatedField: boolean;
20
- height: string;
21
- saveReportClick: EventEmitter<SaveReportArgs>;
22
- loadReportClick: EventEmitter<LoadReportArgs>;
23
- fetchReportClick: EventEmitter<FetchReportArgs>;
24
- renameReportClick: EventEmitter<RenameReportArgs>;
25
- removeReportClick: EventEmitter<RemoveReportArgs>;
26
- newReportClick: EventEmitter<void>;
27
- beforeToolbarRenderClick: EventEmitter<ToolbarArgs>;
28
- enginePopulated: EventEmitter<any>;
29
- showClass(): boolean;
30
- constructor();
31
- ngOnInit(): void;
32
- ngAfterViewInit(): void;
33
- saveReport(args: SaveReportArgs): void;
34
- loadReport(args: LoadReportArgs): void;
35
- fetchReport(args: FetchReportArgs): void;
36
- renameReport(args: RenameReportArgs): void;
37
- removeReport(args: RemoveReportArgs): void;
38
- newReport(): void;
39
- beforeToolbarRender(args: ToolbarArgs): void;
40
- hanldeEnginePopulated(args: any): void;
41
- static ɵfac: i0.ɵɵFactoryDeclaration<CoPivotComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<CoPivotComponent, "co-pivot", never, { "dataSourceSettings": "dataSourceSettings"; "gridSettings": "gridSettings"; "toolbarOptions": "toolbarOptions"; "showGroupingBar": "showGroupingBar"; "allowGrouping": "allowGrouping"; "enablePersistence": "enablePersistence"; "showFieldList": "showFieldList"; "showToolbar": "showToolbar"; "allowExcelExport": "allowExcelExport"; "allowPdfExport": "allowPdfExport"; "allowConditionalFormatting": "allowConditionalFormatting"; "allowNumberFormatting": "allowNumberFormatting"; "allowCalculatedField": "allowCalculatedField"; "height": "height"; }, { "saveReportClick": "saveReportClick"; "loadReportClick": "loadReportClick"; "fetchReportClick": "fetchReportClick"; "renameReportClick": "renameReportClick"; "removeReportClick": "removeReportClick"; "newReportClick": "newReportClick"; "beforeToolbarRenderClick": "beforeToolbarRenderClick"; "enginePopulated": "enginePopulated"; }, never, never>;
43
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./co-pivot.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@syncfusion/ej2-angular-pivotview";
5
- export declare class CoPivotModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<CoPivotModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoPivotModule, [typeof i1.CoPivotComponent], [typeof i2.CommonModule, typeof i3.PivotViewModule], [typeof i1.CoPivotComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<CoPivotModule>;
9
- }
@@ -1,92 +0,0 @@
1
- @include export-module('cc-co-pivot-layout') {
2
- .co-pivot {
3
- span {
4
- color: $ec-pivot-text-color;
5
- font-weight: bolder;
6
- }
7
-
8
- .e-cellvalue {
9
- color: $ec-pivot-text-color;
10
- font-weight: bolder;
11
- }
12
-
13
- .e-stackedheadercelldiv {
14
- color: $ec-pivot-text-color;
15
- font-weight: bolder;
16
- }
17
-
18
- .e-pivotview .e-rowcell .e-cellvalue {
19
- color: $ec-pivot-text-color;
20
- font-weight: bolder;
21
- }
22
-
23
- .e-header-text {
24
- color: $ec-pivot-text-color;
25
- font-weight: bolder;
26
- }
27
-
28
- .e-pivotview .e-stackedheadercelldiv, .e-pivotview .e-headertext, .e-pivotview .e-rowsheader .e-cellvalue {
29
- color: $ec-pivot-text-color;
30
- font-weight: bolder;
31
- }
32
-
33
- .e-pivotview .e-grouping-bar .e-pivot-button, .e-pivotview .e-group-rows .e-pivot-button {
34
- background-color: #FFFFFF;
35
- border-radius: 0;
36
- border: none;
37
- }
38
- .e-pivotview .e-group-row .e-group-rows {
39
- background-color: #FFFFFF;
40
- }
41
-
42
- .e-pivotview .e-axis-value .e-group-values {
43
- background-color: #FFFFFF;
44
- }
45
-
46
- .e-pivotview .e-group-filters, .e-pivotview .e-group-columns {
47
- background-color: #FFFFFF;
48
- }
49
- .e-pivotview .e-grouping-bar .e-right-axis-fields .e-axis-filter {
50
- border: none;
51
- }
52
-
53
- .e-pivotview .e-grouping-bar .e-right-axis-fields {
54
- border: none;
55
- }
56
-
57
- .e-pivotview .e-grid .e-gridheader {
58
- background-color: #FFFFFF;
59
- border: none;
60
- }
61
-
62
- .e-grid.e-bothlines .e-gridheader th.e-stackedheadercell {
63
- border: none;
64
- background-color: #FFFFFF;
65
- }
66
-
67
- .e-pivotview .e-grid .e-rowcell {
68
- background-color: #FFFFFF;
69
- border: none;
70
- }
71
-
72
-
73
- .e-pivotview .e-frozenheader > .e-table, .e-pivotview .e-frozencontent > .e-table {
74
- border: none;
75
- }
76
-
77
- .e-grid .e-headercell, .e-grid .e-detailheadercell {
78
- border: none;
79
- background-color: #FFFFFF;
80
- }
81
-
82
- .e-grid.e-default .e-gridheader th.e-firstcell {
83
- border: none;
84
- background-color: #FFFFFF;
85
- }
86
-
87
- .e-pivotview .e-collapse::before {
88
- color: $ec-pivot-text-color;
89
- }
90
-
91
- }
92
- }
@@ -1 +0,0 @@
1
- $ec-pivot-text-color: #7697BF !default;
@@ -1,3 +0,0 @@
1
- @include export-module('cc-co-pivot-theme') {
2
-
3
- }
@@ -1,4 +0,0 @@
1
- @import "../../../style/mixin";
2
- @import "./material-definition";
3
- @import "./layout";
4
- @import "./theme";
@@ -1,22 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { ActionEventArgs, EventSettingsModel, ScheduleComponent } from '@syncfusion/ej2-angular-schedule';
3
- import { ScheduleView } from '../../core/enum/schedule-view.enum';
4
- import * as i0 from "@angular/core";
5
- export declare class CoScheduleComponent implements OnInit {
6
- scheduleObj: ScheduleComponent;
7
- selectedDate: Date;
8
- currentView: ScheduleView.Month;
9
- eventSettings: EventSettingsModel;
10
- enablePersistence: boolean;
11
- readonly actionBegin: EventEmitter<ActionEventArgs>;
12
- readonly actionComplete: EventEmitter<ActionEventArgs>;
13
- readonly actionFailure: EventEmitter<ActionEventArgs>;
14
- showClass: boolean;
15
- constructor();
16
- ngOnInit(): void;
17
- onActionBegin(args: ActionEventArgs): void;
18
- onActionComplete(args: ActionEventArgs): void;
19
- onActionFailure(args: ActionEventArgs): void;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<CoScheduleComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<CoScheduleComponent, "co-schedule", never, { "selectedDate": "selectedDate"; "currentView": "currentView"; "eventSettings": "eventSettings"; "enablePersistence": "enablePersistence"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; }, never, ["*"]>;
22
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./co-schedule.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@syncfusion/ej2-angular-schedule";
5
- export declare class CoScheduleModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<CoScheduleModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoScheduleModule, [typeof i1.CoScheduleComponent], [typeof i2.CommonModule, typeof i3.ScheduleModule], [typeof i1.CoScheduleComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<CoScheduleModule>;
9
- }
@@ -1,4 +0,0 @@
1
- @include export-module('co-schedule-layout') {
2
- .co-schedule {
3
- }
4
- }
@@ -1,4 +0,0 @@
1
- @include export-module('co-schedule-theme') {
2
- .co-schedule {
3
- }
4
- }
@@ -1,4 +0,0 @@
1
- @import "../../../style/mixin";
2
- @import "./material-definition";
3
- @import "./layout";
4
- @import "./theme";
@@ -1,14 +0,0 @@
1
- export declare enum ScheduleView {
2
- Day = "Day",
3
- Week = "Week",
4
- WorkWeek = "WorkWeek",
5
- Month = "Month",
6
- Year = "Year",
7
- Agenda = "Agenda",
8
- MonthAgenda = "MonthAgenda",
9
- TimelineDay = "TimelineDay",
10
- TimelineWeek = "TimelineWeek",
11
- TimelineWorkWeek = "TimelineWorkWeek",
12
- TimelineMonth = "TimelineMonth",
13
- TimelineYear = "TimelineYear"
14
- }