thread-ui 0.1.10 → 0.2.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.
Files changed (179) hide show
  1. package/README.md +15 -53
  2. package/dist/client/index.d.ts +1 -2
  3. package/dist/client/index.d.ts.map +1 -1
  4. package/dist/client/index.js +1 -2
  5. package/dist/client/index.js.map +1 -1
  6. package/dist/client/theme-provider/index.d.ts.map +1 -0
  7. package/dist/client/theme-provider/index.js.map +1 -0
  8. package/dist/client/{theme/theme-provider → theme-provider}/set-theme.d.ts +1 -1
  9. package/dist/client/theme-provider/set-theme.d.ts.map +1 -0
  10. package/dist/client/{theme/theme-provider → theme-provider}/set-theme.js +2 -1
  11. package/dist/client/theme-provider/set-theme.js.map +1 -0
  12. package/dist/client/{theme/theme-provider → theme-provider}/theme-provider.d.ts +1 -1
  13. package/dist/client/theme-provider/theme-provider.d.ts.map +1 -0
  14. package/dist/client/theme-provider/theme-provider.js.map +1 -0
  15. package/dist/client/{theme/theme-provider → theme-provider}/theme-provider.types.d.ts +1 -1
  16. package/dist/client/theme-provider/theme-provider.types.d.ts.map +1 -0
  17. package/dist/client/theme-provider/theme-provider.types.js.map +1 -0
  18. package/dist/components/form-elements/form-label/form-label.d.ts +3 -0
  19. package/dist/components/form-elements/form-label/form-label.d.ts.map +1 -0
  20. package/dist/components/form-elements/form-label/form-label.js +12 -0
  21. package/dist/components/form-elements/form-label/form-label.js.map +1 -0
  22. package/dist/components/form-elements/form-label/form-label.types.d.ts +6 -0
  23. package/dist/components/form-elements/form-label/form-label.types.d.ts.map +1 -0
  24. package/dist/components/form-elements/form-label/form-label.types.js +2 -0
  25. package/dist/components/form-elements/form-label/form-label.types.js.map +1 -0
  26. package/dist/components/form-elements/form-label/index.d.ts +3 -0
  27. package/dist/components/form-elements/form-label/index.d.ts.map +1 -0
  28. package/dist/components/form-elements/form-label/index.js +2 -0
  29. package/dist/components/form-elements/form-label/index.js.map +1 -0
  30. package/dist/components/form-elements/index.d.ts +4 -0
  31. package/dist/components/form-elements/index.d.ts.map +1 -0
  32. package/dist/components/form-elements/index.js +4 -0
  33. package/dist/components/form-elements/index.js.map +1 -0
  34. package/dist/components/form-elements/input-props.types.d.ts +10 -0
  35. package/dist/components/form-elements/input-props.types.d.ts.map +1 -0
  36. package/dist/components/form-elements/input-props.types.js +2 -0
  37. package/dist/components/form-elements/input-props.types.js.map +1 -0
  38. package/dist/components/form-elements/input-wrapper.d.ts +5 -0
  39. package/dist/components/form-elements/input-wrapper.d.ts.map +1 -0
  40. package/dist/components/form-elements/input-wrapper.js +14 -0
  41. package/dist/components/form-elements/input-wrapper.js.map +1 -0
  42. package/dist/components/form-elements/number-input/index.d.ts +3 -0
  43. package/dist/components/form-elements/number-input/index.d.ts.map +1 -0
  44. package/dist/components/form-elements/number-input/index.js +2 -0
  45. package/dist/components/form-elements/number-input/index.js.map +1 -0
  46. package/dist/components/form-elements/number-input/number-input.d.ts +3 -0
  47. package/dist/components/form-elements/number-input/number-input.d.ts.map +1 -0
  48. package/dist/components/form-elements/number-input/number-input.js +100 -0
  49. package/dist/components/form-elements/number-input/number-input.js.map +1 -0
  50. package/dist/components/form-elements/number-input/number-input.types.d.ts +7 -0
  51. package/dist/components/form-elements/number-input/number-input.types.d.ts.map +1 -0
  52. package/dist/components/form-elements/number-input/number-input.types.js +2 -0
  53. package/dist/components/form-elements/number-input/number-input.types.js.map +1 -0
  54. package/dist/components/form-elements/styles/index.d.ts +11 -0
  55. package/dist/components/form-elements/styles/index.d.ts.map +1 -0
  56. package/dist/components/form-elements/styles/index.js +30 -0
  57. package/dist/components/form-elements/styles/index.js.map +1 -0
  58. package/dist/components/form-elements/text-input/index.d.ts +3 -0
  59. package/dist/components/form-elements/text-input/index.d.ts.map +1 -0
  60. package/dist/components/form-elements/text-input/index.js +2 -0
  61. package/dist/components/form-elements/text-input/index.js.map +1 -0
  62. package/dist/components/form-elements/text-input/text-input.d.ts +3 -0
  63. package/dist/components/form-elements/text-input/text-input.d.ts.map +1 -0
  64. package/dist/components/form-elements/text-input/text-input.js +13 -0
  65. package/dist/components/form-elements/text-input/text-input.js.map +1 -0
  66. package/dist/components/form-elements/text-input/text-input.types.d.ts +5 -0
  67. package/dist/components/form-elements/text-input/text-input.types.d.ts.map +1 -0
  68. package/dist/components/form-elements/text-input/text-input.types.js +2 -0
  69. package/dist/components/form-elements/text-input/text-input.types.js.map +1 -0
  70. package/dist/components/media/index.d.ts +1 -0
  71. package/dist/components/media/index.d.ts.map +1 -1
  72. package/dist/components/media/index.js +1 -0
  73. package/dist/components/media/index.js.map +1 -1
  74. package/dist/components/media/media-card/index.d.ts +3 -0
  75. package/dist/components/media/media-card/index.d.ts.map +1 -0
  76. package/dist/components/media/media-card/index.js +2 -0
  77. package/dist/components/media/media-card/index.js.map +1 -0
  78. package/dist/components/media/media-card/media-card.d.ts +3 -0
  79. package/dist/components/media/media-card/media-card.d.ts.map +1 -0
  80. package/dist/components/media/media-card/media-card.js +128 -0
  81. package/dist/components/media/media-card/media-card.js.map +1 -0
  82. package/dist/components/media/media-card/media-card.types.d.ts +22 -0
  83. package/dist/components/media/media-card/media-card.types.d.ts.map +1 -0
  84. package/dist/components/media/media-card/media-card.types.js +2 -0
  85. package/dist/components/media/media-card/media-card.types.js.map +1 -0
  86. package/dist/components/typography/index.d.ts +2 -2
  87. package/dist/components/typography/index.d.ts.map +1 -1
  88. package/dist/components/typography/index.js +1 -1
  89. package/dist/components/typography/index.js.map +1 -1
  90. package/dist/components/typography/typography.d.ts +16 -9
  91. package/dist/components/typography/typography.d.ts.map +1 -1
  92. package/dist/components/typography/typography.js +39 -11
  93. package/dist/components/typography/typography.js.map +1 -1
  94. package/dist/components/ui/card/card.d.ts +3 -0
  95. package/dist/components/ui/card/card.d.ts.map +1 -0
  96. package/dist/components/ui/card/card.js +81 -0
  97. package/dist/components/ui/card/card.js.map +1 -0
  98. package/dist/components/ui/card/card.types.d.ts +14 -0
  99. package/dist/components/ui/card/card.types.d.ts.map +1 -0
  100. package/dist/components/ui/card/card.types.js +2 -0
  101. package/dist/components/ui/card/card.types.js.map +1 -0
  102. package/dist/components/ui/card/index.d.ts +3 -0
  103. package/dist/components/ui/card/index.d.ts.map +1 -0
  104. package/dist/components/ui/card/index.js +2 -0
  105. package/dist/components/ui/card/index.js.map +1 -0
  106. package/dist/components/ui/index.d.ts +1 -1
  107. package/dist/components/ui/index.d.ts.map +1 -1
  108. package/dist/components/ui/index.js +1 -1
  109. package/dist/components/ui/index.js.map +1 -1
  110. package/dist/styles/panda.css +218 -43
  111. package/dist/styles/styles.css +0 -692
  112. package/dist/styles/thread.css +12 -52
  113. package/dist/theme/css-name-configurations/theme-css-names.d.ts +68 -0
  114. package/dist/theme/css-name-configurations/theme-css-names.d.ts.map +1 -0
  115. package/dist/theme/css-name-configurations/theme-css-names.js +122 -0
  116. package/dist/theme/css-name-configurations/theme-css-names.js.map +1 -0
  117. package/dist/theme/css-name-configurations/theme-helper-utils.d.ts +10 -0
  118. package/dist/theme/css-name-configurations/theme-helper-utils.d.ts.map +1 -0
  119. package/dist/theme/css-name-configurations/theme-helper-utils.js +27 -0
  120. package/dist/theme/css-name-configurations/theme-helper-utils.js.map +1 -0
  121. package/dist/theme/default-theme.d.ts +3 -0
  122. package/dist/theme/default-theme.d.ts.map +1 -0
  123. package/dist/theme/default-theme.js +94 -0
  124. package/dist/theme/default-theme.js.map +1 -0
  125. package/dist/theme/thread-theme.d.ts +4 -2
  126. package/dist/theme/thread-theme.d.ts.map +1 -1
  127. package/dist/theme/thread-theme.js +6 -85
  128. package/dist/theme/thread-theme.js.map +1 -1
  129. package/dist/types/theme/index.d.ts +1 -1
  130. package/dist/types/theme/index.d.ts.map +1 -1
  131. package/dist/types/theme/index.js +1 -1
  132. package/dist/types/theme/index.js.map +1 -1
  133. package/dist/types/theme/theme.types.d.ts +20 -10
  134. package/dist/types/theme/theme.types.d.ts.map +1 -1
  135. package/package.json +4 -18
  136. package/dist/client/make-styles/index.d.ts +0 -2
  137. package/dist/client/make-styles/index.d.ts.map +0 -1
  138. package/dist/client/make-styles/index.js +0 -2
  139. package/dist/client/make-styles/index.js.map +0 -1
  140. package/dist/client/make-styles/make-styles.d.ts +0 -58
  141. package/dist/client/make-styles/make-styles.d.ts.map +0 -1
  142. package/dist/client/make-styles/make-styles.js +0 -128
  143. package/dist/client/make-styles/make-styles.js.map +0 -1
  144. package/dist/client/theme/index.d.ts +0 -3
  145. package/dist/client/theme/index.d.ts.map +0 -1
  146. package/dist/client/theme/index.js +0 -2
  147. package/dist/client/theme/index.js.map +0 -1
  148. package/dist/client/theme/theme-provider/index.d.ts.map +0 -1
  149. package/dist/client/theme/theme-provider/index.js.map +0 -1
  150. package/dist/client/theme/theme-provider/set-theme.d.ts.map +0 -1
  151. package/dist/client/theme/theme-provider/set-theme.js.map +0 -1
  152. package/dist/client/theme/theme-provider/theme-provider.d.ts.map +0 -1
  153. package/dist/client/theme/theme-provider/theme-provider.js.map +0 -1
  154. package/dist/client/theme/theme-provider/theme-provider.types.d.ts.map +0 -1
  155. package/dist/client/theme/theme-provider/theme-provider.types.js.map +0 -1
  156. package/dist/components/ui/mode-controller/index.d.ts +0 -2
  157. package/dist/components/ui/mode-controller/index.d.ts.map +0 -1
  158. package/dist/components/ui/mode-controller/index.js +0 -2
  159. package/dist/components/ui/mode-controller/index.js.map +0 -1
  160. package/dist/components/ui/mode-controller/mode-controller.d.ts +0 -2
  161. package/dist/components/ui/mode-controller/mode-controller.d.ts.map +0 -1
  162. package/dist/components/ui/mode-controller/mode-controller.js +0 -15
  163. package/dist/components/ui/mode-controller/mode-controller.js.map +0 -1
  164. package/dist/defaults/container/container.d.ts +0 -6
  165. package/dist/defaults/container/container.d.ts.map +0 -1
  166. package/dist/defaults/container/container.js +0 -12
  167. package/dist/defaults/container/container.js.map +0 -1
  168. package/dist/defaults/container/index.d.ts +0 -2
  169. package/dist/defaults/container/index.d.ts.map +0 -1
  170. package/dist/defaults/container/index.js +0 -2
  171. package/dist/defaults/container/index.js.map +0 -1
  172. package/dist/defaults/index.d.ts +0 -2
  173. package/dist/defaults/index.d.ts.map +0 -1
  174. package/dist/defaults/index.js +0 -2
  175. package/dist/defaults/index.js.map +0 -1
  176. /package/dist/client/{theme/theme-provider → theme-provider}/index.d.ts +0 -0
  177. /package/dist/client/{theme/theme-provider → theme-provider}/index.js +0 -0
  178. /package/dist/client/{theme/theme-provider → theme-provider}/theme-provider.js +0 -0
  179. /package/dist/client/{theme/theme-provider → theme-provider}/theme-provider.types.js +0 -0
