lua-cli 2.5.7 → 2.5.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.
Files changed (37) hide show
  1. package/dist/api/agent.api.service.d.ts +45 -0
  2. package/dist/api/agent.api.service.js +54 -0
  3. package/dist/api/user.data.api.service.d.ts +15 -0
  4. package/dist/api/user.data.api.service.js +31 -0
  5. package/dist/cli/command-definitions.js +77 -5
  6. package/dist/commands/completion.d.ts +11 -0
  7. package/dist/commands/completion.js +209 -0
  8. package/dist/commands/env.d.ts +3 -2
  9. package/dist/commands/env.js +42 -17
  10. package/dist/commands/features.d.ts +16 -0
  11. package/dist/commands/features.js +352 -0
  12. package/dist/commands/index.d.ts +3 -0
  13. package/dist/commands/index.js +3 -0
  14. package/dist/commands/persona.d.ts +3 -2
  15. package/dist/commands/persona.js +43 -18
  16. package/dist/commands/push.d.ts +9 -13
  17. package/dist/commands/push.js +271 -82
  18. package/dist/commands/skills.d.ts +16 -0
  19. package/dist/commands/skills.js +438 -0
  20. package/dist/common/data.entry.instance.d.ts +7 -0
  21. package/dist/common/data.entry.instance.js +15 -0
  22. package/dist/common/order.instance.d.ts +6 -0
  23. package/dist/common/order.instance.js +14 -0
  24. package/dist/common/product.instance.d.ts +6 -0
  25. package/dist/common/product.instance.js +14 -0
  26. package/dist/common/user.instance.d.ts +14 -0
  27. package/dist/common/user.instance.js +29 -0
  28. package/dist/index.js +14 -3
  29. package/dist/interfaces/agent.d.ts +31 -0
  30. package/dist/interfaces/message.d.ts +18 -0
  31. package/dist/interfaces/message.js +1 -0
  32. package/dist/types/api-contracts.d.ts +9 -0
  33. package/dist/types/api-contracts.js +0 -7
  34. package/dist/web/app.css +152 -736
  35. package/dist/web/app.js +45 -45
  36. package/package.json +2 -2
  37. package/template/package.json +1 -1
package/dist/web/app.css CHANGED
@@ -22,11 +22,9 @@
22
22
  --lua-color-green-50: oklch(98.2% 0.018 155.826);
23
23
  --lua-color-green-100: oklch(96.2% 0.044 156.743);
24
24
  --lua-color-green-200: oklch(92.5% 0.084 155.995);
25
- --lua-color-green-500: oklch(72.3% 0.219 149.579);
26
25
  --lua-color-green-600: oklch(62.7% 0.194 149.214);
27
26
  --lua-color-green-700: oklch(52.7% 0.154 150.069);
28
27
  --lua-color-green-800: oklch(44.8% 0.119 151.328);
29
- --lua-color-green-900: oklch(39.3% 0.095 152.535);
30
28
  --lua-color-blue-50: oklch(97% 0.014 254.604);
31
29
  --lua-color-blue-100: oklch(93.2% 0.032 255.585);
32
30
  --lua-color-blue-200: oklch(88.2% 0.059 254.128);
@@ -49,10 +47,10 @@
49
47
  --lua-color-black: #000000;
50
48
  --lua-color-white: #fff;
51
49
  --lua-spacing: 4px;
52
- --lua-container-xs: 20rem;
53
50
  --lua-container-md: 28rem;
54
51
  --lua-container-lg: 32rem;
55
52
  --lua-container-2xl: 42rem;
53
+ --lua-container-4xl: 56rem;
56
54
  --lua-text-xs: 12px;
57
55
  --lua-text-xs--line-height: calc(1 / 0.75);
58
56
  --lua-text-sm: 14px;
@@ -72,6 +70,8 @@
72
70
  --lua-font-weight-normal: 400;
73
71
  --lua-font-weight-medium: 500;
74
72
  --lua-font-weight-semibold: 600;
73
+ --lua-font-weight-bold: 700;
74
+ --lua-tracking-wide: 0.025em;
75
75
  --lua-leading-relaxed: 1.625;
76
76
  --lua-radius-sm: calc(var(--radius) - 4px);
77
77
  --lua-radius-md: 6px;
@@ -255,6 +255,20 @@
255
255
  }
256
256
  }
257
257
  @layer utilities {
258
+ #lua-root .lua\:pointer-events-none {
259
+ pointer-events: none;
260
+ }
261
+ #lua-root .lua\:sr-only {
262
+ position: absolute;
263
+ width: 1px;
264
+ height: 1px;
265
+ padding: 0;
266
+ margin: -1px;
267
+ overflow: hidden;
268
+ clip-path: inset(50%);
269
+ white-space: nowrap;
270
+ border-width: 0;
271
+ }
258
272
  #lua-root .lua\:absolute {
259
273
  position: absolute;
260
274
  }
@@ -270,14 +284,20 @@
270
284
  #lua-root .lua\:inset-0 {
271
285
  inset: calc(var(--lua-spacing) * 0);
272
286
  }
273
- #lua-root .lua\:right-4 {
274
- right: calc(var(--lua-spacing) * 4);
287
+ #lua-root .lua\:top-1\/2 {
288
+ top: calc(1/2 * 100%);
289
+ }
290
+ #lua-root .lua\:right-0 {
291
+ right: calc(var(--lua-spacing) * 0);
275
292
  }
276
293
  #lua-root .lua\:bottom-0 {
277
294
  bottom: calc(var(--lua-spacing) * 0);
278
295
  }
