@genesislcap/foundation-utils 14.406.0-workspaces.1 → 14.406.0-workspaces.3

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 +543 -543
  2. package/package.json +11 -11
@@ -217,6 +217,298 @@
217
217
  }
218
218
  ]
219
219
  },
220
+ {
221
+ "kind": "javascript-module",
222
+ "path": "src/converters/index.ts",
223
+ "declarations": [],
224
+ "exports": [
225
+ {
226
+ "kind": "js",
227
+ "name": "*",
228
+ "declaration": {
229
+ "name": "*",
230
+ "package": "./string-array-converter"
231
+ }
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ "kind": "javascript-module",
237
+ "path": "src/converters/string-array-converter.ts",
238
+ "declarations": [
239
+ {
240
+ "kind": "variable",
241
+ "name": "stringArrayConverter",
242
+ "type": {
243
+ "text": "ValueConverter"
244
+ },
245
+ "default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
246
+ "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
247
+ "privacy": "public"
248
+ }
249
+ ],
250
+ "exports": [
251
+ {
252
+ "kind": "js",
253
+ "name": "stringArrayConverter",
254
+ "declaration": {
255
+ "name": "stringArrayConverter",
256
+ "module": "src/converters/string-array-converter.ts"
257
+ }
258
+ }
259
+ ]
260
+ },
261
+ {
262
+ "kind": "javascript-module",
263
+ "path": "src/decorators/index.ts",
264
+ "declarations": [],
265
+ "exports": [
266
+ {
267
+ "kind": "js",
268
+ "name": "*",
269
+ "declaration": {
270
+ "name": "*",
271
+ "package": "./renderOnChange"
272
+ }
273
+ }
274
+ ]
275
+ },
276
+ {
277
+ "kind": "javascript-module",
278
+ "path": "src/decorators/renderOnChange.ts",
279
+ "declarations": [
280
+ {
281
+ "kind": "function",
282
+ "name": "renderOnChange",
283
+ "parameters": [
284
+ {
285
+ "name": "target",
286
+ "type": {
287
+ "text": "FASTElement & { render(): void }"
288
+ },
289
+ "description": "The target to define the property change handler on."
290
+ },
291
+ {
292
+ "name": "name",
293
+ "type": {
294
+ "text": "string"
295
+ },
296
+ "description": "The property name."
297
+ }
298
+ ],
299
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
300
+ "privacy": "public"
301
+ }
302
+ ],
303
+ "exports": [
304
+ {
305
+ "kind": "js",
306
+ "name": "renderOnChange",
307
+ "declaration": {
308
+ "name": "renderOnChange",
309
+ "module": "src/decorators/renderOnChange.ts"
310
+ }
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "kind": "javascript-module",
316
+ "path": "src/data/inMemoryDatabase.ts",
317
+ "declarations": [
318
+ {
319
+ "kind": "class",
320
+ "description": "An in memory database of specific DatabaseRecord types.",
321
+ "name": "InMemoryDatabase",
322
+ "members": [
323
+ {
324
+ "kind": "field",
325
+ "name": "isWorking",
326
+ "type": {
327
+ "text": "boolean"
328
+ },
329
+ "privacy": "public",
330
+ "default": "false"
331
+ },
332
+ {
333
+ "kind": "field",
334
+ "name": "records",
335
+ "type": {
336
+ "text": "Record<string, T>"
337
+ },
338
+ "privacy": "private",
339
+ "default": "{}"
340
+ },
341
+ {
342
+ "kind": "field",
343
+ "name": "beforeUpdateListeners",
344
+ "privacy": "private"
345
+ },
346
+ {
347
+ "kind": "field",
348
+ "name": "afterUpdateListeners",
349
+ "privacy": "private"
350
+ },
351
+ {
352
+ "kind": "method",
353
+ "name": "create",
354
+ "privacy": "public",
355
+ "return": {
356
+ "type": {
357
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
358
+ }
359
+ },
360
+ "parameters": [
361
+ {
362
+ "name": "newValue",
363
+ "type": {
364
+ "text": "Omit<T, 'id'>"
365
+ }
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "kind": "method",
371
+ "name": "read",
372
+ "privacy": "public",
373
+ "return": {
374
+ "type": {
375
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
376
+ }
377
+ },
378
+ "parameters": [
379
+ {
380
+ "name": "id",
381
+ "type": {
382
+ "text": "string"
383
+ }
384
+ }
385
+ ]
386
+ },
387
+ {
388
+ "kind": "method",
389
+ "name": "update",
390
+ "privacy": "public",
391
+ "return": {
392
+ "type": {
393
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
394
+ }
395
+ },
396
+ "parameters": [
397
+ {
398
+ "name": "id",
399
+ "type": {
400
+ "text": "string"
401
+ }
402
+ },
403
+ {
404
+ "name": "newValue",
405
+ "type": {
406
+ "text": "Omit<Partial<T>, 'id'>"
407
+ }
408
+ }
409
+ ]
410
+ },
411
+ {
412
+ "kind": "method",
413
+ "name": "delete",
414
+ "privacy": "public",
415
+ "return": {
416
+ "type": {
417
+ "text": "Promise<DatabaseAccessResult.Delete>"
418
+ }
419
+ },
420
+ "parameters": [
421
+ {
422
+ "name": "id",
423
+ "type": {
424
+ "text": "string"
425
+ }
426
+ }
427
+ ]
428
+ },
429
+ {
430
+ "kind": "method",
431
+ "name": "visit",
432
+ "privacy": "public",
433
+ "return": {
434
+ "type": {
435
+ "text": "Promise<void>"
436
+ }
437
+ },
438
+ "parameters": [
439
+ {
440
+ "name": "visitor",
441
+ "type": {
442
+ "text": "(record: T) => void"
443
+ }
444
+ }
445
+ ]
446
+ },
447
+ {
448
+ "kind": "method",
449
+ "name": "onBeforeUpdate",
450
+ "privacy": "public",
451
+ "return": {
452
+ "type": {
453
+ "text": "() => void"
454
+ }
455
+ },
456
+ "parameters": [
457
+ {
458
+ "name": "listener",
459
+ "type": {
460
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
461
+ }
462
+ }
463
+ ]
464
+ },
465
+ {
466
+ "kind": "method",
467
+ "name": "onAfterUpdate",
468
+ "privacy": "public",
469
+ "return": {
470
+ "type": {
471
+ "text": "() => void"
472
+ }
473
+ },
474
+ "parameters": [
475
+ {
476
+ "name": "listener",
477
+ "type": {
478
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
479
+ }
480
+ }
481
+ ]
482
+ }
483
+ ]
484
+ }
485
+ ],
486
+ "exports": [
487
+ {
488
+ "kind": "js",
489
+ "name": "InMemoryDatabase",
490
+ "declaration": {
491
+ "name": "InMemoryDatabase",
492
+ "module": "src/data/inMemoryDatabase.ts"
493
+ }
494
+ }
495
+ ]
496
+ },
497
+ {
498
+ "kind": "javascript-module",
499
+ "path": "src/data/index.ts",
500
+ "declarations": [],
501
+ "exports": [
502
+ {
503
+ "kind": "js",
504
+ "name": "*",
505
+ "declaration": {
506
+ "name": "*",
507
+ "package": "./inMemoryDatabase"
508
+ }
509
+ }
510
+ ]
511
+ },
220
512
  {
221
513
  "kind": "javascript-module",
222
514
  "path": "src/design-system/design-system.ts",
@@ -324,38 +616,15 @@
324
616
  },
325
617
  {
326
618
  "kind": "javascript-module",
327
- "path": "src/design-system/index.ts",
328
- "declarations": [],
329
- "exports": [
330
- {
331
- "kind": "js",
332
- "name": "*",
333
- "declaration": {
334
- "name": "*",
335
- "package": "./design-system"
336
- }
337
- }
338
- ]
339
- },
340
- {
341
- "kind": "javascript-module",
342
- "path": "src/directives/index.ts",
343
- "declarations": [],
344
- "exports": [
345
- {
346
- "kind": "js",
347
- "name": "*",
348
- "declaration": {
349
- "name": "*",
350
- "package": "./sync"
351
- }
352
- },
619
+ "path": "src/design-system/index.ts",
620
+ "declarations": [],
621
+ "exports": [
353
622
  {
354
623
  "kind": "js",
355
624
  "name": "*",
356
625
  "declaration": {
357
626
  "name": "*",
358
- "package": "./when-else"
627
+ "package": "./design-system"
359
628
  }
360
629
  }
361
630
  ]
@@ -813,285 +1082,46 @@
813
1082
  "name": "RESET_PASSWORD_URL",
814
1083
  "declaration": {
815
1084
  "name": "RESET_PASSWORD_URL",
816
- "module": "src/env/variables.ts"
817
- }
818
- },
819
- {
820
- "kind": "js",
821
- "name": "SSO_LIST_URL",
822
- "declaration": {
823
- "name": "SSO_LIST_URL",
824
- "module": "src/env/variables.ts"
825
- }
826
- },
827
- {
828
- "kind": "js",
829
- "name": "SSO_LOGIN_URL",
830
- "declaration": {
831
- "name": "SSO_LOGIN_URL",
832
- "module": "src/env/variables.ts"
833
- }
834
- },
835
- {
836
- "kind": "js",
837
- "name": "ENVIRONMENT_LEVEL",
838
- "declaration": {
839
- "name": "ENVIRONMENT_LEVEL",
840
- "module": "src/env/variables.ts"
841
- }
842
- },
843
- {
844
- "kind": "js",
845
- "name": "ACCEPT_TERMS_URL",
846
- "declaration": {
847
- "name": "ACCEPT_TERMS_URL",
848
- "module": "src/env/variables.ts"
849
- }
850
- }
851
- ]
852
- },
853
- {
854
- "kind": "javascript-module",
855
- "path": "src/converters/index.ts",
856
- "declarations": [],
857
- "exports": [
858
- {
859
- "kind": "js",
860
- "name": "*",
861
- "declaration": {
862
- "name": "*",
863
- "package": "./string-array-converter"
864
- }
865
- }
866
- ]
867
- },
868
- {
869
- "kind": "javascript-module",
870
- "path": "src/converters/string-array-converter.ts",
871
- "declarations": [
872
- {
873
- "kind": "variable",
874
- "name": "stringArrayConverter",
875
- "type": {
876
- "text": "ValueConverter"
877
- },
878
- "default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
879
- "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
880
- "privacy": "public"
881
- }
882
- ],
883
- "exports": [
884
- {
885
- "kind": "js",
886
- "name": "stringArrayConverter",
887
- "declaration": {
888
- "name": "stringArrayConverter",
889
- "module": "src/converters/string-array-converter.ts"
890
- }
891
- }
892
- ]
893
- },
894
- {
895
- "kind": "javascript-module",
896
- "path": "src/data/inMemoryDatabase.ts",
897
- "declarations": [
898
- {
899
- "kind": "class",
900
- "description": "An in memory database of specific DatabaseRecord types.",
901
- "name": "InMemoryDatabase",
902
- "members": [
903
- {
904
- "kind": "field",
905
- "name": "isWorking",
906
- "type": {
907
- "text": "boolean"
908
- },
909
- "privacy": "public",
910
- "default": "false"
911
- },
912
- {
913
- "kind": "field",
914
- "name": "records",
915
- "type": {
916
- "text": "Record<string, T>"
917
- },
918
- "privacy": "private",
919
- "default": "{}"
920
- },
921
- {
922
- "kind": "field",
923
- "name": "beforeUpdateListeners",
924
- "privacy": "private"
925
- },
926
- {
927
- "kind": "field",
928
- "name": "afterUpdateListeners",
929
- "privacy": "private"
930
- },
931
- {
932
- "kind": "method",
933
- "name": "create",
934
- "privacy": "public",
935
- "return": {
936
- "type": {
937
- "text": "Promise<DatabaseAccessResult.Create<T>>"
938
- }
939
- },
940
- "parameters": [
941
- {
942
- "name": "newValue",
943
- "type": {
944
- "text": "Omit<T, 'id'>"
945
- }
946
- }
947
- ]
948
- },
949
- {
950
- "kind": "method",
951
- "name": "read",
952
- "privacy": "public",
953
- "return": {
954
- "type": {
955
- "text": "Promise<DatabaseAccessResult.Read<T>>"
956
- }
957
- },
958
- "parameters": [
959
- {
960
- "name": "id",
961
- "type": {
962
- "text": "string"
963
- }
964
- }
965
- ]
966
- },
967
- {
968
- "kind": "method",
969
- "name": "update",
970
- "privacy": "public",
971
- "return": {
972
- "type": {
973
- "text": "Promise<DatabaseAccessResult.Update<T>>"
974
- }
975
- },
976
- "parameters": [
977
- {
978
- "name": "id",
979
- "type": {
980
- "text": "string"
981
- }
982
- },
983
- {
984
- "name": "newValue",
985
- "type": {
986
- "text": "Omit<Partial<T>, 'id'>"
987
- }
988
- }
989
- ]
990
- },
991
- {
992
- "kind": "method",
993
- "name": "delete",
994
- "privacy": "public",
995
- "return": {
996
- "type": {
997
- "text": "Promise<DatabaseAccessResult.Delete>"
998
- }
999
- },
1000
- "parameters": [
1001
- {
1002
- "name": "id",
1003
- "type": {
1004
- "text": "string"
1005
- }
1006
- }
1007
- ]
1008
- },
1009
- {
1010
- "kind": "method",
1011
- "name": "visit",
1012
- "privacy": "public",
1013
- "return": {
1014
- "type": {
1015
- "text": "Promise<void>"
1016
- }
1017
- },
1018
- "parameters": [
1019
- {
1020
- "name": "visitor",
1021
- "type": {
1022
- "text": "(record: T) => void"
1023
- }
1024
- }
1025
- ]
1026
- },
1027
- {
1028
- "kind": "method",
1029
- "name": "onBeforeUpdate",
1030
- "privacy": "public",
1031
- "return": {
1032
- "type": {
1033
- "text": "() => void"
1034
- }
1035
- },
1036
- "parameters": [
1037
- {
1038
- "name": "listener",
1039
- "type": {
1040
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1041
- }
1042
- }
1043
- ]
1044
- },
1045
- {
1046
- "kind": "method",
1047
- "name": "onAfterUpdate",
1048
- "privacy": "public",
1049
- "return": {
1050
- "type": {
1051
- "text": "() => void"
1052
- }
1053
- },
1054
- "parameters": [
1055
- {
1056
- "name": "listener",
1057
- "type": {
1058
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1059
- }
1060
- }
1061
- ]
1062
- }
1063
- ]
1064
- }
1065
- ],
1066
- "exports": [
1085
+ "module": "src/env/variables.ts"
1086
+ }
1087
+ },
1067
1088
  {
1068
1089
  "kind": "js",
1069
- "name": "InMemoryDatabase",
1090
+ "name": "SSO_LIST_URL",
1070
1091
  "declaration": {
1071
- "name": "InMemoryDatabase",
1072
- "module": "src/data/inMemoryDatabase.ts"
1092
+ "name": "SSO_LIST_URL",
1093
+ "module": "src/env/variables.ts"
1073
1094
  }
1074
- }
1075
- ]
1076
- },
1077
- {
1078
- "kind": "javascript-module",
1079
- "path": "src/data/index.ts",
1080
- "declarations": [],
1081
- "exports": [
1095
+ },
1082
1096
  {
1083
1097
  "kind": "js",
1084
- "name": "*",
1098
+ "name": "SSO_LOGIN_URL",
1085
1099
  "declaration": {
1086
- "name": "*",
1087
- "package": "./inMemoryDatabase"
1100
+ "name": "SSO_LOGIN_URL",
1101
+ "module": "src/env/variables.ts"
1102
+ }
1103
+ },
1104
+ {
1105
+ "kind": "js",
1106
+ "name": "ENVIRONMENT_LEVEL",
1107
+ "declaration": {
1108
+ "name": "ENVIRONMENT_LEVEL",
1109
+ "module": "src/env/variables.ts"
1110
+ }
1111
+ },
1112
+ {
1113
+ "kind": "js",
1114
+ "name": "ACCEPT_TERMS_URL",
1115
+ "declaration": {
1116
+ "name": "ACCEPT_TERMS_URL",
1117
+ "module": "src/env/variables.ts"
1088
1118
  }
1089
1119
  }
1090
1120
  ]
1091
1121
  },
1092
1122
  {
1093
1123
  "kind": "javascript-module",
1094
- "path": "src/decorators/index.ts",
1124
+ "path": "src/directives/index.ts",
1095
1125
  "declarations": [],
1096
1126
  "exports": [
1097
1127
  {
@@ -1099,45 +1129,15 @@
1099
1129
  "name": "*",
1100
1130
  "declaration": {
1101
1131
  "name": "*",
1102
- "package": "./renderOnChange"
1132
+ "package": "./sync"
1103
1133
  }
1104
- }
1105
- ]
1106
- },
1107
- {
1108
- "kind": "javascript-module",
1109
- "path": "src/decorators/renderOnChange.ts",
1110
- "declarations": [
1111
- {
1112
- "kind": "function",
1113
- "name": "renderOnChange",
1114
- "parameters": [
1115
- {
1116
- "name": "target",
1117
- "type": {
1118
- "text": "FASTElement & { render(): void }"
1119
- },
1120
- "description": "The target to define the property change handler on."
1121
- },
1122
- {
1123
- "name": "name",
1124
- "type": {
1125
- "text": "string"
1126
- },
1127
- "description": "The property name."
1128
- }
1129
- ],
1130
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1131
- "privacy": "public"
1132
- }
1133
- ],
1134
- "exports": [
1134
+ },
1135
1135
  {
1136
1136
  "kind": "js",
1137
- "name": "renderOnChange",
1137
+ "name": "*",
1138
1138
  "declaration": {
1139
- "name": "renderOnChange",
1140
- "module": "src/decorators/renderOnChange.ts"
1139
+ "name": "*",
1140
+ "package": "./when-else"
1141
1141
  }
1142
1142
  }
1143
1143
  ]
@@ -4220,18 +4220,202 @@
4220
4220
  "privacy": "public"
4221
4221
  },
4222
4222
  {
4223
- "kind": "variable",
4224
- "name": "POPUP_DEFAULT_HEIGHT",
4225
- "type": {
4226
- "text": "number"
4223
+ "kind": "variable",
4224
+ "name": "POPUP_DEFAULT_HEIGHT",
4225
+ "type": {
4226
+ "text": "number"
4227
+ },
4228
+ "default": "600",
4229
+ "description": "The default height (in pixels) for pop-up windows.",
4230
+ "privacy": "public"
4231
+ },
4232
+ {
4233
+ "kind": "function",
4234
+ "name": "openPopup",
4235
+ "return": {
4236
+ "type": {
4237
+ "text": ""
4238
+ }
4239
+ },
4240
+ "parameters": [
4241
+ {
4242
+ "name": "urlNavigate",
4243
+ "type": {
4244
+ "text": "string"
4245
+ },
4246
+ "description": "The URL to navigate to."
4247
+ },
4248
+ {
4249
+ "name": "target",
4250
+ "type": {
4251
+ "text": "string"
4252
+ },
4253
+ "description": "The name of the new window."
4254
+ },
4255
+ {
4256
+ "name": "popUpWidth",
4257
+ "default": "POPUP_DEFAULT_WIDTH",
4258
+ "type": {
4259
+ "text": "number"
4260
+ },
4261
+ "description": "The width of the new window (optional)."
4262
+ },
4263
+ {
4264
+ "name": "popUpHeight",
4265
+ "default": "POPUP_DEFAULT_HEIGHT",
4266
+ "type": {
4267
+ "text": "number"
4268
+ },
4269
+ "description": "The height of the new window (optional)."
4270
+ }
4271
+ ],
4272
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
4273
+ "privacy": "public"
4274
+ }
4275
+ ],
4276
+ "exports": [
4277
+ {
4278
+ "kind": "js",
4279
+ "name": "inIFrame",
4280
+ "declaration": {
4281
+ "name": "inIFrame",
4282
+ "module": "src/window/window.ts"
4283
+ }
4284
+ },
4285
+ {
4286
+ "kind": "js",
4287
+ "name": "inSymphonyDesktop",
4288
+ "declaration": {
4289
+ "name": "inSymphonyDesktop",
4290
+ "module": "src/window/window.ts"
4291
+ }
4292
+ },
4293
+ {
4294
+ "kind": "js",
4295
+ "name": "POPUP_DEFAULT_WIDTH",
4296
+ "declaration": {
4297
+ "name": "POPUP_DEFAULT_WIDTH",
4298
+ "module": "src/window/window.ts"
4299
+ }
4300
+ },
4301
+ {
4302
+ "kind": "js",
4303
+ "name": "POPUP_DEFAULT_HEIGHT",
4304
+ "declaration": {
4305
+ "name": "POPUP_DEFAULT_HEIGHT",
4306
+ "module": "src/window/window.ts"
4307
+ }
4308
+ },
4309
+ {
4310
+ "kind": "js",
4311
+ "name": "openPopup",
4312
+ "declaration": {
4313
+ "name": "openPopup",
4314
+ "module": "src/window/window.ts"
4315
+ }
4316
+ }
4317
+ ]
4318
+ },
4319
+ {
4320
+ "kind": "javascript-module",
4321
+ "path": "src/workspace/index.ts",
4322
+ "declarations": [],
4323
+ "exports": []
4324
+ },
4325
+ {
4326
+ "kind": "javascript-module",
4327
+ "path": "src/encoding/base64/decode.ts",
4328
+ "declarations": [
4329
+ {
4330
+ "kind": "function",
4331
+ "name": "decodeFromBase64",
4332
+ "return": {
4333
+ "type": {
4334
+ "text": ""
4335
+ }
4336
+ },
4337
+ "parameters": [
4338
+ {
4339
+ "name": "base64Value",
4340
+ "type": {
4341
+ "text": "string"
4342
+ }
4343
+ },
4344
+ {
4345
+ "description": "The value to decode from base64.",
4346
+ "name": "value"
4347
+ }
4348
+ ],
4349
+ "description": "Decodes a value from base64.",
4350
+ "privacy": "public"
4351
+ },
4352
+ {
4353
+ "kind": "function",
4354
+ "name": "decodeFromBase64WithPrefix",
4355
+ "return": {
4356
+ "type": {
4357
+ "text": ""
4358
+ }
4359
+ },
4360
+ "parameters": [
4361
+ {
4362
+ "name": "value",
4363
+ "type": {
4364
+ "text": "string"
4365
+ },
4366
+ "description": "The value to decode from base64."
4367
+ }
4368
+ ],
4369
+ "description": "Decodes a value from base64 with a prefix.",
4370
+ "privacy": "public"
4371
+ }
4372
+ ],
4373
+ "exports": [
4374
+ {
4375
+ "kind": "js",
4376
+ "name": "decodeFromBase64",
4377
+ "declaration": {
4378
+ "name": "decodeFromBase64",
4379
+ "module": "src/encoding/base64/decode.ts"
4380
+ }
4381
+ },
4382
+ {
4383
+ "kind": "js",
4384
+ "name": "decodeFromBase64WithPrefix",
4385
+ "declaration": {
4386
+ "name": "decodeFromBase64WithPrefix",
4387
+ "module": "src/encoding/base64/decode.ts"
4388
+ }
4389
+ }
4390
+ ]
4391
+ },
4392
+ {
4393
+ "kind": "javascript-module",
4394
+ "path": "src/encoding/base64/encode.ts",
4395
+ "declarations": [
4396
+ {
4397
+ "kind": "function",
4398
+ "name": "encodeToBase64",
4399
+ "return": {
4400
+ "type": {
4401
+ "text": ""
4402
+ }
4227
4403
  },
4228
- "default": "600",
4229
- "description": "The default height (in pixels) for pop-up windows.",
4404
+ "parameters": [
4405
+ {
4406
+ "name": "value",
4407
+ "type": {
4408
+ "text": "string | ArrayBuffer"
4409
+ },
4410
+ "description": "The value to encode to base64."
4411
+ }
4412
+ ],
4413
+ "description": "Encodes the given value to base64.",
4230
4414
  "privacy": "public"
4231
4415
  },
4232
4416
  {
4233
4417
  "kind": "function",
4234
- "name": "openPopup",
4418
+ "name": "encodeToBase64WithPrefix",
4235
4419
  "return": {
4236
4420
  "type": {
4237
4421
  "text": ""
@@ -4239,89 +4423,59 @@
4239
4423
  },
4240
4424
  "parameters": [
4241
4425
  {
4242
- "name": "urlNavigate",
4243
- "type": {
4244
- "text": "string"
4245
- },
4246
- "description": "The URL to navigate to."
4247
- },
4248
- {
4249
- "name": "target",
4250
- "type": {
4251
- "text": "string"
4252
- },
4253
- "description": "The name of the new window."
4254
- },
4255
- {
4256
- "name": "popUpWidth",
4257
- "default": "POPUP_DEFAULT_WIDTH",
4258
- "type": {
4259
- "text": "number"
4260
- },
4261
- "description": "The width of the new window (optional)."
4262
- },
4263
- {
4264
- "name": "popUpHeight",
4265
- "default": "POPUP_DEFAULT_HEIGHT",
4426
+ "name": "value",
4266
4427
  "type": {
4267
- "text": "number"
4428
+ "text": "string | ArrayBuffer"
4268
4429
  },
4269
- "description": "The height of the new window (optional)."
4430
+ "description": "The value to encode to base64."
4270
4431
  }
4271
4432
  ],
4272
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
4433
+ "description": "Encodes the given value with a prefix to base64.",
4273
4434
  "privacy": "public"
4274
4435
  }
4275
4436
  ],
4276
4437
  "exports": [
4277
4438
  {
4278
4439
  "kind": "js",
4279
- "name": "inIFrame",
4280
- "declaration": {
4281
- "name": "inIFrame",
4282
- "module": "src/window/window.ts"
4283
- }
4284
- },
4285
- {
4286
- "kind": "js",
4287
- "name": "inSymphonyDesktop",
4440
+ "name": "encodeToBase64",
4288
4441
  "declaration": {
4289
- "name": "inSymphonyDesktop",
4290
- "module": "src/window/window.ts"
4442
+ "name": "encodeToBase64",
4443
+ "module": "src/encoding/base64/encode.ts"
4291
4444
  }
4292
4445
  },
4293
4446
  {
4294
4447
  "kind": "js",
4295
- "name": "POPUP_DEFAULT_WIDTH",
4448
+ "name": "encodeToBase64WithPrefix",
4296
4449
  "declaration": {
4297
- "name": "POPUP_DEFAULT_WIDTH",
4298
- "module": "src/window/window.ts"
4450
+ "name": "encodeToBase64WithPrefix",
4451
+ "module": "src/encoding/base64/encode.ts"
4299
4452
  }
4300
- },
4453
+ }
4454
+ ]
4455
+ },
4456
+ {
4457
+ "kind": "javascript-module",
4458
+ "path": "src/encoding/base64/index.ts",
4459
+ "declarations": [],
4460
+ "exports": [
4301
4461
  {
4302
4462
  "kind": "js",
4303
- "name": "POPUP_DEFAULT_HEIGHT",
4463
+ "name": "*",
4304
4464
  "declaration": {
4305
- "name": "POPUP_DEFAULT_HEIGHT",
4306
- "module": "src/window/window.ts"
4465
+ "name": "*",
4466
+ "package": "./decode"
4307
4467
  }
4308
4468
  },
4309
4469
  {
4310
4470
  "kind": "js",
4311
- "name": "openPopup",
4471
+ "name": "*",
4312
4472
  "declaration": {
4313
- "name": "openPopup",
4314
- "module": "src/window/window.ts"
4473
+ "name": "*",
4474
+ "package": "./encode"
4315
4475
  }
4316
4476
  }
4317
4477
  ]
4318
4478
  },