@@ -774,6 +774,14 @@
774
774
  padding: 0.5rem;
775
775
  }
776
776
 
777
+ .thread-ui-p_16px {
778
+ padding: 16px;
779
+ }
780
+
781
+ .thread-ui-p_5 {
782
+ padding: var(--thread-ui-spacing-5);
783
+ }
784
+
777
785
  .thread-ui-p_4px_8px {
778
786
  padding: 4px 8px;
779
787
  }
@@ -782,14 +790,36 @@
782
790
  padding: 8px 16px;
783
791
  }
784
792
 
785
- .thread-ui-p_16px {
786
- padding: 16px;
787
- }
788
-
789
793
  .thread-ui-bg_background {
790
794
  background: var(--thread-ui-colors-background);
791
795
  }
792
796
 
797
+ .thread-ui-px_16px {
798
+ padding-inline: 16px;
799
+ }
800
+
801
+ .thread-ui-py_8px {
802
+ padding-block: 8px;
803
+ }
804
+
805
+ .thread-ui-bd-w_1px {
806
+ border-width: 1px;
807
+ }
808
+
809
+ .thread-ui-border-style_solid {
810
+ border-style: solid;
811
+ }
812
+
813
+ .thread-ui-bd-c_structure {
814
+ border-color: var(--thread-ui-colors-structure);
815
+ }
816
+
817
+ .thread-ui-trs_colors {
818
+ transition-property: var(--transition-prop, color, background-color, border-color, outline-color, text-decoration-color, fill, stroke);
819
+ transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
820
+ transition-duration: var(--transition-duration, 150ms);
821
+ }
822
+
793
823
  .thread-ui-flex_1_1_0\% {
794
824
  flex: 1 1 0%;
795
825
  }