279
- #lua-root .lua\:bottom-4 {
280
- bottom: calc(var(--lua-spacing) * 4);
296
+ #lua-root .lua\:left-0 {
297
+ left: calc(var(--lua-spacing) * 0);
298
+ }
299
+ #lua-root .lua\:left-3 {
300
+ left: calc(var(--lua-spacing) * 3);
281
301
  }
282
302
  #lua-root .lua\:z-50 {
283
303
  z-index: 50;
@@ -312,6 +332,9 @@
312
332
  #lua-root .lua\:mt-6 {
313
333
  margin-top: calc(var(--lua-spacing) * 6);
314
334
  }
335
+ #lua-root .lua\:mr-2 {
336
+ margin-right: calc(var(--lua-spacing) * 2);
337
+ }
315
338
  #lua-root .lua\:mr-4 {
316
339
  margin-right: calc(var(--lua-spacing) * 4);
317
340
  }
@@ -330,6 +353,9 @@
330
353
  #lua-root .lua\:mb-4 {
331
354
  margin-bottom: calc(var(--lua-spacing) * 4);
332
355
  }
356
+ #lua-root .lua\:mb-6 {
357
+ margin-bottom: calc(var(--lua-spacing) * 6);
358
+ }
333
359
  #lua-root .lua\:ml-1 {
334
360
  margin-left: calc(var(--lua-spacing) * 1);
335
361
  }
@@ -386,6 +412,9 @@
386
412
  #lua-root .lua\:h-48 {
387
413
  height: calc(var(--lua-spacing) * 48);
388
414
  }
415
+ #lua-root .lua\:h-auto {
416
+ height: auto;
417
+ }
389
418
  #lua-root .lua\:h-full {
390
419
  height: 100%;
391
420
  }
@@ -395,21 +424,18 @@
395
424
  #lua-root .lua\:max-h-full {
396
425
  max-height: 100%;
397
426
  }
398
- #lua-root .lua\:min-h-7 {
399
- min-height: calc(var(--lua-spacing) * 7);
400
- }
401
427
  #lua-root .lua\:min-h-48 {
402
428
  min-height: calc(var(--lua-spacing) * 48);
403
429
  }
404
430
  #lua-root .lua\:min-h-\[320px\] {
405
431
  min-height: 320px;
406
432
  }
433
+ #lua-root .lua\:min-h-full {
434
+ min-height: 100%;
435
+ }
407
436
  #lua-root .lua\:w-1 {
408
437
  width: calc(var(--lua-spacing) * 1);
409
438
  }
410
- #lua-root .lua\:w-1\/3 {
411
- width: calc(1/3 * 100%);
412
- }
413
439
  #lua-root .lua\:w-4 {
414
440
  width: calc(var(--lua-spacing) * 4);
415
441
  }
@@ -432,6 +458,9 @@
432
458
  #lua-root .lua\:max-w-2xl {
433
459
  max-width: var(--lua-container-2xl);
434
460
  }
461
+ #lua-root .lua\:max-w-4xl {
462
+ max-width: var(--lua-container-4xl);
463
+ }
435
464
  #lua-root .lua\:max-w-full {
436
465
  max-width: 100%;
437
466
  }
@@ -441,18 +470,12 @@
441
470
  #lua-root .lua\:max-w-md {
442
471
  max-width: var(--lua-container-md);
443
472
  }
444
- #lua-root .lua\:max-w-xs {
445
- max-width: var(--lua-container-xs);
446
- }
447
473
  #lua-root .lua\:min-w-0 {
448
474
  min-width: calc(var(--lua-spacing) * 0);
449
475
  }
450
476
  #lua-root .lua\:min-w-12 {
451
477
  min-width: calc(var(--lua-spacing) * 12);
452
478
  }
453
- #lua-root .lua\:min-w-16 {
454
- min-width: calc(var(--lua-spacing) * 16);
455
- }
456
479
  #lua-root .lua\:min-w-24 {
457
480
  min-width: calc(var(--lua-spacing) * 24);
458
481
  }
@@ -462,9 +485,6 @@
462
485
  #lua-root .lua\:min-w-\[120px\] {
463
486
  min-width: 120px;
464
487
  }
465
- #lua-root .lua\:min-w-\[140px\] {
466
- min-width: 140px;
467
- }
468
488
  #lua-root .lua\:flex-1 {
469
489
  flex: 1;
470
490
  }
@@ -474,9 +494,20 @@
474
494
  #lua-root .lua\:shrink-0 {
475
495
  flex-shrink: 0;
476
496
  }
497
+ #lua-root .lua\:-translate-x-1\/2 {
498
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
499
+ translate: var(--tw-translate-x) var(--tw-translate-y);
500
+ }
501
+ #lua-root .lua\:-translate-y-1\/2 {
502
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
503
+ translate: var(--tw-translate-x) var(--tw-translate-y);
504
+ }
477
505
  #lua-root .lua\:rotate-90 {
478
506
  rotate: 90deg;
479
507
  }
508
+ #lua-root .lua\:transform {
509
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
510
+ }
480
511
  #lua-root .lua\:animate-spin {
481
512
  animation: var(--lua-animate-spin);
482
513
  }
@@ -662,6 +693,10 @@
662
693
  border-left-style: var(--tw-border-style);
663
694
  border-left-width: 1px;
664
695
  }
696
+ #lua-root .lua\:border-l-4 {
697
+ border-left-style: var(--tw-border-style);
698
+ border-left-width: 4px;
699
+ }
665
700
  #lua-root .lua\:border-blue-200 {
666
701
  border-color: var(--lua-color-blue-200);
667
702
  }
@@ -674,21 +709,9 @@
674
709
  #lua-root .lua\:border-gray-300 {
675
710
  border-color: var(--lua-color-gray-300);
