@nuraly/lumenui 0.3.6 → 0.3.8
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/nuralyui.bundle.js +14 -13
- package/dist/nuralyui.bundle.js.gz +0 -0
- package/dist/src/components/canvas/bundle.js +7 -6
- package/dist/src/components/canvas/bundle.js.gz +0 -0
- package/dist/src/components/canvas/workflow-canvas.types.js +2 -2
- package/dist/src/components/chatbot/bundle.js +22 -23
- package/dist/src/components/chatbot/bundle.js.gz +0 -0
- package/dist/src/components/chatbot/chatbot.style.js +0 -1
- package/dist/src/components/chatbot/plugins/artifact-plugin.js +0 -19
- package/dist/src/components/chatbot/plugins/flight-card-plugin.js +0 -35
- package/dist/src/components/chatbot/plugins/markdown-plugin.js +0 -4
- package/dist/src/components/chatbot/plugins/print-job-card-plugin.js +0 -36
- package/dist/src/components/chatbot/plugins/selection-card-plugin.js +0 -34
- package/dist/src/components/dropdown/bundle.js +2 -2
- package/dist/src/components/dropdown/bundle.js.gz +0 -0
- package/dist/src/components/dropdown/dropdown.style.js +2 -2
- package/dist/src/components/iconpicker/bundle.js +2 -2
- package/dist/src/components/iconpicker/bundle.js.gz +0 -0
- package/package.json +1 -1
- package/packages/common/dist/VERSIONS.md +1 -1
|
Binary file
|
|
@@ -288,25 +288,6 @@ export class ArtifactPlugin extends ChatPluginBase {
|
|
|
288
288
|
flex-shrink: 0;
|
|
289
289
|
color: #6c757d;
|
|
290
290
|
}
|
|
291
|
-
@media (prefers-color-scheme: dark) {
|
|
292
|
-
.nr-artifact-card {
|
|
293
|
-
background: #161b22;
|
|
294
|
-
border-color: #30363d;
|
|
295
|
-
}
|
|
296
|
-
.nr-artifact-card:hover {
|
|
297
|
-
background: #1c2128;
|
|
298
|
-
border-color: #484f58;
|
|
299
|
-
}
|
|
300
|
-
.nr-artifact-card__icon {
|
|
301
|
-
color: #c9d1d9;
|
|
302
|
-
}
|
|
303
|
-
.nr-artifact-card__title {
|
|
304
|
-
color: #c9d1d9;
|
|
305
|
-
}
|
|
306
|
-
.nr-artifact-card__chevron {
|
|
307
|
-
color: #8b949e;
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
291
|
`;
|
|
311
292
|
}
|
|
312
293
|
}
|
|
@@ -524,41 +524,6 @@ export class FlightCardPlugin extends ChatPluginBase {
|
|
|
524
524
|
color: #1a1a1a;
|
|
525
525
|
}
|
|
526
526
|
|
|
527
|
-
/* Dark mode support */
|
|
528
|
-
@media (prefers-color-scheme: dark) {
|
|
529
|
-
.${this.cssPrefix} {
|
|
530
|
-
background: #2a2a2a;
|
|
531
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
.${this.cssPrefix}__airport-code,
|
|
535
|
-
.${this.cssPrefix}__city,
|
|
536
|
-
.${this.cssPrefix}__info-value {
|
|
537
|
-
color: #ffffff;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.${this.cssPrefix}__flight-line::before {
|
|
541
|
-
background: linear-gradient(to right, #444 0%, #444 100%);
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.${this.cssPrefix}__plane-icon {
|
|
545
|
-
background: #2a2a2a;
|
|
546
|
-
color: #999;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.${this.cssPrefix}__duration {
|
|
550
|
-
background: #2a2a2a;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.${this.cssPrefix}__divider {
|
|
554
|
-
background: #444;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.${this.cssPrefix}__footer {
|
|
558
|
-
border-top-color: #444;
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
|
|
562
527
|
/* Responsive design */
|
|
563
528
|
@media (max-width: 640px) {
|
|
564
529
|
.${this.cssPrefix} {
|
|
@@ -58,10 +58,6 @@ export class MarkdownPlugin extends ChatPluginBase {
|
|
|
58
58
|
p { margin: 0.5em 0; }
|
|
59
59
|
ul { margin: 0.5em 0 0.5em 1.2em; }
|
|
60
60
|
a { color: #0b5fff; text-decoration: underline; }
|
|
61
|
-
@media (prefers-color-scheme: dark) {
|
|
62
|
-
.md-code { background: #0f1115; color: #eaeef2; }
|
|
63
|
-
.md-inline-code { background: rgba(255,255,255,.08); }
|
|
64
|
-
}
|
|
65
61
|
`;
|
|
66
62
|
}
|
|
67
63
|
}
|
|
@@ -444,42 +444,6 @@ export class PrintJobCardPlugin extends ChatPluginBase {
|
|
|
444
444
|
color: #999;
|
|
445
445
|
}
|
|
446
446
|
|
|
447
|
-
/* Dark mode support */
|
|
448
|
-
@media (prefers-color-scheme: dark) {
|
|
449
|
-
.${this.cssPrefix} {
|
|
450
|
-
background: #2a2a2a;
|
|
451
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
452
|
-
border-left-color: #42a5f5;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.${this.cssPrefix}__title,
|
|
456
|
-
.${this.cssPrefix}__detail-value {
|
|
457
|
-
color: #ffffff;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.${this.cssPrefix}__subtitle,
|
|
461
|
-
.${this.cssPrefix}__detail-label {
|
|
462
|
-
color: #b0b0b0;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.${this.cssPrefix}__job-id {
|
|
466
|
-
background: #3a3a3a;
|
|
467
|
-
color: #b0b0b0;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.${this.cssPrefix}__details {
|
|
471
|
-
background: #333;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.${this.cssPrefix}__progress-bar {
|
|
475
|
-
background: #444;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.${this.cssPrefix}__footer {
|
|
479
|
-
border-top-color: #444;
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
447
|
/* Responsive design */
|
|
484
448
|
@media (max-width: 480px) {
|
|
485
449
|
.${this.cssPrefix} {
|
|
@@ -271,40 +271,6 @@ export class SelectionCardPlugin extends ChatPluginBase {
|
|
|
271
271
|
line-height: 1.3;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
/* Dark mode support */
|
|
275
|
-
@media (prefers-color-scheme: dark) {
|
|
276
|
-
.${this.cssPrefix}__title {
|
|
277
|
-
color: #ffffff;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.${this.cssPrefix}__option {
|
|
281
|
-
background: #2a2a2a;
|
|
282
|
-
border-color: #444;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.${this.cssPrefix}__option:hover {
|
|
286
|
-
border-color: #5a9aff;
|
|
287
|
-
background: #1e2d44;
|
|
288
|
-
box-shadow: 0 1px 4px rgba(90, 154, 255, 0.15);
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.${this.cssPrefix}__option:active:not([aria-disabled="true"]) {
|
|
292
|
-
background: #1a2638;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.${this.cssPrefix}__option-icon {
|
|
296
|
-
color: #aaa;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.${this.cssPrefix}__option-label {
|
|
300
|
-
color: #ffffff;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.${this.cssPrefix}__option-description {
|
|
304
|
-
color: #999;
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
|
|
308
274
|
/* Responsive: force single column on mobile */
|
|
309
275
|
@media (max-width: 480px) {
|
|
310
276
|
.${this.cssPrefix}__grid--cols-2,
|
|
@@ -23,7 +23,7 @@ import{css as t,html as e,nothing as o,LitElement as i}from"lit";import{property
|
|
|
23
23
|
|
|
24
24
|
.dropdown__panel {
|
|
25
25
|
position: fixed;
|
|
26
|
-
z-index: 9999;
|
|
26
|
+
z-index: var(--nuraly-dropdown-z-index, 9999);
|
|
27
27
|
background: #ffffff;
|
|
28
28
|
border: 1px solid #e0e0e0;
|
|
29
29
|
border-radius: 6px;
|
|
@@ -340,7 +340,7 @@ import{css as t,html as e,nothing as o,LitElement as i}from"lit";import{property
|
|
|
340
340
|
.dropdown__submenu {
|
|
341
341
|
position: absolute;
|
|
342
342
|
top: 0;
|
|
343
|
-
z-index: calc(9999 + 1);
|
|
343
|
+
z-index: calc(var(--nuraly-dropdown-z-index, 9999) + 1);
|
|
344
344
|
background: #ffffff;
|
|
345
345
|
border: 1px solid #e0e0e0;
|
|
346
346
|
border-radius: 6px;
|
|
Binary file
|
|
@@ -24,7 +24,7 @@ export const styles = css `
|
|
|
24
24
|
|
|
25
25
|
.dropdown__panel {
|
|
26
26
|
position: fixed;
|
|
27
|
-
z-index: 9999;
|
|
27
|
+
z-index: var(--nuraly-dropdown-z-index, 9999);
|
|
28
28
|
background: #ffffff;
|
|
29
29
|
border: 1px solid #e0e0e0;
|
|
30
30
|
border-radius: 6px;
|
|
@@ -341,7 +341,7 @@ export const styles = css `
|
|
|
341
341
|
.dropdown__submenu {
|
|
342
342
|
position: absolute;
|
|
343
343
|
top: 0;
|
|
344
|
-
z-index: calc(9999 + 1);
|
|
344
|
+
z-index: calc(var(--nuraly-dropdown-z-index, 9999) + 1);
|
|
345
345
|
background: #ffffff;
|
|
346
346
|
border: 1px solid #e0e0e0;
|
|
347
347
|
border-radius: 6px;
|
|
@@ -93,7 +93,7 @@ customElements.define("lit-virtualizer",B);class Z{_getDefaultConfig(){return{di
|
|
|
93
93
|
|
|
94
94
|
.dropdown__panel {
|
|
95
95
|
position: fixed;
|
|
96
|
-
z-index: 9999;
|
|
96
|
+
z-index: var(--nuraly-dropdown-z-index, 9999);
|
|
97
97
|
background: #ffffff;
|
|
98
98
|
border: 1px solid #e0e0e0;
|
|
99
99
|
border-radius: 6px;
|
|
@@ -410,7 +410,7 @@ customElements.define("lit-virtualizer",B);class Z{_getDefaultConfig(){return{di
|
|
|
410
410
|
.dropdown__submenu {
|
|
411
411
|
position: absolute;
|
|
412
412
|
top: 0;
|
|
413
|
-
z-index: calc(9999 + 1);
|
|
413
|
+
z-index: calc(var(--nuraly-dropdown-z-index, 9999) + 1);
|
|
414
414
|
background: #ffffff;
|
|
415
415
|
border: 1px solid #e0e0e0;
|
|
416
416
|
border-radius: 6px;
|
|
Binary file
|
package/package.json
CHANGED