@remoteoss/json-schema-form 0.11.13-beta.0 → 0.11.14-beta.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.
- package/CHANGELOG.md +11 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/dist/standalone.js +2 -2
- package/package.json +1 -1
- package/src/tests/helpers.js +10 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
#### 0.11.14-beta.0 (2025-05-14)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **next:** Type JSONSchema enum as unknown for better type safety ([#184](https://github.com/remoteoss/json-schema-form/pull/184)) ([e745444c](https://github.com/remoteoss/json-schema-form/commit/e745444c112337c22def693a924eae49f575c14d))
|
|
6
|
+
* **scripts:** Reminder to publish GitHub release ([#183](https://github.com/remoteoss/json-schema-form/pull/183)) ([adfa8c14](https://github.com/remoteoss/json-schema-form/commit/adfa8c14ca118b1012642f39c8388cf2ba1614c9))
|
|
7
|
+
|
|
8
|
+
##### New Features
|
|
9
|
+
|
|
10
|
+
* **next:** group-array field support ([#177](https://github.com/remoteoss/json-schema-form/pull/177)) ([e32f69b7](https://github.com/remoteoss/json-schema-form/commit/e32f69b771ab245583c3f4e167ab67b8f36b9a3f))
|
|
11
|
+
|
|
1
12
|
#### 0.11.13-beta.0 (2025-05-05)
|
|
2
13
|
|
|
3
14
|
##### Bug Fixes
|
package/dist/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
3
|
Copyright (c) 2025 Remote Technology, Inc.
|
|
4
|
-
NPM Package: @remoteoss/json-schema-form@0.11.
|
|
5
|
-
Generated:
|
|
4
|
+
NPM Package: @remoteoss/json-schema-form@0.11.14-beta.0
|
|
5
|
+
Generated: Wed, 14 May 2025 12:13:40 GMT
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
3
|
Copyright (c) 2025 Remote Technology, Inc.
|
|
4
|
-
NPM Package: @remoteoss/json-schema-form@0.11.
|
|
5
|
-
Generated:
|
|
4
|
+
NPM Package: @remoteoss/json-schema-form@0.11.14-beta.0
|
|
5
|
+
Generated: Wed, 14 May 2025 12:13:40 GMT
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
package/dist/standalone.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
3
|
Copyright (c) 2025 Remote Technology, Inc.
|
|
4
|
-
NPM Package: @remoteoss/json-schema-form@0.11.
|
|
5
|
-
Generated:
|
|
4
|
+
NPM Package: @remoteoss/json-schema-form@0.11.14-beta.0
|
|
5
|
+
Generated: Wed, 14 May 2025 12:13:40 GMT
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
package/package.json
CHANGED
package/src/tests/helpers.js
CHANGED
|
@@ -448,20 +448,19 @@ export const mockGroupArrayInput = {
|
|
|
448
448
|
sex: {
|
|
449
449
|
description:
|
|
450
450
|
'We know sex is non-binary but for insurance and payroll purposes, we need to collect this information.',
|
|
451
|
-
enum: ['female', 'male'],
|
|
452
451
|
'x-jsf-presentation': {
|
|
453
452
|
inputType: 'radio',
|
|
454
|
-
options: [
|
|
455
|
-
{
|
|
456
|
-
label: 'Male',
|
|
457
|
-
value: 'male',
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
label: 'Female',
|
|
461
|
-
value: 'female',
|
|
462
|
-
},
|
|
463
|
-
],
|
|
464
453
|
},
|
|
454
|
+
oneOf: [
|
|
455
|
+
{
|
|
456
|
+
const: 'male',
|
|
457
|
+
title: 'Male',
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
const: 'female',
|
|
461
|
+
title: 'Female',
|
|
462
|
+
},
|
|
463
|
+
],
|
|
465
464
|
title: 'Child Sex',
|
|
466
465
|
type: 'string',
|
|
467
466
|
},
|