eservices-core 1.0.525 → 1.0.526
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/index.d.ts
CHANGED
|
@@ -65,12 +65,12 @@ import { useCommunication } from "./classes/Communication";
|
|
|
65
65
|
import useFormRequest from "./hooks/use-form-request";
|
|
66
66
|
import documentsService from "./services/documents-service";
|
|
67
67
|
import billingService from "./services/billing-service";
|
|
68
|
-
import configurationService from "./services/configuration-service";
|
|
68
|
+
import configurationService, { IListSettings } from "./services/configuration-service";
|
|
69
69
|
import { List, useListRead, useListState, useListOrder, useListFilter, useListConfig, useProvideList, useListSelect, IListCell, IListOrder, IListFilter, useListSearch } from "./classes/new/List";
|
|
70
70
|
import { useWizard } from "./hooks/use-wizard";
|
|
71
71
|
import equipmentService from "./services/equipment-service";
|
|
72
72
|
import { SYMBOL_ROW } from "./classes/table/Table";
|
|
73
|
-
export { debounce, billingService, documentsService, configurationService,
|
|
73
|
+
export { IListSettings, debounce, billingService, documentsService, configurationService,
|
|
74
74
|
/**
|
|
75
75
|
* @deprecated
|
|
76
76
|
* */
|
package/dist/index.js
CHANGED
|
@@ -2,9 +2,9 @@ export default class configurationService {
|
|
|
2
2
|
/**
|
|
3
3
|
* @description Загрузка конфигурации из списка
|
|
4
4
|
* */
|
|
5
|
-
static getListSettings(entity: string, mark?: string): Promise<
|
|
5
|
+
static getListSettings(entity: string, mark?: string): Promise<IListSettings>;
|
|
6
6
|
}
|
|
7
|
-
interface
|
|
7
|
+
export interface IListSettings {
|
|
8
8
|
label?: string;
|
|
9
9
|
entity: string;
|
|
10
10
|
config?: any[];
|
|
@@ -13,4 +13,3 @@ interface IListSetting {
|
|
|
13
13
|
mark?: string;
|
|
14
14
|
prefilters?: Record<string, any>;
|
|
15
15
|
}
|
|
16
|
-
export {};
|