iszolea-ui 1.2.65 → 1.2.67
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/dist/js/index.development.js +144 -21
- package/dist/js/index.js +17 -17
- package/dist/types/Helpers/Index.d.ts +1 -0
- package/dist/types/Reports/Pages/CDM/ControlDisplay.d.ts +2 -0
- package/dist/types/Reports/Pages/CDM/Index.d.ts +1 -0
- package/dist/types/Reports/Pages/Grid/Index.d.ts +2 -0
- package/dist/types/Widgets/Grid/DefaultGridBase.d.ts +1 -0
- package/dist/types/Widgets/Grid/SummaryLoader.d.ts +1 -0
- package/package.json +4 -4
|
@@ -3,3 +3,4 @@ import { INavigationMenuItemModel } from '../Header/INavigationMenuItemModel';
|
|
|
3
3
|
export declare function getUrlByMenuItemData(itemData: INavigationMenuItemModel | DeepReadonly<INavigationMenuItemModel>): string;
|
|
4
4
|
export { WindowResizeListener, bootstrapLayoutBreakpoints } from './WindowResizeListener';
|
|
5
5
|
export { ILayoutBreakpoint, LayoutBreakpointChangedEvent } from './WindowResizeListener';
|
|
6
|
+
export declare function enableAsyncSummaryLoader(grid: DevExpress.ui.dxDataGrid, asyncSummaryLoadUrl?: string | null): void;
|
|
@@ -31,6 +31,7 @@ export interface IControlDisplayOptions {
|
|
|
31
31
|
disableGlobalSearch: boolean;
|
|
32
32
|
allowDataEditing: boolean;
|
|
33
33
|
getReferencedDataUrl: string;
|
|
34
|
+
asyncSummaryLoad?: boolean | string;
|
|
34
35
|
}
|
|
35
36
|
export declare class ControlDisplay {
|
|
36
37
|
readonly $container: JQuery;
|
|
@@ -64,6 +65,7 @@ export declare class ControlDisplay {
|
|
|
64
65
|
private activeDocumentCellInfo;
|
|
65
66
|
private readonly loadPanel;
|
|
66
67
|
private readonly getReferencedDataUrl;
|
|
68
|
+
private readonly asyncSummaryLoad;
|
|
67
69
|
constructor(options: IControlDisplayOptions);
|
|
68
70
|
private readonly tryParseJson;
|
|
69
71
|
private showLoader;
|
|
@@ -10,6 +10,7 @@ export interface ICDMReportPageOptions {
|
|
|
10
10
|
allowEditing: boolean;
|
|
11
11
|
cdmReportControllerUrl: string;
|
|
12
12
|
isDataReadonly?: boolean;
|
|
13
|
+
asyncSummaryLoad?: boolean | string;
|
|
13
14
|
}
|
|
14
15
|
export default class CDMReportPage implements IReportComponent {
|
|
15
16
|
private readonly SWITCH_TO_DESIGNER_TEXT;
|
|
@@ -7,6 +7,7 @@ export interface IGridOptions {
|
|
|
7
7
|
addRefreshButton: boolean;
|
|
8
8
|
gridReportControllerUrl: string;
|
|
9
9
|
showHeader?: boolean;
|
|
10
|
+
asyncSummaryLoad?: boolean | string;
|
|
10
11
|
}
|
|
11
12
|
export default class Grid implements IReportComponent {
|
|
12
13
|
private readonly gridPositionMarker;
|
|
@@ -31,6 +32,7 @@ export default class Grid implements IReportComponent {
|
|
|
31
32
|
private gridRepaintQueued;
|
|
32
33
|
private columnNamesUpdated;
|
|
33
34
|
private refreshButton;
|
|
35
|
+
private readonly asyncSummaryLoad;
|
|
34
36
|
constructor(options: IGridOptions);
|
|
35
37
|
init(): void;
|
|
36
38
|
refresh(): void;
|
|
@@ -12,6 +12,7 @@ interface IGridSettingsBase<T> {
|
|
|
12
12
|
toolbarAccentButtonName?: string;
|
|
13
13
|
toolbarItems?: any[];
|
|
14
14
|
buttonsSize?: 'sm' | 'md';
|
|
15
|
+
asyncSummaryLoad?: boolean | string;
|
|
15
16
|
}
|
|
16
17
|
export interface IDataGridSettings extends IGridSettingsBase<DevExpress.ui.dxDataGridOptions> {
|
|
17
18
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function configureSummaryLoader(grid: DevExpress.ui.dxDataGrid, asyncSummaryLoad: boolean | string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iszolea-ui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.67",
|
|
4
4
|
"description": "Common scripts and styles for Iszolea projects",
|
|
5
5
|
"main": "dist/js/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"copyfiles": "2.4.1",
|
|
18
18
|
"del": "5.1.0",
|
|
19
19
|
"del-cli": "^4.0.1",
|
|
20
|
-
"devexpress-dashboard": "23.2.
|
|
21
|
-
"devexpress-richedit": "23.2.
|
|
22
|
-
"devextreme": "23.2.
|
|
20
|
+
"devexpress-dashboard": "23.2.6",
|
|
21
|
+
"devexpress-richedit": "23.2.6",
|
|
22
|
+
"devextreme": "23.2.6",
|
|
23
23
|
"devextreme-aspnet-data": "2.5.1",
|
|
24
24
|
"esbuild": "0.14.21",
|
|
25
25
|
"esbuild-node-externals": "1.4.1",
|