@spinnaker/core 0.25.0 → 0.26.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 CHANGED
@@ -3,6 +3,31 @@
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.26.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.25.0...@spinnaker/core@0.26.0) (2023-09-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **core:** Add ability to set Default Tag filters for an application in application config ([#10020](https://github.com/spinnaker/deck/issues/10020)) ([c768e88](https://github.com/spinnaker/deck/commit/c768e88fbc893d0bd5dc86959320a7b7d67443e5))
12
+
13
+
14
+ ### Reverts
15
+
16
+ * Revert "fix(core): conditionally hide expression evaluation warning messages (#9771)" (#10021) ([62033d0](https://github.com/spinnaker/deck/commit/62033d0fc6f0a953bd3f01e4452664b92fd02dfb)), closes [#9771](https://github.com/spinnaker/deck/issues/9771) [#10021](https://github.com/spinnaker/deck/issues/10021)
17
+
18
+
19
+
20
+ # 3.15.0 (2023-07-27)
21
+
22
+
23
+ ### Features
24
+
25
+ * **core:** set Cancellation Reason to be expanded by default ([#10018](https://github.com/spinnaker/deck/issues/10018)) ([db06e88](https://github.com/spinnaker/deck/commit/db06e88bada70fa4065f56fc33af7207943415c5))
26
+
27
+
28
+
29
+
30
+
6
31
  # [0.25.0](https://github.com/spinnaker/deck/compare/@spinnaker/core@0.24.1...@spinnaker/core@0.25.0) (2023-07-20)
7
32
 
8
33
 
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import './defaultTagFilterConfig.less';
3
+ export interface IDefaultTagFilterConfig {
4
+ tagName: string;
5
+ tagValue: string;
6
+ }
7
+ export interface IDefaultTagFilterProps {
8
+ defaultTagFilterConfigs: IDefaultTagFilterConfig[];
9
+ isSaving: boolean;
10
+ saveError: boolean;
11
+ updateDefaultTagFilterConfigs: (defaultTagFilterConfigs: IDefaultTagFilterConfig[]) => void;
12
+ }
13
+ export interface IDefaultTagFilterState {
14
+ defaultTagFilterConfigsEditing: IDefaultTagFilterConfig[];
15
+ }
16
+ export declare class DefaultTagFilterConfig extends React.Component<IDefaultTagFilterProps, IDefaultTagFilterState> {
17
+ static defaultProps: Partial<IDefaultTagFilterProps>;
18
+ constructor(props: IDefaultTagFilterProps);
19
+ private onTagNameChange;
20
+ private onTagValueChange;
21
+ private addFilterTag;
22
+ private removeFilterTag;
23
+ private isDirty;
24
+ private onRevertClicked;
25
+ private onSaveClicked;
26
+ render(): JSX.Element;
27
+ }
@@ -0,0 +1 @@
1
+ export declare const DEFAULT_TAG_FILTER_CONFIG = "spinnaker.micros.application.defaultTagFilterConfig.component";