@spinnaker/core 0.19.3 → 0.20.1
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 +30 -0
- package/dist/cache/collapsibleSectionStateCache.d.ts +2 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/application/config/applicationAttributes.directive.html +3 -3
- package/src/application/nav/navAtoms.ts +19 -1
- package/src/cache/collapsibleSectionStateCache.ts +11 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.tsx +1 -0
- package/src/pipeline/executions/execution/ExecutionMarker.tsx +14 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.20.1](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.20.0...@spinnaker/core@0.20.1) (2022-07-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @spinnaker/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.20.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.19.4...@spinnaker/core@0.20.0) (2022-06-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **core:** Synchronize the verticalNavExpandedAtom using an atom effect ([#9859](https://github.com/spinnaker/deck/issues/9859)) ([a81f4ab](https://github.com/spinnaker/deck/commit/a81f4ab9bbcf86d31f31f52390740db62a8e7e5d))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.19.4](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.19.3...@spinnaker/core@0.19.4) (2022-05-05)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **core:** apps always display as unconfigured ([#9853](https://github.com/spinnaker/deck/issues/9853)) ([7d45ac7](https://github.com/spinnaker/deck/commit/7d45ac79ee4c68ae1d55584a789acf74616f4d0b)), closes [/github.com/spinnaker/deck/blob/master/packages/core/src/application/config/applicationAttributes.directive.js#L31](https://github.com//github.com/spinnaker/deck/blob/master/packages/core/src/application/config/applicationAttributes.directive.js/issues/L31)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
## [0.19.3](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.19.2...@spinnaker/core@0.19.3) (2022-04-21)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @spinnaker/core
|
|
@@ -2,9 +2,11 @@ export declare class CollapsibleSectionStateCacheInternal {
|
|
|
2
2
|
private cacheFactory;
|
|
3
3
|
private cacheId;
|
|
4
4
|
private stateCache;
|
|
5
|
+
private handlers;
|
|
5
6
|
constructor();
|
|
6
7
|
isSet(heading: string): boolean;
|
|
7
8
|
isExpanded(heading: string): boolean;
|
|
8
9
|
setExpanded(heading: string, expanded: boolean): void;
|
|
10
|
+
onChange(heading: string, listener: Function): void;
|
|
9
11
|
}
|
|
10
12
|
export declare const CollapsibleSectionStateCache: CollapsibleSectionStateCacheInternal;
|