676
711
  }
677
- #lua-root .lua\:border-gray-500 {
678
- border-color: var(--lua-color-gray-500);
679
- }
680
- #lua-root .lua\:border-gray-600 {
681
- border-color: var(--lua-color-gray-600);
682
- }
683
- #lua-root .lua\:border-gray-700 {
684
- border-color: var(--lua-color-gray-700);
685
- }
686
712
  #lua-root .lua\:border-green-200 {
687
713
  border-color: var(--lua-color-green-200);
688
714
  }
689
- #lua-root .lua\:border-green-500 {
690
- border-color: var(--lua-color-green-500);
691
- }
692
715
  #lua-root .lua\:border-red-200 {
693
716
  border-color: var(--lua-color-red-200);
694
717
  }
@@ -698,6 +721,9 @@
698
721
  #lua-root .lua\:border-yellow-200 {
699
722
  border-color: var(--lua-color-yellow-200);
700
723
  }
724
+ #lua-root .lua\:border-l-blue-500 {
725
+ border-left-color: var(--lua-color-blue-500);
726
+ }
701
727
  #lua-root .lua\:bg-black {
702
728
  background-color: var(--lua-color-black);
703
729
  }
@@ -731,30 +757,12 @@
731
757
  #lua-root .lua\:bg-gray-300 {
732
758
  background-color: var(--lua-color-gray-300);
733
759
  }
734
- #lua-root .lua\:bg-gray-600 {
735
- background-color: var(--lua-color-gray-600);
736
- }
737
- #lua-root .lua\:bg-gray-700 {
738
- background-color: var(--lua-color-gray-700);
739
- }
740
- #lua-root .lua\:bg-gray-800 {
741
- background-color: var(--lua-color-gray-800);
742
- }
743
760
  #lua-root .lua\:bg-green-50 {
744
761
  background-color: var(--lua-color-green-50);
745
762
  }
746
763
  #lua-root .lua\:bg-green-100 {
747
764
  background-color: var(--lua-color-green-100);
748
765
  }
749
- #lua-root .lua\:bg-green-500 {
750
- background-color: var(--lua-color-green-500);
751
- }
752
- #lua-root .lua\:bg-green-900\/20 {
753
- background-color: var(--lua-color-green-900);
754
- @supports (color: color-mix(in lab, red, red)) {
755
- background-color: color-mix(in oklab, var(--lua-color-green-900) 20%, transparent);
756
- }
757
- }
758
766
  #lua-root .lua\:bg-red-50 {
759
767
  background-color: var(--lua-color-red-50);
760
768
  }
@@ -827,9 +835,6 @@
827
835
  #lua-root .lua\:py-4 {
828
836
  padding-block: calc(var(--lua-spacing) * 4);
829
837
  }
830
- #lua-root .lua\:py-5 {
831
- padding-block: calc(var(--lua-spacing) * 5);
832
- }
833
838
  #lua-root .lua\:py-8 {
834
839
  padding-block: calc(var(--lua-spacing) * 8);
835
840
  }
@@ -842,15 +847,24 @@
842
847
  #lua-root .lua\:pt-0 {
843
848
  padding-top: calc(var(--lua-spacing) * 0);
844
849
  }
850
+ #lua-root .lua\:pt-2 {
851
+ padding-top: calc(var(--lua-spacing) * 2);
852
+ }
845
853
  #lua-root .lua\:pt-4 {
846
854
  padding-top: calc(var(--lua-spacing) * 4);
847
855
  }
848
856
  #lua-root .lua\:pb-2 {
849
857
  padding-bottom: calc(var(--lua-spacing) * 2);
850
858
  }
859
+ #lua-root .lua\:pb-6 {
860
+ padding-bottom: calc(var(--lua-spacing) * 6);
861
+ }
851
862
  #lua-root .lua\:pb-24 {
852
863
  padding-bottom: calc(var(--lua-spacing) * 24);
853
864
  }
865
+ #lua-root .lua\:pl-10 {
866
+ padding-left: calc(var(--lua-spacing) * 10);
867
+ }
854
868
  #lua-root .lua\:text-center {
855
869
  text-align: center;
856
870
  }
@@ -910,6 +924,10 @@
910
924
  --tw-leading: var(--lua-leading-relaxed);
911
925
  line-height: var(--lua-leading-relaxed);
912
926
  }
927
+ #lua-root .lua\:font-bold {
928
+ --tw-font-weight: var(--lua-font-weight-bold);
929
+ font-weight: var(--lua-font-weight-bold);
930
+ }
913
931
  #lua-root .lua\:font-medium {
914
932
  --tw-font-weight: var(--lua-font-weight-medium);
915
933
  font-weight: var(--lua-font-weight-medium);
@@ -922,6 +940,10 @@
922
940
  --tw-font-weight: var(--lua-font-weight-semibold);
923
941
  font-weight: var(--lua-font-weight-semibold);
924
942
  }
943
+ #lua-root .lua\:tracking-wide {
944
+ --tw-tracking: var(--lua-tracking-wide);
945
+ letter-spacing: var(--lua-tracking-wide);
946
+ }
925
947
  #lua-root .lua\:break-words {
926
948
  overflow-wrap: break-word;
927
949
  }
@@ -934,6 +956,9 @@
934
956
  #lua-root .lua\:whitespace-pre-wrap {
935
957
  white-space: pre-wrap;
936
958
  }
959
+ #lua-root .lua\:text-blue-500 {
960
+ color: var(--lua-color-blue-500);
961
+ }
937
962
  #lua-root .lua\:text-blue-600 {
938
963
  color: var(--lua-color-blue-600);
939
964
  }
