@genesislcap/foundation-utils 14.401.1-alpha-cc387ce24.0 → 14.401.1

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 +500 -500
  2. package/package.json +11 -11
@@ -201,280 +201,6 @@
201
201
  }
202
202
  ]
203
203
  },
204
- {
205
- "kind": "javascript-module",
206
- "path": "src/data/inMemoryDatabase.ts",
207
- "declarations": [
208
- {
209
- "kind": "class",
210
- "description": "An in memory database of specific DatabaseRecord types.",
211
- "name": "InMemoryDatabase",
212
- "members": [
213
- {
214
- "kind": "field",
215
- "name": "isWorking",
216
- "type": {
217
- "text": "boolean"
218
- },
219
- "privacy": "public",
220
- "default": "false"
221
- },
222
- {
223
- "kind": "field",
224
- "name": "records",
225
- "type": {
226
- "text": "Record<string, T>"
227
- },
228
- "privacy": "private",
229
- "default": "{}"
230
- },
231
- {
232
- "kind": "field",
233
- "name": "beforeUpdateListeners",
234
- "privacy": "private"
235
- },
236
- {
237
- "kind": "field",
238
- "name": "afterUpdateListeners",
239
- "privacy": "private"
240
- },
241
- {
242
- "kind": "method",
243
- "name": "create",
244
- "privacy": "public",
245
- "return": {
246
- "type": {
247
- "text": "Promise<DatabaseAccessResult.Create<T>>"
248
- }
249
- },
250
- "parameters": [
251
- {
252
- "name": "newValue",
253
- "type": {
254
- "text": "Omit<T, 'id'>"
255
- }
256
- }
257
- ]
258
- },
259
- {
260
- "kind": "method",
261
- "name": "read",
262
- "privacy": "public",
263
- "return": {
264
- "type": {
265
- "text": "Promise<DatabaseAccessResult.Read<T>>"
266
- }
267
- },
268
- "parameters": [
269
- {
270
- "name": "id",
271
- "type": {
272
- "text": "string"
273
- }
274
- }
275
- ]
276
- },
277
- {
278
- "kind": "method",
279
- "name": "update",
280
- "privacy": "public",
281
- "return": {
282
- "type": {
283
- "text": "Promise<DatabaseAccessResult.Update<T>>"
284
- }
285
- },
286
- "parameters": [
287
- {
288
- "name": "id",
289
- "type": {
290
- "text": "string"
291
- }
292
- },
293
- {
294
- "name": "newValue",
295
- "type": {
296
- "text": "Omit<Partial<T>, 'id'>"
297
- }
298
- }
299
- ]
300
- },
301
- {
302
- "kind": "method",
303
- "name": "delete",
304
- "privacy": "public",
305
- "return": {
306
- "type": {
307
- "text": "Promise<DatabaseAccessResult.Delete>"
308
- }
309
- },
310
- "parameters": [
311
- {
312
- "name": "id",
313
- "type": {
314
- "text": "string"
315
- }
316
- }
317
- ]
318
- },
319
- {
320
- "kind": "method",
321
- "name": "visit",
322
- "privacy": "public",
323
- "return": {
324
- "type": {
325
- "text": "Promise<void>"
326
- }
327
- },
328
- "parameters": [
329
- {
330
- "name": "visitor",
331
- "type": {
332
- "text": "(record: T) => void"
333
- }
334
- }
335
- ]
336
- },
337
- {
338
- "kind": "method",
339
- "name": "onBeforeUpdate",
340
- "privacy": "public",
341
- "return": {
342
- "type": {
343
- "text": "() => void"
344
- }
345
- },
346
- "parameters": [
347
- {
348
- "name": "listener",
349
- "type": {
350
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
351
- }
352
- }
353
- ]
354
- },
355
- {
356
- "kind": "method",
357
- "name": "onAfterUpdate",
358
- "privacy": "public",
359
- "return": {
360
- "type": {
361
- "text": "() => void"
362
- }
363
- },
364
- "parameters": [
365
- {
366
- "name": "listener",
367
- "type": {
368
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
369
- }
370
- }
371
- ]
372
- }
373
- ]
374
- }
375
- ],
376
- "exports": [
377
- {
378
- "kind": "js",
379
- "name": "InMemoryDatabase",
380
- "declaration": {
381
- "name": "InMemoryDatabase",
382
- "module": "src/data/inMemoryDatabase.ts"
383
- }
384
- }
385
- ]
386
- },
387
- {
388
- "kind": "javascript-module",
389
- "path": "src/data/index.ts",
390
- "declarations": [],
391
- "exports": [
392
- {
393
- "kind": "js",
394
- "name": "*",
395
- "declaration": {
396
- "name": "*",
397
- "package": "./inMemoryDatabase"
398
- }
399
- }
400
- ]
401
- },
402
- {
403
- "kind": "javascript-module",
404
- "path": "src/decorators/index.ts",
405
- "declarations": [],
406
- "exports": [
407
- {
408
- "kind": "js",
409
- "name": "*",
410
- "declaration": {
411
- "name": "*",
412
- "package": "./renderOnChange"
413
- }
414
- }
415
- ]
416
- },
417
- {
418
- "kind": "javascript-module",
419
- "path": "src/decorators/renderOnChange.ts",
420
- "declarations": [
421
- {
422
- "kind": "function",
423
- "name": "renderOnChange",
424
- "parameters": [
425
- {
426
- "name": "target",
427
- "type": {
428
- "text": "FASTElement & { render(): void }"
429
- },
430
- "description": "The target to define the property change handler on."
431
- },
432
- {
433
- "name": "name",
434
- "type": {
435
- "text": "string"
436
- },
437
- "description": "The property name."
438
- }
439
- ],
440
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
441
- "privacy": "public"
442
- }
443
- ],
444
- "exports": [
445
- {
446
- "kind": "js",
447
- "name": "renderOnChange",
448
- "declaration": {
449
- "name": "renderOnChange",
450
- "module": "src/decorators/renderOnChange.ts"
451
- }
452
- }
453
- ]
454
- },
455
- {
456
- "kind": "javascript-module",
457
- "path": "src/directives/index.ts",
458
- "declarations": [],
459
- "exports": [
460
- {
461
- "kind": "js",
462
- "name": "*",
463
- "declaration": {
464
- "name": "*",
465
- "package": "./sync"
466
- }
467
- },
468
- {
469
- "kind": "js",
470
- "name": "*",
471
- "declaration": {
472
- "name": "*",
473
- "package": "./when-else"
474
- }
475
- }
476
- ]
477
- },
478
204
  {
479
205
  "kind": "javascript-module",
480
206
  "path": "src/design-system/design-system.ts",
@@ -1224,54 +950,320 @@
1224
950
  "type": {
1225
951
  "text": "string"
1226
952
  },
1227
- "description": "{@inheritDoc ErrorMap.messages}",
1228
- "readonly": true
953
+ "description": "{@inheritDoc ErrorMap.messages}",
954
+ "readonly": true
955
+ }
956
+ ]
957
+ },
958
+ {
959
+ "kind": "function",
960
+ "name": "createErrorMap",
961
+ "return": {
962
+ "type": {
963
+ "text": ""
964
+ }
965
+ },
966
+ "parameters": [
967
+ {
968
+ "name": "logger",
969
+ "type": {
970
+ "text": "ErrorMapLogger"
971
+ },
972
+ "description": "A logger error method reference."
973
+ }
974
+ ],
975
+ "description": "A factory to create the error map.",
976
+ "privacy": "public"
977
+ }
978
+ ],
979
+ "exports": [
980
+ {
981
+ "kind": "js",
982
+ "name": "DefaultErrorMap",
983
+ "declaration": {
984
+ "name": "DefaultErrorMap",
985
+ "module": "src/error/errorMap.ts"
986
+ }
987
+ },
988
+ {
989
+ "kind": "js",
990
+ "name": "createErrorMap",
991
+ "declaration": {
992
+ "name": "createErrorMap",
993
+ "module": "src/error/errorMap.ts"
994
+ }
995
+ }
996
+ ]
997
+ },
998
+ {
999
+ "kind": "javascript-module",
1000
+ "path": "src/error/index.ts",
1001
+ "declarations": [],
1002
+ "exports": [
1003
+ {
1004
+ "kind": "js",
1005
+ "name": "*",
1006
+ "declaration": {
1007
+ "name": "*",
1008
+ "package": "./errorMap"
1009
+ }
1010
+ }
1011
+ ]
1012
+ },
1013
+ {
1014
+ "kind": "javascript-module",
1015
+ "path": "src/data/inMemoryDatabase.ts",
1016
+ "declarations": [
1017
+ {
1018
+ "kind": "class",
1019
+ "description": "An in memory database of specific DatabaseRecord types.",
1020
+ "name": "InMemoryDatabase",
1021
+ "members": [
1022
+ {
1023
+ "kind": "field",
1024
+ "name": "isWorking",
1025
+ "type": {
1026
+ "text": "boolean"
1027
+ },
1028
+ "privacy": "public",
1029
+ "default": "false"
1030
+ },
1031
+ {
1032
+ "kind": "field",
1033
+ "name": "records",
1034
+ "type": {
1035
+ "text": "Record<string, T>"
1036
+ },
1037
+ "privacy": "private",
1038
+ "default": "{}"
1039
+ },
1040
+ {
1041
+ "kind": "field",
1042
+ "name": "beforeUpdateListeners",
1043
+ "privacy": "private"
1044
+ },
1045
+ {
1046
+ "kind": "field",
1047
+ "name": "afterUpdateListeners",
1048
+ "privacy": "private"
1049
+ },
1050
+ {
1051
+ "kind": "method",
1052
+ "name": "create",
1053
+ "privacy": "public",
1054
+ "return": {
1055
+ "type": {
1056
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
1057
+ }
1058
+ },
1059
+ "parameters": [
1060
+ {
1061
+ "name": "newValue",
1062
+ "type": {
1063
+ "text": "Omit<T, 'id'>"
1064
+ }
1065
+ }
1066
+ ]
1067
+ },
1068
+ {
1069
+ "kind": "method",
1070
+ "name": "read",
1071
+ "privacy": "public",
1072
+ "return": {
1073
+ "type": {
1074
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
1075
+ }
1076
+ },
1077
+ "parameters": [
1078
+ {
1079
+ "name": "id",
1080
+ "type": {
1081
+ "text": "string"
1082
+ }
1083
+ }
1084
+ ]
1085
+ },
1086
+ {
1087
+ "kind": "method",
1088
+ "name": "update",
1089
+ "privacy": "public",
1090
+ "return": {
1091
+ "type": {
1092
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
1093
+ }
1094
+ },
1095
+ "parameters": [
1096
+ {
1097
+ "name": "id",
1098
+ "type": {
1099
+ "text": "string"
1100
+ }
1101
+ },
1102
+ {
1103
+ "name": "newValue",
1104
+ "type": {
1105
+ "text": "Omit<Partial<T>, 'id'>"
1106
+ }
1107
+ }
1108
+ ]
1109
+ },
1110
+ {
1111
+ "kind": "method",
1112
+ "name": "delete",
1113
+ "privacy": "public",
1114
+ "return": {
1115
+ "type": {
1116
+ "text": "Promise<DatabaseAccessResult.Delete>"
1117
+ }
1118
+ },
1119
+ "parameters": [
1120
+ {
1121
+ "name": "id",
1122
+ "type": {
1123
+ "text": "string"
1124
+ }
1125
+ }
1126
+ ]
1127
+ },
1128
+ {
1129
+ "kind": "method",
1130
+ "name": "visit",
1131
+ "privacy": "public",
1132
+ "return": {
1133
+ "type": {
1134
+ "text": "Promise<void>"
1135
+ }
1136
+ },
1137
+ "parameters": [
1138
+ {
1139
+ "name": "visitor",
1140
+ "type": {
1141
+ "text": "(record: T) => void"
1142
+ }
1143
+ }
1144
+ ]
1145
+ },
1146
+ {
1147
+ "kind": "method",
1148
+ "name": "onBeforeUpdate",
1149
+ "privacy": "public",
1150
+ "return": {
1151
+ "type": {
1152
+ "text": "() => void"
1153
+ }
1154
+ },
1155
+ "parameters": [
1156
+ {
1157
+ "name": "listener",
1158
+ "type": {
1159
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1160
+ }
1161
+ }
1162
+ ]
1163
+ },
1164
+ {
1165
+ "kind": "method",
1166
+ "name": "onAfterUpdate",
1167
+ "privacy": "public",
1168
+ "return": {
1169
+ "type": {
1170
+ "text": "() => void"
1171
+ }
1172
+ },
1173
+ "parameters": [
1174
+ {
1175
+ "name": "listener",
1176
+ "type": {
1177
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1178
+ }
1179
+ }
1180
+ ]
1229
1181
  }
1230
1182
  ]
1231
- },
1183
+ }
1184
+ ],
1185
+ "exports": [
1186
+ {
1187
+ "kind": "js",
1188
+ "name": "InMemoryDatabase",
1189
+ "declaration": {
1190
+ "name": "InMemoryDatabase",
1191
+ "module": "src/data/inMemoryDatabase.ts"
1192
+ }
1193
+ }
1194
+ ]
1195
+ },
1196
+ {
1197
+ "kind": "javascript-module",
1198
+ "path": "src/data/index.ts",
1199
+ "declarations": [],
1200
+ "exports": [
1201
+ {
1202
+ "kind": "js",
1203
+ "name": "*",
1204
+ "declaration": {
1205
+ "name": "*",
1206
+ "package": "./inMemoryDatabase"
1207
+ }
1208
+ }
1209
+ ]
1210
+ },
1211
+ {
1212
+ "kind": "javascript-module",
1213
+ "path": "src/decorators/index.ts",
1214
+ "declarations": [],
1215
+ "exports": [
1216
+ {
1217
+ "kind": "js",
1218
+ "name": "*",
1219
+ "declaration": {
1220
+ "name": "*",
1221
+ "package": "./renderOnChange"
1222
+ }
1223
+ }
1224
+ ]
1225
+ },
1226
+ {
1227
+ "kind": "javascript-module",
1228
+ "path": "src/decorators/renderOnChange.ts",
1229
+ "declarations": [
1232
1230
  {
1233
1231
  "kind": "function",
1234
- "name": "createErrorMap",
1235
- "return": {
1236
- "type": {
1237
- "text": ""
1238
- }
1239
- },
1232
+ "name": "renderOnChange",
1240
1233
  "parameters": [
1241
1234
  {
1242
- "name": "logger",
1235
+ "name": "target",
1243
1236
  "type": {
1244
- "text": "ErrorMapLogger"
1237
+ "text": "FASTElement & { render(): void }"
1245
1238
  },
1246
- "description": "A logger error method reference."
1239
+ "description": "The target to define the property change handler on."
1240
+ },
1241
+ {
1242
+ "name": "name",
1243
+ "type": {
1244
+ "text": "string"
1245
+ },
1246
+ "description": "The property name."
1247
1247
  }
1248
1248
  ],
1249
- "description": "A factory to create the error map.",
1249
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1250
1250
  "privacy": "public"
1251
1251
  }
1252
1252
  ],
1253
1253
  "exports": [
1254
1254
  {
1255
1255
  "kind": "js",
1256
- "name": "DefaultErrorMap",
1257
- "declaration": {
1258
- "name": "DefaultErrorMap",
1259
- "module": "src/error/errorMap.ts"
1260
- }
1261
- },
1262
- {
1263
- "kind": "js",
1264
- "name": "createErrorMap",
1256
+ "name": "renderOnChange",
1265
1257
  "declaration": {
1266
- "name": "createErrorMap",
1267
- "module": "src/error/errorMap.ts"
1258
+ "name": "renderOnChange",
1259
+ "module": "src/decorators/renderOnChange.ts"
1268
1260
  }
1269
1261
  }
1270
1262
  ]
1271
1263
  },
