@netgrif/components-core 6.4.0-beta.7 → 6.4.0-beta.9
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/esm2020/lib/filter/models/case-search-request-body.mjs +1 -1
- package/esm2020/lib/filter/models/task-search-request-body.mjs +1 -1
- package/esm2020/lib/panel/task-panel/abstract-task-panel.component.mjs +4 -1
- package/esm2020/lib/resources/interface/case-get-request-body.mjs +1 -1
- package/esm2020/lib/task-content/services/task-content.service.mjs +4 -1
- package/esm2020/lib/view/case-view/service/case-view-service.mjs +1 -1
- package/esm2020/lib/view/case-view/tabbed-case-view.mjs +1 -1
- package/fesm2015/netgrif-components-core.mjs +7 -0
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +6 -0
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/filter/models/case-search-request-body.d.ts +3 -0
- package/lib/filter/models/task-search-request-body.d.ts +3 -0
- package/lib/panel/task-panel/abstract-task-panel.component.d.ts +1 -0
- package/lib/resources/interface/case-get-request-body.d.ts +3 -0
- package/package.json +1 -1
|
@@ -71,6 +71,9 @@ export interface TaskSearchRequestBody {
|
|
|
71
71
|
* If more than one string ID is specified, the returned tasks must have one of them.
|
|
72
72
|
*/
|
|
73
73
|
stringId?: string | Array<string>;
|
|
74
|
+
tags?: {
|
|
75
|
+
[key: string]: string;
|
|
76
|
+
};
|
|
74
77
|
}
|
|
75
78
|
/**
|
|
76
79
|
* Defines the way tasks case is queried.
|
|
@@ -120,6 +120,7 @@ export declare abstract class AbstractTaskPanelComponent extends AbstractPanelWi
|
|
|
120
120
|
ngOnDestroy(): void;
|
|
121
121
|
isForceOpen(): boolean;
|
|
122
122
|
getContentMinHeight(): string;
|
|
123
|
+
isExpanded(): boolean;
|
|
123
124
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractTaskPanelComponent, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
124
125
|
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractTaskPanelComponent, "ncc-abstract-legal-notice", never, { "taskListVirtualScroll": "taskListVirtualScroll"; "panelContentComponent": "panelContentComponent"; "selectedHeaders$": "selectedHeaders$"; "first": "first"; "last": "last"; "responsiveBody": "responsiveBody"; "preventCollapse": "preventCollapse"; "hidePanelHeader": "hidePanelHeader"; "hideActionRow": "hideActionRow"; "actionButtonTemplates": "actionButtonTemplates"; "actionRowJustifyContent": "actionRowJustifyContent"; "showMoreMenu": "showMoreMenu"; "forceLoadDataOnOpen": "forceLoadDataOnOpen"; "textEllipsis": "textEllipsis"; "taskPanelData": "taskPanelData"; }, { "taskEvent": "taskEvent"; "panelRefOutput": "panelRefOutput"; }, never, never>;
|
|
125
126
|
}
|
|
@@ -46,6 +46,9 @@ export interface CaseGetRequestBody {
|
|
|
46
46
|
* If more than one string ID is specified, the returned cases must have one of them.
|
|
47
47
|
*/
|
|
48
48
|
stringId?: string | Array<string>;
|
|
49
|
+
tags?: {
|
|
50
|
+
[key: string]: string;
|
|
51
|
+
};
|
|
49
52
|
}
|
|
50
53
|
/**
|
|
51
54
|
* Queries cases that were created by a specified author.
|
package/package.json
CHANGED