@genesislcap/foundation-utils 14.407.0-workspaces.4 → 14.408.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 +501 -501
  2. package/package.json +11 -11
@@ -209,47 +209,6 @@
209
209
  }
210
210
  ]
211
211
  },
212
- {
213
- "kind": "javascript-module",
214
- "path": "src/converters/index.ts",
215
- "declarations": [],
216
- "exports": [
217
- {
218
- "kind": "js",
219
- "name": "*",
220
- "declaration": {
221
- "name": "*",
222
- "package": "./string-array-converter"
223
- }
224
- }
225
- ]
226
- },
227
- {
228
- "kind": "javascript-module",
229
- "path": "src/converters/string-array-converter.ts",
230
- "declarations": [
231
- {
232
- "kind": "variable",
233
- "name": "stringArrayConverter",
234
- "type": {
235
- "text": "ValueConverter"
236
- },
237
- "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}",
238
- "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
239
- "privacy": "public"
240
- }
241
- ],
242
- "exports": [
243
- {
244
- "kind": "js",
245
- "name": "stringArrayConverter",
246
- "declaration": {
247
- "name": "stringArrayConverter",
248
- "module": "src/converters/string-array-converter.ts"
249
- }
250
- }
251
- ]
252
- },
253
212
  {
254
213
  "kind": "javascript-module",
255
214
  "path": "src/design-system/design-system.ts",
@@ -372,190 +331,7 @@
372
331
  },