1272
1264
  {
1273
1265
  "kind": "javascript-module",
1274
- "path": "src/error/index.ts",
1266
+ "path": "src/directives/index.ts",
1275
1267
  "declarations": [],
1276
1268
  "exports": [
1277
1269
  {
@@ -1279,7 +1271,15 @@
1279
1271
  "name": "*",
1280
1272
  "declaration": {
1281
1273
  "name": "*",
1282
- "package": "./errorMap"
1274
+ "package": "./sync"
1275
+ }
1276
+ },
1277
+ {
1278
+ "kind": "js",
1279
+ "name": "*",
1280
+ "declaration": {
1281
+ "name": "*",
1282
+ "package": "./when-else"
1283
1283
  }
1284
1284
  }
1285
1285
  ]
@@ -4174,7 +4174,165 @@
4174
4174
  },
4175
4175
  {
4176
4176
  "kind": "function",
4177
- "name": "openPopup",
4177
+ "name": "openPopup",
4178
+ "return": {
4179
+ "type": {
4180
+ "text": ""
4181
+ }
4182
+ },
4183
+ "parameters": [
4184
+ {
4185
+ "name": "urlNavigate",
4186
+ "type": {
4187
+ "text": "string"
4188
+ },
4189
+ "description": "The URL to navigate to."
4190
+ },
4191
+ {
4192
+ "name": "target",
4193
+ "type": {
4194
+ "text": "string"
4195
+ },
4196
+ "description": "The name of the new window."
4197
+ },
4198
+ {
4199
+ "name": "popUpWidth",
4200
+ "default": "POPUP_DEFAULT_WIDTH",
4201
+ "type": {
4202
+ "text": "number"
4203
+ },
4204
+ "description": "The width of the new window (optional)."
4205
+ },
4206
+ {
4207
+ "name": "popUpHeight",
4208
+ "default": "POPUP_DEFAULT_HEIGHT",
4209
+ "type": {
4210
+ "text": "number"
4211
+ },
4212
+ "description": "The height of the new window (optional)."
4213
+ }
4214
+ ],
4215
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
4216
+ "privacy": "public"
4217
+ }
4218
+ ],
4219
+ "exports": [
4220
+ {
4221
+ "kind": "js",
4222
+ "name": "inIFrame",
4223
+ "declaration": {
4224
+ "name": "inIFrame",
4225
+ "module": "src/window/window.ts"
4226
+ }
4227
+ },
4228
+ {
4229
+ "kind": "js",
4230
+ "name": "inSymphonyDesktop",
4231
+ "declaration": {
4232
+ "name": "inSymphonyDesktop",
4233
+ "module": "src/window/window.ts"
4234
+ }
4235
+ },
4236
+ {
4237
+ "kind": "js",
4238
+ "name": "POPUP_DEFAULT_WIDTH",
4239
+ "declaration": {
4240
+ "name": "POPUP_DEFAULT_WIDTH",
4241
+ "module": "src/window/window.ts"
4242
+ }
4243
+ },
4244
+ {
4245
+ "kind": "js",
4246
+ "name": "POPUP_DEFAULT_HEIGHT",
4247
+ "declaration": {
4248
+ "name": "POPUP_DEFAULT_HEIGHT",
4249
+ "module": "src/window/window.ts"
4250
+ }
4251
+ },
4252
+ {
4253
+ "kind": "js",
4254
+ "name": "openPopup",
4255
+ "declaration": {
4256
+ "name": "openPopup",
4257
+ "module": "src/window/window.ts"
4258
+ }
4259
+ }
4260
+ ]
4261
+ },
4262
+ {
4263
+ "kind": "javascript-module",
4264
+ "path": "src/encoding/base64/decode.ts",
4265
+ "declarations": [
4266
+ {
4267
+ "kind": "function",
4268
+ "name": "decodeFromBase64",
4269
+ "return": {
4270
+ "type": {
4271
+ "text": ""
4272
+ }
4273
+ },
4274
+ "parameters": [
4275
+ {
4276
+ "name": "base64Value",
4277
+ "type": {
4278
+ "text": "string"
4279
+ }
4280
+ },
4281
+ {
4282
+ "description": "The value to decode from base64.",
4283
+ "name": "value"
4284
+ }
4285
+ ],
4286
+ "description": "Decodes a value from base64.",
4287
+ "privacy": "public"
4288
+ },
4289
+ {
4290
+ "kind": "function",
4291
+ "name": "decodeFromBase64WithPrefix",
4292
+ "return": {
4293
+ "type": {
4294
+ "text": ""
4295
+ }
4296
+ },
4297
+ "parameters": [
4298
+ {
4299
+ "name": "value",
4300
+ "type": {
4301
+ "text": "string"
4302
+ },
4303
+ "description": "The value to decode from base64."
4304
+ }
4305
+ ],
4306
+ "description": "Decodes a value from base64 with a prefix.",
4307
+ "privacy": "public"
4308
+ }
4309
+ ],
4310
+ "exports": [
4311
+ {
4312
+ "kind": "js",
4313
+ "name": "decodeFromBase64",
4314
+ "declaration": {
4315
+ "name": "decodeFromBase64",
4316
+ "module": "src/encoding/base64/decode.ts"
4317
+ }
4318
+ },
4319
+ {
4320
+ "kind": "js",
4321
+ "name": "decodeFromBase64WithPrefix",
4322
+ "declaration": {
4323
+ "name": "decodeFromBase64WithPrefix",
4324
+ "module": "src/encoding/base64/decode.ts"
4325
+ }
4326
+ }
4327
+ ]
4328
+ },
4329
+ {
4330
+ "kind": "javascript-module",
4331
+ "path": "src/encoding/base64/encode.ts",
4332
+ "declarations": [
4333
+ {
4334
+ "kind": "function",
4335
+ "name": "encodeToBase64",
4178
4336
  "return": {
4179
4337
  "type": {
4180
4338
  "text": ""
@@ -4182,79 +4340,75 @@
4182
4340
  },
4183
4341
  "parameters": [
4184
4342
  {
4185
- "name": "urlNavigate",
4186
- "type": {
4187
- "text": "string"
4188
- },
4189
- "description": "The URL to navigate to."
4190
- },
4191
- {
4192
- "name": "target",
4193
- "type": {
4194
- "text": "string"
4195
- },
4196
- "description": "The name of the new window."
4197
- },
4198
- {
4199
- "name": "popUpWidth",
4200
- "default": "POPUP_DEFAULT_WIDTH",
4343
+ "name": "value",
4201
4344
  "type": {
4202
- "text": "number"
4345
+ "text": "string | ArrayBuffer"
4203
4346
  },
4204
- "description": "The width of the new window (optional)."
4205
- },
4347
+ "description": "The value to encode to base64."
4348
+ }
4349
+ ],
4350
+ "description": "Encodes the given value to base64.",
4351
+ "privacy": "public"
4352
+ },
4353
+ {
4354
+ "kind": "function",
4355
+ "name": "encodeToBase64WithPrefix",
4356
+ "return": {
4357
+ "type": {
4358
+ "text": ""
4359
+ }
4360
+ },
4361
+ "parameters": [
4206
4362
  {
4207
- "name": "popUpHeight",
4208
- "default": "POPUP_DEFAULT_HEIGHT",
4363
+ "name": "value",
4209
4364
  "type": {
4210
- "text": "number"
4365
+ "text": "string | ArrayBuffer"
4211
4366
  },
4212
- "description": "The height of the new window (optional)."
4367
+ "description": "The value to encode to base64."
4213
4368
  }
4214
4369
  ],
4215
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
4370
+ "description": "Encodes the given value with a prefix to base64.",
4216
4371
  "privacy": "public"
4217
4372
  }
4218
4373
  ],
4219
4374
  "exports": [
4220
4375
  {
4221
4376
  "kind": "js",
4222
- "name": "inIFrame",
4223
- "declaration": {
4224
- "name": "inIFrame",
4225
- "module": "src/window/window.ts"
4226
- }
4227
- },
4228
- {
4229
- "kind": "js",
4230
- "name": "inSymphonyDesktop",
4377
+ "name": "encodeToBase64",
4231
4378
  "declaration": {
4232
- "name": "inSymphonyDesktop",
4233
- "module": "src/window/window.ts"
4379
+ "name": "encodeToBase64",
4380
+ "module": "src/encoding/base64/encode.ts"
4234
4381
  }
4235
4382
  },
4236
4383
  {
4237
4384
  "kind": "js",
4238
- "name": "POPUP_DEFAULT_WIDTH",
4385
+ "name": "encodeToBase64WithPrefix",
4239
4386
  "declaration": {
4240
- "name": "POPUP_DEFAULT_WIDTH",
4241
- "module": "src/window/window.ts"
4387
+ "name": "encodeToBase64WithPrefix",
4388
+ "module": "src/encoding/base64/encode.ts"
4242
4389
  }
4243
- },
4390
+ }
4391
+ ]
4392
+ },
4393
+ {
4394
+ "kind": "javascript-module",
4395
+ "path": "src/encoding/base64/index.ts",
4396
+ "declarations": [],
4397
+ "exports": [
4244
4398
  {
4245
4399
  "kind": "js",
4246
- "name": "POPUP_DEFAULT_HEIGHT",
4400
+ "name": "*",
4247
4401
  "declaration": {
4248
- "name": "POPUP_DEFAULT_HEIGHT",
4249
- "module": "src/window/window.ts"
4402
+ "name": "*",
4403
+ "package": "./decode"
4250
4404
  }
4251
4405
  },
4252
4406
  {
4253
4407
  "kind": "js",
4254
- "name": "openPopup",
4408
+ "name": "*",
4255
4409
  "declaration": {
4256
- "name": "openPopup",
4257
- "module": "src/window/window.ts"
4410
+ "name": "*",
4411
+ "package": "./encode"
4258
4412
  }
4259
4413
  }
4260
4414
  ]
@@ -4413,160 +4567,6 @@
4413
4567
  }
