eservices-core 1.0.336 → 1.0.337
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 +2 -1
- package/dist/index.js +765 -664
- package/dist/widgets/communication/widget-communication.vue.d.ts +4 -12
- package/dist/widgets/modals/modal-validation/modal-validation-item.vue.d.ts +46 -0
- package/dist/widgets/modals/modal-validation/modal-validation.vue.d.ts +14 -0
- package/dist/widgets/modals/modal-wrap.vue.d.ts +14 -0
- package/package.json +9 -12
package/dist/index.d.ts
CHANGED
|
@@ -92,7 +92,8 @@ import WidgetSection from "./widgets/section/widget-section.vue";
|
|
|
92
92
|
import WidgetTableController from "./widgets/tables/table-with-form/widget-table-controller.vue";
|
|
93
93
|
import WidgetSpinner from "./widgets/spinner/WidgetSpinner.vue";
|
|
94
94
|
import WidgetTable from './widgets/tables/table-with-form/widget-table.vue';
|
|
95
|
-
|
|
95
|
+
import ModalValidation from "./widgets/modals/modal-validation/modal-validation.vue";
|
|
96
|
+
export { ModalValidation, WidgetTable, WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection };
|
|
96
97
|
import valuesToUpperCase from "./utils/values-to-upper-case";
|
|
97
98
|
declare const utils: {
|
|
98
99
|
valuesToUpperCase: typeof valuesToUpperCase;
|