@jsonui/core 0.1.1 → 0.3.0
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/cjs/index.js +11 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/utils/util.d.ts +1 -0
- package/dist/esm/index.js +11 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/utils/util.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +2 -2
|
@@ -16,3 +16,4 @@ export declare const changeRelativePath: (path: string) => string;
|
|
|
16
16
|
export declare function mergeDeep(target: any, ...sources: any): any;
|
|
17
17
|
export declare const collectObjMerge: (refConst: string, json: any) => {};
|
|
18
18
|
export declare const collectObjToArray: (refConst: string, json: any) => any[];
|
|
19
|
+
export declare const isCircular: (d: any) => boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -190,6 +190,7 @@ declare const changeRelativePath: (path: string) => string;
|
|
|
190
190
|
declare function mergeDeep(target: any, ...sources: any): any;
|
|
191
191
|
declare const collectObjMerge: (refConst: string, json: any) => {};
|
|
192
192
|
declare const collectObjToArray: (refConst: string, json: any) => any[];
|
|
193
|
+
declare const isCircular: (d: any) => boolean;
|
|
193
194
|
|
|
194
195
|
declare const util_d_findLastIndex: typeof findLastIndex;
|
|
195
196
|
declare const util_d_drop: typeof drop;
|
|
@@ -204,6 +205,7 @@ declare const util_d_changeRelativePath: typeof changeRelativePath;
|
|
|
204
205
|
declare const util_d_mergeDeep: typeof mergeDeep;
|
|
205
206
|
declare const util_d_collectObjMerge: typeof collectObjMerge;
|
|
206
207
|
declare const util_d_collectObjToArray: typeof collectObjToArray;
|
|
208
|
+
declare const util_d_isCircular: typeof isCircular;
|
|
207
209
|
declare namespace util_d {
|
|
208
210
|
export {
|
|
209
211
|
util_d_findLastIndex as findLastIndex,
|
|
@@ -219,6 +221,7 @@ declare namespace util_d {
|
|
|
219
221
|
util_d_mergeDeep as mergeDeep,
|
|
220
222
|
util_d_collectObjMerge as collectObjMerge,
|
|
221
223
|
util_d_collectObjToArray as collectObjToArray,
|
|
224
|
+
util_d_isCircular as isCircular,
|
|
222
225
|
};
|
|
223
226
|
}
|
|
224
227
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonui/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"rollup-plugin-visualizer": "^5.5.4",
|
|
57
57
|
"ts-jest": "^27.1.3"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "f0735aa16e801f97232fa951c479ab59f4d10758"
|
|
60
60
|
}
|