api-render-ui 1.1.0 → 1.1.2

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.
@@ -5,7 +5,6 @@ export const GLOBAL_STYLES = `.codigma-apioperatorlist {
5
5
  display: inline-flex;
6
6
  flex-direction: column;
7
7
  gap: 5px;
8
- height: 100%;
9
8
  justify-content: flex-start;
10
9
  width: 100%
11
10
  }
@@ -62,7 +61,6 @@ export const GLOBAL_STYLES = `.codigma-apioperatorlist {
62
61
  display: inline-flex;
63
62
  flex-direction: column;
64
63
  gap: 8px;
65
- height: 100%;
66
64
  justify-content: flex-start;
67
65
  width: 100%
68
66
  }
@@ -188,10 +186,12 @@ export const GLOBAL_STYLES = `.codigma-apioperatorlist {
188
186
  align-items: center;
189
187
  align-self: stretch;
190
188
  display: inline-flex;
191
- height: 114px;
192
189
  justify-content: flex-start;
193
190
  padding-right: 5px
194
191
  }
192
+ .codigma-apiunit-request-body-info {
193
+ align-self: stretch;
194
+ }
195
195
  .codigma-apiunit-parakeyvalues {
196
196
  align-items: flex-start;
197
197
  align-self: stretch;
package/src/main.ts DELETED
@@ -1,10 +0,0 @@
1
- import { ApiRenderer } from 'api-render-ui';
2
-
3
- const openapiSpec = {
4
- // 你的 OpenAPI 文档
5
- };
6
-
7
- const renderer = new ApiRenderer({
8
- mountPoint: '#notebook'
9
- });
10
- renderer.render(openapiSpec);