meta_workflows 0.9.27 → 0.9.29
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 236fbbb0daa94f64ff23edee6643c93e31483620abbbcf3b1290141db9a352a0
|
4
|
+
data.tar.gz: f22d67ce0bce5fd5c5f6f268aace75c0179a66ef59c2e88a61918a9ca34434e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cbcfb8fbf2fa69920f4605d79f2ab73f1ced4486709c2d14d2ed9f8180ed3c8417346545de0e5d98946ce6b075b2ad17ee95e1e3dbfc82d7d51a5ecc4a0acbb
|
7
|
+
data.tar.gz: b3eef7ce30cb896b830ecf08d570c184b58ce0c892a21fdde739a3f36bd8a14c9531b79d3ec67ed8978844cbaaf0654a714e26a2b82b6afc796c1ac58c7d4a90
|
@@ -60,7 +60,7 @@
|
|
60
60
|
ol {
|
61
61
|
display: flex;
|
62
62
|
flex-direction: column;
|
63
|
-
gap: .5rem;
|
63
|
+
gap: 0.5rem;
|
64
64
|
padding-left: 0;
|
65
65
|
list-style-type: none;
|
66
66
|
|
@@ -85,7 +85,7 @@
|
|
85
85
|
counter-reset: list-counter;
|
86
86
|
|
87
87
|
li::before {
|
88
|
-
content: counter(list-counter)
|
88
|
+
content: counter(list-counter) '.';
|
89
89
|
counter-increment: list-counter;
|
90
90
|
display: inline-block;
|
91
91
|
width: 1.5em;
|
@@ -180,7 +180,9 @@
|
|
180
180
|
}
|
181
181
|
|
182
182
|
@keyframes dot-bounce {
|
183
|
-
0%,
|
183
|
+
0%,
|
184
|
+
80%,
|
185
|
+
100% {
|
184
186
|
transform: translateY(0);
|
185
187
|
opacity: 0.7;
|
186
188
|
}
|
@@ -192,7 +194,7 @@
|
|
192
194
|
|
193
195
|
.lexi-loader-text {
|
194
196
|
font-size: 1.25rem;
|
195
|
-
background: linear-gradient(135deg, #
|
197
|
+
background: linear-gradient(135deg, #7b5ba3 0%, #3a9999 50%, #7b5ba3 100%);
|
196
198
|
background-size: 200% 200%;
|
197
199
|
background-clip: text;
|
198
200
|
-webkit-background-clip: text;
|
@@ -211,13 +213,14 @@
|
|
211
213
|
.lexi-dot {
|
212
214
|
display: inline-block;
|
213
215
|
font-size: 1.25rem;
|
214
|
-
background: linear-gradient(135deg, #
|
216
|
+
background: linear-gradient(135deg, #7b5ba3 0%, #3a9999 50%, #7b5ba3 100%);
|
215
217
|
background-size: 200% 200%;
|
216
218
|
background-clip: text;
|
217
219
|
-webkit-background-clip: text;
|
218
220
|
-webkit-text-fill-color: transparent;
|
219
221
|
color: transparent;
|
220
|
-
animation: gradient-shift 2s ease-in-out infinite,
|
222
|
+
animation: gradient-shift 2s ease-in-out infinite,
|
223
|
+
dot-bounce 1.4s ease-in-out infinite;
|
221
224
|
-webkit-text-stroke: 0.75px rgba(0, 0, 0, 0.15);
|
222
225
|
text-stroke: 0.75px rgba(0, 0, 0, 0.15);
|
223
226
|
margin-left: -0.125rem;
|
@@ -339,7 +342,8 @@
|
|
339
342
|
|
340
343
|
.lexi-input-container {
|
341
344
|
display: flex;
|
342
|
-
flex-direction:
|
345
|
+
flex-direction: row;
|
346
|
+
gap: 0.5rem;
|
343
347
|
border: 1px solid var(--gray-300);
|
344
348
|
border-radius: 0.5rem;
|
345
349
|
background-color: rgba(255, 255, 255, 0.8);
|
@@ -353,6 +357,7 @@
|
|
353
357
|
|
354
358
|
.lexi-textarea {
|
355
359
|
width: 100%;
|
360
|
+
height: 100%;
|
356
361
|
min-height: 35px;
|
357
362
|
border: none;
|
358
363
|
resize: none;
|
@@ -647,7 +652,8 @@
|
|
647
652
|
}
|
648
653
|
|
649
654
|
/* Hide standard collapse button when Lexi tray is collapsed */
|
650
|
-
.gamma-tray.lexi-tray.collapsed
|
655
|
+
.gamma-tray.lexi-tray.collapsed
|
656
|
+
> button[data-action='click->tray#toggle']:not(.lexi-floating-avatar) {
|
651
657
|
display: none;
|
652
658
|
}
|
653
659
|
|
@@ -655,6 +661,9 @@
|
|
655
661
|
.gamma-tray.lexi-tray.collapsed .lexi-floating-avatar {
|
656
662
|
display: block;
|
657
663
|
opacity: 0;
|
664
|
+
position: fixed;
|
665
|
+
bottom: 24px;
|
666
|
+
right: 24px;
|
658
667
|
animation: lexi-avatar-appear 200ms ease-in-out 400ms forwards;
|
659
668
|
}
|
660
669
|
|
@@ -683,7 +692,8 @@
|
|
683
692
|
height: 100vh;
|
684
693
|
}
|
685
694
|
|
686
|
-
.welcome-screen,
|
695
|
+
.welcome-screen,
|
696
|
+
.chat-screen {
|
687
697
|
grid-column: 1;
|
688
698
|
grid-row: 1;
|
689
699
|
}
|
@@ -1028,7 +1038,7 @@
|
|
1028
1038
|
}
|
1029
1039
|
|
1030
1040
|
/* Structured Input Validation Styles */
|
1031
|
-
.structured-input-container[data-invalid=
|
1041
|
+
.structured-input-container[data-invalid='true'] {
|
1032
1042
|
border-color: var(--red-500);
|
1033
1043
|
background-color: var(--red-50);
|
1034
1044
|
}
|
@@ -17,29 +17,16 @@
|
|
17
17
|
</div>
|
18
18
|
|
19
19
|
<div class="lexi-input-controls">
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
<!-- Send button -->
|
21
|
+
<% if local_assigns[:responding] %>
|
22
|
+
<button type="button" class="lexi-send-button responding" disabled>
|
23
|
+
<i class="fa-solid fa-arrow-up text-lg"></i>
|
23
24
|
</button>
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
<button type="button" class="lexi-icon-button" disabled>
|
28
|
-
<i class="fa-solid fa-waveform-lines text-lg"></i>
|
29
|
-
</button>
|
30
|
-
</div>
|
31
|
-
<div>
|
32
|
-
<!-- Send button -->
|
33
|
-
<% if local_assigns[:responding] %>
|
34
|
-
<button type="button" class="lexi-send-button responding" disabled>
|
35
|
-
<i class="fa-solid fa-arrow-up text-lg"></i>
|
36
|
-
</button>
|
37
|
-
<% else %>
|
38
|
-
<%= form.button type: "button", class: "lexi-send-button sm-btn sm-btn-primary", data: { "meta-workflows--lexi-form-submit-target": "submitButton", action: "click->meta-workflows--lexi-form-submit#handleSubmit" } do %>
|
39
|
-
<i class="fa-solid fa-arrow-up text-lg"></i>
|
40
|
-
<% end %>
|
25
|
+
<% else %>
|
26
|
+
<%= form.button type: "button", class: "lexi-send-button sm-btn sm-btn-primary", data: { "meta-workflows--lexi-form-submit-target": "submitButton", action: "click->meta-workflows--lexi-form-submit#handleSubmit" } do %>
|
27
|
+
<i class="fa-solid fa-arrow-up text-lg"></i>
|
41
28
|
<% end %>
|
42
|
-
|
29
|
+
<% end %>
|
43
30
|
</div>
|
44
31
|
</div>
|
45
32
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module MetaWorkflows
|
4
4
|
MAJOR = 0
|
5
5
|
MINOR = 9
|
6
|
-
PATCH =
|
6
|
+
PATCH = 29 # this is automatically incremented by the build process
|
7
7
|
|
8
8
|
VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
|
9
9
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: meta_workflows
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.29
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leonid Medovyy
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-07-
|
12
|
+
date: 2025-07-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|