ebuilds-shared 0.2.7 → 0.2.8

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.
@@ -288,12 +288,12 @@ var hash = (
288
288
  function getHash(text) {
289
289
  return hash("sha256", text, "hex").substring(0, 8);
290
290
  }
291
- function slash(path4) {
292
- const isExtendedLengthPath = path4.startsWith("\\\\?\\");
291
+ function slash(path3) {
292
+ const isExtendedLengthPath = path3.startsWith("\\\\?\\");
293
293
  if (isExtendedLengthPath) {
294
- return path4;
294
+ return path3;
295
295
  }
296
- return path4.replace(/\\/g, "/");
296
+ return path3.replace(/\\/g, "/");
297
297
  }
298
298
  function createRollupError(id, error) {
299
299
  const { message, name, stack } = error;
@@ -730,16 +730,16 @@ function parseAbsoluteUrl(input) {
730
730
  }
731
731
  function parseFileUrl(input) {
732
732
  const match = fileRegex.exec(input);
733
- const path4 = match[2];
734
- return makeUrl("file:", "", match[1] || "", "", isAbsolutePath(path4) ? path4 : "/" + path4, match[3] || "", match[4] || "");
733
+ const path3 = match[2];
734
+ return makeUrl("file:", "", match[1] || "", "", isAbsolutePath(path3) ? path3 : "/" + path3, match[3] || "", match[4] || "");
735
735
  }
736
- function makeUrl(scheme, user, host, port, path4, query, hash2) {
736
+ function makeUrl(scheme, user, host, port, path3, query, hash2) {
737
737
  return {
738
738
  scheme,
739
739
  user,
740
740
  host,
741
741
  port,
742
- path: path4,
742
+ path: path3,
743
743
  query,
744
744
  hash: hash2,
745
745
  type: 7
@@ -769,11 +769,11 @@ function parseUrl(input) {
769
769
  url.type = input ? input.startsWith("?") ? 3 : input.startsWith("#") ? 2 : 4 : 1;
770
770
  return url;
771
771
  }
772
- function stripPathFilename(path4) {
773
- if (path4.endsWith("/.."))
774
- return path4;
775
- const index = path4.lastIndexOf("/");
776
- return path4.slice(0, index + 1);
772
+ function stripPathFilename(path3) {
773
+ if (path3.endsWith("/.."))
774
+ return path3;
775
+ const index = path3.lastIndexOf("/");
776
+ return path3.slice(0, index + 1);
777
777
  }
778
778
  function mergePaths(url, base) {
779
779
  normalizePath(base, base.type);
@@ -811,14 +811,14 @@ function normalizePath(url, type) {
811
811
  pieces[pointer++] = piece;
812
812
  positive++;
813
813
  }
814
- let path4 = "";
814
+ let path3 = "";
815
815
  for (let i = 1; i < pointer; i++) {
816
- path4 += "/" + pieces[i];
816
+ path3 += "/" + pieces[i];
817
817
  }
818
- if (!path4 || addTrailingSlash && !path4.endsWith("/..")) {
819
- path4 += "/";
818
+ if (!path3 || addTrailingSlash && !path3.endsWith("/..")) {
819
+ path3 += "/";
820
820
  }
821
- url.path = path4;
821
+ url.path = path3;
822
822
  }
823
823
  function resolve$1(input, base) {
824
824
  if (!input && !base)
@@ -859,13 +859,13 @@ function resolve$1(input, base) {
859
859
  case 3:
860
860
  return queryHash;
861
861
  case 4: {
862
- const path4 = url.path.slice(1);
863
- if (!path4)
862
+ const path3 = url.path.slice(1);
863
+ if (!path3)
864
864
  return queryHash || ".";
865
- if (isRelative(base || input) && !isRelative(path4)) {
866
- return "./" + path4 + queryHash;
865
+ if (isRelative(base || input) && !isRelative(path3)) {
866
+ return "./" + path3 + queryHash;
867
867
  }
868
- return path4 + queryHash;
868
+ return path3 + queryHash;
869
869
  }
870
870
  case 5:
871
871
  return url.path + queryHash;
@@ -878,11 +878,11 @@ function resolve(input, base) {
878
878
  base += "/";
879
879
  return resolve$1(input, base);
880
880
  }
881
- function stripFilename(path4) {
882
- if (!path4)
881
+ function stripFilename(path3) {
882
+ if (!path3)
883
883
  return "";
884
- const index = path4.lastIndexOf("/");
885
- return path4.slice(0, index + 1);
884
+ const index = path3.lastIndexOf("/");
885
+ return path3.slice(0, index + 1);
886
886
  }
887
887
  var COLUMN$1 = 0;
888
888
  function maybeSort(mappings, owned) {
@@ -2799,7 +2799,7 @@ function convertProxyConfig(data, replaceFunction) {
2799
2799
  // 启用origin头修改
2800
2800
  secure: false,
2801
2801
  // 路径重写:移除请求路径中的统一前缀(如/api)
2802
- rewrite: replaceFunction || ((path4) => path4.replace(new RegExp(`${dev_prefix}`), ""))
2802
+ rewrite: replaceFunction || ((path3) => path3.replace(new RegExp(`${dev_prefix}`), ""))
2803
2803
  };
2804
2804
  }
2805
2805
  return result;
@@ -2822,10 +2822,6 @@ function server_default(devPort = 5e3, proxyConfig, baseUrl = "/") {
2822
2822
  }
2823
2823
 
2824
2824
  // src/vite-config/build/index.ts
2825
- import path3 from "path";
2826
- import { fileURLToPath } from "url";
2827
- var __filename = fileURLToPath(import.meta.url);
2828
- var __dirname = path3.dirname(__filename);
2829
2825
  var config = (isProduction) => {
2830
2826
  return {
2831
2827
  /**
@@ -288,12 +288,12 @@ var hash = (
288
288
  function getHash(text) {
289
289
  return hash("sha256", text, "hex").substring(0, 8);
290
290
  }
291
- function slash(path4) {
292
- const isExtendedLengthPath = path4.startsWith("\\\\?\\");
291
+ function slash(path3) {
292
+ const isExtendedLengthPath = path3.startsWith("\\\\?\\");
293
293
  if (isExtendedLengthPath) {
294
- return path4;
294
+ return path3;
295
295
  }
296
- return path4.replace(/\\/g, "/");
296
+ return path3.replace(/\\/g, "/");
297
297
  }
298
298
  function createRollupError(id, error) {
299
299
  const { message, name, stack } = error;
@@ -730,16 +730,16 @@ function parseAbsoluteUrl(input) {
730
730
  }
731
731
  function parseFileUrl(input) {
732
732
  const match = fileRegex.exec(input);
733
- const path4 = match[2];
734
- return makeUrl("file:", "", match[1] || "", "", isAbsolutePath(path4) ? path4 : "/" + path4, match[3] || "", match[4] || "");
733
+ const path3 = match[2];
734
+ return makeUrl("file:", "", match[1] || "", "", isAbsolutePath(path3) ? path3 : "/" + path3, match[3] || "", match[4] || "");
735
735
  }
736
- function makeUrl(scheme, user, host, port, path4, query, hash2) {
736
+ function makeUrl(scheme, user, host, port, path3, query, hash2) {
737
737
  return {
738
738
  scheme,
739
739
  user,
740
740
  host,
741
741
  port,
742
- path: path4,
742
+ path: path3,
743
743
  query,
744
744
  hash: hash2,
745
745
  type: 7
@@ -769,11 +769,11 @@ function parseUrl(input) {
769
769
  url.type = input ? input.startsWith("?") ? 3 : input.startsWith("#") ? 2 : 4 : 1;
770
770
  return url;
771
771
  }
772
- function stripPathFilename(path4) {
773
- if (path4.endsWith("/.."))
774
- return path4;
775
- const index = path4.lastIndexOf("/");
776
- return path4.slice(0, index + 1);
772
+ function stripPathFilename(path3) {
773
+ if (path3.endsWith("/.."))
774
+ return path3;
775
+ const index = path3.lastIndexOf("/");
776
+ return path3.slice(0, index + 1);
777
777
  }
778
778
  function mergePaths(url, base) {
779
779
  normalizePath(base, base.type);
@@ -811,14 +811,14 @@ function normalizePath(url, type) {
811
811
  pieces[pointer++] = piece;
812
812
  positive++;
813
813
  }
814
- let path4 = "";
814
+ let path3 = "";
815
815
  for (let i = 1; i < pointer; i++) {
816
- path4 += "/" + pieces[i];
816
+ path3 += "/" + pieces[i];
817
817
  }
818
- if (!path4 || addTrailingSlash && !path4.endsWith("/..")) {
819
- path4 += "/";
818
+ if (!path3 || addTrailingSlash && !path3.endsWith("/..")) {
819
+ path3 += "/";
820
820
  }
821
- url.path = path4;
821
+ url.path = path3;
822
822
  }
823
823
  function resolve$1(input, base) {
824
824
  if (!input && !base)
@@ -859,13 +859,13 @@ function resolve$1(input, base) {
859
859
  case 3:
860
860
  return queryHash;
861
861
  case 4: {
862
- const path4 = url.path.slice(1);
863
- if (!path4)
862
+ const path3 = url.path.slice(1);
863
+ if (!path3)
864
864
  return queryHash || ".";
865
- if (isRelative(base || input) && !isRelative(path4)) {
866
- return "./" + path4 + queryHash;
865
+ if (isRelative(base || input) && !isRelative(path3)) {
866
+ return "./" + path3 + queryHash;
867
867
  }
868
- return path4 + queryHash;
868
+ return path3 + queryHash;
869
869
  }
870
870
  case 5:
871
871
  return url.path + queryHash;
@@ -878,11 +878,11 @@ function resolve(input, base) {
878
878
  base += "/";
879
879
  return resolve$1(input, base);
880
880
  }
881
- function stripFilename(path4) {
882
- if (!path4)
881
+ function stripFilename(path3) {
882
+ if (!path3)
883
883
  return "";
884
- const index = path4.lastIndexOf("/");
885
- return path4.slice(0, index + 1);
884
+ const index = path3.lastIndexOf("/");
885
+ return path3.slice(0, index + 1);
886
886
  }
887
887
  var COLUMN$1 = 0;
888
888
  function maybeSort(mappings, owned) {
@@ -2799,7 +2799,7 @@ function convertProxyConfig(data, replaceFunction) {
2799
2799
  // 启用origin头修改
2800
2800
  secure: false,
2801
2801
  // 路径重写:移除请求路径中的统一前缀(如/api)
2802
- rewrite: replaceFunction || ((path4) => path4.replace(new RegExp(`${dev_prefix}`), ""))
2802
+ rewrite: replaceFunction || ((path3) => path3.replace(new RegExp(`${dev_prefix}`), ""))
2803
2803
  };
2804
2804
  }
2805
2805
  return result;
@@ -2822,10 +2822,6 @@ function server_default(devPort = 5e3, proxyConfig, baseUrl = "/") {
2822
2822
  }
2823
2823
 
2824
2824
  // src/vite-config/build/index.ts
2825
-
2826
- var _url = require('url');
2827
- var __filename = _url.fileURLToPath.call(void 0, import.meta.url);
2828
- var __dirname = _path2.default.dirname(__filename);
2829
2825
  var config = (isProduction) => {
2830
2826
  return {
2831
2827
  /**
@@ -6500,6 +6500,7 @@ function setupPermission(router, useMenuStore2, pages = {}, useUserStore) {
6500
6500
  updateDocumentTitle(commonStore.getWebsiteTitle, to);
6501
6501
  const whiteList = commonStore.getRouteWhitelist;
6502
6502
  const userStore = useUserStore();
6503
+ const menuStore = useMenuStore2();
6503
6504
  if (window.microApp) {
6504
6505
  const data = window.microApp.getData();
6505
6506
  if (data.userState) {
@@ -6514,7 +6515,6 @@ function setupPermission(router, useMenuStore2, pages = {}, useUserStore) {
6514
6515
  next("/");
6515
6516
  } else {
6516
6517
  try {
6517
- const menuStore = useMenuStore2();
6518
6518
  if (menuStore.getHasGetMenuList) {
6519
6519
  await addVersion({ to, next, version });
6520
6520
  } else {
@@ -6844,14 +6844,13 @@ var useMenuStore = defineStore3("menu", {
6844
6844
  routeData = data.menuData || [];
6845
6845
  if (data?.defaultPath) {
6846
6846
  defaultPath = data.defaultPath || "";
6847
- }
6848
- if (data?.subAppRoute) {
6847
+ } else if (data?.subAppRoute) {
6849
6848
  defaultPath = data.subAppRoute.path || "";
6850
6849
  }
6851
6850
  }
6852
6851
  this.menuList = routeData;
6853
6852
  const validRoutes = handleRoutes(routeData, pages);
6854
- console.log("\u8DEF\u7531:", validRoutes);
6853
+ console.log("\u8DEF\u7531:", validRoutes, defaultPath);
6855
6854
  validRoutes.forEach((route) => {
6856
6855
  try {
6857
6856
  router.addRoute(route);
@@ -6500,6 +6500,7 @@ function setupPermission(router, useMenuStore2, pages = {}, useUserStore) {
6500
6500
  updateDocumentTitle(commonStore.getWebsiteTitle, to);
6501
6501
  const whiteList = commonStore.getRouteWhitelist;
6502
6502
  const userStore = useUserStore();
6503
+ const menuStore = useMenuStore2();
6503
6504
  if (window.microApp) {
6504
6505
  const data = window.microApp.getData();
6505
6506
  if (data.userState) {
@@ -6514,7 +6515,6 @@ function setupPermission(router, useMenuStore2, pages = {}, useUserStore) {
6514
6515
  next("/");
6515
6516
  } else {
6516
6517
  try {
6517
- const menuStore = useMenuStore2();
6518
6518
  if (menuStore.getHasGetMenuList) {
6519
6519
  await addVersion({ to, next, version });
6520
6520
  } else {
@@ -6844,14 +6844,13 @@ var useMenuStore = _pinia.defineStore.call(void 0, "menu", {
6844
6844
  routeData = data.menuData || [];
6845
6845
  if (_optionalChain([data, 'optionalAccess', _14 => _14.defaultPath])) {
6846
6846
  defaultPath = data.defaultPath || "";
6847
- }
6848
- if (_optionalChain([data, 'optionalAccess', _15 => _15.subAppRoute])) {
6847
+ } else if (_optionalChain([data, 'optionalAccess', _15 => _15.subAppRoute])) {
6849
6848
  defaultPath = data.subAppRoute.path || "";
6850
6849
  }
6851
6850
  }
6852
6851
  this.menuList = routeData;
6853
6852
  const validRoutes = handleRoutes(routeData, pages);
6854
- console.log("\u8DEF\u7531:", validRoutes);
6853
+ console.log("\u8DEF\u7531:", validRoutes, defaultPath);
6855
6854
  validRoutes.forEach((route) => {
6856
6855
  try {
6857
6856
  router.addRoute(route);
package/dist/index.js CHANGED
@@ -29,10 +29,10 @@ var _chunk3YUIFF3Jjs = require('./chunk-3YUIFF3J.js');
29
29
 
30
30
 
31
31
 
32
- var _chunkWGOU4SV3js = require('./chunk-WGOU4SV3.js');
32
+ var _chunkYXHM6TUNjs = require('./chunk-YXHM6TUN.js');
33
33
 
34
34
 
35
- var _chunkQPQMXAXMjs = require('./chunk-QPQMXAXM.js');
35
+ var _chunkF2CZ3CMWjs = require('./chunk-F2CZ3CMW.js');
36
36
  require('./chunk-QGM4M3NI.js');
37
37
 
38
38
 
@@ -64,4 +64,4 @@ require('./chunk-QGM4M3NI.js');
64
64
 
65
65
 
66
66
 
67
- exports.clamp = _chunkWGOU4SV3js.clamp; exports.createBaseViteConfig = _chunkQPQMXAXMjs.createBaseViteConfig; exports.createFunctionalComponent = _chunkWGOU4SV3js.createFunctionalComponent; exports.createUnoConfig = _chunk3YUIFF3Jjs.createUnoConfig; exports.duplicateRemovalCompleteSort = _chunkWGOU4SV3js.duplicateRemovalCompleteSort; exports.encryptPwd = _chunkWGOU4SV3js.encryptPwd; exports.filterMenu = _chunkWGOU4SV3js.filterMenu; exports.formatNumber = _chunkWGOU4SV3js.formatNumber; exports.getDecimalPart = _chunkWGOU4SV3js.getDecimalPart; exports.getIntegerPart = _chunkWGOU4SV3js.getIntegerPart; exports.isInteger = _chunkWGOU4SV3js.isInteger; exports.isNumber = _chunkWGOU4SV3js.isNumber; exports.jsonp = _chunkWGOU4SV3js.jsonp; exports.listSort = _chunkWGOU4SV3js.listSort; exports.numberToChinese = _chunkWGOU4SV3js.numberToChinese; exports.padZero = _chunkWGOU4SV3js.padZero; exports.parseFormattedNumber = _chunkWGOU4SV3js.parseFormattedNumber; exports.prototypeInterceptor = _chunkWGOU4SV3js.prototypeInterceptor; exports.request = _chunkWGOU4SV3js.request; exports.roundOrTruncate = _chunkWGOU4SV3js.roundOrTruncate; exports.setupPermission = _chunkWGOU4SV3js.setupPermission; exports.store = _chunkWGOU4SV3js.store; exports.timeFix = _chunkWGOU4SV3js.timeFix; exports.updateDocumentTitle = _chunkWGOU4SV3js.updateDocumentTitle; exports.useCommonStore = _chunkWGOU4SV3js.useCommonStore; exports.useDbStore = _chunkWGOU4SV3js.useDbStore; exports.useLoginHook = _chunkWGOU4SV3js.useLoginHook; exports.useMenuStore = _chunkWGOU4SV3js.useMenuStore; exports.welcome = _chunkWGOU4SV3js.welcome;
67
+ exports.clamp = _chunkYXHM6TUNjs.clamp; exports.createBaseViteConfig = _chunkF2CZ3CMWjs.createBaseViteConfig; exports.createFunctionalComponent = _chunkYXHM6TUNjs.createFunctionalComponent; exports.createUnoConfig = _chunk3YUIFF3Jjs.createUnoConfig; exports.duplicateRemovalCompleteSort = _chunkYXHM6TUNjs.duplicateRemovalCompleteSort; exports.encryptPwd = _chunkYXHM6TUNjs.encryptPwd; exports.filterMenu = _chunkYXHM6TUNjs.filterMenu; exports.formatNumber = _chunkYXHM6TUNjs.formatNumber; exports.getDecimalPart = _chunkYXHM6TUNjs.getDecimalPart; exports.getIntegerPart = _chunkYXHM6TUNjs.getIntegerPart; exports.isInteger = _chunkYXHM6TUNjs.isInteger; exports.isNumber = _chunkYXHM6TUNjs.isNumber; exports.jsonp = _chunkYXHM6TUNjs.jsonp; exports.listSort = _chunkYXHM6TUNjs.listSort; exports.numberToChinese = _chunkYXHM6TUNjs.numberToChinese; exports.padZero = _chunkYXHM6TUNjs.padZero; exports.parseFormattedNumber = _chunkYXHM6TUNjs.parseFormattedNumber; exports.prototypeInterceptor = _chunkYXHM6TUNjs.prototypeInterceptor; exports.request = _chunkYXHM6TUNjs.request; exports.roundOrTruncate = _chunkYXHM6TUNjs.roundOrTruncate; exports.setupPermission = _chunkYXHM6TUNjs.setupPermission; exports.store = _chunkYXHM6TUNjs.store; exports.timeFix = _chunkYXHM6TUNjs.timeFix; exports.updateDocumentTitle = _chunkYXHM6TUNjs.updateDocumentTitle; exports.useCommonStore = _chunkYXHM6TUNjs.useCommonStore; exports.useDbStore = _chunkYXHM6TUNjs.useDbStore; exports.useLoginHook = _chunkYXHM6TUNjs.useLoginHook; exports.useMenuStore = _chunkYXHM6TUNjs.useMenuStore; exports.welcome = _chunkYXHM6TUNjs.welcome;
package/dist/index.mjs CHANGED
@@ -29,10 +29,10 @@ import {
29
29
  useLoginHook,
30
30
  useMenuStore,
31
31
  welcome
32
- } from "./chunk-PTS5WW6S.mjs";
32
+ } from "./chunk-IFPKQ66A.mjs";
33
33
  import {
34
34
  createBaseViteConfig
35
- } from "./chunk-HBWAUWPK.mjs";
35
+ } from "./chunk-BQBUWOOS.mjs";
36
36
  import "./chunk-6DZX6EAA.mjs";
37
37
  export {
38
38
  clamp,
@@ -3,11 +3,11 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkWGOU4SV3js = require('../chunk-WGOU4SV3.js');
6
+ var _chunkYXHM6TUNjs = require('../chunk-YXHM6TUN.js');
7
7
  require('../chunk-QGM4M3NI.js');
8
8
 
9
9
 
10
10
 
11
11
 
12
12
 
13
- exports.store = _chunkWGOU4SV3js.store; exports.useCommonStore = _chunkWGOU4SV3js.useCommonStore; exports.useDbStore = _chunkWGOU4SV3js.useDbStore; exports.useMenuStore = _chunkWGOU4SV3js.useMenuStore;
13
+ exports.store = _chunkYXHM6TUNjs.store; exports.useCommonStore = _chunkYXHM6TUNjs.useCommonStore; exports.useDbStore = _chunkYXHM6TUNjs.useDbStore; exports.useMenuStore = _chunkYXHM6TUNjs.useMenuStore;
@@ -3,7 +3,7 @@ import {
3
3
  useCommonStore,
4
4
  useDbStore,
5
5
  useMenuStore
6
- } from "../chunk-PTS5WW6S.mjs";
6
+ } from "../chunk-IFPKQ66A.mjs";
7
7
  import "../chunk-6DZX6EAA.mjs";
8
8
  export {
9
9
  store,
@@ -22,7 +22,7 @@
22
22
 
23
23
 
24
24
 
25
- var _chunkWGOU4SV3js = require('../chunk-WGOU4SV3.js');
25
+ var _chunkYXHM6TUNjs = require('../chunk-YXHM6TUN.js');
26
26
  require('../chunk-QGM4M3NI.js');
27
27
 
28
28
 
@@ -48,4 +48,4 @@ require('../chunk-QGM4M3NI.js');
48
48
 
49
49
 
50
50
 
51
- exports.clamp = _chunkWGOU4SV3js.clamp; exports.createFunctionalComponent = _chunkWGOU4SV3js.createFunctionalComponent; exports.duplicateRemovalCompleteSort = _chunkWGOU4SV3js.duplicateRemovalCompleteSort; exports.encryptPwd = _chunkWGOU4SV3js.encryptPwd; exports.filterMenu = _chunkWGOU4SV3js.filterMenu; exports.formatNumber = _chunkWGOU4SV3js.formatNumber; exports.getDecimalPart = _chunkWGOU4SV3js.getDecimalPart; exports.getIntegerPart = _chunkWGOU4SV3js.getIntegerPart; exports.isInteger = _chunkWGOU4SV3js.isInteger; exports.isNumber = _chunkWGOU4SV3js.isNumber; exports.jsonp = _chunkWGOU4SV3js.jsonp; exports.listSort = _chunkWGOU4SV3js.listSort; exports.numberToChinese = _chunkWGOU4SV3js.numberToChinese; exports.padZero = _chunkWGOU4SV3js.padZero; exports.parseFormattedNumber = _chunkWGOU4SV3js.parseFormattedNumber; exports.prototypeInterceptor = _chunkWGOU4SV3js.prototypeInterceptor; exports.request = _chunkWGOU4SV3js.request; exports.roundOrTruncate = _chunkWGOU4SV3js.roundOrTruncate; exports.setupPermission = _chunkWGOU4SV3js.setupPermission; exports.timeFix = _chunkWGOU4SV3js.timeFix; exports.updateDocumentTitle = _chunkWGOU4SV3js.updateDocumentTitle; exports.useLoginHook = _chunkWGOU4SV3js.useLoginHook; exports.welcome = _chunkWGOU4SV3js.welcome;
51
+ exports.clamp = _chunkYXHM6TUNjs.clamp; exports.createFunctionalComponent = _chunkYXHM6TUNjs.createFunctionalComponent; exports.duplicateRemovalCompleteSort = _chunkYXHM6TUNjs.duplicateRemovalCompleteSort; exports.encryptPwd = _chunkYXHM6TUNjs.encryptPwd; exports.filterMenu = _chunkYXHM6TUNjs.filterMenu; exports.formatNumber = _chunkYXHM6TUNjs.formatNumber; exports.getDecimalPart = _chunkYXHM6TUNjs.getDecimalPart; exports.getIntegerPart = _chunkYXHM6TUNjs.getIntegerPart; exports.isInteger = _chunkYXHM6TUNjs.isInteger; exports.isNumber = _chunkYXHM6TUNjs.isNumber; exports.jsonp = _chunkYXHM6TUNjs.jsonp; exports.listSort = _chunkYXHM6TUNjs.listSort; exports.numberToChinese = _chunkYXHM6TUNjs.numberToChinese; exports.padZero = _chunkYXHM6TUNjs.padZero; exports.parseFormattedNumber = _chunkYXHM6TUNjs.parseFormattedNumber; exports.prototypeInterceptor = _chunkYXHM6TUNjs.prototypeInterceptor; exports.request = _chunkYXHM6TUNjs.request; exports.roundOrTruncate = _chunkYXHM6TUNjs.roundOrTruncate; exports.setupPermission = _chunkYXHM6TUNjs.setupPermission; exports.timeFix = _chunkYXHM6TUNjs.timeFix; exports.updateDocumentTitle = _chunkYXHM6TUNjs.updateDocumentTitle; exports.useLoginHook = _chunkYXHM6TUNjs.useLoginHook; exports.welcome = _chunkYXHM6TUNjs.welcome;
@@ -22,7 +22,7 @@ import {
22
22
  updateDocumentTitle,
23
23
  useLoginHook,
24
24
  welcome
25
- } from "../chunk-PTS5WW6S.mjs";
25
+ } from "../chunk-IFPKQ66A.mjs";
26
26
  import "../chunk-6DZX6EAA.mjs";
27
27
  export {
28
28
  clamp,
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkQPQMXAXMjs = require('../chunk-QPQMXAXM.js');
3
+ var _chunkF2CZ3CMWjs = require('../chunk-F2CZ3CMW.js');
4
4
  require('../chunk-QGM4M3NI.js');
5
5
 
6
6
 
7
- exports.createBaseViteConfig = _chunkQPQMXAXMjs.createBaseViteConfig;
7
+ exports.createBaseViteConfig = _chunkF2CZ3CMWjs.createBaseViteConfig;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createBaseViteConfig
3
- } from "../chunk-HBWAUWPK.mjs";
3
+ } from "../chunk-BQBUWOOS.mjs";
4
4
  import "../chunk-6DZX6EAA.mjs";
5
5
  export {
6
6
  createBaseViteConfig
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.2.7",
6
+ "version": "0.2.8",
7
7
  "description": "共享工具库和类型定义",
8
8
  "author": "ebuilds",
9
9
  "license": "MIT",