@red-hat-developer-hub/backstage-plugin-orchestrator-common 3.5.1 → 3.5.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/CHANGELOG.md +18 -0
- package/config.d.ts +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## @red-hat-developer-hub/backstage-plugin-orchestrator-common [1.13.1](https://github.com/janus-idp/backstage-plugins/compare/@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.0...@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.1) (2024-08-02)
|
|
2
2
|
|
|
3
|
+
## 3.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5a9d9d8: Updated dependency `@openapitools/openapi-generator-cli` to `2.30.2`.
|
|
8
|
+
|
|
9
|
+
## 3.5.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 309547d: Add workflow instance card height mode config for fixed or content-based layouts.
|
|
14
|
+
|
|
3
15
|
## 3.5.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -14,6 +26,12 @@
|
|
|
14
26
|
|
|
15
27
|
- 3648a62: Backstage version bump to v1.47.3
|
|
16
28
|
|
|
29
|
+
## 3.4.2
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 546ccb2: Add workflow instance card height mode config for fixed or content-based layouts.
|
|
34
|
+
|
|
17
35
|
## 3.4.1
|
|
18
36
|
|
|
19
37
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -103,5 +103,19 @@ export interface Config {
|
|
|
103
103
|
value: string;
|
|
104
104
|
}>;
|
|
105
105
|
};
|
|
106
|
+
/**
|
|
107
|
+
* UI configuration for the workflow instance page.
|
|
108
|
+
* @visibility frontend
|
|
109
|
+
*/
|
|
110
|
+
workflowInstancePage?: {
|
|
111
|
+
/**
|
|
112
|
+
* Controls card height behavior on the workflow instance page.
|
|
113
|
+
* "fixed" keeps the current fixed-height cards with internal scrolling.
|
|
114
|
+
* "content" lets cards expand to fit their content.
|
|
115
|
+
* Default: fixed
|
|
116
|
+
* @visibility frontend
|
|
117
|
+
*/
|
|
118
|
+
cardHeightMode?: 'fixed' | 'content';
|
|
119
|
+
};
|
|
106
120
|
};
|
|
107
121
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@red-hat-developer-hub/backstage-plugin-orchestrator-common",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@backstage/cli": "^0.35.3",
|
|
67
|
-
"@openapitools/openapi-generator-cli": "2.
|
|
67
|
+
"@openapitools/openapi-generator-cli": "2.30.2",
|
|
68
68
|
"@types/js-yaml": "^4.0.0",
|
|
69
69
|
"@types/json-schema": "7.0.15",
|
|
70
70
|
"js-yaml-cli": "^0.6.0"
|