@tight-embedded/react 6.8.1 → 6.9.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/dist/index.css CHANGED
@@ -102,8 +102,9 @@
102
102
  --Tight-colors-red400: #F45C5C;
103
103
  --Tight-colors-red500: #E84747;
104
104
  --Tight-colors-red700: #E42525;
105
- --Tight-colors-template-appBackground: var(--Tight-colors-white200);
106
- --Tight-colors-template-appBackground-weak: hsl(from var(--Tight-colors-template-appBackground) h max(calc(s - 5), 0) min(calc(l + 12), 93));
105
+ --Tight-colors-template-background: var(--Tight-colors-white200);
106
+ --Tight-colors-template-background-weak: hsl(from var(--Tight-colors-surface-background) h max(calc(s - 5), 0) min(calc(l + 12), 93));
107
+ --Tight-colors-template-appBackground: var(--Tight-colors-surface-background);
107
108
  --Tight-colors-template-foreground: var(--Tight-colors-white100);
108
109
  --Tight-colors-template-foreground-weak: hsl(from var(--Tight-colors-template-foreground) h max(calc(s - 5), 0) min(calc(l + 12), 93));
109
110
  --Tight-colors-template-typography: var(--Tight-colors-black700);
@@ -152,23 +153,42 @@
152
153
  --Tight-colors-template-danger-strongest: hsl(from var(--Tight-colors-template-danger-stronger) h min(calc(s + 5), 100) max(calc(l - 18), 5));
153
154
  --Tight-lineHeights-template: normal;
154
155
  --Tight-letterSpacings-template: normal;
155
- --Tight-fonts-base: Duplet Regular, sans-serif;
156
- --Tight-fontSizes-sm: 12px;
157
- --Tight-fontSizes-md: 14px;
158
- --Tight-fontSizes-lg: 16px;
159
- --Tight-fontSizes-xl: 20px;
160
- --Tight-fontSizes-2xl: 24px;
161
- --Tight-fontWeights-sm: 400;
162
- --Tight-fontWeights-md: 600;
163
- --Tight-fontWeights-lg: 900;
156
+ --Tight-fonts-template: Duplet Regular, sans-serif;
157
+ --Tight-fonts-base: var(--Tight-fonts-template);
158
+ --Tight-fontSizes-template: 16px;
159
+ --Tight-fontSizes-template-xs: calc(calc(var(--Tight-fontSizes-template) - 2px) - 2px);
160
+ --Tight-fontSizes-template-sm: calc(var(--Tight-fontSizes-template) - 2px);
161
+ --Tight-fontSizes-template-lg: calc(var(--Tight-fontSizes-template) + 4px);
162
+ --Tight-fontSizes-template-xl: calc(var(--Tight-fontSizes-template-lg) + 4px);
163
+ --Tight-fontSizes-sm: var(--Tight-fontSizes-template-xs);
164
+ --Tight-fontSizes-md: var(--Tight-fontSizes-template-sm);
165
+ --Tight-fontSizes-lg: var(--Tight-fontSizes-template);
166
+ --Tight-fontSizes-xl: var(--Tight-fontSizes-template-lg);
167
+ --Tight-fontSizes-2xl: var(--Tight-fontSizes-template-xl);
168
+ --Tight-fontWeights-template-sm: 400;
169
+ --Tight-fontWeights-template-md: 600;
170
+ --Tight-fontWeights-template-lg: 900;
171
+ --Tight-fontWeights-sm: var(--Tight-fontWeights-template-sm);
172
+ --Tight-fontWeights-md: var(--Tight-fontWeights-template-md);
173
+ --Tight-fontWeights-lg: var(--Tight-fontWeights-template-lg);
164
174
  --Tight-radii-zero: 0;
