@resolveio/client-lib-core 21.6.15 → 21.6.17
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/package.json
CHANGED
|
@@ -1879,6 +1879,7 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1879
1879
|
headerFixed: boolean;
|
|
1880
1880
|
stickyHeaders: boolean | string | null | undefined;
|
|
1881
1881
|
zebraStyle: boolean | string | null | undefined;
|
|
1882
|
+
preferFit: boolean | string | null | undefined;
|
|
1882
1883
|
secondaryColor: boolean;
|
|
1883
1884
|
tertiaryColor: boolean;
|
|
1884
1885
|
mobileMinColumnWidth: number | string | null | undefined;
|
|
@@ -1914,10 +1915,11 @@ declare class CollapseTableComponent implements OnInit, OnChanges, AfterViewInit
|
|
|
1914
1915
|
private getCollapseTableElement;
|
|
1915
1916
|
private shouldAutoEnableHorizontalScroll;
|
|
1916
1917
|
private getIntrinsicTableWidth;
|
|
1918
|
+
private measureNaturalTableWidth;
|
|
1917
1919
|
private getCollapseTableWrapperElement;
|
|
1918
1920
|
private updateMobileColumnWidthVariable;
|
|
1919
1921
|
static ɵfac: i0.ɵɵFactoryDeclaration<CollapseTableComponent, never>;
|
|
1920
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "stickyHeaders": { "alias": "stickyHeaders"; "required": false; }; "zebraStyle": { "alias": "zebraStyle"; "required": false; }; "secondaryColor": { "alias": "secondaryColor"; "required": false; }; "tertiaryColor": { "alias": "tertiaryColor"; "required": false; }; "mobileMinColumnWidth": { "alias": "mobileMinColumnWidth"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1922
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CollapseTableComponent, "collapse-table", never, { "collapseSize": { "alias": "collapseSize"; "required": false; }; "tableFixed": { "alias": "tableFixed"; "required": false; }; "headerFixed": { "alias": "headerFixed"; "required": false; }; "stickyHeaders": { "alias": "stickyHeaders"; "required": false; }; "zebraStyle": { "alias": "zebraStyle"; "required": false; }; "preferFit": { "alias": "preferFit"; "required": false; }; "secondaryColor": { "alias": "secondaryColor"; "required": false; }; "tertiaryColor": { "alias": "tertiaryColor"; "required": false; }; "mobileMinColumnWidth": { "alias": "mobileMinColumnWidth"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1921
1923
|
}
|
|
1922
1924
|
|
|
1923
1925
|
declare class CollapseTableModule {
|
|
@@ -2251,7 +2253,7 @@ declare class AiTerminalModule {
|
|
|
2251
2253
|
}
|
|
2252
2254
|
|
|
2253
2255
|
declare function rioDatePickerConfigFactory(_account: AccountManagerService, _app: CoreService): {
|
|
2254
|
-
resolveFirstDayOfWeek: () => "
|
|
2256
|
+
resolveFirstDayOfWeek: () => "S" | "M";
|
|
2255
2257
|
resolveTimezone: () => any;
|
|
2256
2258
|
};
|
|
2257
2259
|
declare class CoreServicesModule {
|
|
@@ -2588,7 +2590,7 @@ declare class LoggerComponent extends BaseComponent implements OnInit, OnDestroy
|
|
|
2588
2590
|
ngOnDestroy(): void;
|
|
2589
2591
|
getLogData(): void;
|
|
2590
2592
|
selectType(type: string): void;
|
|
2591
|
-
icon(type: any): "
|
|
2593
|
+
icon(type: any): "success" | "info" | "danger" | "primary" | "secondary";
|
|
2592
2594
|
removeAllLogs(): void;
|
|
2593
2595
|
toDate(value: any, isEnd?: boolean): Date;
|
|
2594
2596
|
createPickerValue(date: Date, secondOverride?: any): {
|
|
@@ -3196,7 +3198,7 @@ interface CanComponentDeactivate {
|
|
|
3196
3198
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
3197
3199
|
}
|
|
3198
3200
|
declare class CanDeactivateGuard {
|
|
3199
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
3201
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
3200
3202
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
3201
3203
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
3202
3204
|
}
|