@netgrif/components 6.3.0-rc.8 → 6.3.0

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 (60) hide show
  1. package/esm2020/lib/dashboard/cards/barchart-card/barchart-card.component.mjs +3 -3
  2. package/esm2020/lib/dashboard/cards/iframe-card/iframe-card.component.mjs +3 -3
  3. package/esm2020/lib/dashboard/cards/linechart-card/line-chart-card.component.mjs +3 -3
  4. package/esm2020/lib/dashboard/cards/piechart-card/pie-chart-card.component.mjs +3 -3
  5. package/esm2020/lib/dashboard/dashboard.module.mjs +5 -3
  6. package/esm2020/lib/data-fields/data-fields.module.mjs +42 -8
  7. package/esm2020/lib/data-fields/filter-field/filter-field.component.mjs +6 -2
  8. package/esm2020/lib/data-fields/filter-field/tab-view-filter-field/filter-field-tab-view-content.component.mjs +33 -0
  9. package/esm2020/lib/data-fields/public-api.mjs +2 -1
  10. package/esm2020/lib/data-fields/task-ref-field/task-ref-dashboard-field/task-ref-dashboard-tile/task-ref-dashboard-tile.component.mjs +55 -0
  11. package/esm2020/lib/data-fields/task-ref-field/task-ref-field.component.mjs +38 -0
  12. package/esm2020/lib/data-fields/text-field/dashboard-bar-chart-text-field/dashboard-bar-chart-text-field.component.mjs +19 -0
  13. package/esm2020/lib/data-fields/text-field/dashboard-iframe-text-field/dashboard-iframe-text-field.component.mjs +19 -0
  14. package/esm2020/lib/data-fields/text-field/dashboard-line-chart-text-field/dashboard-line-chart-text-field.component.mjs +19 -0
  15. package/esm2020/lib/data-fields/text-field/dashboard-pie-chart-text-field/dashboard-pie-chart-text-field.component.mjs +19 -0
  16. package/esm2020/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-portal-text-field.component.mjs +36 -0
  17. package/esm2020/lib/data-fields/text-field/rich-textarea-field/easymde-wrapper/easymde-wrapper.component.mjs +2 -2
  18. package/esm2020/lib/data-fields/text-field/text-field.component.mjs +12 -6
  19. package/esm2020/lib/filter-field-content/filter-field-content.module.mjs +64 -0
  20. package/esm2020/lib/filter-field-content/filter-field-tab-view/filter-field-tab-view.component.mjs +23 -0
  21. package/esm2020/lib/filter-field-content/filter-field-tabbed-case-view/filter-field-tabbed-case-view.component.mjs +68 -0
  22. package/esm2020/lib/filter-field-content/filter-field-tabbed-task-view/filter-field-tabbed-task-view.component.mjs +75 -0
  23. package/esm2020/lib/filter-field-content/public-api.mjs +5 -0
  24. package/esm2020/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-task-view/default-tabbed-task-view.component.mjs +3 -3
  25. package/esm2020/lib/panel/panel.module.mjs +8 -4
  26. package/esm2020/lib/panel/task-panel/task-panel.component.mjs +16 -7
  27. package/esm2020/lib/panel/task-panel-list/task-list.component.mjs +3 -3
  28. package/esm2020/lib/task-content/field-component-resolver/field-component-resolver.component.mjs +11 -8
  29. package/esm2020/lib/task-content/task-content/task-content.component.mjs +4 -3
  30. package/esm2020/lib/view/case-view/components/case-list/case-list.component.mjs +3 -3
  31. package/esm2020/lib/view/workflow-view/workflow-view.component.mjs +3 -3
  32. package/esm2020/public-api.mjs +2 -1
  33. package/fesm2015/netgrif-components.mjs +511 -80
  34. package/fesm2015/netgrif-components.mjs.map +1 -1
  35. package/fesm2020/netgrif-components.mjs +497 -80
  36. package/fesm2020/netgrif-components.mjs.map +1 -1
  37. package/lib/dashboard/dashboard.module.d.ts +1 -1
  38. package/lib/data-fields/data-fields.module.d.ts +27 -17
  39. package/lib/data-fields/filter-field/tab-view-filter-field/filter-field-tab-view-content.component.d.ts +8 -0
  40. package/lib/data-fields/public-api.d.ts +1 -0
  41. package/lib/data-fields/task-ref-field/task-ref-dashboard-field/task-ref-dashboard-tile/task-ref-dashboard-tile.component.d.ts +16 -0
  42. package/lib/data-fields/task-ref-field/task-ref-field.component.d.ts +13 -0
  43. package/lib/data-fields/text-field/dashboard-bar-chart-text-field/dashboard-bar-chart-text-field.component.d.ts +8 -0
  44. package/lib/data-fields/text-field/dashboard-iframe-text-field/dashboard-iframe-text-field.component.d.ts +8 -0
  45. package/lib/data-fields/text-field/dashboard-line-chart-text-field/dashboard-line-chart-text-field.component.d.ts +8 -0
  46. package/lib/data-fields/text-field/dashboard-pie-chart-text-field/dashboard-pie-chart-text-field.component.d.ts +8 -0
  47. package/lib/data-fields/text-field/dashboard-portal-text-field/dashboard-portal-text-field.component.d.ts +17 -0
  48. package/lib/data-fields/text-field/text-field.component.d.ts +2 -1
  49. package/lib/filter-field-content/filter-field-content.module.d.ts +17 -0
  50. package/lib/filter-field-content/filter-field-tab-view/filter-field-tab-view.component.d.ts +7 -0
  51. package/lib/filter-field-content/filter-field-tabbed-case-view/filter-field-tabbed-case-view.component.d.ts +16 -0
  52. package/lib/filter-field-content/filter-field-tabbed-task-view/filter-field-tabbed-task-view.component.d.ts +11 -0
  53. package/lib/filter-field-content/public-api.d.ts +4 -0
  54. package/lib/panel/panel.module.d.ts +3 -2
  55. package/lib/panel/task-panel/task-panel.component.d.ts +4 -3
  56. package/lib/task-content/field-component-resolver/field-component-resolver.component.d.ts +3 -1
  57. package/lib/task-content/task-content/task-content.component.d.ts +1 -0
  58. package/package.json +2 -2
  59. package/public-api.d.ts +1 -0
  60. package/src/lib/data-fields/data-field.theme.scss +8 -1