4319
- {
4320
- "kind": "javascript-module",
4321
- "path": "src/workspace/index.ts",
4322
- "declarations": [],
4323
- "exports": []
4324
- },
4325
4479
  {
4326
4480
  "kind": "javascript-module",
4327
4481
  "path": "src/directives/sync/index.ts",
@@ -4476,160 +4630,6 @@
4476
4630
  }
4477
4631
  ]
4478
4632
  },
4479
- {
4480
- "kind": "javascript-module",
4481
- "path": "src/encoding/base64/decode.ts",
4482
- "declarations": [
4483
- {
4484
- "kind": "function",
4485
- "name": "decodeFromBase64",
4486
- "return": {
4487
- "type": {
4488
- "text": ""
4489
- }
4490
- },
4491
- "parameters": [
4492
- {
4493
- "name": "base64Value",
4494
- "type": {
4495
- "text": "string"
4496
- }
4497
- },
4498
- {
4499
- "description": "The value to decode from base64.",
4500
- "name": "value"
4501
- }
4502
- ],
4503
- "description": "Decodes a value from base64.",
4504
- "privacy": "public"
4505
- },
4506
- {
4507
- "kind": "function",
4508
- "name": "decodeFromBase64WithPrefix",
4509
- "return": {
4510
- "type": {
4511
- "text": ""
4512
- }
4513
- },
4514
- "parameters": [
4515
- {
4516
- "name": "value",
4517
- "type": {
4518
- "text": "string"
4519
- },
4520
- "description": "The value to decode from base64."
4521
- }
4522
- ],
4523
- "description": "Decodes a value from base64 with a prefix.",
4524
- "privacy": "public"
4525
- }
4526
- ],
4527
- "exports": [
4528
- {
4529
- "kind": "js",
4530
- "name": "decodeFromBase64",
4531
- "declaration": {
4532
- "name": "decodeFromBase64",
4533
- "module": "src/encoding/base64/decode.ts"
4534
- }
4535
- },
4536
- {
4537
- "kind": "js",
4538
- "name": "decodeFromBase64WithPrefix",
4539
- "declaration": {
4540
- "name": "decodeFromBase64WithPrefix",
4541
- "module": "src/encoding/base64/decode.ts"
4542
- }
4543
- }
4544
- ]
4545
- },
4546
- {
4547
- "kind": "javascript-module",
4548
- "path": "src/encoding/base64/encode.ts",
4549
- "declarations": [
4550
- {
4551
- "kind": "function",
4552
- "name": "encodeToBase64",
4553
- "return": {
4554
- "type": {
4555
- "text": ""
4556
- }
4557
- },
4558
- "parameters": [
4559
- {
4560
- "name": "value",
4561
- "type": {
4562
- "text": "string | ArrayBuffer"
4563
- },
4564
- "description": "The value to encode to base64."
4565
- }
4566
- ],
4567
- "description": "Encodes the given value to base64.",
4568
- "privacy": "public"
4569
- },
4570
- {
4571
- "kind": "function",
4572
- "name": "encodeToBase64WithPrefix",
4573
- "return": {
4574
- "type": {
4575
- "text": ""
4576
- }
4577
- },
4578
- "parameters": [
4579
- {
4580
- "name": "value",
4581
- "type": {
4582
- "text": "string | ArrayBuffer"
4583
- },
4584
- "description": "The value to encode to base64."
4585
- }
4586
- ],
4587
- "description": "Encodes the given value with a prefix to base64.",
4588
- "privacy": "public"
4589
- }
4590
- ],
4591
- "exports": [
4592
- {
4593
- "kind": "js",
4594
- "name": "encodeToBase64",
4595
- "declaration": {
4596
- "name": "encodeToBase64",
4597
- "module": "src/encoding/base64/encode.ts"
4598
- }
4599
- },
4600
- {
4601
- "kind": "js",
4602
- "name": "encodeToBase64WithPrefix",
4603
- "declaration": {
4604
- "name": "encodeToBase64WithPrefix",
4605
- "module": "src/encoding/base64/encode.ts"
4606
- }
4607
- }
4608
- ]
4609
- },
4610
- {
4611
- "kind": "javascript-module",
4612
- "path": "src/encoding/base64/index.ts",
4613
- "declarations": [],
4614
- "exports": [
4615
- {
4616
- "kind": "js",
4617
- "name": "*",
4618
- "declaration": {
4619
- "name": "*",
4620
- "package": "./decode"
4621
- }
4622
- },
4623
- {
4624
- "kind": "js",
4625
- "name": "*",
4626
- "declaration": {
4627
- "name": "*",
4628
- "package": "./encode"
4629
- }
4630
- }
4631
- ]
4632
- },
4633
4633
  {
4634
4634
  "kind": "javascript-module",
4635
4635
  "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.406.0-workspaces.1",
4
+ "version": "14.406.0-workspaces.3",
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.406.0-workspaces.1",
33
- "@genesislcap/genx": "14.406.0-workspaces.1",
34
- "@genesislcap/rollup-builder": "14.406.0-workspaces.1",
35
- "@genesislcap/ts-builder": "14.406.0-workspaces.1",
36
- "@genesislcap/uvu-playwright-builder": "14.406.0-workspaces.1",
37
- "@genesislcap/vite-builder": "14.406.0-workspaces.1",
38
- "@genesislcap/webpack-builder": "14.406.0-workspaces.1",
32
+ "@genesislcap/foundation-testing": "14.406.0-workspaces.3",
33
+ "@genesislcap/genx": "14.406.0-workspaces.3",
34
+ "@genesislcap/rollup-builder": "14.406.0-workspaces.3",
35
+ "@genesislcap/ts-builder": "14.406.0-workspaces.3",
36
+ "@genesislcap/uvu-playwright-builder": "14.406.0-workspaces.3",
37
+ "@genesislcap/vite-builder": "14.406.0-workspaces.3",
38
+ "@genesislcap/webpack-builder": "14.406.0-workspaces.3",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.406.0-workspaces.1",
43
- "@genesislcap/foundation-logger": "14.406.0-workspaces.1",
42
+ "@genesislcap/expression-builder": "14.406.0-workspaces.3",
43
+ "@genesislcap/foundation-logger": "14.406.0-workspaces.3",
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": "d85783a1758179d4516fef12808446f19b1719db"
61
+ "gitHead": "b86305849b42345a039ad775a1a8ce34a7cea09a"
62
62
  }