@bizdoc/core 3.8.0 → 3.8.1
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/fesm2022/bizdoc-core.mjs +32 -15
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +7 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -1475,7 +1475,7 @@ declare class OptionsComponent implements OnInit, OnDestroy {
|
|
1475
1475
|
sectionTmpl: TemplateRef<any>;
|
1476
1476
|
saveing: boolean;
|
1477
1477
|
private _requiredValidator;
|
1478
|
-
private
|
1478
|
+
private _sameDate;
|
1479
1479
|
readonly grantUserIds: _angular_forms.FormControl<never[] | null>;
|
1480
1480
|
readonly oooId: _angular_forms.FormControl<string | PersonInfo | null>;
|
1481
1481
|
readonly form: FormGroup<{
|
@@ -11418,24 +11418,25 @@ declare class ProfileSettingsDialog implements OnInit {
|
|
11418
11418
|
readonly grants: _angular_forms.FormControl<never[] | null>;
|
11419
11419
|
substitueInput: MatInput;
|
11420
11420
|
grantInput: MatChipInput;
|
11421
|
-
|
11421
|
+
private _sameDate;
|
11422
|
+
readonly outOfOffice: FormGroup<{
|
11422
11423
|
active: _angular_forms.FormControl<boolean | null>;
|
11423
11424
|
substitueId: _angular_forms.FormControl<string | null>;
|
11424
11425
|
from: _angular_forms.FormControl<Date | null>;
|
11425
11426
|
to: _angular_forms.FormControl<Date | null>;
|
11426
11427
|
}>;
|
11427
|
-
readonly grantAccess:
|
11428
|
+
readonly grantAccess: FormGroup<{
|
11428
11429
|
active: _angular_forms.FormControl<boolean | null>;
|
11429
11430
|
users: _angular_forms.FormControl<string[] | null>;
|
11430
11431
|
}>;
|
11431
|
-
readonly form:
|
11432
|
-
outOfOffice:
|
11432
|
+
readonly form: FormGroup<{
|
11433
|
+
outOfOffice: FormGroup<{
|
11433
11434
|
active: _angular_forms.FormControl<boolean | null>;
|
11434
11435
|
substitueId: _angular_forms.FormControl<string | null>;
|
11435
11436
|
from: _angular_forms.FormControl<Date | null>;
|
11436
11437
|
to: _angular_forms.FormControl<Date | null>;
|
11437
11438
|
}>;
|
11438
|
-
grantAccess:
|
11439
|
+
grantAccess: FormGroup<{
|
11439
11440
|
active: _angular_forms.FormControl<boolean | null>;
|
11440
11441
|
users: _angular_forms.FormControl<string[] | null>;
|
11441
11442
|
}>;
|