mdt-client 1.0.24 → 1.0.25
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.
|
@@ -192,8 +192,8 @@
|
|
|
192
192
|
"affectsGlobalScope": false
|
|
193
193
|
},
|
|
194
194
|
"../types/services/api/query.d.ts": {
|
|
195
|
-
"version": "
|
|
196
|
-
"signature": "
|
|
195
|
+
"version": "3b9b60123628da7037fa0b05606b8a15b0b2960675669e60b0c567ace3e720d8",
|
|
196
|
+
"signature": "3b9b60123628da7037fa0b05606b8a15b0b2960675669e60b0c567ace3e720d8",
|
|
197
197
|
"affectsGlobalScope": false
|
|
198
198
|
},
|
|
199
199
|
"../types/services/api/apirequestoptions.d.ts": {
|
|
@@ -307,8 +307,8 @@
|
|
|
307
307
|
"affectsGlobalScope": false
|
|
308
308
|
},
|
|
309
309
|
"../types/services/custommodules/facades/list/ilistservicefacade.d.ts": {
|
|
310
|
-
"version": "
|
|
311
|
-
"signature": "
|
|
310
|
+
"version": "de66ed2cb32a2096464eb9fb893e1f18019fa70168e41134d1d7ba14bc3c4ed6",
|
|
311
|
+
"signature": "de66ed2cb32a2096464eb9fb893e1f18019fa70168e41134d1d7ba14bc3c4ed6",
|
|
312
312
|
"affectsGlobalScope": false
|
|
313
313
|
},
|
|
314
314
|
"../types/services/custommodules/facades/services/inavigationfacade.d.ts": {
|
|
@@ -412,8 +412,8 @@
|
|
|
412
412
|
"affectsGlobalScope": false
|
|
413
413
|
},
|
|
414
414
|
"../types/services/custommodules/facades/utils/iuicomponentsfacade.d.ts": {
|
|
415
|
-
"version": "
|
|
416
|
-
"signature": "
|
|
415
|
+
"version": "3efd94192eb709d50d571d19e1e2592bce9811153161c4e801462ad1cdcb060f",
|
|
416
|
+
"signature": "3efd94192eb709d50d571d19e1e2592bce9811153161c4e801462ad1cdcb060f",
|
|
417
417
|
"affectsGlobalScope": false
|
|
418
418
|
},
|
|
419
419
|
"../types/helpers/formatoptions.d.ts": {
|
package/package.json
CHANGED
|
@@ -16,4 +16,9 @@ export interface IListServiceFacade {
|
|
|
16
16
|
configureList(tableCode: string, options: IListInitOptions): void;
|
|
17
17
|
/** Создать список */
|
|
18
18
|
create(tableCode: string, options?: any, extOptions?: any): IListControlFacade;
|
|
19
|
+
/** Зарегистрировать расширение списка */
|
|
20
|
+
registerExtender<T>(extender: IListExtenderFacade<T>): void;
|
|
21
|
+
}
|
|
22
|
+
export interface IListExtenderFacade<T> {
|
|
23
|
+
new (list: IListControlFacade, options: any): T;
|
|
19
24
|
}
|
|
@@ -4,6 +4,6 @@ import { IDropdownManagerClass } from "../../../../services/dropdown/IDropDownMa
|
|
|
4
4
|
import { ButtonFacade } from "../Form/IFormFacade";
|
|
5
5
|
export interface IUiComponentsFacade {
|
|
6
6
|
button(button: ButtonFacade, translate?: boolean): _mithril.MithrilVirtualElement;
|
|
7
|
-
icon(code: string, options
|
|
7
|
+
icon(code: string, options?: IconOptions): _mithril.MithrilVirtualElement;
|
|
8
8
|
DropdownManager: IDropdownManagerClass;
|
|
9
9
|
}
|