373
332
  {
374
333
  "kind": "javascript-module",
375
- "path": "src/data/inMemoryDatabase.ts",
376
- "declarations": [
377
- {
378
- "kind": "class",
379
- "description": "An in memory database of specific DatabaseRecord types.",
380
- "name": "InMemoryDatabase",
381
- "members": [
382
- {
383
- "kind": "field",
384
- "name": "isWorking",
385
- "type": {
386
- "text": "boolean"
387
- },
388
- "privacy": "public",
389
- "default": "false"
390
- },
391
- {
392
- "kind": "field",
393
- "name": "records",
394
- "type": {
395
- "text": "Record<string, T>"
396
- },
397
- "privacy": "private",
398
- "default": "{}"
399
- },
400
- {
401
- "kind": "field",
402
- "name": "beforeUpdateListeners",
403
- "privacy": "private"
404
- },
405
- {
406
- "kind": "field",
407
- "name": "afterUpdateListeners",
408
- "privacy": "private"
409
- },
410
- {
411
- "kind": "method",
412
- "name": "create",
413
- "privacy": "public",
414
- "return": {
415
- "type": {
416
- "text": "Promise<DatabaseAccessResult.Create<T>>"
417
- }
418
- },
419
- "parameters": [
420
- {
421
- "name": "newValue",
422
- "type": {
423
- "text": "Omit<T, 'id'>"
424
- }
425
- }
426
- ]
427
- },
428
- {
429
- "kind": "method",
430
- "name": "read",
431
- "privacy": "public",
432
- "return": {
433
- "type": {
434
- "text": "Promise<DatabaseAccessResult.Read<T>>"
435
- }
436
- },
437
- "parameters": [
438
- {
439
- "name": "id",
440
- "type": {
441
- "text": "string"
442
- }
443
- }
444
- ]
445
- },
446
- {
447
- "kind": "method",
448
- "name": "update",
449
- "privacy": "public",
450
- "return": {
451
- "type": {
452
- "text": "Promise<DatabaseAccessResult.Update<T>>"
453
- }
454
- },
455
- "parameters": [
456
- {
457
- "name": "id",
458
- "type": {
459
- "text": "string"
460
- }
461
- },
462
- {
463
- "name": "newValue",
464
- "type": {
465
- "text": "Omit<Partial<T>, 'id'>"
466
- }
467
- }
468
- ]
469
- },
470
- {
471
- "kind": "method",
472
- "name": "delete",
473
- "privacy": "public",
474
- "return": {
475
- "type": {
476
- "text": "Promise<DatabaseAccessResult.Delete>"
477
- }
478
- },
479
- "parameters": [
480
- {
481
- "name": "id",
482
- "type": {
483
- "text": "string"
484
- }
485
- }
486
- ]
487
- },
488
- {
489
- "kind": "method",
490
- "name": "visit",
491
- "privacy": "public",
492
- "return": {
493
- "type": {
494
- "text": "Promise<void>"
495
- }
496
- },
497
- "parameters": [
498
- {
499
- "name": "visitor",
500
- "type": {
501
- "text": "(record: T) => void"
502
- }
503
- }
504
- ]
505
- },
506
- {
507
- "kind": "method",
508
- "name": "onBeforeUpdate",
509
- "privacy": "public",
510
- "return": {
511
- "type": {
512
- "text": "() => void"
513
- }
514
- },
515
- "parameters": [
516
- {
517
- "name": "listener",
518
- "type": {
519
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
520
- }
521
- }
522
- ]
523
- },
524
- {
525
- "kind": "method",
526
- "name": "onAfterUpdate",
527
- "privacy": "public",
528
- "return": {
529
- "type": {
530
- "text": "() => void"
531
- }
532
- },
533
- "parameters": [
534
- {
535
- "name": "listener",
536
- "type": {
537
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
538
- }
539
- }
540
- ]
541
- }
542
- ]
543
- }
544
- ],
545
- "exports": [
546
- {
547
- "kind": "js",
548
- "name": "InMemoryDatabase",
549
- "declaration": {
550
- "name": "InMemoryDatabase",
551
- "module": "src/data/inMemoryDatabase.ts"
552
- }
553
- }
554
- ]
555
- },
556
- {
557
- "kind": "javascript-module",
558
- "path": "src/data/index.ts",
334
+ "path": "src/directives/index.ts",
559
335
  "declarations": [],
560
336
  "exports": [
561
337
  {
@@ -563,60 +339,15 @@
563
339
  "name": "*",
564
340
  "declaration": {
565
341
  "name": "*",
566
- "package": "./inMemoryDatabase"
342
+ "package": "./sync"
567
343
  }
568
- }
569
- ]
570
- },
571
- {
572
- "kind": "javascript-module",
573
- "path": "src/decorators/index.ts",
574
- "declarations": [],
575
- "exports": [
344
+ },
576
345
  {
577
346
  "kind": "js",
578
347
  "name": "*",
579
348
  "declaration": {
580
349
  "name": "*",
581
- "package": "./renderOnChange"
582
- }
583
- }
584
- ]
585
- },
586
- {
587
- "kind": "javascript-module",
588
- "path": "src/decorators/renderOnChange.ts",
589
- "declarations": [
590
- {
591
- "kind": "function",
592
- "name": "renderOnChange",
593
- "parameters": [
594
- {
595
- "name": "target",
596
- "type": {
597
- "text": "FASTElement & { render(): void }"
598
- },
599
- "description": "The target to define the property change handler on."
600
- },
601
- {
602
- "name": "name",
603
- "type": {
604
- "text": "string"
605
- },
606
- "description": "The property name."
607
- }
608
- ],
609
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
610
- "privacy": "public"
611
- }
612
- ],
613
- "exports": [
614
- {
615
- "kind": "js",
616
- "name": "renderOnChange",
617
- "declaration": {
618
- "name": "renderOnChange",
619
- "module": "src/decorators/renderOnChange.ts"
350
+ "package": "./when-else"
620
351
  }
621
352
  }
622
353
  ]
@@ -1095,25 +826,264 @@
1095
826
  },
