@genesislcap/foundation-forms 14.367.1 → 14.367.2-alpha-7b42367.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +200 -200
  2. package/package.json +15 -15
@@ -1235,6 +1235,206 @@
1235
1235
  }
1236
1236
  ]
1237
1237
  },
1238
+ {
1239
+ "kind": "javascript-module",
1240
+ "path": "src/utils/confirmation-dialog-utils.ts",
1241
+ "declarations": [],
1242
+ "exports": []
1243
+ },
1244
+ {
1245
+ "kind": "javascript-module",
1246
+ "path": "src/utils/filters.ts",
1247
+ "declarations": [],
1248
+ "exports": []
1249
+ },
1250
+ {
1251
+ "kind": "javascript-module",
1252
+ "path": "src/utils/form-utils.ts",
1253
+ "declarations": [
1254
+ {
1255
+ "kind": "function",
1256
+ "name": "removeDataPropertiesNotInSchema",
1257
+ "return": {
1258
+ "type": {
1259
+ "text": ""
1260
+ }
1261
+ },
1262
+ "parameters": [
1263
+ {
1264
+ "name": "data",
1265
+ "type": {
1266
+ "text": "any"
1267
+ },
1268
+ "description": "The data object to clean"
1269
+ },
1270
+ {
1271
+ "name": "jsonSchema",
1272
+ "type": {
1273
+ "text": "JSONSchema7"
1274
+ },
1275
+ "description": "The JSON schema to validate against"
1276
+ }
1277
+ ],
1278
+ "description": "Removes data properties that aren't part of the schema"
1279
+ }
1280
+ ],
1281
+ "exports": [
1282
+ {
1283
+ "kind": "js",
1284
+ "name": "removeDataPropertiesNotInSchema",
1285
+ "declaration": {
1286
+ "name": "removeDataPropertiesNotInSchema",
1287
+ "module": "src/utils/form-utils.ts"
1288
+ }
1289
+ }
1290
+ ]
1291
+ },
1292
+ {
1293
+ "kind": "javascript-module",
1294
+ "path": "src/utils/index.ts",
1295
+ "declarations": [],
1296
+ "exports": [
1297
+ {
1298
+ "kind": "js",
1299
+ "name": "*",
1300
+ "declaration": {
1301
+ "name": "*",
1302
+ "package": "./filters"
1303
+ }
1304
+ },
1305
+ {
1306
+ "kind": "js",
1307
+ "name": "*",
1308
+ "declaration": {
1309
+ "name": "*",
1310
+ "package": "./logger"
1311
+ }
1312
+ },
1313
+ {
1314
+ "kind": "js",
1315
+ "name": "*",
1316
+ "declaration": {
1317
+ "name": "*",
1318
+ "package": "./translation"
1319
+ }
1320
+ },
1321
+ {
1322
+ "kind": "js",
1323
+ "name": "*",
1324
+ "declaration": {
1325
+ "name": "*",
1326
+ "package": "./validation"
1327
+ }
1328
+ },
1329
+ {
1330
+ "kind": "js",
1331
+ "name": "*",
1332
+ "declaration": {
1333
+ "name": "*",
1334
+ "package": "./types"
1335
+ }
1336
+ }
1337
+ ]
1338
+ },
1339
+ {
1340
+ "kind": "javascript-module",
1341
+ "path": "src/utils/logger.ts",
1342
+ "declarations": [],
1343
+ "exports": []
1344
+ },
1345
+ {
1346
+ "kind": "javascript-module",
1347
+ "path": "src/utils/translation.ts",
1348
+ "declarations": [],
1349
+ "exports": []
1350
+ },
1351
+ {
1352
+ "kind": "javascript-module",
1353
+ "path": "src/utils/types.ts",
1354
+ "declarations": [],
1355
+ "exports": []
1356
+ },
1357
+ {
1358
+ "kind": "javascript-module",
1359
+ "path": "src/utils/validation.ts",
1360
+ "declarations": [
1361
+ {
1362
+ "kind": "function",
1363
+ "name": "mustMatch",
1364
+ "parameters": [
1365
+ {
1366
+ "name": "target",
1367
+ "type": {
1368
+ "text": "string"
1369
+ },
1370
+ "description": "any other field"
1371
+ }
1372
+ ],
1373
+ "description": "Ensures the value of the current field (the one the validator is on) matches the one of the target field.",
1374
+ "return": {
1375
+ "type": {
1376
+ "text": ""
1377
+ }
1378
+ },
1379
+ "privacy": "public"
1380
+ },
1381
+ {
1382
+ "kind": "function",
1383
+ "name": "getAnyOfErrorMessage",
1384
+ "return": {
1385
+ "type": {
1386
+ "text": "string"
1387
+ }
1388
+ },
1389
+ "parameters": [
1390
+ {
1391
+ "name": "errors",
1392
+ "type": {
1393
+ "text": "Array<any> | undefined"
1394
+ }
1395
+ },
1396
+ {
1397
+ "name": "schema",
1398
+ "type": {
1399
+ "text": "any"
1400
+ }
1401
+ },
1402
+ {
1403
+ "name": "controlPath",
1404
+ "type": {
1405
+ "text": "string | undefined"
1406
+ }
1407
+ },
1408
+ {
1409
+ "name": "uiCustomMsg",
1410
+ "optional": true,
1411
+ "type": {
1412
+ "text": "string"
1413
+ }
1414
+ }
1415
+ ],
1416
+ "description": "Computes a human-friendly anyOf error message for a given control path.\nPrefers UI schema custom message, then JSON schema errorMessage.anyOf, then a constructed fallback."
1417
+ }
1418
+ ],
1419
+ "exports": [
1420
+ {
1421
+ "kind": "js",
1422
+ "name": "mustMatch",
1423
+ "declaration": {
1424
+ "name": "mustMatch",
1425
+ "module": "src/utils/validation.ts"
1426
+ }
1427
+ },
1428
+ {
1429
+ "kind": "js",
1430
+ "name": "getAnyOfErrorMessage",
1431
+ "declaration": {
1432
+ "name": "getAnyOfErrorMessage",
1433
+ "module": "src/utils/validation.ts"
1434
+ }
1435
+ }
1436
+ ]
1437
+ },
1238
1438
  {
1239
1439
  "kind": "javascript-module",
1240
1440
  "path": "src/jsonforms/renderers/ArrayListWrapperRenderer.ts",
@@ -3151,206 +3351,6 @@
3151
3351
  }
