Generated
+1
-1
@@ -4255,7 +4255,7 @@
|
||||
"deep-equal": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
|
||||
"integrity": "sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=",
|
||||
"integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
|
||||
"requires": {
|
||||
"is-arguments": "^1.0.4",
|
||||
"is-date-object": "^1.0.1",
|
||||
|
||||
Vendored
+1
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-2
@@ -1,6 +1,6 @@
|
||||
/**
|
||||
* @author zhixin wen <wenzhixin2010@gmail.com>
|
||||
* version: 1.19.1
|
||||
* version: 1.18.3
|
||||
* https://github.com/wenzhixin/bootstrap-table/
|
||||
*/
|
||||
.bootstrap-table .fixed-table-toolbar::after {
|
||||
@@ -203,7 +203,6 @@
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
z-index: 1000;
|
||||
transition: visibility 0s, opacity 0.15s ease-in-out;
|
||||
opacity: 0;
|
||||
|
||||
+11
-7
@@ -211,6 +211,7 @@ __webpack_require__.r(__webpack_exports__);
|
||||
//
|
||||
//
|
||||
//
|
||||
var baseUrl = $('meta[name="baseUrl"]').attr('content');
|
||||
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
||||
props: ['file', 'customFields'],
|
||||
data: function data() {
|
||||
@@ -222,6 +223,8 @@ __webpack_require__.r(__webpack_exports__);
|
||||
options: {
|
||||
importType: this.file.import_type,
|
||||
update: false,
|
||||
send_welcome: false,
|
||||
run_backup: false,
|
||||
importTypes: [{
|
||||
id: 'asset',
|
||||
text: 'Assets'
|
||||
@@ -510,7 +513,7 @@ __webpack_require__.r(__webpack_exports__);
|
||||
|
||||
this.statusType = 'pending';
|
||||
this.statusText = "Processing...";
|
||||
this.$http.post(route('api.imports.importFile', this.file.id), {
|
||||
this.$http.post(baseUrl + 'api/v1/imports/process/' + this.file.id, {
|
||||
'import-update': this.options.update,
|
||||
'send-welcome': this.options.send_welcome,
|
||||
'import-type': this.options.importType,
|
||||
@@ -593,6 +596,7 @@ __webpack_require__.r(__webpack_exports__);
|
||||
//
|
||||
__webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-upload/js/jquery.fileupload.js");
|
||||
|
||||
var baseUrl = $('meta[name="baseUrl"]').attr('content');
|
||||
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
||||
/*
|
||||
* The component's data.
|
||||
@@ -656,7 +660,7 @@ __webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-uplo
|
||||
fetchFiles: function fetchFiles() {
|
||||
var _this = this;
|
||||
|
||||
this.$http.get(route('api.imports.index')).then(function (_ref) {
|
||||
this.$http.get(baseUrl + 'api/v1/imports').then(function (_ref) {
|
||||
var data = _ref.data;
|
||||
return _this.files = data;
|
||||
}, // Success
|
||||
@@ -670,7 +674,7 @@ __webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-uplo
|
||||
fetchCustomFields: function fetchCustomFields() {
|
||||
var _this2 = this;
|
||||
|
||||
this.$http.get(route('api.customfields.index')).then(function (_ref2) {
|
||||
this.$http.get(baseUrl + 'api/v1/fields').then(function (_ref2) {
|
||||
var data = _ref2.data;
|
||||
data = data.rows;
|
||||
data.forEach(function (item) {
|
||||
@@ -684,7 +688,7 @@ __webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-uplo
|
||||
deleteFile: function deleteFile(file, key) {
|
||||
var _this3 = this;
|
||||
|
||||
this.$http["delete"](route('api.imports.destroy', file.id)).then( // Success, remove file from array.
|
||||
this.$http["delete"](baseUrl + 'api/v1/imports/' + file.id).then( // Success, remove file from array.
|
||||
function (response) {
|
||||
_this3.files.splice(key, 1);
|
||||
|
||||
@@ -36899,7 +36903,7 @@ var render = function() {
|
||||
expression: "options.update"
|
||||
}
|
||||
],
|
||||
staticClass: "iCheck minimal",
|
||||
staticClass: "icheckbox_minimal",
|
||||
attrs: { type: "checkbox", name: "import-update" },
|
||||
domProps: {
|
||||
checked: Array.isArray(_vm.options.update)
|
||||
@@ -36944,7 +36948,7 @@ var render = function() {
|
||||
expression: "options.send_welcome"
|
||||
}
|
||||
],
|
||||
staticClass: "minimal",
|
||||
staticClass: "icheckbox_minimal",
|
||||
attrs: { type: "checkbox", name: "send-welcome" },
|
||||
domProps: {
|
||||
checked: Array.isArray(_vm.options.send_welcome)
|
||||
@@ -36990,7 +36994,7 @@ var render = function() {
|
||||
expression: "options.run_backup"
|
||||
}
|
||||
],
|
||||
staticClass: "minimal",
|
||||
staticClass: "icheckbox_minimal",
|
||||
attrs: { type: "checkbox", name: "run-backup" },
|
||||
domProps: {
|
||||
checked: Array.isArray(_vm.options.run_backup)
|
||||
|
||||
Vendored
+11
-7
@@ -59349,6 +59349,7 @@ __webpack_require__.r(__webpack_exports__);
|
||||
//
|
||||
//
|
||||
//
|
||||
var baseUrl = $('meta[name="baseUrl"]').attr('content');
|
||||
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
||||
props: ['file', 'customFields'],
|
||||
data: function data() {
|
||||
@@ -59360,6 +59361,8 @@ __webpack_require__.r(__webpack_exports__);
|
||||
options: {
|
||||
importType: this.file.import_type,
|
||||
update: false,
|
||||
send_welcome: false,
|
||||
run_backup: false,
|
||||
importTypes: [{
|
||||
id: 'asset',
|
||||
text: 'Assets'
|
||||
@@ -59648,7 +59651,7 @@ __webpack_require__.r(__webpack_exports__);
|
||||
|
||||
this.statusType = 'pending';
|
||||
this.statusText = "Processing...";
|
||||
this.$http.post(route('api.imports.importFile', this.file.id), {
|
||||
this.$http.post(baseUrl + 'api/v1/imports/process/' + this.file.id, {
|
||||
'import-update': this.options.update,
|
||||
'send-welcome': this.options.send_welcome,
|
||||
'import-type': this.options.importType,
|
||||
@@ -59731,6 +59734,7 @@ __webpack_require__.r(__webpack_exports__);
|
||||
//
|
||||
__webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-upload/js/jquery.fileupload.js");
|
||||
|
||||
var baseUrl = $('meta[name="baseUrl"]').attr('content');
|
||||
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
||||
/*
|
||||
* The component's data.
|
||||
@@ -59794,7 +59798,7 @@ __webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-uplo
|
||||
fetchFiles: function fetchFiles() {
|
||||
var _this = this;
|
||||
|
||||
this.$http.get(route('api.imports.index')).then(function (_ref) {
|
||||
this.$http.get(baseUrl + 'api/v1/imports').then(function (_ref) {
|
||||
var data = _ref.data;
|
||||
return _this.files = data;
|
||||
}, // Success
|
||||
@@ -59808,7 +59812,7 @@ __webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-uplo
|
||||
fetchCustomFields: function fetchCustomFields() {
|
||||
var _this2 = this;
|
||||
|
||||
this.$http.get(route('api.customfields.index')).then(function (_ref2) {
|
||||
this.$http.get(baseUrl + 'api/v1/fields').then(function (_ref2) {
|
||||
var data = _ref2.data;
|
||||
data = data.rows;
|
||||
data.forEach(function (item) {
|
||||
@@ -59822,7 +59826,7 @@ __webpack_require__(/*! blueimp-file-upload */ "./node_modules/blueimp-file-uplo
|
||||
deleteFile: function deleteFile(file, key) {
|
||||
var _this3 = this;
|
||||
|
||||
this.$http["delete"](route('api.imports.destroy', file.id)).then( // Success, remove file from array.
|
||||
this.$http["delete"](baseUrl + 'api/v1/imports/' + file.id).then( // Success, remove file from array.
|
||||
function (response) {
|
||||
_this3.files.splice(key, 1);
|
||||
|
||||
@@ -96037,7 +96041,7 @@ var render = function() {
|
||||
expression: "options.update"
|
||||
}
|
||||
],
|
||||
staticClass: "iCheck minimal",
|
||||
staticClass: "icheckbox_minimal",
|
||||
attrs: { type: "checkbox", name: "import-update" },
|
||||
domProps: {
|
||||
checked: Array.isArray(_vm.options.update)
|
||||
@@ -96082,7 +96086,7 @@ var render = function() {
|
||||
expression: "options.send_welcome"
|
||||
}
|
||||
],
|
||||
staticClass: "minimal",
|
||||
staticClass: "icheckbox_minimal",
|
||||
attrs: { type: "checkbox", name: "send-welcome" },
|
||||
domProps: {
|
||||
checked: Array.isArray(_vm.options.send_welcome)
|
||||
@@ -96128,7 +96132,7 @@ var render = function() {
|
||||
expression: "options.run_backup"
|
||||
}
|
||||
],
|
||||
staticClass: "minimal",
|
||||
staticClass: "icheckbox_minimal",
|
||||
attrs: { type: "checkbox", name: "run-backup" },
|
||||
domProps: {
|
||||
checked: Array.isArray(_vm.options.run_backup)
|
||||
|
||||
Vendored
+474
-753
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"/js/build/app.js": "/js/build/app.js?id=31d01a74b3501e01b608",
|
||||
"/js/build/app.js": "/js/build/app.js?id=7bf56276d996a0ac2f74",
|
||||
"/css/dist/skins/skin-blue.css": "/css/dist/skins/skin-blue.css?id=f1cc6901a7c5175c93ae",
|
||||
"/css/build/overrides.css": "/css/build/overrides.css?id=4fc3a0e0a16964643e70",
|
||||
"/css/build/app.css": "/css/build/app.css?id=a7cd7ad6e0e053ccf443",
|
||||
@@ -18,15 +18,15 @@
|
||||
"/css/dist/skins/skin-green.css": "/css/dist/skins/skin-green.css?id=8184148eee63ebe2f13c",
|
||||
"/css/dist/skins/skin-contrast.css": "/css/dist/skins/skin-contrast.css?id=6a9d0ac448c28b88e5d6",
|
||||
"/css/dist/skins/skin-red.css": "/css/dist/skins/skin-red.css?id=77bd8e92475ecddc9c62",
|
||||
"/css/dist/all.css": "/css/dist/all.css?id=2ee76a9bb4100b60febc",
|
||||
"/css/dist/all.css": "/css/dist/all.css?id=48ba7a3676a05fcbcccf",
|
||||
"/css/blue.png": "/css/blue.png?id=e83a6c29e04fe851f212",
|
||||
"/css/blue@2x.png": "/css/blue@2x.png?id=51135dd4d24f88f5de0b",
|
||||
"/css/dist/signature-pad.css": "/css/dist/signature-pad.css?id=6a89d3cd901305e66ced",
|
||||
"/css/dist/signature-pad.min.css": "/css/dist/signature-pad.min.css?id=6a89d3cd901305e66ced",
|
||||
"/css/dist/bootstrap-table.css": "/css/dist/bootstrap-table.css?id=810d7e520c3057ee500e",
|
||||
"/css/dist/bootstrap-table.css": "/css/dist/bootstrap-table.css?id=93c24b4c89490bbfd73e",
|
||||
"/js/build/vendor.js": "/js/build/vendor.js?id=651427cc4b45d8e68d0c",
|
||||
"/js/dist/bootstrap-table.js": "/js/dist/bootstrap-table.js?id=675a086b82536dd212f0",
|
||||
"/js/dist/all.js": "/js/dist/all.js?id=575586844f1b9b67fc85",
|
||||
"/js/dist/bootstrap-table.js": "/js/dist/bootstrap-table.js?id=e9c259d610ce143ccac3",
|
||||
"/js/dist/all.js": "/js/dist/all.js?id=034ef5d34102944f6768",
|
||||
"/css/dist/skins/skin-green.min.css": "/css/dist/skins/skin-green.min.css?id=8184148eee63ebe2f13c",
|
||||
"/css/dist/skins/skin-green-dark.min.css": "/css/dist/skins/skin-green-dark.min.css?id=55b303cf739c4c07a5a4",
|
||||
"/css/dist/skins/skin-black.min.css": "/css/dist/skins/skin-black.min.css?id=9dda5d1f907fef08fe97",
|
||||
|
||||
Reference in New Issue
Block a user