@json-layout/core 1.12.5 → 1.13.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/package.json +2 -2
- package/src/i18n/de.js +2 -0
- package/src/i18n/en.js +2 -0
- package/src/i18n/fr.js +2 -0
- package/src/i18n/nl.js +2 -0
- package/src/i18n/types.ts +2 -0
- package/src/state/state-node.js +0 -1
- package/types/compile/index.d.ts +16 -0
- package/types/compile/index.d.ts.map +1 -0
- package/types/compile/options.d.ts +6 -0
- package/types/compile/options.d.ts.map +1 -0
- package/types/compile/serialize.d.ts +6 -0
- package/types/compile/serialize.d.ts.map +1 -0
- package/types/compile/skeleton-node.d.ts +21 -0
- package/types/compile/skeleton-node.d.ts.map +1 -0
- package/types/compile/skeleton-tree.d.ts +19 -0
- package/types/compile/skeleton-tree.d.ts.map +1 -0
- package/types/compile/types.d.ts +62 -0
- package/types/compile/types.d.ts.map +1 -0
- package/types/compile/utils/resolve-refs.d.ts +17 -0
- package/types/compile/utils/resolve-refs.d.ts.map +1 -0
- package/types/compile/utils/x-i18n.d.ts +2 -0
- package/types/compile/utils/x-i18n.d.ts.map +1 -0
- package/types/i18n/de.d.ts +43 -0
- package/types/i18n/de.d.ts.map +1 -0
- package/types/i18n/en.d.ts +43 -0
- package/types/i18n/en.d.ts.map +1 -0
- package/types/i18n/fr.d.ts +43 -0
- package/types/i18n/fr.d.ts.map +1 -0
- package/types/i18n/index.d.ts +8 -0
- package/types/i18n/index.d.ts.map +1 -0
- package/types/i18n/nl.d.ts +43 -0
- package/types/i18n/nl.d.ts.map +1 -0
- package/types/i18n/types.d.ts +42 -0
- package/types/i18n/types.d.ts.map +1 -0
- package/types/index.d.ts +5 -0
- package/types/index.d.ts.map +1 -0
- package/types/state/index.d.ts +286 -0
- package/types/state/index.d.ts.map +1 -0
- package/types/state/options.d.ts +11 -0
- package/types/state/options.d.ts.map +1 -0
- package/types/state/state-node.d.ts +39 -0
- package/types/state/state-node.d.ts.map +1 -0
- package/types/state/state-tree.d.ts +13 -0
- package/types/state/state-tree.d.ts.map +1 -0
- package/types/state/types.d.ts +191 -0
- package/types/state/types.d.ts.map +1 -0
- package/types/state/utils/display.d.ts +51 -0
- package/types/state/utils/display.d.ts.map +1 -0
- package/types/state/utils/immutable.d.ts +21 -0
- package/types/state/utils/immutable.d.ts.map +1 -0
- package/types/state/utils/regexps.d.ts +6 -0
- package/types/state/utils/regexps.d.ts.map +1 -0
- package/types/state/utils/urls.d.ts +2 -0
- package/types/state/utils/urls.d.ts.map +1 -0
- package/types/utils/build.d.ts +5 -0
- package/types/utils/build.d.ts.map +1 -0
- package/types/utils/clone.d.ts +2 -0
- package/types/utils/clone.d.ts.map +1 -0
- package/types/utils/doc-options.d.ts +14 -0
- package/types/utils/doc-options.d.ts.map +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regexps.d.ts","sourceRoot":"","sources":["../../../src/state/utils/regexps.js"],"names":[],"mappings":"AAGA;;;GAGG;AACH,+BAHW,MAAM,GACJ,MAAM,CAKlB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"urls.d.ts","sourceRoot":"","sources":["../../../src/state/utils/urls.js"],"names":[],"mappings":"AAEO,6BAA4B,MAAM,WAAoB,MAAM,OAIlE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/utils/build.js"],"names":[],"mappings":"AAEA,uBAAuB;AACvB,2BADW,MAAM,EAAE,CASlB;AAED,yBAAyB;AACzB,gCADW,MAAM,EAAE,EAAE,CASpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clone.d.ts","sourceRoot":"","sources":["../../src/utils/clone.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @typedef {{key: string, description: string, default?: any, values?: Record<string, any>}[]} DocOptions
|
|
3
|
+
*/
|
|
4
|
+
/** @type {DocOptions} */
|
|
5
|
+
export const compileOptions: DocOptions;
|
|
6
|
+
/** @type {DocOptions} */
|
|
7
|
+
export const runtimeOptions: DocOptions;
|
|
8
|
+
export type DocOptions = {
|
|
9
|
+
key: string;
|
|
10
|
+
description: string;
|
|
11
|
+
default?: any;
|
|
12
|
+
values?: Record<string, any>;
|
|
13
|
+
}[];
|
|
14
|
+
//# sourceMappingURL=doc-options.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"doc-options.d.ts","sourceRoot":"","sources":["../../src/utils/doc-options.js"],"names":[],"mappings":"AAEA;;GAEG;AAEH,yBAAyB;AACzB,6BADW,UAAU,CAiGpB;AAED,yBAAyB;AACzB,6BADW,UAAU,CAmHpB;yBAzNY;IAAC,GAAG,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,GAAG,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAAC,EAAE"}
|