@genesislcap/foundation-utils 14.401.2 → 14.401.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.
- package/dist/custom-elements.json +643 -643
- package/package.json +11 -11
|
@@ -203,190 +203,30 @@
|
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"kind": "javascript-module",
|
|
206
|
-
"path": "src/
|
|
207
|
-
"declarations": [
|
|
208
|
-
{
|
|
209
|
-
"kind": "class",
|
|
210
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
|
211
|
-
"name": "InMemoryDatabase",
|
|
212
|
-
"members": [
|
|
213
|
-
{
|
|
214
|
-
"kind": "field",
|
|
215
|
-
"name": "isWorking",
|
|
216
|
-
"type": {
|
|
217
|
-
"text": "boolean"
|
|
218
|
-
},
|
|
219
|
-
"privacy": "public",
|
|
220
|
-
"default": "false"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"kind": "field",
|
|
224
|
-
"name": "records",
|
|
225
|
-
"type": {
|
|
226
|
-
"text": "Record<string, T>"
|
|
227
|
-
},
|
|
228
|
-
"privacy": "private",
|
|
229
|
-
"default": "{}"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"kind": "field",
|
|
233
|
-
"name": "beforeUpdateListeners",
|
|
234
|
-
"privacy": "private"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"kind": "field",
|
|
238
|
-
"name": "afterUpdateListeners",
|
|
239
|
-
"privacy": "private"
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"kind": "method",
|
|
243
|
-
"name": "create",
|
|
244
|
-
"privacy": "public",
|
|
245
|
-
"return": {
|
|
246
|
-
"type": {
|
|
247
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
248
|
-
}
|
|
249
|
-
},
|
|
250
|
-
"parameters": [
|
|
251
|
-
{
|
|
252
|
-
"name": "newValue",
|
|
253
|
-
"type": {
|
|
254
|
-
"text": "Omit<T, 'id'>"
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
]
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"kind": "method",
|
|
261
|
-
"name": "read",
|
|
262
|
-
"privacy": "public",
|
|
263
|
-
"return": {
|
|
264
|
-
"type": {
|
|
265
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
266
|
-
}
|
|
267
|
-
},
|
|
268
|
-
"parameters": [
|
|
269
|
-
{
|
|
270
|
-
"name": "id",
|
|
271
|
-
"type": {
|
|
272
|
-
"text": "string"
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
]
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"kind": "method",
|
|
279
|
-
"name": "update",
|
|
280
|
-
"privacy": "public",
|
|
281
|
-
"return": {
|
|
282
|
-
"type": {
|
|
283
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
"parameters": [
|
|
287
|
-
{
|
|
288
|
-
"name": "id",
|
|
289
|
-
"type": {
|
|
290
|
-
"text": "string"
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"name": "newValue",
|
|
295
|
-
"type": {
|
|
296
|
-
"text": "Omit<Partial<T>, 'id'>"
|
|
297
|
-
}
|
|
298
|
-
}
|
|
299
|
-
]
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"kind": "method",
|
|
303
|
-
"name": "delete",
|
|
304
|
-
"privacy": "public",
|
|
305
|
-
"return": {
|
|
306
|
-
"type": {
|
|
307
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
"parameters": [
|
|
311
|
-
{
|
|
312
|
-
"name": "id",
|
|
313
|
-
"type": {
|
|
314
|
-
"text": "string"
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
]
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
"kind": "method",
|
|
321
|
-
"name": "visit",
|
|
322
|
-
"privacy": "public",
|
|
323
|
-
"return": {
|
|
324
|
-
"type": {
|
|
325
|
-
"text": "Promise<void>"
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"parameters": [
|
|
329
|
-
{
|
|
330
|
-
"name": "visitor",
|
|
331
|
-
"type": {
|
|
332
|
-
"text": "(record: T) => void"
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
]
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"kind": "method",
|
|
339
|
-
"name": "onBeforeUpdate",
|
|
340
|
-
"privacy": "public",
|
|
341
|
-
"return": {
|
|
342
|
-
"type": {
|
|
343
|
-
"text": "() => void"
|
|
344
|
-
}
|
|
345
|
-
},
|
|
346
|
-
"parameters": [
|
|
347
|
-
{
|
|
348
|
-
"name": "listener",
|
|
349
|
-
"type": {
|
|
350
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
]
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"kind": "method",
|
|
357
|
-
"name": "onAfterUpdate",
|
|
358
|
-
"privacy": "public",
|
|
359
|
-
"return": {
|
|
360
|
-
"type": {
|
|
361
|
-
"text": "() => void"
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
|
-
"parameters": [
|
|
365
|
-
{
|
|
366
|
-
"name": "listener",
|
|
367
|
-
"type": {
|
|
368
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
]
|
|
372
|
-
}
|
|
373
|
-
]
|
|
374
|
-
}
|
|
375
|
-
],
|
|
206
|
+
"path": "src/directives/index.ts",
|
|
207
|
+
"declarations": [],
|
|
376
208
|
"exports": [
|
|
377
209
|
{
|
|
378
210
|
"kind": "js",
|
|
379
|
-
"name": "
|
|
211
|
+
"name": "*",
|
|
380
212
|
"declaration": {
|
|
381
|
-
"name": "
|
|
382
|
-
"
|
|
213
|
+
"name": "*",
|
|
214
|
+
"package": "./sync"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"kind": "js",
|
|
219
|
+
"name": "*",
|
|
220
|
+
"declaration": {
|
|
221
|
+
"name": "*",
|
|
222
|
+
"package": "./when-else"
|
|
383
223
|
}
|
|
384
224
|
}
|
|
385
225
|
]
|
|
386
226
|
},
|
|
387
227
|
{
|
|
388
228
|
"kind": "javascript-module",
|
|
389
|
-
"path": "src/
|
|
229
|
+
"path": "src/encoding/index.ts",
|
|
390
230
|
"declarations": [],
|
|
391
231
|
"exports": [
|
|
392
232
|
{
|
|
@@ -394,14 +234,14 @@
|
|
|
394
234
|
"name": "*",
|
|
395
235
|
"declaration": {
|
|
396
236
|
"name": "*",
|
|
397
|
-
"package": "./
|
|
237
|
+
"package": "./base64"
|
|
398
238
|
}
|
|
399
239
|
}
|
|
400
240
|
]
|
|
401
241
|
},
|
|
402
242
|
{
|
|
403
243
|
"kind": "javascript-module",
|
|
404
|
-
"path": "src/
|
|
244
|
+
"path": "src/env/index.ts",
|
|
405
245
|
"declarations": [],
|
|
406
246
|
"exports": [
|
|
407
247
|
{
|
|
@@ -409,262 +249,51 @@
|
|
|
409
249
|
"name": "*",
|
|
410
250
|
"declaration": {
|
|
411
251
|
"name": "*",
|
|
412
|
-
"package": "./
|
|
252
|
+
"package": "./is-dev"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"kind": "js",
|
|
257
|
+
"name": "*",
|
|
258
|
+
"declaration": {
|
|
259
|
+
"name": "*",
|
|
260
|
+
"package": "./variables"
|
|
413
261
|
}
|
|
414
262
|
}
|
|
415
263
|
]
|
|
416
264
|
},
|
|
417
265
|
{
|
|
418
266
|
"kind": "javascript-module",
|
|
419
|
-
"path": "src/
|
|
267
|
+
"path": "src/env/is-dev.ts",
|
|
420
268
|
"declarations": [
|
|
421
269
|
{
|
|
422
270
|
"kind": "function",
|
|
423
|
-
"name": "
|
|
424
|
-
"
|
|
425
|
-
{
|
|
426
|
-
"name": "target",
|
|
427
|
-
"type": {
|
|
428
|
-
"text": "FASTElement & { render(): void }"
|
|
429
|
-
},
|
|
430
|
-
"description": "The target to define the property change handler on."
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
"name": "name",
|
|
434
|
-
"type": {
|
|
435
|
-
"text": "string"
|
|
436
|
-
},
|
|
437
|
-
"description": "The property name."
|
|
438
|
-
}
|
|
439
|
-
],
|
|
440
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
271
|
+
"name": "isDev",
|
|
272
|
+
"description": "Determines if the current environment is a development environment.",
|
|
441
273
|
"privacy": "public"
|
|
442
274
|
}
|
|
443
275
|
],
|
|
444
276
|
"exports": [
|
|
445
277
|
{
|
|
446
278
|
"kind": "js",
|
|
447
|
-
"name": "
|
|
279
|
+
"name": "isDev",
|
|
448
280
|
"declaration": {
|
|
449
|
-
"name": "
|
|
450
|
-
"module": "src/
|
|
281
|
+
"name": "isDev",
|
|
282
|
+
"module": "src/env/is-dev.ts"
|
|
451
283
|
}
|
|
452
284
|
}
|
|
453
285
|
]
|
|
454
286
|
},
|
|
455
287
|
{
|
|
456
288
|
"kind": "javascript-module",
|
|
457
|
-
"path": "src/
|
|
289
|
+
"path": "src/env/variables.ts",
|
|
458
290
|
"declarations": [
|
|
459
291
|
{
|
|
460
|
-
"kind": "
|
|
461
|
-
"name": "
|
|
462
|
-
"
|
|
463
|
-
"
|
|
464
|
-
|
|
465
|
-
}
|
|
466
|
-
},
|
|
467
|
-
"parameters": [
|
|
468
|
-
{
|
|
469
|
-
"name": "module",
|
|
470
|
-
"type": {
|
|
471
|
-
"text": "DesignSystemModule"
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
],
|
|
475
|
-
"description": "assureDesignSystem.",
|
|
476
|
-
"privacy": "public"
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
"kind": "function",
|
|
480
|
-
"name": "getCurrentDesignSystem",
|
|
481
|
-
"return": {
|
|
482
|
-
"type": {
|
|
483
|
-
"text": ""
|
|
484
|
-
}
|
|
485
|
-
},
|
|
486
|
-
"parameters": [
|
|
487
|
-
{
|
|
488
|
-
"name": "element",
|
|
489
|
-
"type": {
|
|
490
|
-
"text": "HTMLElement"
|
|
491
|
-
},
|
|
492
|
-
"description": "The starting HTML element"
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
"name": "fallbackPrefix",
|
|
496
|
-
"type": {
|
|
497
|
-
"text": "string"
|
|
498
|
-
},
|
|
499
|
-
"description": "The prefix to fallback to if the provider is not available"
|
|
500
|
-
}
|
|
501
|
-
],
|
|
502
|
-
"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.",
|
|
503
|
-
"privacy": "public"
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"kind": "function",
|
|
507
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
508
|
-
"return": {
|
|
509
|
-
"type": {
|
|
510
|
-
"text": ""
|
|
511
|
-
}
|
|
512
|
-
},
|
|
513
|
-
"parameters": [
|
|
514
|
-
{
|
|
515
|
-
"name": "element",
|
|
516
|
-
"type": {
|
|
517
|
-
"text": "HTMLElement"
|
|
518
|
-
},
|
|
519
|
-
"description": "The starting HTML element"
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"name": "fallbackPrefix",
|
|
523
|
-
"type": {
|
|
524
|
-
"text": "string"
|
|
525
|
-
},
|
|
526
|
-
"description": "The prefix to fallback to if the provider is not available"
|
|
527
|
-
}
|
|
528
|
-
],
|
|
529
|
-
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
530
|
-
"privacy": "public"
|
|
531
|
-
}
|
|
532
|
-
],
|
|
533
|
-
"exports": [
|
|
534
|
-
{
|
|
535
|
-
"kind": "js",
|
|
536
|
-
"name": "assureDesignSystem",
|
|
537
|
-
"declaration": {
|
|
538
|
-
"name": "assureDesignSystem",
|
|
539
|
-
"module": "src/design-system/design-system.ts"
|
|
540
|
-
}
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"kind": "js",
|
|
544
|
-
"name": "getCurrentDesignSystem",
|
|
545
|
-
"declaration": {
|
|
546
|
-
"name": "getCurrentDesignSystem",
|
|
547
|
-
"module": "src/design-system/design-system.ts"
|
|
548
|
-
}
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"kind": "js",
|
|
552
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
553
|
-
"declaration": {
|
|
554
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
555
|
-
"module": "src/design-system/design-system.ts"
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
|
-
]
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"kind": "javascript-module",
|
|
562
|
-
"path": "src/design-system/index.ts",
|
|
563
|
-
"declarations": [],
|
|
564
|
-
"exports": [
|
|
565
|
-
{
|
|
566
|
-
"kind": "js",
|
|
567
|
-
"name": "*",
|
|
568
|
-
"declaration": {
|
|
569
|
-
"name": "*",
|
|
570
|
-
"package": "./design-system"
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
]
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"kind": "javascript-module",
|
|
577
|
-
"path": "src/encoding/index.ts",
|
|
578
|
-
"declarations": [],
|
|
579
|
-
"exports": [
|
|
580
|
-
{
|
|
581
|
-
"kind": "js",
|
|
582
|
-
"name": "*",
|
|
583
|
-
"declaration": {
|
|
584
|
-
"name": "*",
|
|
585
|
-
"package": "./base64"
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
|
-
]
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"kind": "javascript-module",
|
|
592
|
-
"path": "src/directives/index.ts",
|
|
593
|
-
"declarations": [],
|
|
594
|
-
"exports": [
|
|
595
|
-
{
|
|
596
|
-
"kind": "js",
|
|
597
|
-
"name": "*",
|
|
598
|
-
"declaration": {
|
|
599
|
-
"name": "*",
|
|
600
|
-
"package": "./sync"
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
"kind": "js",
|
|
605
|
-
"name": "*",
|
|
606
|
-
"declaration": {
|
|
607
|
-
"name": "*",
|
|
608
|
-
"package": "./when-else"
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
]
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"kind": "javascript-module",
|
|
615
|
-
"path": "src/env/index.ts",
|
|
616
|
-
"declarations": [],
|
|
617
|
-
"exports": [
|
|
618
|
-
{
|
|
619
|
-
"kind": "js",
|
|
620
|
-
"name": "*",
|
|
621
|
-
"declaration": {
|
|
622
|
-
"name": "*",
|
|
623
|
-
"package": "./is-dev"
|
|
624
|
-
}
|
|
625
|
-
},
|
|
626
|
-
{
|
|
627
|
-
"kind": "js",
|
|
628
|
-
"name": "*",
|
|
629
|
-
"declaration": {
|
|
630
|
-
"name": "*",
|
|
631
|
-
"package": "./variables"
|
|
632
|
-
}
|
|
633
|
-
}
|
|
634
|
-
]
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"kind": "javascript-module",
|
|
638
|
-
"path": "src/env/is-dev.ts",
|
|
639
|
-
"declarations": [
|
|
640
|
-
{
|
|
641
|
-
"kind": "function",
|
|
642
|
-
"name": "isDev",
|
|
643
|
-
"description": "Determines if the current environment is a development environment.",
|
|
644
|
-
"privacy": "public"
|
|
645
|
-
}
|
|
646
|
-
],
|
|
647
|
-
"exports": [
|
|
648
|
-
{
|
|
649
|
-
"kind": "js",
|
|
650
|
-
"name": "isDev",
|
|
651
|
-
"declaration": {
|
|
652
|
-
"name": "isDev",
|
|
653
|
-
"module": "src/env/is-dev.ts"
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
]
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"kind": "javascript-module",
|
|
660
|
-
"path": "src/env/variables.ts",
|
|
661
|
-
"declarations": [
|
|
662
|
-
{
|
|
663
|
-
"kind": "variable",
|
|
664
|
-
"name": "BUILDER",
|
|
665
|
-
"type": {
|
|
666
|
-
"text": "string"
|
|
667
|
-
}
|
|
292
|
+
"kind": "variable",
|
|
293
|
+
"name": "BUILDER",
|
|
294
|
+
"type": {
|
|
295
|
+
"text": "string"
|
|
296
|
+
}
|
|
668
297
|
},
|
|
669
298
|
{
|
|
670
299
|
"kind": "variable",
|
|
@@ -1044,43 +673,414 @@
|
|
|
1044
673
|
}
|
|
1045
674
|
},
|
|
1046
675
|
{
|
|
1047
|
-
"kind": "js",
|
|
1048
|
-
"name": "RESET_PASSWORD_URL",
|
|
1049
|
-
"declaration": {
|
|
1050
|
-
"name": "RESET_PASSWORD_URL",
|
|
1051
|
-
"module": "src/env/variables.ts"
|
|
1052
|
-
}
|
|
1053
|
-
},
|
|
676
|
+
"kind": "js",
|
|
677
|
+
"name": "RESET_PASSWORD_URL",
|
|
678
|
+
"declaration": {
|
|
679
|
+
"name": "RESET_PASSWORD_URL",
|
|
680
|
+
"module": "src/env/variables.ts"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"kind": "js",
|
|
685
|
+
"name": "SSO_LIST_URL",
|
|
686
|
+
"declaration": {
|
|
687
|
+
"name": "SSO_LIST_URL",
|
|
688
|
+
"module": "src/env/variables.ts"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"kind": "js",
|
|
693
|
+
"name": "SSO_LOGIN_URL",
|
|
694
|
+
"declaration": {
|
|
695
|
+
"name": "SSO_LOGIN_URL",
|
|
696
|
+
"module": "src/env/variables.ts"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"kind": "js",
|
|
701
|
+
"name": "ENVIRONMENT_LEVEL",
|
|
702
|
+
"declaration": {
|
|
703
|
+
"name": "ENVIRONMENT_LEVEL",
|
|
704
|
+
"module": "src/env/variables.ts"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"kind": "js",
|
|
709
|
+
"name": "ACCEPT_TERMS_URL",
|
|
710
|
+
"declaration": {
|
|
711
|
+
"name": "ACCEPT_TERMS_URL",
|
|
712
|
+
"module": "src/env/variables.ts"
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
]
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"kind": "javascript-module",
|
|
719
|
+
"path": "src/data/inMemoryDatabase.ts",
|
|
720
|
+
"declarations": [
|
|
721
|
+
{
|
|
722
|
+
"kind": "class",
|
|
723
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
|
724
|
+
"name": "InMemoryDatabase",
|
|
725
|
+
"members": [
|
|
726
|
+
{
|
|
727
|
+
"kind": "field",
|
|
728
|
+
"name": "isWorking",
|
|
729
|
+
"type": {
|
|
730
|
+
"text": "boolean"
|
|
731
|
+
},
|
|
732
|
+
"privacy": "public",
|
|
733
|
+
"default": "false"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"kind": "field",
|
|
737
|
+
"name": "records",
|
|
738
|
+
"type": {
|
|
739
|
+
"text": "Record<string, T>"
|
|
740
|
+
},
|
|
741
|
+
"privacy": "private",
|
|
742
|
+
"default": "{}"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"kind": "field",
|
|
746
|
+
"name": "beforeUpdateListeners",
|
|
747
|
+
"privacy": "private"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"kind": "field",
|
|
751
|
+
"name": "afterUpdateListeners",
|
|
752
|
+
"privacy": "private"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"kind": "method",
|
|
756
|
+
"name": "create",
|
|
757
|
+
"privacy": "public",
|
|
758
|
+
"return": {
|
|
759
|
+
"type": {
|
|
760
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"parameters": [
|
|
764
|
+
{
|
|
765
|
+
"name": "newValue",
|
|
766
|
+
"type": {
|
|
767
|
+
"text": "Omit<T, 'id'>"
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
]
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"kind": "method",
|
|
774
|
+
"name": "read",
|
|
775
|
+
"privacy": "public",
|
|
776
|
+
"return": {
|
|
777
|
+
"type": {
|
|
778
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"parameters": [
|
|
782
|
+
{
|
|
783
|
+
"name": "id",
|
|
784
|
+
"type": {
|
|
785
|
+
"text": "string"
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
]
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"kind": "method",
|
|
792
|
+
"name": "update",
|
|
793
|
+
"privacy": "public",
|
|
794
|
+
"return": {
|
|
795
|
+
"type": {
|
|
796
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
"parameters": [
|
|
800
|
+
{
|
|
801
|
+
"name": "id",
|
|
802
|
+
"type": {
|
|
803
|
+
"text": "string"
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"name": "newValue",
|
|
808
|
+
"type": {
|
|
809
|
+
"text": "Omit<Partial<T>, 'id'>"
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
]
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"kind": "method",
|
|
816
|
+
"name": "delete",
|
|
817
|
+
"privacy": "public",
|
|
818
|
+
"return": {
|
|
819
|
+
"type": {
|
|
820
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
"parameters": [
|
|
824
|
+
{
|
|
825
|
+
"name": "id",
|
|
826
|
+
"type": {
|
|
827
|
+
"text": "string"
|
|
828
|
+
}
|
|
829
|
+
}
|
|
830
|
+
]
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"kind": "method",
|
|
834
|
+
"name": "visit",
|
|
835
|
+
"privacy": "public",
|
|
836
|
+
"return": {
|
|
837
|
+
"type": {
|
|
838
|
+
"text": "Promise<void>"
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
"parameters": [
|
|
842
|
+
{
|
|
843
|
+
"name": "visitor",
|
|
844
|
+
"type": {
|
|
845
|
+
"text": "(record: T) => void"
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
]
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"kind": "method",
|
|
852
|
+
"name": "onBeforeUpdate",
|
|
853
|
+
"privacy": "public",
|
|
854
|
+
"return": {
|
|
855
|
+
"type": {
|
|
856
|
+
"text": "() => void"
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
"parameters": [
|
|
860
|
+
{
|
|
861
|
+
"name": "listener",
|
|
862
|
+
"type": {
|
|
863
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"kind": "method",
|
|
870
|
+
"name": "onAfterUpdate",
|
|
871
|
+
"privacy": "public",
|
|
872
|
+
"return": {
|
|
873
|
+
"type": {
|
|
874
|
+
"text": "() => void"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
"parameters": [
|
|
878
|
+
{
|
|
879
|
+
"name": "listener",
|
|
880
|
+
"type": {
|
|
881
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
]
|
|
885
|
+
}
|
|
886
|
+
]
|
|
887
|
+
}
|
|
888
|
+
],
|
|
889
|
+
"exports": [
|
|
890
|
+
{
|
|
891
|
+
"kind": "js",
|
|
892
|
+
"name": "InMemoryDatabase",
|
|
893
|
+
"declaration": {
|
|
894
|
+
"name": "InMemoryDatabase",
|
|
895
|
+
"module": "src/data/inMemoryDatabase.ts"
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"kind": "javascript-module",
|
|
902
|
+
"path": "src/data/index.ts",
|
|
903
|
+
"declarations": [],
|
|
904
|
+
"exports": [
|
|
905
|
+
{
|
|
906
|
+
"kind": "js",
|
|
907
|
+
"name": "*",
|
|
908
|
+
"declaration": {
|
|
909
|
+
"name": "*",
|
|
910
|
+
"package": "./inMemoryDatabase"
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"kind": "javascript-module",
|
|
917
|
+
"path": "src/decorators/index.ts",
|
|
918
|
+
"declarations": [],
|
|
919
|
+
"exports": [
|
|
920
|
+
{
|
|
921
|
+
"kind": "js",
|
|
922
|
+
"name": "*",
|
|
923
|
+
"declaration": {
|
|
924
|
+
"name": "*",
|
|
925
|
+
"package": "./renderOnChange"
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
]
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"kind": "javascript-module",
|
|
932
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
933
|
+
"declarations": [
|
|
934
|
+
{
|
|
935
|
+
"kind": "function",
|
|
936
|
+
"name": "renderOnChange",
|
|
937
|
+
"parameters": [
|
|
938
|
+
{
|
|
939
|
+
"name": "target",
|
|
940
|
+
"type": {
|
|
941
|
+
"text": "FASTElement & { render(): void }"
|
|
942
|
+
},
|
|
943
|
+
"description": "The target to define the property change handler on."
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"name": "name",
|
|
947
|
+
"type": {
|
|
948
|
+
"text": "string"
|
|
949
|
+
},
|
|
950
|
+
"description": "The property name."
|
|
951
|
+
}
|
|
952
|
+
],
|
|
953
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
954
|
+
"privacy": "public"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"exports": [
|
|
958
|
+
{
|
|
959
|
+
"kind": "js",
|
|
960
|
+
"name": "renderOnChange",
|
|
961
|
+
"declaration": {
|
|
962
|
+
"name": "renderOnChange",
|
|
963
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
]
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"kind": "javascript-module",
|
|
970
|
+
"path": "src/design-system/design-system.ts",
|
|
971
|
+
"declarations": [
|
|
972
|
+
{
|
|
973
|
+
"kind": "function",
|
|
974
|
+
"name": "assureDesignSystem",
|
|
975
|
+
"return": {
|
|
976
|
+
"type": {
|
|
977
|
+
"text": "DesignSystemModule"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
"parameters": [
|
|
981
|
+
{
|
|
982
|
+
"name": "module",
|
|
983
|
+
"type": {
|
|
984
|
+
"text": "DesignSystemModule"
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
],
|
|
988
|
+
"description": "assureDesignSystem.",
|
|
989
|
+
"privacy": "public"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"kind": "function",
|
|
993
|
+
"name": "getCurrentDesignSystem",
|
|
994
|
+
"return": {
|
|
995
|
+
"type": {
|
|
996
|
+
"text": ""
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"parameters": [
|
|
1000
|
+
{
|
|
1001
|
+
"name": "element",
|
|
1002
|
+
"type": {
|
|
1003
|
+
"text": "HTMLElement"
|
|
1004
|
+
},
|
|
1005
|
+
"description": "The starting HTML element"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"name": "fallbackPrefix",
|
|
1009
|
+
"type": {
|
|
1010
|
+
"text": "string"
|
|
1011
|
+
},
|
|
1012
|
+
"description": "The prefix to fallback to if the provider is not available"
|
|
1013
|
+
}
|
|
1014
|
+
],
|
|
1015
|
+
"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.",
|
|
1016
|
+
"privacy": "public"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"kind": "function",
|
|
1020
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
1021
|
+
"return": {
|
|
1022
|
+
"type": {
|
|
1023
|
+
"text": ""
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
"parameters": [
|
|
1027
|
+
{
|
|
1028
|
+
"name": "element",
|
|
1029
|
+
"type": {
|
|
1030
|
+
"text": "HTMLElement"
|
|
1031
|
+
},
|
|
1032
|
+
"description": "The starting HTML element"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"name": "fallbackPrefix",
|
|
1036
|
+
"type": {
|
|
1037
|
+
"text": "string"
|
|
1038
|
+
},
|
|
1039
|
+
"description": "The prefix to fallback to if the provider is not available"
|
|
1040
|
+
}
|
|
1041
|
+
],
|
|
1042
|
+
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
1043
|
+
"privacy": "public"
|
|
1044
|
+
}
|
|
1045
|
+
],
|
|
1046
|
+
"exports": [
|
|
1054
1047
|
{
|
|
1055
1048
|
"kind": "js",
|
|
1056
|
-
"name": "
|
|
1049
|
+
"name": "assureDesignSystem",
|
|
1057
1050
|
"declaration": {
|
|
1058
|
-
"name": "
|
|
1059
|
-
"module": "src/
|
|
1051
|
+
"name": "assureDesignSystem",
|
|
1052
|
+
"module": "src/design-system/design-system.ts"
|
|
1060
1053
|
}
|
|
1061
1054
|
},
|
|
1062
1055
|
{
|
|
1063
1056
|
"kind": "js",
|
|
1064
|
-
"name": "
|
|
1057
|
+
"name": "getCurrentDesignSystem",
|
|
1065
1058
|
"declaration": {
|
|
1066
|
-
"name": "
|
|
1067
|
-
"module": "src/
|
|
1059
|
+
"name": "getCurrentDesignSystem",
|
|
1060
|
+
"module": "src/design-system/design-system.ts"
|
|
1068
1061
|
}
|
|
1069
1062
|
},
|
|
1070
1063
|
{
|
|
1071
1064
|
"kind": "js",
|
|
1072
|
-
"name": "
|
|
1065
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
1073
1066
|
"declaration": {
|
|
1074
|
-
"name": "
|
|
1075
|
-
"module": "src/
|
|
1067
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
1068
|
+
"module": "src/design-system/design-system.ts"
|
|
1076
1069
|
}
|
|
1077
|
-
}
|
|
1070
|
+
}
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"kind": "javascript-module",
|
|
1075
|
+
"path": "src/design-system/index.ts",
|
|
1076
|
+
"declarations": [],
|
|
1077
|
+
"exports": [
|
|
1078
1078
|
{
|
|
1079
1079
|
"kind": "js",
|
|
1080
|
-
"name": "
|
|
1080
|
+
"name": "*",
|
|
1081
1081
|
"declaration": {
|
|
1082
|
-
"name": "
|
|
1083
|
-
"
|
|
1082
|
+
"name": "*",
|
|
1083
|
+
"package": "./design-system"
|
|
1084
1084
|
}
|
|
1085
1085
|
}
|
|
1086
1086
|
]
|
|
@@ -4156,203 +4156,25 @@
|
|
|
4156
4156
|
"kind": "variable",
|
|
4157
4157
|
"name": "POPUP_DEFAULT_WIDTH",
|
|
4158
4158
|
"type": {
|
|
4159
|
-
"text": "number"
|
|
4160
|
-
},
|
|
4161
|
-
"default": "483",
|
|
4162
|
-
"description": "The default width (in pixels) for pop-up windows.",
|
|
4163
|
-
"privacy": "public"
|
|
4164
|
-
},
|
|
4165
|
-
{
|
|
4166
|
-
"kind": "variable",
|
|
4167
|
-
"name": "POPUP_DEFAULT_HEIGHT",
|
|
4168
|
-
"type": {
|
|
4169
|
-
"text": "number"
|
|
4170
|
-
},
|
|
4171
|
-
"default": "600",
|
|
4172
|
-
"description": "The default height (in pixels) for pop-up windows.",
|
|
4173
|
-
"privacy": "public"
|
|
4174
|
-
},
|
|
4175
|
-
{
|
|
4176
|
-
"kind": "function",
|
|
4177
|
-
"name": "openPopup",
|
|
4178
|
-
"return": {
|
|
4179
|
-
"type": {
|
|
4180
|
-
"text": ""
|
|
4181
|
-
}
|
|
4182
|
-
},
|
|
4183
|
-
"parameters": [
|
|
4184
|
-
{
|
|
4185
|
-
"name": "urlNavigate",
|
|
4186
|
-
"type": {
|
|
4187
|
-
"text": "string"
|
|
4188
|
-
},
|
|
4189
|
-
"description": "The URL to navigate to."
|
|
4190
|
-
},
|
|
4191
|
-
{
|
|
4192
|
-
"name": "target",
|
|
4193
|
-
"type": {
|
|
4194
|
-
"text": "string"
|
|
4195
|
-
},
|
|
4196
|
-
"description": "The name of the new window."
|
|
4197
|
-
},
|
|
4198
|
-
{
|
|
4199
|
-
"name": "popUpWidth",
|
|
4200
|
-
"default": "POPUP_DEFAULT_WIDTH",
|
|
4201
|
-
"type": {
|
|
4202
|
-
"text": "number"
|
|
4203
|
-
},
|
|
4204
|
-
"description": "The width of the new window (optional)."
|
|
4205
|
-
},
|
|
4206
|
-
{
|
|
4207
|
-
"name": "popUpHeight",
|
|
4208
|
-
"default": "POPUP_DEFAULT_HEIGHT",
|
|
4209
|
-
"type": {
|
|
4210
|
-
"text": "number"
|
|
4211
|
-
},
|
|
4212
|
-
"description": "The height of the new window (optional)."
|
|
4213
|
-
}
|
|
4214
|
-
],
|
|
4215
|
-
"description": "Opens a new browser window with the specified URL, target, width, and height.",
|
|
4216
|
-
"privacy": "public"
|
|
4217
|
-
}
|
|
4218
|
-
],
|
|
4219
|
-
"exports": [
|
|
4220
|
-
{
|
|
4221
|
-
"kind": "js",
|
|
4222
|
-
"name": "inIFrame",
|
|
4223
|
-
"declaration": {
|
|
4224
|
-
"name": "inIFrame",
|
|
4225
|
-
"module": "src/window/window.ts"
|
|
4226
|
-
}
|
|
4227
|
-
},
|
|
4228
|
-
{
|
|
4229
|
-
"kind": "js",
|
|
4230
|
-
"name": "inSymphonyDesktop",
|
|
4231
|
-
"declaration": {
|
|
4232
|
-
"name": "inSymphonyDesktop",
|
|
4233
|
-
"module": "src/window/window.ts"
|
|
4234
|
-
}
|
|
4235
|
-
},
|
|
4236
|
-
{
|
|
4237
|
-
"kind": "js",
|
|
4238
|
-
"name": "POPUP_DEFAULT_WIDTH",
|
|
4239
|
-
"declaration": {
|
|
4240
|
-
"name": "POPUP_DEFAULT_WIDTH",
|
|
4241
|
-
"module": "src/window/window.ts"
|
|
4242
|
-
}
|
|
4243
|
-
},
|
|
4244
|
-
{
|
|
4245
|
-
"kind": "js",
|
|
4246
|
-
"name": "POPUP_DEFAULT_HEIGHT",
|
|
4247
|
-
"declaration": {
|
|
4248
|
-
"name": "POPUP_DEFAULT_HEIGHT",
|
|
4249
|
-
"module": "src/window/window.ts"
|
|
4250
|
-
}
|
|
4251
|
-
},
|
|
4252
|
-
{
|
|
4253
|
-
"kind": "js",
|
|
4254
|
-
"name": "openPopup",
|
|
4255
|
-
"declaration": {
|
|
4256
|
-
"name": "openPopup",
|
|
4257
|
-
"module": "src/window/window.ts"
|
|
4258
|
-
}
|
|
4259
|
-
}
|
|
4260
|
-
]
|
|
4261
|
-
},
|
|
4262
|
-
{
|
|
4263
|
-
"kind": "javascript-module",
|
|
4264
|
-
"path": "src/encoding/base64/decode.ts",
|
|
4265
|
-
"declarations": [
|
|
4266
|
-
{
|
|
4267
|
-
"kind": "function",
|
|
4268
|
-
"name": "decodeFromBase64",
|
|
4269
|
-
"return": {
|
|
4270
|
-
"type": {
|
|
4271
|
-
"text": ""
|
|
4272
|
-
}
|
|
4273
|
-
},
|
|
4274
|
-
"parameters": [
|
|
4275
|
-
{
|
|
4276
|
-
"name": "base64Value",
|
|
4277
|
-
"type": {
|
|
4278
|
-
"text": "string"
|
|
4279
|
-
}
|
|
4280
|
-
},
|
|
4281
|
-
{
|
|
4282
|
-
"description": "The value to decode from base64.",
|
|
4283
|
-
"name": "value"
|
|
4284
|
-
}
|
|
4285
|
-
],
|
|
4286
|
-
"description": "Decodes a value from base64.",
|
|
4287
|
-
"privacy": "public"
|
|
4288
|
-
},
|
|
4289
|
-
{
|
|
4290
|
-
"kind": "function",
|
|
4291
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4292
|
-
"return": {
|
|
4293
|
-
"type": {
|
|
4294
|
-
"text": ""
|
|
4295
|
-
}
|
|
4296
|
-
},
|
|
4297
|
-
"parameters": [
|
|
4298
|
-
{
|
|
4299
|
-
"name": "value",
|
|
4300
|
-
"type": {
|
|
4301
|
-
"text": "string"
|
|
4302
|
-
},
|
|
4303
|
-
"description": "The value to decode from base64."
|
|
4304
|
-
}
|
|
4305
|
-
],
|
|
4306
|
-
"description": "Decodes a value from base64 with a prefix.",
|
|
4307
|
-
"privacy": "public"
|
|
4308
|
-
}
|
|
4309
|
-
],
|
|
4310
|
-
"exports": [
|
|
4311
|
-
{
|
|
4312
|
-
"kind": "js",
|
|
4313
|
-
"name": "decodeFromBase64",
|
|
4314
|
-
"declaration": {
|
|
4315
|
-
"name": "decodeFromBase64",
|
|
4316
|
-
"module": "src/encoding/base64/decode.ts"
|
|
4317
|
-
}
|
|
4318
|
-
},
|
|
4319
|
-
{
|
|
4320
|
-
"kind": "js",
|
|
4321
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4322
|
-
"declaration": {
|
|
4323
|
-
"name": "decodeFromBase64WithPrefix",
|
|
4324
|
-
"module": "src/encoding/base64/decode.ts"
|
|
4325
|
-
}
|
|
4326
|
-
}
|
|
4327
|
-
]
|
|
4328
|
-
},
|
|
4329
|
-
{
|
|
4330
|
-
"kind": "javascript-module",
|
|
4331
|
-
"path": "src/encoding/base64/encode.ts",
|
|
4332
|
-
"declarations": [
|
|
4159
|
+
"text": "number"
|
|
4160
|
+
},
|
|
4161
|
+
"default": "483",
|
|
4162
|
+
"description": "The default width (in pixels) for pop-up windows.",
|
|
4163
|
+
"privacy": "public"
|
|
4164
|
+
},
|
|
4333
4165
|
{
|
|
4334
|
-
"kind": "
|
|
4335
|
-
"name": "
|
|
4336
|
-
"
|
|
4337
|
-
"
|
|
4338
|
-
"text": ""
|
|
4339
|
-
}
|
|
4166
|
+
"kind": "variable",
|
|
4167
|
+
"name": "POPUP_DEFAULT_HEIGHT",
|
|
4168
|
+
"type": {
|
|
4169
|
+
"text": "number"
|
|
4340
4170
|
},
|
|
4341
|
-
"
|
|
4342
|
-
|
|
4343
|
-
"name": "value",
|
|
4344
|
-
"type": {
|
|
4345
|
-
"text": "string | ArrayBuffer"
|
|
4346
|
-
},
|
|
4347
|
-
"description": "The value to encode to base64."
|
|
4348
|
-
}
|
|
4349
|
-
],
|
|
4350
|
-
"description": "Encodes the given value to base64.",
|
|
4171
|
+
"default": "600",
|
|
4172
|
+
"description": "The default height (in pixels) for pop-up windows.",
|
|
4351
4173
|
"privacy": "public"
|
|
4352
4174
|
},
|
|
4353
4175
|
{
|
|
4354
4176
|
"kind": "function",
|
|
4355
|
-
"name": "
|
|
4177
|
+
"name": "openPopup",
|
|
4356
4178
|
"return": {
|
|
4357
4179
|
"type": {
|
|
4358
4180
|
"text": ""
|
|
@@ -4360,55 +4182,79 @@
|
|
|
4360
4182
|
},
|
|
4361
4183
|
"parameters": [
|
|
4362
4184
|
{
|
|
4363
|
-
"name": "
|
|
4185
|
+
"name": "urlNavigate",
|
|
4364
4186
|
"type": {
|
|
4365
|
-
"text": "string
|
|
4187
|
+
"text": "string"
|
|
4366
4188
|
},
|
|
4367
|
-
"description": "The
|
|
4189
|
+
"description": "The URL to navigate to."
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
"name": "target",
|
|
4193
|
+
"type": {
|
|
4194
|
+
"text": "string"
|
|
4195
|
+
},
|
|
4196
|
+
"description": "The name of the new window."
|
|
4197
|
+
},
|
|
4198
|
+
{
|
|
4199
|
+
"name": "popUpWidth",
|
|
4200
|
+
"default": "POPUP_DEFAULT_WIDTH",
|
|
4201
|
+
"type": {
|
|
4202
|
+
"text": "number"
|
|
4203
|
+
},
|
|
4204
|
+
"description": "The width of the new window (optional)."
|
|
4205
|
+
},
|
|
4206
|
+
{
|
|
4207
|
+
"name": "popUpHeight",
|
|
4208
|
+
"default": "POPUP_DEFAULT_HEIGHT",
|
|
4209
|
+
"type": {
|
|
4210
|
+
"text": "number"
|
|
4211
|
+
},
|
|
4212
|
+
"description": "The height of the new window (optional)."
|
|
4368
4213
|
}
|
|
4369
4214
|
],
|
|
4370
|
-
"description": "
|
|
4215
|
+
"description": "Opens a new browser window with the specified URL, target, width, and height.",
|
|
4371
4216
|
"privacy": "public"
|
|
4372
4217
|
}
|
|
4373
4218
|
],
|
|
4374
4219
|
"exports": [
|
|
4375
4220
|
{
|
|
4376
4221
|
"kind": "js",
|
|
4377
|
-
"name": "
|
|
4222
|
+
"name": "inIFrame",
|
|
4378
4223
|
"declaration": {
|
|
4379
|
-
"name": "
|
|
4380
|
-
"module": "src/
|
|
4224
|
+
"name": "inIFrame",
|
|
4225
|
+
"module": "src/window/window.ts"
|
|
4381
4226
|
}
|
|
4382
4227
|
},
|
|
4383
4228
|
{
|
|
4384
4229
|
"kind": "js",
|
|
4385
|
-
"name": "
|
|
4230
|
+
"name": "inSymphonyDesktop",
|
|
4386
4231
|
"declaration": {
|
|
4387
|
-
"name": "
|
|
4388
|
-
"module": "src/
|
|
4232
|
+
"name": "inSymphonyDesktop",
|
|
4233
|
+
"module": "src/window/window.ts"
|
|
4389
4234
|
}
|
|
4390
|
-
}
|
|
4391
|
-
]
|
|
4392
|
-
},
|
|
4393
|
-
{
|
|
4394
|
-
"kind": "javascript-module",
|
|
4395
|
-
"path": "src/encoding/base64/index.ts",
|
|
4396
|
-
"declarations": [],
|
|
4397
|
-
"exports": [
|
|
4235
|
+
},
|
|
4398
4236
|
{
|
|
4399
4237
|
"kind": "js",
|
|
4400
|
-
"name": "
|
|
4238
|
+
"name": "POPUP_DEFAULT_WIDTH",
|
|
4401
4239
|
"declaration": {
|
|
4402
|
-
"name": "
|
|
4403
|
-
"
|
|
4240
|
+
"name": "POPUP_DEFAULT_WIDTH",
|
|
4241
|
+
"module": "src/window/window.ts"
|
|
4404
4242
|
}
|
|
4405
4243
|
},
|
|
4406
4244
|
{
|
|
4407
4245
|
"kind": "js",
|
|
4408
|
-
"name": "
|
|
4246
|
+
"name": "POPUP_DEFAULT_HEIGHT",
|
|
4409
4247
|
"declaration": {
|
|
4410
|
-
"name": "
|
|
4411
|
-
"
|
|
4248
|
+
"name": "POPUP_DEFAULT_HEIGHT",
|
|
4249
|
+
"module": "src/window/window.ts"
|
|
4250
|
+
}
|
|
4251
|
+
},
|
|
4252
|
+
{
|
|
4253
|
+
"kind": "js",
|
|
4254
|
+
"name": "openPopup",
|
|
4255
|
+
"declaration": {
|
|
4256
|
+
"name": "openPopup",
|
|
4257
|
+
"module": "src/window/window.ts"
|
|
4412
4258
|
}
|
|
4413
4259
|
}
|
|
4414
4260
|
]
|
|
@@ -4567,6 +4413,160 @@
|
|
|
4567
4413
|
}
|
|
4568
4414
|
]
|
|
4569
4415
|
},
|
|
4416
|
+
{
|
|
4417
|
+
"kind": "javascript-module",
|
|
4418
|
+
"path": "src/encoding/base64/decode.ts",
|
|
4419
|
+
"declarations": [
|
|
4420
|
+
{
|
|
4421
|
+
"kind": "function",
|
|
4422
|
+
"name": "decodeFromBase64",
|
|
4423
|
+
"return": {
|
|
4424
|
+
"type": {
|
|
4425
|
+
"text": ""
|
|
4426
|
+
}
|
|
4427
|
+
},
|
|
4428
|
+
"parameters": [
|
|
4429
|
+
{
|
|
4430
|
+
"name": "base64Value",
|
|
4431
|
+
"type": {
|
|
4432
|
+
"text": "string"
|
|
4433
|
+
}
|
|
4434
|
+
},
|
|
4435
|
+
{
|
|
4436
|
+
"description": "The value to decode from base64.",
|
|
4437
|
+
"name": "value"
|
|
4438
|
+
}
|
|
4439
|
+
],
|
|
4440
|
+
"description": "Decodes a value from base64.",
|
|
4441
|
+
"privacy": "public"
|
|
4442
|
+
},
|
|
4443
|
+
{
|
|
4444
|
+
"kind": "function",
|
|
4445
|
+
"name": "decodeFromBase64WithPrefix",
|
|
4446
|
+
"return": {
|
|
4447
|
+
"type": {
|
|
4448
|
+
"text": ""
|
|
4449
|
+
}
|
|
4450
|
+
},
|
|
4451
|
+
"parameters": [
|
|
4452
|
+
{
|
|
4453
|
+
"name": "value",
|
|
4454
|
+
"type": {
|
|
4455
|
+
"text": "string"
|
|
4456
|
+
},
|
|
4457
|
+
"description": "The value to decode from base64."
|
|
4458
|
+
}
|
|
4459
|
+
],
|
|
4460
|
+
"description": "Decodes a value from base64 with a prefix.",
|
|
4461
|
+
"privacy": "public"
|
|
4462
|
+
}
|
|
4463
|
+
],
|
|
4464
|
+
"exports": [
|
|
4465
|
+
{
|
|
4466
|
+
"kind": "js",
|
|
4467
|
+
"name": "decodeFromBase64",
|
|
4468
|
+
"declaration": {
|
|
4469
|
+
"name": "decodeFromBase64",
|
|
4470
|
+
"module": "src/encoding/base64/decode.ts"
|
|
4471
|
+
}
|
|
4472
|
+
},
|
|
4473
|
+
{
|
|
4474
|
+
"kind": "js",
|
|
4475
|
+
"name": "decodeFromBase64WithPrefix",
|
|
4476
|
+
"declaration": {
|
|
4477
|
+
"name": "decodeFromBase64WithPrefix",
|
|
4478
|
+
"module": "src/encoding/base64/decode.ts"
|
|
4479
|
+
}
|
|
4480
|
+
}
|
|
4481
|
+
]
|
|
4482
|
+
},
|
|
4483
|
+
{
|
|
4484
|
+
"kind": "javascript-module",
|
|
4485
|
+
"path": "src/encoding/base64/encode.ts",
|
|
4486
|
+
"declarations": [
|
|
4487
|
+
{
|
|
4488
|
+
"kind": "function",
|
|
4489
|
+
"name": "encodeToBase64",
|
|
4490
|
+
"return": {
|
|
4491
|
+
"type": {
|
|
4492
|
+
"text": ""
|
|
4493
|
+
}
|
|
4494
|
+
},
|
|
4495
|
+
"parameters": [
|
|
4496
|
+
{
|
|
4497
|
+
"name": "value",
|
|
4498
|
+
"type": {
|
|
4499
|
+
"text": "string | ArrayBuffer"
|
|
4500
|
+
},
|
|
4501
|
+
"description": "The value to encode to base64."
|
|
4502
|
+
}
|
|
4503
|
+
],
|
|
4504
|
+
"description": "Encodes the given value to base64.",
|
|
4505
|
+
"privacy": "public"
|
|
4506
|
+
},
|
|
4507
|
+
{
|
|
4508
|
+
"kind": "function",
|
|
4509
|
+
"name": "encodeToBase64WithPrefix",
|
|
4510
|
+
"return": {
|
|
4511
|
+
"type": {
|
|
4512
|
+
"text": ""
|
|
4513
|
+
}
|
|
4514
|
+
},
|
|
4515
|
+
"parameters": [
|
|
4516
|
+
{
|
|
4517
|
+
"name": "value",
|
|
4518
|
+
"type": {
|
|
4519
|
+
"text": "string | ArrayBuffer"
|
|
4520
|
+
},
|
|
4521
|
+
"description": "The value to encode to base64."
|
|
4522
|
+
}
|
|
4523
|
+
],
|
|
4524
|
+
"description": "Encodes the given value with a prefix to base64.",
|
|
4525
|
+
"privacy": "public"
|
|
4526
|
+
}
|
|
4527
|
+
],
|
|
4528
|
+
"exports": [
|
|
4529
|
+
{
|
|
4530
|
+
"kind": "js",
|
|
4531
|
+
"name": "encodeToBase64",
|
|
4532
|
+
"declaration": {
|
|
4533
|
+
"name": "encodeToBase64",
|
|
4534
|
+
"module": "src/encoding/base64/encode.ts"
|
|
4535
|
+
}
|
|
4536
|
+
},
|
|
4537
|
+
{
|
|
4538
|
+
"kind": "js",
|
|
4539
|
+
"name": "encodeToBase64WithPrefix",
|
|
4540
|
+
"declaration": {
|
|
4541
|
+
"name": "encodeToBase64WithPrefix",
|
|
4542
|
+
"module": "src/encoding/base64/encode.ts"
|
|
4543
|
+
}
|
|
4544
|
+
}
|
|
4545
|
+
]
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
"kind": "javascript-module",
|
|
4549
|
+
"path": "src/encoding/base64/index.ts",
|
|
4550
|
+
"declarations": [],
|
|
4551
|
+
"exports": [
|
|
4552
|
+
{
|
|
4553
|
+
"kind": "js",
|
|
4554
|
+
"name": "*",
|
|
4555
|
+
"declaration": {
|
|
4556
|
+
"name": "*",
|
|
4557
|
+
"package": "./decode"
|
|
4558
|
+
}
|
|
4559
|
+
},
|
|
4560
|
+
{
|
|
4561
|
+
"kind": "js",
|
|
4562
|
+
"name": "*",
|
|
4563
|
+
"declaration": {
|
|
4564
|
+
"name": "*",
|
|
4565
|
+
"package": "./encode"
|
|
4566
|
+
}
|
|
4567
|
+
}
|
|
4568
|
+
]
|
|
4569
|
+
},
|
|
4570
4570
|
{
|
|
4571
4571
|
"kind": "javascript-module",
|
|
4572
4572
|
"path": "src/mappers/dto/index.ts",
|