165
- --Tight-radii-sm: 1px;
166
- --Tight-radii-md: 2px;
167
- --Tight-radii-lg: 4px;
168
- --Tight-borderWidths-sm: 0.5px;
169
- --Tight-borderWidths-md: 1px;
170
- --Tight-borderWidths-lg: 1px;
171
- --Tight-borderWidths-xl: 2px;
175
+ --Tight-radii-full: 9999px;
176
+ --Tight-radii-template: 4px;
177
+ --Tight-radii-template-sm: var(--Tight-radii-template);
178
+ --Tight-radii-template-md: var(--Tight-radii-template);
179
+ --Tight-radii-template-lg: var(--Tight-radii-template);
180
+ --Tight-radii-sm: var(--Tight-radii-template-sm);
181
+ --Tight-radii-md: var(--Tight-radii-template-md);
182
+ --Tight-radii-lg: var(--Tight-radii-template-lg);
183
+ --Tight-borderWidths-template: 1px;
184
+ --Tight-borderWidths-template-sm: var(--Tight-borderWidths-template);
185
+ --Tight-borderWidths-template-md: var(--Tight-borderWidths-template);
186
+ --Tight-borderWidths-template-lg: var(--Tight-borderWidths-template);
187
+ --Tight-borderWidths-template-xl: var(--Tight-borderWidths-template);
188
+ --Tight-borderWidths-sm: var(--Tight-borderWidths-template-sm);
189
+ --Tight-borderWidths-md: var(--Tight-borderWidths-template-md);
190
+ --Tight-borderWidths-lg: var(--Tight-borderWidths-template-lg);
191
+ --Tight-borderWidths-xl: var(--Tight-borderWidths-template-xl);
172
192
  --Tight-animations-appear-instant: 0.25s linear fade-in;
173
193
  --Tight-animations-appear-delay: 0.25s linear both 1.5s fade-in;
174
194
  --Tight-animations-shimmer: 2s ease-in-out infinite shimmer;
@@ -226,8 +246,8 @@
226
246
  --Tight-colors-brand-danger: var(--Tight-colors-template-danger);
227
247
  --Tight-colors-brand-danger-strong: var(--Tight-colors-template-danger-strong);
228
248
  --Tight-colors-brand-danger-stronger: var(--Tight-colors-template-danger-stronger);
229
- --Tight-colors-surface-background: var(--Tight-colors-white200);
230
- --Tight-colors-surface-background-hover: var(--Tight-colors-white300);
249
+ --Tight-colors-surface-background: var(--Tight-colors-template-background);
250
+ --Tight-colors-surface-background-hover: var(--Tight-colors-template-background-weak);
231
251
  --Tight-colors-surface-foreground: var(--Tight-colors-template-foreground);
232
252
  --Tight-colors-surface-foreground-hover: var(--Tight-colors-template-foreground-weak);
233
253
  --Tight-colors-surface-foreground-disabled: var(--Tight-colors-white600);
@@ -467,6 +487,10 @@
467
487
  }
468
488
 
469
489
  @layer utilities {
490
+ .tsystem-all_unset {
491
+ all: unset;
492
+ }
493
+
470
494
  .tsystem---thickness_1px {
471
495
  --thickness: 1px;
472
496
  }
@@ -595,24 +619,16 @@
595
619
  padding: 15px;
596
620
  }
597
621
 
598
- .tsystem-p_0_25px {
599
- padding: 0 25px;
600
- }
601
-
602
622
  .tsystem-bd_\{borderWidths\.lg\}_solid {
603
623
  border: var(--Tight-borderWidths-lg) solid;
604
624
  }
605
625
 
