@zscreate/form-component 1.0.12 → 1.0.13

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.
@@ -2851,7 +2851,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core
2851
2851
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
2852
2852
 
2853
2853
  "use strict";
2854
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.push.js */ \"./node_modules/_core-js@3.27.1@core-js/modules/es.array.push.js\");\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _mixins_widgetMixins__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../mixins/widgetMixins */ \"./src/form/mixins/widgetMixins.js\");\n/* harmony import */ var _util_util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../util/util */ \"./src/form/util/util.js\");\n\n\n //获取文件后缀名\n\nfunction getBase64(file) {\n return new Promise((resolve, reject) => {\n const reader = new FileReader();\n reader.readAsDataURL(file);\n reader.onload = () => resolve(reader.result);\n reader.onerror = error => reject(error);\n });\n}\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: \"FileUpload\",\n mixins: [_mixins_widgetMixins__WEBPACK_IMPORTED_MODULE_1__[\"default\"]],\n props: {\n widget: {\n type: Object,\n default: () => {\n return {};\n }\n }\n },\n data() {\n return {\n dataModel: [],\n previewVisible: false,\n previewImage: \"\",\n previewType: \"picture\",\n previewPdfSrc: \"\",\n headers: {},\n fileList: [],\n imgUrl: window._CONFIG.imgDomainURL || window._CONFIG.imgUrl\n };\n },\n components: {},\n created() {\n debugger;\n this.showImage();\n },\n methods: {\n //回显\n showImage() {\n this.fileList = this.dataModel.map(item => {\n let tempItem = {\n uid: '-1',\n ...item,\n status: 'done'\n };\n tempItem.url = this.imgUrl + tempItem.url;\n return tempItem;\n });\n },\n previewFile(file) {\n console.log(file);\n },\n getBack(file) {},\n beforeUpload(file, fileList) {\n //上传时候校验\n //文件类型校验\n if (!this.widget.ext.includes((0,_util_util__WEBPACK_IMPORTED_MODULE_2__.getFileExt)(file.name))) {\n this.$message.error(\"不允许上传的文件类型!\");\n return false;\n }\n //文件大小校验\n if (file.size > this.widget.options.fileSize * 1024) {\n this.$message.error(\"文件超出\" + this.widget.options.fileSize + \"kb!\");\n return false;\n }\n },\n filterList(id) {\n this.fileList = this.fileList.filter(item => {\n return item.uid === id;\n });\n },\n resetDataModel() {\n this.dataModel = \"\";\n },\n handleCancel() {\n this.previewVisible = false;\n },\n async handlePreview(file) {\n let ext = (0,_util_util__WEBPACK_IMPORTED_MODULE_2__.getFileExt)(file.name);\n // 判断当前为图片或者pdf就让其预览\n if (!file.url) return;\n if (['png', 'jpg', 'jpeg', 'gif', 'pdf'].includes(ext)) {\n if (ext === 'pdf') {\n this.previewType = \"pdf\";\n this.previewPdfSrc = file.url + '?download=0';\n } else {\n this.previewType = \"picture\";\n this.previewImage = file.url;\n }\n this.previewVisible = true;\n return;\n }\n // 非图片或pdf 文件 直接下载\n const a = document.createElement(\"a\");\n a.href = file.url;\n a.download = file.name;\n a.click();\n },\n handleChange({\n file,\n fileList\n }) {\n //校验 从 本地fileList移除\n if (!this.widget.ext.includes((0,_util_util__WEBPACK_IMPORTED_MODULE_2__.getFileExt)(file.name))) {\n // this.filterList(fileList, file.uid);\n return false;\n }\n if (file.size > this.widget.options.fileSize * 1024) {\n // this.filterList(fileList, file.uid);\n return false;\n }\n this.fileList = fileList;\n if (file.status == \"done\") {\n let response = file.response;\n this.dataModel.push({\n key: file.uid,\n uid: file.uid,\n url: response.message,\n status: \"done\",\n name: file.name\n });\n } else if (file.status == \"removed\") {\n this.dataModel = this.dataModel.filter(item => {\n return item.uid !== file.uid;\n });\n }\n }\n },\n watch: {\n dataModel(val) {\n this.pulishMsg(val);\n // console.log(this.widget.options.canView = false)\n this.$emit(\"updateModels\", val);\n }\n }\n});\n\n//# sourceURL=webpack://form-component/./src/form/modules/components/FileUpload/component.vue?./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use%5B0%5D!./node_modules/_vue-loader@15.10.1@vue-loader/lib/index.js??vue-loader-options");
2854
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.push.js */ \"./node_modules/_core-js@3.27.1@core-js/modules/es.array.push.js\");\n/* harmony import */ var core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_push_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _mixins_widgetMixins__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../mixins/widgetMixins */ \"./src/form/mixins/widgetMixins.js\");\n/* harmony import */ var _util_util__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../util/util */ \"./src/form/util/util.js\");\n\n\n //获取文件后缀名\n\nfunction getBase64(file) {\n return new Promise((resolve, reject) => {\n const reader = new FileReader();\n reader.readAsDataURL(file);\n reader.onload = () => resolve(reader.result);\n reader.onerror = error => reject(error);\n });\n}\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: \"FileUpload\",\n mixins: [_mixins_widgetMixins__WEBPACK_IMPORTED_MODULE_1__[\"default\"]],\n props: {\n widget: {\n type: Object,\n default: () => {\n return {};\n }\n }\n },\n data() {\n return {\n dataModel: [],\n previewVisible: false,\n previewImage: \"\",\n previewType: \"picture\",\n previewPdfSrc: \"\",\n headers: {},\n fileList: [],\n imgUrl: window._CONFIG.imgDomainURL || window._CONFIG.imgUrl\n };\n },\n components: {},\n created() {\n this.showImage();\n },\n methods: {\n //回显\n showImage() {\n this.fileList = this.dataModel.map(item => {\n let tempItem = {\n uid: '-1',\n ...item,\n status: 'done'\n };\n tempItem.url = this.imgUrl + tempItem.url;\n return tempItem;\n });\n },\n previewFile(file) {\n console.log(file);\n },\n getBack(file) {},\n beforeUpload(file, fileList) {\n //上传时候校验\n //文件类型校验\n if (!this.widget.ext.includes((0,_util_util__WEBPACK_IMPORTED_MODULE_2__.getFileExt)(file.name))) {\n this.$message.error(\"不允许上传的文件类型!\");\n return false;\n }\n //文件大小校验\n if (file.size > this.widget.options.fileSize * 1024) {\n this.$message.error(\"文件超出\" + this.widget.options.fileSize + \"kb!\");\n return false;\n }\n },\n filterList(id) {\n this.fileList = this.fileList.filter(item => {\n return item.uid === id;\n });\n },\n resetDataModel() {\n this.dataModel = \"\";\n },\n handleCancel() {\n this.previewVisible = false;\n },\n async handlePreview(file) {\n let ext = (0,_util_util__WEBPACK_IMPORTED_MODULE_2__.getFileExt)(file.name);\n // 判断当前为图片或者pdf就让其预览\n if (!file.url) return;\n if (['png', 'jpg', 'jpeg', 'gif', 'pdf'].includes(ext)) {\n if (ext === 'pdf') {\n this.previewType = \"pdf\";\n this.previewPdfSrc = file.url + '?download=0';\n } else {\n this.previewType = \"picture\";\n this.previewImage = file.url;\n }\n this.previewVisible = true;\n return;\n }\n // 非图片或pdf 文件 直接下载\n const a = document.createElement(\"a\");\n a.href = file.url;\n a.download = file.name;\n a.click();\n },\n handleChange({\n file,\n fileList\n }) {\n //校验 从 本地fileList移除\n if (!this.widget.ext.includes((0,_util_util__WEBPACK_IMPORTED_MODULE_2__.getFileExt)(file.name))) {\n // this.filterList(fileList, file.uid);\n return false;\n }\n if (file.size > this.widget.options.fileSize * 1024) {\n // this.filterList(fileList, file.uid);\n return false;\n }\n this.fileList = fileList;\n if (file.status == \"done\") {\n let response = file.response;\n this.dataModel.push({\n key: file.uid,\n uid: file.uid,\n url: response.message,\n status: \"done\",\n name: file.name\n });\n } else if (file.status == \"removed\") {\n this.dataModel = this.dataModel.filter(item => {\n return item.uid !== file.uid;\n });\n }\n }\n },\n watch: {\n dataModel(val) {\n this.pulishMsg(val);\n // console.log(this.widget.options.canView = false)\n this.$emit(\"updateModels\", val);\n }\n }\n});\n\n//# sourceURL=webpack://form-component/./src/form/modules/components/FileUpload/component.vue?./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use%5B0%5D!./node_modules/_vue-loader@15.10.1@vue-loader/lib/index.js??vue-loader-options");
2855
2855
 
