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.
- package/dist/index.cjs +614 -145
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +614 -145
- package/dist/index.js.map +1 -1
- package/example/animal.html +1137 -254
- package/package.json +1 -1
- package/src/api-render-ui.css +3 -3
- package/src/api-render-ui.ts +880 -170
- package/src/inlined-styles.ts +3 -3
- package/src/main.ts +0 -10
package/src/inlined-styles.ts
CHANGED
|
@@ -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;
|