@genesislcap/foundation-utils 14.22.1 → 14.23.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 +286 -169
- package/dist/dts/data/inMemoryDatabase.d.ts +17 -0
- package/dist/dts/data/inMemoryDatabase.d.ts.map +1 -1
- package/dist/dts/directives/sync/sync.d.ts +16 -0
- package/dist/dts/directives/sync/sync.d.ts.map +1 -1
- package/dist/dts/directives/when-else/when-else.d.ts +1 -1
- package/dist/dts/env/is-dev.d.ts +4 -0
- package/dist/dts/env/is-dev.d.ts.map +1 -1
- package/dist/dts/env/variables.d.ts +37 -0
- package/dist/dts/env/variables.d.ts.map +1 -1
- package/dist/dts/formatters/datetime.d.ts +2 -2
- package/dist/dts/logger/logger.d.ts +29 -3
- package/dist/dts/logger/logger.d.ts.map +1 -1
- package/dist/dts/mappers/dto/serverRow.d.ts +46 -14
- package/dist/dts/mappers/dto/serverRow.d.ts.map +1 -1
- package/dist/dts/mappers/dto/types.d.ts +3 -0
- package/dist/dts/mappers/dto/types.d.ts.map +1 -1
- package/dist/dts/mixins/lifecycle/lifecycle.d.ts +11 -5
- package/dist/dts/mixins/lifecycle/lifecycle.d.ts.map +1 -1
- package/dist/dts/mixins/pendingState/pendingState.d.ts +55 -9
- package/dist/dts/mixins/pendingState/pendingState.d.ts.map +1 -1
- package/dist/dts/observer/observer.d.ts +19 -4
- package/dist/dts/observer/observer.d.ts.map +1 -1
- package/dist/dts/resource/types.d.ts +2 -0
- package/dist/dts/resource/types.d.ts.map +1 -1
- package/dist/dts/serializers/json/json.d.ts +28 -0
- package/dist/dts/serializers/json/json.d.ts.map +1 -1
- package/dist/dts/styles/color.d.ts +4 -0
- package/dist/dts/styles/color.d.ts.map +1 -1
- package/dist/dts/styles/dom.d.ts +13 -0
- package/dist/dts/styles/dom.d.ts.map +1 -1
- package/dist/dts/styles/slotted-styles.d.ts +13 -0
- package/dist/dts/styles/slotted-styles.d.ts.map +1 -1
- package/dist/dts/styles/typography.d.ts +27 -1
- package/dist/dts/styles/typography.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +11 -0
- package/dist/dts/uuid/uuid.d.ts +22 -3
- package/dist/dts/uuid/uuid.d.ts.map +1 -1
- package/dist/dts/window/window.d.ts +27 -0
- package/dist/dts/window/window.d.ts.map +1 -1
- package/dist/esm/data/inMemoryDatabase.js +1 -0
- package/dist/esm/directives/sync/sync.js +8 -0
- package/dist/esm/directives/when-else/when-else.js +1 -1
- package/dist/esm/env/is-dev.js +4 -0
- package/dist/esm/env/variables.js +37 -0
- package/dist/esm/formatters/datetime.js +2 -2
- package/dist/esm/logger/logger.js +11 -0
- package/dist/esm/mappers/dto/serverRow.js +20 -0
- package/dist/esm/mixins/pendingState/pendingState.js +37 -1
- package/dist/esm/observer/observer.js +5 -1
- package/dist/esm/resource/types.js +1 -0
- package/dist/esm/serializers/json/json.js +14 -0
- package/dist/esm/styles/color.js +11 -1
- package/dist/esm/styles/dom.js +13 -0
- package/dist/esm/styles/slotted-styles.js +13 -0
- package/dist/esm/styles/typography.js +26 -0
- package/dist/esm/uuid/uuid.js +20 -11
- package/dist/esm/window/window.js +27 -0
- package/dist/foundation-utils.api.json +10996 -0
- package/dist/foundation-utils.d.ts +1462 -0
- package/docs/api/foundation-utils.activecolorscheme.md +13 -0
- package/docs/api/foundation-utils.api_host.md +18 -0
- package/docs/api/foundation-utils.assuredesignsystem.md +23 -0
- package/docs/api/foundation-utils.constructablelifecyclehandler.md +12 -0
- package/docs/api/foundation-utils.constructablependingstate.md +13 -0
- package/docs/api/foundation-utils.conversiontype.md +13 -0
- package/docs/api/foundation-utils.createlogger.md +27 -0
- package/docs/api/foundation-utils.createobserver.md +13 -0
- package/docs/api/foundation-utils.database.create.md +22 -0
- package/docs/api/foundation-utils.database.delete.md +22 -0
- package/docs/api/foundation-utils.database.isworking.md +11 -0
- package/docs/api/foundation-utils.database.md +32 -0
- package/docs/api/foundation-utils.database.onafterupdate.md +22 -0
- package/docs/api/foundation-utils.database.onbeforeupdate.md +22 -0
- package/docs/api/foundation-utils.database.read.md +22 -0
- package/docs/api/foundation-utils.database.update.md +23 -0
- package/docs/api/foundation-utils.database.visit.md +22 -0
- package/docs/api/foundation-utils.databaseaccessresult.access.md +18 -0
- package/docs/api/foundation-utils.databaseaccessresult.access.value.md +11 -0
- package/docs/api/foundation-utils.databaseaccessresult.create.md +13 -0
- package/docs/api/foundation-utils.databaseaccessresult.delete.id.md +11 -0
- package/docs/api/foundation-utils.databaseaccessresult.delete.md +19 -0
- package/docs/api/foundation-utils.databaseaccessresult.delete.success.md +11 -0
- package/docs/api/foundation-utils.databaseaccessresult.md +24 -0
- package/docs/api/foundation-utils.databaseaccessresult.read.md +13 -0
- package/docs/api/foundation-utils.databaseaccessresult.update.md +13 -0
- package/docs/api/foundation-utils.databaseevent.afterupdate.md +13 -0
- package/docs/api/foundation-utils.databaseevent.beforeupdate.md +19 -0
- package/docs/api/foundation-utils.databaseevent.beforeupdate.newvalue.md +11 -0
- package/docs/api/foundation-utils.databaseevent.md +22 -0
- package/docs/api/foundation-utils.databaseevent.update.md +18 -0
- package/docs/api/foundation-utils.databaseevent.update.value.md +11 -0
- package/docs/api/foundation-utils.databaserecord.id.md +11 -0
- package/docs/api/foundation-utils.databaserecord.md +20 -0
- package/docs/api/foundation-utils.default_organisation.md +18 -0
- package/docs/api/foundation-utils.default_password.md +18 -0
- package/docs/api/foundation-utils.default_user.md +18 -0
- package/docs/api/foundation-utils.defaulteventmap.md +13 -0
- package/docs/api/foundation-utils.defaultloggeroptions.md +13 -0
- package/docs/api/foundation-utils.defaultserverrowdtomapper.fromdto.md +13 -0
- package/docs/api/foundation-utils.defaultserverrowdtomapper.md +22 -0
- package/docs/api/foundation-utils.defaultserverrowdtomapper.todto.md +13 -0
- package/docs/api/foundation-utils.designsystemmodule.md +19 -0
- package/docs/api/foundation-utils.designsystemmodule.providedesignsystem.md +23 -0
- package/docs/api/foundation-utils.designsystemresource.md +14 -0
- package/docs/api/foundation-utils.dtomapper.fromargs.md +11 -0
- package/docs/api/foundation-utils.dtomapper.fromdto.md +11 -0
- package/docs/api/foundation-utils.dtomapper.md +21 -0
- package/docs/api/foundation-utils.dtomapper.todto.md +11 -0
- package/docs/api/foundation-utils.eventname.md +13 -0
- package/docs/api/foundation-utils.fontstyle.md +21 -0
- package/docs/api/foundation-utils.fontweight.md +25 -0
- package/docs/api/foundation-utils.force_http.md +18 -0
- package/docs/api/foundation-utils.formatdatetimestamp.md +24 -0
- package/docs/api/foundation-utils.formatdatetimetimestamp.md +24 -0
- package/docs/api/foundation-utils.formattimestamp.md +25 -0
- package/docs/api/foundation-utils.getfontmixin.md +13 -0
- package/docs/api/foundation-utils.http_config.md +18 -0
- package/docs/api/foundation-utils.iniframe.md +13 -0
- package/docs/api/foundation-utils.inmemorydatabase._constructor_.md +20 -0
- package/docs/api/foundation-utils.inmemorydatabase.create.md +22 -0
- package/docs/api/foundation-utils.inmemorydatabase.delete.md +22 -0
- package/docs/api/foundation-utils.inmemorydatabase.isworking.md +11 -0
- package/docs/api/foundation-utils.inmemorydatabase.md +39 -0
- package/docs/api/foundation-utils.inmemorydatabase.onafterupdate.md +22 -0
- package/docs/api/foundation-utils.inmemorydatabase.onbeforeupdate.md +22 -0
- package/docs/api/foundation-utils.inmemorydatabase.read.md +22 -0
- package/docs/api/foundation-utils.inmemorydatabase.update.md +23 -0
- package/docs/api/foundation-utils.inmemorydatabase.visit.md +22 -0
- package/docs/api/foundation-utils.insertdocumentcssrule.md +13 -0
- package/docs/api/foundation-utils.insertdocumentlink.md +13 -0
- package/docs/api/foundation-utils.insymphonydesktop.md +13 -0
- package/docs/api/foundation-utils.isdev.md +13 -0
- package/docs/api/foundation-utils.jsonserializer.deserialize.md +26 -0
- package/docs/api/foundation-utils.jsonserializer.deserialize_1.md +26 -0
- package/docs/api/foundation-utils.jsonserializer.deserialize_2.md +26 -0
- package/docs/api/foundation-utils.jsonserializer.md +13 -0
- package/docs/api/foundation-utils.jsonserializer.serialize.md +26 -0
- package/docs/api/foundation-utils.layoutcachedocument.md +13 -0
- package/docs/api/foundation-utils.lifecyclemixin.md +342 -0
- package/docs/api/foundation-utils.listener.md +13 -0
- package/docs/api/foundation-utils.loadfontfaces.md +13 -0
- package/docs/api/foundation-utils.logger.deprecated.md +45 -0
- package/docs/api/foundation-utils.logger.md +25 -0
- package/docs/api/foundation-utils.loggeroptions.md +15 -0
- package/docs/api/foundation-utils.md +111 -0
- package/docs/api/foundation-utils.observer.md +21 -0
- package/docs/api/foundation-utils.observer.publish.md +11 -0
- package/docs/api/foundation-utils.observer.subscribe.md +11 -0
- package/docs/api/foundation-utils.openpopup.md +13 -0
- package/docs/api/foundation-utils.pendingstate.md +334 -0
- package/docs/api/foundation-utils.pendingstateerrorevent.md +13 -0
- package/docs/api/foundation-utils.pendingstateevent.md +13 -0
- package/docs/api/foundation-utils.pendingstateevents.md +21 -0
- package/docs/api/foundation-utils.popup_default_height.md +13 -0
- package/docs/api/foundation-utils.popup_default_width.md +13 -0
- package/docs/api/foundation-utils.publish.md +13 -0
- package/docs/api/foundation-utils.renderonchange.md +51 -0
- package/docs/api/foundation-utils.resourcetype.md +16 -0
- package/docs/api/foundation-utils.respondtovisibility.md +13 -0
- package/docs/api/foundation-utils.serverrowdto.md +18 -0
- package/docs/api/foundation-utils.serverrowdtomapper.md +13 -0
- package/docs/api/foundation-utils.serverrowentity.md +18 -0
- package/docs/api/foundation-utils.slottedstyles.md +27 -0
- package/docs/api/foundation-utils.slottedstyles.styles.md +13 -0
- package/docs/api/foundation-utils.slottedstyles.styleschanged.md +25 -0
- package/docs/api/foundation-utils.socket_ext.md +18 -0
- package/docs/api/foundation-utils.subscribe.md +15 -0
- package/docs/api/foundation-utils.sync.md +27 -0
- package/docs/api/foundation-utils.typerampvalues.md +22 -0
- package/docs/api/foundation-utils.uuid.createid.md +26 -0
- package/docs/api/foundation-utils.uuid.createremoteid.md +26 -0
- package/docs/api/foundation-utils.uuid.md +13 -0
- package/docs/api/foundation-utils.uuidconfig.md +13 -0
- package/docs/api/foundation-utils.whenelse.md +26 -0
- package/docs/api/index.md +12 -0
- package/docs/api-report.md +1075 -0
- package/package.json +6 -9
|
@@ -333,59 +333,6 @@
|
|
|
333
333
|
}
|
|
334
334
|
]
|
|
335
335
|
},
|
|
336
|
-
{
|
|
337
|
-
"kind": "javascript-module",
|
|
338
|
-
"path": "src/decorators/index.ts",
|
|
339
|
-
"declarations": [],
|
|
340
|
-
"exports": [
|
|
341
|
-
{
|
|
342
|
-
"kind": "js",
|
|
343
|
-
"name": "*",
|
|
344
|
-
"declaration": {
|
|
345
|
-
"name": "*",
|
|
346
|
-
"package": "./renderOnChange"
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
]
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"kind": "javascript-module",
|
|
353
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
354
|
-
"declarations": [
|
|
355
|
-
{
|
|
356
|
-
"kind": "function",
|
|
357
|
-
"name": "renderOnChange",
|
|
358
|
-
"parameters": [
|
|
359
|
-
{
|
|
360
|
-
"name": "target",
|
|
361
|
-
"type": {
|
|
362
|
-
"text": "FASTElement & { render(): void }"
|
|
363
|
-
},
|
|
364
|
-
"description": "The target to define the property change handler on."
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"name": "name",
|
|
368
|
-
"type": {
|
|
369
|
-
"text": "string"
|
|
370
|
-
},
|
|
371
|
-
"description": "The property name."
|
|
372
|
-
}
|
|
373
|
-
],
|
|
374
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
375
|
-
"privacy": "public"
|
|
376
|
-
}
|
|
377
|
-
],
|
|
378
|
-
"exports": [
|
|
379
|
-
{
|
|
380
|
-
"kind": "js",
|
|
381
|
-
"name": "renderOnChange",
|
|
382
|
-
"declaration": {
|
|
383
|
-
"name": "renderOnChange",
|
|
384
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
]
|
|
388
|
-
},
|
|
389
336
|
{
|
|
390
337
|
"kind": "javascript-module",
|
|
391
338
|
"path": "src/design-system/design-system.ts",
|
|
@@ -458,6 +405,59 @@
|
|
|
458
405
|
}
|
|
459
406
|
]
|
|
460
407
|
},
|
|
408
|
+
{
|
|
409
|
+
"kind": "javascript-module",
|
|
410
|
+
"path": "src/decorators/index.ts",
|
|
411
|
+
"declarations": [],
|
|
412
|
+
"exports": [
|
|
413
|
+
{
|
|
414
|
+
"kind": "js",
|
|
415
|
+
"name": "*",
|
|
416
|
+
"declaration": {
|
|
417
|
+
"name": "*",
|
|
418
|
+
"package": "./renderOnChange"
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
]
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"kind": "javascript-module",
|
|
425
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
426
|
+
"declarations": [
|
|
427
|
+
{
|
|
428
|
+
"kind": "function",
|
|
429
|
+
"name": "renderOnChange",
|
|
430
|
+
"parameters": [
|
|
431
|
+
{
|
|
432
|
+
"name": "target",
|
|
433
|
+
"type": {
|
|
434
|
+
"text": "FASTElement & { render(): void }"
|
|
435
|
+
},
|
|
436
|
+
"description": "The target to define the property change handler on."
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "name",
|
|
440
|
+
"type": {
|
|
441
|
+
"text": "string"
|
|
442
|
+
},
|
|
443
|
+
"description": "The property name."
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
447
|
+
"privacy": "public"
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
"exports": [
|
|
451
|
+
{
|
|
452
|
+
"kind": "js",
|
|
453
|
+
"name": "renderOnChange",
|
|
454
|
+
"declaration": {
|
|
455
|
+
"name": "renderOnChange",
|
|
456
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
]
|
|
460
|
+
},
|
|
461
461
|
{
|
|
462
462
|
"kind": "javascript-module",
|
|
463
463
|
"path": "src/env/index.ts",
|
|
@@ -487,7 +487,9 @@
|
|
|
487
487
|
"declarations": [
|
|
488
488
|
{
|
|
489
489
|
"kind": "function",
|
|
490
|
-
"name": "isDev"
|
|
490
|
+
"name": "isDev",
|
|
491
|
+
"description": "Determines if the current environment is a development environment.",
|
|
492
|
+
"privacy": "public"
|
|
491
493
|
}
|
|
492
494
|
],
|
|
493
495
|
"exports": [
|
|
@@ -517,7 +519,9 @@
|
|
|
517
519
|
"name": "_API_HOST",
|
|
518
520
|
"type": {
|
|
519
521
|
"text": "string"
|
|
520
|
-
}
|
|
522
|
+
},
|
|
523
|
+
"description": "The Genesis Server (host0 to establish a connection (WebSocket or HTTP)).\nExample: wss://localhost:9064",
|
|
524
|
+
"privacy": "public"
|
|
521
525
|
},
|
|
522
526
|
{
|
|
523
527
|
"kind": "variable",
|
|
@@ -531,7 +535,9 @@
|
|
|
531
535
|
"name": "_FORCE_HTTP",
|
|
532
536
|
"type": {
|
|
533
537
|
"text": "string"
|
|
534
|
-
}
|
|
538
|
+
},
|
|
539
|
+
"description": "The path to a JSON config file for the HTTP mode.",
|
|
540
|
+
"privacy": "public"
|
|
535
541
|
},
|
|
536
542
|
{
|
|
537
543
|
"kind": "variable",
|
|
@@ -545,7 +551,9 @@
|
|
|
545
551
|
"name": "_HTTP_CONFIG",
|
|
546
552
|
"type": {
|
|
547
553
|
"text": "string"
|
|
548
|
-
}
|
|
554
|
+
},
|
|
555
|
+
"description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
|
|
556
|
+
"privacy": "public"
|
|
549
557
|
},
|
|
550
558
|
{
|
|
551
559
|
"kind": "variable",
|
|
@@ -559,7 +567,9 @@
|
|
|
559
567
|
"name": "_DEFAULT_ORGANISATION",
|
|
560
568
|
"type": {
|
|
561
569
|
"text": "string"
|
|
562
|
-
}
|
|
570
|
+
},
|
|
571
|
+
"description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
572
|
+
"privacy": "public"
|
|
563
573
|
},
|
|
564
574
|
{
|
|
565
575
|
"kind": "variable",
|
|
@@ -573,7 +583,9 @@
|
|
|
573
583
|
"name": "_DEFAULT_PASSWORD",
|
|
574
584
|
"type": {
|
|
575
585
|
"text": "string"
|
|
576
|
-
}
|
|
586
|
+
},
|
|
587
|
+
"description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
588
|
+
"privacy": "public"
|
|
577
589
|
},
|
|
578
590
|
{
|
|
579
591
|
"kind": "variable",
|
|
@@ -587,7 +599,9 @@
|
|
|
587
599
|
"name": "_DEFAULT_USER",
|
|
588
600
|
"type": {
|
|
589
601
|
"text": "string"
|
|
590
|
-
}
|
|
602
|
+
},
|
|
603
|
+
"description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
604
|
+
"privacy": "public"
|
|
591
605
|
},
|
|
592
606
|
{
|
|
593
607
|
"kind": "variable",
|
|
@@ -601,7 +615,9 @@
|
|
|
601
615
|
"name": "_SOCKET_EXT",
|
|
602
616
|
"type": {
|
|
603
617
|
"text": "string"
|
|
604
|
-
}
|
|
618
|
+
},
|
|
619
|
+
"description": "The sub-path used for WebSocket connections.\nExample: API_HOST + '/' + SOCKET_EXT - wss://localhost:9064/gwf.",
|
|
620
|
+
"privacy": "public"
|
|
605
621
|
}
|
|
606
622
|
],
|
|
607
623
|
"exports": [
|
|
@@ -800,14 +816,16 @@
|
|
|
800
816
|
"type": {
|
|
801
817
|
"text": "LoggerOptions"
|
|
802
818
|
},
|
|
803
|
-
"default": "{\n level: logLevelDebug,\n}"
|
|
819
|
+
"default": "{\n level: logLevelDebug,\n}",
|
|
820
|
+
"description": "The default logger options.",
|
|
821
|
+
"privacy": "public"
|
|
804
822
|
},
|
|
805
823
|
{
|
|
806
824
|
"kind": "function",
|
|
807
825
|
"name": "createLogger",
|
|
808
826
|
"return": {
|
|
809
827
|
"type": {
|
|
810
|
-
"text": "
|
|
828
|
+
"text": ""
|
|
811
829
|
}
|
|
812
830
|
},
|
|
813
831
|
"parameters": [
|
|
@@ -815,16 +833,20 @@
|
|
|
815
833
|
"name": "name",
|
|
816
834
|
"type": {
|
|
817
835
|
"text": "string"
|
|
818
|
-
}
|
|
836
|
+
},
|
|
837
|
+
"description": "The name to give the logger."
|
|
819
838
|
},
|
|
820
839
|
{
|
|
821
840
|
"name": "options",
|
|
822
841
|
"default": "defaultLoggerOptions",
|
|
823
842
|
"type": {
|
|
824
843
|
"text": "LoggerOptions"
|
|
825
|
-
}
|
|
844
|
+
},
|
|
845
|
+
"description": "The options to use when creating the logger."
|
|
826
846
|
}
|
|
827
|
-
]
|
|
847
|
+
],
|
|
848
|
+
"description": "Creates a logger with the given name and options.",
|
|
849
|
+
"privacy": "public"
|
|
828
850
|
}
|
|
829
851
|
],
|
|
830
852
|
"exports": [
|
|
@@ -892,46 +914,6 @@
|
|
|
892
914
|
}
|
|
893
915
|
]
|
|
894
916
|
},
|
|
895
|
-
{
|
|
896
|
-
"kind": "javascript-module",
|
|
897
|
-
"path": "src/resource/index.ts",
|
|
898
|
-
"declarations": [],
|
|
899
|
-
"exports": [
|
|
900
|
-
{
|
|
901
|
-
"kind": "js",
|
|
902
|
-
"name": "*",
|
|
903
|
-
"declaration": {
|
|
904
|
-
"name": "*",
|
|
905
|
-
"package": "./types"
|
|
906
|
-
}
|
|
907
|
-
}
|
|
908
|
-
]
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
"kind": "javascript-module",
|
|
912
|
-
"path": "src/resource/types.ts",
|
|
913
|
-
"declarations": [
|
|
914
|
-
{
|
|
915
|
-
"kind": "variable",
|
|
916
|
-
"name": "ResourceType",
|
|
917
|
-
"type": {
|
|
918
|
-
"text": "{\n local: 'local',\n remote: 'remote',\n}"
|
|
919
|
-
},
|
|
920
|
-
"default": "{\n local: 'local',\n remote: 'remote',\n}",
|
|
921
|
-
"privacy": "public"
|
|
922
|
-
}
|
|
923
|
-
],
|
|
924
|
-
"exports": [
|
|
925
|
-
{
|
|
926
|
-
"kind": "js",
|
|
927
|
-
"name": "ResourceType",
|
|
928
|
-
"declaration": {
|
|
929
|
-
"name": "ResourceType",
|
|
930
|
-
"module": "src/resource/types.ts"
|
|
931
|
-
}
|
|
932
|
-
}
|
|
933
|
-
]
|
|
934
|
-
},
|
|
935
917
|
{
|
|
936
918
|
"kind": "javascript-module",
|
|
937
919
|
"path": "src/observer/index.ts",
|
|
@@ -958,7 +940,9 @@
|
|
|
958
940
|
"type": {
|
|
959
941
|
"text": "Observer<EventType>"
|
|
960
942
|
}
|
|
961
|
-
}
|
|
943
|
+
},
|
|
944
|
+
"description": "Creates a new event observer instance.",
|
|
945
|
+
"privacy": "public"
|
|
962
946
|
},
|
|
963
947
|
{
|
|
964
948
|
"kind": "function",
|
|
@@ -976,7 +960,7 @@
|
|
|
976
960
|
"type": {
|
|
977
961
|
"text": "(arg0: boolean) => any"
|
|
978
962
|
},
|
|
979
|
-
"description": "
|
|
963
|
+
"description": "any function called when the visibility changes"
|
|
980
964
|
}
|
|
981
965
|
],
|
|
982
966
|
"description": "Setup an `IntersectionObserver` which will activate a callback function when an element becomes visible on screen",
|
|
@@ -1002,6 +986,47 @@
|
|
|
1002
986
|
}
|
|
1003
987
|
]
|
|
1004
988
|
},
|
|
989
|
+
{
|
|
990
|
+
"kind": "javascript-module",
|
|
991
|
+
"path": "src/resource/index.ts",
|
|
992
|
+
"declarations": [],
|
|
993
|
+
"exports": [
|
|
994
|
+
{
|
|
995
|
+
"kind": "js",
|
|
996
|
+
"name": "*",
|
|
997
|
+
"declaration": {
|
|
998
|
+
"name": "*",
|
|
999
|
+
"package": "./types"
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
]
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"kind": "javascript-module",
|
|
1006
|
+
"path": "src/resource/types.ts",
|
|
1007
|
+
"declarations": [
|
|
1008
|
+
{
|
|
1009
|
+
"kind": "variable",
|
|
1010
|
+
"name": "ResourceType",
|
|
1011
|
+
"type": {
|
|
1012
|
+
"text": "{\n local: 'local',\n remote: 'remote',\n}"
|
|
1013
|
+
},
|
|
1014
|
+
"default": "{\n local: 'local',\n remote: 'remote',\n}",
|
|
1015
|
+
"description": "An object that defines two resource types: \"local\" and \"remote\".",
|
|
1016
|
+
"privacy": "public"
|
|
1017
|
+
}
|
|
1018
|
+
],
|
|
1019
|
+
"exports": [
|
|
1020
|
+
{
|
|
1021
|
+
"kind": "js",
|
|
1022
|
+
"name": "ResourceType",
|
|
1023
|
+
"declaration": {
|
|
1024
|
+
"name": "ResourceType",
|
|
1025
|
+
"module": "src/resource/types.ts"
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
]
|
|
1029
|
+
},
|
|
1005
1030
|
{
|
|
1006
1031
|
"kind": "javascript-module",
|
|
1007
1032
|
"path": "src/serializers/index.ts",
|
|
@@ -1023,7 +1048,9 @@
|
|
|
1023
1048
|
"declarations": [
|
|
1024
1049
|
{
|
|
1025
1050
|
"kind": "variable",
|
|
1026
|
-
"name": "activeColorScheme"
|
|
1051
|
+
"name": "activeColorScheme",
|
|
1052
|
+
"description": "A design token that represents the active color scheme (light or dark).",
|
|
1053
|
+
"privacy": "public"
|
|
1027
1054
|
}
|
|
1028
1055
|
],
|
|
1029
1056
|
"exports": [
|
|
@@ -1046,7 +1073,7 @@
|
|
|
1046
1073
|
"name": "insertDocumentCSSRule",
|
|
1047
1074
|
"return": {
|
|
1048
1075
|
"type": {
|
|
1049
|
-
"text": "
|
|
1076
|
+
"text": ""
|
|
1050
1077
|
}
|
|
1051
1078
|
},
|
|
1052
1079
|
"parameters": [
|
|
@@ -1054,15 +1081,19 @@
|
|
|
1054
1081
|
"name": "cssRule",
|
|
1055
1082
|
"type": {
|
|
1056
1083
|
"text": "string"
|
|
1057
|
-
}
|
|
1084
|
+
},
|
|
1085
|
+
"description": "The CSS rule to insert."
|
|
1058
1086
|
},
|
|
1059
1087
|
{
|
|
1060
1088
|
"name": "styleElementId",
|
|
1061
1089
|
"type": {
|
|
1062
1090
|
"text": "string"
|
|
1063
|
-
}
|
|
1091
|
+
},
|
|
1092
|
+
"description": "The ID of the style element to use or create."
|
|
1064
1093
|
}
|
|
1065
|
-
]
|
|
1094
|
+
],
|
|
1095
|
+
"description": "Inserts a CSS rule into the document by creating a new style element or using an existing one with the specified ID.\nReturns a function that can be called to remove the rule from the document.",
|
|
1096
|
+
"privacy": "public"
|
|
1066
1097
|
},
|
|
1067
1098
|
{
|
|
1068
1099
|
"kind": "function",
|
|
@@ -1072,9 +1103,12 @@
|
|
|
1072
1103
|
"name": "href",
|
|
1073
1104
|
"type": {
|
|
1074
1105
|
"text": "string"
|
|
1075
|
-
}
|
|
1106
|
+
},
|
|
1107
|
+
"description": "The URL of the CSS file to insert."
|
|
1076
1108
|
}
|
|
1077
|
-
]
|
|
1109
|
+
],
|
|
1110
|
+
"description": "Inserts a CSS link into the document if it doesn't already exist.",
|
|
1111
|
+
"privacy": "public"
|
|
1078
1112
|
}
|
|
1079
1113
|
],
|
|
1080
1114
|
"exports": [
|
|
@@ -1141,7 +1175,7 @@
|
|
|
1141
1175
|
"declarations": [
|
|
1142
1176
|
{
|
|
1143
1177
|
"kind": "class",
|
|
1144
|
-
"description": "",
|
|
1178
|
+
"description": "A custom element that encapsulates a set of styles that can be applied to slotted elements.",
|
|
1145
1179
|
"name": "SlottedStyles",
|
|
1146
1180
|
"members": [
|
|
1147
1181
|
{
|
|
@@ -1149,7 +1183,8 @@
|
|
|
1149
1183
|
"name": "styles",
|
|
1150
1184
|
"type": {
|
|
1151
1185
|
"text": "ElementStyles"
|
|
1152
|
-
}
|
|
1186
|
+
},
|
|
1187
|
+
"description": "The styles to apply to slotted elements."
|
|
1153
1188
|
},
|
|
1154
1189
|
{
|
|
1155
1190
|
"kind": "method",
|
|
@@ -1164,15 +1199,18 @@
|
|
|
1164
1199
|
"name": "prev",
|
|
1165
1200
|
"type": {
|
|
1166
1201
|
"text": "ElementStyles"
|
|
1167
|
-
}
|
|
1202
|
+
},
|
|
1203
|
+
"description": "The previous value of the `styles` property."
|
|
1168
1204
|
},
|
|
1169
1205
|
{
|
|
1170
1206
|
"name": "next",
|
|
1171
1207
|
"type": {
|
|
1172
1208
|
"text": "ElementStyles"
|
|
1173
|
-
}
|
|
1209
|
+
},
|
|
1210
|
+
"description": "The new value of the `styles` property."
|
|
1174
1211
|
}
|
|
1175
|
-
]
|
|
1212
|
+
],
|
|
1213
|
+
"description": "Called when the `styles` property changes.\nRemoves the previous styles from the parent element's FAST controller and adds the new styles."
|
|
1176
1214
|
}
|
|
1177
1215
|
],
|
|
1178
1216
|
"superclass": {
|
|
@@ -1209,40 +1247,65 @@
|
|
|
1209
1247
|
{
|
|
1210
1248
|
"kind": "function",
|
|
1211
1249
|
"name": "loadFontFaces",
|
|
1250
|
+
"return": {
|
|
1251
|
+
"type": {
|
|
1252
|
+
"text": "void"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1212
1255
|
"parameters": [
|
|
1213
1256
|
{
|
|
1214
|
-
"name": "fontFaceRules"
|
|
1257
|
+
"name": "fontFaceRules",
|
|
1258
|
+
"type": {
|
|
1259
|
+
"text": "string"
|
|
1260
|
+
},
|
|
1261
|
+
"description": "The CSS rules for the font faces."
|
|
1215
1262
|
},
|
|
1216
1263
|
{
|
|
1217
|
-
"name": "styleElementId"
|
|
1264
|
+
"name": "styleElementId",
|
|
1265
|
+
"type": {
|
|
1266
|
+
"text": "string"
|
|
1267
|
+
},
|
|
1268
|
+
"description": "The ID of the style element to insert into the document."
|
|
1218
1269
|
}
|
|
1219
|
-
]
|
|
1270
|
+
],
|
|
1271
|
+
"description": "Loads font faces by inserting a style element with the specified font face rules into the document.",
|
|
1272
|
+
"privacy": "public"
|
|
1220
1273
|
},
|
|
1221
1274
|
{
|
|
1222
1275
|
"kind": "function",
|
|
1223
1276
|
"name": "getFontMixin",
|
|
1277
|
+
"return": {
|
|
1278
|
+
"type": {
|
|
1279
|
+
"text": ""
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1224
1282
|
"parameters": [
|
|
1225
1283
|
{
|
|
1226
1284
|
"name": "family",
|
|
1227
1285
|
"type": {
|
|
1228
1286
|
"text": "string"
|
|
1229
|
-
}
|
|
1287
|
+
},
|
|
1288
|
+
"description": "The font family."
|
|
1230
1289
|
},
|
|
1231
1290
|
{
|
|
1232
1291
|
"name": "style",
|
|
1233
1292
|
"default": "FontStyle.Normal",
|
|
1234
1293
|
"type": {
|
|
1235
1294
|
"text": "FontStyle"
|
|
1236
|
-
}
|
|
1295
|
+
},
|
|
1296
|
+
"description": "Optional. The font style. Defaults to FontStyle.Normal."
|
|
1237
1297
|
},
|
|
1238
1298
|
{
|
|
1239
1299
|
"name": "weight",
|
|
1240
1300
|
"default": "FontWeight.Regular",
|
|
1241
1301
|
"type": {
|
|
1242
1302
|
"text": "FontWeight"
|
|
1243
|
-
}
|
|
1303
|
+
},
|
|
1304
|
+
"description": "Optional. The font weight. Defaults to FontWeight.Regular."
|
|
1244
1305
|
}
|
|
1245
|
-
]
|
|
1306
|
+
],
|
|
1307
|
+
"description": "Generates a CSS mixin for the specified font family, style, and weight.",
|
|
1308
|
+
"privacy": "public"
|
|
1246
1309
|
},
|
|
1247
1310
|
{
|
|
1248
1311
|
"kind": "variable",
|
|
@@ -1250,7 +1313,9 @@
|
|
|
1250
1313
|
"type": {
|
|
1251
1314
|
"text": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}"
|
|
1252
1315
|
},
|
|
1253
|
-
"default": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}"
|
|
1316
|
+
"default": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}",
|
|
1317
|
+
"description": "An object containing type ramp values.",
|
|
1318
|
+
"privacy": "public"
|
|
1254
1319
|
}
|
|
1255
1320
|
],
|
|
1256
1321
|
"exports": [
|
|
@@ -1336,7 +1401,9 @@
|
|
|
1336
1401
|
"declarations": [
|
|
1337
1402
|
{
|
|
1338
1403
|
"kind": "variable",
|
|
1339
|
-
"name": "UUID"
|
|
1404
|
+
"name": "UUID",
|
|
1405
|
+
"description": "A dependency injection token for the UUID interface.",
|
|
1406
|
+
"privacy": "public"
|
|
1340
1407
|
}
|
|
1341
1408
|
],
|
|
1342
1409
|
"exports": [
|
|
@@ -1371,11 +1438,25 @@
|
|
|
1371
1438
|
"declarations": [
|
|
1372
1439
|
{
|
|
1373
1440
|
"kind": "function",
|
|
1374
|
-
"name": "inIFrame"
|
|
1441
|
+
"name": "inIFrame",
|
|
1442
|
+
"return": {
|
|
1443
|
+
"type": {
|
|
1444
|
+
"text": ""
|
|
1445
|
+
}
|
|
1446
|
+
},
|
|
1447
|
+
"description": "Returns a boolean value indicating whether the current window is inside an iframe.",
|
|
1448
|
+
"privacy": "public"
|
|
1375
1449
|
},
|
|
1376
1450
|
{
|
|
1377
1451
|
"kind": "function",
|
|
1378
|
-
"name": "inSymphonyDesktop"
|
|
1452
|
+
"name": "inSymphonyDesktop",
|
|
1453
|
+
"return": {
|
|
1454
|
+
"type": {
|
|
1455
|
+
"text": ""
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
|
|
1459
|
+
"privacy": "public"
|
|
1379
1460
|
},
|
|
1380
1461
|
{
|
|
1381
1462
|
"kind": "variable",
|
|
@@ -1383,7 +1464,9 @@
|
|
|
1383
1464
|
"type": {
|
|
1384
1465
|
"text": "number"
|
|
1385
1466
|
},
|
|
1386
|
-
"default": "483"
|
|
1467
|
+
"default": "483",
|
|
1468
|
+
"description": "The default width (in pixels) for pop-up windows.",
|
|
1469
|
+
"privacy": "public"
|
|
1387
1470
|
},
|
|
1388
1471
|
{
|
|
1389
1472
|
"kind": "variable",
|
|
@@ -1391,39 +1474,52 @@
|
|
|
1391
1474
|
"type": {
|
|
1392
1475
|
"text": "number"
|
|
1393
1476
|
},
|
|
1394
|
-
"default": "600"
|
|
1477
|
+
"default": "600",
|
|
1478
|
+
"description": "The default height (in pixels) for pop-up windows.",
|
|
1479
|
+
"privacy": "public"
|
|
1395
1480
|
},
|
|
1396
1481
|
{
|
|
1397
1482
|
"kind": "function",
|
|
1398
1483
|
"name": "openPopup",
|
|
1484
|
+
"return": {
|
|
1485
|
+
"type": {
|
|
1486
|
+
"text": ""
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1399
1489
|
"parameters": [
|
|
1400
1490
|
{
|
|
1401
1491
|
"name": "urlNavigate",
|
|
1402
1492
|
"type": {
|
|
1403
1493
|
"text": "string"
|
|
1404
|
-
}
|
|
1494
|
+
},
|
|
1495
|
+
"description": "The URL to navigate to."
|
|
1405
1496
|
},
|
|
1406
1497
|
{
|
|
1407
1498
|
"name": "target",
|
|
1408
1499
|
"type": {
|
|
1409
1500
|
"text": "string"
|
|
1410
|
-
}
|
|
1501
|
+
},
|
|
1502
|
+
"description": "The name of the new window."
|
|
1411
1503
|
},
|
|
1412
1504
|
{
|
|
1413
1505
|
"name": "popUpWidth",
|
|
1414
1506
|
"default": "POPUP_DEFAULT_WIDTH",
|
|
1415
1507
|
"type": {
|
|
1416
1508
|
"text": "number"
|
|
1417
|
-
}
|
|
1509
|
+
},
|
|
1510
|
+
"description": "The width of the new window (optional)."
|
|
1418
1511
|
},
|
|
1419
1512
|
{
|
|
1420
1513
|
"name": "popUpHeight",
|
|
1421
1514
|
"default": "POPUP_DEFAULT_HEIGHT",
|
|
1422
1515
|
"type": {
|
|
1423
1516
|
"text": "number"
|
|
1424
|
-
}
|
|
1517
|
+
},
|
|
1518
|
+
"description": "The height of the new window (optional)."
|
|
1425
1519
|
}
|
|
1426
|
-
]
|
|
1520
|
+
],
|
|
1521
|
+
"description": "Opens a new browser window with the specified URL, target, width, and height.",
|
|
1522
|
+
"privacy": "public"
|
|
1427
1523
|
}
|
|
1428
1524
|
],
|
|
1429
1525
|
"exports": [
|
|
@@ -1494,7 +1590,9 @@
|
|
|
1494
1590
|
"type": {
|
|
1495
1591
|
"text": "Map<string, EventName>"
|
|
1496
1592
|
},
|
|
1497
|
-
"default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])"
|
|
1593
|
+
"default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])",
|
|
1594
|
+
"description": "A map that associates specific HTML element tags with their corresponding default event names.",
|
|
1595
|
+
"privacy": "public"
|
|
1498
1596
|
},
|
|
1499
1597
|
{
|
|
1500
1598
|
"kind": "function",
|
|
@@ -1532,7 +1630,9 @@
|
|
|
1532
1630
|
"text": "string"
|
|
1533
1631
|
}
|
|
1534
1632
|
}
|
|
1535
|
-
]
|
|
1633
|
+
],
|
|
1634
|
+
"description": "Creates a synchronization directive that binds a data source to an HTML element,",
|
|
1635
|
+
"privacy": "public"
|
|
1536
1636
|
}
|
|
1537
1637
|
],
|
|
1538
1638
|
"exports": [
|
|
@@ -1604,7 +1704,7 @@
|
|
|
1604
1704
|
"description": "The template or a binding that gets the template to render when the condition is false."
|
|
1605
1705
|
}
|
|
1606
1706
|
],
|
|
1607
|
-
"description": "Directive that allows supplying an \"else\" template to the traditional
|
|
1707
|
+
"description": "Directive that allows supplying an \"else\" template to the traditional https://www.fast.design/docs/api/fast-element.when/#when-function directive",
|
|
1608
1708
|
"privacy": "public"
|
|
1609
1709
|
}
|
|
1610
1710
|
],
|
|
@@ -1648,22 +1748,50 @@
|
|
|
1648
1748
|
"declarations": [
|
|
1649
1749
|
{
|
|
1650
1750
|
"kind": "class",
|
|
1651
|
-
"description": "",
|
|
1751
|
+
"description": "The default `ServerRowDTOMapper`.",
|
|
1652
1752
|
"name": "DefaultServerRowDTOMapper",
|
|
1653
1753
|
"members": [
|
|
1654
1754
|
{
|
|
1655
1755
|
"kind": "field",
|
|
1656
|
-
"name": "fromDTO"
|
|
1756
|
+
"name": "fromDTO",
|
|
1757
|
+
"description": "Converts a server row DTO to an entity.",
|
|
1758
|
+
"parameters": [
|
|
1759
|
+
{
|
|
1760
|
+
"description": "The DTO to convert.",
|
|
1761
|
+
"name": "dto"
|
|
1762
|
+
}
|
|
1763
|
+
],
|
|
1764
|
+
"return": {
|
|
1765
|
+
"type": {
|
|
1766
|
+
"text": ""
|
|
1767
|
+
}
|
|
1768
|
+
},
|
|
1769
|
+
"privacy": "public"
|
|
1657
1770
|
},
|
|
1658
1771
|
{
|
|
1659
1772
|
"kind": "field",
|
|
1660
|
-
"name": "toDTO"
|
|
1773
|
+
"name": "toDTO",
|
|
1774
|
+
"description": "Converts a server row entity to a DTO.",
|
|
1775
|
+
"parameters": [
|
|
1776
|
+
{
|
|
1777
|
+
"description": "The entity to convert.",
|
|
1778
|
+
"name": "entity"
|
|
1779
|
+
}
|
|
1780
|
+
],
|
|
1781
|
+
"return": {
|
|
1782
|
+
"type": {
|
|
1783
|
+
"text": ""
|
|
1784
|
+
}
|
|
1785
|
+
},
|
|
1786
|
+
"privacy": "public"
|
|
1661
1787
|
}
|
|
1662
1788
|
]
|
|
1663
1789
|
},
|
|
1664
1790
|
{
|
|
1665
1791
|
"kind": "variable",
|
|
1666
|
-
"name": "ServerRowDTOMapper"
|
|
1792
|
+
"name": "ServerRowDTOMapper",
|
|
1793
|
+
"description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
|
|
1794
|
+
"privacy": "public"
|
|
1667
1795
|
}
|
|
1668
1796
|
],
|
|
1669
1797
|
"exports": [
|
|
@@ -1819,7 +1947,7 @@
|
|
|
1819
1947
|
"declarations": [
|
|
1820
1948
|
{
|
|
1821
1949
|
"kind": "mixin",
|
|
1822
|
-
"description": "",
|
|
1950
|
+
"description": "The `PendingState` mixin.",
|
|
1823
1951
|
"name": "PendingState",
|
|
1824
1952
|
"members": [
|
|
1825
1953
|
{
|
|
@@ -1829,7 +1957,8 @@
|
|
|
1829
1957
|
"text": "number"
|
|
1830
1958
|
},
|
|
1831
1959
|
"privacy": "public",
|
|
1832
|
-
"default": "0"
|
|
1960
|
+
"default": "0",
|
|
1961
|
+
"description": "The number of promises that are currently pending."
|
|
1833
1962
|
},
|
|
1834
1963
|
{
|
|
1835
1964
|
"kind": "field",
|
|
@@ -1838,7 +1967,8 @@
|
|
|
1838
1967
|
"text": "number"
|
|
1839
1968
|
},
|
|
1840
1969
|
"privacy": "public",
|
|
1841
|
-
"default": "0"
|
|
1970
|
+
"default": "0",
|
|
1971
|
+
"description": "The number of promises that have been resolved."
|
|
1842
1972
|
},
|
|
1843
1973
|
{
|
|
1844
1974
|
"kind": "field",
|
|
@@ -1847,7 +1977,8 @@
|
|
|
1847
1977
|
"text": "boolean"
|
|
1848
1978
|
},
|
|
1849
1979
|
"privacy": "public",
|
|
1850
|
-
"default": "false"
|
|
1980
|
+
"default": "false",
|
|
1981
|
+
"description": "A boolean indicating whether there are any pending children."
|
|
1851
1982
|
},
|
|
1852
1983
|
{
|
|
1853
1984
|
"kind": "field",
|
|
@@ -1856,25 +1987,8 @@
|
|
|
1856
1987
|
"text": "number"
|
|
1857
1988
|
},
|
|
1858
1989
|
"privacy": "public",
|
|
1990
|
+
"description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
|
|
1859
1991
|
"readonly": true
|
|
1860
|
-
},
|
|
1861
|
-
{
|
|
1862
|
-
"kind": "method",
|
|
1863
|
-
"name": "onPendingState",
|
|
1864
|
-
"privacy": "public",
|
|
1865
|
-
"return": {
|
|
1866
|
-
"type": {
|
|
1867
|
-
"text": "Promise<void>"
|
|
1868
|
-
}
|
|
1869
|
-
},
|
|
1870
|
-
"parameters": [
|
|
1871
|
-
{
|
|
1872
|
-
"name": "{ detail }",
|
|
1873
|
-
"type": {
|
|
1874
|
-
"text": "PendingStateEvent"
|
|
1875
|
-
}
|
|
1876
|
-
}
|
|
1877
|
-
]
|
|
1878
1992
|
}
|
|
1879
1993
|
],
|
|
1880
1994
|
"parameters": [
|
|
@@ -1884,7 +1998,8 @@
|
|
|
1884
1998
|
"text": "TBase"
|
|
1885
1999
|
}
|
|
1886
2000
|
}
|
|
1887
|
-
]
|
|
2001
|
+
],
|
|
2002
|
+
"privacy": "public"
|
|
1888
2003
|
}
|
|
1889
2004
|
],
|
|
1890
2005
|
"exports": [
|
|
@@ -1919,7 +2034,9 @@
|
|
|
1919
2034
|
"declarations": [
|
|
1920
2035
|
{
|
|
1921
2036
|
"kind": "variable",
|
|
1922
|
-
"name": "JSONSerializer"
|
|
2037
|
+
"name": "JSONSerializer",
|
|
2038
|
+
"description": "A DI token for the JSON serializer.",
|
|
2039
|
+
"privacy": "public"
|
|
1923
2040
|
}
|
|
1924
2041
|
],
|
|
1925
2042
|
"exports": [
|