3152
3352
  }
3153
3353
  ]
3154
- },
3155
- {
3156
- "kind": "javascript-module",
3157
- "path": "src/utils/confirmation-dialog-utils.ts",
3158
- "declarations": [],
3159
- "exports": []
3160
- },
3161
- {
3162
- "kind": "javascript-module",
3163
- "path": "src/utils/filters.ts",
3164
- "declarations": [],
3165
- "exports": []
3166
- },
3167
- {
3168
- "kind": "javascript-module",
3169
- "path": "src/utils/form-utils.ts",
3170
- "declarations": [
3171
- {
3172
- "kind": "function",
3173
- "name": "removeDataPropertiesNotInSchema",
3174
- "return": {
3175
- "type": {
3176
- "text": ""
3177
- }
3178
- },
3179
- "parameters": [
3180
- {
3181
- "name": "data",
3182
- "type": {
3183
- "text": "any"
3184
- },
3185
- "description": "The data object to clean"
3186
- },
3187
- {
3188
- "name": "jsonSchema",
3189
- "type": {
3190
- "text": "JSONSchema7"
3191
- },
3192
- "description": "The JSON schema to validate against"
3193
- }
3194
- ],
3195
- "description": "Removes data properties that aren't part of the schema"
3196
- }
3197
- ],
3198
- "exports": [
3199
- {
3200
- "kind": "js",
3201
- "name": "removeDataPropertiesNotInSchema",
3202
- "declaration": {
3203
- "name": "removeDataPropertiesNotInSchema",
3204
- "module": "src/utils/form-utils.ts"
3205
- }
3206
- }
3207
- ]
3208
- },
3209
- {
3210
- "kind": "javascript-module",
3211
- "path": "src/utils/index.ts",
3212
- "declarations": [],
3213
- "exports": [
3214
- {
3215
- "kind": "js",
3216
- "name": "*",
3217
- "declaration": {
3218
- "name": "*",
3219
- "package": "./filters"
3220
- }
3221
- },
3222
- {
3223
- "kind": "js",
3224
- "name": "*",
3225
- "declaration": {
3226
- "name": "*",
3227
- "package": "./logger"
3228
- }
3229
- },
3230
- {
3231
- "kind": "js",
3232
- "name": "*",
3233
- "declaration": {
3234
- "name": "*",
3235
- "package": "./translation"
3236
- }
3237
- },
3238
- {
3239
- "kind": "js",
3240
- "name": "*",
3241
- "declaration": {
3242
- "name": "*",
3243
- "package": "./validation"
3244
- }
3245
- },
3246
- {
3247
- "kind": "js",
3248
- "name": "*",
3249
- "declaration": {
3250
- "name": "*",
3251
- "package": "./types"
3252
- }
3253
- }
3254
- ]
3255
- },
3256
- {
3257
- "kind": "javascript-module",
3258
- "path": "src/utils/logger.ts",
3259
- "declarations": [],
3260
- "exports": []
3261
- },
3262
- {
3263
- "kind": "javascript-module",
3264
- "path": "src/utils/translation.ts",
3265
- "declarations": [],
3266
- "exports": []
3267
- },
3268
- {
3269
- "kind": "javascript-module",
3270
- "path": "src/utils/types.ts",
3271
- "declarations": [],
3272
- "exports": []
3273
- },
3274
- {
3275
- "kind": "javascript-module",
3276
- "path": "src/utils/validation.ts",
3277
- "declarations": [
3278
- {
3279
- "kind": "function",
3280
- "name": "mustMatch",
3281
- "parameters": [
3282
- {
3283
- "name": "target",
3284
- "type": {
3285
- "text": "string"
3286
- },
3287
- "description": "any other field"
3288
- }
3289
- ],
3290
- "description": "Ensures the value of the current field (the one the validator is on) matches the one of the target field.",
3291
- "return": {
3292
- "type": {
3293
- "text": ""
3294
- }
3295
- },
3296
- "privacy": "public"
3297
- },
3298
- {
3299
- "kind": "function",
3300
- "name": "getAnyOfErrorMessage",
3301
- "return": {
3302
- "type": {
3303
- "text": "string"
3304
- }
3305
- },
3306
- "parameters": [
3307
- {
3308
- "name": "errors",
3309
- "type": {
3310
- "text": "Array<any> | undefined"
3311
- }
3312
- },
3313
- {
3314
- "name": "schema",
3315
- "type": {
3316
- "text": "any"
3317
- }
3318
- },
3319
- {
3320
- "name": "controlPath",
3321
- "type": {
3322
- "text": "string | undefined"
3323
- }
3324
- },
3325
- {
3326
- "name": "uiCustomMsg",
3327
- "optional": true,
3328
- "type": {
3329
- "text": "string"
3330
- }
3331
- }
3332
- ],
3333
- "description": "Computes a human-friendly anyOf error message for a given control path.\nPrefers UI schema custom message, then JSON schema errorMessage.anyOf, then a constructed fallback."
3334
- }
3335
- ],
3336
- "exports": [
3337
- {
3338
- "kind": "js",
3339
- "name": "mustMatch",
3340
- "declaration": {
3341
- "name": "mustMatch",
3342
- "module": "src/utils/validation.ts"
3343
- }
3344
- },
3345
- {
3346
- "kind": "js",
3347
- "name": "getAnyOfErrorMessage",
3348
- "declaration": {
3349
- "name": "getAnyOfErrorMessage",
3350
- "module": "src/utils/validation.ts"
3351
- }
3352
- }
3353
- ]
3354
3354
  }
