eservices-core 1.0.361 → 1.0.364

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
@@ -20,6 +20,7 @@ import ModalValidation from "./widgets/modals/modal-validation/modal-validation.
20
20
  import WidgetNotificationSystem from "./widgets/errorSystem/default/WidgetNotificationSystem.vue";
21
21
  import WidgetImage from "./widgets/image/widget-image.vue";
22
22
  import WidgetButton from "./widgets/buttons/WidgetButton.vue";
23
+ import WidgetNotFound from "./widgets/notFound/WidgetNotFound.vue";
23
24
  import authService from "./services/AuthService";
24
25
  import dataService from "./services/data-service";
25
26
  import { CommunicationService as communicationService } from "./services/communication-service";
@@ -67,7 +68,7 @@ export interface InterfaceUserPopupRecordRow {
67
68
  export interface LabelForm {
68
69
  title: string;
69
70
  icon?: string;
70
- type?: 'error' | 'warning' | 'correct';
71
+ type?: 'error' | 'warning' | 'correct' | 'inactive';
71
72
  }
72
73
  export interface CodeEntity {
73
74
  code: string;
@@ -105,9 +106,9 @@ export { ApplicationManager, NotificationSystem,
105
106
  /**
106
107
  * Some classes, test: 22.03.2022
107
108
  * */
108
- Table, Form, CoreError, List, ProcessWrap, ListCell };
109
+ Table, CoreError, List, ProcessWrap, ListCell };
109
110
  export { fileService, processWizardService, viewService, authService, dataService, communicationService, metadataService };
110
- export { WidgetNotificationSystem, WidgetForm, ModalValidation, WidgetTable, WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection, WidgetImage, WidgetButton };
111
+ export { WidgetNotificationSystem, WidgetForm, ModalValidation, WidgetTable, WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection, WidgetImage, WidgetButton, WidgetNotFound };
111
112
  declare const utils: {
112
113
  clickOutside: typeof _utils.clickOutside;
113
114
  requestHandler: typeof _utils.requestHandler;