@bizdoc/core 3.9.6 → 3.10.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.
- package/assets/themes/default.min.css +1 -1
- package/fesm2022/bizdoc-core.mjs +54 -41
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +14 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -601,13 +601,14 @@ interface Action {
|
|
601
601
|
options?: any;
|
602
602
|
}
|
603
603
|
interface Options$5 {
|
604
|
+
timeZone?: string;
|
604
605
|
grantAccess?: GrantSettings;
|
605
606
|
outOfOffice?: OutOfOfficeSettings;
|
606
607
|
notifications?: NotificationsSettings;
|
607
608
|
emails?: EmailSettings;
|
608
609
|
guides?: string[];
|
609
|
-
|
610
|
-
|
610
|
+
inboxTouch?: Date;
|
611
|
+
notificationsTouch?: Date;
|
611
612
|
tags?: Tag$1[];
|
612
613
|
}
|
613
614
|
interface GrantSettings {
|
@@ -919,6 +920,7 @@ interface SharedChildConfig {
|
|
919
920
|
};
|
920
921
|
}
|
921
922
|
interface SharedConfig {
|
923
|
+
timeZones?: string[];
|
922
924
|
scheduler?: SchedulerSettings | boolean;
|
923
925
|
analysis?: AnalysisSettings | boolean;
|
924
926
|
hubServerUrl?: string;
|
@@ -1171,6 +1173,8 @@ declare class SessionService {
|
|
1171
1173
|
/** online or set in profile */
|
1172
1174
|
get availabilityState(): AvailabilityState;
|
1173
1175
|
set availabilityState(value: AvailabilityState);
|
1176
|
+
get timeZone(): string;
|
1177
|
+
set timeZone(value: string);
|
1174
1178
|
isInRole(role: string): Observable<boolean>;
|
1175
1179
|
/** */
|
1176
1180
|
get isOutOfOffice(): boolean;
|
@@ -4572,7 +4576,7 @@ declare class OverlayFormComponent implements OnInit, OnDestroy {
|
|
4572
4576
|
declare class LocalizedStringPipe implements PipeTransform {
|
4573
4577
|
private _session;
|
4574
4578
|
constructor(_session: SessionService);
|
4575
|
-
transform(value
|
4579
|
+
transform(value?: LocalizedString, ...args: any[]): string | null;
|
4576
4580
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedStringPipe, never>;
|
4577
4581
|
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedStringPipe, "localizedString", false>;
|
4578
4582
|
}
|
@@ -8446,6 +8450,7 @@ declare class ActionDialog implements OnInit, OnDestroy {
|
|
8446
8450
|
readonly action: Action;
|
8447
8451
|
arguments: {};
|
8448
8452
|
valid: boolean;
|
8453
|
+
verb: string;
|
8449
8454
|
portal: ComponentPortal<ArgumentsComponent>;
|
8450
8455
|
private readonly _destroy;
|
8451
8456
|
/** action-dialog ctor */
|
@@ -9692,6 +9697,11 @@ declare class HomeComponent extends HomeBase {
|
|
9692
9697
|
collapse(evt: Event): void;
|
9693
9698
|
focus(): void;
|
9694
9699
|
displayWith: (_: string) => null;
|
9700
|
+
/**
|
9701
|
+
*
|
9702
|
+
* @param item
|
9703
|
+
* @param compRef
|
9704
|
+
*/
|
9695
9705
|
onAttached(item: ListingItem, compRef: ComponentRef<ListingComponent<any>>): void;
|
9696
9706
|
goto(evt: MatAutocompleteSelectedEvent): void;
|
9697
9707
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomeComponent, never>;
|
@@ -9837,6 +9847,7 @@ declare class ActionPaneComponent extends ActionBase implements OnInit, OnDestro
|
|
9837
9847
|
valid: boolean;
|
9838
9848
|
readonly okChange: EventEmitter<ParamMap>;
|
9839
9849
|
private readonly _destroy;
|
9850
|
+
verb: string;
|
9840
9851
|
/** action-dialog ctor */
|
9841
9852
|
constructor(_pane: PaneRef<ActionPaneComponent>, mailbox: MailboxService, _fr: BizDocComponentFactoryResolver, accounts: AccountService, sb: PromptService, translate: TranslateService, session: SessionService);
|
9842
9853
|
close(): void;
|