@tight-embedded/react 1.0.1 → 1.1.0

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
@@ -8,6 +8,18 @@
8
8
  -webkit-font-smoothing: antialiased;
9
9
  -moz-osx-font-smoothing: grayscale;
10
10
  }
11
+
12
+ /* Remove number input spinners
13
+ https://stackoverflow.com/questions/3790935/can-i-hide-the-html5-number-input-s-spin-box */
14
+ input::-webkit-outer-spin-button,
15
+ input::-webkit-inner-spin-button {
16
+ -webkit-appearance: none;
17
+ margin: 0;
18
+ }
19
+
20
+ input[type=number] {
21
+ -moz-appearance:textfield;
22
+ }
11
23
  }
12
24
 
13
25
  @keyframes fade-in {
@@ -339,10 +351,6 @@
339
351
  padding: 6px;
340
352
  }
341
353
 
342
- .tsystem-p_15px_15px_0_15px {
343
- padding: 15px 15px 0 15px;
344
- }
345
-
346
354
  .tsystem-p_15px {
347
355
  padding: 15px;
348
356
  }
@@ -507,6 +515,10 @@
507
515
  padding: 4px 8px;
508
516
  }
509
517
 
518
+ .tsystem-p_15px_15px_0_15px {
519
+ padding: 15px 15px 0 15px;
520
+ }
521
+
510
522
  .tsystem-p_0_10px {
511
523
  padding: 0 10px;
512
524
  }
@@ -612,34 +624,6 @@
612
624
  border-top: var(--Tight-borderWidths-md) solid var(--Tight-colors-border-layout-strong);
613
625
  }
614
626
 
615
- .tsystem-bd-t_\{borderWidths\.md\}_solid {
616
- border-top: var(--Tight-borderWidths-md) solid;
617
- }
618
-
619
- .tsystem-bd-c_border\.layout\.strong {
620
- border-color: var(--Tight-colors-border-layout-strong);
621
- }
622
-
623
- .tsystem-bd-b_\{borderWidths\.md\}_solid {
624
- border-bottom: var(--Tight-borderWidths-md) solid;
625
- }
626
-
627
- .tsystem-bd-c_border\.layout\.weak {
628
- border-color: var(--Tight-colors-border-layout-weak);
629
- }
630
-
631
- .tsystem-gap_8px {
632
- gap: 8px;
633
- }
634
-
635
- .tsystem-bd-c_strong {
636
- border-color: strong;
637
- }
638
-
639
- .tsystem-gap_16px {
640
- gap: 16px;
641
- }
642
-
643
627
  .tsystem-bdr_lg {
644
628
  border-radius: var(--Tight-radii-lg);
645
629
  }
@@ -724,6 +708,10 @@
724
708
  border-width: 0;
725
709
  }
726
710
 
711
+ .tsystem-bd-c_border\.layout\.strong {
712
+ border-color: var(--Tight-colors-border-layout-strong);
713
+ }
714
+
727
715
  .tsystem-trs_all_300ms_ease-out {
728
716
  transition: all 300ms ease-out;
729
717
  }
@@ -732,6 +720,14 @@
732
720
  place-items: center;
733
721
  }
734
722
 
723
+ .tsystem-gap_16px {
724
+ gap: 16px;
725
+ }
726
+
727
+ .tsystem-gap_8px {
728
+ gap: 8px;
729
+ }
730
+
735
731
  .tsystem-flex_1 {
736
732
  flex: 1 1 0%;
737
733
  }
@@ -780,6 +776,34 @@
780
776
  gap: 9px;
781
777
  }
782
778
 
779
+ .tsystem-bd-t_\{borderWidths\.md\}_solid {
780
+ border-top: var(--Tight-borderWidths-md) solid;
781
+ }
782
+
783
+ .tsystem-bd-b_\{borderWidths\.md\}_solid {
784
+ border-bottom: var(--Tight-borderWidths-md) solid;
785
+ }
786
+
787
+ .tsystem-bd-c_border\.layout\.weak {
788
+ border-color: var(--Tight-colors-border-layout-weak);
789
+ }
790
+
791
+ .tsystem-bd-t_none {
792
+ border-top: none;
793
+ }
794
+
795
+ .tsystem-bd-l_none {
796
+ border-left: none;
797
+ }
798
+
799
+ .tsystem-bd-r_none {
800
+ border-right: none;
801
+ }
802
+
803
+ .tsystem-bd-c_strong {
804
+ border-color: strong;
805
+ }
806
+
783
807
  .tsystem-bd-w_sm {
784
808
  border-width: var(--Tight-borderWidths-sm);
785
809
  }