606
- .tsystem-bg_brand\.primary\.strong {
607
- background: var(--Tight-colors-brand-primary-strong);
608
- }
609
-
610
- .tsystem-bd_\{borderWidths\.lg\}_solid_transparent {
611
- border: var(--Tight-borderWidths-lg) solid transparent;
626
+ .tsystem-p_0_25px {
627
+ padding: 0 25px;
612
628
  }
613
629
 
614
- .tsystem-bd_2px_solid_red {
615
- border: 2px solid red;
630
+ .tsystem-bg_brand\.primary\.strong {
631
+ background: var(--Tight-colors-brand-primary-strong);
616
632
  }
617
633
 
618
634
  .tsystem-p_16px_16px {
@@ -699,6 +715,14 @@
699
715
  padding: 15px;
700
716
  }
701
717
 
718
+ .tsystem-p_large {
719
+ padding: large;
720
+ }
721
+
722
+ .tsystem-p_default {
723
+ padding: default;
724
+ }
725
+
702
726
  .tsystem-p_36px_24px {
703
727
  padding: 36px 24px;
704
728
  }
@@ -803,10 +827,18 @@
803
827
  padding: 25px;
804
828
  }
805
829
 
830
+ .tsystem-bd_\{borderWidths\.lg\}_solid_transparent {
831
+ border: var(--Tight-borderWidths-lg) solid transparent;
832
+ }
833
+
806
834
  .tsystem-bd_\{borderWidths\.md\}_dashed_\{colors\.border\.layout\} {
807
835
  border: var(--Tight-borderWidths-md) dashed var(--Tight-colors-border-layout);
808
836
  }
809
837
 
838
+ .tsystem-bd_2px_solid_red {
839
+ border: 2px solid red;
840
+ }
841
+
810
842
  .tsystem-bg_brand\.success {
811
843
  background: var(--Tight-colors-brand-success);
812
844
  }
@@ -815,14 +847,14 @@
815
847
  padding: 2px 6px;
816
848
  }
817
849
 
818
- .tsystem-p_large {
819
- padding: large;
820
- }
821
-
822
850
  .tsystem-p_4px_8px {
823
851
  padding: 4px 8px;
824
852
  }
825
853
 
854
+ .tsystem-bd_left {
855
+ border: left;
856
+ }
857
+
826
858
  .tsystem-bd_0\.75px_solid_\{colors\.border\.layout\} {
827
859
  border: 0.75px solid var(--Tight-colors-border-layout);
828
860
  }
@@ -843,10 +875,6 @@
843
875
  animation: var(--Tight-animations-spin);
844
876
  }
845
877
 
846
- .tsystem-bd_left {
847
- border: left;
848
- }
849
-
850
878
  .tsystem-p_12 {
851
879
  padding: 12px;
852
880
  }
@@ -1036,6 +1064,10 @@
1036
1064
  gap: 0;
1037
1065
  }
1038
1066
 
1067
+ .tsystem-bd-c_border\.layout\.weak {
1068
+ border-color: var(--Tight-colors-border-layout-weak);
1069
+ }
1070
+
1039
1071
  .tsystem-trs_height_0\.5s\,_width_0\.5s {
1040
1072
  transition: height 0.5s, width 0.5s;
1041
1073
  }
@@ -1252,10 +1284,6 @@
1252
1284
  border-width: var(--Tight-borderWidths-sm);
1253
1285
  }
1254
1286
 
1255
- .tsystem-bd-c_border\.layout\.weak {
1256
- border-color: var(--Tight-colors-border-layout-weak);
1257
- }
1258
-
1259
1287
  .tsystem-bd-c_weak {
1260
1288
  border-color: weak;
1261
1289
  }
@@ -1526,6 +1554,10 @@
1526
1554
  border-block-end-width: var(--thickness);
1527
1555
  }
1528
1556
 
1557
+ .tsystem-overlay_true {
1558
+ overlay: true;
1559
+ }
1560
+
1529
1561
  .tsystem-stk_currentColor {
1530
1562
  stroke: var(--Tight-colors-currentColor);
1531
1563
  }
@@ -1626,22 +1658,14 @@
1626
1658
  color: var(--Tight-colors-icon-contrast);
1627
1659
  }
1628
1660
 