@@ -943,12 +968,6 @@
943
968
  #lua-root .lua\:text-blue-800 {
944
969
  color: var(--lua-color-blue-800);
945
970
  }
946
- #lua-root .lua\:text-gray-200 {
947
- color: var(--lua-color-gray-200);
948
- }
949
- #lua-root .lua\:text-gray-300 {
950
- color: var(--lua-color-gray-300);
951
- }
952
971
  #lua-root .lua\:text-gray-400 {
953
972
  color: var(--lua-color-gray-400);
954
973
  }
@@ -1009,11 +1028,8 @@
1009
1028
  #lua-root .lua\:caret-black {
1010
1029
  caret-color: var(--lua-color-black);
1011
1030
  }
1012
- #lua-root .lua\:opacity-60 {
1013
- opacity: 60%;
1014
- }
1015
- #lua-root .lua\:opacity-80 {
1016
- opacity: 80%;
1031
+ #lua-root .lua\:opacity-0 {
1032
+ opacity: 0%;
1017
1033
  }
1018
1034
  #lua-root .lua\:shadow-lg {
1019
1035
  --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
@@ -1051,11 +1067,25 @@
1051
1067
  transition-timing-function: var(--tw-ease, var(--lua-default-transition-timing-function));
1052
1068
  transition-duration: var(--tw-duration, var(--lua-default-transition-duration));
1053
1069
  }
1070
+ #lua-root .lua\:transition-opacity {
1071
+ transition-property: opacity;
1072
+ transition-timing-function: var(--tw-ease, var(--lua-default-transition-timing-function));
1073
+ transition-duration: var(--tw-duration, var(--lua-default-transition-duration));
1074
+ }
1075
+ #lua-root .lua\:transition-shadow {
1076
+ transition-property: box-shadow;
1077
+ transition-timing-function: var(--tw-ease, var(--lua-default-transition-timing-function));
1078
+ transition-duration: var(--tw-duration, var(--lua-default-transition-duration));
1079
+ }
1054
1080
  #lua-root .lua\:transition-transform {
1055
1081
  transition-property: transform, translate, scale, rotate;
1056
1082
  transition-timing-function: var(--tw-ease, var(--lua-default-transition-timing-function));
1057
1083
  transition-duration: var(--tw-duration, var(--lua-default-transition-duration));
1058
1084
  }
1085
+ #lua-root .lua\:duration-200 {
1086
+ --tw-duration: 200ms;
1087
+ transition-duration: 200ms;
1088
+ }
1059
1089
  #lua-root .lua\:select-text {
1060
1090
  -webkit-user-select: text;
1061
1091
  -moz-user-select: text;
@@ -1105,13 +1135,6 @@
1105
1135
  }
1106
1136
  }
1107
1137
  }
1108
- #lua-root .lua\:hover\:border-blue-500 {
1109
- &:hover {
1110
- @media (hover: hover) {
1111
- border-color: var(--lua-color-blue-500);
1112
- }
1113
- }
1114
- }
1115
1138
  #lua-root .lua\:hover\:border-gray-300 {
1116
1139
  &:hover {
1117
1140
  @media (hover: hover) {
@@ -1119,20 +1142,6 @@
1119
1142
  }
1120
1143
  }
1121
1144
  }
1122
- #lua-root .lua\:hover\:border-gray-400 {
1123
- &:hover {
1124
- @media (hover: hover) {
1125
- border-color: var(--lua-color-gray-400);
1126
- }
1127
- }
1128
- }
1129
- #lua-root .lua\:hover\:border-gray-500 {
1130
- &:hover {
1131
- @media (hover: hover) {
1132
- border-color: var(--lua-color-gray-500);
1133
- }
1134
- }
1135
- }
1136
1145
  #lua-root .lua\:hover\:bg-black-hover {
1137
1146
  &:hover {
1138
1147
  @media (hover: hover) {
@@ -1154,20 +1163,6 @@
1154
1163
  }
1155
1164
  }
1156
1165
  }
1157
- #lua-root .lua\:hover\:bg-gray-500 {
1158
- &:hover {
1159
- @media (hover: hover) {
1160
- background-color: var(--lua-color-gray-500);
1161
- }
1162
- }
1163
- }
1164
- #lua-root .lua\:hover\:bg-gray-700 {
1165
- &:hover {
1166
- @media (hover: hover) {
1167
- background-color: var(--lua-color-gray-700);
1168
- }
1169
- }
1170
- }
1171
1166
  #lua-root .lua\:hover\:bg-neutral-200 {
1172
1167
  &:hover {
1173
1168
  @media (hover: hover) {
@@ -1327,16 +1322,6 @@
1327
1322
  pointer-events: none;
1328
1323
  }
1329
1324
  }
1330
- #lua-root .lua\:disabled\:cursor-not-allowed {
1331
- &:disabled {
1332
- cursor: not-allowed;
1333
- }
1334
- }
1335
- #lua-root .lua\:disabled\:border-gray-600 {
1336
- &:disabled {
1337
- border-color: var(--lua-color-gray-600);
1338
- }
1339
- }
1340
1325
  #lua-root .lua\:disabled\:border-transparent {
1341
1326
  &:disabled {
1342
1327
  border-color: transparent;
@@ -1350,11 +1335,6 @@
1350
1335
  }
1351
1336
  }
1352
1337
  }
1353
- #lua-root .lua\:disabled\:bg-gray-700 {
1354
- &:disabled {
1355
- background-color: var(--lua-color-gray-700);
1356
- }
1357
- }
1358
1338
  #lua-root .lua\:disabled\:text-black\/16 {
1359
1339
  &:disabled {
1360
1340
  color: var(--lua-color-black);
@@ -1363,11 +1343,6 @@
1363
1343
  }
