@genesislcap/foundation-forms 14.339.1 → 14.340.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
@@ -1109,6 +1109,206 @@
1109
1109
  }
1110
1110
  ]
1111
1111
  },
1112
+ {
1113
+ "kind": "javascript-module",
1114
+ "path": "src/utils/confirmation-dialog-utils.ts",
1115
+ "declarations": [],
1116
+ "exports": []
1117
+ },
1118
+ {
1119
+ "kind": "javascript-module",
1120
+ "path": "src/utils/filters.ts",
1121
+ "declarations": [],
1122
+ "exports": []
1123
+ },
1124
+ {
1125
+ "kind": "javascript-module",
1126
+ "path": "src/utils/form-utils.ts",
1127
+ "declarations": [
1128
+ {
1129
+ "kind": "function",
1130
+ "name": "removeDataPropertiesNotInSchema",
1131
+ "return": {
1132
+ "type": {
1133
+ "text": ""
1134
+ }
1135
+ },
1136
+ "parameters": [
1137
+ {
1138
+ "name": "data",
1139
+ "type": {
1140
+ "text": "any"
1141
+ },
1142
+ "description": "The data object to clean"
1143
+ },
1144
+ {
1145
+ "name": "jsonSchema",
1146
+ "type": {
1147
+ "text": "JSONSchema7"
1148
+ },
1149
+ "description": "The JSON schema to validate against"
1150
+ }
1151
+ ],
1152
+ "description": "Removes data properties that aren't part of the schema"
1153
+ }
1154
+ ],
1155
+ "exports": [
1156
+ {
1157
+ "kind": "js",
1158
+ "name": "removeDataPropertiesNotInSchema",
1159
+ "declaration": {
1160
+ "name": "removeDataPropertiesNotInSchema",
1161
+ "module": "src/utils/form-utils.ts"
1162
+ }
1163
+ }
1164
+ ]
1165
+ },
1166
+ {
1167
+ "kind": "javascript-module",
1168
+ "path": "src/utils/index.ts",
1169
+ "declarations": [],
1170
+ "exports": [
1171
+ {
1172
+ "kind": "js",
1173
+ "name": "*",
1174
+ "declaration": {
1175
+ "name": "*",
1176
+ "package": "./filters"
1177
+ }
1178
+ },
1179
+ {
1180
+ "kind": "js",
1181
+ "name": "*",
1182
+ "declaration": {
1183
+ "name": "*",
1184
+ "package": "./logger"
1185
+ }
1186
+ },
1187
+ {
1188
+ "kind": "js",
1189
+ "name": "*",
1190
+ "declaration": {
1191
+ "name": "*",
1192
+ "package": "./translation"
1193
+ }
1194
+ },
1195
+ {
1196
+ "kind": "js",
1197
+ "name": "*",
1198
+ "declaration": {
1199
+ "name": "*",
1200
+ "package": "./validation"
1201
+ }
1202
+ },
1203
+ {
1204
+ "kind": "js",
1205
+ "name": "*",
1206
+ "declaration": {
1207
+ "name": "*",
1208
+ "package": "./types"
1209
+ }
1210
+ }
1211
+ ]
1212
+ },
1213
+ {
1214
+ "kind": "javascript-module",
1215
+ "path": "src/utils/logger.ts",
1216
+ "declarations": [],
1217
+ "exports": []
1218
+ },
1219
+ {
1220
+ "kind": "javascript-module",
1221
+ "path": "src/utils/translation.ts",
1222
+ "declarations": [],
1223
+ "exports": []
1224
+ },
1225
+ {
1226
+ "kind": "javascript-module",
1227
+ "path": "src/utils/types.ts",
1228
+ "declarations": [],
1229
+ "exports": []
1230
+ },
1231
+ {
1232
+ "kind": "javascript-module",
1233
+ "path": "src/utils/validation.ts",
1234
+ "declarations": [
1235
+ {
1236
+ "kind": "function",
1237
+ "name": "mustMatch",
1238
+ "parameters": [
1239
+ {
1240
+ "name": "target",
1241
+ "type": {
1242
+ "text": "string"
1243
+ },
1244
+ "description": "any other field"
1245
+ }
1246
+ ],
1247
+ "description": "Ensures the value of the current field (the one the validator is on) matches the one of the target field.",
1248
+ "return": {
1249
+ "type": {
1250
+ "text": ""
1251
+ }
1252
+ },
1253
+ "privacy": "public"
1254
+ },
1255
+ {
1256
+ "kind": "function",
1257
+ "name": "getAnyOfErrorMessage",
1258
+ "return": {
1259
+ "type": {
1260
+ "text": "string"
1261
+ }
1262
+ },
1263
+ "parameters": [
1264
+ {
1265
+ "name": "errors",
1266
+ "type": {
1267
+ "text": "Array<any> | undefined"
1268
+ }
1269
+ },
1270
+ {
1271
+ "name": "schema",
1272
+ "type": {
1273
+ "text": "any"
1274
+ }
1275
+ },
1276
+ {
1277
+ "name": "controlPath",
1278
+ "type": {
1279
+ "text": "string | undefined"
1280
+ }
1281
+ },
1282
+ {
1283
+ "name": "uiCustomMsg",
1284
+ "optional": true,
1285
+ "type": {
1286
+ "text": "string"
1287
+ }
1288
+ }
1289
+ ],
1290
+ "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."
1291
+ }
1292
+ ],
1293
+ "exports": [
1294
+ {
1295
+ "kind": "js",
1296
+ "name": "mustMatch",
1297
+ "declaration": {
1298
+ "name": "mustMatch",
1299
+ "module": "src/utils/validation.ts"
1300
+ }
1301
+ },
1302
+ {
1303
+ "kind": "js",
1304
+ "name": "getAnyOfErrorMessage",
1305
+ "declaration": {
1306
+ "name": "getAnyOfErrorMessage",
1307
+ "module": "src/utils/validation.ts"
1308
+ }
1309
+ }
1310
+ ]
1311
+ },
1112
1312
  {
1113
1313
  "kind": "javascript-module",
1114
1314
  "path": "src/jsonforms/renderers/ArrayListWrapperRenderer.ts",
@@ -3025,206 +3225,6 @@
3025
3225
  }
3026
3226
  }
3027
3227
  ]
3028
- },
3029
- {
3030
- "kind": "javascript-module",
3031
- "path": "src/utils/confirmation-dialog-utils.ts",
3032
- "declarations": [],
3033
- "exports": []
3034
- },
3035
- {
3036
- "kind": "javascript-module",
3037
- "path": "src/utils/filters.ts",
3038
- "declarations": [],
3039
- "exports": []
3040
- },
3041
- {
3042
- "kind": "javascript-module",
3043
- "path": "src/utils/form-utils.ts",
3044
- "declarations": [
3045
- {
3046
- "kind": "function",
3047
- "name": "removeDataPropertiesNotInSchema",
3048
- "return": {
3049
- "type": {
3050
- "text": ""
3051
- }
3052
- },
3053
- "parameters": [
3054
- {
3055
- "name": "data",
3056
- "type": {
3057
- "text": "any"
3058
- },
3059
- "description": "The data object to clean"
3060
- },
3061
- {
3062
- "name": "jsonSchema",
3063
- "type": {
3064
- "text": "JSONSchema7"
3065
- },
3066
- "description": "The JSON schema to validate against"
3067
- }
3068
- ],
3069
- "description": "Removes data properties that aren't part of the schema"
3070
- }
3071
- ],
3072
- "exports": [
3073
- {
3074
- "kind": "js",
3075
- "name": "removeDataPropertiesNotInSchema",
3076
- "declaration": {
3077
- "name": "removeDataPropertiesNotInSchema",
3078
- "module": "src/utils/form-utils.ts"
3079
- }
3080
- }
3081
- ]
3082
- },
3083
- {
3084
- "kind": "javascript-module",
3085
- "path": "src/utils/index.ts",
3086
- "declarations": [],
3087
- "exports": [
3088
- {
3089
- "kind": "js",
3090
- "name": "*",
3091
- "declaration": {
3092
- "name": "*",
3093
- "package": "./filters"
3094
- }
3095
- },
3096
- {
3097
- "kind": "js",
3098
- "name": "*",
3099
- "declaration": {
3100
- "name": "*",
3101
- "package": "./logger"
3102
- }
3103
- },
3104
- {
3105
- "kind": "js",
3106
- "name": "*",
3107
- "declaration": {
3108
- "name": "*",
3109
- "package": "./translation"
3110
- }
3111
- },
3112
- {
3113
- "kind": "js",
3114
- "name": "*",
3115
- "declaration": {
3116
- "name": "*",
3117
- "package": "./validation"
3118
- }
3119
- },
3120
- {
3121
- "kind": "js",
3122
- "name": "*",
3123
- "declaration": {
3124
- "name": "*",
3125
- "package": "./types"
3126
- }
3127
- }
3128
- ]
3129
- },
3130
- {
3131
- "kind": "javascript-module",
3132
- "path": "src/utils/logger.ts",
3133
- "declarations": [],
3134
- "exports": []
3135
- },
3136
- {
3137
- "kind": "javascript-module",
3138
- "path": "src/utils/translation.ts",
3139
- "declarations": [],
3140
- "exports": []
3141
- },
3142
- {
3143
- "kind": "javascript-module",
3144
- "path": "src/utils/types.ts",
3145
- "declarations": [],
3146
- "exports": []
3147
- },
3148
- {
3149
- "kind": "javascript-module",
3150
- "path": "src/utils/validation.ts",
3151
- "declarations": [
3152
- {
3153
- "kind": "function",
3154
- "name": "mustMatch",
3155
- "parameters": [
3156
- {
3157
- "name": "target",
3158
- "type": {
3159
- "text": "string"
3160
- },
3161
- "description": "any other field"
3162
- }
3163
- ],
3164
- "description": "Ensures the value of the current field (the one the validator is on) matches the one of the target field.",
3165
- "return": {
3166
- "type": {
3167
- "text": ""
3168
- }
3169
- },
3170
- "privacy": "public"
3171
- },
3172
- {
3173
- "kind": "function",
3174
- "name": "getAnyOfErrorMessage",
3175
- "return": {
3176
- "type": {
3177
- "text": "string"
3178
- }
3179
- },
3180
- "parameters": [
3181
- {
3182
- "name": "errors",
3183
- "type": {
3184
- "text": "Array<any> | undefined"
3185
- }
3186
- },
3187
- {
3188
- "name": "schema",
3189
- "type": {
3190
- "text": "any"
3191
- }
3192
- },
3193
- {
3194
- "name": "controlPath",
3195
- "type": {
3196
- "text": "string | undefined"
3197
- }
3198
- },
3199
- {
3200
- "name": "uiCustomMsg",
3201
- "optional": true,
3202
- "type": {
3203
- "text": "string"
3204
- }
3205
- }
3206
- ],
3207
- "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."
3208
- }
3209
- ],
3210
- "exports": [
3211
- {
3212
- "kind": "js",
3213
- "name": "mustMatch",
3214
- "declaration": {
3215
- "name": "mustMatch",
3216
- "module": "src/utils/validation.ts"
3217
- }
3218
- },
3219
- {
3220
- "kind": "js",
3221
- "name": "getAnyOfErrorMessage",
3222
- "declaration": {
3223
- "name": "getAnyOfErrorMessage",
3224
- "module": "src/utils/validation.ts"
3225
- }
3226
- }
3227
- ]
3228
3228
  }
