meta_workflows 0.9.27 → 0.9.28

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: 9e7c5610d3502a37e016166f1bdc387aba3fd75873372a1900e8cfc680cdde10
4
- data.tar.gz: 19a53e7916c5793a928b324a76381d9042c7247d83e5282995d151f40db027cc
3
+ metadata.gz: f07cda61b8fdd4e757dc33dd1115ce19949fce1f08547ab86b1fe1b16d9a6940
4
+ data.tar.gz: b3d24c6d2b7dffbc6b47efb2dcb673ef07701446fefb4da9279b50041aa9cfb0
5
5
  SHA512:
6
- metadata.gz: 91d3eff2f6801a95e1cd66eb2f62afcc682d69ca59b169071cc2635ee31c92066029efa09f8b634b16d5aa76c625a03f73d2c1338a5b16b08019891c66a40515
7
- data.tar.gz: a288d9b2d9d0f8626174b95f7f870b5f6e0360fbe3cb86f85f18bededddd14c49f4add815afa466b666a7e6d1cf54e36567a555caa84c7c063a83138d4d0fa37
6
+ metadata.gz: cbd3d21ca6163e39df0808847c4bf2f7fc11a0de8bf7aa9d59cc9226f01176c0837babc6feedd9d19c2117dafe62e8aff12f85723e27b95f84247a515ff0eed8
7
+ data.tar.gz: 99858cf6ed8c38f0fe1d7bc9149787036c18b40db0c04738e495ba902b95c02d1fc3c7978c0b8a1ce0f7e1ed573a47f7d1bd91cd29394809954f0f82246e6f95
@@ -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%, 80%, 100% {
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, #7B5BA3 0%, #3A9999 50%, #7B5BA3 100%);
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, #7B5BA3 0%, #3A9999 50%, #7B5BA3 100%);
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, dot-bounce 1.4s 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: column;
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 > button[data-action="click->tray#toggle"]:not(.lexi-floating-avatar) {
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
 
@@ -683,7 +689,8 @@
683
689
  height: 100vh;
684
690
  }
685
691
 
686
- .welcome-screen, .chat-screen {
692
+ .welcome-screen,
693
+ .chat-screen {
687
694
  grid-column: 1;
688
695
  grid-row: 1;
689
696
  }
@@ -1028,7 +1035,7 @@
1028
1035
  }
1029
1036
 
1030
1037
  /* Structured Input Validation Styles */
1031
- .structured-input-container[data-invalid="true"] {
1038
+ .structured-input-container[data-invalid='true'] {
1032
1039
  border-color: var(--red-500);
1033
1040
  background-color: var(--red-50);
1034
1041
  }
@@ -17,29 +17,16 @@
17
17
  </div>
18
18
 
19
19
  <div class="lexi-input-controls">
20
- <div class="lexi-input-icons">
21
- <button type="button" class="lexi-icon-button" disabled>
22
- <i class="fa-solid fa-microphone text-lg"></i>
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
- <button type="button" class="lexi-icon-button" disabled>
25
- <i class="fa-solid fa-headphones text-lg"></i>
26
- </button>
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
- </div>
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 = 27 # this is automatically incremented by the build process
6
+ PATCH = 28 # 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.27
4
+ version: 0.9.28
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-21 00:00:00.000000000 Z
12
+ date: 2025-07-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails