@xuda.io/xuda-widget-plugin-xuda-drive 1.0.67 → 1.0.71

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 -2
  2. package/runtime.mjs +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-widget-plugin-xuda-drive",
3
- "version": "1.0.67",
3
+ "version": "1.0.71",
4
4
  "description": "Xuda Drive widget plugin",
5
5
  "scripts": {
6
6
  "pub": "npm version patch --force && npm publish --access public"
@@ -16,7 +16,8 @@
16
16
  "filepond-plugin-file-validate-type": "^1.2.8",
17
17
  "filepond-plugin-image-preview": "^4.6.11",
18
18
  "filepond-plugin-media-preview": "^1.0.11",
19
- "jquery-filepond": "^1.0.0"
19
+ "jquery-filepond": "^1.0.0",
20
+ "moment": "^2.30.1"
20
21
  },
21
22
  "author": "xuda.io",
22
23
  "license": "Proprietary software licenses",
package/runtime.mjs CHANGED
@@ -20,6 +20,8 @@ await import(
20
20
  "./pintura/filepond-plugin-image-editor/FilePondPluginImageEditor.js"
21
21
  );
22
22
 
23
+ import moment from "./moment";
24
+
23
25
  export async function upload(fields, e) {
24
26
  return new Promise(async (resolve, reject) => {
25
27
  var overrideAction = "replace";
@@ -496,7 +498,7 @@ export async function viewer(fields, e) {
496
498
 
497
499
  await import("./tailwind.cdn.js");
498
500
  await import("./vue.global.3.5.6.js");
499
- const moment = await import("./moment.min.2.30.1.js");
501
+ // const moment = await import("./moment.min.2.30.1.js");
500
502
  await import("./swiper-bundle.min.11.1.14.js");
501
503
  await import("./vueusee/shared.js");
502
504
  await import("./vueusee/core.js");