@@ -952,22 +976,6 @@
952
976
  position: sticky;
953
977
  }
954
978
 
955
- .tsystem-flex-d_row {
956
- flex-direction: row;
957
- }
958
-
959
- .tsystem-jc_space-between {
960
- justify-content: space-between;
961
- }
962
-
963
- .tsystem-bg-c_surface\.foreground {
964
- background-color: var(--Tight-colors-surface-foreground);
965
- }
966
-
967
- .tsystem-bd-be-w_var\(--thickness\) {
968
- border-block-end-width: var(--thickness);
969
- }
970
-
971
979
  .tsystem-jc_flex-end {
972
980
  justify-content: flex-end;
973
981
  }
@@ -976,6 +984,10 @@
976
984
  flex-shrink: 0;
977
985
  }
978
986
 
987
+ .tsystem-jc_space-between {
988
+ justify-content: space-between;
989
+ }
990
+
979
991
  .tsystem-ai_flex-start {
980
992
  align-items: flex-start;
981
993
  }
@@ -988,10 +1000,18 @@
988
1000
  flex-wrap: wrap;
989
1001
  }
990
1002
 
1003
+ .tsystem-bg-c_surface\.foreground {
1004
+ background-color: var(--Tight-colors-surface-foreground);
1005
+ }
1006
+
991
1007
  .tsystem-bg-c_surface\.intent\.secondary {
992
1008
  background-color: var(--Tight-colors-surface-intent-secondary);
993
1009
  }
994
1010
 
1011
+ .tsystem-flex-d_row {
1012
+ flex-direction: row;
1013
+ }
1014
+
995
1015
  .tsystem-flex-d_row-reverse {
996
1016
  flex-direction: row-reverse;
997
1017
  }
@@ -1486,6 +1506,14 @@
1486
1506
  color: var(--Tight-colors-money-positive);
1487
1507
  }
1488
1508
 
1509
+ .tsystem-ta_start {
1510
+ text-align: start;
1511
+ }
1512
+
1513
+ .tsystem-bd-be-w_var\(--thickness\) {
1514
+ border-block-end-width: var(--thickness);
1515
+ }
1516
+
1489
1517
  .tsystem-fs_26px {
1490
1518
  font-size: 26px;
1491
1519
  }
@@ -1546,6 +1574,10 @@
1546
1574
  border-bottom-left-radius: 0;
1547
1575
  }
1548
1576
 
1577
+ .tsystem-bg-c_foreground {
1578
+ background-color: foreground;
1579
+ }
1580
+
1549
1581
  .tsystem-grid-tc_repeat\(7\,_1fr\) {
1550
1582
  grid-template-columns: repeat(7, 1fr);
1551
1583
  }
@@ -1619,10 +1651,6 @@
1619
1651
  box-shadow: none;
1620
1652
  }
1621
1653
 
1622
- .tsystem-ta_start {
1623
- text-align: start;
1624
- }
1625
-
1626
1654
  .tsystem-bg-c_money\.positive\.weak {
1627
1655
  background-color: var(--Tight-colors-money-positive-weak);
1628
1656
  }
@@ -1667,10 +1695,18 @@
1667
1695
  color: var(--Tight-colors-inherit);
1668
1696
  }
1669
1697
 
1698
+ .tsystem-max-w_100\% {
1699
+ max-width: 100%;
1700
+ }
1701
+
1670
1702
  .tsystem-mt_15px {
1671
1703
  margin-top: 15px;
1672
1704
  }
1673
1705
 
1706
+ .tsystem-max-w_512px {
1707
+ max-width: 512px;
1708
+ }
1709
+
1674
1710
  .tsystem-ov-y_auto {
1675
1711
  overflow-y: auto;
1676
1712
  }
@@ -1687,22 +1723,6 @@
1687
1723
  bottom: 0;
1688
1724
  }
1689
1725
 