1629
- .tsystem-bg-c_surface\.foreground\.disabled {
1630
- background-color: var(--Tight-colors-surface-foreground-disabled);
1661
+ .tsystem-fill_surface\.intent\.action\.active {
1662
+ fill: var(--Tight-colors-surface-intent-action-active);
1631
1663
  }
1632
1664
 
1633
1665
  .tsystem-cursor_text {
1634
1666
  cursor: text;
1635
1667
  }
1636
1668
 
1637
- .tsystem-bg-c_yellow {
1638
- background-color: yellow;
1639
- }
1640
-
1641
- .tsystem-fill_surface\.intent\.action\.active {
1642
- fill: var(--Tight-colors-surface-intent-action-active);
1643
- }
1644
-
1645
1669
  .tsystem-ai_stretch {
1646
1670
  align-items: stretch;
1647
1671
  }
@@ -1915,14 +1939,14 @@
1915
1939
  background-color: var(--Tight-colors-typography-base);
1916
1940
  }
1917
1941
 
1918
- .tsystem-pos_sticky {
1919
- position: sticky;
1920
- }
1921
-
1922
1942
  .tsystem-as_flex-start {
1923
1943
  align-self: flex-start;
1924
1944
  }
1925
1945
 
1946
+ .tsystem-pos_sticky {
1947
+ position: sticky;
1948
+ }
1949
+
1926
1950
  .tsystem-bg-linear_to-t {
1927
1951
  --gradient-stops: var(--gradient-via-stops, var(--gradient-position), var(--gradient-from) var(--gradient-from-position), var(--gradient-to) var(--gradient-to-position));
1928
1952
  --gradient-position: to top;
@@ -2205,6 +2229,14 @@
2205
2229
  grid-template-columns: repeat(7, 1fr);
2206
2230
  }
2207
2231
 
2232
+ .tsystem-bg-c_surface\.foreground\.disabled {
2233
+ background-color: var(--Tight-colors-surface-foreground-disabled);
2234
+ }
2235
+
2236
+ .tsystem-bg-c_yellow {
2237
+ background-color: yellow;
2238
+ }
2239
+
2208
2240
  .tsystem-vis_hidden {
2209
2241
  visibility: hidden;
2210
2242
  }
@@ -2346,20 +2378,16 @@
2346
2378
  color: var(--Tight-colors-icon-base-weak);
2347
2379
  }
2348
2380
 
