Skip to content

Commit

Permalink
Version Packages (#114)
Browse files Browse the repository at this point in the history
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
## [email protected]

### Patch Changes

- [#112](#112)
[`ccffa61`](ccffa61)
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] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jun 1, 2024
1 parent c982a74 commit f7bfaee
Show file tree
Hide file tree
Showing 9 changed files with 93 additions and 92 deletions.
5 changes: 0 additions & 5 deletions .changeset/funny-countries-explode.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
54 changes: 27 additions & 27 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand All @@ -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

Expand All @@ -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)

___

Expand Down Expand Up @@ -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

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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)

___

Expand All @@ -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)
Loading

0 comments on commit f7bfaee

Please sign in to comment.