🔧 Update npm + login page

This commit is contained in:
TiclemFR
2024-01-25 14:00:48 +01:00
parent 468c2cd0e6
commit 336f2bae93
128 changed files with 3078 additions and 2368 deletions

View File

@@ -1,55 +0,0 @@
{
"hash": "dd10f536",
"configHash": "e4bd813e",
"lockfileHash": "8a7a161c",
"browserHash": "77730e0e",
"optimized": {
"@inertiajs/inertia-vue3": {
"src": "../../@inertiajs/inertia-vue3/dist/index.js",
"file": "@inertiajs_inertia-vue3.js",
"fileHash": "eb2f2b60",
"needsInterop": true
},
"@inertiajs/vue3": {
"src": "../../@inertiajs/vue3/dist/index.esm.js",
"file": "@inertiajs_vue3.js",
"fileHash": "61563244",
"needsInterop": false
},
"axios": {
"src": "../../axios/index.js",
"file": "axios.js",
"fileHash": "ae4e3c6c",
"needsInterop": false
},
"laravel-vite-plugin/inertia-helpers": {
"src": "../../laravel-vite-plugin/inertia-helpers/index.js",
"file": "laravel-vite-plugin_inertia-helpers.js",
"fileHash": "636758ef",
"needsInterop": false
},
"vue": {
"src": "../../vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "abb01b81",
"needsInterop": false
}
},
"chunks": {
"chunk-ZTU3XIRI": {
"file": "chunk-ZTU3XIRI.js"
},
"chunk-M3HBHQKD": {
"file": "chunk-M3HBHQKD.js"
},
"chunk-SA4QXAJ3": {
"file": "chunk-SA4QXAJ3.js"
},
"chunk-XSQZ24V4": {
"file": "chunk-XSQZ24V4.js"
},
"chunk-CEQRFMJQ": {
"file": "chunk-CEQRFMJQ.js"
}
}
}

File diff suppressed because one or more lines are too long

View File

@@ -3,7 +3,7 @@ import {
require_lib,
require_lodash,
require_lodash2
} from "./chunk-ZTU3XIRI.js";
} from "./chunk-Y3GWUAMM.js";
import {
EMPTY_OBJ,
NO,
@@ -8145,9 +8145,9 @@ var require_dist2 = __commonJS({
function e(e2) {
return e2 && "object" == typeof e2 && "default" in e2 ? e2.default : e2;
}
var r = e(require_lodash());
var r = e(require_lodash2());
var t = require_vue();
var n = e(require_lodash2());
var n = e(require_lodash());
var o = require_dist();
function i() {
return (i = Object.assign || function(e2) {

View File

@@ -1,13 +1,13 @@
import {
axios_default
} from "./chunk-MJN6PGBK.js";
import "./chunk-SA4QXAJ3.js";
import {
require_cjs,
require_lib,
require_lodash,
require_lodash2
} from "./chunk-ZTU3XIRI.js";
import {
axios_default
} from "./chunk-M3HBHQKD.js";
import "./chunk-SA4QXAJ3.js";
} from "./chunk-Y3GWUAMM.js";
import {
computed,
createSSRApp,
@@ -761,10 +761,10 @@ function ee(t) {
var Oe = new C();
// node_modules/@inertiajs/vue3/dist/index.esm.js
var import_lodash = __toESM(require_lodash2());
var import_lodash2 = __toESM(require_lodash2());
var import_lodash3 = __toESM(require_lodash());
var import_lodash4 = __toESM(require_lodash2());
var import_lodash = __toESM(require_lodash());
var import_lodash2 = __toESM(require_lodash());
var import_lodash3 = __toESM(require_lodash2());
var import_lodash4 = __toESM(require_lodash());
var M2 = { created() {
if (!this.$options.remember)
return;

View File

@@ -16,7 +16,7 @@ import {
mergeConfig,
spread,
toFormData
} from "./chunk-M3HBHQKD.js";
} from "./chunk-MJN6PGBK.js";
import "./chunk-CEQRFMJQ.js";
export {
Axios,

View File

@@ -1696,7 +1696,7 @@ function mergeConfig(config1, config2) {
}
// node_modules/axios/lib/env/data.js
var VERSION = "1.6.5";
var VERSION = "1.6.6";
// node_modules/axios/lib/helpers/validator.js
var validators = {};
@@ -1774,7 +1774,24 @@ var Axios = class {
*
* @returns {Promise} The Promise to be fulfilled
*/
request(configOrUrl, config) {
async request(configOrUrl, config) {
try {
return await this._request(configOrUrl, config);
} catch (err) {
const dummy = {};
if (Error.captureStackTrace) {
Error.captureStackTrace(dummy);
} else {
dummy.stack = new Error().stack;
}
dummy.stack = dummy.stack.replace(/^.+\n/, "");
if (!err.stack.endsWith(dummy.stack.replace(/^.+\n.+\n/, ""))) {
err.stack += "\n" + dummy.stack;
}
throw err;
}
}
_request(configOrUrl, config) {
if (typeof configOrUrl === "string") {
config = config || {};
config.url = configOrUrl;
@@ -2144,4 +2161,4 @@ export {
getAdapter,
mergeConfig2 as mergeConfig
};
//# sourceMappingURL=chunk-M3HBHQKD.js.map
//# sourceMappingURL=chunk-MJN6PGBK.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long