3229
3229
  ]
3230
3230
  }
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.339.1",
4
+ "version": "14.340.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.339.1",
52
- "@genesislcap/genx": "14.339.1",
53
- "@genesislcap/rollup-builder": "14.339.1",
54
- "@genesislcap/ts-builder": "14.339.1",
55
- "@genesislcap/uvu-playwright-builder": "14.339.1",
56
- "@genesislcap/vite-builder": "14.339.1",
57
- "@genesislcap/webpack-builder": "14.339.1",
51
+ "@genesislcap/foundation-testing": "14.340.0",
52
+ "@genesislcap/genx": "14.340.0",
53
+ "@genesislcap/rollup-builder": "14.340.0",
54
+ "@genesislcap/ts-builder": "14.340.0",
55
+ "@genesislcap/uvu-playwright-builder": "14.340.0",
56
+ "@genesislcap/vite-builder": "14.340.0",
57
+ "@genesislcap/webpack-builder": "14.340.0",
58
58
  "@types/json-schema": "^7.0.11"
59
59
  },
60
60
  "dependencies": {
61
- "@genesislcap/foundation-comms": "14.339.1",
62
- "@genesislcap/foundation-criteria": "14.339.1",
63
- "@genesislcap/foundation-logger": "14.339.1",
64
- "@genesislcap/foundation-notifications": "14.339.1",
65
- "@genesislcap/foundation-ui": "14.339.1",
66
- "@genesislcap/foundation-utils": "14.339.1",
61
+ "@genesislcap/foundation-comms": "14.340.0",
62
+ "@genesislcap/foundation-criteria": "14.340.0",
63
+ "@genesislcap/foundation-logger": "14.340.0",
64
+ "@genesislcap/foundation-notifications": "14.340.0",
65
+ "@genesislcap/foundation-ui": "14.340.0",
66
+ "@genesislcap/foundation-utils": "14.340.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": "83c777104959d087e3825e7351fe8ddcbe9c3955"
87
+ "gitHead": "56185a8a0835027cbe5ffd555d77feab75dd81c4"
88
88
  }