@bizdoc/core 2.3.15 → 2.3.16
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/esm2022/lib/admin/document-trace/reassign.dialog.mjs +3 -3
- package/esm2022/lib/admin/form/workflow/node.component.mjs +4 -4
- package/esm2022/lib/admin/form/workflow/role-node.component.mjs +3 -3
- package/esm2022/lib/admin/indices/manage-cube-index.component.mjs +2 -2
- package/esm2022/lib/admin/profiler/outofoffice.component.mjs +9 -7
- package/esm2022/lib/browse/filter/filter.component.mjs +2 -3
- package/esm2022/lib/compose/action/assign-action.component.mjs +4 -4
- package/esm2022/lib/compose/action/moveto-action.component.mjs +8 -8
- package/esm2022/lib/compose/action/return-action.component.mjs +3 -3
- package/esm2022/lib/core/models.mjs +1 -1
- package/esm2022/lib/options/options.component.mjs +6 -4
- package/fesm2022/bizdoc-core.mjs +32 -29
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/admin/profiler/outofoffice.component.d.ts +2 -0
- package/lib/options/options.component.d.ts +2 -0
- package/package.json +1 -1
@@ -19,6 +19,8 @@ export declare class ProfileSettingsDialog implements OnInit {
|
|
19
19
|
private _fb;
|
20
20
|
model: OutOfOfficeData;
|
21
21
|
readonly separatorKeysCodes: number[];
|
22
|
+
readonly today: Date;
|
23
|
+
readonly isMobile: boolean;
|
22
24
|
readonly substitute: import("@angular/forms").FormControl<string | UserInfo>;
|
23
25
|
readonly grants: import("@angular/forms").FormControl<any[]>;
|
24
26
|
substitueInput: MatInput;
|
@@ -24,6 +24,8 @@ export declare class OptionsComponent implements OnInit, OnDestroy {
|
|
24
24
|
private _sb;
|
25
25
|
private _session;
|
26
26
|
private readonly _destroy;
|
27
|
+
readonly today: Date;
|
28
|
+
readonly isMobile: boolean;
|
27
29
|
private _requiredValidator;
|
28
30
|
substitueInput: MatInput;
|
29
31
|
grantInput: MatChipInput;
|