4414
4568
  ]
4415
4569
  },
4416
- {
4417
- "kind": "javascript-module",
4418
- "path": "src/encoding/base64/decode.ts",
4419
- "declarations": [
4420
- {
4421
- "kind": "function",
4422
- "name": "decodeFromBase64",
4423
- "return": {
4424
- "type": {
4425
- "text": ""
4426
- }
4427
- },
4428
- "parameters": [
4429
- {
4430
- "name": "base64Value",
4431
- "type": {
4432
- "text": "string"
4433
- }
4434
- },
4435
- {
4436
- "description": "The value to decode from base64.",
4437
- "name": "value"
4438
- }
4439
- ],
4440
- "description": "Decodes a value from base64.",
4441
- "privacy": "public"
4442
- },
4443
- {
4444
- "kind": "function",
4445
- "name": "decodeFromBase64WithPrefix",
4446
- "return": {
4447
- "type": {
4448
- "text": ""
4449
- }
4450
- },
4451
- "parameters": [
4452
- {
4453
- "name": "value",
4454
- "type": {
4455
- "text": "string"
4456
- },
4457
- "description": "The value to decode from base64."
4458
- }
4459
- ],
4460
- "description": "Decodes a value from base64 with a prefix.",
4461
- "privacy": "public"
4462
- }
4463
- ],
4464
- "exports": [
4465
- {
4466
- "kind": "js",
4467
- "name": "decodeFromBase64",
4468
- "declaration": {
4469
- "name": "decodeFromBase64",
4470
- "module": "src/encoding/base64/decode.ts"
4471
- }
4472
- },
4473
- {
4474
- "kind": "js",
4475
- "name": "decodeFromBase64WithPrefix",
4476
- "declaration": {
4477
- "name": "decodeFromBase64WithPrefix",
4478
- "module": "src/encoding/base64/decode.ts"
4479
- }
4480
- }
4481
- ]
4482
- },
4483
- {
4484
- "kind": "javascript-module",
4485
- "path": "src/encoding/base64/encode.ts",
4486
- "declarations": [
4487
- {
4488
- "kind": "function",
4489
- "name": "encodeToBase64",
4490
- "return": {
4491
- "type": {
4492
- "text": ""
4493
- }
4494
- },
4495
- "parameters": [
4496
- {
4497
- "name": "value",
4498
- "type": {
4499
- "text": "string | ArrayBuffer"
4500
- },
4501
- "description": "The value to encode to base64."
4502
- }
4503
- ],
4504
- "description": "Encodes the given value to base64.",
4505
- "privacy": "public"
4506
- },
4507
- {
4508
- "kind": "function",
4509
- "name": "encodeToBase64WithPrefix",
4510
- "return": {
4511
- "type": {
4512
- "text": ""
4513
- }
4514
- },
4515
- "parameters": [
4516
- {
4517
- "name": "value",
4518
- "type": {
4519
- "text": "string | ArrayBuffer"
4520
- },
4521
- "description": "The value to encode to base64."
4522
- }
4523
- ],
4524
- "description": "Encodes the given value with a prefix to base64.",
4525
- "privacy": "public"
4526
- }
4527
- ],
4528
- "exports": [
4529
- {
4530
- "kind": "js",
4531
- "name": "encodeToBase64",
4532
- "declaration": {
4533
- "name": "encodeToBase64",
4534
- "module": "src/encoding/base64/encode.ts"
4535
- }
4536
- },
4537
- {
4538
- "kind": "js",
4539
- "name": "encodeToBase64WithPrefix",
4540
- "declaration": {
4541
- "name": "encodeToBase64WithPrefix",
4542
- "module": "src/encoding/base64/encode.ts"
4543
- }
4544
- }
4545
- ]
4546
- },
4547
- {
4548
- "kind": "javascript-module",
4549
- "path": "src/encoding/base64/index.ts",
4550
- "declarations": [],
4551
- "exports": [
4552
- {
4553
- "kind": "js",
4554
- "name": "*",
4555
- "declaration": {
4556
- "name": "*",
4557
- "package": "./decode"
4558
- }
4559
- },
4560
- {
4561
- "kind": "js",
4562
- "name": "*",
4563
- "declaration": {
4564
- "name": "*",
4565
- "package": "./encode"
4566
- }
4567
- }
4568
- ]
4569
- },
4570
4570
  {
4571
4571
  "kind": "javascript-module",
4572
4572
  "path": "src/mappers/dto/index.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.401.1-alpha-cc387ce24.0",
4
+ "version": "14.401.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -29,18 +29,18 @@
29
29
  }