1690
- .tsystem-pb_14px {
1691
- padding-bottom: 14px;
1692
- }
1693
-
1694
- .tsystem-pl_15px {
1695
- padding-left: 15px;
1696
- }
1697
-
1698
- .tsystem-pr_15px {
1699
- padding-right: 15px;
1700
- }
1701
-
1702
- .tsystem-w_100\% {
1703
- width: 100%;
1704
- }
1705
-
1706
1726
  .tsystem-w_202px {
1707
1727
  width: 202px;
1708
1728
  }
@@ -1715,6 +1735,10 @@
1715
1735
  min-width: 200px;
1716
1736
  }
1717
1737
 
1738
+ .tsystem-w_100\% {
1739
+ width: 100%;
1740
+ }
1741
+
1718
1742
  .tsystem-h_72 {
1719
1743
  height: 72px;
1720
1744
  }
@@ -1743,10 +1767,6 @@
1743
1767
  min-width: 0;
1744
1768
  }
1745
1769
 
1746
- .tsystem-max-w_100\% {
1747
- max-width: 100%;
1748
- }
1749
-
1750
1770
  .tsystem-min-h_0 {
1751
1771
  min-height: 0;
1752
1772
  }
@@ -2055,6 +2075,18 @@
2055
2075
  height: 250px;
2056
2076
  }
2057
2077
 
2078
+ .tsystem-pb_14px {
2079
+ padding-bottom: 14px;
2080
+ }
2081
+
2082
+ .tsystem-pl_15px {
2083
+ padding-left: 15px;
2084
+ }
2085
+
2086
+ .tsystem-pr_15px {
2087
+ padding-right: 15px;
2088
+ }
2089
+
2058
2090
  .tsystem-bottom_-25px {
2059
2091
  bottom: -25px;
2060
2092
  }
@@ -2151,10 +2183,6 @@
2151
2183
  margin-right: 15px;
2152
2184
  }
2153
2185
 
2154
- .tsystem-w_512px {
2155
- width: 512px;
2156
- }
2157
-
2158
2186
  .tsystem-max-w_1 {
2159
2187
  max-width: 1px;
2160
2188
  }
@@ -2163,6 +2191,10 @@
2163
2191
  width: 1px;
2164
2192
  }
2165
2193
 
2194
+ .tsystem-w_512px {
2195
+ width: 512px;
2196
+ }
2197
+
2166
2198
  .tsystem-min-h_36px {
2167
2199
  min-height: 36px;
2168
2200
  }
@@ -2207,6 +2239,10 @@
2207
2239
  min-height: 55px;
2208
2240
  }
2209
2241
 
2242
+ .tsystem-w_full {
2243
+ width: full;
2244
+ }
2245
+
2210
2246
  .tsystem-mb_30px {
2211
2247
  margin-bottom: 30px;
2212
2248
  }
@@ -2827,7 +2863,7 @@
2827
2863
  outline-offset: -1px;
2828
2864
  }
2829
2865
 
2830
- .\[\&\:focus\]\:tsystem-cursor_text:focus {
2866
+ .focus\:tsystem-cursor_text:is(:focus, [data-focus]) {
2831
2867
  cursor: text;
2832
2868
  }
2833
2869
 
@@ -2855,10 +2891,14 @@
2855
2891
  outline-color: var(--Tight-colors-border-layout);
2856
2892
  }
2857
2893
 
2858
- .\[\&\:focus\]\:tsystem-z_1:focus {
2894
+ .focus\:tsystem-z_1:is(:focus, [data-focus]) {
2859
2895
  z-index: 1;
2860
2896
  }
2861
2897
 
2898
+ .\[\&\:focus\]\:tsystem-cursor_text:focus {
2899
+ cursor: text;
2900
+ }
2901
+
2862
2902
  .focusVisible\:tsystem-ring-o_-2px:is(:focus-visible, [data-focus-visible]) {
2863
2903
  outline-offset: -2px;
2864
2904
  }
@@ -3392,6 +3432,10 @@
3392
3432
  color: var(--Tight-colors-typography-accent-action);
3393
3433
  }
3394
3434
 
3435
+ .supportHover\:tsystem-cursor_pointer:hover {
3436
+ cursor: pointer;
3437
+ }
3438
+
3395
3439
  .supportHover\:tsystem-bg-c_brand\.primary:hover {
3396
3440
  background-color: var(--Tight-colors-brand-primary);
3397
3441
  }
package/dist/index.css.gz CHANGED
Binary file