@agenticindiedev/ui 0.3.3 → 0.3.4
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/index.cjs +13 -13
- package/dist/index.js +2379 -2357
- package/dist/styles.css +129 -23
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -853,6 +853,12 @@
|
|
|
853
853
|
.bg-muted {
|
|
854
854
|
background-color: hsl(var(--muted));
|
|
855
855
|
}
|
|
856
|
+
.bg-muted\/30 {
|
|
857
|
+
background-color: hsl(var(--muted));
|
|
858
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
859
|
+
background-color: color-mix(in oklab, hsl(var(--muted)) 30%, transparent);
|
|
860
|
+
}
|
|
861
|
+
}
|
|
856
862
|
.bg-muted\/50 {
|
|
857
863
|
background-color: hsl(var(--muted));
|
|
858
864
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1165,6 +1171,9 @@
|
|
|
1165
1171
|
outline-style: var(--tw-outline-style);
|
|
1166
1172
|
outline-width: 1px;
|
|
1167
1173
|
}
|
|
1174
|
+
.filter {
|
|
1175
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1176
|
+
}
|
|
1168
1177
|
.transition-all {
|
|
1169
1178
|
transition-property: all;
|
|
1170
1179
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -1265,11 +1274,6 @@
|
|
|
1265
1274
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
1266
1275
|
}
|
|
1267
1276
|
}
|
|
1268
|
-
.last\:mb-0 {
|
|
1269
|
-
&:last-child {
|
|
1270
|
-
margin-bottom: calc(var(--spacing) * 0);
|
|
1271
|
-
}
|
|
1272
|
-
}
|
|
1273
1277
|
.last\:rounded-b-md {
|
|
1274
1278
|
&:last-child {
|
|
1275
1279
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
@@ -1367,16 +1371,6 @@
|
|
|
1367
1371
|
}
|
|
1368
1372
|
}
|
|
1369
1373
|
}
|
|
1370
|
-
.hover\:bg-muted\/50 {
|
|
1371
|
-
&:hover {
|
|
1372
|
-
@media (hover: hover) {
|
|
1373
|
-
background-color: hsl(var(--muted));
|
|
1374
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1375
|
-
background-color: color-mix(in oklab, hsl(var(--muted)) 50%, transparent);
|
|
1376
|
-
}
|
|
1377
|
-
}
|
|
1378
|
-
}
|
|
1379
|
-
}
|
|
1380
1374
|
.hover\:bg-pink-50 {
|
|
1381
1375
|
&:hover {
|
|
1382
1376
|
@media (hover: hover) {
|
|
@@ -1574,11 +1568,6 @@
|
|
|
1574
1568
|
}
|
|
1575
1569
|
}
|
|
1576
1570
|
}
|
|
1577
|
-
.focus\:border-ring {
|
|
1578
|
-
&:focus {
|
|
1579
|
-
border-color: hsl(var(--ring));
|
|
1580
|
-
}
|
|
1581
|
-
}
|
|
1582
1571
|
.focus\:bg-accent {
|
|
1583
1572
|
&:focus {
|
|
1584
1573
|
background-color: hsl(var(--accent));
|
|
@@ -1594,6 +1583,18 @@
|
|
|
1594
1583
|
opacity: 100%;
|
|
1595
1584
|
}
|
|
1596
1585
|
}
|
|
1586
|
+
.focus\:ring-0 {
|
|
1587
|
+
&:focus {
|
|
1588
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1589
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1592
|
+
.focus\:ring-offset-0 {
|
|
1593
|
+
&:focus {
|
|
1594
|
+
--tw-ring-offset-width: 0px;
|
|
1595
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1597
1598
|
.focus\:outline-none {
|
|
1598
1599
|
&:focus {
|
|
1599
1600
|
--tw-outline-style: none;
|
|
@@ -1709,6 +1710,11 @@
|
|
|
1709
1710
|
pointer-events: none;
|
|
1710
1711
|
}
|
|
1711
1712
|
}
|
|
1713
|
+
.data-\[disabled\]\:cursor-not-allowed {
|
|
1714
|
+
&[data-disabled] {
|
|
1715
|
+
cursor: not-allowed;
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1712
1718
|
.data-\[disabled\]\:opacity-50 {
|
|
1713
1719
|
&[data-disabled] {
|
|
1714
1720
|
opacity: 50%;
|
|
@@ -2076,10 +2082,36 @@
|
|
|
2076
2082
|
border-bottom-width: 1px;
|
|
2077
2083
|
}
|
|
2078
2084
|
}
|
|
2079
|
-
.\[\&_tr
|
|
2085
|
+
.\[\&_tr\]\:border-input {
|
|
2086
|
+
& tr {
|
|
2087
|
+
border-color: hsl(var(--input));
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
2090
|
+
.\[\&_tr\:hover\]\:bg-muted\/50 {
|
|
2091
|
+
& tr:hover {
|
|
2092
|
+
background-color: hsl(var(--muted));
|
|
2093
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2094
|
+
background-color: color-mix(in oklab, hsl(var(--muted)) 50%, transparent);
|
|
2095
|
+
}
|
|
2096
|
+
}
|
|
2097
|
+
}
|
|
2098
|
+
.\[\&_tr\:last-child\]\:border-b-0 {
|
|
2080
2099
|
& tr:last-child {
|
|
2081
|
-
border-style: var(--tw-border-style);
|
|
2082
|
-
border-width: 0px;
|
|
2100
|
+
border-bottom-style: var(--tw-border-style);
|
|
2101
|
+
border-bottom-width: 0px;
|
|
2102
|
+
}
|
|
2103
|
+
}
|
|
2104
|
+
.\[\&_tr\:nth-child\(even\)\]\:bg-muted\/30 {
|
|
2105
|
+
& tr:nth-child(even) {
|
|
2106
|
+
background-color: hsl(var(--muted));
|
|
2107
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2108
|
+
background-color: color-mix(in oklab, hsl(var(--muted)) 30%, transparent);
|
|
2109
|
+
}
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
.\[\&_tr\:nth-child\(odd\)\]\:bg-background {
|
|
2113
|
+
& tr:nth-child(odd) {
|
|
2114
|
+
background-color: hsl(var(--background));
|
|
2083
2115
|
}
|
|
2084
2116
|
}
|
|
2085
2117
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
|
|
@@ -2087,6 +2119,14 @@
|
|
|
2087
2119
|
padding-right: calc(var(--spacing) * 0);
|
|
2088
2120
|
}
|
|
2089
2121
|
}
|
|
2122
|
+
.\[\&\:nth-child\(even\)\]\:bg-muted\/30 {
|
|
2123
|
+
&:nth-child(even) {
|
|
2124
|
+
background-color: hsl(var(--muted));
|
|
2125
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2126
|
+
background-color: color-mix(in oklab, hsl(var(--muted)) 30%, transparent);
|
|
2127
|
+
}
|
|
2128
|
+
}
|
|
2129
|
+
}
|
|
2090
2130
|
.\[\&\>span\]\:line-clamp-1 {
|
|
2091
2131
|
&>span {
|
|
2092
2132
|
overflow: hidden;
|
|
@@ -2391,6 +2431,59 @@
|
|
|
2391
2431
|
inherits: false;
|
|
2392
2432
|
initial-value: solid;
|
|
2393
2433
|
}
|
|
2434
|
+
@property --tw-blur {
|
|
2435
|
+
syntax: "*";
|
|
2436
|
+
inherits: false;
|
|
2437
|
+
}
|
|
2438
|
+
@property --tw-brightness {
|
|
2439
|
+
syntax: "*";
|
|
2440
|
+
inherits: false;
|
|
2441
|
+
}
|
|
2442
|
+
@property --tw-contrast {
|
|
2443
|
+
syntax: "*";
|
|
2444
|
+
inherits: false;
|
|
2445
|
+
}
|
|
2446
|
+
@property --tw-grayscale {
|
|
2447
|
+
syntax: "*";
|
|
2448
|
+
inherits: false;
|
|
2449
|
+
}
|
|
2450
|
+
@property --tw-hue-rotate {
|
|
2451
|
+
syntax: "*";
|
|
2452
|
+
inherits: false;
|
|
2453
|
+
}
|
|
2454
|
+
@property --tw-invert {
|
|
2455
|
+
syntax: "*";
|
|
2456
|
+
inherits: false;
|
|
2457
|
+
}
|
|
2458
|
+
@property --tw-opacity {
|
|
2459
|
+
syntax: "*";
|
|
2460
|
+
inherits: false;
|
|
2461
|
+
}
|
|
2462
|
+
@property --tw-saturate {
|
|
2463
|
+
syntax: "*";
|
|
2464
|
+
inherits: false;
|
|
2465
|
+
}
|
|
2466
|
+
@property --tw-sepia {
|
|
2467
|
+
syntax: "*";
|
|
2468
|
+
inherits: false;
|
|
2469
|
+
}
|
|
2470
|
+
@property --tw-drop-shadow {
|
|
2471
|
+
syntax: "*";
|
|
2472
|
+
inherits: false;
|
|
2473
|
+
}
|
|
2474
|
+
@property --tw-drop-shadow-color {
|
|
2475
|
+
syntax: "*";
|
|
2476
|
+
inherits: false;
|
|
2477
|
+
}
|
|
2478
|
+
@property --tw-drop-shadow-alpha {
|
|
2479
|
+
syntax: "<percentage>";
|
|
2480
|
+
inherits: false;
|
|
2481
|
+
initial-value: 100%;
|
|
2482
|
+
}
|
|
2483
|
+
@property --tw-drop-shadow-size {
|
|
2484
|
+
syntax: "*";
|
|
2485
|
+
inherits: false;
|
|
2486
|
+
}
|
|
2394
2487
|
@property --tw-duration {
|
|
2395
2488
|
syntax: "*";
|
|
2396
2489
|
inherits: false;
|
|
@@ -2467,6 +2560,19 @@
|
|
|
2467
2560
|
--tw-ring-offset-color: #fff;
|
|
2468
2561
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2469
2562
|
--tw-outline-style: solid;
|
|
2563
|
+
--tw-blur: initial;
|
|
2564
|
+
--tw-brightness: initial;
|
|
2565
|
+
--tw-contrast: initial;
|
|
2566
|
+
--tw-grayscale: initial;
|
|
2567
|
+
--tw-hue-rotate: initial;
|
|
2568
|
+
--tw-invert: initial;
|
|
2569
|
+
--tw-opacity: initial;
|
|
2570
|
+
--tw-saturate: initial;
|
|
2571
|
+
--tw-sepia: initial;
|
|
2572
|
+
--tw-drop-shadow: initial;
|
|
2573
|
+
--tw-drop-shadow-color: initial;
|
|
2574
|
+
--tw-drop-shadow-alpha: 100%;
|
|
2575
|
+
--tw-drop-shadow-size: initial;
|
|
2470
2576
|
--tw-duration: initial;
|
|
2471
2577
|
--tw-ease: initial;
|
|
2472
2578
|
}
|
package/package.json
CHANGED