@@ -838,16 +868,32 @@
838
868
  border-width: var(--thread-ui-border-widths-md);
839
869
  }
840
870
 
841
- .thread-ui-bd-c_structure {
842
- border-color: var(--thread-ui-colors-structure);
871
+ .thread-ui-gap_8px {
872
+ gap: 8px;
843
873
  }
844
874
 
845
- .thread-ui-border-style_solid {
846
- border-style: solid;
875
+ .thread-ui-bdr_6px {
876
+ border-radius: 6px;
847
877
  }
848
878
 
849
- .thread-ui-gap_8px {
850
- gap: 8px;
879
+ .thread-ui-gap_0\.5rem {
880
+ gap: 0.5rem;
881
+ }
882
+
883
+ .thread-ui-bd-w_sm {
884
+ border-width: var(--thread-ui-border-widths-sm);
885
+ }
886
+
887
+ .thread-ui-my_0\.5rem {
888
+ margin-block: 0.5rem;
889
+ }
890
+
891
+ .thread-ui-gap_0\.75rem {
892
+ gap: 0.75rem;
893
+ }
894
+
895
+ .thread-ui-gap_4px {
896
+ gap: 4px;
851
897
  }
852
898
 
853
899
  .thread-ui-gap_24px {
@@ -866,14 +912,14 @@
866
912
  gap: 16px;
867
913
  }
868
914
 
869
- .thread-ui-py_8px {
870
- padding-block: 8px;
871
- }
872
-
873
915
  .thread-ui-my_20px {
874
916
  margin-block: 20px;
875
917
  }
876
918
 
919
+ .thread-ui-bdr_lg {
920
+ border-radius: var(--thread-ui-radii-lg);
921
+ }
922
+
877
923
  .thread-ui-my_16px {
878
924
  margin-block: 16px;
879
925
  }
@@ -882,10 +928,6 @@
882
928
  gap: 3rem;
883
929
  }
884
930
 
885
- .thread-ui-px_16px {
886
- padding-inline: 16px;
887
- }
888
-
889
931
  .thread-ui-my_4px {
890
932
  margin-block: 4px;
891
933
  }
@@ -914,14 +956,6 @@
914
956
  transition: all 150ms ease-in-out;
915
957
  }
916
958
 
917
- .thread-ui-gap_4px {
918
- gap: 4px;
919
- }
920
-
921
- .thread-ui-bd-w_1px {
922
- border-width: 1px;
923
- }
924
-
925
959
  .thread-ui-d_flex {
926
960
  display: flex;
927
961
  }
@@ -930,14 +964,34 @@
930
964
  flex-direction: column;
931
965
  }
