@jspreadsheet/vue 9.4.5 → 9.4.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/dist/index.js +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -24,7 +24,12 @@ export const Spreadsheet = {
24
24
  }
25
25
  return acc;
26
26
  }, []);
27
+ } else {
28
+ if (attrs.worksheets) {
29
+ options.worksheets = attrs.worksheets;
30
+ }
27
31
  }
32
+
28
33
  if (attrs.license) {
29
34
  jspreadsheet.setLicense(attrs.license);
30
35
  }
@@ -45,7 +50,7 @@ export const Spreadsheet = {
45
50
  template: `<div ref="spreadsheet" />`
46
51
  };
47
52
 
48
- export default {
53
+ export {
49
54
  Spreadsheet,
50
55
  Worksheet,
51
56
  jspreadsheet
package/package.json CHANGED
@@ -24,5 +24,5 @@
24
24
  },
25
25
  "main": "dist/index.js",
26
26
  "types": "dist/index.d.ts",
27
- "version": "9.4.5"
27
+ "version": "9.4.7"
28
28
  }