2349
- .tsystem-overlay_true {
2350
- overlay: true;
2351
- }
2352
-
2353
- .tsystem-c_surface\.intent\.danger\.active {
2354
- color: var(--Tight-colors-surface-intent-danger-active);
2381
+ .tsystem-cursor_auto {
2382
+ cursor: auto;
2355
2383
  }
2356
2384
 
2357
- .tsystem-grid-tc_1fr_1fr {
2358
- grid-template-columns: 1fr 1fr;
2385
+ .tsystem-cq-t_scroll-state {
2386
+ container-type: scroll-state;
2359
2387
  }
2360
2388
 
2361
- .tsystem-cursor_auto {
2362
- cursor: auto;
2389
+ .tsystem-cq-n_report-table-container {
2390
+ container-name: report-table-container;
2363
2391
  }
2364
2392
 
2365
2393
  .tsystem-bd-cl_separate {
@@ -2374,12 +2402,12 @@
2374
2402
  z-index: 2;
2375
2403
  }
2376
2404
 
2377
- .tsystem-cq-t_scroll-state {
2378
- container-type: scroll-state;
2405
+ .tsystem-c_surface\.intent\.danger\.active {
2406
+ color: var(--Tight-colors-surface-intent-danger-active);
2379
2407
  }
2380
2408
 
2381
- .tsystem-cq-n_report-table-container {
2382
- container-name: report-table-container;
2409
+ .tsystem-grid-tc_1fr_1fr {
2410
+ grid-template-columns: 1fr 1fr;
2383
2411
  }
2384
2412
 
2385
2413
  .tsystem-c_var\(--Tight-colors-money-positive\) {
@@ -2654,6 +2682,22 @@
2654
2682
  overflow-x: hidden;
2655
2683
  }
2656
2684
 
2685
+ .tsystem-max-w_420px {
2686
+ max-width: 420px;
2687
+ }
2688
+
2689
+ .tsystem-min-w_280px {
2690
+ min-width: 280px;
2691
+ }
2692
+
2693
+ .tsystem-ml_6px {
2694
+ margin-left: 6px;
2695
+ }
2696
+
2697
+ .tsystem-mr_6px {
2698
+ margin-right: 6px;
2699
+ }
2700
+
2657
2701
  .tsystem-w_17px {
2658
2702
  width: 17px;
2659
2703
  }
@@ -2806,6 +2850,10 @@
2806
2850
  min-width: 325px;
2807
2851
  }
2808
2852
 
2853
+ .tsystem-min-h_32px {
2854
+ min-height: 32px;
2855
+ }
2856
+
2809
2857
  .tsystem-w_44px {
2810
2858
  width: 44px;
2811
2859
  }
@@ -3045,8 +3093,8 @@
3045
3093
  width: 89px;
3046
3094
  }
3047
3095
 
3048
- .tsystem-w_200px {
3049
- width: 200px;
3096
+ .tsystem-w_fit {
3097
+ width: fit;
3050
3098
  }
3051
3099
 
3052
3100
  .tsystem-bd-l-w_md {
@@ -3201,6 +3249,10 @@
3201
3249
  margin-bottom: 10px;
3202
3250
  }
3203
3251
 
3252
+ .tsystem-w_200px {
3253
+ width: 200px;
3254
+ }
3255
+
3204
3256
  .tsystem-h_52px {
3205
3257
  height: 52px;
3206
3258
  }
@@ -3237,6 +3289,14 @@
3237
3289
  width: full;
3238
3290
  }
3239
3291
 
3292
+ .tsystem-w_fit-content\% {
3293
+ width: fit-content%;
3294
+ }
3295
+
3296
+ .tsystem-min-w_100px {
3297
+ min-width: 100px;
3298
+ }
3299
+
3240
3300
  .tsystem-mb_30px {
3241
3301
  margin-bottom: 30px;
3242
3302
  }
@@ -3277,6 +3337,30 @@
3277
3337
  right: 16px;
3278
3338
  }
3279
3339
 
3340
+ .tsystem-pl_0 {
3341
+ padding-left: 0;
3342
+ }
3343
+
3344
+ .tsystem-pl_19px {
3345
+ padding-left: 19px;
3346
+ }
3347
+
3348
+ .tsystem-pl_33px {
3349
+ padding-left: 33px;
3350
+ }
3351
+
3352
+ .tsystem-pr_0 {
3353
+ padding-right: 0;
3354
+ }
3355
+
3356
+ .tsystem-pr_19px {
3357
+ padding-right: 19px;
3358
+ }
3359
+
3360
+ .tsystem-pr_33px {
3361
+ padding-right: 33px;
3362
+ }
3363
+
3280
3364
  .tsystem-max-h_44px {
3281
3365
  max-height: 44px;
3282
3366
  }
@@ -3313,6 +3397,58 @@
3313
3397
  width: 26px;
3314
3398
  }
3315
3399
 
3400
+ .tsystem-bd-t-w_md {
3401
+ border-top-width: var(--Tight-borderWidths-md);
3402
+ }
3403
+
3404
+ .tsystem-border-top-style_solid {
3405
+ border-top-style: solid;
3406
+ }
3407
+
3408
+ .tsystem-bd-t-w_4px {
3409
+ border-top-width: 4px;
3410
+ }
3411
+
3412
+ .tsystem-border-top-style_double {
3413
+ border-top-style: double;
3414
+ }
3415
+
3416
+ .tsystem-bd-t-c_border\.layout\.strong {
3417
+ border-top-color: var(--Tight-colors-border-layout-strong);
3418
+ }
3419
+
3420
+ .tsystem-bd-b-w_4px {
3421
+ border-bottom-width: 4px;
3422
+ }
3423
+
3424
+ .tsystem-border-bottom-style_double {
3425
+ border-bottom-style: double;
3426
+ }
3427
+
3428
+ .tsystem-bd-b-c_border\.layout\.strong {
3429
+ border-bottom-color: var(--Tight-colors-border-layout-strong);
3430
+ }
3431
+
3432
+ .tsystem-bd-b-w_md {
3433
+ border-bottom-width: var(--Tight-borderWidths-md);
3434
+ }
3435
+
3436
+ .tsystem-ov-x_auto {
3437
+ overflow-x: auto;
3438
+ }
3439
+
3440
+ .tsystem-max-h_80dvh {
3441
+ max-height: 80dvh;
3442
+ }
3443
+
3444
+ .tsystem-min-w_800px {
3445
+ min-width: 800px;
3446
+ }
3447
+
3448
+ .tsystem-bd-b-c_border\.layout {
3449
+ border-bottom-color: var(--Tight-colors-border-layout);
3450
+ }
3451
+
3316
3452
  .tsystem-mt_22px {
3317
3453
  margin-top: 22px;
3318
3454
  }
@@ -3365,18 +3501,6 @@
3365
3501
  width: 70%;
3366
3502
  }
