bt-core-app 2.1.31 → 2.1.32
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.
- package/dist/bt-core-app.js +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -5749,7 +5749,7 @@ function zoe() {
|
|
|
5749
5749
|
}
|
|
5750
5750
|
function Hoe(e, t, a) {
|
|
5751
5751
|
var n = "";
|
|
5752
|
-
return Gt(e) || (n = e), Gt(t) || (n = n.length == 0 ? t : `${n} ${t}`), n.length == 0 && !Gt(a) && (n = a), n;
|
|
5752
|
+
return Gt(e) || (n = e), Gt(t) || (n = n.length == 0 ? t : `${n} ${t}`), n.length == 0 && !Gt(a) && (n = a), n.length > 0 ? n : void 0;
|
|
5753
5753
|
}
|
|
5754
5754
|
function FT(e, t, a, n) {
|
|
5755
5755
|
let l = a ?? [];
|
package/dist/index.d.ts
CHANGED
|
@@ -1664,7 +1664,7 @@ export declare interface PathOptions {
|
|
|
1664
1664
|
|
|
1665
1665
|
export declare type PermissionGroup = string[];
|
|
1666
1666
|
|
|
1667
|
-
export declare function personName(firstName?: string, lastName?: string, userName?: string): string;
|
|
1667
|
+
export declare function personName(firstName?: string, lastName?: string, userName?: string): string | undefined;
|
|
1668
1668
|
|
|
1669
1669
|
export declare interface PointerOrTouchEvent extends PointerEvent, TouchEvent {
|
|
1670
1670
|
}
|
package/package.json
CHANGED