1096
827
  {
1097
828
  "kind": "js",
1098
- "name": "ENVIRONMENT_LEVEL",
829
+ "name": "ENVIRONMENT_LEVEL",
830
+ "declaration": {
831
+ "name": "ENVIRONMENT_LEVEL",
832
+ "module": "src/env/variables.ts"
833
+ }
834
+ },
835
+ {
836
+ "kind": "js",
837
+ "name": "ACCEPT_TERMS_URL",
838
+ "declaration": {
839
+ "name": "ACCEPT_TERMS_URL",
840
+ "module": "src/env/variables.ts"
841
+ }
842
+ }
843
+ ]
844
+ },
845
+ {
846
+ "kind": "javascript-module",
847
+ "path": "src/converters/index.ts",
848
+ "declarations": [],
849
+ "exports": [
850
+ {
851
+ "kind": "js",
852
+ "name": "*",
853
+ "declaration": {
854
+ "name": "*",
855
+ "package": "./string-array-converter"
856
+ }
857
+ }
858
+ ]
859
+ },
860
+ {
861
+ "kind": "javascript-module",
862
+ "path": "src/converters/string-array-converter.ts",
863
+ "declarations": [
864
+ {
865
+ "kind": "variable",
866
+ "name": "stringArrayConverter",
867
+ "type": {
868
+ "text": "ValueConverter"
869
+ },
870
+ "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}",
871
+ "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
872
+ "privacy": "public"
873
+ }
874
+ ],
875
+ "exports": [
876
+ {
877
+ "kind": "js",
878
+ "name": "stringArrayConverter",
879
+ "declaration": {
880
+ "name": "stringArrayConverter",
881
+ "module": "src/converters/string-array-converter.ts"
882
+ }
883
+ }
884
+ ]
885
+ },
886
+ {
887
+ "kind": "javascript-module",
888
+ "path": "src/data/inMemoryDatabase.ts",
889
+ "declarations": [
890
+ {
891
+ "kind": "class",
892
+ "description": "An in memory database of specific DatabaseRecord types.",
893
+ "name": "InMemoryDatabase",
894
+ "members": [
895
+ {
896
+ "kind": "field",
897
+ "name": "isWorking",
898
+ "type": {
899
+ "text": "boolean"
900
+ },
901
+ "privacy": "public",
902
+ "default": "false"
903
+ },
904
+ {
905
+ "kind": "field",
906
+ "name": "records",
907
+ "type": {
908
+ "text": "Record<string, T>"
909
+ },
910
+ "privacy": "private",
911
+ "default": "{}"
912
+ },
913
+ {
914
+ "kind": "field",
915
+ "name": "beforeUpdateListeners",
916
+ "privacy": "private"
917
+ },
918
+ {
919
+ "kind": "field",
920
+ "name": "afterUpdateListeners",
921
+ "privacy": "private"
922
+ },
923
+ {
924
+ "kind": "method",
925
+ "name": "create",
926
+ "privacy": "public",
927
+ "return": {
928
+ "type": {
929
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
930
+ }
931
+ },
932
+ "parameters": [
933
+ {
934
+ "name": "newValue",
935
+ "type": {
936
+ "text": "Omit<T, 'id'>"
937
+ }
938
+ }
939
+ ]
940
+ },
941
+ {
942
+ "kind": "method",
943
+ "name": "read",
944
+ "privacy": "public",
945
+ "return": {
946
+ "type": {
947
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
948
+ }
949
+ },
950
+ "parameters": [
951
+ {
952
+ "name": "id",
953
+ "type": {
954
+ "text": "string"
955
+ }
956
+ }
957
+ ]
958
+ },
959
+ {
960
+ "kind": "method",
961
+ "name": "update",
962
+ "privacy": "public",
963
+ "return": {
964
+ "type": {
965
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
966
+ }
967
+ },
968
+ "parameters": [
969
+ {
970
+ "name": "id",
971
+ "type": {
972
+ "text": "string"
973
+ }
974
+ },
975
+ {
976
+ "name": "newValue",
977
+ "type": {
978
+ "text": "Omit<Partial<T>, 'id'>"
979
+ }
980
+ }
981
+ ]
982
+ },
983
+ {
984
+ "kind": "method",
985
+ "name": "delete",
986
+ "privacy": "public",
987
+ "return": {
988
+ "type": {
989
+ "text": "Promise<DatabaseAccessResult.Delete>"
990
+ }
991
+ },
992
+ "parameters": [
993
+ {
994
+ "name": "id",
995
+ "type": {
996
+ "text": "string"
997
+ }
998
+ }
999
+ ]
1000
+ },
1001
+ {
1002
+ "kind": "method",
1003
+ "name": "visit",
1004
+ "privacy": "public",
1005
+ "return": {
1006
+ "type": {
1007
+ "text": "Promise<void>"
1008
+ }
1009
+ },
1010
+ "parameters": [
1011
+ {
1012
+ "name": "visitor",
1013
+ "type": {
1014
+ "text": "(record: T) => void"
1015
+ }
1016
+ }
1017
+ ]
1018
+ },
1019
+ {
1020
+ "kind": "method",
1021
+ "name": "onBeforeUpdate",
1022
+ "privacy": "public",
1023
+ "return": {
1024
+ "type": {
1025
+ "text": "() => void"
1026
+ }
1027
+ },
1028
+ "parameters": [
1029
+ {
1030
+ "name": "listener",
1031
+ "type": {
1032
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1033
+ }
1034
+ }
1035
+ ]
1036
+ },
1037
+ {
1038
+ "kind": "method",
1039
+ "name": "onAfterUpdate",
1040
+ "privacy": "public",
1041
+ "return": {
1042
+ "type": {
1043
+ "text": "() => void"
1044
+ }
1045
+ },
1046
+ "parameters": [
1047
+ {
1048
+ "name": "listener",
1049
+ "type": {
1050
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1051
+ }
1052
+ }
1053
+ ]
1054
+ }
1055
+ ]
1056
+ }
1057
+ ],
1058
+ "exports": [
1059
+ {
1060
+ "kind": "js",
1061
+ "name": "InMemoryDatabase",
1099
1062
  "declaration": {
1100
- "name": "ENVIRONMENT_LEVEL",
1101
- "module": "src/env/variables.ts"
1063
+ "name": "InMemoryDatabase",
1064
+ "module": "src/data/inMemoryDatabase.ts"
1102
1065
  }
1103
- },
1066
+ }
1067
+ ]
1068
+ },
1069
+ {
1070
+ "kind": "javascript-module",
1071
+ "path": "src/data/index.ts",
1072
+ "declarations": [],
1073
+ "exports": [
1104
1074
  {
1105
1075
  "kind": "js",
1106
- "name": "ACCEPT_TERMS_URL",
1076
+ "name": "*",
1107
1077
  "declaration": {
1108
- "name": "ACCEPT_TERMS_URL",
1109
- "module": "src/env/variables.ts"
1078
+ "name": "*",
1079
+ "package": "./inMemoryDatabase"
1110
1080
  }
1111
1081
  }
1112
1082
  ]
1113
1083
  },