932
966
 
933
- .thread-ui-jc_center {
934
- justify-content: center;
967
+ .thread-ui-jc_start {
968
+ justify-content: start;
935
969
  }
936
970
 
937
971
  .thread-ui-ai_center {
938
972
  align-items: center;
939
973
  }
940
974
 
975
+ .thread-ui-d_block {
976
+ display: block;
977
+ }
978
+
979
+ .thread-ui-as_flex-start {
980
+ align-self: flex-start;
981
+ }
982
+
983
+ .thread-ui-bg-c_gray\.light {
984
+ background-color: var(--thread-ui-colors-gray-light);
985
+ }
986
+
987
+ .thread-ui-resize_vertical {
988
+ resize: vertical;
989
+ }
990
+
991
+ .thread-ui-jc_center {
992
+ justify-content: center;
993
+ }
994
+
941
995
  .thread-ui-flex-d_row {
942
996
  flex-direction: row;
943
997
  }
@@ -1038,10 +1092,6 @@
1038
1092
  position: absolute;
1039
1093
  }
1040
1094
 
1041
- .thread-ui-d_block {
1042
- display: block;
1043
- }
1044
-
1045
1095
  .thread-ui-cg_24px {
1046
1096
  column-gap: 24px;
1047
1097
  }
@@ -1115,6 +1165,22 @@
1115
1165
  transform: translate(0, -0.324rem) rotate(-45deg);
1116
1166
  }
1117
1167
 
1168
+ .thread-ui-bg-c_surface {
1169
+ background-color: var(--thread-ui-colors-surface);
1170
+ }
1171
+
1172
+ .thread-ui-bg-c_elevated {
1173
+ background-color: var(--thread-ui-colors-elevated);
1174
+ }
1175
+
1176
+ .thread-ui-bx-sh_0_1px_2px_0_rgb\(0_0_0_\/_0\.05\) {
1177
+ box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1178
+ }
1179
+
1180
+ .thread-ui-bx-sh_none {
1181
+ box-shadow: none;
1182
+ }
1183
+
1118
1184
  .thread-ui-bg-c_structure {
1119
1185
  background-color: var(--thread-ui-colors-structure);
1120
1186
  }
@@ -1167,6 +1233,22 @@
1167
1233
  width: 100%;
1168
1234
  }
1169
1235
 
1236
+ .thread-ui-pb_4px {
1237
+ padding-bottom: 4px;
1238
+ }
1239
+
1240
+ .thread-ui-mb_8px {
1241
+ margin-bottom: 8px;
1242
+ }
1243
+
1244
+ .thread-ui-w_auto {
1245
+ width: auto;
1246
+ }
1247
+
1248
+ .thread-ui-min-h_100px {
1249
+ min-height: 100px;
1250
+ }
1251
+
1170
1252
  .thread-ui-mr_auto {
1171
1253
  margin-right: auto;
1172
1254
  }