3367
3503
 
3368
- .tsystem-ml_6px {
3369
- margin-left: 6px;
3370
- }
3371
-
3372
- .tsystem-mr_6px {
3373
- margin-right: 6px;
3374
- }
3375
-
3376
- .tsystem-max-w_420px {
3377
- max-width: 420px;
3378
- }
3379
-
3380
3504
  .tsystem-w_151px {
3381
3505
  width: 151px;
3382
3506
  }
@@ -3389,30 +3513,6 @@
3389
3513
  max-width: fit-content;
3390
3514
  }
3391
3515
 
3392
- .tsystem-pl_0 {
3393
- padding-left: 0;
3394
- }
3395
-
3396
- .tsystem-pl_19px {
3397
- padding-left: 19px;
3398
- }
3399
-
3400
- .tsystem-pl_33px {
3401
- padding-left: 33px;
3402
- }
3403
-
3404
- .tsystem-pr_0 {
3405
- padding-right: 0;
3406
- }
3407
-
3408
- .tsystem-pr_19px {
3409
- padding-right: 19px;
3410
- }
3411
-
3412
- .tsystem-pr_33px {
3413
- padding-right: 33px;
3414
- }
3415
-
3416
3516
  .tsystem-min-w_24 {
3417
3517
  min-width: 24px;
3418
3518
  }
@@ -3449,58 +3549,6 @@
3449
3549
  bottom: 5px;
3450
3550
  }
3451
3551
 
3452
- .tsystem-bd-t-w_md {
3453
- border-top-width: var(--Tight-borderWidths-md);
3454
- }
3455
-
3456
- .tsystem-border-top-style_solid {
3457
- border-top-style: solid;
3458
- }
3459
-
3460
- .tsystem-bd-t-w_4px {
3461
- border-top-width: 4px;
3462
- }
3463
-
3464
- .tsystem-border-top-style_double {
3465
- border-top-style: double;
3466
- }
3467
-
3468
- .tsystem-bd-t-c_border\.layout\.strong {
3469
- border-top-color: var(--Tight-colors-border-layout-strong);
3470
- }
3471
-
3472
- .tsystem-bd-b-w_4px {
3473
- border-bottom-width: 4px;
3474
- }
3475
-
3476
- .tsystem-border-bottom-style_double {
3477
- border-bottom-style: double;
3478
- }
3479
-
3480
- .tsystem-bd-b-c_border\.layout\.strong {
3481
- border-bottom-color: var(--Tight-colors-border-layout-strong);
3482
- }
3483
-
3484
- .tsystem-bd-b-w_md {
3485
- border-bottom-width: var(--Tight-borderWidths-md);
3486
- }
3487
-
3488
- .tsystem-min-w_800px {
3489
- min-width: 800px;
3490
- }
3491
-
3492
- .tsystem-bd-b-c_border\.layout {
3493
- border-bottom-color: var(--Tight-colors-border-layout);
3494
- }
3495
-
3496
- .tsystem-ov-x_auto {
3497
- overflow-x: auto;
3498
- }
3499
-
3500
- .tsystem-max-h_80dvh {
3501
- max-height: 80dvh;
3502
- }
3503
-
3504
3552
  .tsystem-min-w_180px {
3505
3553
  min-width: 180px;
3506
3554
  }
