@processmaker/modeler 1.43.1 → 1.43.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/modeler.common.js +16 -16
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +16 -16
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +3 -3
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/aiMessages/AiGenerateButton.vue +7 -3
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="mr-2">
|
|
3
3
|
<button
|
|
4
4
|
id="aiAssetButton"
|
|
5
|
-
:class="['btn px-2 ai-btn', showPopover ? 'ai-btn-open' : 'ai-btn-closed']"
|
|
5
|
+
:class="['btn py-0 px-2 ai-btn', showPopover ? 'ai-btn-open' : 'ai-btn-closed']"
|
|
6
6
|
@click="showPopover = !showPopover"
|
|
7
7
|
>
|
|
8
8
|
<inline-svg :src="proceC2Icon" class="my-auto ai-icon" />
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
</div>
|
|
21
21
|
<div class="m-2">
|
|
22
22
|
<span class="text-primary">
|
|
23
|
-
{{ $t('Optimal results need
|
|
23
|
+
{{ $t('Optimal results need proper task naming and connections.') }}
|
|
24
24
|
</span>
|
|
25
25
|
</div>
|
|
26
26
|
<button class="m-2 btn btn-primary" @click="onGenerateAssets()">
|
|
@@ -57,6 +57,10 @@ export default {
|
|
|
57
57
|
height: 22px;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
.ai-btn-open > .ai-icon {
|
|
61
|
+
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(3deg) brightness(200%) contrast(150%);
|
|
62
|
+
}
|
|
63
|
+
|
|
60
64
|
.ai-btn {
|
|
61
65
|
display: flex;
|
|
62
66
|
justify-content: center;
|
|
@@ -72,6 +76,6 @@ export default {
|
|
|
72
76
|
|
|
73
77
|
.ai-btn-open {
|
|
74
78
|
color: #FFFFFF;
|
|
75
|
-
background-color: #
|
|
79
|
+
background-color: #104a75;
|
|
76
80
|
}
|
|
77
81
|
</style>
|