@genesislcap/foundation-utils 14.372.0 → 14.373.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.
- package/dist/custom-elements.json +402 -295
- package/dist/dts/env/variables.d.ts.map +1 -1
- package/dist/dts/feature-flags/featureFlags.d.ts +2 -0
- package/dist/dts/feature-flags/featureFlags.d.ts.map +1 -0
- package/dist/dts/feature-flags/index.d.ts +2 -0
- package/dist/dts/feature-flags/index.d.ts.map +1 -0
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/utils/deepMerge.d.ts +18 -0
- package/dist/dts/utils/deepMerge.d.ts.map +1 -0
- package/dist/dts/utils/index.d.ts +1 -0
- package/dist/dts/utils/index.d.ts.map +1 -1
- package/dist/esm/env/variables.js +4 -1
- package/dist/esm/feature-flags/featureFlags.js +12 -0
- package/dist/esm/feature-flags/index.js +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/utils/deepMerge.js +48 -0
- package/dist/esm/utils/index.js +1 -0
- package/dist/foundation-utils.api.json +129 -0
- package/dist/foundation-utils.d.ts +20 -0
- package/docs/api/foundation-utils.deepmerge.md +82 -0
- package/docs/api/foundation-utils.isfeatureactivated.md +50 -0
- package/docs/api/foundation-utils.md +20 -0
- package/docs/api-report.md.api.md +6 -0
- package/package.json +11 -11
|
@@ -63,6 +63,14 @@
|
|
|
63
63
|
"package": "./error"
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
+
{
|
|
67
|
+
"kind": "js",
|
|
68
|
+
"name": "*",
|
|
69
|
+
"declaration": {
|
|
70
|
+
"name": "*",
|
|
71
|
+
"package": "./feature-flags"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
66
74
|
{
|
|
67
75
|
"kind": "js",
|
|
68
76
|
"name": "*",
|
|
@@ -385,7 +393,112 @@
|
|
|
385
393
|
},
|
|
386
394
|
{
|
|
387
395
|
"kind": "javascript-module",
|
|
388
|
-
"path": "src/
|
|
396
|
+
"path": "src/design-system/design-system.ts",
|
|
397
|
+
"declarations": [
|
|
398
|
+
{
|
|
399
|
+
"kind": "function",
|
|
400
|
+
"name": "assureDesignSystem",
|
|
401
|
+
"return": {
|
|
402
|
+
"type": {
|
|
403
|
+
"text": "DesignSystemModule"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"parameters": [
|
|
407
|
+
{
|
|
408
|
+
"name": "module",
|
|
409
|
+
"type": {
|
|
410
|
+
"text": "DesignSystemModule"
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"description": "assureDesignSystem.",
|
|
415
|
+
"privacy": "public"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"kind": "function",
|
|
419
|
+
"name": "getCurrentDesignSystem",
|
|
420
|
+
"return": {
|
|
421
|
+
"type": {
|
|
422
|
+
"text": ""
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"parameters": [
|
|
426
|
+
{
|
|
427
|
+
"name": "element",
|
|
428
|
+
"type": {
|
|
429
|
+
"text": "HTMLElement"
|
|
430
|
+
},
|
|
431
|
+
"description": "The starting HTML element"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "fallbackPrefix",
|
|
435
|
+
"type": {
|
|
436
|
+
"text": "string"
|
|
437
|
+
},
|
|
438
|
+
"description": "The prefix to fallback to if the provider is not available"
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
442
|
+
"privacy": "public"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"kind": "function",
|
|
446
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
447
|
+
"return": {
|
|
448
|
+
"type": {
|
|
449
|
+
"text": ""
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"parameters": [
|
|
453
|
+
{
|
|
454
|
+
"name": "element",
|
|
455
|
+
"type": {
|
|
456
|
+
"text": "HTMLElement"
|
|
457
|
+
},
|
|
458
|
+
"description": "The starting HTML element"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "fallbackPrefix",
|
|
462
|
+
"type": {
|
|
463
|
+
"text": "string"
|
|
464
|
+
},
|
|
465
|
+
"description": "The prefix to fallback to if the provider is not available"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
469
|
+
"privacy": "public"
|
|
470
|
+
}
|
|
471
|
+
],
|
|
472
|
+
"exports": [
|
|
473
|
+
{
|
|
474
|
+
"kind": "js",
|
|
475
|
+
"name": "assureDesignSystem",
|
|
476
|
+
"declaration": {
|
|
477
|
+
"name": "assureDesignSystem",
|
|
478
|
+
"module": "src/design-system/design-system.ts"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"kind": "js",
|
|
483
|
+
"name": "getCurrentDesignSystem",
|
|
484
|
+
"declaration": {
|
|
485
|
+
"name": "getCurrentDesignSystem",
|
|
486
|
+
"module": "src/design-system/design-system.ts"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"kind": "js",
|
|
491
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
492
|
+
"declaration": {
|
|
493
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
494
|
+
"module": "src/design-system/design-system.ts"
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
]
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"kind": "javascript-module",
|
|
501
|
+
"path": "src/design-system/index.ts",
|
|
389
502
|
"declarations": [],
|
|
390
503
|
"exports": [
|
|
391
504
|
{
|
|
@@ -393,7 +506,60 @@
|
|
|
393
506
|
"name": "*",
|
|
394
507
|
"declaration": {
|
|
395
508
|
"name": "*",
|
|
396
|
-
"package": "./
|
|
509
|
+
"package": "./design-system"
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
]
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"kind": "javascript-module",
|
|
516
|
+
"path": "src/decorators/index.ts",
|
|
517
|
+
"declarations": [],
|
|
518
|
+
"exports": [
|
|
519
|
+
{
|
|
520
|
+
"kind": "js",
|
|
521
|
+
"name": "*",
|
|
522
|
+
"declaration": {
|
|
523
|
+
"name": "*",
|
|
524
|
+
"package": "./renderOnChange"
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
]
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"kind": "javascript-module",
|
|
531
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
532
|
+
"declarations": [
|
|
533
|
+
{
|
|
534
|
+
"kind": "function",
|
|
535
|
+
"name": "renderOnChange",
|
|
536
|
+
"parameters": [
|
|
537
|
+
{
|
|
538
|
+
"name": "target",
|
|
539
|
+
"type": {
|
|
540
|
+
"text": "FASTElement & { render(): void }"
|
|
541
|
+
},
|
|
542
|
+
"description": "The target to define the property change handler on."
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "name",
|
|
546
|
+
"type": {
|
|
547
|
+
"text": "string"
|
|
548
|
+
},
|
|
549
|
+
"description": "The property name."
|
|
550
|
+
}
|
|
551
|
+
],
|
|
552
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
553
|
+
"privacy": "public"
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"exports": [
|
|
557
|
+
{
|
|
558
|
+
"kind": "js",
|
|
559
|
+
"name": "renderOnChange",
|
|
560
|
+
"declaration": {
|
|
561
|
+
"name": "renderOnChange",
|
|
562
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
397
563
|
}
|
|
398
564
|
}
|
|
399
565
|
]
|
|
@@ -896,59 +1062,6 @@
|
|
|
896
1062
|
}
|
|
897
1063
|
]
|
|
898
1064
|
},
|
|
899
|
-
{
|
|
900
|
-
"kind": "javascript-module",
|
|
901
|
-
"path": "src/decorators/index.ts",
|
|
902
|
-
"declarations": [],
|
|
903
|
-
"exports": [
|
|
904
|
-
{
|
|
905
|
-
"kind": "js",
|
|
906
|
-
"name": "*",
|
|
907
|
-
"declaration": {
|
|
908
|
-
"name": "*",
|
|
909
|
-
"package": "./renderOnChange"
|
|
910
|
-
}
|
|
911
|
-
}
|
|
912
|
-
]
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"kind": "javascript-module",
|
|
916
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
917
|
-
"declarations": [
|
|
918
|
-
{
|
|
919
|
-
"kind": "function",
|
|
920
|
-
"name": "renderOnChange",
|
|
921
|
-
"parameters": [
|
|
922
|
-
{
|
|
923
|
-
"name": "target",
|
|
924
|
-
"type": {
|
|
925
|
-
"text": "FASTElement & { render(): void }"
|
|
926
|
-
},
|
|
927
|
-
"description": "The target to define the property change handler on."
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
"name": "name",
|
|
931
|
-
"type": {
|
|
932
|
-
"text": "string"
|
|
933
|
-
},
|
|
934
|
-
"description": "The property name."
|
|
935
|
-
}
|
|
936
|
-
],
|
|
937
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
938
|
-
"privacy": "public"
|
|
939
|
-
}
|
|
940
|
-
],
|
|
941
|
-
"exports": [
|
|
942
|
-
{
|
|
943
|
-
"kind": "js",
|
|
944
|
-
"name": "renderOnChange",
|
|
945
|
-
"declaration": {
|
|
946
|
-
"name": "renderOnChange",
|
|
947
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
]
|
|
951
|
-
},
|
|
952
1065
|
{
|
|
953
1066
|
"kind": "javascript-module",
|
|
954
1067
|
"path": "src/error/errorMap.ts",
|
|
@@ -1150,112 +1263,55 @@
|
|
|
1150
1263
|
},
|
|
1151
1264
|
{
|
|
1152
1265
|
"kind": "javascript-module",
|
|
1153
|
-
"path": "src/
|
|
1266
|
+
"path": "src/encoding/index.ts",
|
|
1267
|
+
"declarations": [],
|
|
1268
|
+
"exports": [
|
|
1269
|
+
{
|
|
1270
|
+
"kind": "js",
|
|
1271
|
+
"name": "*",
|
|
1272
|
+
"declaration": {
|
|
1273
|
+
"name": "*",
|
|
1274
|
+
"package": "./base64"
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
]
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"kind": "javascript-module",
|
|
1281
|
+
"path": "src/feature-flags/featureFlags.ts",
|
|
1154
1282
|
"declarations": [
|
|
1155
1283
|
{
|
|
1156
1284
|
"kind": "function",
|
|
1157
|
-
"name": "
|
|
1285
|
+
"name": "isFeatureActivated",
|
|
1158
1286
|
"return": {
|
|
1159
1287
|
"type": {
|
|
1160
|
-
"text": "
|
|
1288
|
+
"text": "boolean"
|
|
1161
1289
|
}
|
|
1162
1290
|
},
|
|
1163
1291
|
"parameters": [
|
|
1164
1292
|
{
|
|
1165
|
-
"name": "
|
|
1293
|
+
"name": "feature",
|
|
1166
1294
|
"type": {
|
|
1167
|
-
"text": "
|
|
1295
|
+
"text": "string"
|
|
1168
1296
|
}
|
|
1169
1297
|
}
|
|
1170
|
-
]
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
{
|
|
1175
|
-
"kind": "function",
|
|
1176
|
-
"name": "getCurrentDesignSystem",
|
|
1177
|
-
"return": {
|
|
1178
|
-
"type": {
|
|
1179
|
-
"text": ""
|
|
1180
|
-
}
|
|
1181
|
-
},
|
|
1182
|
-
"parameters": [
|
|
1183
|
-
{
|
|
1184
|
-
"name": "element",
|
|
1185
|
-
"type": {
|
|
1186
|
-
"text": "HTMLElement"
|
|
1187
|
-
},
|
|
1188
|
-
"description": "The starting HTML element"
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"name": "fallbackPrefix",
|
|
1192
|
-
"type": {
|
|
1193
|
-
"text": "string"
|
|
1194
|
-
},
|
|
1195
|
-
"description": "The prefix to fallback to if the provider is not available"
|
|
1196
|
-
}
|
|
1197
|
-
],
|
|
1198
|
-
"description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
1199
|
-
"privacy": "public"
|
|
1200
|
-
},
|
|
1201
|
-
{
|
|
1202
|
-
"kind": "function",
|
|
1203
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
1204
|
-
"return": {
|
|
1205
|
-
"type": {
|
|
1206
|
-
"text": ""
|
|
1207
|
-
}
|
|
1208
|
-
},
|
|
1209
|
-
"parameters": [
|
|
1210
|
-
{
|
|
1211
|
-
"name": "element",
|
|
1212
|
-
"type": {
|
|
1213
|
-
"text": "HTMLElement"
|
|
1214
|
-
},
|
|
1215
|
-
"description": "The starting HTML element"
|
|
1216
|
-
},
|
|
1217
|
-
{
|
|
1218
|
-
"name": "fallbackPrefix",
|
|
1219
|
-
"type": {
|
|
1220
|
-
"text": "string"
|
|
1221
|
-
},
|
|
1222
|
-
"description": "The prefix to fallback to if the provider is not available"
|
|
1223
|
-
}
|
|
1224
|
-
],
|
|
1225
|
-
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
1226
|
-
"privacy": "public"
|
|
1227
|
-
}
|
|
1228
|
-
],
|
|
1229
|
-
"exports": [
|
|
1298
|
+
]
|
|
1299
|
+
}
|
|
1300
|
+
],
|
|
1301
|
+
"exports": [
|
|
1230
1302
|
{
|
|
1231
1303
|
"kind": "js",
|
|
1232
|
-
"name": "
|
|
1304
|
+
"name": "isFeatureActivated",
|
|
1233
1305
|
"declaration": {
|
|
1234
|
-
"name": "
|
|
1235
|
-
"module": "src/
|
|
1236
|
-
}
|
|
1237
|
-
},
|
|
1238
|
-
{
|
|
1239
|
-
"kind": "js",
|
|
1240
|
-
"name": "getCurrentDesignSystem",
|
|
1241
|
-
"declaration": {
|
|
1242
|
-
"name": "getCurrentDesignSystem",
|
|
1243
|
-
"module": "src/design-system/design-system.ts"
|
|
1244
|
-
}
|
|
1245
|
-
},
|
|
1246
|
-
{
|
|
1247
|
-
"kind": "js",
|
|
1248
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
1249
|
-
"declaration": {
|
|
1250
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
1251
|
-
"module": "src/design-system/design-system.ts"
|
|
1306
|
+
"name": "isFeatureActivated",
|
|
1307
|
+
"module": "src/feature-flags/featureFlags.ts"
|
|
1252
1308
|
}
|
|
1253
1309
|
}
|
|
1254
1310
|
]
|
|
1255
1311
|
},
|
|
1256
1312
|
{
|
|
1257
1313
|
"kind": "javascript-module",
|
|
1258
|
-
"path": "src/
|
|
1314
|
+
"path": "src/feature-flags/index.ts",
|
|
1259
1315
|
"declarations": [],
|
|
1260
1316
|
"exports": [
|
|
1261
1317
|
{
|
|
@@ -1263,7 +1319,7 @@
|
|
|
1263
1319
|
"name": "*",
|
|
1264
1320
|
"declaration": {
|
|
1265
1321
|
"name": "*",
|
|
1266
|
-
"package": "./
|
|
1322
|
+
"package": "./featureFlags"
|
|
1267
1323
|
}
|
|
1268
1324
|
}
|
|
1269
1325
|
]
|
|
@@ -3489,6 +3545,49 @@
|
|
|
3489
3545
|
}
|
|
3490
3546
|
]
|
|
3491
3547
|
},
|
|
3548
|
+
{
|
|
3549
|
+
"kind": "javascript-module",
|
|
3550
|
+
"path": "src/utils/deepMerge.ts",
|
|
3551
|
+
"declarations": [
|
|
3552
|
+
{
|
|
3553
|
+
"kind": "function",
|
|
3554
|
+
"name": "deepMerge",
|
|
3555
|
+
"return": {
|
|
3556
|
+
"type": {
|
|
3557
|
+
"text": ""
|
|
3558
|
+
}
|
|
3559
|
+
},
|
|
3560
|
+
"parameters": [
|
|
3561
|
+
{
|
|
3562
|
+
"name": "target",
|
|
3563
|
+
"type": {
|
|
3564
|
+
"text": "T"
|
|
3565
|
+
},
|
|
3566
|
+
"description": "The target object to merge into (defaults/base values)"
|
|
3567
|
+
},
|
|
3568
|
+
{
|
|
3569
|
+
"name": "source",
|
|
3570
|
+
"type": {
|
|
3571
|
+
"text": "Partial<T>"
|
|
3572
|
+
},
|
|
3573
|
+
"description": "The source object to merge from (overrides)"
|
|
3574
|
+
}
|
|
3575
|
+
],
|
|
3576
|
+
"description": "Deep merges two objects, with source values taking precedence over target values.\nArrays are replaced (not merged), and null/undefined values in source are preserved.",
|
|
3577
|
+
"privacy": "public"
|
|
3578
|
+
}
|
|
3579
|
+
],
|
|
3580
|
+
"exports": [
|
|
3581
|
+
{
|
|
3582
|
+
"kind": "js",
|
|
3583
|
+
"name": "deepMerge",
|
|
3584
|
+
"declaration": {
|
|
3585
|
+
"name": "deepMerge",
|
|
3586
|
+
"module": "src/utils/deepMerge.ts"
|
|
3587
|
+
}
|
|
3588
|
+
}
|
|
3589
|
+
]
|
|
3590
|
+
},
|
|
3492
3591
|
{
|
|
3493
3592
|
"kind": "javascript-module",
|
|
3494
3593
|
"path": "src/utils/delay.ts",
|
|
@@ -3623,6 +3722,14 @@
|
|
|
3623
3722
|
"path": "src/utils/index.ts",
|
|
3624
3723
|
"declarations": [],
|
|
3625
3724
|
"exports": [
|
|
3725
|
+
{
|
|
3726
|
+
"kind": "js",
|
|
3727
|
+
"name": "*",
|
|
3728
|
+
"declaration": {
|
|
3729
|
+
"name": "*",
|
|
3730
|
+
"package": "./deepMerge"
|
|
3731
|
+
}
|
|
3732
|
+
},
|
|
3626
3733
|
{
|
|
3627
3734
|
"kind": "js",
|
|
3628
3735
|
"name": "*",
|
|
@@ -3955,160 +4062,6 @@
|
|
|
3955
4062
|
}
|
|
3956
4063
|
]
|
|
3957
4064
|
},
|
|
3958
|
-
{
|
|
3959
|
-
"kind": "javascript-module",
|
|
3960
|
-
"path": "src/encoding/base64/decode.ts",
|
|
3961
|
-
"declarations": [
|
|
3962
|
-
{
|
|
3963
|
-
"kind": "function",
|
|
3964
|
-
"name": "decodeFromBase64",
|
|
3965
|
-
"return": {
|
|
3966
|
-
"type": {
|
|
3967
|
-
"text": ""
|
|
3968
|
-
}
|
|
3969
|
-
},
|
|
3970
|
-
"parameters": [
|
|
3971
|
-
{
|
|
3972
|
-
"name": "base64Value",
|
|
3973
|
-
"type": {
|
|
3974
|
-
"text": "string"
|
|
3975
|
-
}
|
|
3976
|
-
},
|
|
3977
|
-
{
|
|
3978
|
-
"description": "The value to decode from base64.",
|
|
3979
|
-
"name": "value"
|
|
3980
|
-
}
|
|
3981
|
-
],
|
|
3982
|
-
"description": "Decodes a value from base64.",
|
|
3983
|
-
"privacy": "public"
|
|
3984
|
-
},
|
|
3985
|
-
{
|
|
3986
|
-
"kind": "function",
|
|
3987
|
-
"name": "decodeFromBase64WithPrefix",
|
|
3988
|
-
"return": {
|
|
3989
|
-
"type": {
|
|
3990
|
-
"text": ""
|
|
3991
|
-
}
|
|
3992
|
-
},
|
|
3993
|
-
"parameters": [
|
|
3994
|
-
{
|
|
3995
|
-
"name": "value",
|
|
3996
|
-
"type": {
|
|
3997
|
-
"text": "string"
|
|
3998
|
-
},
|
|
3999
|
-
"description": "The value to decode from base64."
|
|
4000
|
-
}
|
|
4001
|
-
],
|
|
4002
|
-
"description": "Decodes a value from base64 with a prefix.",
|
|
4003
|
-
"privacy": "public"
|
|
4004
|
-
}
|
|
4005
|
-
],
|
|
4006
|
-
"exports": [
|
|
4007
|
-
{
|
|
4008
|
-
"kind": "js",
|
|
4009
|
-
"name": "decodeFromBase64",
|
|
4010
|
-
"declaration": {
|
|
4011
|
-
"name": "decodeFromBase64",
|
|
4012
|
-
"module": "src/encoding/base64/decode.ts"
|
|
4013
|
-
}
|
|
4014
|
-
},
|
|
4015
|
-
{
|
|
4016
|
-
"kind": "js",
|
|
4017
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4018
|
-
"declaration": {
|
|
4019
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4020
|
-
"module": "src/encoding/base64/decode.ts"
|
|
4021
|
-
}
|
|
4022
|
-
}
|
|
4023
|
-
]
|
|
4024
|
-
},
|
|
4025
|
-
{
|
|
4026
|
-
"kind": "javascript-module",
|
|
4027
|
-
"path": "src/encoding/base64/encode.ts",
|
|
4028
|
-
"declarations": [
|
|
4029
|
-
{
|
|
4030
|
-
"kind": "function",
|
|
4031
|
-
"name": "encodeToBase64",
|
|
4032
|
-
"return": {
|
|
4033
|
-
"type": {
|
|
4034
|
-
"text": ""
|
|
4035
|
-
}
|
|
4036
|
-
},
|
|
4037
|
-
"parameters": [
|
|
4038
|
-
{
|
|
4039
|
-
"name": "value",
|
|
4040
|
-
"type": {
|
|
4041
|
-
"text": "string | ArrayBuffer"
|
|
4042
|
-
},
|
|
4043
|
-
"description": "The value to encode to base64."
|
|
4044
|
-
}
|
|
4045
|
-
],
|
|
4046
|
-
"description": "Encodes the given value to base64.",
|
|
4047
|
-
"privacy": "public"
|
|
4048
|
-
},
|
|
4049
|
-
{
|
|
4050
|
-
"kind": "function",
|
|
4051
|
-
"name": "encodeToBase64WithPrefix",
|
|
4052
|
-
"return": {
|
|
4053
|
-
"type": {
|
|
4054
|
-
"text": ""
|
|
4055
|
-
}
|
|
4056
|
-
},
|
|
4057
|
-
"parameters": [
|
|
4058
|
-
{
|
|
4059
|
-
"name": "value",
|
|
4060
|
-
"type": {
|
|
4061
|
-
"text": "string | ArrayBuffer"
|
|
4062
|
-
},
|
|
4063
|
-
"description": "The value to encode to base64."
|
|
4064
|
-
}
|
|
4065
|
-
],
|
|
4066
|
-
"description": "Encodes the given value with a prefix to base64.",
|
|
4067
|
-
"privacy": "public"
|
|
4068
|
-
}
|
|
4069
|
-
],
|
|
4070
|
-
"exports": [
|
|
4071
|
-
{
|
|
4072
|
-
"kind": "js",
|
|
4073
|
-
"name": "encodeToBase64",
|
|
4074
|
-
"declaration": {
|
|
4075
|
-
"name": "encodeToBase64",
|
|
4076
|
-
"module": "src/encoding/base64/encode.ts"
|
|
4077
|
-
}
|
|
4078
|
-
},
|
|
4079
|
-
{
|
|
4080
|
-
"kind": "js",
|
|
4081
|
-
"name": "encodeToBase64WithPrefix",
|
|
4082
|
-
"declaration": {
|
|
4083
|
-
"name": "encodeToBase64WithPrefix",
|
|
4084
|
-
"module": "src/encoding/base64/encode.ts"
|
|
4085
|
-
}
|
|
4086
|
-
}
|
|
4087
|
-
]
|
|
4088
|
-
},
|
|
4089
|
-
{
|
|
4090
|
-
"kind": "javascript-module",
|
|
4091
|
-
"path": "src/encoding/base64/index.ts",
|
|
4092
|
-
"declarations": [],
|
|
4093
|
-
"exports": [
|
|
4094
|
-
{
|
|
4095
|
-
"kind": "js",
|
|
4096
|
-
"name": "*",
|
|
4097
|
-
"declaration": {
|
|
4098
|
-
"name": "*",
|
|
4099
|
-
"package": "./decode"
|
|
4100
|
-
}
|
|
4101
|
-
},
|
|
4102
|
-
{
|
|
4103
|
-
"kind": "js",
|
|
4104
|
-
"name": "*",
|
|
4105
|
-
"declaration": {
|
|
4106
|
-
"name": "*",
|
|
4107
|
-
"package": "./encode"
|
|
4108
|
-
}
|
|
4109
|
-
}
|
|
4110
|
-
]
|
|
4111
|
-
},
|
|
4112
4065
|
{
|
|
4113
4066
|
"kind": "javascript-module",
|
|
4114
4067
|
"path": "src/directives/sync/index.ts",
|
|
@@ -4263,6 +4216,160 @@
|
|
|
4263
4216
|
}
|
|
4264
4217
|
]
|
|
4265
4218
|
},
|
|
4219
|
+
{
|
|
4220
|
+
"kind": "javascript-module",
|
|
4221
|
+
"path": "src/encoding/base64/decode.ts",
|
|
4222
|
+
"declarations": [
|
|
4223
|
+
{
|
|
4224
|
+
"kind": "function",
|
|
4225
|
+
"name": "decodeFromBase64",
|
|
4226
|
+
"return": {
|
|
4227
|
+
"type": {
|
|
4228
|
+
"text": ""
|
|
4229
|
+
}
|
|
4230
|
+
},
|
|
4231
|
+
"parameters": [
|
|
4232
|
+
{
|
|
4233
|
+
"name": "base64Value",
|
|
4234
|
+
"type": {
|
|
4235
|
+
"text": "string"
|
|
4236
|
+
}
|
|
4237
|
+
},
|
|
4238
|
+
{
|
|
4239
|
+
"description": "The value to decode from base64.",
|
|
4240
|
+
"name": "value"
|
|
4241
|
+
}
|
|
4242
|
+
],
|
|
4243
|
+
"description": "Decodes a value from base64.",
|
|
4244
|
+
"privacy": "public"
|
|
4245
|
+
},
|
|
4246
|
+
{
|
|
4247
|
+
"kind": "function",
|
|
4248
|
+
"name": "decodeFromBase64WithPrefix",
|
|
4249
|
+
"return": {
|
|
4250
|
+
"type": {
|
|
4251
|
+
"text": ""
|
|
4252
|
+
}
|
|
4253
|
+
},
|
|
4254
|
+
"parameters": [
|
|
4255
|
+
{
|
|
4256
|
+
"name": "value",
|
|
4257
|
+
"type": {
|
|
4258
|
+
"text": "string"
|
|
4259
|
+
},
|
|
4260
|
+
"description": "The value to decode from base64."
|
|
4261
|
+
}
|
|
4262
|
+
],
|
|
4263
|
+
"description": "Decodes a value from base64 with a prefix.",
|
|
4264
|
+
"privacy": "public"
|
|
4265
|
+
}
|
|
4266
|
+
],
|
|
4267
|
+
"exports": [
|
|
4268
|
+
{
|
|
4269
|
+
"kind": "js",
|
|
4270
|
+
"name": "decodeFromBase64",
|
|
4271
|
+
"declaration": {
|
|
4272
|
+
"name": "decodeFromBase64",
|
|
4273
|
+
"module": "src/encoding/base64/decode.ts"
|
|
4274
|
+
}
|
|
4275
|
+
},
|
|
4276
|
+
{
|
|
4277
|
+
"kind": "js",
|
|
4278
|
+
"name": "decodeFromBase64WithPrefix",
|
|
4279
|
+
"declaration": {
|
|
4280
|
+
"name": "decodeFromBase64WithPrefix",
|
|
4281
|
+
"module": "src/encoding/base64/decode.ts"
|
|
4282
|
+
}
|
|
4283
|
+
}
|
|
4284
|
+
]
|
|
4285
|
+
},
|
|
4286
|
+
{
|
|
4287
|
+
"kind": "javascript-module",
|
|
4288
|
+
"path": "src/encoding/base64/encode.ts",
|
|
4289
|
+
"declarations": [
|
|
4290
|
+
{
|
|
4291
|
+
"kind": "function",
|
|
4292
|
+
"name": "encodeToBase64",
|
|
4293
|
+
"return": {
|
|
4294
|
+
"type": {
|
|
4295
|
+
"text": ""
|
|
4296
|
+
}
|
|
4297
|
+
},
|
|
4298
|
+
"parameters": [
|
|
4299
|
+
{
|
|
4300
|
+
"name": "value",
|
|
4301
|
+
"type": {
|
|
4302
|
+
"text": "string | ArrayBuffer"
|
|
4303
|
+
},
|
|
4304
|
+
"description": "The value to encode to base64."
|
|
4305
|
+
}
|
|
4306
|
+
],
|
|
4307
|
+
"description": "Encodes the given value to base64.",
|
|
4308
|
+
"privacy": "public"
|
|
4309
|
+
},
|
|
4310
|
+
{
|
|
4311
|
+
"kind": "function",
|
|
4312
|
+
"name": "encodeToBase64WithPrefix",
|
|
4313
|
+
"return": {
|
|
4314
|
+
"type": {
|
|
4315
|
+
"text": ""
|
|
4316
|
+
}
|
|
4317
|
+
},
|
|
4318
|
+
"parameters": [
|
|
4319
|
+
{
|
|
4320
|
+
"name": "value",
|
|
4321
|
+
"type": {
|
|
4322
|
+
"text": "string | ArrayBuffer"
|
|
4323
|
+
},
|
|
4324
|
+
"description": "The value to encode to base64."
|
|
4325
|
+
}
|
|
4326
|
+
],
|
|
4327
|
+
"description": "Encodes the given value with a prefix to base64.",
|
|
4328
|
+
"privacy": "public"
|
|
4329
|
+
}
|
|
4330
|
+
],
|
|
4331
|
+
"exports": [
|
|
4332
|
+
{
|
|
4333
|
+
"kind": "js",
|
|
4334
|
+
"name": "encodeToBase64",
|
|
4335
|
+
"declaration": {
|
|
4336
|
+
"name": "encodeToBase64",
|
|
4337
|
+
"module": "src/encoding/base64/encode.ts"
|
|
4338
|
+
}
|
|
4339
|
+
},
|
|
4340
|
+
{
|
|
4341
|
+
"kind": "js",
|
|
4342
|
+
"name": "encodeToBase64WithPrefix",
|
|
4343
|
+
"declaration": {
|
|
4344
|
+
"name": "encodeToBase64WithPrefix",
|
|
4345
|
+
"module": "src/encoding/base64/encode.ts"
|
|
4346
|
+
}
|
|
4347
|
+
}
|
|
4348
|
+
]
|
|
4349
|
+
},
|
|
4350
|
+
{
|
|
4351
|
+
"kind": "javascript-module",
|
|
4352
|
+
"path": "src/encoding/base64/index.ts",
|
|
4353
|
+
"declarations": [],
|
|
4354
|
+
"exports": [
|
|
4355
|
+
{
|
|
4356
|
+
"kind": "js",
|
|
4357
|
+
"name": "*",
|
|
4358
|
+
"declaration": {
|
|
4359
|
+
"name": "*",
|
|
4360
|
+
"package": "./decode"
|
|
4361
|
+
}
|
|
4362
|
+
},
|
|
4363
|
+
{
|
|
4364
|
+
"kind": "js",
|
|
4365
|
+
"name": "*",
|
|
4366
|
+
"declaration": {
|
|
4367
|
+
"name": "*",
|
|
4368
|
+
"package": "./encode"
|
|
4369
|
+
}
|
|
4370
|
+
}
|
|
4371
|
+
]
|
|
4372
|
+
},
|
|
4266
4373
|
{
|
|
4267
4374
|
"kind": "javascript-module",
|
|
4268
4375
|
"path": "src/mappers/dto/index.ts",
|