@@ -13,6 +13,6 @@ import * as i11 from "@swimlane/ngx-charts";
13
13
  import * as i12 from "@angular/material/grid-list";
14
14
  export declare class DashboardComponentModule {
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponentModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardComponentModule, [typeof i1.CountCardComponent, typeof i2.IframeCardComponent, typeof i3.DashboardContentComponent, typeof i4.PieChartCardComponent, typeof i5.LineChartCardComponent, typeof i6.BarchartCardComponent, typeof i7.LinearGaugeCardComponent, typeof i8.PortalCardComponent], [typeof i9.CommonModule, typeof i10.MaterialModule, typeof i10.TranslateLibModule, typeof i11.NgxChartsModule, typeof i10.MaterialModule, typeof i12.MatGridListModule], [typeof i1.CountCardComponent, typeof i2.IframeCardComponent, typeof i3.DashboardContentComponent, typeof i4.PieChartCardComponent, typeof i5.LineChartCardComponent, typeof i6.BarchartCardComponent, typeof i7.LinearGaugeCardComponent]>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardComponentModule, [typeof i1.CountCardComponent, typeof i2.IframeCardComponent, typeof i3.DashboardContentComponent, typeof i4.PieChartCardComponent, typeof i5.LineChartCardComponent, typeof i6.BarchartCardComponent, typeof i7.LinearGaugeCardComponent, typeof i8.PortalCardComponent], [typeof i9.CommonModule, typeof i10.MaterialModule, typeof i10.TranslateLibModule, typeof i11.NgxChartsModule, typeof i10.MaterialModule, typeof i12.MatGridListModule], [typeof i1.CountCardComponent, typeof i2.IframeCardComponent, typeof i3.DashboardContentComponent, typeof i4.PieChartCardComponent, typeof i5.LineChartCardComponent, typeof i6.BarchartCardComponent, typeof i7.LinearGaugeCardComponent, typeof i8.PortalCardComponent]>;
17
17
  static ɵinj: i0.ɵɵInjectorDeclaration<DashboardComponentModule>;
18
18
  }
@@ -36,24 +36,34 @@ import * as i34 from "./i18n-field/i18n-divider-field/i18n-divider-field.compone
36
36
  import * as i35 from "./i18n-field/i18n-text-field/i18n-text-field.component";
37
37
  import * as i36 from "./text-field/rich-textarea-field/easymde-wrapper/easymde-wrapper.component";
38
38
  import * as i37 from "./user-list-field/user-list-field.component";
