bt-core-app 1.4.424 → 1.4.426

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.
@@ -5562,8 +5562,8 @@ function sV(e, t) {
5562
5562
  return Math.round(e * l) / l;
5563
5563
  }
5564
5564
  function uV(e, t) {
5565
- let n = e ?? "";
5566
- return t != null && (Xw(n, t) ? n = n.split(",").filter((a) => a != t).toString() : n != null ? n = `${n},${t}` : n = t), n != null && n.length > 0 ? n : null;
5565
+ let n = "";
5566
+ return e != null && (Array.isArray(e) ? n = e.toString() : n = e), t != null && (Xw(n, t) ? n = n.split(",").filter((a) => a != t).toString() : n != null ? n = `${n},${t}` : n = t), n != null && n.length > 0 ? n : null;
5567
5567
  }
5568
5568
  function Xw(e, t) {
5569
5569
  if (e == null || e.length == 0)
package/dist/index.d.ts CHANGED
@@ -688,7 +688,7 @@ export declare interface GroupedHeaderOption {
688
688
  values: TableColumn[];
689
689
  }
690
690
 
691
- export declare function guardRoute(to: RouteLocationNormalized, from: RouteLocationNormalized, restrictedName: string): {
691
+ export declare function guardRoute(to: RouteLocationNormalized | any, from: RouteLocationNormalized | any, restrictedName: string): {
692
692
  path: string;
693
693
  name?: undefined;
694
694
  } | {
@@ -1249,7 +1249,7 @@ export declare function toCamelCase(value: any): any;
1249
1249
 
1250
1250
  export declare function toCompareString(str?: string): string | null;
1251
1251
 
1252
- export declare function toggleCSV(value?: string, tag?: string): string | null;
1252
+ export declare function toggleCSV(value?: string | string[], tag?: string): string | null;
1253
1253
 
1254
1254
  export declare function twiddleThumbs(mSec?: number): Promise<void>;
1255
1255
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bt-core-app",
3
- "version": "1.4.424",
3
+ "version": "1.4.426",
4
4
  "description": "Core app tools for some basic features like navigation, authentication, server apis, and cosmetics",
5
5
  "homepage": "https://github.com/BlitzItTech/bt-core",
6
6
  "bugs": {