eservices-core 1.0.366 → 1.0.367

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
@@ -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;