mdt-client 1.2.0 → 28.20.0
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/tsconfig.tsbuildinfo +325 -23
- package/package.json +1 -1
- package/types/common/list/group/groupTypes.d.ts +26 -0
- package/types/common/list/hierarchy/hierarchyTypes.d.ts +39 -0
- package/types/components/baseFormControls/input/inputOptions.d.ts +26 -0
- package/types/components/button/baseButton/buttonOptions.d.ts +12 -0
- package/types/components/buttonGroup/buttonGroupOptions.d.ts +7 -0
- package/types/components/form/label/labelOptions.d.ts +18 -0
- package/types/components/iconButton/iconButtonOptions.d.ts +7 -0
- package/types/components/resizablePanels/panelTitle/panelTitleOptions.d.ts +11 -0
- package/types/components/resizablePanels/panelToolbar/panelToolbarOptions.d.ts +4 -0
- package/types/components/resizablePanels/resizablePanel/resizablePanelOptions.d.ts +20 -0
- package/types/components/resizablePanels/resizablePanelsOptions.d.ts +22 -0
- package/types/components/toggleablePanels/toggleablePanelsOptions.d.ts +36 -0
- package/types/data/active/ActivationListAdapterTypes.d.ts +6 -0
- package/types/helpers/IUi.d.ts +1 -0
- package/types/helpers/deleteFromArray.d.ts +1 -0
- package/types/helpers/events/EventEmitter.d.ts +7 -0
- package/types/helpers/fireEvent.d.ts +4 -0
- package/types/helpers/pipeline/Pipeline.d.ts +19 -0
- package/types/helpers/redraw.d.ts +16 -0
- package/types/helpers/ui/keyboardUtils/keyboardUtils.d.ts +3 -3
- package/types/helpers/utils/keyStorage/KeyStorage.d.ts +6 -0
- package/types/security/User.d.ts +29 -0
- package/types/services/api/QuerySorting.d.ts +8 -0
- package/types/services/customModules/facades/Form/IFormFacade.d.ts +13 -1
- package/types/services/customModules/facades/List/IListControlFacade.d.ts +4 -3
- package/types/services/customModules/facades/List/IListServiceFacade.d.ts +16 -0
- package/types/services/customModules/facades/components/CodeEditorFacade.d.ts +9 -0
- package/types/services/customModules/facades/services/IJobService.d.ts +13 -0
- package/types/services/customModules/facades/services/IListButtonExtendPipelineService.d.ts +13 -0
- package/types/services/customModules/facades/utils/IUiComponentsFacade.d.ts +5 -1
- package/types/services/customModules/facades/utils/IUiFacade.d.ts +2 -1
- package/types/services/customModules/facades/utils/IUtilsFacade.d.ts +2 -0
- package/types/views/form/controls/monacoEditor/MonacoCodeOptions.schema.d.ts +21 -0
- package/types/views/form/controls/toggleablePanels/editor/toggleablePanelsEditorFacadeOptions.d.ts +15 -0
- package/types/views/form/schema/FormPageOptions.schema.d.ts +17 -0
- package/types/views/list/schema/ListPageOptions.schema.d.ts +16 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ActivationListAdapterOptions } from "mdtScripts/data/active/ActivationListAdapterTypes";
|
|
2
|
+
import { FormPageOptions } from "mdtScripts/views/form/schema/FormPageOptions.schema";
|
|
1
3
|
import { BaseQuery } from "../../../services/api/BaseQuery";
|
|
2
4
|
import { QuerySorting } from "../../../services/api/Query";
|
|
3
5
|
import { IFilter } from "../../../services/IFilter";
|
|
@@ -32,6 +34,10 @@ export interface ListPageOptions {
|
|
|
32
34
|
fkLinks?: boolean;
|
|
33
35
|
/** Разрешить редактирование форм, открытых по нажатию на ссылки на внешние таблицы */
|
|
34
36
|
fkLinksEditable?: boolean;
|
|
37
|
+
/** Установить опции для формы, открывающейся по нажатию на ссылку у FK */
|
|
38
|
+
fkLinksFormOptions?: {
|
|
39
|
+
[k: string]: FormPageOptions;
|
|
40
|
+
};
|
|
35
41
|
/**
|
|
36
42
|
* @title Запретить редактирование o2m полей в списке
|
|
37
43
|
* @TJS-type boolean
|
|
@@ -75,5 +81,15 @@ export interface ListPageOptions {
|
|
|
75
81
|
* inherit - наследует значение родителя
|
|
76
82
|
* */
|
|
77
83
|
whiteSpaceHeader?: WhiteSpaceType;
|
|
84
|
+
/**
|
|
85
|
+
* Управление активностью записей
|
|
86
|
+
*/
|
|
87
|
+
activation?: ActivationListAdapterOptions | false;
|
|
88
|
+
/**
|
|
89
|
+
* @title Настройка заголовка колонки
|
|
90
|
+
* @description default - заголовок поля с переводом, code - код поля без перевода
|
|
91
|
+
* @default default
|
|
92
|
+
*/
|
|
93
|
+
columnTitle?: "default" | "code";
|
|
78
94
|
}
|
|
79
95
|
export {};
|