@nurix/ui-component-library 1.1.4-stage.113 → 1.1.4-stage.115
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.d.mts +40 -1
- package/dist/index.d.ts +40 -1
- package/dist/index.js +700 -567
- package/dist/index.mjs +609 -477
- package/dist/styles.css +58 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -379,6 +379,9 @@
|
|
|
379
379
|
.lego-land .mt-8 {
|
|
380
380
|
margin-top: calc(var(--spacing) * 8);
|
|
381
381
|
}
|
|
382
|
+
.lego-land .mt-auto {
|
|
383
|
+
margin-top: auto;
|
|
384
|
+
}
|
|
382
385
|
.lego-land .mt-px {
|
|
383
386
|
margin-top: 1px;
|
|
384
387
|
}
|
|
@@ -575,6 +578,9 @@
|
|
|
575
578
|
.lego-land .h-\[220px\] {
|
|
576
579
|
height: 220px;
|
|
577
580
|
}
|
|
581
|
+
.lego-land .h-\[600px\] {
|
|
582
|
+
height: 600px;
|
|
583
|
+
}
|
|
578
584
|
.lego-land .h-\[var\(--input-height\)\] {
|
|
579
585
|
height: var(--input-height);
|
|
580
586
|
}
|
|
@@ -731,6 +737,9 @@
|
|
|
731
737
|
.lego-land .w-\[400px\] {
|
|
732
738
|
width: 400px;
|
|
733
739
|
}
|
|
740
|
+
.lego-land .w-\[420px\] {
|
|
741
|
+
width: 420px;
|
|
742
|
+
}
|
|
734
743
|
.lego-land .w-\[500px\] {
|
|
735
744
|
width: 500px;
|
|
736
745
|
}
|
|
@@ -746,6 +755,9 @@
|
|
|
746
755
|
.lego-land .w-\[600px\] {
|
|
747
756
|
width: 600px;
|
|
748
757
|
}
|
|
758
|
+
.lego-land .w-\[620px\] {
|
|
759
|
+
width: 620px;
|
|
760
|
+
}
|
|
749
761
|
.lego-land .w-\[960px\] {
|
|
750
762
|
width: 960px;
|
|
751
763
|
}
|
|
@@ -1109,10 +1121,22 @@
|
|
|
1109
1121
|
border-top-left-radius: var(--radius-xl);
|
|
1110
1122
|
border-top-right-radius: var(--radius-xl);
|
|
1111
1123
|
}
|
|
1124
|
+
.lego-land .rounded-l-2xl {
|
|
1125
|
+
border-top-left-radius: var(--radius-2xl);
|
|
1126
|
+
border-bottom-left-radius: var(--radius-2xl);
|
|
1127
|
+
}
|
|
1112
1128
|
.lego-land .rounded-l-\[16px\] {
|
|
1113
1129
|
border-top-left-radius: 16px;
|
|
1114
1130
|
border-bottom-left-radius: 16px;
|
|
1115
1131
|
}
|
|
1132
|
+
.lego-land .rounded-r-2xl {
|
|
1133
|
+
border-top-right-radius: var(--radius-2xl);
|
|
1134
|
+
border-bottom-right-radius: var(--radius-2xl);
|
|
1135
|
+
}
|
|
1136
|
+
.lego-land .rounded-b {
|
|
1137
|
+
border-bottom-right-radius: 0.25rem;
|
|
1138
|
+
border-bottom-left-radius: 0.25rem;
|
|
1139
|
+
}
|
|
1116
1140
|
.lego-land .rounded-b-2xl {
|
|
1117
1141
|
border-bottom-right-radius: var(--radius-2xl);
|
|
1118
1142
|
border-bottom-left-radius: var(--radius-2xl);
|
|
@@ -1400,6 +1424,9 @@
|
|
|
1400
1424
|
.lego-land .p-4 {
|
|
1401
1425
|
padding: calc(var(--spacing) * 4);
|
|
1402
1426
|
}
|
|
1427
|
+
.lego-land .p-5 {
|
|
1428
|
+
padding: calc(var(--spacing) * 5);
|
|
1429
|
+
}
|
|
1403
1430
|
.lego-land .p-6 {
|
|
1404
1431
|
padding: calc(var(--spacing) * 6);
|
|
1405
1432
|
}
|
|
@@ -2266,6 +2293,13 @@
|
|
|
2266
2293
|
}
|
|
2267
2294
|
}
|
|
2268
2295
|
}
|
|
2296
|
+
.lego-land .hover\:border-token-light {
|
|
2297
|
+
.lego-land &:hover {
|
|
2298
|
+
@media (hover: hover) {
|
|
2299
|
+
border-color: hsl(var(--border-light));
|
|
2300
|
+
}
|
|
2301
|
+
}
|
|
2302
|
+
}
|
|
2269
2303
|
.lego-land .hover\:bg-interaction-hov-opacity-primary {
|
|
2270
2304
|
.lego-land &:hover {
|
|
2271
2305
|
@media (hover: hover) {
|
|
@@ -2318,6 +2352,14 @@
|
|
|
2318
2352
|
}
|
|
2319
2353
|
}
|
|
2320
2354
|
}
|
|
2355
|
+
.lego-land .hover\:shadow-lg {
|
|
2356
|
+
.lego-land &:hover {
|
|
2357
|
+
@media (hover: hover) {
|
|
2358
|
+
--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));
|
|
2359
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2360
|
+
}
|
|
2361
|
+
}
|
|
2362
|
+
}
|
|
2321
2363
|
.lego-land .hover\:before\:bg-interaction-hov-opacity-primary {
|
|
2322
2364
|
.lego-land &:hover {
|
|
2323
2365
|
@media (hover: hover) {
|
|
@@ -2414,6 +2456,11 @@
|
|
|
2414
2456
|
scale: 0.96;
|
|
2415
2457
|
}
|
|
2416
2458
|
}
|
|
2459
|
+
.lego-land .active\:scale-\[0\.955\] {
|
|
2460
|
+
.lego-land &:active {
|
|
2461
|
+
scale: 0.955;
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2417
2464
|
.lego-land .active\:cursor-grabbing {
|
|
2418
2465
|
.lego-land &:active {
|
|
2419
2466
|
cursor: grabbing;
|
|
@@ -2452,6 +2499,12 @@
|
|
|
2452
2499
|
background-color: hsl(var(--bg-grey));
|
|
2453
2500
|
}
|
|
2454
2501
|
}
|
|
2502
|
+
.lego-land .active\:shadow-sm {
|
|
2503
|
+
.lego-land &:active {
|
|
2504
|
+
--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));
|
|
2505
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2455
2508
|
.lego-land .active\:before\:bg-interaction-pressed-opacity-primary {
|
|
2456
2509
|
.lego-land &:active {
|
|
2457
2510
|
.lego-land &::before {
|
|
@@ -2725,6 +2778,11 @@
|
|
|
2725
2778
|
color: hsl(var(--text-brand)) !important;
|
|
2726
2779
|
}
|
|
2727
2780
|
}
|
|
2781
|
+
.lego-land .\[\&_\[data-filter-separator\]\]\:\!hidden {
|
|
2782
|
+
.lego-land & [data-filter-separator] {
|
|
2783
|
+
display: none !important;
|
|
2784
|
+
}
|
|
2785
|
+
}
|
|
2728
2786
|
.lego-land .\[\&_button\[data-state\]\]\:\!rounded-none {
|
|
2729
2787
|
.lego-land & button[data-state] {
|
|
2730
2788
|
border-radius: 0 !important;
|