2856
2856
  /***/ }),
2857
2857
 
@@ -4402,7 +4402,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
4402
4402
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
4403
4403
 
4404
4404
  "use strict";
4405
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"render\": function() { return /* binding */ render; },\n/* harmony export */ \"staticRenderFns\": function() { return /* binding */ staticRenderFns; }\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c;\n return _vm.widget ? _c(\"div\", {\n staticClass: \"custom_form_item\",\n style: {\n height: _vm.widget.options.height + \"px\"\n }\n }, [_c(\"a-form-model-item\", {\n ref: _vm.widget.model,\n attrs: {\n colon: false,\n \"label-col\": _vm.labelCol,\n wrapperCol: _vm.wrapperCol,\n prop: _vm.tableKey ? `${_vm.tableKey}.${_vm.tableIndex}.${_vm.widget.model}` : _vm.widget.model,\n rules: _vm.tableKey ? _vm.rules[_vm.tableKey][_vm.widget.model] : _vm.rules[_vm.widget.model]\n }\n }, [_c(\"a-upload\", {\n staticClass: \"ssss\",\n style: {\n width: _vm.widget.options.size.width + \"px\",\n height: _vm.widget.options.size.height + \"px\"\n },\n attrs: {\n action: _vm.widget.options.domain + _vm.widget.options.action,\n \"list-type\": \"picture-card\",\n \"file-list\": _vm.fileList,\n headers: _vm.headers,\n disabled: _vm.widget.options.disabled,\n beforeUpload: _vm.beforeUpload\n },\n on: {\n preview: _vm.handlePreview,\n change: _vm.handleChange\n }\n }, [_vm.fileList.length < parseInt(_vm.widget.options.length) && !_vm.widget.options.disabled ? _c(\"div\", [_c(\"a-icon\", {\n attrs: {\n type: \"plus\"\n }\n }), _c(\"div\", {\n staticClass: \"ant-upload-text\"\n }, [_vm._v(_vm._s(_vm.widget.options.placeholder))])], 1) : _vm._e()]), _c(\"a-modal\", {\n attrs: {\n zIndex: 100000,\n visible: _vm.previewVisible,\n footer: null\n },\n on: {\n cancel: _vm.handleCancel\n }\n }, [_c(\"img\", {\n staticStyle: {\n width: \"100%\"\n },\n attrs: {\n alt: \"example\",\n src: _vm.previewImage\n }\n })]), _vm.widget.options.labelWidth !== 0 ? _c(\"div\", {\n class: _vm.config.align,\n style: {\n color: this.config.color\n },\n attrs: {\n slot: \"label\"\n },\n slot: \"label\"\n }, [_vm._v(\" \" + _vm._s(_vm.widget.name) + \" \")]) : _vm._e()], 1)], 1) : _vm._e();\n};\nvar staticRenderFns = [];\nrender._withStripped = true;\n\n\n//# sourceURL=webpack://form-component/./src/form/modules/components/ImgUpload/component.vue?./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use%5B0%5D!./node_modules/_vue-loader@15.10.1@vue-loader/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B3%5D!./node_modules/_vue-loader@15.10.1@vue-loader/lib/index.js??vue-loader-options");
4405
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"render\": function() { return /* binding */ render; },\n/* harmony export */ \"staticRenderFns\": function() { return /* binding */ staticRenderFns; }\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c;\n return _vm.widget ? _c(\"div\", {\n staticClass: \"custom_form_item\",\n style: {\n height: _vm.widget.options.height + \"px\"\n }\n }, [_c(\"a-form-model-item\", {\n ref: _vm.widget.model,\n attrs: {\n colon: false,\n \"label-col\": _vm.labelCol,\n wrapperCol: _vm.wrapperCol,\n prop: _vm.tableKey ? `${_vm.tableKey}.${_vm.tableIndex}.${_vm.widget.model}` : _vm.widget.model,\n rules: _vm.tableKey ? _vm.rules[_vm.tableKey][_vm.widget.model] : _vm.rules[_vm.widget.model]\n }\n }, [_c(\"a-upload\", {\n staticClass: \"ssss\",\n attrs: {\n action: _vm.widget.options.domain + _vm.widget.options.action,\n \"list-type\": \"picture-card\",\n \"file-list\": _vm.fileList,\n headers: _vm.headers,\n disabled: _vm.widget.options.disabled,\n beforeUpload: _vm.beforeUpload\n },\n on: {\n preview: _vm.handlePreview,\n change: _vm.handleChange\n }\n }, [_vm.fileList.length < parseInt(_vm.widget.options.length) && !_vm.widget.options.disabled ? _c(\"div\", [_c(\"a-icon\", {\n attrs: {\n type: \"plus\"\n }\n }), _c(\"div\", {\n staticClass: \"ant-upload-text\"\n }, [_vm._v(_vm._s(_vm.widget.options.placeholder))])], 1) : _vm._e()]), _c(\"a-modal\", {\n attrs: {\n zIndex: 100000,\n visible: _vm.previewVisible,\n footer: null\n },\n on: {\n cancel: _vm.handleCancel\n }\n }, [_c(\"img\", {\n staticStyle: {\n width: \"100%\"\n },\n attrs: {\n alt: \"example\",\n src: _vm.previewImage\n }\n })]), _vm.widget.options.labelWidth !== 0 ? _c(\"div\", {\n class: _vm.config.align,\n style: {\n color: this.config.color\n },\n attrs: {\n slot: \"label\"\n },\n slot: \"label\"\n }, [_vm._v(\" \" + _vm._s(_vm.widget.name) + \" \")]) : _vm._e()], 1)], 1) : _vm._e();\n};\nvar staticRenderFns = [];\nrender._withStripped = true;\n\n\n//# sourceURL=webpack://form-component/./src/form/modules/components/ImgUpload/component.vue?./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use%5B0%5D!./node_modules/_vue-loader@15.10.1@vue-loader/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B3%5D!./node_modules/_vue-loader@15.10.1@vue-loader/lib/index.js??vue-loader-options");
4406
4406
 