39
- import * as i38 from "@angular/common";
40
- import * as i39 from "@angular/flex-layout";
41
- import * as i40 from "@netgrif/components-core";
42
- import * as i41 from "angular-resize-event";
43
- import * as i42 from "@angular/common/http";
44
- import * as i43 from "@angular/forms";
45
- import * as i44 from "@angular-material-components/datetime-picker";
46
- import * as i45 from "@angular-material-components/moment-adapter";
47
- import * as i46 from "../side-menu/content-components/user-assign/side-menu-user-assign-component.module";
48
- import * as i47 from "../side-menu/content-components/multi-user-assign/side-menu-multi-user-assign-component.module";
49
- import * as i48 from "ngx-quill";
50
- import * as i49 from "@angular/material/dialog";
51
- import * as i50 from "../search/advanced-search/advanced-search.module";
52
- import * as i51 from "@angular/material/progress-spinner";
53
- import * as i52 from "@angular/platform-browser";
54
- import * as i53 from "@angular/platform-browser/animations";
39
+ import * as i38 from "./task-ref-field/task-ref-field.component";
40
+ import * as i39 from "./task-ref-field/task-ref-dashboard-field/task-ref-dashboard-tile/task-ref-dashboard-tile.component";
41
+ import * as i40 from "./text-field/dashboard-line-chart-text-field/dashboard-line-chart-text-field.component";
42
+ import * as i41 from "./text-field/dashboard-pie-chart-text-field/dashboard-pie-chart-text-field.component";
43
+ import * as i42 from "./text-field/dashboard-portal-text-field/dashboard-portal-text-field.component";
44
+ import * as i43 from "./text-field/dashboard-bar-chart-text-field/dashboard-bar-chart-text-field.component";
45
+ import * as i44 from "./text-field/dashboard-iframe-text-field/dashboard-iframe-text-field.component";
46
+ import * as i45 from "./filter-field/tab-view-filter-field/filter-field-tab-view-content.component";
47
+ import * as i46 from "@angular/common";
48
+ import * as i47 from "@angular/flex-layout";
49
+ import * as i48 from "@netgrif/components-core";
50
+ import * as i49 from "angular-resize-event";
51
+ import * as i50 from "@angular/common/http";
52
+ import * as i51 from "@angular/forms";
53
+ import * as i52 from "@angular-material-components/datetime-picker";
54
+ import * as i53 from "@angular-material-components/moment-adapter";
55
+ import * as i54 from "../side-menu/content-components/user-assign/side-menu-user-assign-component.module";
56
+ import * as i55 from "../side-menu/content-components/multi-user-assign/side-menu-multi-user-assign-component.module";
57
+ import * as i56 from "ngx-quill";
58
+ import * as i57 from "@angular/material/dialog";
59
+ import * as i58 from "../search/advanced-search/advanced-search.module";
60
+ import * as i59 from "@angular/material/progress-spinner";
61
+ import * as i60 from "@angular/platform-browser";
62
+ import * as i61 from "@angular/platform-browser/animations";
63
+ import * as i62 from "../dashboard/dashboard.module";
64
+ import * as i63 from "@angular/router";
55
65
  export declare class DataFieldsComponentModule {
56
66
  static ɵfac: i0.ɵɵFactoryDeclaration<DataFieldsComponentModule, never>;
57
- static ɵmod: i0.ɵɵNgModuleDeclaration<DataFieldsComponentModule, [typeof i1.BooleanFieldComponent, typeof i2.ButtonFieldComponent, typeof i3.DataFieldTemplateComponent, typeof i4.DateFieldComponent, typeof i5.DateTimeFieldComponent, typeof i6.EnumerationFieldComponent, typeof i7.EnumerationAutocompleteSelectFieldComponent, typeof i8.EnumerationSelectFieldComponent, typeof i9.EnumerationListFieldComponent, typeof i10.FileFieldComponent, typeof i11.FileListFieldComponent, typeof i12.MultichoiceFieldComponent, typeof i13.MultichoiceSelectFieldComponent, typeof i14.MultichoiceListFieldComponent, typeof i15.MultichoiceAutocompleteFieldComponent, typeof i16.NumberFieldComponent, typeof i17.TextFieldComponent, typeof i18.TextareaFieldComponent, typeof i19.RichTextareaFieldComponent, typeof i20.SimpleTextFieldComponent, typeof i21.UserFieldComponent, typeof i22.RequiredLabelComponent, typeof i23.HtmlTextareaFieldComponent, typeof i24.PasswordTextFieldComponent, typeof i25.NumberCurrencyFieldComponent, typeof i26.NumberDefaultFieldComponent, typeof i27.PreviewDialogComponent, typeof i26.NumberDefaultFieldComponent, typeof i28.EnumerationStepperFieldComponent, typeof i29.EnumerationIconFieldComponent, typeof i30.EnumerationAutocompleteDynamicFieldComponent, typeof i31.FilterFieldComponent, typeof i32.FilterFieldContentComponent, typeof i33.I18nFieldComponent, typeof i34.I18nDividerFieldComponent, typeof i35.I18nTextFieldComponent, typeof i36.EasymdeWrapperComponent, typeof i37.UserListFieldComponent], [typeof i38.CommonModule, typeof i39.FlexLayoutModule, typeof i40.MaterialModule, typeof i40.CovalentModule, typeof i41.AngularResizeEventModule, typeof i42.HttpClientModule, typeof i43.ReactiveFormsModule, typeof i44.NgxMatDatetimePickerModule, typeof i45.NgxMatMomentModule, typeof i40.TranslateLibModule, typeof i46.SideMenuUserAssignComponentModule, typeof i47.SideMenuMultiUserAssignComponentModule, typeof i48.QuillModule, typeof i49.MatDialogModule, typeof i50.AdvancedSearchComponentModule, typeof i51.MatProgressSpinnerModule, typeof i40.CurrencyModule, typeof i52.BrowserModule, typeof i53.BrowserAnimationsModule], [typeof i1.BooleanFieldComponent, typeof i2.ButtonFieldComponent, typeof i3.DataFieldTemplateComponent, typeof i4.DateFieldComponent, typeof i5.DateTimeFieldComponent, typeof i6.EnumerationFieldComponent, typeof i10.FileFieldComponent, typeof i11.FileListFieldComponent, typeof i12.MultichoiceFieldComponent, typeof i16.NumberFieldComponent, typeof i17.TextFieldComponent, typeof i21.UserFieldComponent, typeof i31.FilterFieldComponent, typeof i33.I18nFieldComponent, typeof i37.UserListFieldComponent]>;
67
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DataFieldsComponentModule, [typeof i1.BooleanFieldComponent, typeof i2.ButtonFieldComponent, typeof i3.DataFieldTemplateComponent, typeof i4.DateFieldComponent, typeof i5.DateTimeFieldComponent, typeof i6.EnumerationFieldComponent, typeof i7.EnumerationAutocompleteSelectFieldComponent, typeof i8.EnumerationSelectFieldComponent, typeof i9.EnumerationListFieldComponent, typeof i10.FileFieldComponent, typeof i11.FileListFieldComponent, typeof i12.MultichoiceFieldComponent, typeof i13.MultichoiceSelectFieldComponent, typeof i14.MultichoiceListFieldComponent, typeof i15.MultichoiceAutocompleteFieldComponent, typeof i16.NumberFieldComponent, typeof i17.TextFieldComponent, typeof i18.TextareaFieldComponent, typeof i19.RichTextareaFieldComponent, typeof i20.SimpleTextFieldComponent, typeof i21.UserFieldComponent, typeof i22.RequiredLabelComponent, typeof i23.HtmlTextareaFieldComponent, typeof i24.PasswordTextFieldComponent, typeof i25.NumberCurrencyFieldComponent, typeof i26.NumberDefaultFieldComponent, typeof i27.PreviewDialogComponent, typeof i26.NumberDefaultFieldComponent, typeof i28.EnumerationStepperFieldComponent, typeof i29.EnumerationIconFieldComponent, typeof i30.EnumerationAutocompleteDynamicFieldComponent, typeof i31.FilterFieldComponent, typeof i32.FilterFieldContentComponent, typeof i33.I18nFieldComponent, typeof i34.I18nDividerFieldComponent, typeof i35.I18nTextFieldComponent, typeof i36.EasymdeWrapperComponent, typeof i37.UserListFieldComponent, typeof i38.TaskRefFieldComponent, typeof i39.TaskRefDashboardTileComponent, typeof i40.DashboardLineChartTextFieldComponent, typeof i41.DashboardPieChartTextFieldComponent, typeof i42.DashboardPortalTextFieldComponent, typeof i43.DashboardBarChartTextFieldComponent, typeof i44.DashboardIframeTextFieldComponent, typeof i45.FilterFieldTabViewContentComponent], [typeof i46.CommonModule, typeof i47.FlexLayoutModule, typeof i48.MaterialModule, typeof i48.CovalentModule, typeof i49.AngularResizeEventModule, typeof i50.HttpClientModule, typeof i51.ReactiveFormsModule, typeof i52.NgxMatDatetimePickerModule, typeof i53.NgxMatMomentModule, typeof i48.TranslateLibModule, typeof i54.SideMenuUserAssignComponentModule, typeof i55.SideMenuMultiUserAssignComponentModule, typeof i56.QuillModule, typeof i57.MatDialogModule, typeof i58.AdvancedSearchComponentModule, typeof i59.MatProgressSpinnerModule, typeof i48.CurrencyModule, typeof i60.BrowserModule, typeof i61.BrowserAnimationsModule, typeof i62.DashboardComponentModule, typeof i63.RouterModule], [typeof i1.BooleanFieldComponent, typeof i2.ButtonFieldComponent, typeof i3.DataFieldTemplateComponent, typeof i4.DateFieldComponent, typeof i5.DateTimeFieldComponent, typeof i6.EnumerationFieldComponent, typeof i10.FileFieldComponent, typeof i11.FileListFieldComponent, typeof i12.MultichoiceFieldComponent, typeof i16.NumberFieldComponent, typeof i17.TextFieldComponent, typeof i21.UserFieldComponent, typeof i31.FilterFieldComponent, typeof i33.I18nFieldComponent, typeof i37.UserListFieldComponent, typeof i38.TaskRefFieldComponent]>;
58
68
  static ɵinj: i0.ɵɵInjectorDeclaration<DataFieldsComponentModule>;
59
69
  }