1114
1084
  {
1115
1085
  "kind": "javascript-module",
1116
- "path": "src/directives/index.ts",
1086
+ "path": "src/decorators/index.ts",
1117
1087
  "declarations": [],
1118
1088
  "exports": [
1119
1089
  {
@@ -1121,15 +1091,45 @@
1121
1091
  "name": "*",
1122
1092
  "declaration": {
1123
1093
  "name": "*",
1124
- "package": "./sync"
1094
+ "package": "./renderOnChange"
1125
1095
  }
1126
- },
1096
+ }
1097
+ ]
1098
+ },
1099
+ {
1100
+ "kind": "javascript-module",
1101
+ "path": "src/decorators/renderOnChange.ts",
1102
+ "declarations": [
1103
+ {
1104
+ "kind": "function",
1105
+ "name": "renderOnChange",
1106
+ "parameters": [
1107
+ {
1108
+ "name": "target",
1109
+ "type": {
1110
+ "text": "FASTElement & { render(): void }"
1111
+ },
1112
+ "description": "The target to define the property change handler on."
1113
+ },
1114
+ {
1115
+ "name": "name",
1116
+ "type": {
1117
+ "text": "string"
1118
+ },
1119
+ "description": "The property name."
1120
+ }
1121
+ ],
1122
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1123
+ "privacy": "public"
1124
+ }
1125
+ ],
1126
+ "exports": [
1127
1127
  {
1128
1128
  "kind": "js",
1129
- "name": "*",
1129
+ "name": "renderOnChange",
1130
1130
  "declaration": {
1131
- "name": "*",
1132
- "package": "./when-else"
1131
+ "name": "renderOnChange",
1132
+ "module": "src/decorators/renderOnChange.ts"
1133
1133
  }
1134
1134
  }
1135
1135
  ]
@@ -4205,203 +4205,25 @@
4205
4205
  "kind": "variable",
4206
4206
  "name": "POPUP_DEFAULT_WIDTH",
4207
4207
  "type": {
4208
- "text": "number"
4209
- },
4210
- "default": "483",
4211
- "description": "The default width (in pixels) for pop-up windows.",
4212
- "privacy": "public"
4213
- },
4214
- {
4215
- "kind": "variable",
4216
- "name": "POPUP_DEFAULT_HEIGHT",
4217
- "type": {
4218
- "text": "number"
4219
- },
4220
- "default": "600",
4221
- "description": "The default height (in pixels) for pop-up windows.",
4222
- "privacy": "public"
4223
- },
4224
- {
4225
- "kind": "function",
4226
- "name": "openPopup",
4227
- "return": {
4228
- "type": {
4229
- "text": ""
4230
- }
4231
- },
4232
- "parameters": [
4233
- {
4234
- "name": "urlNavigate",
4235
- "type": {
4236
- "text": "string"
4237
- },
4238
- "description": "The URL to navigate to."
4239
- },
4240
- {
4241
- "name": "target",
4242
- "type": {
4243
- "text": "string"
4244
- },
4245
- "description": "The name of the new window."
4246
- },
4247
- {
4248
- "name": "popUpWidth",
4249
- "default": "POPUP_DEFAULT_WIDTH",
4250
- "type": {
4251
- "text": "number"
4252
- },
4253
- "description": "The width of the new window (optional)."
4254
- },
4255
- {
4256
- "name": "popUpHeight",
4257
- "default": "POPUP_DEFAULT_HEIGHT",
4258
- "type": {
4259
- "text": "number"
4260
- },
4261
- "description": "The height of the new window (optional)."
4262
- }
4263
- ],
4264
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
4265
- "privacy": "public"
4266
- }
4267
- ],
4268
- "exports": [
4269
- {
4270
- "kind": "js",
4271
- "name": "inIFrame",
4272
- "declaration": {
4273
- "name": "inIFrame",
4274
- "module": "src/window/window.ts"
4275
- }
4276
- },
4277
- {
4278
- "kind": "js",
4279
- "name": "inSymphonyDesktop",
4280
- "declaration": {
4281
- "name": "inSymphonyDesktop",
4282
- "module": "src/window/window.ts"
4283
- }
4284
- },
4285
- {
4286
- "kind": "js",
4287
- "name": "POPUP_DEFAULT_WIDTH",
4288
- "declaration": {
4289
- "name": "POPUP_DEFAULT_WIDTH",
4290
- "module": "src/window/window.ts"
4291
- }
4292
- },
4293
- {
4294
- "kind": "js",
4295
- "name": "POPUP_DEFAULT_HEIGHT",
4296
- "declaration": {
4297
- "name": "POPUP_DEFAULT_HEIGHT",
4298
- "module": "src/window/window.ts"
4299
- }
4300
- },
4301
- {
4302
- "kind": "js",
4303
- "name": "openPopup",
4304
- "declaration": {
4305
- "name": "openPopup",
4306
- "module": "src/window/window.ts"
4307
- }
4308
- }
4309
- ]
4310
- },
4311
- {
4312
- "kind": "javascript-module",
4313
- "path": "src/encoding/base64/decode.ts",
4314
- "declarations": [
4315
- {
4316
- "kind": "function",
4317
- "name": "decodeFromBase64",
4318
- "return": {
4319
- "type": {
4320
- "text": ""
4321
- }
4322
- },
4323
- "parameters": [
4324
- {
4325
- "name": "base64Value",
4326
- "type": {
4327
- "text": "string"
4328
- }
4329
- },
4330
- {
4331
- "description": "The value to decode from base64.",
4332
- "name": "value"
4333
- }
4334
- ],
4335
- "description": "Decodes a value from base64.",
4336
- "privacy": "public"
4337
- },
4338
- {
4339
- "kind": "function",
4340
- "name": "decodeFromBase64WithPrefix",
4341
- "return": {
4342
- "type": {
4343
- "text": ""
4344
- }
4345
- },
4346
- "parameters": [
4347
- {
4348
- "name": "value",
4349
- "type": {
4350
- "text": "string"
4351
- },
4352
- "description": "The value to decode from base64."
4353
- }
4354
- ],
4355
- "description": "Decodes a value from base64 with a prefix.",
4356
- "privacy": "public"
4357
- }
4358
- ],
4359
- "exports": [
4360
- {
4361
- "kind": "js",
4362
- "name": "decodeFromBase64",
4363
- "declaration": {
4364
- "name": "decodeFromBase64",
4365
- "module": "src/encoding/base64/decode.ts"
4366
- }
4367
- },
4368
- {
4369
- "kind": "js",
4370
- "name": "decodeFromBase64WithPrefix",
4371
- "declaration": {
4372
- "name": "decodeFromBase64WithPrefix",
4373
- "module": "src/encoding/base64/decode.ts"
4374
- }
4375
- }
4376
- ]
4377
- },
4378
- {
4379
- "kind": "javascript-module",
4380
- "path": "src/encoding/base64/encode.ts",
4381
- "declarations": [
4208
+ "text": "number"
4209
+ },
4210
+ "default": "483",
4211
+ "description": "The default width (in pixels) for pop-up windows.",
4212
+ "privacy": "public"
4213
+ },
4382
4214
  {
4383
- "kind": "function",
4384
- "name": "encodeToBase64",
4385
- "return": {
4386
- "type": {
4387
- "text": ""
4388
- }
4215
+ "kind": "variable",
4216
+ "name": "POPUP_DEFAULT_HEIGHT",
4217
+ "type": {
4218
+ "text": "number"
4389
4219
  },
4390
- "parameters": [
4391
- {
4392
- "name": "value",
4393
- "type": {
4394
- "text": "string | ArrayBuffer"
4395
- },
4396
- "description": "The value to encode to base64."
4397
- }
4398
- ],
4399
- "description": "Encodes the given value to base64.",
4220
+ "default": "600",
4221
+ "description": "The default height (in pixels) for pop-up windows.",
4400
4222
  "privacy": "public"
4401
4223
  },
4402
4224
  {
4403
4225
  "kind": "function",
4404
- "name": "encodeToBase64WithPrefix",
4226
+ "name": "openPopup",
4405
4227
  "return": {
4406
4228
  "type": {
4407
4229
  "text": ""
@@ -4409,55 +4231,79 @@
4409
4231
  },
4410
4232
  "parameters": [
4411
4233
  {
4412
- "name": "value",
4234
+ "name": "urlNavigate",
4413
4235
  "type": {
4414
- "text": "string | ArrayBuffer"
4236
+ "text": "string"
4415
4237
  },
4416
- "description": "The value to encode to base64."
4238
+ "description": "The URL to navigate to."
4239
+ },
4240
+ {
4241
+ "name": "target",
4242
+ "type": {
4243
+ "text": "string"
4244
+ },
4245
+ "description": "The name of the new window."
4246
+ },
4247
+ {
4248
+ "name": "popUpWidth",
4249
+ "default": "POPUP_DEFAULT_WIDTH",
4250
+ "type": {
4251
+ "text": "number"
4252
+ },
4253
+ "description": "The width of the new window (optional)."
4254
+ },
4255
+ {
4256
+ "name": "popUpHeight",
4257
+ "default": "POPUP_DEFAULT_HEIGHT",
4258
+ "type": {
4259
+ "text": "number"
4260
+ },
4261
+ "description": "The height of the new window (optional)."
4417
4262
  }
4418
4263
  ],
4419
- "description": "Encodes the given value with a prefix to base64.",
4264
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
4420
4265
  "privacy": "public"
4421
4266
  }
4422
4267
  ],
4423
4268
  "exports": [
4424
4269
  {
4425
4270
  "kind": "js",
4426
- "name": "encodeToBase64",
4271
+ "name": "inIFrame",
4427
4272
  "declaration": {
4428
- "name": "encodeToBase64",
4429
- "module": "src/encoding/base64/encode.ts"
4273
+ "name": "inIFrame",
4274
+ "module": "src/window/window.ts"
4430
4275
  }
4431
4276
  },
4432
4277
  {
4433
4278
  "kind": "js",
4434
- "name": "encodeToBase64WithPrefix",
4279
+ "name": "inSymphonyDesktop",
4435
4280
  "declaration": {
4436
- "name": "encodeToBase64WithPrefix",
4437
- "module": "src/encoding/base64/encode.ts"
4281
+ "name": "inSymphonyDesktop",
4282
+ "module": "src/window/window.ts"
4438
4283
  }
4439
- }
4440
- ]
4441
- },
4442
- {
4443
- "kind": "javascript-module",
4444
- "path": "src/encoding/base64/index.ts",
4445
- "declarations": [],
4446
- "exports": [
4284
+ },
4447
4285
  {
4448
4286
  "kind": "js",
4449
- "name": "*",
4287
+ "name": "POPUP_DEFAULT_WIDTH",
4450
4288
  "declaration": {
4451
- "name": "*",
4452
- "package": "./decode"
4289
+ "name": "POPUP_DEFAULT_WIDTH",
4290
+ "module": "src/window/window.ts"
4453
4291
  }
4454
4292
  },
4455
4293
  {
4456
4294
  "kind": "js",
4457
- "name": "*",
4295
+ "name": "POPUP_DEFAULT_HEIGHT",
4458
4296
  "declaration": {
4459
- "name": "*",
4460
- "package": "./encode"
4297
+ "name": "POPUP_DEFAULT_HEIGHT",
4298
+ "module": "src/window/window.ts"
4299
+ }
4300
+ },
4301
+ {
4302
+ "kind": "js",
4303
+ "name": "openPopup",
4304
+ "declaration": {
4305
+ "name": "openPopup",
4306
+ "module": "src/window/window.ts"
4461
4307
  }
4462
4308
  }
4463
4309
  ]
