@integry/sdk 4.6.33 → 4.6.34
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/package.json
CHANGED
|
@@ -595,6 +595,10 @@ const RenderAppPage = (props: WraperrProps) => {
|
|
|
595
595
|
alt=${appData?.name}
|
|
596
596
|
/>
|
|
597
597
|
<span>${selectedFlow?.flow.name}</span>
|
|
598
|
+
${selectedFlow?.flow?.version_number &&
|
|
599
|
+
html`<span class=${styles.flowVersion}
|
|
600
|
+
>v${selectedFlow?.flow?.version_number}</span
|
|
601
|
+
>`}
|
|
598
602
|
</div>
|
|
599
603
|
</div>
|
|
600
604
|
`}
|
|
@@ -53,6 +53,19 @@
|
|
|
53
53
|
border-radius: 0 !important;
|
|
54
54
|
user-select: none;
|
|
55
55
|
}
|
|
56
|
+
.flowVersion {
|
|
57
|
+
background: rgb(233, 236, 238);
|
|
58
|
+
color: rgb(79, 79, 79);
|
|
59
|
+
font-size: 10px;
|
|
60
|
+
font-weight: 400;
|
|
61
|
+
padding: 2px 8px;
|
|
62
|
+
line-height: 12px;
|
|
63
|
+
text-align: center;
|
|
64
|
+
padding: 4px 9px;
|
|
65
|
+
/* height: 20px; */
|
|
66
|
+
display: inline-block;
|
|
67
|
+
margin-left: 7px;
|
|
68
|
+
}
|
|
56
69
|
|
|
57
70
|
span {
|
|
58
71
|
color: var(--black-and-grey-title-and-desc, #333);
|