30
30
  },
31
31
  "devDependencies": {
32
- "@genesislcap/foundation-testing": "14.401.1-alpha-cc387ce24.0",
33
- "@genesislcap/genx": "14.401.1-alpha-cc387ce24.0",
34
- "@genesislcap/rollup-builder": "14.401.1-alpha-cc387ce24.0",
35
- "@genesislcap/ts-builder": "14.401.1-alpha-cc387ce24.0",
36
- "@genesislcap/uvu-playwright-builder": "14.401.1-alpha-cc387ce24.0",
37
- "@genesislcap/vite-builder": "14.401.1-alpha-cc387ce24.0",
38
- "@genesislcap/webpack-builder": "14.401.1-alpha-cc387ce24.0",
32
+ "@genesislcap/foundation-testing": "14.401.1",
33
+ "@genesislcap/genx": "14.401.1",
34
+ "@genesislcap/rollup-builder": "14.401.1",
35
+ "@genesislcap/ts-builder": "14.401.1",
36
+ "@genesislcap/uvu-playwright-builder": "14.401.1",
37
+ "@genesislcap/vite-builder": "14.401.1",
38
+ "@genesislcap/webpack-builder": "14.401.1",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.401.1-alpha-cc387ce24.0",
43
- "@genesislcap/foundation-logger": "14.401.1-alpha-cc387ce24.0",
42
+ "@genesislcap/expression-builder": "14.401.1",
43
+ "@genesislcap/foundation-logger": "14.401.1",
44
44
  "@microsoft/fast-components": "2.30.6",
45
45
  "@microsoft/fast-element": "1.14.0",
46
46
  "@microsoft/fast-foundation": "2.50.0",
@@ -58,5 +58,5 @@
58
58
  "access": "public"
59
59
  },
60
60
  "customElements": "dist/custom-elements.json",
61
- "gitHead": "c6853b8d64dc2a1f83bdb7d97be3747f48bcc512"
61
+ "gitHead": "67e1a22a530940a9656775a0af0062847f407119"
62
62
  }