@5minds/node-red-dashboard-2-processcube-dynamic-table 1.1.5 → 1.1.7

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/ui/index.js +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/node-red-dashboard-2-processcube-dynamic-table",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "A ui component for showing dynamic Data with actions in a table",
5
5
  "keywords": [
6
6
  "processcube",
@@ -24,8 +24,8 @@
24
24
  }
25
25
  ],
26
26
  "exports": {
27
- "import": "./resources/dynamic-table.esm.js",
28
- "require": "./resources/dynamic-table.umd.js"
27
+ "import": "./resources/ui-dynamic-table.esm.js",
28
+ "require": "./resources/ui-dynamic-table.umd.js"
29
29
  },
30
30
  "files": [
31
31
  "dist/*",
package/ui/index.js CHANGED
@@ -1,2 +1,10 @@
1
1
  /* Exports of all of the components in this node */
2
- export { default as DynamicTable } from './components/DynamicTable.vue'
2
+ import DynamicTable from './components/DynamicTable.vue'
3
+
4
+ export {
5
+ DynamicTable
6
+ }
7
+
8
+ export default {
9
+ 'ui-dynamic-table': DynamicTable
10
+ }