@@ -4616,6 +4462,160 @@
4616
4462
  }
4617
4463
  ]
4618
4464
  },
4465
+ {
4466
+ "kind": "javascript-module",
4467
+ "path": "src/encoding/base64/decode.ts",
4468
+ "declarations": [
4469
+ {
4470
+ "kind": "function",
4471
+ "name": "decodeFromBase64",
4472
+ "return": {
4473
+ "type": {
4474
+ "text": ""
4475
+ }
4476
+ },
4477
+ "parameters": [
4478
+ {
4479
+ "name": "base64Value",
4480
+ "type": {
4481
+ "text": "string"
4482
+ }
4483
+ },
4484
+ {
4485
+ "description": "The value to decode from base64.",
4486
+ "name": "value"
4487
+ }
4488
+ ],
4489
+ "description": "Decodes a value from base64.",
4490
+ "privacy": "public"
4491
+ },
4492
+ {
4493
+ "kind": "function",
4494
+ "name": "decodeFromBase64WithPrefix",
4495
+ "return": {
4496
+ "type": {
4497
+ "text": ""
4498
+ }
4499
+ },
4500
+ "parameters": [
4501
+ {
4502
+ "name": "value",
4503
+ "type": {
4504
+ "text": "string"
4505
+ },
4506
+ "description": "The value to decode from base64."
4507
+ }
4508
+ ],
4509
+ "description": "Decodes a value from base64 with a prefix.",
4510
+ "privacy": "public"
4511
+ }
4512
+ ],
4513
+ "exports": [
4514
+ {
4515
+ "kind": "js",
4516
+ "name": "decodeFromBase64",
4517
+ "declaration": {
4518
+ "name": "decodeFromBase64",
4519
+ "module": "src/encoding/base64/decode.ts"
4520
+ }
4521
+ },
4522
+ {
4523
+ "kind": "js",
4524
+ "name": "decodeFromBase64WithPrefix",
4525
+ "declaration": {
4526
+ "name": "decodeFromBase64WithPrefix",
4527
+ "module": "src/encoding/base64/decode.ts"
4528
+ }
4529
+ }
4530
+ ]
4531
+ },
4532
+ {
4533
+ "kind": "javascript-module",
4534
+ "path": "src/encoding/base64/encode.ts",
4535
+ "declarations": [
4536
+ {
4537
+ "kind": "function",
4538
+ "name": "encodeToBase64",
4539
+ "return": {
4540
+ "type": {
4541
+ "text": ""
4542
+ }
4543
+ },
4544
+ "parameters": [
4545
+ {
4546
+ "name": "value",
4547
+ "type": {
4548
+ "text": "string | ArrayBuffer"
4549
+ },
4550
+ "description": "The value to encode to base64."
4551
+ }
4552
+ ],
4553
+ "description": "Encodes the given value to base64.",
4554
+ "privacy": "public"
4555
+ },
4556
+ {
4557
+ "kind": "function",
4558
+ "name": "encodeToBase64WithPrefix",
4559
+ "return": {
4560
+ "type": {
4561
+ "text": ""
4562
+ }
4563
+ },
4564
+ "parameters": [
4565
+ {
4566
+ "name": "value",
4567
+ "type": {
4568
+ "text": "string | ArrayBuffer"
4569
+ },
4570
+ "description": "The value to encode to base64."
4571
+ }
4572
+ ],
4573
+ "description": "Encodes the given value with a prefix to base64.",
4574
+ "privacy": "public"
4575
+ }
4576
+ ],
4577
+ "exports": [
4578
+ {
4579
+ "kind": "js",
4580
+ "name": "encodeToBase64",
4581
+ "declaration": {
4582
+ "name": "encodeToBase64",
4583
+ "module": "src/encoding/base64/encode.ts"
4584
+ }
4585
+ },
4586
+ {
4587
+ "kind": "js",
4588
+ "name": "encodeToBase64WithPrefix",
4589
+ "declaration": {
4590
+ "name": "encodeToBase64WithPrefix",
4591
+ "module": "src/encoding/base64/encode.ts"
4592
+ }
4593
+ }
4594
+ ]
4595
+ },
4596
+ {
4597
+ "kind": "javascript-module",
4598
+ "path": "src/encoding/base64/index.ts",
4599
+ "declarations": [],
4600
+ "exports": [
4601
+ {
4602
+ "kind": "js",
4603
+ "name": "*",
4604
+ "declaration": {
4605
+ "name": "*",
4606
+ "package": "./decode"
4607
+ }
4608
+ },
4609
+ {
4610
+ "kind": "js",
4611
+ "name": "*",
4612
+ "declaration": {
4613
+ "name": "*",
4614
+ "package": "./encode"
4615
+ }
4616
+ }
4617
+ ]
4618
+ },
4619
4619
  {
4620
4620
  "kind": "javascript-module",
4621
4621
  "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.407.0-workspaces.4",
4
+ "version": "14.408.0",
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.407.0-workspaces.4",
33
- "@genesislcap/genx": "14.407.0-workspaces.4",
34
- "@genesislcap/rollup-builder": "14.407.0-workspaces.4",
35
- "@genesislcap/ts-builder": "14.407.0-workspaces.4",
36
- "@genesislcap/uvu-playwright-builder": "14.407.0-workspaces.4",
37
- "@genesislcap/vite-builder": "14.407.0-workspaces.4",
38
- "@genesislcap/webpack-builder": "14.407.0-workspaces.4",
32
+ "@genesislcap/foundation-testing": "14.408.0",
33
+ "@genesislcap/genx": "14.408.0",
34
+ "@genesislcap/rollup-builder": "14.408.0",
35
+ "@genesislcap/ts-builder": "14.408.0",
36
+ "@genesislcap/uvu-playwright-builder": "14.408.0",
37
+ "@genesislcap/vite-builder": "14.408.0",
38
+ "@genesislcap/webpack-builder": "14.408.0",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.407.0-workspaces.4",
43
- "@genesislcap/foundation-logger": "14.407.0-workspaces.4",
42
+ "@genesislcap/expression-builder": "14.408.0",
43
+ "@genesislcap/foundation-logger": "14.408.0",
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": "923fa7c52904cc262f94b21f8c0b025986bfdf41"
61
+ "gitHead": "26b08831fd001b4ee95c8a0d3364a18c0ec4005b"
62
62
  }