lua-cli 2.5.0 → 2.5.1
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/CHANGELOG.md +7 -0
- package/dist/common/user.instance.d.ts +1 -0
- package/dist/web/app.css +85 -2
- package/dist/web/app.js +43 -43
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.5.1] - 2025-10-07
|
|
9
|
+
|
|
10
|
+
### 🐛 Bug Fixes
|
|
11
|
+
- **TypeScript Index Signature**: Added index signature to `UserDataInstance` class to fix TypeScript linting errors
|
|
12
|
+
- Resolves "Property does not exist on type" errors when accessing dynamic properties like `user.name`
|
|
13
|
+
- Now properly typed for dynamic property access via Proxy
|
|
14
|
+
|
|
8
15
|
## [2.5.0] - 2025-10-07
|
|
9
16
|
|
|
10
17
|
### ✨ New Features
|
|
@@ -8,6 +8,7 @@ import { UserDataAPI } from "../types/index.js";
|
|
|
8
8
|
export default class UserDataInstance {
|
|
9
9
|
data: Record<string, any>;
|
|
10
10
|
private userAPI;
|
|
11
|
+
[key: string]: any;
|
|
11
12
|
/**
|
|
12
13
|
* Creates a new UserDataInstance with proxy support for direct property access
|
|
13
14
|
* @param api - The UserDataAPI instance for making API calls
|
package/dist/web/app.css
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
--lua-color-red-50: oklch(97.1% 0.013 17.38);
|
|
11
11
|
--lua-color-red-100: oklch(93.6% 0.032 17.717);
|
|
12
12
|
--lua-color-red-200: oklch(88.5% 0.062 18.334);
|
|
13
|
+
--lua-color-red-500: oklch(63.7% 0.237 25.331);
|
|
13
14
|
--lua-color-red-600: oklch(57.7% 0.245 27.325);
|
|
14
15
|
--lua-color-red-700: oklch(50.5% 0.213 27.518);
|
|
15
16
|
--lua-color-red-800: oklch(44.4% 0.177 26.899);
|
|
@@ -293,6 +294,9 @@
|
|
|
293
294
|
#lua-root .lua\:mx-4 {
|
|
294
295
|
margin-inline: calc(var(--lua-spacing) * 4);
|
|
295
296
|
}
|
|
297
|
+
#lua-root .lua\:mx-auto {
|
|
298
|
+
margin-inline: auto;
|
|
299
|
+
}
|
|
296
300
|
#lua-root .lua\:mt-0 {
|
|
297
301
|
margin-top: calc(var(--lua-spacing) * 0);
|
|
298
302
|
}
|
|
@@ -335,6 +339,12 @@
|
|
|
335
339
|
#lua-root .lua\:ml-4 {
|
|
336
340
|
margin-left: calc(var(--lua-spacing) * 4);
|
|
337
341
|
}
|
|
342
|
+
#lua-root .lua\:line-clamp-2 {
|
|
343
|
+
overflow: hidden;
|
|
344
|
+
display: -webkit-box;
|
|
345
|
+
-webkit-box-orient: vertical;
|
|
346
|
+
-webkit-line-clamp: 2;
|
|
347
|
+
}
|
|
338
348
|
#lua-root .lua\:block {
|
|
339
349
|
display: block;
|
|
340
350
|
}
|
|
@@ -370,12 +380,21 @@
|
|
|
370
380
|
#lua-root .lua\:h-10 {
|
|
371
381
|
height: calc(var(--lua-spacing) * 10);
|
|
372
382
|
}
|
|
383
|
+
#lua-root .lua\:h-12 {
|
|
384
|
+
height: calc(var(--lua-spacing) * 12);
|
|
385
|
+
}
|
|
373
386
|
#lua-root .lua\:h-48 {
|
|
374
387
|
height: calc(var(--lua-spacing) * 48);
|
|
375
388
|
}
|
|
376
389
|
#lua-root .lua\:h-full {
|
|
377
390
|
height: 100%;
|
|
378
391
|
}
|
|
392
|
+
#lua-root .lua\:max-h-96 {
|
|
393
|
+
max-height: calc(var(--lua-spacing) * 96);
|
|
394
|
+
}
|
|
395
|
+
#lua-root .lua\:max-h-full {
|
|
396
|
+
max-height: 100%;
|
|
397
|
+
}
|
|
379
398
|
#lua-root .lua\:min-h-7 {
|
|
380
399
|
min-height: calc(var(--lua-spacing) * 7);
|
|
381
400
|
}
|
|
@@ -400,6 +419,9 @@
|
|
|
400
419
|
#lua-root .lua\:w-8 {
|
|
401
420
|
width: calc(var(--lua-spacing) * 8);
|
|
402
421
|
}
|
|
422
|
+
#lua-root .lua\:w-12 {
|
|
423
|
+
width: calc(var(--lua-spacing) * 12);
|
|
424
|
+
}
|
|
403
425
|
#lua-root .lua\:w-fit {
|
|
404
426
|
width: -moz-fit-content;
|
|
405
427
|
width: fit-content;
|
|
@@ -473,6 +495,9 @@
|
|
|
473
495
|
#lua-root .lua\:grid-cols-1 {
|
|
474
496
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
475
497
|
}
|
|
498
|
+
#lua-root .lua\:grid-cols-2 {
|
|
499
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
500
|
+
}
|
|
476
501
|
#lua-root .lua\:flex-col {
|
|
477
502
|
flex-direction: column;
|
|
478
503
|
}
|
|
@@ -550,6 +575,20 @@
|
|
|
550
575
|
margin-block-end: calc(calc(var(--lua-spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
|
|
551
576
|
}
|
|
552
577
|
}
|
|
578
|
+
#lua-root .lua\:space-y-6 {
|
|
579
|
+
:where(& > :not(:last-child)) {
|
|
580
|
+
--tw-space-y-reverse: 0;
|
|
581
|
+
margin-block-start: calc(calc(var(--lua-spacing) * 6) * var(--tw-space-y-reverse));
|
|
582
|
+
margin-block-end: calc(calc(var(--lua-spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
#lua-root .lua\:space-x-2 {
|
|
586
|
+
:where(& > :not(:last-child)) {
|
|
587
|
+
--tw-space-x-reverse: 0;
|
|
588
|
+
margin-inline-start: calc(calc(var(--lua-spacing) * 2) * var(--tw-space-x-reverse));
|
|
589
|
+
margin-inline-end: calc(calc(var(--lua-spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
590
|
+
}
|
|
591
|
+
}
|
|
553
592
|
#lua-root .lua\:divide-y {
|
|
554
593
|
:where(& > :not(:last-child)) {
|
|
555
594
|
--tw-divide-y-reverse: 0;
|
|
@@ -653,6 +692,9 @@
|
|
|
653
692
|
#lua-root .lua\:border-red-200 {
|
|
654
693
|
border-color: var(--lua-color-red-200);
|
|
655
694
|
}
|
|
695
|
+
#lua-root .lua\:border-transparent {
|
|
696
|
+
border-color: transparent;
|
|
697
|
+
}
|
|
656
698
|
#lua-root .lua\:border-yellow-200 {
|
|
657
699
|
border-color: var(--lua-color-yellow-200);
|
|
658
700
|
}
|
|
@@ -794,6 +836,12 @@
|
|
|
794
836
|
#lua-root .lua\:py-10 {
|
|
795
837
|
padding-block: calc(var(--lua-spacing) * 10);
|
|
796
838
|
}
|
|
839
|
+
#lua-root .lua\:py-12 {
|
|
840
|
+
padding-block: calc(var(--lua-spacing) * 12);
|
|
841
|
+
}
|
|
842
|
+
#lua-root .lua\:pt-0 {
|
|
843
|
+
padding-top: calc(var(--lua-spacing) * 0);
|
|
844
|
+
}
|
|
797
845
|
#lua-root .lua\:pt-4 {
|
|
798
846
|
padding-top: calc(var(--lua-spacing) * 4);
|
|
799
847
|
}
|
|
@@ -886,9 +934,15 @@
|
|
|
886
934
|
#lua-root .lua\:whitespace-pre-wrap {
|
|
887
935
|
white-space: pre-wrap;
|
|
888
936
|
}
|
|
937
|
+
#lua-root .lua\:text-blue-600 {
|
|
938
|
+
color: var(--lua-color-blue-600);
|
|
939
|
+
}
|
|
889
940
|
#lua-root .lua\:text-blue-700 {
|
|
890
941
|
color: var(--lua-color-blue-700);
|
|
891
942
|
}
|
|
943
|
+
#lua-root .lua\:text-blue-800 {
|
|
944
|
+
color: var(--lua-color-blue-800);
|
|
945
|
+
}
|
|
892
946
|
#lua-root .lua\:text-gray-200 {
|
|
893
947
|
color: var(--lua-color-gray-200);
|
|
894
948
|
}
|
|
@@ -922,6 +976,9 @@
|
|
|
922
976
|
#lua-root .lua\:text-green-800 {
|
|
923
977
|
color: var(--lua-color-green-800);
|
|
924
978
|
}
|
|
979
|
+
#lua-root .lua\:text-red-500 {
|
|
980
|
+
color: var(--lua-color-red-500);
|
|
981
|
+
}
|
|
925
982
|
#lua-root .lua\:text-red-600 {
|
|
926
983
|
color: var(--lua-color-red-600);
|
|
927
984
|
}
|
|
@@ -1332,6 +1389,11 @@
|
|
|
1332
1389
|
background-color: var(--lua-color-gray-50);
|
|
1333
1390
|
}
|
|
1334
1391
|
}
|
|
1392
|
+
#lua-root .lua\:data-\[state\=active\]\:bg-white {
|
|
1393
|
+
&[data-state="active"] {
|
|
1394
|
+
background-color: var(--lua-color-white);
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1335
1397
|
#lua-root .lua\:data-\[state\=active\]\:text-blue-600 {
|
|
1336
1398
|
&[data-state="active"] {
|
|
1337
1399
|
color: var(--lua-color-blue-600);
|
|
@@ -1342,6 +1404,12 @@
|
|
|
1342
1404
|
color: var(--lua-color-gray-900);
|
|
1343
1405
|
}
|
|
1344
1406
|
}
|
|
1407
|
+
#lua-root .lua\:data-\[state\=active\]\:shadow-sm {
|
|
1408
|
+
&[data-state="active"] {
|
|
1409
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1410
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1345
1413
|
#lua-root .lua\:data-\[state\=inactive\]\:hidden {
|
|
1346
1414
|
&[data-state="inactive"] {
|
|
1347
1415
|
display: none;
|
|
@@ -1352,6 +1420,16 @@
|
|
|
1352
1420
|
margin-inline: calc(var(--lua-spacing) * 5);
|
|
1353
1421
|
}
|
|
1354
1422
|
}
|
|
1423
|
+
#lua-root .lua\:sm\:grid-cols-2 {
|
|
1424
|
+
@media (width >= 40rem) {
|
|
1425
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
#lua-root .lua\:lg\:grid-cols-3 {
|
|
1429
|
+
@media (width >= 64rem) {
|
|
1430
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1355
1433
|
}
|
|
1356
1434
|
@layer base {
|
|
1357
1435
|
#lua-root *, #lua-root ::after, #lua-root ::before, #lua-root ::backdrop, #lua-root ::file-selector-button {
|
|
@@ -1861,6 +1939,11 @@
|
|
|
1861
1939
|
inherits: false;
|
|
1862
1940
|
initial-value: 0;
|
|
1863
1941
|
}
|
|
1942
|
+
@property --tw-space-x-reverse {
|
|
1943
|
+
syntax: "*";
|
|
1944
|
+
inherits: false;
|
|
1945
|
+
initial-value: 0;
|
|
1946
|
+
}
|
|
1864
1947
|
@property --tw-divide-y-reverse {
|
|
1865
1948
|
syntax: "*";
|
|
1866
1949
|
inherits: false;
|
|
@@ -1987,6 +2070,7 @@
|
|
|
1987
2070
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1988
2071
|
#lua-root *, #lua-root ::before, #lua-root ::after, #lua-root ::backdrop {
|
|
1989
2072
|
--tw-space-y-reverse: 0;
|
|
2073
|
+
--tw-space-x-reverse: 0;
|
|
1990
2074
|
--tw-divide-y-reverse: 0;
|
|
1991
2075
|
--tw-border-style: solid;
|
|
1992
2076
|
--tw-leading: initial;
|
|
@@ -2667,7 +2751,6 @@ a:focus-visible,
|
|
|
2667
2751
|
|
|
2668
2752
|
.logs-container {
|
|
2669
2753
|
background: #1e1e1e;
|
|
2670
|
-
border-top: 1px solid #3e3e42;
|
|
2671
2754
|
display: flex;
|
|
2672
2755
|
flex-direction: column;
|
|
2673
2756
|
min-height: 150px;
|
|
@@ -2678,7 +2761,7 @@ a:focus-visible,
|
|
|
2678
2761
|
|
|
2679
2762
|
.logs-resize-handle {
|
|
2680
2763
|
height: 4px;
|
|
2681
|
-
background: #
|
|
2764
|
+
background: #d1d5dc;
|
|
2682
2765
|
cursor: row-resize;
|
|
2683
2766
|
position: relative;
|
|
2684
2767
|
transition: background-color 0.2s;
|