@es-joy/jsoe 0.26.1 → 0.28.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.
Files changed (158) hide show
  1. package/.gitignore +10 -0
  2. package/.npmignore +9 -0
  3. package/CHANGES.md +76 -0
  4. package/README.md +6 -4
  5. package/badges/coverage-badge.svg +1 -1
  6. package/badges/tests-badge.svg +1 -0
  7. package/dist/formats/schema.d.ts +11 -0
  8. package/dist/formats/schema.d.ts.map +1 -1
  9. package/dist/formats/structuredCloning.d.ts.map +1 -1
  10. package/dist/fundamentalTypes/arrayType.d.ts.map +1 -1
  11. package/dist/fundamentalTypes/stringType.d.ts.map +1 -1
  12. package/dist/index.js +2 -2
  13. package/dist/index.js.map +1 -1
  14. package/dist/typeChoices.d.ts +32 -2
  15. package/dist/typeChoices.d.ts.map +1 -1
  16. package/dist/types.d.ts +8 -2
  17. package/dist/types.d.ts.map +1 -1
  18. package/dist/utils/rawTypesonEditor.d.ts +110 -0
  19. package/dist/utils/rawTypesonEditor.d.ts.map +1 -0
  20. package/dist/vendor-imports.d.ts +4 -0
  21. package/docs/proposals/raw-typeson-edit-view.md +575 -0
  22. package/eslint.config.js +36 -27
  23. package/mmr.json +6 -0
  24. package/package.json +22 -12
  25. package/pnpm-workspace.yaml +4 -2
  26. package/src/formats/schema.js +38 -7
  27. package/src/formats/structuredCloning.js +24 -17
  28. package/src/fundamentalTypes/arrayType.js +135 -7
  29. package/src/fundamentalTypes/stringType.js +5 -0
  30. package/src/jsoe.css +12 -0
  31. package/src/typeChoices.js +39 -8
  32. package/src/types.js +20 -2
  33. package/src/utils/rawTypesonEditor.js +669 -0
  34. package/src/vendor-imports.js +12 -0
  35. package/tsconfig.json +1 -1
  36. package/typings/json-6.d.ts +12 -0
  37. package/vendor/@codemirror/autocomplete/dist/index.js +2125 -0
  38. package/vendor/@codemirror/commands/dist/index.js +1826 -0
  39. package/vendor/@codemirror/lang-javascript/dist/index.js +513 -0
  40. package/vendor/@codemirror/language/dist/index.js +2693 -0
  41. package/vendor/@codemirror/lint/dist/index.js +956 -0
  42. package/vendor/@codemirror/search/dist/index.js +1238 -0
  43. package/vendor/@codemirror/state/dist/index.js +3947 -0
  44. package/vendor/@codemirror/view/dist/index.js +11867 -0
  45. package/vendor/@lezer/common/dist/index.js +2202 -0
  46. package/vendor/@lezer/highlight/dist/index.js +927 -0
  47. package/vendor/@lezer/javascript/dist/index.js +192 -0
  48. package/vendor/@lezer/lr/dist/index.js +1889 -0
  49. package/vendor/@marijn/find-cluster-break/src/index.js +87 -0
  50. package/vendor/codemirror/dist/index.js +96 -0
  51. package/vendor/crelt/index.js +28 -0
  52. package/vendor/json-6/dist/index.mjs +1783 -0
  53. package/vendor/style-mod/src/style-mod.js +172 -0
  54. package/vendor/typeson-registry/dist/index.js +83 -10
  55. package/vendor/w3c-keyname/index.js +119 -0
  56. package/vendor/zod/classic/checks.d.ts +1 -1
  57. package/vendor/zod/classic/checks.js +1 -1
  58. package/vendor/zod/classic/external.d.ts +1 -1
  59. package/vendor/zod/classic/external.js +1 -1
  60. package/vendor/zod/classic/from-json-schema.js +245 -24
  61. package/vendor/zod/classic/schemas.d.ts +17 -1
  62. package/vendor/zod/classic/schemas.js +77 -29
  63. package/vendor/zod/core/api.d.ts +6 -4
  64. package/vendor/zod/core/api.js +17 -2
  65. package/vendor/zod/core/checks.d.ts +1 -1
  66. package/vendor/zod/core/checks.js +0 -96
  67. package/vendor/zod/core/compile.d.ts +18 -4
  68. package/vendor/zod/core/compile.js +146 -67
  69. package/vendor/zod/core/doc.js +7 -2
  70. package/vendor/zod/core/errors.js +2 -5
  71. package/vendor/zod/core/json-schema-generator.js +2 -2
  72. package/vendor/zod/core/json-schema-processors.d.ts +17 -0
  73. package/vendor/zod/core/json-schema-processors.js +195 -64
  74. package/vendor/zod/core/memoizer.js +72 -23
  75. package/vendor/zod/core/parse.js +37 -16
  76. package/vendor/zod/core/regexes.d.ts +2 -0
  77. package/vendor/zod/core/regexes.js +8 -4
  78. package/vendor/zod/core/schemas.d.ts +42 -7
  79. package/vendor/zod/core/schemas.js +301 -94
  80. package/vendor/zod/core/to-json-schema.d.ts +7 -3
  81. package/vendor/zod/core/to-json-schema.js +8 -7
  82. package/vendor/zod/core/util.d.ts +25 -4
  83. package/vendor/zod/core/util.js +160 -143
  84. package/vendor/zod/core/versions.d.ts +1 -1
  85. package/vendor/zod/core/versions.js +2 -2
  86. package/vendor/zod/core/visit.js +12 -0
  87. package/vendor/zod/locales/ar.js +1 -0
  88. package/vendor/zod/locales/az.js +1 -0
  89. package/vendor/zod/locales/be.js +1 -0
  90. package/vendor/zod/locales/bg.js +1 -0
  91. package/vendor/zod/locales/bn.js +1 -0
  92. package/vendor/zod/locales/ca.js +1 -0
  93. package/vendor/zod/locales/ckb.js +1 -0
  94. package/vendor/zod/locales/cs.js +1 -0
  95. package/vendor/zod/locales/da.js +1 -0
  96. package/vendor/zod/locales/de.js +1 -0
  97. package/vendor/zod/locales/el.js +1 -0
  98. package/vendor/zod/locales/en.js +1 -0
  99. package/vendor/zod/locales/eo.js +1 -0
  100. package/vendor/zod/locales/es.js +1 -0
  101. package/vendor/zod/locales/fa.js +1 -0
  102. package/vendor/zod/locales/fi.js +1 -0
  103. package/vendor/zod/locales/fr-CA.js +1 -0
  104. package/vendor/zod/locales/fr.js +1 -0
  105. package/vendor/zod/locales/gu.js +1 -0
  106. package/vendor/zod/locales/he.js +1 -0
  107. package/vendor/zod/locales/hi.js +1 -0
  108. package/vendor/zod/locales/hr.js +1 -0
  109. package/vendor/zod/locales/hu.js +1 -0
  110. package/vendor/zod/locales/hy.js +1 -0
  111. package/vendor/zod/locales/id.js +1 -0
  112. package/vendor/zod/locales/index.d.ts +1 -0
  113. package/vendor/zod/locales/index.js +1 -0
  114. package/vendor/zod/locales/is.js +1 -0
  115. package/vendor/zod/locales/it.js +1 -0
  116. package/vendor/zod/locales/ja.js +1 -0
  117. package/vendor/zod/locales/ka.js +1 -0
  118. package/vendor/zod/locales/km.js +1 -0
  119. package/vendor/zod/locales/kn.js +1 -0
  120. package/vendor/zod/locales/ko.js +1 -0
  121. package/vendor/zod/locales/lt.js +1 -0
  122. package/vendor/zod/locales/mk.js +1 -0
  123. package/vendor/zod/locales/ms.js +1 -0
  124. package/vendor/zod/locales/ne.js +1 -0
  125. package/vendor/zod/locales/nl.js +1 -0
  126. package/vendor/zod/locales/nn.js +1 -0
  127. package/vendor/zod/locales/no.js +1 -0
  128. package/vendor/zod/locales/ota.js +1 -0
  129. package/vendor/zod/locales/pl.js +1 -0
  130. package/vendor/zod/locales/ps.js +1 -0
  131. package/vendor/zod/locales/pt-BR.js +1 -0
  132. package/vendor/zod/locales/pt.js +1 -0
  133. package/vendor/zod/locales/ro.js +1 -0
  134. package/vendor/zod/locales/ru.js +1 -0
  135. package/vendor/zod/locales/sk.js +1 -0
  136. package/vendor/zod/locales/sl.js +1 -0
  137. package/vendor/zod/locales/sv.js +1 -0
  138. package/vendor/zod/locales/ta.js +1 -0
  139. package/vendor/zod/locales/tg.d.ts +4 -0
  140. package/vendor/zod/locales/tg.js +116 -0
  141. package/vendor/zod/locales/th.js +1 -0
  142. package/vendor/zod/locales/tk.js +1 -0
  143. package/vendor/zod/locales/tr.js +1 -0
  144. package/vendor/zod/locales/uk.js +1 -0
  145. package/vendor/zod/locales/ur.js +1 -0
  146. package/vendor/zod/locales/uz.js +1 -0
  147. package/vendor/zod/locales/vi.js +1 -0
  148. package/vendor/zod/locales/yo.js +1 -0
  149. package/vendor/zod/locales/zh-CN.js +1 -0
  150. package/vendor/zod/locales/zh-TW.js +1 -0
  151. package/vendor/zod/mini/checks.d.ts +1 -1
  152. package/vendor/zod/mini/checks.js +1 -1
  153. package/vendor/zod/mini/external.d.ts +1 -1
  154. package/vendor/zod/mini/external.js +1 -1
  155. package/vendor/zod/mini/schemas.d.ts +8 -0
  156. package/vendor/zod/mini/schemas.js +19 -2
  157. package/vendor/zodexy/dist/esm/index.js +34 -1
  158. package/vendor/zodexy/dist/schema.zodexy.json +18 -0