@@ -1259,10 +1341,6 @@
1259
1341
  min-height: 100%;
1260
1342
  }
1261
1343
 
1262
- .thread-ui-w_auto {
1263
- width: auto;
1264
- }
1265
-
1266
1344
  .thread-ui-min-w_100\% {
1267
1345
  min-width: 100%;
1268
1346
  }
@@ -1275,6 +1353,42 @@
1275
1353
  padding-right: 0.25rem;
1276
1354
  }
1277
1355
 
1356
+ .thread-ui-w_83\% {
1357
+ width: 83%;
1358
+ }
1359
+
1360
+ .thread-ui-max-w_576px {
1361
+ max-width: 576px;
1362
+ }
1363
+
1364
+ .thread-ui-max-w_672px {
1365
+ max-width: 672px;
1366
+ }
1367
+
1368
+ .thread-ui-max-w_896px {
1369
+ max-width: 896px;
1370
+ }
1371
+
1372
+ .thread-ui-max-w_16rem {
1373
+ max-width: 16rem;
1374
+ }
1375
+
1376
+ .thread-ui-w_9\/12 {
1377
+ width: 75%;
1378
+ }
1379
+
1380
+ .thread-ui-w_10\/12 {
1381
+ width: 83.333333%;
1382
+ }
1383
+
1384
+ .thread-ui-max-h_300px {
1385
+ max-height: 300px;
1386
+ }
1387
+
1388
+ .thread-ui-ov-y_auto {
1389
+ overflow-y: auto;
1390
+ }
1391
+
1278
1392
  .thread-ui-top_0px {
1279
1393
  top: 0px;
1280
1394
  }
@@ -1359,6 +1473,22 @@
1359
1473
  margin-right: 32px;
1360
1474
  }
1361
1475
 
1476
+ .thread-ui-max-w_850px {
1477
+ max-width: 850px;
1478
+ }
1479
+
1480
+ .thread-ui-max-w_600px {
1481
+ max-width: 600px;
1482
+ }
1483
+
1484
+ .thread-ui-mb_1 {
1485
+ margin-bottom: var(--thread-ui-spacing-1);
1486
+ }
1487
+
1488
+ .thread-ui-mb_3 {
1489
+ margin-bottom: var(--thread-ui-spacing-3);
1490
+ }
1491
+
1362
1492
  .thread-ui-h_0\.5px {
1363
1493
  height: 0.5px;
1364
1494
  }
@@ -1399,6 +1529,18 @@
1399
1529
  background-color: var(--thread-ui-colors-surface);
1400
1530
  }
1401
1531
 
1532
+ .focus\:thread-ui-ring_none:is(:focus, [data-focus]) {
1533
+ outline: var(--thread-ui-borders-none);
1534
+ }
1535
+
1536
+ .focus\:thread-ui-bd-c_transparent:is(:focus, [data-focus]) {
1537
+ border-color: var(--thread-ui-colors-transparent);
1538
+ }
1539
+
1540
+ .focus\:thread-ui-bx-sh_0_0_0_2px_\{colors\.blue\.500\}:is(:focus, [data-focus]) {
1541
+ box-shadow: 0 0 0 2px var(--thread-ui-colors-blue-500);
1542
+ }
1543
+
1402
1544
  .hover\:thread-ui-bd-c_primary\.main:is(:hover, [data-hover]) {
1403
1545
  border-color: var(--thread-ui-colors-primary-main);
1404
1546
  }
@@ -1435,6 +1577,10 @@
1435
1577
  border-color: var(--thread-ui-colors-white);
1436
1578
  }
1437
1579
 
