Fix dependencies: Add flag-icons, tailwind directives, and postcss config

This commit is contained in:
MivoDev
2026-01-18 11:16:21 +07:00
commit 266a4b1296
10758 changed files with 1547435 additions and 0 deletions

27
node_modules/@vueuse/integrations/useJwt.iife.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
(function (exports, jwtDecode, vue) {
'use strict';
function useJwt(encodedJwt, options = {}) {
const {
onError,
fallbackValue = null
} = options;
const decodeWithFallback = (encodedJwt2, options2) => {
try {
return jwtDecode.jwtDecode(encodedJwt2, options2);
} catch (err) {
onError == null ? void 0 : onError(err);
return fallbackValue;
}
};
const header = vue.computed(() => decodeWithFallback(vue.toValue(encodedJwt), { header: true }));
const payload = vue.computed(() => decodeWithFallback(vue.toValue(encodedJwt)));
return {
header,
payload
};
}
exports.useJwt = useJwt;
})(this.VueUse = this.VueUse || {}, jwt_decode, Vue);