From f7bfaeeb31a34d22b59429bdff68d2de15c8f4d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 13:24:33 +0200 Subject: [PATCH] Version Packages (#114) This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## codemirror-json-schema@0.7.5 ### Patch Changes - [#112](https://github.com/jsonnext/codemirror-json-schema/pull/112) [`ccffa61`](https://github.com/jsonnext/codemirror-json-schema/commit/ccffa6195e45d0eb52ed2253831eb396e930a1cc) Thanks [@acao](https://github.com/acao)! - fixes bundling - remove .js imports and remains as moduleResolution: 'Node' to match cm6 Co-authored-by: github-actions[bot] --- .changeset/funny-countries-explode.md | 5 -- CHANGELOG.md | 6 +++ docs/README.md | 54 ++++++++++----------- docs/classes/JSONCompletion.md | 62 ++++++++++++------------ docs/classes/JSONHover.md | 28 +++++------ docs/classes/JSONValidation.md | 18 +++---- docs/interfaces/JSONCompletionOptions.md | 2 +- docs/interfaces/JSONValidationOptions.md | 8 +-- package.json | 2 +- 9 files changed, 93 insertions(+), 92 deletions(-) delete mode 100644 .changeset/funny-countries-explode.md diff --git a/.changeset/funny-countries-explode.md b/.changeset/funny-countries-explode.md deleted file mode 100644 index fa020ca..0000000 --- a/.changeset/funny-countries-explode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"codemirror-json-schema": patch ---- - -fixes bundling - remove .js imports and remains as moduleResolution: 'Node' to match cm6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bb0e63..e718b1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # codemirror-json-schema +## 0.7.5 + +### Patch Changes + +- [#112](https://github.com/jsonnext/codemirror-json-schema/pull/112) [`ccffa61`](https://github.com/jsonnext/codemirror-json-schema/commit/ccffa6195e45d0eb52ed2253831eb396e930a1cc) Thanks [@acao](https://github.com/acao)! - fixes bundling - remove .js imports and remains as moduleResolution: 'Node' to match cm6 + ## 0.7.4 ### Patch Changes diff --git a/docs/README.md b/docs/README.md index 466b7bf..022d9d5 100644 --- a/docs/README.md +++ b/docs/README.md @@ -74,7 +74,7 @@ Full featured cm6 extension for json, including `@codemirror/lang-json` #### Defined in -[bundled.ts:15](https://github.com/acao/codemirror-json-schema/blob/296617f/src/bundled.ts#L15) +[json/bundled.ts:15](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/json/bundled.ts#L15) ## Codemirror Extensions @@ -108,13 +108,13 @@ provides a JSON schema enabled autocomplete extension for codemirror #### Defined in -[json-completion.ts:948](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L948) +[features/completion.ts:949](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L949) ___ ### jsonSchemaHover -▸ **jsonSchemaHover**(`options?`): (`view`: `EditorView`, `pos`: `number`, `side`: `Side`) => `Promise`<``null`` \| `Tooltip`\> +▸ **jsonSchemaHover**(`options?`): (`view`: `EditorView`, `pos`: `number`, `side`: `Side`) => `Promise`\<``null`` \| `Tooltip`\> provides a JSON schema enabled tooltip extension for codemirror @@ -128,7 +128,7 @@ provides a JSON schema enabled tooltip extension for codemirror `fn` -▸ (`view`, `pos`, `side`): `Promise`<``null`` \| `Tooltip`\> +▸ (`view`, `pos`, `side`): `Promise`\<``null`` \| `Tooltip`\> ##### Parameters @@ -140,11 +140,11 @@ provides a JSON schema enabled tooltip extension for codemirror ##### Returns -`Promise`<``null`` \| `Tooltip`\> +`Promise`\<``null`` \| `Tooltip`\> #### Defined in -[json-hover.ts:45](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L45) +[features/hover.ts:46](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L46) ___ @@ -178,7 +178,7 @@ Helper for simpler class instantiaton #### Defined in -[json-validation.ts:58](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L58) +[features/validation.ts:58](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L58) ## Utilities @@ -201,7 +201,7 @@ retrieve a Map of all the json pointers in a document #### Defined in -[utils/jsonPointers.ts:85](https://github.com/acao/codemirror-json-schema/blob/296617f/src/utils/jsonPointers.ts#L85) +[utils/json-pointers.ts:85](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/utils/json-pointers.ts#L85) ___ @@ -226,7 +226,7 @@ retrieve a JSON pointer for a given position in the editor #### Defined in -[utils/jsonPointers.ts:68](https://github.com/acao/codemirror-json-schema/blob/296617f/src/utils/jsonPointers.ts#L68) +[utils/json-pointers.ts:68](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/utils/json-pointers.ts#L68) ___ @@ -253,7 +253,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function using co #### Defined in -[utils/parseJSONDocument.ts:24](https://github.com/acao/codemirror-json-schema/blob/296617f/src/utils/parseJSONDocument.ts#L24) +[utils/parse-json-document.ts:24](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/utils/parse-json-document.ts#L24) ___ @@ -280,7 +280,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[utils/parseJSONDocument.ts:10](https://github.com/acao/codemirror-json-schema/blob/296617f/src/utils/parseJSONDocument.ts#L10) +[utils/parse-json-document.ts:10](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/utils/parse-json-document.ts#L10) ## Functions @@ -300,7 +300,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[state.ts:25](https://github.com/acao/codemirror-json-schema/blob/296617f/src/state.ts#L25) +[features/state.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/state.ts#L25) ___ @@ -322,7 +322,7 @@ ___ #### Defined in -[utils/jsonPointers.ts:31](https://github.com/acao/codemirror-json-schema/blob/296617f/src/utils/jsonPointers.ts#L31) +[utils/json-pointers.ts:31](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/utils/json-pointers.ts#L31) ___ @@ -342,7 +342,7 @@ ___ #### Defined in -[json-validation.ts:48](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L48) +[features/validation.ts:48](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L48) ___ @@ -363,7 +363,7 @@ ___ #### Defined in -[utils/jsonPointers.ts:18](https://github.com/acao/codemirror-json-schema/blob/296617f/src/utils/jsonPointers.ts#L18) +[utils/json-pointers.ts:18](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/utils/json-pointers.ts#L18) ___ @@ -383,7 +383,7 @@ ___ #### Defined in -[state.ts:29](https://github.com/acao/codemirror-json-schema/blob/296617f/src/state.ts#L29) +[features/state.ts:29](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/state.ts#L29) ___ @@ -404,7 +404,7 @@ ___ #### Defined in -[state.ts:19](https://github.com/acao/codemirror-json-schema/blob/296617f/src/state.ts#L19) +[features/state.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/state.ts#L19) ## Type Aliases @@ -421,17 +421,17 @@ ___ #### Defined in -[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L18) +[features/hover.ts:19](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L19) ___ ### FoundCursorData -Ƭ **FoundCursorData**: `Required`<[`CursorData`](README.md#cursordata)\> +Ƭ **FoundCursorData**: `Required`\<[`CursorData`](README.md#cursordata)\> #### Defined in -[json-hover.ts:20](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L20) +[features/hover.ts:21](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L21) ___ @@ -450,7 +450,7 @@ ___ #### Defined in -[json-hover.ts:24](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L24) +[features/hover.ts:25](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L25) ___ @@ -467,7 +467,7 @@ ___ #### Defined in -[types.ts:6](https://github.com/acao/codemirror-json-schema/blob/296617f/src/types.ts#L6) +[types.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/types.ts#L6) ___ @@ -486,24 +486,24 @@ ___ #### Defined in -[types.ts:11](https://github.com/acao/codemirror-json-schema/blob/296617f/src/types.ts#L11) +[types.ts:11](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/types.ts#L11) ___ ### JSONPointersMap -Ƭ **JSONPointersMap**: `Map`<`string`, [`JSONPointerData`](README.md#jsonpointerdata) \| [`JSONPartialPointerData`](README.md#jsonpartialpointerdata)\> +Ƭ **JSONPointersMap**: `Map`\<`string`, [`JSONPointerData`](README.md#jsonpointerdata) \| [`JSONPartialPointerData`](README.md#jsonpartialpointerdata)\> #### Defined in -[types.ts:20](https://github.com/acao/codemirror-json-schema/blob/296617f/src/types.ts#L20) +[types.ts:20](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/types.ts#L20) ## Variables ### schemaStateField -• `Const` **schemaStateField**: `StateField`<`void` \| `JSONSchema7`\> +• `Const` **schemaStateField**: `StateField`\<`void` \| `JSONSchema7`\> #### Defined in -[state.ts:6](https://github.com/acao/codemirror-json-schema/blob/296617f/src/state.ts#L6) +[features/state.ts:6](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/state.ts#L6) diff --git a/docs/classes/JSONCompletion.md b/docs/classes/JSONCompletion.md index 926f7b7..80bfac2 100644 --- a/docs/classes/JSONCompletion.md +++ b/docs/classes/JSONCompletion.md @@ -53,7 +53,7 @@ #### Defined in -[json-completion.ts:57](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L57) +[features/completion.ts:58](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L58) ## Methods @@ -74,7 +74,7 @@ #### Defined in -[json-completion.ts:774](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L774) +[features/completion.ts:775](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L775) --- @@ -96,7 +96,7 @@ #### Defined in -[json-completion.ts:703](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L703) +[features/completion.ts:704](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L704) --- @@ -117,7 +117,7 @@ #### Defined in -[json-completion.ts:749](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L749) +[features/completion.ts:750](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L750) --- @@ -137,7 +137,7 @@ #### Defined in -[json-completion.ts:784](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L784) +[features/completion.ts:785](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L785) --- @@ -159,7 +159,7 @@ #### Defined in -[json-completion.ts:677](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L677) +[features/completion.ts:678](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L678) --- @@ -179,7 +179,7 @@ #### Defined in -[json-completion.ts:244](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L244) +[features/completion.ts:245](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L245) --- @@ -200,7 +200,7 @@ #### Defined in -[json-completion.ts:791](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L791) +[features/completion.ts:792](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L792) --- @@ -220,13 +220,13 @@ #### Defined in -[json-completion.ts:60](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L60) +[features/completion.ts:61](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L61) --- ### expandSchemaProperty -▸ `Private` **expandSchemaProperty**<`T`\>(`property`, `schema`): `T` +▸ `Private` **expandSchemaProperty**\<`T`\>(`property`, `schema`): `T` #### Type parameters @@ -247,7 +247,7 @@ #### Defined in -[json-completion.ts:862](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L862) +[features/completion.ts:863](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L863) --- @@ -267,7 +267,7 @@ #### Defined in -[json-completion.ts:925](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L925) +[features/completion.ts:926](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L926) --- @@ -292,7 +292,7 @@ #### Defined in -[json-completion.ts:900](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L900) +[features/completion.ts:901](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L901) --- @@ -313,7 +313,7 @@ #### Defined in -[json-completion.ts:496](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L496) +[features/completion.ts:497](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L497) --- @@ -333,7 +333,7 @@ #### Defined in -[json-completion.ts:518](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L518) +[features/completion.ts:519](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L519) --- @@ -356,7 +356,7 @@ #### Defined in -[json-completion.ts:351](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L351) +[features/completion.ts:352](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L352) --- @@ -377,7 +377,7 @@ #### Defined in -[json-completion.ts:468](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L468) +[features/completion.ts:469](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L469) --- @@ -398,7 +398,7 @@ #### Defined in -[json-completion.ts:484](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L484) +[features/completion.ts:485](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L485) --- @@ -419,7 +419,7 @@ #### Defined in -[json-completion.ts:522](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L522) +[features/completion.ts:523](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L523) --- @@ -444,13 +444,13 @@ #### Defined in -[json-completion.ts:253](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L253) +[features/completion.ts:254](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L254) --- ### getReferenceSchema -▸ `Private` **getReferenceSchema**(`schema`, `ref`): `Record`<`string`, `any`\> +▸ `Private` **getReferenceSchema**(`schema`, `ref`): `Record`\<`string`, `any`\> #### Parameters @@ -461,11 +461,11 @@ #### Returns -`Record`<`string`, `any`\> +`Record`\<`string`, `any`\> #### Defined in -[json-completion.ts:881](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L881) +[features/completion.ts:882](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L882) --- @@ -486,13 +486,13 @@ #### Defined in -[json-completion.ts:806](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L806) +[features/completion.ts:807](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L807) --- ### getValueCompletions -▸ `Private` **getValueCompletions**(`schema`, `ctx`, `types`, `collector`): `undefined` \| { `valuePrefix`: `string` } +▸ `Private` **getValueCompletions**(`schema`, `ctx`, `types`, `collector`): `undefined` \| \{ `valuePrefix`: `string` } #### Parameters @@ -505,11 +505,11 @@ #### Returns -`undefined` \| { `valuePrefix`: `string` } +`undefined` \| \{ `valuePrefix`: `string` } #### Defined in -[json-completion.ts:532](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L532) +[features/completion.ts:533](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L533) --- @@ -529,7 +529,7 @@ #### Defined in -[json-completion.ts:921](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L921) +[features/completion.ts:922](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L922) ## Properties @@ -539,7 +539,7 @@ #### Defined in -[json-completion.ts:56](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L56) +[features/completion.ts:57](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L57) --- @@ -549,7 +549,7 @@ #### Defined in -[json-completion.ts:57](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L57) +[features/completion.ts:58](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L58) --- @@ -559,4 +559,4 @@ #### Defined in -[json-completion.ts:55](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L55) +[features/completion.ts:56](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L56) diff --git a/docs/classes/JSONHover.md b/docs/classes/JSONHover.md index a278cd2..5ba4835 100644 --- a/docs/classes/JSONHover.md +++ b/docs/classes/JSONHover.md @@ -35,13 +35,13 @@ #### Defined in -[json-hover.ts:67](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L67) +[features/hover.ts:88](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L88) ## Methods ### doHover -▸ **doHover**(`view`, `pos`, `side`): `Promise`<`null` \| `Tooltip`\> +▸ **doHover**(`view`, `pos`, `side`): `Promise`\<`null` \| `Tooltip`\> #### Parameters @@ -53,11 +53,11 @@ #### Returns -`Promise`<`null` \| `Tooltip`\> +`Promise`\<`null` \| `Tooltip`\> #### Defined in -[json-hover.ts:176](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L176) +[features/hover.ts:203](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L203) --- @@ -77,7 +77,7 @@ #### Defined in -[json-hover.ts:115](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L115) +[features/hover.ts:136](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L136) --- @@ -99,7 +99,7 @@ #### Defined in -[json-hover.ts:74](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L74) +[features/hover.ts:95](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L95) --- @@ -109,10 +109,10 @@ #### Parameters -| Name | Type | -| :------ | :--------------------------------------------------- | -| `data` | `Required`<[`CursorData`](../README.md#cursordata)\> | -| `draft` | `Draft` | +| Name | Type | +| :------ | :---------------------------------------------------- | +| `data` | `Required`\<[`CursorData`](../README.md#cursordata)\> | +| `draft` | `Draft` | #### Returns @@ -120,7 +120,7 @@ #### Defined in -[json-hover.ts:141](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L141) +[features/hover.ts:162](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L162) ## Properties @@ -130,7 +130,7 @@ #### Defined in -[json-hover.ts:66](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L66) +[features/hover.ts:87](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L87) --- @@ -140,7 +140,7 @@ #### Defined in -[json-hover.ts:67](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L67) +[features/hover.ts:88](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L88) --- @@ -150,4 +150,4 @@ #### Defined in -[json-hover.ts:65](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-hover.ts#L65) +[features/hover.ts:86](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/hover.ts#L86) diff --git a/docs/classes/JSONValidation.md b/docs/classes/JSONValidation.md index 033d218..ddc03fe 100644 --- a/docs/classes/JSONValidation.md +++ b/docs/classes/JSONValidation.md @@ -31,7 +31,7 @@ ### parser -• `Private` **parser**: (`state`: `EditorState`) => { `data`: `any` ; `pointers`: [`JSONPointersMap`](../README.md#jsonpointersmap) } = `parseJSONDocumentState` +• `Private` **parser**: (`state`: `EditorState`) => \{ `data`: `any` ; `pointers`: [`JSONPointersMap`](../README.md#jsonpointersmap) } = `parseJSONDocumentState` #### Type declaration @@ -56,7 +56,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:78](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L78) +[features/validation.ts:78](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L78) ## Accessors @@ -70,7 +70,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:89](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L89) +[features/validation.ts:89](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L89) ## Constructors @@ -86,7 +86,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:79](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L79) +[features/validation.ts:79](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L79) ## Methods @@ -106,7 +106,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:120](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L120) +[features/validation.ts:120](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L120) --- @@ -126,7 +126,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:94](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L94) +[features/validation.ts:94](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L94) ## Properties @@ -136,7 +136,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:77](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L77) +[features/validation.ts:77](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L77) --- @@ -146,7 +146,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:79](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L79) +[features/validation.ts:79](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L79) --- @@ -156,4 +156,4 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:75](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L75) +[features/validation.ts:75](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L75) diff --git a/docs/interfaces/JSONCompletionOptions.md b/docs/interfaces/JSONCompletionOptions.md index ae6e15d..d180363 100644 --- a/docs/interfaces/JSONCompletionOptions.md +++ b/docs/interfaces/JSONCompletionOptions.md @@ -16,4 +16,4 @@ #### Defined in -[json-completion.ts:51](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-completion.ts#L51) +[features/completion.ts:52](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/completion.ts#L52) diff --git a/docs/interfaces/JSONValidationOptions.md b/docs/interfaces/JSONValidationOptions.md index e97405b..d678612 100644 --- a/docs/interfaces/JSONValidationOptions.md +++ b/docs/interfaces/JSONValidationOptions.md @@ -17,7 +17,7 @@ ### jsonParser -• `Optional` **jsonParser**: (`state`: `EditorState`) => { `data`: `any` ; `pointers`: [`JSONPointersMap`](../README.md#jsonpointersmap) } +• `Optional` **jsonParser**: (`state`: `EditorState`) => \{ `data`: `any` ; `pointers`: [`JSONPointersMap`](../README.md#jsonpointersmap) } #### Type declaration @@ -42,7 +42,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:43](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L43) +[features/validation.ts:43](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L43) ## Properties @@ -66,7 +66,7 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:42](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L42) +[features/validation.ts:42](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L42) --- @@ -76,4 +76,4 @@ Return parsed data and json pointers for a given codemirror EditorState #### Defined in -[json-validation.ts:41](https://github.com/acao/codemirror-json-schema/blob/296617f/src/json-validation.ts#L41) +[features/validation.ts:41](https://github.com/jsonnext/codemirror-json-schema/blob/c982a74/src/features/validation.ts#L41) diff --git a/package.json b/package.json index bdc3783..9e585a6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "codemirror-json-schema", "license": "MIT", - "version": "0.7.4", + "version": "0.7.5", "description": "Codemirror 6 extensions that provide full JSONSchema support for `@codemirror/lang-json` and `codemirror-json5`", "contributors": [ {