@genesislcap/foundation-forms 14.354.4 → 14.354.6

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
@@ -1199,6 +1199,206 @@
1199
1199
  }
1200
1200
  ]
1201
1201
  },
1202
+ {
1203
+ "kind": "javascript-module",
1204
+ "path": "src/utils/confirmation-dialog-utils.ts",
1205
+ "declarations": [],
1206
+ "exports": []
1207
+ },
1208
+ {
1209
+ "kind": "javascript-module",
1210
+ "path": "src/utils/filters.ts",
1211
+ "declarations": [],
1212
+ "exports": []
1213
+ },
1214
+ {
1215
+ "kind": "javascript-module",
1216
+ "path": "src/utils/form-utils.ts",
1217
+ "declarations": [
1218
+ {
1219
+ "kind": "function",
1220
+ "name": "removeDataPropertiesNotInSchema",
1221
+ "return": {
1222
+ "type": {
1223
+ "text": ""
1224
+ }
1225
+ },
1226
+ "parameters": [
1227
+ {
1228
+ "name": "data",
1229
+ "type": {
1230
+ "text": "any"
1231
+ },
1232
+ "description": "The data object to clean"
1233
+ },
1234
+ {
1235
+ "name": "jsonSchema",
1236
+ "type": {
1237
+ "text": "JSONSchema7"
1238
+ },
1239
+ "description": "The JSON schema to validate against"
1240
+ }
1241
+ ],
1242
+ "description": "Removes data properties that aren't part of the schema"
1243
+ }
1244
+ ],
1245
+ "exports": [
1246
+ {
1247
+ "kind": "js",
1248
+ "name": "removeDataPropertiesNotInSchema",
1249
+ "declaration": {
1250
+ "name": "removeDataPropertiesNotInSchema",
1251
+ "module": "src/utils/form-utils.ts"
1252
+ }
1253
+ }
1254
+ ]
1255
+ },
1256
+ {
1257
+ "kind": "javascript-module",
1258
+ "path": "src/utils/index.ts",
1259
+ "declarations": [],
1260
+ "exports": [
1261
+ {
1262
+ "kind": "js",
1263
+ "name": "*",
1264
+ "declaration": {
1265
+ "name": "*",
1266
+ "package": "./filters"
1267
+ }
1268
+ },
1269
+ {
1270
+ "kind": "js",
1271
+ "name": "*",
1272
+ "declaration": {
1273
+ "name": "*",
1274
+ "package": "./logger"
1275
+ }
1276
+ },
1277
+ {
1278
+ "kind": "js",
1279
+ "name": "*",
1280
+ "declaration": {
1281
+ "name": "*",
1282
+ "package": "./translation"
1283
+ }
1284
+ },
1285
+ {
1286
+ "kind": "js",
1287
+ "name": "*",
1288
+ "declaration": {
1289
+ "name": "*",
1290
+ "package": "./validation"
1291
+ }
1292
+ },
1293
+ {
1294
+ "kind": "js",
1295
+ "name": "*",
1296
+ "declaration": {
1297
+ "name": "*",
1298
+ "package": "./types"
1299
+ }
1300
+ }
1301
+ ]
1302
+ },
1303
+ {
1304
+ "kind": "javascript-module",
1305
+ "path": "src/utils/logger.ts",
1306
+ "declarations": [],
1307
+ "exports": []
1308
+ },
1309
+ {
1310
+ "kind": "javascript-module",
1311
+ "path": "src/utils/translation.ts",
1312
+ "declarations": [],
1313
+ "exports": []
1314
+ },
1315
+ {
1316
+ "kind": "javascript-module",
1317
+ "path": "src/utils/types.ts",
1318
+ "declarations": [],
1319
+ "exports": []
1320
+ },
1321
+ {
1322
+ "kind": "javascript-module",
1323
+ "path": "src/utils/validation.ts",
1324
+ "declarations": [
1325
+ {
1326
+ "kind": "function",
1327
+ "name": "mustMatch",
1328
+ "parameters": [
1329
+ {
1330
+ "name": "target",
1331
+ "type": {
1332
+ "text": "string"
1333
+ },
1334
+ "description": "any other field"
1335
+ }
1336
+ ],
1337
+ "description": "Ensures the value of the current field (the one the validator is on) matches the one of the target field.",
1338
+ "return": {
1339
+ "type": {
1340
+ "text": ""
1341
+ }
1342
+ },
1343
+ "privacy": "public"
1344
+ },
1345
+ {
1346
+ "kind": "function",
1347
+ "name": "getAnyOfErrorMessage",
1348
+ "return": {
1349
+ "type": {
1350
+ "text": "string"
1351
+ }
1352
+ },
1353
+ "parameters": [
1354
+ {
1355
+ "name": "errors",
1356
+ "type": {
1357
+ "text": "Array<any> | undefined"
1358
+ }
1359
+ },
1360
+ {
1361
+ "name": "schema",
1362
+ "type": {
1363
+ "text": "any"
1364
+ }
1365
+ },
1366
+ {
1367
+ "name": "controlPath",
1368
+ "type": {
1369
+ "text": "string | undefined"
1370
+ }
1371
+ },
1372
+ {
1373
+ "name": "uiCustomMsg",
1374
+ "optional": true,
1375
+ "type": {
1376
+ "text": "string"
1377
+ }
1378
+ }
1379
+ ],
1380
+ "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."
1381
+ }
1382
+ ],
1383
+ "exports": [
1384
+ {
1385
+ "kind": "js",
1386
+ "name": "mustMatch",
1387
+ "declaration": {
1388
+ "name": "mustMatch",
1389
+ "module": "src/utils/validation.ts"
1390
+ }
1391
+ },
1392
+ {
1393
+ "kind": "js",
1394
+ "name": "getAnyOfErrorMessage",
1395
+ "declaration": {
1396
+ "name": "getAnyOfErrorMessage",
1397
+ "module": "src/utils/validation.ts"
1398
+ }
1399
+ }
1400
+ ]
1401
+ },
1202
1402
  {
1203
1403
  "kind": "javascript-module",
1204
1404
  "path": "src/jsonforms/renderers/ArrayListWrapperRenderer.ts",
@@ -2890,206 +3090,6 @@
2890
3090
  }