package/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ node_modules
2
+ ignore
3
+ proj.json
4
+ coverage
5
+ cypress/downloads
6
+ cypress/screenshots
7
+ # instrumented # Disable for now for Cypress Cloud
8
+ /dist
9
+ .agents
10
+ skills-lock.json
package/.npmignore ADDED
@@ -0,0 +1,9 @@
1
+ cypress
2
+ coverage
3
+ instrumented
4
+ .nyc_output
5
+ .github
6
+ cypress.config.ts
7
+ demo
8
+ .agents
9
+ skills-lock.json
package/CHANGES.md CHANGED
@@ -1,5 +1,81 @@
1
1
  # CHANGES TO `@es-joy/jsoe`
2
2
 
3
+ ## 0.28.0
4
+
5
+ - feat: add raw Typeson/JSON6 "View raw"/"Edit raw" buttons to every
6
+ object/array-family control (`object`, `array`, `set`, `map`, `record`,
7
+ `tuple`, `filelist`), including the root control
8
+ - New `Types` constructor options: `showRawTypesonControls` (default
9
+ `true`) shows or hides the buttons entirely; `allowUnsafeEval`
10
+ (default `false`) additionally offers editing/seeding the same value
11
+ as literal, `eval`'d JS source instead of Typeson/JSON6
12
+ - New `src/utils/rawTypesonEditor.js` opens a dialog with a
13
+ syntax-highlighted (CodeMirror 6) editor; Save re-populates the
14
+ control's children via the same walk `structuredCloning`'s `iterate`
15
+ already uses for building them, then re-validates. A schema-driven
16
+ control's raw edit is also checked against its own schema before
17
+ being accepted
18
+ - New dependencies `json-6` (parsing only — its own `stringify` has a
19
+ string-value-quoting bug, worked around locally) and CodeMirror 6,
20
+ vendored for the bundler-less demo pages
21
+ - Eval-mode source reconstruction covers `Date`/`RegExp`/`Map`/`Set`/
22
+ `Symbol`/boxed primitives/the `Error` family (including `cause` and
23
+ `AggregateError`'s nested errors)/`DOMException`/`DOMRect`/`DOMPoint`/
24
+ `DOMMatrix`/`ArrayBuffer`/`DataView`/typed arrays (including
25
+ `Float16Array`)/`Blob`/`File`/`FileList`/`-0`; a `Promise` or an
26
+ unrecognized class instance throws a clear error instead of silently
27
+ producing a same-shaped-but-wrong value
28
+ - New demo: `demo/index-unsafe-eval.html`
29
+ - fix: resetting an object/array-family control's legend numbering
30
+ (`$resetItemIndex`, used after a raw-value replace) now resets to the
31
+ container's own true starting baseline instead of an array-specific
32
+ `-1`, so replacing a container's content without changing its property
33
+ count keeps each unchanged property's legend number the same as before
34
+ the edit
35
+
36
+ ## 0.27.0
37
+
38
+ - feat: add `properties` schema support: a zodexy `{type: 'properties'}` node
39
+ (Zod 4.5+ `z.properties()`) is now edited, viewed, and preloaded through the
40
+ same `object` UI, differing from `object` in that it has no `catchall` and
41
+ does not strip properties outside its declared shape.
42
+ - `{type: 'properties'}` maps to the fundamental `object` type
43
+ (`zodexToStructuredCloningTypeMap`), so it reuses the object editor;
44
+ `getTypesForSchema` handles it alongside `object`.
45
+ - A preloaded key that is *not* in the declared shape is kept (not
46
+ stripped) and rendered as a free property offered the unconstrained
47
+ type choice, the same treatment a `looseRecord`'s non-conforming entry
48
+ gets. `convertFromTypeson` (`formats/schema.js`) and `getChildSchema`
49
+ (`fundamentalTypes/arrayType.js`) return `{type: 'unknown'}` for such a
50
+ key. See the related `fix:` below for why.
51
+ - Because it renders as an `object`, a `properties` node would otherwise be
52
+ an indistinguishable "Object" in the type pull-down (`types.js`
53
+ `getOptionForType`) and the edit-mode container-heading tooltip
54
+ (`arrayType.js`); it is now named "Properties" when the schema carries
55
+ no `meta` label of its own. `xor`-branch labels
56
+ (`typeChoices.js` `deriveXorBranchLabel`) likewise treat it as a
57
+ property bag.
58
+ - A new `isPropertyBagType` helper (`object` or `properties`) lets
59
+ `mergeSchema` merge the declared property schemas of two intersected
60
+ `properties` nodes — the previous `type !== 'object'` guard returned
61
+ early and silently dropped the right branch's properties — and lets
62
+ `isValueValidationRequired` treat `properties` like `object` (its
63
+ per-property controls already carry their own schemas, so no
64
+ value-level reparse is needed).
65
+ - fix: a preloaded property outside an `object` schema's declared shape, when
66
+ the schema has no `catchall`, is now edited through the unconstrained type
67
+ choice (`{type: 'unknown'}`) instead of an "unschema'd" control. Previously
68
+ `convertFromTypeson` returned the value's bare runtime type while
69
+ `getChildSchema` returned `undefined`, so the type-chooser was built with
70
+ no `schemaContent` and could render an extra, stray control (e.g. a number
71
+ widget beside the string input). `{type: 'unknown'}` expands to the full
72
+ candidate-type set, so the lossless-match pass picks the single control
73
+ matching the value and still offers the `<select>` to change it — the same
74
+ handling `properties` and a `looseRecord`'s non-conforming entry get. A
75
+ strict `object` still strips the key on parse; this governs only how it is
76
+ edited.
77
+ - feat: add `iban` string kind
78
+
3
79
  ## 0.26.1
4
80
 
5
81
  - fix: validate invalid regexp source edits
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  [![Licenses badge](https://raw.githubusercontent.com/es-joy/jsoe/main/badges/licenses-badge.svg?sanitize=true)](badges/licenses-badge.svg)
2
- [![coverage badge](https://raw.githubusercontent.com/es-joy/jsoe/main/badges/coverage-badge.svg?sanitize=true)](badges/coverage-badge.svg)
2
+
3
+ [![Tests badge](./badges/tests-badge.svg)](badges/tests-badge.svg)
4
+ [![coverage badge](./badges/coverage-badge.svg)](badges/coverage-badge.svg)
3
5
 
4
6
  # @es-joy/jsoe
5
7
 
@@ -119,7 +121,7 @@ Supported supertypes include:
119
121
 
120
122
  ## To-dos
121
123
 
122
- 1. Ability to replace content with raw JSON/Typeson/Safe Eval (no functions in default mode, etc.)/AI (including speech-to-text) if it validates
124
+ 1. Ability to replace content with raw [JSON6](https://github.com/d3x0r/JSON6)/Typeson/Safe Eval (no functions in default mode, etc.)/AI (including speech-to-text) if it validates
123
125
  1. Expand fundamental types
124
126
  1. Not in typeson-registry
125
127
  1. Structured Cloning
@@ -129,11 +131,11 @@ Supported supertypes include:
129
131
  1. Structured Cloning
130
132
  1. (JavaScript types already complete)
131
133
  1. Web/API types
134
+ 1. quotaexceedederror
135
+ 1. webtransporterror
132
136
  1. imagedata
133
137
  1. imagebitmap
134
138
  1. domquad
135
- 1. quotaexceedederror
136
- 1. webtransporterror
137
139
  1. cryptokey
138
140
  1. audiodata
139
141
  1. encodedaudiochunk
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="414" height="20"><defs><style>text{font-size:11px;font-family:Verdana,DejaVu Sans,Geneva,sans-serif}text.shadow{fill:#010101;fill-opacity:.3}text.high{fill:#fff}</style><linearGradient id="smooth" x2="0" y2="100%"><stop offset="0" stop-color="#aaa" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><mask id="round"><rect width="100%" height="100%" rx="3" fill="#fff"/></mask></defs><g id="bg" mask="url(#round)"><path fill="orange" stroke="#000" d="M0 0h120v20H0zM120 0h109v20H120zM229 0h80v20h-80zM309 0h105v20H309z"/><path fill="url(#smooth)" d="M0 0h414v20H0z"/></g><g id="fg"><text class="shadow" x="5.5" y="15">Statements 37.92%</text><text class="high" x="5" y="14">Statements 37.92%</text><text class="shadow" x="125.5" y="15">Branches 19.93%</text><text class="high" x="125" y="14">Branches 19.93%</text><text class="shadow" x="234.5" y="15">Lines 37.3%</text><text class="high" x="234" y="14">Lines 37.3%</text><text class="shadow" x="314.5" y="15">Functions 29.5%</text><text class="high" x="314" y="14">Functions 29.5%</text></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="421" height="20"><defs><style>text{font-size:11px;font-family:Verdana,DejaVu Sans,Geneva,sans-serif}text.shadow{fill:#010101;fill-opacity:.3}text.high{fill:#fff}</style><linearGradient id="smooth" x2="0" y2="100%"><stop offset="0" stop-color="#aaa" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><mask id="round"><rect width="100%" height="100%" rx="3" fill="#fff"/></mask></defs><g id="bg" mask="url(#round)"><path fill="orange" stroke="#000" d="M0 0h113v20H0zM113 0h109v20H113zM222 0h87v20h-87zM309 0h112v20H309z"/><path fill="url(#smooth)" d="M0 0h421v20H0z"/></g><g id="fg"><text class="shadow" x="5.5" y="15">Statements 96.7%</text><text class="high" x="5" y="14">Statements 96.7%</text><text class="shadow" x="118.5" y="15">Branches 93.41%</text><text class="high" x="118" y="14">Branches 93.41%</text><text class="shadow" x="227.5" y="15">Lines 96.76%</text><text class="high" x="227" y="14">Lines 96.76%</text><text class="shadow" x="314.5" y="15">Functions 97.57%</text><text class="high" x="314" y="14">Functions 97.57%</text></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="97" height="20"><defs><style>text{font-size:11px;font-family:Verdana,DejaVu Sans,Geneva,sans-serif}text.shadow{fill:#010101;fill-opacity:.3}text.high{fill:#fff}</style><linearGradient id="smooth" x2="0" y2="100%"><stop offset="0" stop-color="#aaa" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><mask id="round"><rect width="100%" height="100%" fill="#fff" rx="3"/></mask></defs><g id="bg" mask="url(#round)"><path fill="#696969" d="M0 0h41v20H0z"/><path fill="#e05d44" d="M41 0h56v20H41z"/><path fill="url(#smooth)" d="M0 0h97v20H0z"/></g><g id="fg"><text x="5.5" y="15" class="shadow">Tests</text><text x="5" y="14" class="high">Tests</text><text x="46.5" y="15" class="shadow">795/797</text><text x="46" y="14" class="high">795/797</text></g></svg>
@@ -1,3 +1,13 @@
1
+ /**
2
+ * Exported for reuse by `src/utils/rawTypesonEditor.js`, which must enforce
3
+ * the same schema conformance check before accepting a raw-edited value.
4
+ * @param {InstanceType<typeof import('../types.js').default>} types
5
+ * @param {ZodexSchema} schemaObject
6
+ * @param {ZodexSchema} originalShape
7
+ * @param {unknown} value
8
+ * @returns {ReturnType<ReturnType<typeof dezerialize>['safeParse']>}
9
+ */
10
+ export function parseValue(types: InstanceType<typeof import("../types.js").default>, schemaObject: ZodexSchema, originalShape: ZodexSchema, value: unknown): ReturnType<ReturnType<typeof dezerialize>["safeParse"]>;
1
11
  /**
2
12
  * Checks whether a record property name satisfies the record's `key` schema.
3
13
  *
@@ -55,6 +65,7 @@ export type ValueOf<T> = T[keyof T];
55
65
  export type AvailableZodexType = ValueOf<Pick<import("zodexy").SzType, "type">>;
56
66
  export type ZodexSchema = import("zodexy").SzType;
57
67
  export type NestedObject = import("../utils/objects.js").NestedObject;
68
+ import { dezerialize } from 'zodexy';
58
69
  /** @type {import('../formats.js').Format} */
59
70
  declare const schema: import("../formats.js").Format;
60
71
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/formats/schema.js"],"names":[],"mappings":"AAqOA;;;;;;;;;;;;;GAaG;AACH,yCALW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,aAClD,WAAW,GAAC,SAAS,OACrB,MAAM,GAAC,MAAM,GAAC,SAAS,GACrB,OAAO,CAenB;AAED;;;;;;;;GAQG;AACH,6CALW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,aAClD,OAAO,QAAQ,EAAE,OAAO,SACxB,OAAO,GACL;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAC,CAW5C;AAED;;;;;;;;GAQG;AACH,0CALW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,UAClD,WAAW,SACX,OAAO,GACL,OAAO,CAInB;AAiDD;;;GAGG;AACH,kDAHW,WAAW,GACT,WAAW,CAIvB;AAyND;;;;GAIG;AACH,gDAJW,WAAW,gBACX,WAAW,GACT,GAAG,CAAC,WAAW,CAAC,CA6R5B;;;;;oBAp0BY,CAAC,IADD,CAAC,CAAC,MAAM,CAAC,CAAC;iCAKV,OAAO,CACf,IAAI,CAAC,OAAO,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,CACtC;0BAwSS,OAAO,QAAQ,EAAE,MAAM;2BAGvB,OAAO,qBAAqB,EAAE,YAAY;AAqhBvD,6CAA6C;AAC7C,sBADW,OAAO,eAAe,EAAE,MAAM,CA+SvC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/formats/schema.js"],"names":[],"mappings":"AAmMA;;;;;;;;GAQG;AACH,kCANW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,gBAClD,WAAW,iBACX,WAAW,SACX,OAAO,GACL,UAAU,CAAC,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC,WAAW,CAAC,CAAC,CASnE;AAwBD;;;;;;;;;;;;;GAaG;AACH,yCALW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,aAClD,WAAW,GAAC,SAAS,OACrB,MAAM,GAAC,MAAM,GAAC,SAAS,GACrB,OAAO,CAenB;AAED;;;;;;;;GAQG;AACH,6CALW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,aAClD,OAAO,QAAQ,EAAE,OAAO,SACxB,OAAO,GACL;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAC,CAW5C;AAED;;;;;;;;GAQG;AACH,0CALW,YAAY,CAAC,cAAc,aAAa,EAAE,OAAO,CAAC,UAClD,WAAW,SACX,OAAO,GACL,OAAO,CAInB;AAiDD;;;GAGG;AACH,kDAHW,WAAW,GACT,WAAW,CAIvB;AAsOD;;;;GAIG;AACH,gDAJW,WAAW,gBACX,WAAW,GACT,GAAG,CAAC,WAAW,CAAC,CA8R5B;;;;;oBAx1BY,CAAC,IADD,CAAC,CAAC,MAAM,CAAC,CAAC;iCAKV,OAAO,CACf,IAAI,CAAC,OAAO,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,CACtC;0BA8SS,OAAO,QAAQ,EAAE,MAAM;2BAGvB,OAAO,qBAAqB,EAAE,YAAY;4BAnU7B,QAAQ;AAs2BlC,6CAA6C;AAC7C,sBADW,OAAO,eAAe,EAAE,MAAM,CA0TvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"structuredCloning.d.ts","sourceRoot":"","sources":["../../src/formats/structuredCloning.js"],"names":[],"mappings":"AAaA,4CAA4C;AAC5C,2BADW,OAAO,SAAS,EAAE,WAAW,CActC;AAEF,iGAkBE;;;;;;oCA0BW,CAAC,IAAI,EAAE;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,aAAa,EAAE,sBAAsB,CAAC;IACnD,KAAK,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACpD,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,sBAAsB,EAAE,WAAW,CAAC;IAC3D,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,KAAK,WAAW,GAAC,IAAI;kCAIZ,OAAO,kBAAkB,EAAE,mBAAmB;AAsgB3D,6CAA6C;AAC7C,iCADW,OAAO,eAAe,EAAE,MAAM,CA2JvC"}
1
+ {"version":3,"file":"structuredCloning.d.ts","sourceRoot":"","sources":["../../src/formats/structuredCloning.js"],"names":[],"mappings":"AAaA,4CAA4C;AAC5C,2BADW,OAAO,SAAS,EAAE,WAAW,CActC;AAEF,iGAkBE;;;;;;oCA0BW,CAAC,IAAI,EAAE;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,aAAa,EAAE,sBAAsB,CAAC;IACnD,KAAK,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACpD,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,sBAAsB,EAAE,WAAW,CAAC;IAC3D,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,KAAK,WAAW,GAAC,IAAI;kCAIZ,OAAO,kBAAkB,EAAE,mBAAmB;AA6gB3D,6CAA6C;AAC7C,iCADW,OAAO,eAAe,EAAE,MAAM,CA2JvC"}
@@ -1 +1 @@
1
- {"version":3,"file":"arrayType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/arrayType.js"],"names":[],"mappings":";0CAoBW;IACN,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,aAAa,EAAE,aAAa,CAAC;IAC1C,KAAK,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACpD,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,OAAO,sBAAsB,EAAE,WAAW,CAAC;CAC3D,KACS,OAAO;sBAIP,MAAM;mDAKN,KAAK,GAAC,OAAO;oCAGb,MAAM,gBAAgB,EAAE;+BAGxB,MAAM,CAAC,iBAAiB,GAAG;IACnC,SAAS,EAAE,OAAO,mBAAmB,EAAE,QAAQ,CAAA;CAChD,CAAC,EAAE;6BAGM,MAAM,IAAI;sCAIV,gBAAgB,EAAE;qCAKlB,IAAI;4BAGJ,MAAM,cAAc,GAAG;IAC/B,sBAAsB,EAAE,qBAAqB,CAAC;IAC9C,kBAAkB,EAAE,iBAAiB,CAAC;IACtC,iBAAiB,EAAE,gBAAgB,CAAC;IACpC,iBAAiB,EAAE,gBAAgB,CAAA;CACpC;uBAGS,MAAM,OAAO,CAAC,IAAI,CAAC;2BAKrB;IAAC,WAAW,CAAC,EAAE,IAAI,CAAA;CAAC,KAClB,IAAI;+BAIJ,MAAM,gBAAgB,GAAC,SAAS;uBAIhC,GAAG;AAmBhB;;GAEG;AACH,yBAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,MAAM,CAAC,EAAE,OAAO,GAAC,SAAS,CAAA;CAAC,CAmlFvE"}
1
+ {"version":3,"file":"arrayType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/arrayType.js"],"names":[],"mappings":";0CAqBW;IACN,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,OAAO,aAAa,EAAE,aAAa,CAAC;IAC1C,KAAK,EAAE,OAAO,eAAe,EAAE,oBAAoB,CAAC;IACpD,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,OAAO,sBAAsB,EAAE,WAAW,CAAC;CAC3D,KACS,OAAO;sBAIP,MAAM;mDAKN,KAAK,GAAC,OAAO;oCAGb,MAAM,gBAAgB,EAAE;+BAGxB,MAAM,CAAC,iBAAiB,GAAG;IACnC,SAAS,EAAE,OAAO,mBAAmB,EAAE,QAAQ,CAAA;CAChD,CAAC,EAAE;6BAGM,MAAM,IAAI;sCAIV,gBAAgB,EAAE;qCAKlB,IAAI;4BAGJ,MAAM,cAAc,GAAG;IAC/B,sBAAsB,EAAE,qBAAqB,CAAC;IAC9C,kBAAkB,EAAE,iBAAiB,CAAC;IACtC,iBAAiB,EAAE,gBAAgB,CAAC;IACpC,iBAAiB,EAAE,gBAAgB,CAAA;CACpC;uBAGS,MAAM,OAAO,CAAC,IAAI,CAAC;2BAKrB;IAAC,WAAW,CAAC,EAAE,IAAI,CAAA;CAAC,KAClB,IAAI;+BAIJ,MAAM,gBAAgB,GAAC,SAAS;uBAIhC,GAAG;AAmBhB;;GAEG;AACH,yBAFU,OAAO,aAAa,EAAE,UAAU,GAAG;IAAC,MAAM,CAAC,EAAE,OAAO,GAAC,SAAS,CAAA;CAAC,CAktFvE"}
@@ -1 +1 @@
1
- {"version":3,"file":"stringType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/stringType.js"],"names":[],"mappings":";AAMA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,CAgVxC"}
1
+ {"version":3,"file":"stringType.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/stringType.js"],"names":[],"mappings":";AAMA;;GAEG;AACH,0BAFU,OAAO,aAAa,EAAE,UAAU,CAqVxC"}