@@ -3699,10 +3747,6 @@
3699
3747
  background-color: var(--Tight-colors-currentColor);
3700
3748
  }
3701
3749
 
3702
- .disabled\:tsystem-bg-c_surface\.foreground\.disabled:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
3703
- background-color: var(--Tight-colors-surface-foreground-disabled);
3704
- }
3705
-
3706
3750
  .\[\&\:\:placeholder\]\:tsystem-c_typography\.base\.weak::placeholder {
3707
3751
  color: var(--Tight-colors-typography-base-weak);
3708
3752
  }
@@ -3773,6 +3817,10 @@
3773
3817
  cursor: default;
3774
3818
  }
3775
3819
 
3820
+ .disabled\:tsystem-bg-c_surface\.foreground\.disabled:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
3821
+ background-color: var(--Tight-colors-surface-foreground-disabled);
3822
+ }
3823
+
3776
3824
  .disabled\:tsystem-c_typography\.base\.weak:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
3777
3825
  color: var(--Tight-colors-typography-base-weak);
3778
3826
  }
@@ -3813,10 +3861,6 @@
3813
3861
  background-color: var(--Tight-colors-surface-intent-action-discreet-hover);
3814
3862
  }
3815
3863
 
3816
- .\[\&\[data-active\=\'true\'\]\]\:tsystem-bg-c_surface\.intent\.action\.discreet\.active[data-active='true'] {
3817
- background-color: var(--Tight-colors-surface-intent-action-discreet-active);
3818
- }
3819
-
3820
3864
  .odd\:tsystem-bg-c_surface\.reports\.alternateRows:nth-child(odd) {
3821
3865
  background-color: var(--Tight-colors-surface-reports-alternateRows);
3822
3866
  }
@@ -3825,6 +3869,10 @@
3825
3869
  background-color: var(--Tight-colors-surface-foreground);
3826
3870
  }
3827
3871
 
3872
+ .\[\&\[data-active\=\'true\'\]\]\:tsystem-bg-c_surface\.intent\.action\.discreet\.active[data-active='true'] {
3873
+ background-color: var(--Tight-colors-surface-intent-action-discreet-active);
3874
+ }
3875
+
3828
3876
  .\[\&\:\:before\]\:tsystem-top_-11px::before {
3829
3877
  top: -11px;
3830
3878
  }
@@ -4076,6 +4124,26 @@
4076
4124
  outline-style: solid;
4077
4125
  }
4078
4126
 
