eservices-core 1.0.326 → 1.0.327

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
@@ -91,7 +91,8 @@ import WidgetList from "./widgets/tables/WidgetList.vue";
91
91
  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
- export { WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection };
94
+ import WidgetTable from './widgets/tables/table-with-form/widget-table-form.vue';
95
+ export { WidgetTable, WidgetTableController, WidgetSpinner, WidgetBreadcrumbs, WidgetCommunication, WidgetList, WidgetSection };
95
96
  import valuesToUpperCase from "./utils/values-to-upper-case";
96
97
  declare const utils: {
97
98
  valuesToUpperCase: typeof valuesToUpperCase;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.326
2
+ * eservices-core v1.0.327
3
3
  * (c) 2022 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -3989,10 +3989,10 @@ var script$l = /*#__PURE__*/ vue.defineComponent({
3989
3989
  return (_ctx, _cache) => {
3990
3990
  return (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$l, [
3991
3991
  (__props.read)
3992
- ? (vue.openBlock(), vue.createBlock(script$m, vue.normalizeProps(vue.mergeProps({ key: 0 }, actionsConfig[0])), null, 16 /* FULL_PROPS */))
3992
+ ? (vue.openBlock(), vue.createBlock(script$m, vue.mergeProps({ key: 0 }, actionsConfig[0], { action: __props.read }), null, 16 /* FULL_PROPS */, ["action"]))
3993
3993
  : vue.createCommentVNode("v-if", true),
3994
3994
  (__props.create)
3995
- ? (vue.openBlock(), vue.createBlock(script$m, vue.normalizeProps(vue.mergeProps({ key: 1 }, actionsConfig[1])), null, 16 /* FULL_PROPS */))
3995
+ ? (vue.openBlock(), vue.createBlock(script$m, vue.mergeProps({ key: 1 }, actionsConfig[1], { action: __props.create }), null, 16 /* FULL_PROPS */, ["action"]))
3996
3996
  : vue.createCommentVNode("v-if", true)
3997
3997
  ]));
3998
3998
  };
@@ -5712,6 +5712,7 @@ exports.WidgetCommunication = script$1;
5712
5712
  exports.WidgetList = script$s;
5713
5713
  exports.WidgetSection = script;
5714
5714
  exports.WidgetSpinner = script$E;
5715
+ exports.WidgetTable = script$q;
5715
5716
  exports.WidgetTableController = script$l;
5716
5717
  exports.authService = authService;
5717
5718
  exports.clickOutside = clickOutside;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.326",
3
+ "version": "1.0.327",
4
4
  "description": "----",
5
5
  "author": "",
6
6
  "scripts": {
@@ -8,7 +8,6 @@
8
8
  "build": "vue-cli-service build",
9
9
  "test:unit": "vue-cli-service test:unit",
10
10
  "full": "npm run rollup && npm publish",
11
- "publish": "npm publish",
12
11
  "rollup": "rollup -c ./rollup.config.js --environment BABEL_ENV:production",
13
12
  "test": "echo \"Error: no test specified\" && exit 1"
14
13
  },