@@ -0,0 +1,8 @@
1
+ import { Injector } from '@angular/core';
2
+ import { DashboardPortalComponentRegistryService, FilterField, SearchService, AbstractFilterFieldTabViewContentComponent } from '@netgrif/components-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FilterFieldTabViewContentComponent extends AbstractFilterFieldTabViewContentComponent {
5
+ constructor(registry: DashboardPortalComponentRegistryService, injector: Injector, filterField: FilterField, searchService: SearchService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFieldTabViewContentComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterFieldTabViewContentComponent, "nc-filter-field-tab-view-content", never, {}, {}, never, never>;
8
+ }
@@ -14,3 +14,4 @@ export * from './user-field/user-field.component';
14
14
  export * from './filter-field/filter-field.component';
15
15
  export * from './i18n-field/i18n-field.component';
16
16
  export * from './user-list-field/user-list-field.component';
17
+ export * from './task-ref-field/task-ref-field.component';
@@ -0,0 +1,16 @@
1
+ import { Injector, OnDestroy, OnInit, Type } from '@angular/core';
2
+ import { AbstractTaskRefDashboardTileComponent, CallChainService, CaseResourceService, LoggerService, ProcessService, TaskContentService, TaskDataService, TaskOperations, TaskResourceService } from '@netgrif/components-core';
3
+ import { ComponentPortal } from '@angular/cdk/portal';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TaskRefDashboardTileComponent extends AbstractTaskRefDashboardTileComponent implements OnInit, OnDestroy {
6
+ protected _injector: Injector;
7
+ protected _myTaskContentService: TaskContentService;
8
+ portal: ComponentPortal<any>;
9
+ taskContentComponentClassReference: Type<any>;
10
+ private _subTask;
11
+ constructor(caseResourceService: CaseResourceService, processService: ProcessService, logger: LoggerService, taskResourceService: TaskResourceService, callChainService: CallChainService, taskDataService: TaskDataService, parentTaskContentService: TaskContentService, taskOperations: TaskOperations, _injector: Injector, _myTaskContentService: TaskContentService);
12
+ ngOnInit(): void;
13
+ ngOnDestroy(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaskRefDashboardTileComponent, [null, null, null, null, null, null, { skipSelf: true; }, null, null, { self: true; }]>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TaskRefDashboardTileComponent, "nc-task-ref-dashboard-tile", never, { "taskContentComponentClassReference": "taskContentComponentClassReference"; }, {}, never, never>;
16
+ }
@@ -0,0 +1,13 @@
1
+ import { Type } from '@angular/core';
2
+ import { AbstractTaskRefFieldComponent, LoggerService, TaskRefDashboardTile } from '@netgrif/components-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TaskRefFieldComponent extends AbstractTaskRefFieldComponent {
5
+ taskContentComponentClassReference: Type<any>;
6
+ constructor(logger: LoggerService, informAboutInvalidData: boolean | null);
7
+ getGridColumns(): string;
8
+ getGridRows(): string;
9
+ getTileGridColumn(tile: TaskRefDashboardTile): string;
10
+ getTileGridRow(tile: TaskRefDashboardTile): string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaskRefFieldComponent, [null, { optional: true; }]>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<TaskRefFieldComponent, "nc-task-ref-field", never, { "taskContentComponentClassReference": "taskContentComponentClassReference"; }, {}, never, never>;
13
+ }
@@ -0,0 +1,8 @@
1
+ import { TranslateService } from '@ngx-translate/core';
2
+ import { AbstractDashboardBarChartTextFieldComponent } from '@netgrif/components-core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DashboardBarChartTextFieldComponent extends AbstractDashboardBarChartTextFieldComponent {
5
+ constructor(translate: TranslateService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardBarChartTextFieldComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardBarChartTextFieldComponent, "nc-dashboard-bar-chart-text-field", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { AbstractDashboardIframeTextFieldComponent } from '@netgrif/components-core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DashboardIframeTextFieldComponent extends AbstractDashboardIframeTextFieldComponent {
5
+ constructor(translate: TranslateService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardIframeTextFieldComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardIframeTextFieldComponent, "nc-dashboard-iframe-text-field", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { AbstractDashboardLineChartTextFieldComponent } from '@netgrif/components-core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DashboardLineChartTextFieldComponent extends AbstractDashboardLineChartTextFieldComponent {
5
+ constructor(translate: TranslateService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardLineChartTextFieldComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardLineChartTextFieldComponent, "nc-dashboard-line-chart-text-field", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { AbstractDashboardPieChartTextFieldComponent } from '@netgrif/components-core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DashboardPieChartTextFieldComponent extends AbstractDashboardPieChartTextFieldComponent {
5
+ constructor(translate: TranslateService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardPieChartTextFieldComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardPieChartTextFieldComponent, "nc-dashboard-pie-chart-text-field", never, {}, {}, never, never>;
8
+ }
@@ -0,0 +1,17 @@
1
+ import { Injector, OnDestroy, OnInit } from '@angular/core';
2
+ import { ComponentPortal } from '@angular/cdk/portal';
3
+ import { AbstractDashboardPortalTextFieldComponent, DashboardPortalComponentRegistryService } from '@netgrif/components-core';
4
+ import { TranslateService } from '@ngx-translate/core';
5
+ import * as i0 from "@angular/core";
6
+ export declare class DashboardPortalTextFieldComponent extends AbstractDashboardPortalTextFieldComponent implements OnInit, OnDestroy {
7
+ private registry;
8
+ private injector;
9
+ private sub;
10
+ componentPortal: ComponentPortal<any>;
11
+ constructor(translate: TranslateService, registry: DashboardPortalComponentRegistryService, injector: Injector);
12
+ ngOnInit(): void;
13
+ protected initializePortalComponent(): void;
14
+ ngOnDestroy(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardPortalTextFieldComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardPortalTextFieldComponent, "nc-dashboard-portal-text-field", never, {}, {}, never, never>;
17
+ }
@@ -1,6 +1,7 @@
1
- import { AbstractTextFieldComponent } from '@netgrif/components-core';
1
+ import { AbstractTextFieldComponent, TextFieldComponent as TextFieldComponentEnum } from '@netgrif/components-core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TextFieldComponent extends AbstractTextFieldComponent {
4
+ textFieldComponentEnum: typeof TextFieldComponentEnum;
4
5
  constructor(informAboutInvalidData: boolean | null);
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<TextFieldComponent, [{ optional: true; }]>;
6
7
  static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldComponent, "nc-text-field", never, {}, {}, never, never>;
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./filter-field-tab-view/filter-field-tab-view.component";
3
+ import * as i2 from "./filter-field-tabbed-case-view/filter-field-tabbed-case-view.component";
4
+ import * as i3 from "./filter-field-tabbed-task-view/filter-field-tabbed-task-view.component";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "../tabs/tabs.module";
7
+ import * as i6 from "@netgrif/components-core";
8
+ import * as i7 from "@angular/flex-layout";
9
+ import * as i8 from "../search/search.module";
10
+ import * as i9 from "../view/case-view/case-view.module";
11
+ import * as i10 from "../header/header.module";
12
+ import * as i11 from "../panel/panel.module";
13
+ export declare class FilterFieldContentModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFieldContentModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FilterFieldContentModule, [typeof i1.FilterFieldTabViewComponent, typeof i2.FilterFieldTabbedCaseViewComponent, typeof i3.FilterFieldTabbedTaskViewComponent], [typeof i4.CommonModule, typeof i5.TabsComponentModule, typeof i6.MaterialModule, typeof i7.FlexModule, typeof i8.SearchComponentModule, typeof i9.CaseViewComponentModule, typeof i10.HeaderComponentModule, typeof i11.PanelComponentModule], [typeof i1.FilterFieldTabViewComponent, typeof i2.FilterFieldTabbedCaseViewComponent, typeof i3.FilterFieldTabbedTaskViewComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<FilterFieldContentModule>;
17
+ }
@@ -0,0 +1,7 @@
1
+ import { DashboardPortalComponentRegistryService, AbstractFilterFieldTabViewComponent, FilterField } from '@netgrif/components-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterFieldTabViewComponent extends AbstractFilterFieldTabViewComponent {
4
+ constructor(registry: DashboardPortalComponentRegistryService, filterField: FilterField);
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFieldTabViewComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterFieldTabViewComponent, "nc-filter-field-tab-view", never, {}, {}, never, never>;
7
+ }
@@ -0,0 +1,16 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { AbstractTabbedCaseViewComponent, AllowedNetsService, AllowedNetsServiceFactory, CaseViewService, InjectedTabbedCaseViewData, LoggerService, NewCaseCreationConfigurationData } from '@netgrif/components-core';
3
+ import { HeaderComponent } from '../../header/header.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare const newCaseConfigFactory: () => {
6
+ useCachedProcesses: boolean;
7
+ };
8
+ export declare function localAllowedNetsFactory(factory: AllowedNetsServiceFactory): AllowedNetsService;
9
+ export declare class FilterFieldTabbedCaseViewComponent extends AbstractTabbedCaseViewComponent implements AfterViewInit {
10
+ protected _newCaseCreationConfig: NewCaseCreationConfigurationData;
11
+ caseHeaderComponent: HeaderComponent;
12
+ constructor(caseViewService: CaseViewService, loggerService: LoggerService, injectedTabData: InjectedTabbedCaseViewData, _newCaseCreationConfig?: NewCaseCreationConfigurationData);
13
+ ngAfterViewInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFieldTabbedCaseViewComponent, [null, null, null, { optional: true; }]>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterFieldTabbedCaseViewComponent, "nc-filter-field-tabbed-case-view", never, {}, {}, never, never>;
16
+ }
@@ -0,0 +1,11 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { TaskViewService, AbstractTabbedTaskViewComponent, InjectedTabbedTaskViewData } from '@netgrif/components-core';
3
+ import { HeaderComponent } from "../../header/header.component";
4
+ import * as i0 from "@angular/core";
5
+ export declare class FilterFieldTabbedTaskViewComponent extends AbstractTabbedTaskViewComponent implements AfterViewInit {
6
+ taskHeaderComponent: HeaderComponent;
7
+ constructor(taskViewService: TaskViewService, injectedTabData: InjectedTabbedTaskViewData);
8
+ ngAfterViewInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFieldTabbedTaskViewComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterFieldTabbedTaskViewComponent, "nc-filter-field-tabbed-task-view", never, {}, {}, never, never>;
11
+ }
@@ -0,0 +1,4 @@
1
+ export * from './filter-field-content.module';
2
+ export * from './filter-field-tab-view/filter-field-tab-view.component';
3
+ export * from './filter-field-tabbed-case-view/filter-field-tabbed-case-view.component';
4
+ export * from './filter-field-tabbed-task-view/filter-field-tabbed-task-view.component';
@@ -16,9 +16,10 @@ import * as i14 from "@angular/flex-layout";
16
16
  import * as i15 from "../data-fields/data-fields.module";
17
17
  import * as i16 from "../task-content/task-content.module";
18
18
  import * as i17 from "../side-menu/content-components/user-assign/side-menu-user-assign-component.module";
19
- import * as i18 from "../side-menu/content-components/multi-user-assign/side-menu-multi-user-assign-component.module";
19
+ import * as i18 from "@angular/material/expansion";
20
+ import * as i19 from "../side-menu/content-components/multi-user-assign/side-menu-multi-user-assign-component.module";
20
21
  export declare class PanelComponentModule {
21
22
  static ɵfac: i0.ɵɵFactoryDeclaration<PanelComponentModule, never>;
22
- static ɵmod: i0.ɵɵNgModuleDeclaration<PanelComponentModule, [typeof i1.PanelComponent, typeof i2.TaskPanelComponent, typeof i3.CasePanelComponent, typeof i4.WorkflowPanelComponent, typeof i5.TaskListComponent, typeof i6.PublicWorkflowPanelComponent, typeof i7.ImmediateFilterTextComponent, typeof i8.ImmediateFilterTextContentComponent, typeof i9.PanelItemComponent, typeof i10.TaskListPaginationComponent, typeof i11.SingleTaskComponent], [typeof i12.CommonModule, typeof i13.MaterialModule, typeof i14.FlexModule, typeof i15.DataFieldsComponentModule, typeof i13.TranslateLibModule, typeof i13.SnackBarModule, typeof i16.TaskContentComponentModule, typeof i17.SideMenuUserAssignComponentModule, typeof i18.SideMenuMultiUserAssignComponentModule, typeof i13.CurrencyModule, typeof i13.UtilityModule], [typeof i1.PanelComponent, typeof i9.PanelItemComponent, typeof i2.TaskPanelComponent, typeof i3.CasePanelComponent, typeof i4.WorkflowPanelComponent, typeof i5.TaskListComponent, typeof i6.PublicWorkflowPanelComponent, typeof i7.ImmediateFilterTextComponent, typeof i10.TaskListPaginationComponent, typeof i11.SingleTaskComponent]>;
23
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PanelComponentModule, [typeof i1.PanelComponent, typeof i2.TaskPanelComponent, typeof i3.CasePanelComponent, typeof i4.WorkflowPanelComponent, typeof i5.TaskListComponent, typeof i6.PublicWorkflowPanelComponent, typeof i7.ImmediateFilterTextComponent, typeof i8.ImmediateFilterTextContentComponent, typeof i9.PanelItemComponent, typeof i10.TaskListPaginationComponent, typeof i11.SingleTaskComponent], [typeof i12.CommonModule, typeof i13.MaterialModule, typeof i14.FlexModule, typeof i15.DataFieldsComponentModule, typeof i13.TranslateLibModule, typeof i13.SnackBarModule, typeof i16.TaskContentComponentModule, typeof i17.SideMenuUserAssignComponentModule, typeof i13.CurrencyModule, typeof i18.MatExpansionModule, typeof i19.SideMenuMultiUserAssignComponentModule, typeof i13.UtilityModule], [typeof i1.PanelComponent, typeof i9.PanelItemComponent, typeof i2.TaskPanelComponent, typeof i3.CasePanelComponent, typeof i4.WorkflowPanelComponent, typeof i5.TaskListComponent, typeof i6.PublicWorkflowPanelComponent, typeof i7.ImmediateFilterTextComponent, typeof i10.TaskListPaginationComponent, typeof i11.SingleTaskComponent]>;
23
24
  static ɵinj: i0.ɵɵInjectorDeclaration<PanelComponentModule>;
24
25
  }
@@ -1,5 +1,5 @@
1
1
  import { Injector } from '@angular/core';
2
- import { AbstractTaskPanelComponent, AssignPolicyService, AssignTaskService, CallChainService, CancelTaskService, DelegateTaskService, DisableButtonFuntions, FinishPolicyService, FinishTaskService, LoggerService, PaperViewService, SubjectTaskOperations, TaskContentService, TaskDataService, TaskEventService, TaskRequestStateService, TaskViewService, PermissionService, ChangedFieldsService, OverflowService } from '@netgrif/components-core';
2
+ import { AbstractTaskPanelComponent, AssignPolicyService, AssignTaskService, CallChainService, CancelTaskService, ChangedFieldsService, DelegateTaskService, DisableButtonFuntions, FinishPolicyService, FinishTaskService, LoggerService, OverflowService, PaperViewService, PermissionService, SubjectTaskOperations, TaskContentService, TaskDataService, TaskEventService, TaskRequestStateService, TaskViewService } from '@netgrif/components-core';
3
3
  import { TranslateService } from '@ngx-translate/core';
4
4
  import { CurrencyPipe } from '@angular/common';
5
5
  import * as i0 from "@angular/core";
@@ -25,8 +25,9 @@ export declare class TaskPanelComponent extends AbstractTaskPanelComponent {
25
25
  protected _currencyPipe: CurrencyPipe;
26
26
  protected _changedFieldsService: ChangedFieldsService;
27
27
  protected _permissionService: PermissionService;
28
- constructor(_taskContentService: TaskContentService, _log: LoggerService, _taskViewService: TaskViewService, _paperView: PaperViewService, _taskEventService: TaskEventService, _assignTaskService: AssignTaskService, _delegateTaskService: DelegateTaskService, _cancelTaskService: CancelTaskService, _finishTaskService: FinishTaskService, _taskState: TaskRequestStateService, _taskDataService: TaskDataService, _assignPolicyService: AssignPolicyService, _finishPolicyService: FinishPolicyService, _callChain: CallChainService, _translate: TranslateService, _taskOperations: SubjectTaskOperations, _disableFunctions: DisableButtonFuntions, isEnabled: boolean, _parentInjector: Injector, _currencyPipe: CurrencyPipe, _changedFieldsService: ChangedFieldsService, _permissionService: PermissionService, overflowService: OverflowService);
28
+ protected _taskForceOpen: boolean;
29
+ constructor(_taskContentService: TaskContentService, _log: LoggerService, _taskViewService: TaskViewService, _paperView: PaperViewService, _taskEventService: TaskEventService, _assignTaskService: AssignTaskService, _delegateTaskService: DelegateTaskService, _cancelTaskService: CancelTaskService, _finishTaskService: FinishTaskService, _taskState: TaskRequestStateService, _taskDataService: TaskDataService, _assignPolicyService: AssignPolicyService, _finishPolicyService: FinishPolicyService, _callChain: CallChainService, _translate: TranslateService, _taskOperations: SubjectTaskOperations, _disableFunctions: DisableButtonFuntions, isEnabled: boolean, _parentInjector: Injector, _currencyPipe: CurrencyPipe, _changedFieldsService: ChangedFieldsService, _permissionService: PermissionService, overflowService: OverflowService, _taskForceOpen: boolean);
29
30
  protected createContentPortal(): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<TaskPanelComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, null, null, null, null, { optional: true; }]>;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaskPanelComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }]>;
