eservices-core 1.0.365 → 1.0.368
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/classes/List.d.ts +1 -1
- package/dist/classes/Table.d.ts +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +961 -815
- package/dist/widgets/cards/widget-card.vue.d.ts +14 -0
- package/dist/widgets/inputs/widget-input-check.vue.d.ts +16 -0
- package/dist/widgets/interface/interface-navigation-cell.vue.d.ts +30 -0
- package/dist/widgets/interface/interface-navigation-row.vue.d.ts +8 -0
- package/dist/widgets/tables/WidgetCell.vue.d.ts +3 -1
- package/dist/widgets/tables/table-with-form/widget-table-row.vue.d.ts +3 -1
- package/package.json +1 -1
package/dist/classes/List.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export default class List extends EventEmitter {
|
|
|
35
35
|
* @param {ListCell[]} config - конфигурация списка
|
|
36
36
|
* @param {ListRowValues} rowValues - значения для одной строки
|
|
37
37
|
* */
|
|
38
|
-
static getRow(config: ListCell[], rowValues: ListRowValues, list?: List): VNode;
|
|
38
|
+
static getRow(config: ListCell[], rowValues: ListRowValues, list?: List): VNode | VNode[];
|
|
39
39
|
/**
|
|
40
40
|
* @return { {name: string, value: any} } CellInfo
|
|
41
41
|
* */
|
package/dist/classes/Table.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export default class Table extends List {
|
|
|
54
54
|
modifierDataCreate: any;
|
|
55
55
|
constructor(props: TableParams);
|
|
56
56
|
static getCell(cellConfig: ListCell, rowValues: ListRowValues, cellName: string | null, cellValue: Values, table: Table): VNode[];
|
|
57
|
-
static getRow(config: ListCell[], rowValues: ListRowValues, table: Table): VNode;
|
|
57
|
+
static getRow(config: ListCell[], rowValues: ListRowValues, table: Table): VNode | VNode[];
|
|
58
58
|
_getCell(values: ValuesTableCellInterface): any;
|
|
59
59
|
set componentForm(component: any);
|
|
60
60
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import Table from "./classes/Table";
|
|
|
6
6
|
import "./../styles/index.css";
|
|
7
7
|
import StylesInterface from "./styles/types";
|
|
8
8
|
import { Values } from "./types";
|
|
9
|
+
import Icon from "./widgets/icons/Icon.vue";
|
|
9
10
|
import WidgetBreadcrumbs from "./widgets/breadcrumbs/widget-breadcrumbs.vue";
|
|
10
11
|
import WidgetCommunication from "./widgets/communication/widget-communication.vue";
|
|
11
12
|
import WidgetList from "./widgets/tables/WidgetList.vue";
|
|
@@ -20,6 +21,7 @@ import WidgetImage from "./widgets/image/widget-image.vue";
|
|
|
20
21
|
import WidgetButton from "./widgets/buttons/WidgetButton.vue";
|
|
21
22
|
import WidgetNotFound from "./widgets/notFound/WidgetNotFound.vue";
|
|
22
23
|
import InterfaceContainer from "./widgets/interface/interface-container.vue";
|
|
24
|
+
import WidgetCard from "./widgets/cards/widget-card.vue";
|
|
23
25
|
import authService from "./services/AuthService";
|
|
24
26
|
import dataService from "./services/data-service";
|
|
25
27
|
import { CommunicationService as communicationService } from "./services/communication-service";
|
|
@@ -85,7 +87,7 @@ clickOutside,
|
|
|
85
87
|
requestHandler };
|
|
86
88
|
export { ApplicationManager, NotificationSystem, Table, CoreError, List, ProcessWrap, ListCell };
|
|
87
89
|
export { fileService, processWizardService, viewService, authService, dataService, communicationService, metadataService };
|
|
88
|
-
export { WidgetNotificationSystem, WidgetForm, ModalValidation, WidgetTable, WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection, WidgetImage, WidgetButton, WidgetNotFound, InterfaceContainer as WidgetInterfaceContainer };
|
|
90
|
+
export { WidgetNotificationSystem, WidgetForm, ModalValidation, WidgetTable, WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection, WidgetImage, WidgetButton, WidgetNotFound, InterfaceContainer as WidgetInterfaceContainer, Icon as WidgetIcon, WidgetCard };
|
|
89
91
|
declare const utils: {
|
|
90
92
|
clickOutside: typeof _utils.clickOutside;
|
|
91
93
|
requestHandler: typeof _utils.requestHandler;
|