1364
1344
  }
1365
1345
  }
1366
- #lua-root .lua\:disabled\:text-gray-500 {
1367
- &:disabled {
1368
- color: var(--lua-color-gray-500);
1369
- }
1370
- }
1371
1346
  #lua-root .lua\:data-\[state\=active\]\:-mb-px {
1372
1347
  &[data-state="active"] {
1373
1348
  margin-bottom: -1px;
@@ -1934,6 +1909,41 @@
1934
1909
  z-index: 1;
1935
1910
  }
1936
1911
  }
1912
+ @property --tw-translate-x {
1913
+ syntax: "*";
1914
+ inherits: false;
1915
+ initial-value: 0;
1916
+ }
1917
+ @property --tw-translate-y {
1918
+ syntax: "*";
1919
+ inherits: false;
1920
+ initial-value: 0;
1921
+ }
1922
+ @property --tw-translate-z {
1923
+ syntax: "*";
1924
+ inherits: false;
1925
+ initial-value: 0;
1926
+ }
1927
+ @property --tw-rotate-x {
1928
+ syntax: "*";
1929
+ inherits: false;
1930
+ }
1931
+ @property --tw-rotate-y {
1932
+ syntax: "*";
1933
+ inherits: false;
1934
+ }
1935
+ @property --tw-rotate-z {
1936
+ syntax: "*";
1937
+ inherits: false;
1938
+ }
1939
+ @property --tw-skew-x {
1940
+ syntax: "*";
1941
+ inherits: false;
1942
+ }
1943
+ @property --tw-skew-y {
1944
+ syntax: "*";
1945
+ inherits: false;
1946
+ }
1937
1947
  @property --tw-space-y-reverse {
1938
1948
  syntax: "*";
1939
1949
  inherits: false;
@@ -1962,6 +1972,10 @@
1962
1972
  syntax: "*";
1963
1973
  inherits: false;
1964
1974
  }
1975
+ @property --tw-tracking {
1976
+ syntax: "*";
1977
+ inherits: false;
1978
+ }
1965
1979
  @property --tw-shadow {
1966
1980
  syntax: "*";
1967
1981
  inherits: false;
@@ -2027,35 +2041,20 @@
2027
2041
  inherits: false;
2028
2042
  initial-value: 0 0 #0000;
2029
2043
  }