3355
3355
  ]
3356
3356
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-forms",
3
3
  "description": "Genesis Foundation Forms",
4
- "version": "14.367.1",
4
+ "version": "14.367.2-alpha-7b42367.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -48,22 +48,22 @@
48
48
  }
49
49
  },
50
50
  "devDependencies": {
51
- "@genesislcap/foundation-testing": "14.367.1",
52
- "@genesislcap/genx": "14.367.1",
53
- "@genesislcap/rollup-builder": "14.367.1",
54
- "@genesislcap/ts-builder": "14.367.1",
55
- "@genesislcap/uvu-playwright-builder": "14.367.1",
56
- "@genesislcap/vite-builder": "14.367.1",
57
- "@genesislcap/webpack-builder": "14.367.1",
51
+ "@genesislcap/foundation-testing": "14.367.2-alpha-7b42367.0",
52
+ "@genesislcap/genx": "14.367.2-alpha-7b42367.0",
53
+ "@genesislcap/rollup-builder": "14.367.2-alpha-7b42367.0",
54
+ "@genesislcap/ts-builder": "14.367.2-alpha-7b42367.0",
55
+ "@genesislcap/uvu-playwright-builder": "14.367.2-alpha-7b42367.0",
56
+ "@genesislcap/vite-builder": "14.367.2-alpha-7b42367.0",
57
+ "@genesislcap/webpack-builder": "14.367.2-alpha-7b42367.0",
58
58
  "@types/json-schema": "^7.0.11"
59
59
  },
60
60
  "dependencies": {
61
- "@genesislcap/foundation-comms": "14.367.1",
62
- "@genesislcap/foundation-criteria": "14.367.1",
63
- "@genesislcap/foundation-logger": "14.367.1",
64
- "@genesislcap/foundation-notifications": "14.367.1",
65
- "@genesislcap/foundation-ui": "14.367.1",
66
- "@genesislcap/foundation-utils": "14.367.1",
61
+ "@genesislcap/foundation-comms": "14.367.2-alpha-7b42367.0",
62
+ "@genesislcap/foundation-criteria": "14.367.2-alpha-7b42367.0",
63
+ "@genesislcap/foundation-logger": "14.367.2-alpha-7b42367.0",
64
+ "@genesislcap/foundation-notifications": "14.367.2-alpha-7b42367.0",
65
+ "@genesislcap/foundation-ui": "14.367.2-alpha-7b42367.0",
66
+ "@genesislcap/foundation-utils": "14.367.2-alpha-7b42367.0",
67
67
  "@json-schema-tools/dereferencer": "^1.6.1",
68
68
  "@jsonforms/core": "^3.2.1",
69
69
  "@microsoft/fast-components": "2.30.6",
@@ -84,5 +84,5 @@
84
84
  "access": "public"
85
85
  },
86
86
  "customElements": "dist/custom-elements.json",
87
- "gitHead": "82a153c4dee2b19c35c6979efb887b44a78a2ea6"
87
+ "gitHead": "3806fa110744e7673917b395491c1dda07422223"
88
88
  }