@bizdoc/core 3.6.4 → 3.6.6
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 +1354 -1346
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +29 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -25,7 +25,7 @@ import * as i36 from '@angular/material/icon';
|
|
25
25
|
import { MatIconRegistry } from '@angular/material/icon';
|
26
26
|
import { CookieService } from 'ngx-cookie-service';
|
27
27
|
import * as i35 from '@angular/material/form-field';
|
28
|
-
import { MatFormFieldAppearance, MatFormFieldControl, FloatLabelType, MatFormField } from '@angular/material/form-field';
|
28
|
+
import { MatFormFieldAppearance, MatFormFieldControl, SubscriptSizing, FloatLabelType, MatFormField } from '@angular/material/form-field';
|
29
29
|
import * as i2$2 from '@syncfusion/ej2-angular-diagrams';
|
30
30
|
import { ConnectorModel, NodeModel, ShapeModel, FlowShapeModel, BasicShapeModel, ImageModel, PathModel, TextModel, BpmnShapeModel, NativeModel, Segments, Diagram, DiagramTools, DiagramConstraints, LayoutModel, ScrollSettingsModel, SnapSettingsModel, IPropertyChangeEventArgs, ICollectionChangeEventArgs } from '@syncfusion/ej2-angular-diagrams';
|
31
31
|
import { HubConnectionState } from '@microsoft/signalr';
|
@@ -1123,7 +1123,6 @@ declare class SessionService {
|
|
1123
1123
|
private _accentpalette;
|
1124
1124
|
get accentPalette(): string[];
|
1125
1125
|
isAboveWatermark(date: Date): boolean;
|
1126
|
-
private _constructpalette;
|
1127
1126
|
private _primarypalette;
|
1128
1127
|
get primeryPalette(): string[];
|
1129
1128
|
getAccent(mode?: MaterialMode): string;
|
@@ -1146,15 +1145,15 @@ declare class SessionService {
|
|
1146
1145
|
/** system admin */
|
1147
1146
|
get isSystem(): boolean;
|
1148
1147
|
/** online or set in profile */
|
1149
|
-
get
|
1150
|
-
set
|
1148
|
+
get availabilityState(): AvailabilityState;
|
1149
|
+
set availabilityState(value: AvailabilityState);
|
1151
1150
|
isInRole(role: string): Observable<boolean>;
|
1152
1151
|
/** */
|
1153
1152
|
get isOutOfOffice(): boolean;
|
1154
1153
|
/** update profile */
|
1155
|
-
|
1154
|
+
updateProfile(profile: Options$5): Observable<any>;
|
1156
1155
|
/** mark guide as visited in profile */
|
1157
|
-
|
1156
|
+
markGuideAsRead(name: string): Observable<any>;
|
1158
1157
|
/** get profile */
|
1159
1158
|
refresh(): Observable<any>;
|
1160
1159
|
getProfileExtra<T = any>(name: string): Observable<T>;
|
@@ -1168,8 +1167,9 @@ declare class SessionService {
|
|
1168
1167
|
*/
|
1169
1168
|
listImpersonate(search?: string): Observable<PersonInfo[]>;
|
1170
1169
|
impersonate(userId: string): Observable<PersonInfo>;
|
1171
|
-
|
1172
|
-
|
1170
|
+
markInboxAsTouched(): Promise<WatermarkInfo>;
|
1171
|
+
markNotificationsAsTouched(): Promise<WatermarkInfo>;
|
1172
|
+
private _constructPalette;
|
1173
1173
|
private _getBrowserLang;
|
1174
1174
|
/**
|
1175
1175
|
*
|
@@ -1520,6 +1520,7 @@ interface ControlDesigner<T = any> extends ManagedComponent<T> {
|
|
1520
1520
|
}
|
1521
1521
|
interface ControlComponent<TValue = any> {
|
1522
1522
|
appearance?: MatFormFieldAppearance;
|
1523
|
+
dense?: boolean;
|
1523
1524
|
mode: ViewMode;
|
1524
1525
|
control: AbstractControl<TValue>;
|
1525
1526
|
focus?(): void;
|
@@ -2533,6 +2534,8 @@ interface AutocompleteSelectedEvent {
|
|
2533
2534
|
declare class AutocompleteField implements ControlComponent, OnInit, OnDestroy {
|
2534
2535
|
private _ds;
|
2535
2536
|
appearance: MatFormFieldAppearance;
|
2537
|
+
subscriptSizing: SubscriptSizing;
|
2538
|
+
set dense(val: boolean);
|
2536
2539
|
hint?: string;
|
2537
2540
|
readonly control: FormControl<any>;
|
2538
2541
|
params: any;
|
@@ -6351,6 +6354,8 @@ declare class VirtualTabs implements OnInit {
|
|
6351
6354
|
|
6352
6355
|
declare class TimeField implements ControlComponent<any> {
|
6353
6356
|
appearance: MatFormFieldAppearance;
|
6357
|
+
subscriptSizing: SubscriptSizing;
|
6358
|
+
set dense(val: boolean);
|
6354
6359
|
hint?: string;
|
6355
6360
|
placeholder?: string;
|
6356
6361
|
label?: string;
|
@@ -6388,6 +6393,8 @@ declare class SignatureField implements ControlComponent<any>, OnInit {
|
|
6388
6393
|
|
6389
6394
|
declare class AddressField implements ControlComponent, OnInit {
|
6390
6395
|
appearance: MatFormFieldAppearance;
|
6396
|
+
subscriptSizing: SubscriptSizing;
|
6397
|
+
set dense(val: boolean);
|
6391
6398
|
mode: ViewMode;
|
6392
6399
|
hint?: string;
|
6393
6400
|
placeholder?: string;
|
@@ -6493,6 +6500,8 @@ declare class FileField implements ControlComponent, OnInit {
|
|
6493
6500
|
}
|
6494
6501
|
|
6495
6502
|
declare class NumericField implements ControlComponent<any>, OnInit {
|
6503
|
+
subscriptSizing: SubscriptSizing;
|
6504
|
+
set dense(val: boolean);
|
6496
6505
|
appearance: MatFormFieldAppearance;
|
6497
6506
|
mode: ViewMode;
|
6498
6507
|
placeholder?: string;
|
@@ -6527,6 +6536,8 @@ declare class CheckboxField implements ControlComponent, OnInit {
|
|
6527
6536
|
|
6528
6537
|
declare class DateField implements ControlComponent<any> {
|
6529
6538
|
appearance: MatFormFieldAppearance;
|
6539
|
+
subscriptSizing: SubscriptSizing;
|
6540
|
+
set dense(val: boolean);
|
6530
6541
|
hint?: string;
|
6531
6542
|
placeholder?: string;
|
6532
6543
|
label?: string;
|
@@ -6545,6 +6556,8 @@ declare class DateField implements ControlComponent<any> {
|
|
6545
6556
|
|
6546
6557
|
declare class DateRangeField implements ControlComponent, OnInit {
|
6547
6558
|
private _fb;
|
6559
|
+
subscriptSizing: SubscriptSizing;
|
6560
|
+
set dense(val: boolean);
|
6548
6561
|
appearance: MatFormFieldAppearance;
|
6549
6562
|
readonly isMobile: boolean;
|
6550
6563
|
inp: ElementRef<HTMLInputElement>;
|
@@ -6572,6 +6585,8 @@ declare class DateRangeField implements ControlComponent, OnInit {
|
|
6572
6585
|
}
|
6573
6586
|
|
6574
6587
|
declare class InputField implements ControlComponent, OnInit {
|
6588
|
+
subscriptSizing: SubscriptSizing;
|
6589
|
+
set dense(val: boolean);
|
6575
6590
|
appearance: MatFormFieldAppearance;
|
6576
6591
|
mode: ViewMode;
|
6577
6592
|
hint?: string;
|
@@ -6594,6 +6609,8 @@ declare class InputField implements ControlComponent, OnInit {
|
|
6594
6609
|
}
|
6595
6610
|
|
6596
6611
|
declare class SelectField extends OptionsControlField implements ControlComponent<any> {
|
6612
|
+
subscriptSizing: SubscriptSizing;
|
6613
|
+
set dense(val: boolean);
|
6597
6614
|
params: any;
|
6598
6615
|
multiple?: boolean;
|
6599
6616
|
autocomplete?: boolean;
|
@@ -6624,6 +6641,8 @@ declare class SwitchField implements ControlComponent, OnInit {
|
|
6624
6641
|
|
6625
6642
|
declare class TextareaField implements ControlComponent, OnInit {
|
6626
6643
|
appearance: MatFormFieldAppearance;
|
6644
|
+
subscriptSizing: SubscriptSizing;
|
6645
|
+
set dense(val: boolean);
|
6627
6646
|
mode: ViewMode;
|
6628
6647
|
hint?: string;
|
6629
6648
|
maxLength?: number;
|
@@ -6643,6 +6662,8 @@ declare class TextareaField implements ControlComponent, OnInit {
|
|
6643
6662
|
declare class ChipsField implements ControlComponent, OnInit {
|
6644
6663
|
readonly separatorKeysCodes: number[];
|
6645
6664
|
appearance: MatFormFieldAppearance;
|
6665
|
+
subscriptSizing: SubscriptSizing;
|
6666
|
+
set dense(val: boolean);
|
6646
6667
|
mode: ViewMode;
|
6647
6668
|
hint?: string;
|
6648
6669
|
label?: string;
|