Skip to content

Commit da08ebb

Browse files
github-actions[bot]acao
authored andcommitted
chore(release): changesets versioning & publication
1 parent 23e5721 commit da08ebb

File tree

6 files changed

+31
-32
lines changed

6 files changed

+31
-32
lines changed

.changeset/chatty-spies-bake.md

-6
This file was deleted.

.changeset/happy-shrimps-dream.md

-5
This file was deleted.

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# codemirror-json-schema
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- [#37](https://github.com/acao/codemirror-json-schema/pull/37) [`1220706`](https://github.com/acao/codemirror-json-schema/commit/12207063b8243caae814ec87b0c2dbb0ba7cddf6) Thanks [@acao](https://github.com/acao)! - - fix hover on undefined schema props
8+
9+
- configure `above: true` for the hover tooltip, to have vscode-like behavior, and prevent z-index clash with completion on smaller viewports
10+
11+
- [#36](https://github.com/acao/codemirror-json-schema/pull/36) [`23e5721`](https://github.com/acao/codemirror-json-schema/commit/23e572147a3b8d718d52761ee431186a8b297b9d) Thanks [@imolorhe](https://github.com/imolorhe)! - fixed autocompletion in object roots, etc, for json4 and json5
12+
313
## 0.3.0
414

515
### Minor Changes

docs/modules/index.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ provides a JSON schema enabled autocomplete extension for codemirror
6464

6565
#### Defined in
6666

67-
[json-completion.ts:749](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-completion.ts#L749)
67+
[json-completion.ts:747](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-completion.ts#L747)
6868

6969
---
7070

@@ -101,7 +101,7 @@ provides a JSON schema enabled tooltip extension for codemirror
101101

102102
#### Defined in
103103

104-
[json-hover.ts:38](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-hover.ts#L38)
104+
[json-hover.ts:38](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-hover.ts#L38)
105105

106106
---
107107

@@ -136,7 +136,7 @@ Helper for simpler class instantiaton
136136

137137
#### Defined in
138138

139-
[json-validation.ts:35](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-validation.ts#L35)
139+
[json-validation.ts:35](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-validation.ts#L35)
140140

141141
## Utilities
142142

@@ -159,7 +159,7 @@ retrieve a Map of all the json pointers in a document
159159

160160
#### Defined in
161161

162-
[utils/jsonPointers.ts:56](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/jsonPointers.ts#L56)
162+
[utils/jsonPointers.ts:56](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/jsonPointers.ts#L56)
163163

164164
---
165165

@@ -183,7 +183,7 @@ retrieve a JSON pointer for a given position in the editor
183183

184184
#### Defined in
185185

186-
[utils/jsonPointers.ts:44](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/jsonPointers.ts#L44)
186+
[utils/jsonPointers.ts:44](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/jsonPointers.ts#L44)
187187

188188
---
189189

@@ -210,7 +210,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function using co
210210

211211
#### Defined in
212212

213-
[utils/parseJSONDocument.ts:23](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/parseJSONDocument.ts#L23)
213+
[utils/parseJSONDocument.ts:23](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/parseJSONDocument.ts#L23)
214214

215215
---
216216

@@ -237,7 +237,7 @@ Return parsed data and json pointers for a given codemirror EditorState
237237

238238
#### Defined in
239239

240-
[utils/parseJSONDocument.ts:9](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/parseJSONDocument.ts#L9)
240+
[utils/parseJSONDocument.ts:9](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/parseJSONDocument.ts#L9)
241241

242242
## Functions
243243

@@ -258,7 +258,7 @@ Return parsed data and json pointers for a given codemirror EditorState
258258

259259
#### Defined in
260260

261-
[utils/jsonPointers.ts:12](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/jsonPointers.ts#L12)
261+
[utils/jsonPointers.ts:12](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/jsonPointers.ts#L12)
262262

263263
## Type Aliases
264264

@@ -275,7 +275,7 @@ Return parsed data and json pointers for a given codemirror EditorState
275275

276276
#### Defined in
277277

278-
[json-hover.ts:12](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-hover.ts#L12)
278+
[json-hover.ts:12](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-hover.ts#L12)
279279

280280
---
281281

@@ -285,7 +285,7 @@ Return parsed data and json pointers for a given codemirror EditorState
285285

286286
#### Defined in
287287

288-
[json-hover.ts:14](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-hover.ts#L14)
288+
[json-hover.ts:14](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-hover.ts#L14)
289289

290290
---
291291

@@ -303,7 +303,7 @@ Return parsed data and json pointers for a given codemirror EditorState
303303

304304
#### Defined in
305305

306-
[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-hover.ts#L18)
306+
[json-hover.ts:18](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-hover.ts#L18)
307307

308308
---
309309

@@ -313,7 +313,7 @@ Return parsed data and json pointers for a given codemirror EditorState
313313

314314
#### Defined in
315315

316-
[utils/jsonPointers.ts:8](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/jsonPointers.ts#L8)
316+
[utils/jsonPointers.ts:8](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/jsonPointers.ts#L8)
317317

318318
---
319319

@@ -330,7 +330,7 @@ Return parsed data and json pointers for a given codemirror EditorState
330330

331331
#### Defined in
332332

333-
[types.ts:4](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/types.ts#L4)
333+
[types.ts:4](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/types.ts#L4)
334334

335335
---
336336

@@ -349,7 +349,7 @@ Return parsed data and json pointers for a given codemirror EditorState
349349

350350
#### Defined in
351351

352-
[types.ts:9](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/types.ts#L9)
352+
[types.ts:9](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/types.ts#L9)
353353

354354
---
355355

@@ -359,7 +359,7 @@ Return parsed data and json pointers for a given codemirror EditorState
359359

360360
#### Defined in
361361

362-
[types.ts:18](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/types.ts#L18)
362+
[types.ts:18](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/types.ts#L18)
363363

364364
---
365365

@@ -376,4 +376,4 @@ Return parsed data and json pointers for a given codemirror EditorState
376376

377377
#### Defined in
378378

379-
[json-validation.ts:24](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json-validation.ts#L24)
379+
[json-validation.ts:24](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json-validation.ts#L24)

docs/modules/json5.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Instantiates a JSONHover instance with the JSON5 mode
4949

5050
#### Defined in
5151

52-
[json5-hover.ts:13](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json5-hover.ts#L13)
52+
[json5-hover.ts:13](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json5-hover.ts#L13)
5353

5454
---
5555

@@ -84,7 +84,7 @@ Instantiates a JSONValidation instance with the JSON5 mode
8484

8585
#### Defined in
8686

87-
[json5-validation.ts:10](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/json5-validation.ts#L10)
87+
[json5-validation.ts:10](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/json5-validation.ts#L10)
8888

8989
## Utilities
9090

@@ -111,7 +111,7 @@ Mimics the behavior of `json-source-map`'s `parseJSONDocument` function, for jso
111111

112112
#### Defined in
113113

114-
[utils/parseJSON5Document.ts:28](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/parseJSON5Document.ts#L28)
114+
[utils/parseJSON5Document.ts:28](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/parseJSON5Document.ts#L28)
115115

116116
---
117117

@@ -138,4 +138,4 @@ Return parsed data and json5 pointers for a given codemirror EditorState
138138

139139
#### Defined in
140140

141-
[utils/parseJSON5Document.ts:14](https://github.com/acao/codemirror-json-schema/blob/f24cae6/src/utils/parseJSON5Document.ts#L14)
141+
[utils/parseJSON5Document.ts:14](https://github.com/acao/codemirror-json-schema/blob/23e5721/src/utils/parseJSON5Document.ts#L14)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codemirror-json-schema",
33
"license": "MIT",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"description": "A JSONSchema enabled mode for codemirror 6, for both json4 and json5, inspired by monaco-json",
66
"contributors": [
77
{

0 commit comments

Comments
 (0)