2891
3091
  ]
2892
3092
  },
2893
- {
2894
- "kind": "javascript-module",
2895
- "path": "src/utils/confirmation-dialog-utils.ts",
2896
- "declarations": [],
2897
- "exports": []
2898
- },
2899
- {
2900
- "kind": "javascript-module",
2901
- "path": "src/utils/filters.ts",
2902
- "declarations": [],
2903
- "exports": []
2904
- },
2905
- {
2906
- "kind": "javascript-module",
2907
- "path": "src/utils/form-utils.ts",
2908
- "declarations": [
2909
- {
2910
- "kind": "function",
2911
- "name": "removeDataPropertiesNotInSchema",
2912
- "return": {
2913
- "type": {
2914
- "text": ""
2915
- }
2916
- },
2917
- "parameters": [
2918
- {
2919
- "name": "data",
2920
- "type": {
2921
- "text": "any"
2922
- },
2923
- "description": "The data object to clean"
2924
- },
2925
- {
2926
- "name": "jsonSchema",
2927
- "type": {
2928
- "text": "JSONSchema7"
2929
- },
2930
- "description": "The JSON schema to validate against"
2931
- }
2932
- ],
2933
- "description": "Removes data properties that aren't part of the schema"
2934
- }
2935
- ],
2936
- "exports": [
2937
- {
2938
- "kind": "js",
2939
- "name": "removeDataPropertiesNotInSchema",
2940
- "declaration": {
2941
- "name": "removeDataPropertiesNotInSchema",
2942
- "module": "src/utils/form-utils.ts"
2943
- }
2944
- }
2945
- ]
2946
- },
2947
- {
2948
- "kind": "javascript-module",
2949
- "path": "src/utils/index.ts",
2950
- "declarations": [],
2951
- "exports": [
2952
- {
2953
- "kind": "js",
2954
- "name": "*",
2955
- "declaration": {
2956
- "name": "*",
2957
- "package": "./filters"
2958
- }
2959
- },
2960
- {
2961
- "kind": "js",
2962
- "name": "*",
2963
- "declaration": {
2964
- "name": "*",
2965
- "package": "./logger"
2966
- }
2967
- },
2968
- {
2969
- "kind": "js",
2970
- "name": "*",
2971
- "declaration": {
2972
- "name": "*",
2973
- "package": "./translation"
2974
- }
2975
- },
2976
- {
2977
- "kind": "js",
2978
- "name": "*",
2979
- "declaration": {
2980
- "name": "*",
2981
- "package": "./validation"
2982
- }
2983
- },
2984
- {
2985
- "kind": "js",
2986
- "name": "*",
2987
- "declaration": {
2988
- "name": "*",
2989
- "package": "./types"
2990
- }
2991
- }
2992
- ]
2993
- },
2994
- {
2995
- "kind": "javascript-module",
2996
- "path": "src/utils/logger.ts",
2997
- "declarations": [],
2998
- "exports": []
2999
- },
3000
- {
3001
- "kind": "javascript-module",
3002
- "path": "src/utils/translation.ts",
3003
- "declarations": [],
3004
- "exports": []
3005
- },
3006
- {
3007
- "kind": "javascript-module",
3008
- "path": "src/utils/types.ts",
3009
- "declarations": [],
3010
- "exports": []
3011
- },
3012
- {
3013
- "kind": "javascript-module",
3014
- "path": "src/utils/validation.ts",
3015
- "declarations": [
3016
- {
3017
- "kind": "function",
3018
- "name": "mustMatch",
3019
- "parameters": [
3020
- {
3021
- "name": "target",
3022
- "type": {
3023
- "text": "string"
3024
- },
3025
- "description": "any other field"
3026
- }
3027
- ],
3028
- "description": "Ensures the value of the current field (the one the validator is on) matches the one of the target field.",
3029
- "return": {
3030
- "type": {
3031
- "text": ""
3032
- }
3033
- },
3034
- "privacy": "public"
3035
- },
3036
- {
3037
- "kind": "function",
3038
- "name": "getAnyOfErrorMessage",
3039
- "return": {
3040
- "type": {
3041
- "text": "string"
3042
- }
3043
- },
3044
- "parameters": [
3045
- {
3046
- "name": "errors",
3047
- "type": {
3048
- "text": "Array<any> | undefined"
3049
- }
3050
- },
3051
- {
3052
- "name": "schema",
3053
- "type": {
3054
- "text": "any"
3055
- }
3056
- },
3057
- {
3058
- "name": "controlPath",
3059
- "type": {
3060
- "text": "string | undefined"
3061
- }
3062
- },
3063
- {
3064
- "name": "uiCustomMsg",
3065
- "optional": true,
3066
- "type": {
3067
- "text": "string"
3068
- }
3069
- }
3070
- ],
3071
- "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."
3072
- }
3073
- ],
3074
- "exports": [
3075
- {
3076
- "kind": "js",
3077
- "name": "mustMatch",
3078
- "declaration": {
3079
- "name": "mustMatch",
3080
- "module": "src/utils/validation.ts"
3081
- }
3082
- },
3083
- {
3084
- "kind": "js",
3085
- "name": "getAnyOfErrorMessage",
3086
- "declaration": {
3087
- "name": "getAnyOfErrorMessage",
3088
- "module": "src/utils/validation.ts"
3089
- }
3090
- }
3091
- ]
3092
- },
3093
3093
  {
3094
3094
  "kind": "javascript-module",
3095
3095
  "path": "src/jsonforms/testers/isArray.ts",
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.354.4",
4
+ "version": "14.354.6",
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.354.4",
52
- "@genesislcap/genx": "14.354.4",
53
- "@genesislcap/rollup-builder": "14.354.4",
54
- "@genesislcap/ts-builder": "14.354.4",
55
- "@genesislcap/uvu-playwright-builder": "14.354.4",
56
- "@genesislcap/vite-builder": "14.354.4",
57
- "@genesislcap/webpack-builder": "14.354.4",
51
+ "@genesislcap/foundation-testing": "14.354.6",
52
+ "@genesislcap/genx": "14.354.6",
53
+ "@genesislcap/rollup-builder": "14.354.6",
54
+ "@genesislcap/ts-builder": "14.354.6",
55
+ "@genesislcap/uvu-playwright-builder": "14.354.6",
56
+ "@genesislcap/vite-builder": "14.354.6",
57
+ "@genesislcap/webpack-builder": "14.354.6",
58
58
  "@types/json-schema": "^7.0.11"
59
59
  },
60
60
  "dependencies": {
61
- "@genesislcap/foundation-comms": "14.354.4",
62
- "@genesislcap/foundation-criteria": "14.354.4",
63
- "@genesislcap/foundation-logger": "14.354.4",
64
- "@genesislcap/foundation-notifications": "14.354.4",
65
- "@genesislcap/foundation-ui": "14.354.4",
66
- "@genesislcap/foundation-utils": "14.354.4",
61
+ "@genesislcap/foundation-comms": "14.354.6",
62
+ "@genesislcap/foundation-criteria": "14.354.6",
63
+ "@genesislcap/foundation-logger": "14.354.6",
64
+ "@genesislcap/foundation-notifications": "14.354.6",
65
+ "@genesislcap/foundation-ui": "14.354.6",
66
+ "@genesislcap/foundation-utils": "14.354.6",
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": "c3720106356b3491a049851218861ac489911d99"
87
+ "gitHead": "fa8ca4d1ae0351d86a7e3561124c246a6fd2063f"
88
88
  }