jssm 5.147.2 → 5.147.4
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/README.md +7 -7
- package/dist/cdn/instance.js +435 -1023
- package/dist/cdn/viz.js +435 -1023
- package/dist/cli/fsl-export-system-prompt.cjs +1 -1
- package/dist/cli/fsl-render.cjs +1 -1
- package/dist/cli/fsl.cjs +1 -1
- package/dist/cli/lib.cjs +1 -1
- package/dist/cli/lib.mjs +1 -1
- package/dist/deno/README.md +7 -7
- package/dist/deno/jssm.d.ts +6 -2
- package/dist/deno/jssm.js +1 -1
- package/dist/jssm.es5.cjs +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/dist/jssm.es6.mjs +1 -1
- package/dist/jssm_viz.cjs +1 -1
- package/dist/jssm_viz.iife.cjs +1 -1
- package/dist/jssm_viz.mjs +1 -1
- package/jssm.es5.d.cts +6 -2
- package/jssm.es6.d.ts +6 -2
- package/jssm_viz.es5.d.cts +6 -2
- package/jssm_viz.es6.d.ts +6 -2
- package/package.json +1 -1
package/jssm.es5.d.cts
CHANGED
|
@@ -2416,8 +2416,12 @@ declare class Machine<mDT> {
|
|
|
2416
2416
|
* @returns The definition string.
|
|
2417
2417
|
*/
|
|
2418
2418
|
machine_definition(): string;
|
|
2419
|
-
/** Get the machine's language
|
|
2420
|
-
*
|
|
2419
|
+
/** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
|
|
2420
|
+
* `machine_language` directive, which accepts a language name or code, or a
|
|
2421
|
+
* BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
|
|
2422
|
+
* values resolve to `undefined`.
|
|
2423
|
+
* @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
|
|
2424
|
+
* supplied value did not resolve to a known language.
|
|
2421
2425
|
*/
|
|
2422
2426
|
machine_language(): string;
|
|
2423
2427
|
/** Get the machine's license string. Set via the FSL `machine_license` directive.
|
package/jssm.es6.d.ts
CHANGED
|
@@ -2416,8 +2416,12 @@ declare class Machine<mDT> {
|
|
|
2416
2416
|
* @returns The definition string.
|
|
2417
2417
|
*/
|
|
2418
2418
|
machine_definition(): string;
|
|
2419
|
-
/** Get the machine's language
|
|
2420
|
-
*
|
|
2419
|
+
/** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
|
|
2420
|
+
* `machine_language` directive, which accepts a language name or code, or a
|
|
2421
|
+
* BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
|
|
2422
|
+
* values resolve to `undefined`.
|
|
2423
|
+
* @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
|
|
2424
|
+
* supplied value did not resolve to a known language.
|
|
2421
2425
|
*/
|
|
2422
2426
|
machine_language(): string;
|
|
2423
2427
|
/** Get the machine's license string. Set via the FSL `machine_license` directive.
|
package/jssm_viz.es5.d.cts
CHANGED
|
@@ -1752,8 +1752,12 @@ declare class Machine<mDT> {
|
|
|
1752
1752
|
* @returns The definition string.
|
|
1753
1753
|
*/
|
|
1754
1754
|
machine_definition(): string;
|
|
1755
|
-
/** Get the machine's language
|
|
1756
|
-
*
|
|
1755
|
+
/** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
|
|
1756
|
+
* `machine_language` directive, which accepts a language name or code, or a
|
|
1757
|
+
* BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
|
|
1758
|
+
* values resolve to `undefined`.
|
|
1759
|
+
* @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
|
|
1760
|
+
* supplied value did not resolve to a known language.
|
|
1757
1761
|
*/
|
|
1758
1762
|
machine_language(): string;
|
|
1759
1763
|
/** Get the machine's license string. Set via the FSL `machine_license` directive.
|
package/jssm_viz.es6.d.ts
CHANGED
|
@@ -1752,8 +1752,12 @@ declare class Machine<mDT> {
|
|
|
1752
1752
|
* @returns The definition string.
|
|
1753
1753
|
*/
|
|
1754
1754
|
machine_definition(): string;
|
|
1755
|
-
/** Get the machine's language
|
|
1756
|
-
*
|
|
1755
|
+
/** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
|
|
1756
|
+
* `machine_language` directive, which accepts a language name or code, or a
|
|
1757
|
+
* BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
|
|
1758
|
+
* values resolve to `undefined`.
|
|
1759
|
+
* @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
|
|
1760
|
+
* supplied value did not resolve to a known language.
|
|
1757
1761
|
*/
|
|
1758
1762
|
machine_language(): string;
|
|
1759
1763
|
/** Get the machine's license string. Set via the FSL `machine_license` directive.
|