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

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 +525 -525
  2. package/package.json +11 -11
@@ -217,6 +217,100 @@
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
+ },
220
314
  {
221
315
  "kind": "javascript-module",
222
316
  "path": "src/design-system/design-system.ts",
@@ -339,30 +433,190 @@
339
433
  },
340
434
  {
341
435
  "kind": "javascript-module",
342
- "path": "src/directives/index.ts",
343
- "declarations": [],
344
- "exports": [
436
+ "path": "src/data/inMemoryDatabase.ts",
437
+ "declarations": [
345
438
  {
346
- "kind": "js",
347
- "name": "*",
348
- "declaration": {
349
- "name": "*",
350
- "package": "./sync"
351
- }
352
- },
439
+ "kind": "class",
440
+ "description": "An in memory database of specific DatabaseRecord types.",
441
+ "name": "InMemoryDatabase",
442
+ "members": [
443
+ {
444
+ "kind": "field",
445
+ "name": "isWorking",
446
+ "type": {
447
+ "text": "boolean"
448
+ },
449
+ "privacy": "public",
450
+ "default": "false"
451
+ },
452
+ {
453
+ "kind": "field",
454
+ "name": "records",
455
+ "type": {
456
+ "text": "Record<string, T>"
457
+ },
458
+ "privacy": "private",
459
+ "default": "{}"
460
+ },
461
+ {
462
+ "kind": "field",
463
+ "name": "beforeUpdateListeners",
464
+ "privacy": "private"
465
+ },
466
+ {
467
+ "kind": "field",
468
+ "name": "afterUpdateListeners",
469
+ "privacy": "private"
470
+ },
471
+ {
472
+ "kind": "method",
473
+ "name": "create",
474
+ "privacy": "public",
475
+ "return": {
476
+ "type": {
477
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
478
+ }
479
+ },
480
+ "parameters": [
481
+ {
482
+ "name": "newValue",
483
+ "type": {
484
+ "text": "Omit<T, 'id'>"
485
+ }
486
+ }
487
+ ]
488
+ },
489
+ {
490
+ "kind": "method",
491
+ "name": "read",
492
+ "privacy": "public",
493
+ "return": {
494
+ "type": {
495
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
496
+ }
497
+ },
498
+ "parameters": [
499
+ {
500
+ "name": "id",
501
+ "type": {
502
+ "text": "string"
503
+ }
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "kind": "method",
509
+ "name": "update",
510
+ "privacy": "public",
511
+ "return": {
512
+ "type": {
513
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
514
+ }
515
+ },
516
+ "parameters": [
517
+ {
518
+ "name": "id",
519
+ "type": {
520
+ "text": "string"
521
+ }
522
+ },
523
+ {
524
+ "name": "newValue",
525
+ "type": {
526
+ "text": "Omit<Partial<T>, 'id'>"
527
+ }
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "kind": "method",
533
+ "name": "delete",
534
+ "privacy": "public",
535
+ "return": {
536
+ "type": {
537
+ "text": "Promise<DatabaseAccessResult.Delete>"
538
+ }
539
+ },
540
+ "parameters": [
541
+ {
542
+ "name": "id",
543
+ "type": {
544
+ "text": "string"
545
+ }
546
+ }
547
+ ]
548
+ },
549
+ {
550
+ "kind": "method",
551
+ "name": "visit",
552
+ "privacy": "public",
553
+ "return": {
554
+ "type": {
555
+ "text": "Promise<void>"
556
+ }
557
+ },
558
+ "parameters": [
559
+ {
560
+ "name": "visitor",
561
+ "type": {
562
+ "text": "(record: T) => void"
563
+ }
564
+ }
565
+ ]
566
+ },
567
+ {
568
+ "kind": "method",
569
+ "name": "onBeforeUpdate",
570
+ "privacy": "public",
571
+ "return": {
572
+ "type": {
573
+ "text": "() => void"
574
+ }
575
+ },
576
+ "parameters": [
577
+ {
578
+ "name": "listener",
579
+ "type": {
580
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
581
+ }
582
+ }
583
+ ]
584
+ },
585
+ {
586
+ "kind": "method",
587
+ "name": "onAfterUpdate",
588
+ "privacy": "public",
589
+ "return": {
590
+ "type": {
591
+ "text": "() => void"
592
+ }
593
+ },
594
+ "parameters": [
595
+ {
596
+ "name": "listener",
597
+ "type": {
598
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
599
+ }
600
+ }
601
+ ]
602
+ }
603
+ ]
604
+ }
605
+ ],
606
+ "exports": [
353
607
  {
354
608
  "kind": "js",
355
- "name": "*",
609
+ "name": "InMemoryDatabase",
356
610
  "declaration": {
357
- "name": "*",
358
- "package": "./when-else"
611
+ "name": "InMemoryDatabase",
612
+ "module": "src/data/inMemoryDatabase.ts"
359
613
  }
360
614
  }
361
615
  ]
362
616
  },
363
617
  {
364
618
  "kind": "javascript-module",
365
- "path": "src/encoding/index.ts",
619
+ "path": "src/data/index.ts",
366
620
  "declarations": [],
367
621
  "exports": [
368
622
  {
@@ -370,7 +624,7 @@
370
624
  "name": "*",
371
625
  "declaration": {
372
626
  "name": "*",
373
- "package": "./base64"
627
+ "package": "./inMemoryDatabase"
374
628
  }
375
629
  }
376
630
  ]
@@ -810,273 +1064,49 @@
810
1064
  },
811
1065
  {
812
1066
  "kind": "js",
813
- "name": "RESET_PASSWORD_URL",
814
- "declaration": {
815
- "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": [
1067
+ "name": "RESET_PASSWORD_URL",
1068
+ "declaration": {
1069
+ "name": "RESET_PASSWORD_URL",
1070
+ "module": "src/env/variables.ts"
1071
+ }
1072
+ },
1067
1073
  {
1068
1074
  "kind": "js",
1069
- "name": "InMemoryDatabase",
1075
+ "name": "SSO_LIST_URL",
1070
1076
  "declaration": {
1071
- "name": "InMemoryDatabase",
1072
- "module": "src/data/inMemoryDatabase.ts"
1077
+ "name": "SSO_LIST_URL",
1078
+ "module": "src/env/variables.ts"
1079
+ }
1080
+ },
1081
+ {
1082
+ "kind": "js",
1083
+ "name": "SSO_LOGIN_URL",
1084
+ "declaration": {
1085
+ "name": "SSO_LOGIN_URL",
1086
+ "module": "src/env/variables.ts"
1087
+ }
1088
+ },
1089
+ {
1090
+ "kind": "js",
1091
+ "name": "ENVIRONMENT_LEVEL",
1092
+ "declaration": {
1093
+ "name": "ENVIRONMENT_LEVEL",
1094
+ "module": "src/env/variables.ts"
1095
+ }
1096
+ },
1097
+ {
1098
+ "kind": "js",
1099
+ "name": "ACCEPT_TERMS_URL",
1100
+ "declaration": {
1101
+ "name": "ACCEPT_TERMS_URL",
1102
+ "module": "src/env/variables.ts"
1073
1103
  }
1074
1104
  }
1075
1105
  ]
1076
1106
  },
1077
1107
  {
1078
1108
  "kind": "javascript-module",
1079
- "path": "src/data/index.ts",
1109
+ "path": "src/encoding/index.ts",
1080
1110
  "declarations": [],
1081
1111
  "exports": [
1082
1112
  {
@@ -1084,14 +1114,14 @@
1084
1114
  "name": "*",
1085
1115
  "declaration": {
1086
1116
  "name": "*",
1087
- "package": "./inMemoryDatabase"
1117
+ "package": "./base64"
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.2",
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.2",
33
+ "@genesislcap/genx": "14.406.0-workspaces.2",
34
+ "@genesislcap/rollup-builder": "14.406.0-workspaces.2",
35
+ "@genesislcap/ts-builder": "14.406.0-workspaces.2",
36
+ "@genesislcap/uvu-playwright-builder": "14.406.0-workspaces.2",
37
+ "@genesislcap/vite-builder": "14.406.0-workspaces.2",
38
+ "@genesislcap/webpack-builder": "14.406.0-workspaces.2",
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.2",
43
+ "@genesislcap/foundation-logger": "14.406.0-workspaces.2",
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": "3391e5272de97281b8144b11f7acd24488c027ab"
62
62
  }