2030
- @property --tw-content {
2031
- syntax: "*";
2032
- initial-value: "";
2033
- inherits: false;
2034
- }
2035
- @property --tw-translate-x {
2036
- syntax: "*";
2037
- inherits: false;
2038
- initial-value: 0;
2039
- }
2040
- @property --tw-translate-y {
2044
+ @property --tw-duration {
2041
2045
  syntax: "*";
2042
2046
  inherits: false;
2043
- initial-value: 0;
2044
2047
  }
2045
- @property --tw-translate-z {
2048
+ @property --tw-content {
2046
2049
  syntax: "*";
2050
+ initial-value: "";
2047
2051
  inherits: false;
2048
- initial-value: 0;
2049
2052
  }
2050
2053
  @property --tw-outline-style {
2051
2054
  syntax: "*";
2052
2055
  inherits: false;
2053
2056
  initial-value: solid;
2054
2057
  }
2055
- @property --tw-duration {
2056
- syntax: "*";
2057
- inherits: false;
2058
- }
2059
2058
  @property --tw-scroll-snap-strictness {
2060
2059
  syntax: "*";
2061
2060
  inherits: false;
@@ -2069,12 +2068,21 @@
2069
2068
  @layer properties {
2070
2069
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2071
2070
  #lua-root *, #lua-root ::before, #lua-root ::after, #lua-root ::backdrop {
2071
+ --tw-translate-x: 0;
2072
+ --tw-translate-y: 0;
2073
+ --tw-translate-z: 0;
2074
+ --tw-rotate-x: initial;
2075
+ --tw-rotate-y: initial;
2076
+ --tw-rotate-z: initial;
2077
+ --tw-skew-x: initial;
2078
+ --tw-skew-y: initial;
2072
2079
  --tw-space-y-reverse: 0;
2073
2080
  --tw-space-x-reverse: 0;
2074
2081
  --tw-divide-y-reverse: 0;
2075
2082
  --tw-border-style: solid;
2076
2083
  --tw-leading: initial;
2077
2084
  --tw-font-weight: initial;
2085
+ --tw-tracking: initial;
2078
2086
  --tw-shadow: 0 0 #0000;
2079
2087
  --tw-shadow-color: initial;
2080
2088
  --tw-shadow-alpha: 100%;
@@ -2089,12 +2097,9 @@
2089
2097
  --tw-ring-offset-width: 0px;
2090
2098
  --tw-ring-offset-color: #fff;
2091
2099
  --tw-ring-offset-shadow: 0 0 #0000;
2100
+ --tw-duration: initial;
2092
2101
  --tw-content: "";
2093
- --tw-translate-x: 0;
2094
- --tw-translate-y: 0;
2095
- --tw-translate-z: 0;
2096
2102
  --tw-outline-style: solid;
2097
- --tw-duration: initial;
2098
2103
  --tw-scroll-snap-strictness: proximity;
2099
2104
  }
2100
2105
  }
@@ -3115,7 +3120,6 @@ a:focus-visible,
3115
3120
  .chat-header p {
3116
3121
  margin: 0;
3117
3122
  font-size: 12px;
3118
- color: #cccccc;
3119
3123
  font-style: italic;
3120
3124
  font-family: inherit;
3121
3125
  }
@@ -6941,598 +6945,10 @@ a:focus-visible,
6941
6945
  letter-spacing: 0.5px;
6942
6946
  }
6943
6947
 
6944
- /* Product Management Styles */
6945
- .product-management {
6946
- flex: 1;
6947
- display: flex;
6948
- flex-direction: column;
6949
- overflow: hidden;
6950
- background: #1e1e1e;
6951
- }
6952
-
6953
- .product-header {
6954
- background: #2d2d30;
6955
- color: #cccccc;
6956
- padding: 12px 16px;
6957
- border-bottom: 1px solid #3e3e42;
6958
- display: flex;
6959
- justify-content: space-between;
6960
- align-items: center;
6961
- flex-shrink: 0;
6962
- }
6963
-
6964
- .product-header .header-content {
6965
- display: flex;
6966
- align-items: center;
6967
- gap: 16px;
6968
- }
6969
-
6970
- .product-header h3 {
6971
- margin: 0;
6972
- font-size: 14px;
6973
- font-weight: 600;
6974
- color: #ffffff;
6975
- font-family: inherit;
6976
- }
6977
-
6978
- .product-count {
6979
- color: #8c8c8c;
6980
- font-size: 12px;
6981
- }
6982
-
6983
- .product-header .header-actions {
6984
- display: flex;
6985
- gap: 8px;
6986
- }
6987
-
6988
- .product-header .create-button {
6989
- background: transparent;
6990
- color: #cccccc;
6991
- border: 1px solid #3e3e42;
6992
- border-radius: 4px;
6993
- padding: 6px;
6994
- cursor: pointer;
6995
- font-size: 14px;
6996
- display: flex;
6997
- align-items: center;
6998
- justify-content: center;
6999
- min-width: 32px;
7000
- transition: all 0.2s;
7001
- }
7002
-
7003
- .product-header .create-button:hover {
7004
- background: #007acc;
7005
- border-color: #007acc;
7006
- color: #ffffff;
7007
- }
7008
-
7009
- .product-content {
7010
- flex: 1;
7011
- overflow: hidden;
7012
- display: flex;
7013
- flex-direction: column;
7014
- }
7015
-
7016
- .product-search {
7017
- padding: 16px;
7018
- border-bottom: 1px solid #3e3e42;
7019
- background: #2d2d30;
7020
- flex-shrink: 0;
7021
- }
7022
-
7023
- .search-container {
7024
- display: flex;
7025
- gap: 8px;
7026
- }
7027
-
7028
- .search-input {
7029
- flex: 1;
7030
- background: #1e1e1e;
7031
- border: 1px solid #3e3e42;
7032
- border-radius: 4px;
7033
- color: #ffffff;
7034
- padding: 8px 12px;
7035
- font-size: 14px;
7036
- font-family: inherit;
7037
- }
7038
-
7039
- .search-input:focus {
7040
- outline: none;
7041
- border-color: #007acc;
7042
- }
7043
-
7044
- .search-button {
7045
- background: #007acc;
7046
- color: #ffffff;
7047
- border: none;
7048
- border-radius: 4px;
7049
- padding: 8px 12px;
7050
- cursor: pointer;
7051
- font-size: 14px;
7052
- transition: background 0.2s;
7053
- }
7054
-
7055
- .search-button:hover {
7056
- background: #005a9e;
7057
- }
7058
-
7059
- .products-list {
7060
- flex: 1;
7061
- overflow-y: auto;
7062
- padding: 16px;
7063
- }
7064
-
7065
- .product-item {
7066
- background: #2d2d30;
7067
- border: 1px solid #3e3e42;
7068
- border-radius: 6px;
7069
- padding: 16px;
7070
- margin-bottom: 12px;
7071
- display: flex;
7072
- justify-content: space-between;
7073
- align-items: center;
7074
- cursor: pointer;
7075
- transition: all 0.2s;
7076
- }
7077
-
7078
- .product-item:hover {
7079
- border-color: #007acc;
7080
- background: #323233;
7081
- transform: translateX(2px);
7082
- }
7083
-
7084
- .product-item .product-info {
7085
- flex: 1;
7086
- }
7087
-
7088
- .product-name {
7089
- color: #ffffff;
7090
- font-weight: 600;
7091
- font-size: 16px;
7092
- margin-bottom: 4px;
7093
- }
7094
-
7095
- .product-description {
7096
- color: #cccccc;
7097
- font-size: 14px;
7098
- margin-bottom: 8px;
7099
- line-height: 1.4;
7100
- }
7101
-
7102
- .product-meta {
7103
- color: #8c8c8c;
7104
- font-size: 12px;
7105
- }
7106
-
7107
- .product-arrow {
7108
- color: #007acc;
7109
- font-size: 18px;
7110
- font-weight: bold;
7111
- margin-left: 12px;
7112
- }
7113
-
7114
- .no-products {
7115
- display: flex;
7116
- flex-direction: column;
7117
- align-items: center;
7118
- justify-content: center;
7119
- height: 200px;
7120
- color: #8c8c8c;
7121
- text-align: center;
7122
- }
7123
-
7124
- .no-products-icon {
7125
- font-size: 48px;
7126
- margin-bottom: 16px;
7127
- opacity: 0.6;
7128
- }
7129
-
7130
- .no-products-text {
7131
- margin: 0 0 8px 0;
7132
- color: #cccccc;
7133
- font-size: 16px;
7134
- font-weight: 500;
7135
- }
7136
-
7137
- .no-products-subtext {
7138
- margin: 0;
7139
- color: #8c8c8c;
7140
- font-size: 14px;
7141
- opacity: 0.8;
7142
- }
7143
-
7144
- /* Product Detail Styles */
7145
- .product-detail {
7146
- flex: 1;
7147
- display: flex;
7148
- flex-direction: column;
7149
- overflow: hidden;
7150
- }
7151
-
7152
- .product-detail-header {
7153
- display: flex;
7154
- align-items: center;
7155
- gap: 12px;
7156
- padding: 16px;
7157
- border-bottom: 1px solid #3e3e42;
7158
- background: #2d2d30;
7159
- flex-shrink: 0;
7160
- }
7161
-
7162
- .product-detail-header .back-button {
7163
- background: transparent;
7164
- color: #007acc;
7165
- border: none;
7166
- padding: 4px 8px;
7167
- font-size: 16px;
7168
- cursor: pointer;
7169
- transition: color 0.2s;
7170
- display: flex;
7171
- align-items: center;
7172
- justify-content: center;
7173
- min-width: 32px;
7174
- border-radius: 4px;
7175
- }
7176
-
7177
- .product-detail-header .back-button:hover {
7178
- background: #3e3e42;
7179
- color: #ffffff;
7180
- }
7181
-
7182
- .product-detail-header h4 {
7183
- flex: 1;
7184
- margin: 0;
7185
- color: #ffffff;
7186
- font-size: 16px;
7187
- font-weight: 600;
7188
- }
7189
-
7190
- .product-actions {
7191
- display: flex;
7192
- gap: 8px;
7193
- }
7194
-
7195
- .product-detail .product-info {
7196
- flex: 1;
7197
- padding: 16px;
7198
- overflow-y: auto;
7199
- }
7200
-
7201
- .product-field {
7202
- margin-bottom: 16px;
7203
- padding-bottom: 12px;
7204
- border-bottom: 1px solid #3e3e42;
7205
- }
7206
-
7207
- .product-field:last-child {
7208
- border-bottom: none;
7209
- margin-bottom: 0;
7210
- }
7211
-
7212
- .field-label {
7213
- color: #8c8c8c;
7214
- font-size: 12px;
7215
- font-weight: 500;
7216
- margin-bottom: 4px;
7217
- text-transform: uppercase;
7218
- letter-spacing: 0.5px;
7219
- }
7220
-
7221
- .field-value {
7222
- color: #ffffff;
7223
- font-size: 14px;
7224
- word-break: break-word;
7225
- line-height: 1.4;
7226
- }
7227
-
7228
- /* Product Form Styles */
7229
- .product-form {
7230
- flex: 1;
7231
- padding: 16px;
7232
- overflow-y: auto;
7233
- }
7234
-
7235
- .form-fields {
7236
- display: flex;
7237
- flex-direction: column;
7238
- gap: 16px;
7239
- margin-bottom: 24px;
7240
- }
7241
-
7242
- .form-group {
7243
- display: flex;
7244
- flex-direction: column;
7245
- gap: 6px;
7246
- }
7247
-
7248
- .form-group label {
7249
- color: #cccccc;
7250
- font-size: 14px;
7251
- font-weight: 500;
7252
- }
7253
-
7254
- .form-group input,
7255
- .form-group textarea {
7256
- background: #1e1e1e;
7257
- border: 1px solid #3e3e42;
7258
- border-radius: 4px;
7259
- color: #ffffff;
7260
- padding: 10px 12px;
7261
- font-size: 14px;
7262
- font-family: inherit;
7263
- transition: border-color 0.2s;
7264
- }
7265
-
7266
- .form-group input:focus,
7267
- .form-group textarea:focus {
7268
- outline: none;
7269
- border-color: #007acc;
7270
- }
7271
-
7272
- .add-field-container {
7273
- display: flex;
7274
- flex-direction: column;
7275
- gap: 4px;
7276
- }
7277
-
7278
- .field-hint {
7279
- color: #8c8c8c;
7280
- font-size: 11px;
7281
- font-style: italic;
7282
- }
7283
-
7284
- .form-actions {
7285
- display: flex;
7286
- gap: 12px;
7287
- justify-content: flex-end;
7288
- padding-top: 16px;
7289
- border-top: 1px solid #3e3e42;
7290
- }
7291
-
7292
- .product-form .cancel-button {
7293
- background: transparent;
7294
- border: 1px solid #3e3e42;
7295
- color: #cccccc;
7296
- padding: 8px 16px;
7297
- border-radius: 4px;
7298
- cursor: pointer;
7299
- font-size: 14px;
7300
- transition: all 0.2s;
7301
- }
7302
-
7303
- .product-form .cancel-button:hover:not(:disabled) {
7304
- background: #3e3e42;
7305
- color: #ffffff;
7306
- }
7307
-
7308
- .product-form .save-button {
7309
- background: #007acc;
7310
- color: #ffffff;
7311
- border: none;
7312
- padding: 8px 16px;
7313
- border-radius: 4px;
7314
- cursor: pointer;
7315
- font-size: 14px;
7316
- font-weight: 500;
7317
- transition: background 0.2s;
7318
- }
7319
-
7320
- .product-form .save-button:hover:not(:disabled) {
7321
- background: #005a9e;
7322
- }
7323
-
7324
- .product-form .save-button:disabled {
7325
- background: #666666;
7326
- cursor: not-allowed;
7327
- }
7328
-
7329
- /* Product Pagination */
7330
- .product-pagination {
7331
- background: #2d2d30;
7332
- border-top: 1px solid #3e3e42;
7333
- padding: 12px 16px;
7334
- display: flex;
7335
- justify-content: space-between;
7336
- align-items: center;
7337
- flex-shrink: 0;
7338
- }
7339
-
7340
- .product-pagination .pagination-info {
7341
- color: #8c8c8c;
7342
- font-size: 12px;
7343
- }
7344
-
7345
- .product-pagination .pagination-controls {
7346
- display: flex;
7347
- gap: 8px;
7348
- }
7349
-
7350
- .product-pagination .pagination-button {
7351
- background: transparent;
7352
- color: #cccccc;
7353
- border: 1px solid #3e3e42;
7354
- border-radius: 4px;
7355
- padding: 6px 8px;
7356
- cursor: pointer;
7357
- font-size: 12px;
7358
- transition: all 0.2s;
7359
- min-width: 32px;
7360
- display: flex;
7361
- align-items: center;
7362
- justify-content: center;
7363
- }
7364
-
7365
- .product-pagination .pagination-button:hover:not(:disabled) {
7366
- background: #3e3e42;
7367
- border-color: #007acc;
7368
- color: #007acc;
7369
- }
7370
-
7371
- .product-pagination .pagination-button:disabled {
7372
- opacity: 0.5;
7373
- cursor: not-allowed;
7374
- }
7375
-
7376
- /* Detail Header Styles */
7377
- .detail-header {
7378
- display: flex;
7379
- align-items: center;
7380
- gap: 12px;
7381
- }
7382
-
7383
- .detail-header h3 {
7384
- margin: 0;
7385
- font-size: 14px;
7386
- font-weight: 600;
7387
- color: #ffffff;
7388
- font-family: inherit;
7389
- }
7390
-
7391
- /* Custom Data Management Styles */
7392
-
7393
- .custom-data-search {
7394
- padding: 30px;
7395
- max-width: 800px;
7396
- margin: 0 auto;
7397
- }
7398
-
7399
- .search-header {
7400
- text-align: center;
7401
- margin-bottom: 30px;
7402
- }
7403
-
7404
- .search-header h4 {
7405
- font-size: 24px;
7406
- color: #111827;
7407
- margin-bottom: 8px;
7408
- }
7409
-
7410
- .search-header p {
7411
- font-size: 14px;
7412
- color: #6b7280;
7413
- }
7414
-
7415
- .search-form {
7416
- background: white;
7417
- padding: 30px;
7418
- border-radius: 12px;
7419
- border: 1px solid #e5e7eb;
7420
- margin-bottom: 30px;
7421
- }
7422
-
7423
- .search-form .form-group {
7424
- margin-bottom: 20px;
7425
- }
7426
-
7427
- .search-form .form-group:last-of-type {
7428
- margin-bottom: 0;
7429
- }
7430
-
7431
- .search-button-large {
7432
- width: 100%;
7433
- padding: 14px;
7434
- background: #3b82f6;
7435
- color: white;
7436
- border: none;
7437
- border-radius: 8px;
7438
- font-size: 16px;
7439
- font-weight: 600;
7440
- cursor: pointer;
7441
- transition: all 0.2s;
7442
- margin-top: 20px;
7443
- }
7444
-
7445
- .search-button-large:hover:not(:disabled) {
7446
- background: #2563eb;
7447
- transform: translateY(-1px);
7448
- box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
7449
- }
7450
-
7451
- .search-button-large:disabled {
7452
- background: #9ca3af;
7453
- cursor: not-allowed;
7454
- transform: none;
7455
- }
7456
-
7457
- .search-results {
7458
- margin-top: 30px;
7459
- }
7460
-
7461
- .search-results h5 {
7462
- font-size: 18px;
7463
- color: #111827;
7464
- margin-bottom: 15px;
7465
- font-weight: 600;
7466
- }
7467
-
7468
- .feature-list {
7469
- margin-top: 30px;
7470
- padding: 20px;
7471
- background: #f9fafb;
7472
- border-radius: 8px;
7473
- border: 1px solid #e5e7eb;
7474
- }
7475
-
7476
- .feature-list div {
7477
- display: flex;
7478
- align-items: flex-start;
7479
- gap: 8px;
7480
- margin-bottom: 8px;
7481
- font-size: 14px;
7482
- color: #4b5563;
7483
- }
7484
-
7485
- .feature-list div:last-child {
7486
- margin-bottom: 0;
7487
- }
7488
-
7489
- .feature-item {
7490
- font-weight: 600;
7491
- color: #111827;
7492
- }
7493
-
7494
- .json-editor {
7495
- width: 100%;
7496
- font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
7497
- font-size: 13px;
7498
- line-height: 1.5;
7499
- padding: 12px;
7500
- border: 1px solid #d1d5db;
7501
- border-radius: 8px;
7502
- background: #f9fafb;
7503
- resize: vertical;
7504
- min-height: 200px;
7505
- }
7506
-
7507
- .json-editor:focus {
7508
- outline: none;
7509
- border-color: #3b82f6;
7510
- background: white;
7511
- }
7512
-
7513
- .collection-input {
7514
- background: #f3f4f6 !important;
7515
- cursor: not-allowed;
7516
- }
7517
-
7518
- .field-hint {
7519
- display: block;
7520
- margin-top: 6px;
7521
- font-size: 12px;
7522
- color: #6b7280;
7523
- }
7524
-
7525
- /* JSON display in view mode */
7526
- pre {
7527
- font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
7528
- font-size: 13px;
7529
- line-height: 1.5;
7530
- background: #f9fafb;
7531
- padding: 12px;
7532
- border-radius: 8px;
7533
- overflow-x: auto;
7534
- margin: 0;
7535
- }
6948
+ /* Product Management Styles - Migrated to Luaniverse Components */
6949
+ /* This file is kept for backward compatibility but styles are now handled by Luaniverse components */
6950
+ /* Custom Data Management Styles - Migrated to Luaniverse Components */
6951
+ /* This file is kept for backward compatibility but styles are now handled by Luaniverse components */
7536
6952
 
7537
6953
 
7538
6954