4407
4407
  /***/ }),
4408
4408
 
@@ -5688,7 +5688,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
5688
5688
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
5689
5689
 
5690
5690
  "use strict";
5691
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"vue\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _form_modules_layout_layoutForPaper_vue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/form/modules/layout/layoutForPaper.vue */ \"./src/form/modules/layout/layoutForPaper.vue\");\n/* harmony import */ var _form_modules_layout_layoutItem__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/form/modules/layout/layoutItem */ \"./src/form/modules/layout/layoutItem.vue\");\n/* harmony import */ var _form_modules_Container__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/form/modules/Container */ \"./src/form/modules/Container.vue\");\n/* harmony import */ var _form_assets_css_formdesign_less__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/form/assets/css/formdesign.less */ \"./src/form/assets/css/formdesign.less\");\n/* harmony import */ var _form_assets_css_formdesign_less__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_form_assets_css_formdesign_less__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _form_modules_components__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @/form/modules/components */ \"./src/form/modules/components/index.js\");\n\n\n\n\n\n\nconst components = [_form_modules_layout_layoutForPaper_vue__WEBPACK_IMPORTED_MODULE_1__[\"default\"], _form_modules_Container__WEBPACK_IMPORTED_MODULE_3__[\"default\"], _form_modules_layout_layoutItem__WEBPACK_IMPORTED_MODULE_2__[\"default\"]];\nconst install = function (Vue, opts = {}) {\n Vue.prototype = Object.assign(Vue.prototype, opts);\n (vue__WEBPACK_IMPORTED_MODULE_0___default().prototype) = Object.assign((vue__WEBPACK_IMPORTED_MODULE_0___default().prototype), opts);\n components.forEach(component => {\n Vue.component(component.name, component);\n });\n};\nif (typeof window !== 'undefined' && window.Vue) {\n install(window.Vue);\n}\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n install,\n ..._form_modules_components__WEBPACK_IMPORTED_MODULE_5__[\"default\"].componentList\n});\n\n//# sourceURL=webpack://form-component/./src/main.js?");
5691
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"vue\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _form_modules_layout_layoutForPaper_vue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/form/modules/layout/layoutForPaper.vue */ \"./src/form/modules/layout/layoutForPaper.vue\");\n/* harmony import */ var _form_modules_layout_layoutItem__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/form/modules/layout/layoutItem */ \"./src/form/modules/layout/layoutItem.vue\");\n/* harmony import */ var _form_modules_Container__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/form/modules/Container */ \"./src/form/modules/Container.vue\");\n/* harmony import */ var _form_assets_css_formdesign_less__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/form/assets/css/formdesign.less */ \"./src/form/assets/css/formdesign.less\");\n/* harmony import */ var _form_assets_css_formdesign_less__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_form_assets_css_formdesign_less__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _form_modules_components__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @/form/modules/components */ \"./src/form/modules/components/index.js\");\n\nconst version = (__webpack_require__(/*! ../package.json */ \"./package.json\").version);\nconsole.log(\"version:\", version);\n\n\n\n\n\nconst components = [_form_modules_layout_layoutForPaper_vue__WEBPACK_IMPORTED_MODULE_1__[\"default\"], _form_modules_Container__WEBPACK_IMPORTED_MODULE_3__[\"default\"], _form_modules_layout_layoutItem__WEBPACK_IMPORTED_MODULE_2__[\"default\"]];\nconst install = function (Vue, opts = {}) {\n Vue.prototype = Object.assign(Vue.prototype, opts);\n (vue__WEBPACK_IMPORTED_MODULE_0___default().prototype) = Object.assign((vue__WEBPACK_IMPORTED_MODULE_0___default().prototype), opts);\n components.forEach(component => {\n Vue.component(component.name, component);\n });\n};\nif (typeof window !== 'undefined' && window.Vue) {\n install(window.Vue);\n}\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n install,\n ..._form_modules_components__WEBPACK_IMPORTED_MODULE_5__[\"default\"].componentList\n});\n\n//# sourceURL=webpack://form-component/./src/main.js?");
5692
5692
 