31
32
  static ɵcmp: i0.ɵɵComponentDeclaration<TaskPanelComponent, "nc-task-panel", never, {}, {}, never, never>;
32
33
  }
@@ -1,7 +1,9 @@
1
+ import { Type } from '@angular/core';
1
2
  import { AbstractFieldComponentResolverComponent, TaskContentService } from '@netgrif/components-core';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FieldComponentResolverComponent extends AbstractFieldComponentResolverComponent {
5
+ taskContentComponentClassReference: Type<any>;
4
6
  constructor(taskContentService: TaskContentService);
5
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponentResolverComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponentResolverComponent, "nc-field-component-resolver", never, {}, {}, never, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponentResolverComponent, "nc-field-component-resolver", never, { "taskContentComponentClassReference": "taskContentComponentClassReference"; }, {}, never, never>;
7
9
  }
@@ -6,6 +6,7 @@ export declare class TaskContentComponent extends AbstractTaskContentComponent {
6
6
  protected _paperView: PaperViewService;
7
7
  protected _logger: LoggerService;
8
8
  protected _taskEventService: TaskEventService;
9
+ taskContentComponentClass: typeof TaskContentComponent;
9
10
  constructor(_fieldConverter: FieldConverterService, taskContentService: TaskContentService, _paperView: PaperViewService, _logger: LoggerService, _taskEventService: TaskEventService, config: any);
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<TaskContentComponent, [null, null, null, null, { optional: true; }, { optional: true; }]>;
11
12
  static ɵcmp: i0.ɵɵComponentDeclaration<TaskContentComponent, "nc-task-content", never, {}, {}, never, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netgrif/components",
3
- "version": "6.3.0-rc.8",
3
+ "version": "6.3.0",
4
4
  "description": "Netgrif Application Engine frontend Angular components",
5
5
  "homepage": "https://components.netgrif.com",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -29,7 +29,7 @@
29
29
  "nae frontend"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@netgrif/components-core": "6.3.0-rc.8",
32
+ "@netgrif/components-core": "6.3.0",
33
33
  "@angular-material-components/datetime-picker": "~7.0.1",
34
34
  "@angular-material-components/moment-adapter": "~7.0.0",
35
35
  "@angular/animations": "~13.3.1",
package/public-api.d.ts CHANGED
@@ -15,3 +15,4 @@ export * from './lib/user/public-api';
15
15
  export * from './lib/view/public-api';
16
16
  export * from './lib/legal/public-api';
17
17
  export * from './lib/routing/public-api';
18
+ export * from './lib/filter-field-content/public-api';
@@ -196,7 +196,7 @@
196
196
  }
197
197
 
198
198
  .mat-form-field-outline-thick {
199
- color: mat.get-contrast-color-from-palette($primary ,500);
199
+ color: mat.get-contrast-color-from-palette($primary, 500);
200
200
  }
201
201
 
202
202
  &.mat-focused {
@@ -232,6 +232,13 @@
232
232
  .form-input-error {
233
233
  border-color: mat.get-color-from-palette($warn) !important;
234
234
  }
235
+
236
+ .new-dashboard-tile {
237
+ border-color: mat.get-color-from-palette($primary);
238
+ border-style: dashed;
239
+ border-radius: 16px;
240
+ border-width: thin;
241
+ }
235
242
  }
236
243
 
237
244
  .mat-calendar-arrow {