eservices-core 1.0.315 → 1.0.320
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 +9 -3
- package/dist/index.js +678 -628
- package/dist/services/data-service.d.ts +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/values-to-upper-case.d.ts +5 -0
- package/dist/widgets/interface/interface-container.vue.d.ts +17 -14
- package/dist/widgets/section/widget-section.vue.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _utils from "./utils";
|
|
2
2
|
import * as mixins from "./mixins";
|
|
3
3
|
import config from "./config";
|
|
4
4
|
import * as types from "./types";
|
|
@@ -87,7 +87,13 @@ export { processWizardService, viewService, authService, dataService, communicat
|
|
|
87
87
|
import WidgetBreadcrumbs from "./widgets/breadcrumbs/widget-breadcrumbs.vue";
|
|
88
88
|
import WidgetCommunication from "./widgets/communication/widget-communication.vue";
|
|
89
89
|
import WidgetList from "./widgets/tables/WidgetList.vue";
|
|
90
|
-
|
|
90
|
+
import WidgetSection from "./widgets/section/widget-section.vue";
|
|
91
|
+
export { WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection };
|
|
92
|
+
import valuesToUpperCase from "./utils/values-to-upper-case";
|
|
93
|
+
declare const utils: {
|
|
94
|
+
valuesToUpperCase: typeof valuesToUpperCase;
|
|
95
|
+
};
|
|
96
|
+
export { utils };
|
|
91
97
|
declare const _default: {
|
|
92
98
|
services: {
|
|
93
99
|
authService: typeof authService;
|
|
@@ -148,7 +154,7 @@ declare const _default: {
|
|
|
148
154
|
usage: {
|
|
149
155
|
inputs: typeof import("./useMethods/useInput");
|
|
150
156
|
};
|
|
151
|
-
utils: typeof
|
|
157
|
+
utils: typeof _utils;
|
|
152
158
|
classes: {
|
|
153
159
|
StepWorker: typeof import("./classes/StepWorker").default;
|
|
154
160
|
Errors: typeof CoreError;
|