5693
5693
  /***/ }),
5694
5694
 
@@ -12316,6 +12316,17 @@ eval("module.exports = \"data:font/woff;base64,d09GRgABAAAAABkMAAsAAAAAJ6AAAQAAA
12316
12316
  "use strict";
12317
12317
  module.exports = __WEBPACK_EXTERNAL_MODULE_vue__;
12318
12318
 
12319
+ /***/ }),
12320
+
12321
+ /***/ "./package.json":
12322
+ /*!**********************!*\
12323
+ !*** ./package.json ***!
12324
+ \**********************/
12325
+ /***/ (function(module) {
12326
+
12327
+ "use strict";
12328
+ eval("module.exports = JSON.parse('{\"name\":\"@zscreate/form-component\",\"version\":\"1.0.13\",\"private\":false,\"description\":\"\",\"main\":\"dist/form-component.umd.js\",\"unpkg\":\"dist/form-component.umd.js\",\"scripts\":{\"build\":\"vue-cli-service build --target lib --name form-component src/main.js --formats umd --report\",\"build:watch\":\"vue-cli-service build --target lib --name form-component src/main.js --formats umd --watch\"},\"exports\":{\".\":{\"import\":{\"default\":\"./dist/form-component.umd.js\"},\"require\":\"./dist/form-component.common.js\"}},\"publishConfig\":{\"access\":\"public\",\"registry\":\"https://registry.npmjs.org/\"},\"files\":[\"/dist/*\"],\"exclude\":[\"node_modules\"],\"keywords\":[],\"author\":\"\",\"license\":\"ISC\",\"dependencies\":{\"core-js\":\"^3.8.3\",\"vue\":\"^2.6.14\",\"pubsub-js\":\"^1.9.3\",\"vue-draggable-resizable\":\"2.2.0\",\"vue-draggable-resizable-gorkys\":\"2.0.0\",\"vue-grid-layout\":\"^2.3.12\",\"vue-signature-pad\":\"^2.0.2\",\"vuedraggable\":\"^2.24.3\",\"moment\":\"^2.29.1\"},\"devDependencies\":{\"clipboard\":\"2.0.4\",\"codemirror\":\"^5.46.0\",\"vue-codemirror\":\"^4.0.6\",\"@vue/cli-plugin-babel\":\"~5.0.0\",\"@vue/cli-service\":\"~5.0.0\",\"vue-template-compiler\":\"^2.6.14\",\"less\":\"^3.0.4\",\"less-loader\":\"^5.0.0\",\"node-sass\":\"^4.11.0\",\"sass-loader\":\"^7.0.1\"}}');\n\n//# sourceURL=webpack://form-component/./package.json?");
12329
+
12319
12330
  /***/ })
12320
12331
 
12321
12332
  /******/ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zscreate/form-component",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "main": "dist/form-component.umd.js",