@remoteoss/json-schema-form 0.12.2-beta.0 → 0.12.3-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 +6 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +3 -3
- package/dist/standalone.js +3 -3
- package/package.json +1 -1
- package/src/tests/helpers.js +47 -39
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### 0.12.3-beta.0 (2026-01-21)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* Fix schema used for testing v0 ([#248](https://github.com/remoteoss/json-schema-form/pull/248)) ([a4e2b463](https://github.com/remoteoss/json-schema-form/commit/a4e2b46370293066ecc94724dd4e76b17a458a66))
|
|
6
|
+
|
|
1
7
|
#### 0.12.2-beta.0 (2025-10-23)
|
|
2
8
|
|
|
3
9
|
##### New Features
|
package/dist/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
|
-
Copyright (c)
|
|
4
|
-
NPM Package: @remoteoss/json-schema-form@0.12.
|
|
5
|
-
Generated:
|
|
3
|
+
Copyright (c) 2026 Remote Technology, Inc.
|
|
4
|
+
NPM Package: @remoteoss/json-schema-form@0.12.3-beta.0
|
|
5
|
+
Generated: Wed, 21 Jan 2026 21:38:57 GMT
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
|
-
Copyright (c)
|
|
4
|
-
NPM Package: @remoteoss/json-schema-form@0.12.
|
|
5
|
-
Generated:
|
|
3
|
+
Copyright (c) 2026 Remote Technology, Inc.
|
|
4
|
+
NPM Package: @remoteoss/json-schema-form@0.12.3-beta.0
|
|
5
|
+
Generated: Wed, 21 Jan 2026 21:38:57 GMT
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
package/dist/standalone.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/*!
|
|
3
|
-
Copyright (c)
|
|
4
|
-
NPM Package: @remoteoss/json-schema-form@0.12.
|
|
5
|
-
Generated:
|
|
3
|
+
Copyright (c) 2026 Remote Technology, Inc.
|
|
4
|
+
NPM Package: @remoteoss/json-schema-form@0.12.3-beta.0
|
|
5
|
+
Generated: Wed, 21 Jan 2026 21:38:57 GMT
|
|
6
6
|
|
|
7
7
|
MIT License
|
|
8
8
|
|
package/package.json
CHANGED
package/src/tests/helpers.js
CHANGED
|
@@ -2039,6 +2039,7 @@ export const schemaWithNestedFieldsetsConditionals = {
|
|
|
2039
2039
|
const: 'yes',
|
|
2040
2040
|
},
|
|
2041
2041
|
},
|
|
2042
|
+
required: ['create_plan'],
|
|
2042
2043
|
},
|
|
2043
2044
|
then: {},
|
|
2044
2045
|
else: {
|
|
@@ -2065,7 +2066,7 @@ export const schemaWithNestedFieldsetsConditionals = {
|
|
|
2065
2066
|
title: 'Planned amount',
|
|
2066
2067
|
},
|
|
2067
2068
|
create_plan: {
|
|
2068
|
-
type: '
|
|
2069
|
+
type: 'string',
|
|
2069
2070
|
title: 'Create plan?',
|
|
2070
2071
|
oneOf: [
|
|
2071
2072
|
{
|
|
@@ -2088,32 +2089,34 @@ export const schemaWithNestedFieldsetsConditionals = {
|
|
|
2088
2089
|
properties: {
|
|
2089
2090
|
months: {
|
|
2090
2091
|
default: ['january', 'february'],
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2092
|
+
items: {
|
|
2093
|
+
anyOf: [
|
|
2094
|
+
{
|
|
2095
|
+
const: 'january',
|
|
2096
|
+
title: 'January',
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
const: 'february',
|
|
2100
|
+
title: 'February',
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
const: 'march',
|
|
2104
|
+
title: 'March',
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
const: 'april',
|
|
2108
|
+
title: 'April',
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
const: 'may',
|
|
2112
|
+
title: 'May',
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
const: 'june',
|
|
2116
|
+
title: 'June',
|
|
2117
|
+
},
|
|
2118
|
+
],
|
|
2119
|
+
},
|
|
2117
2120
|
title: "Select the months when you'll contribute",
|
|
2118
2121
|
type: 'array',
|
|
2119
2122
|
'x-jsf-presentation': {
|
|
@@ -2159,19 +2162,24 @@ export const schemaWithNestedFieldsetsConditionals = {
|
|
|
2159
2162
|
properties: {
|
|
2160
2163
|
perks: {
|
|
2161
2164
|
properties: {
|
|
2162
|
-
|
|
2165
|
+
declare_amount: {
|
|
2163
2166
|
const: 'no',
|
|
2164
2167
|
},
|
|
2165
2168
|
},
|
|
2169
|
+
required: ['declare_amount'],
|
|
2166
2170
|
},
|
|
2167
2171
|
},
|
|
2172
|
+
required: ['perks'],
|
|
2168
2173
|
},
|
|
2169
2174
|
then: {
|
|
2170
2175
|
properties: {
|
|
2171
2176
|
perks: {
|
|
2172
2177
|
properties: {
|
|
2173
|
-
retirement_plan:
|
|
2174
|
-
|
|
2178
|
+
retirement_plan: {
|
|
2179
|
+
properties: {
|
|
2180
|
+
amount: false,
|
|
2181
|
+
},
|
|
2182
|
+
},
|
|
2175
2183
|
},
|
|
2176
2184
|
},
|
|
2177
2185
|
},
|
|
@@ -2182,23 +2190,22 @@ export const schemaWithNestedFieldsetsConditionals = {
|
|
|
2182
2190
|
properties: {
|
|
2183
2191
|
perks: {
|
|
2184
2192
|
properties: {
|
|
2185
|
-
|
|
2186
|
-
const: '
|
|
2193
|
+
has_retirement_plan: {
|
|
2194
|
+
const: 'yes',
|
|
2187
2195
|
},
|
|
2188
2196
|
},
|
|
2189
|
-
required: ['
|
|
2197
|
+
required: ['has_retirement_plan'],
|
|
2190
2198
|
},
|
|
2191
2199
|
},
|
|
2200
|
+
required: ['perks'],
|
|
2192
2201
|
},
|
|
2193
|
-
then: {
|
|
2202
|
+
then: {},
|
|
2203
|
+
else: {
|
|
2194
2204
|
properties: {
|
|
2195
2205
|
perks: {
|
|
2196
2206
|
properties: {
|
|
2197
|
-
retirement_plan:
|
|
2198
|
-
|
|
2199
|
-
amount: false,
|
|
2200
|
-
},
|
|
2201
|
-
},
|
|
2207
|
+
retirement_plan: false,
|
|
2208
|
+
declare_amount: false,
|
|
2202
2209
|
},
|
|
2203
2210
|
},
|
|
2204
2211
|
},
|
|
@@ -2219,6 +2226,7 @@ export const schemaWithNestedFieldsetsConditionals = {
|
|
|
2219
2226
|
required: ['has_retirement_plan', 'declare_amount'],
|
|
2220
2227
|
},
|
|
2221
2228
|
},
|
|
2229
|
+
required: ['perks'],
|
|
2222
2230
|
},
|
|
2223
2231
|
then: {
|
|
2224
2232
|
properties: {
|