@bizdoc/core 1.14.0-next.4 → 1.14.0-next.5
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/esm2020/lib/browse/browse-items.component.mjs +3 -3
- package/esm2020/lib/compose/form.component.mjs +4 -4
- package/esm2020/lib/core/functions.mjs +7 -7
- package/fesm2015/bizdoc-core.mjs +10 -10
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +10 -10
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/functions.d.ts +6 -3
- package/package.json +1 -1
package/lib/core/functions.d.ts
CHANGED
@@ -19,6 +19,12 @@ export declare function isArray(val: any): val is Array<any>;
|
|
19
19
|
export declare function isString(val: any): val is string;
|
20
20
|
export declare function getWarn(mode?: MaterialMode): string;
|
21
21
|
export declare function playAudio(name: 'notification_simple-01' | 'alert_error-03'): void;
|
22
|
+
/**
|
23
|
+
*
|
24
|
+
* @param o1
|
25
|
+
* @param o2
|
26
|
+
*/
|
27
|
+
export declare function deepAssign(o1: any, o2: any): any;
|
22
28
|
declare global {
|
23
29
|
interface String {
|
24
30
|
decodeId: () => number;
|
@@ -40,9 +46,6 @@ declare global {
|
|
40
46
|
formatArgs(...args: any[]): string;
|
41
47
|
normalize(): string;
|
42
48
|
}
|
43
|
-
interface Object {
|
44
|
-
deepAssign(val1: any, val2: any): any;
|
45
|
-
}
|
46
49
|
}
|
47
50
|
/**
|
48
51
|
*
|
package/package.json
CHANGED