4127
+ .\[\&\:focus-visible\]\:tsystem-ring-c_brand\.action\.strong:focus-visible {
4128
+ outline-color: var(--Tight-colors-brand-action-strong);
4129
+ }
4130
+
4131
+ .\[\&\:focus-visible\]\:tsystem-ring-w_borderWidths\.md:focus-visible {
4132
+ outline-width: borderWidths.md;
4133
+ }
4134
+
4135
+ .\[\&\:focus-visible\]\:tsystem-ring-o_calc\(-1_\*_\{borderWidths\.md\}\):focus-visible {
4136
+ outline-offset: calc(-1 * var(--Tight-borderWidths-md));
4137
+ }
4138
+
4139
+ .\[\&\:focus-visible\]\:tsystem-z_1:focus-visible {
4140
+ z-index: 1;
4141
+ }
4142
+
4143
+ .\[\&\:focus-visible\]\:tsystem-bg-c_brand\.action\.weaker:focus-visible {
4144
+ background-color: var(--Tight-colors-brand-action-weaker);
4145
+ }
4146
+
4079
4147
  .\[\&\:focus-visible\]\:tsystem-ring-o_-1px:focus-visible {
4080
4148
  outline-offset: -1px;
4081
4149
  }
@@ -4196,20 +4264,12 @@
4196
4264
  border: var(--Tight-borderWidths-lg) solid;
4197
4265
  }
4198
4266
 
4199
- .notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bd-c_border\.layout:not(:disabled, [disabled], [data-disabled]):focus-within,.notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bd-c_border\.layout:not(:disabled, [disabled], [data-disabled])[data-isdefaultvalue='false'] {
4200
- border-color: var(--Tight-colors-border-layout);
4201
- }
4202
-
4203
4267
  .notDisabled\:\[\&\[data-active\=\'false\'\]\:has\(\:focus-visible\)\]\:tsystem-ring_4px_solid:not(:disabled, [disabled], [data-disabled])[data-active='false']:has(:focus-visible) {
4204
4268
  outline: 4px solid;
4205
4269
  }
4206
4270
 
4207
- .notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bg-c_surface\.foreground:not(:disabled, [disabled], [data-disabled]):focus-within,.notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bg-c_surface\.foreground:not(:disabled, [disabled], [data-disabled])[data-isdefaultvalue='false'] {
4208
- background-color: var(--Tight-colors-surface-foreground);
4209
- }
4210
-
4211
- .notDisabled\:\[\&\:focus-within\]\:tsystem-cursor_text:not(:disabled, [disabled], [data-disabled]):focus-within {
4212
- cursor: text;
4271
+ .notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bd-c_border\.layout:not(:disabled, [disabled], [data-disabled]):focus-within,.notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bd-c_border\.layout:not(:disabled, [disabled], [data-disabled])[data-isdefaultvalue='false'] {
4272
+ border-color: var(--Tight-colors-border-layout);
4213
4273
  }
4214
4274
 
4215
4275
  .notDisabled\:\[\&\[data-state\=\'open\'\]\]\:tsystem-bg-c_surface\.intent\.action\.discreet\.active:not(:disabled, [disabled], [data-disabled])[data-state='open'] {
@@ -4220,6 +4280,14 @@
4220
4280
  outline-color: var(--Tight-colors-border-layout);
4221
4281
  }
4222
4282
 
4283
+ .notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bg-c_surface\.foreground:not(:disabled, [disabled], [data-disabled]):focus-within,.notDisabled\:\[\&\:focus-within\,_\&\[data-isdefaultvalue\=\'false\'\]\]\:tsystem-bg-c_surface\.foreground:not(:disabled, [disabled], [data-disabled])[data-isdefaultvalue='false'] {
4284
+ background-color: var(--Tight-colors-surface-foreground);
4285
+ }
4286
+
4287
+ .notDisabled\:\[\&\:focus-within\]\:tsystem-cursor_text:not(:disabled, [disabled], [data-disabled]):focus-within {
4288
+ cursor: text;
4289
+ }
4290
+
4223
4291
  .\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.secondary\.hover:focus-visible .Tight-sub-label,.\[\&\:focus-visible\,_\&\[data-state\=\'open\'\]\]\:\[\&_\.Tight-sub-label\]\:tsystem-c_typography\.intent\.secondary\.hover[data-state='open'] .Tight-sub-label {
4224
4292
  color: var(--Tight-colors-typography-intent-secondary-hover);
4225
4293
  }
package/dist/index.css.gz CHANGED
Binary file