@rcsb/rcsb-saguaro-app 2.4.0 → 3.0.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/CHANGELOG.md +14 -3
- package/README.md +2 -2
- package/build/dist/ExternalResources/NcbiData/NcbiSummary.d.ts +1 -1
- package/build/dist/app.js +13 -13
- package/build/dist/app.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
[Semantic Versioning](https://semver.org/)
|
|
4
4
|
|
|
5
|
+
## [3.0.0] - 2021-10-15
|
|
6
|
+
### Minor code refactor
|
|
7
|
+
Changed `setTimeout` calls to 'rxjs' `asyncScheduler`
|
|
8
|
+
### Breaking changes
|
|
9
|
+
- rcsb-saguaro update 2.0.0
|
|
10
|
+
|
|
5
11
|
## [2.4.0] - 2021-10-08
|
|
6
12
|
### Minor code refactor and improvements
|
|
7
13
|
- `AnnotationCollectorInterface` new annotation features getter `getAnnotationFeatures`
|
|
@@ -11,6 +17,10 @@
|
|
|
11
17
|
- No more `Map` inheritance in `AnnotationTrack`. Now it delegates `Map` methods
|
|
12
18
|
- rcsb-saguaro update 1.11.0
|
|
13
19
|
|
|
20
|
+
## [2.3.6] - 2021-10-04
|
|
21
|
+
### Dependency update
|
|
22
|
+
- Using rcsb-api-tools
|
|
23
|
+
|
|
14
24
|
## [2.3.5] - 2021-09-16
|
|
15
25
|
### Display Improvement
|
|
16
26
|
- Loader spinner added
|
|
@@ -72,12 +82,13 @@
|
|
|
72
82
|
- async/await promise style
|
|
73
83
|
- Recursive waits migrated to rxjx Observables
|
|
74
84
|
- PFV unique building method
|
|
75
|
-
- RcsbFvWebApp.setBoardConfig and RcsbFvWebApp.getRcsbFv have been removed.
|
|
76
|
-
- Custom board config must be defined in RcsbFvAdditionalConfig (Some RcsbFvWebApp methods do not support additional configs yet)
|
|
77
|
-
- Builder methods return RcsbFvModulePublicInterface
|
|
78
85
|
- Context Manager rcsbFv build new board config param
|
|
79
86
|
- Select button default value title bug fixed
|
|
80
87
|
- rcsb-saguaro update 1.8.4
|
|
88
|
+
#### Breaking changes
|
|
89
|
+
- RcsbFvWebApp.setBoardConfig and RcsbFvWebApp.getRcsbFv have been removed.
|
|
90
|
+
- Custom board config must be defined in RcsbFvAdditionalConfig (Some RcsbFvWebApp methods do not support additional configs yet)
|
|
91
|
+
- Builder methods return RcsbFvModulePublicInterface
|
|
81
92
|
|
|
82
93
|
## [1.4.8] - 2021-06-15
|
|
83
94
|
### Optimization
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Feature Summaries. The package allows access to RCSB Saguaro methods to add or c
|
|
|
8
8
|
<!---
|
|
9
9
|
<div id="pfvSelect" ></div>
|
|
10
10
|
<div id="pfv" ></div>
|
|
11
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@rcsb/rcsb-saguaro-app@
|
|
11
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@rcsb/rcsb-saguaro-app@3.0.0/build/dist/app.js"></script>
|
|
12
12
|
<script type="text/javascript">
|
|
13
13
|
RcsbFvWebApp.buildInstanceFv("pfv", "4Z35.A", {
|
|
14
14
|
boardConfig:{
|
|
@@ -23,7 +23,7 @@ RcsbFvWebApp.buildInstanceFv("pfv", "4Z35.A", {
|
|
|
23
23
|
`npm install @rcsb/rcsb-saguaro-app`
|
|
24
24
|
|
|
25
25
|
### CDN JavaScript
|
|
26
|
-
`<script src="https://cdn.jsdelivr.net/npm/@rcsb/rcsb-saguaro-app@
|
|
26
|
+
`<script src="https://cdn.jsdelivr.net/npm/@rcsb/rcsb-saguaro-app@3.0.0/build/dist/app.js" type="text/javascript"></script>`
|
|
27
27
|
|
|
28
28
|
### JavaScript Examples
|
|
29
29
|
* [PDB Instance Chain View](https://rcsb.github.io/rcsb-saguaro-app/examples/instance.html)
|
|
@@ -18,7 +18,7 @@ export interface TaxonomyMetadataInterface {
|
|
|
18
18
|
export declare class NcbiSummary {
|
|
19
19
|
private static timeout;
|
|
20
20
|
private static httpTimeout;
|
|
21
|
-
private static
|
|
21
|
+
private static jobTask;
|
|
22
22
|
static requestChromosomeData(chrId: string): Promise<ChromosomeMetadataInterface>;
|
|
23
23
|
static requestTaxonomyData(taxId: string): Promise<TaxonomyMetadataInterface>;
|
|
24
24
|
}
|