1580
+ .hover\:thread-ui-bg-c_gray\.main:is(:hover, [data-hover]) {
1581
+ background-color: var(--thread-ui-colors-gray-main);
1582
+ }
1583
+
1438
1584
  .hover\:thread-ui-bg-c_surface:is(:hover, [data-hover]) {
1439
1585
  background-color: var(--thread-ui-colors-surface);
1440
1586
  }
@@ -1455,10 +1601,6 @@
1455
1601
  background-color: var(--thread-ui-colors-tertiary-main);
1456
1602
  }
1457
1603
 
1458
- .hover\:thread-ui-bg-c_gray\.main:is(:hover, [data-hover]) {
1459
- background-color: var(--thread-ui-colors-gray-main);
1460
- }
1461
-
1462
1604
  .hover\:thread-ui-bg-c_success\.main:is(:hover, [data-hover]) {
1463
1605
  background-color: var(--thread-ui-colors-success-main);
1464
1606
  }
@@ -1547,6 +1689,12 @@
1547
1689
  }
1548
1690
  .md\:thread-ui-max-w_800px {
1549
1691
  max-width: 800px;
1692
+ }
1693
+ .md\:thread-ui-max-h_none {
1694
+ max-height: none;
1695
+ }
1696
+ .md\:thread-ui-ov-y_visible {
1697
+ overflow-y: visible;
1550
1698
  }
1551
1699
  .md\:thread-ui-pl_48px {
1552
1700
  padding-left: 48px;
@@ -1556,15 +1704,24 @@
1556
1704
  }
1557
1705
  .md\:thread-ui-w_50\% {
1558
1706
  width: 50%;
1707
+ }
1708
+ .md\:thread-ui-w_75\% {
1709
+ width: 75%;
1559
1710
  }
1560
1711
  }
1561
1712
 
1562
1713
  @media screen and (min-width: 64rem) {
1714
+ .lg\:thread-ui-p_24px {
1715
+ padding: 24px;
1716
+ }
1563
1717
  .lg\:thread-ui-flex_none {
1564
1718
  flex: none;
1565
1719
  }
1566
1720
  .lg\:thread-ui-gap_20px {
1567
1721
  gap: 20px;
1722
+ }
1723
+ .lg\:thread-ui-gap_0\.75rem {
1724
+ gap: 0.75rem;
1568
1725
  }
1569
1726
  .lg\:thread-ui-border-style_none {
1570
1727
  border-style: none;
@@ -1580,6 +1737,12 @@
1580
1737
  }
1581
1738
  .lg\:thread-ui-flex-d_row {
1582
1739
  flex-direction: row;
1740
+ }
1741
+ .lg\:thread-ui-d_none {
1742
+ display: none;
1743
+ }
1744
+ .lg\:thread-ui-flex-d_column-reverse {
1745
+ flex-direction: column-reverse;
1583
1746
  }
1584
1747
  .lg\:thread-ui-jc_flex-start {
1585
1748
  justify-content: flex-start;
@@ -1607,9 +1770,6 @@
1607
1770
  }
1608
1771
  .lg\:thread-ui-jc_center {
1609
1772
  justify-content: center;
1610
- }
1611
- .lg\:thread-ui-d_none {
1612
- display: none;
1613
1773
  }
1614
1774
  .lg\:thread-ui-grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
1615
1775
  grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -1646,6 +1806,21 @@
1646
1806
  }
1647
1807
  .lg\:thread-ui-max-w_1400px {
1648
1808
  max-width: 1400px;
1809
+ }
1810
+ .lg\:thread-ui-w_4\/12 {
1811
+ width: 33.333333%;
1812
+ }
1813
+ .lg\:thread-ui-mt_0\.75rem {
1814
+ margin-top: 0.75rem;
1815
+ }
1816
+ .lg\:thread-ui-w_7\/12 {
1817
+ width: 58.333333%;
1818
+ }
1819
+ .lg\:thread-ui-max-h_500px {
1820
+ max-height: 500px;
1821
+ }
1822
+ .lg\:thread-ui-ov-y_scroll {
1823
+ overflow-y: scroll;
1649
1824
  }
1650
1825
  .lg\:thread-ui-top_0px {
1651
1826
  top: 0px;