@mintlify/components 0.1.46 → 0.1.48
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/build-storybook.log +368 -0
- package/dist/Button.d.ts +1 -1
- package/dist/Callouts.d.ts +1 -1
- package/dist/Code/CodeGroup.d.ts +1 -1
- package/dist/CodeBlock/CodeBlock.d.ts +9 -0
- package/dist/CodeBlock/CodeGroup.d.ts +11 -0
- package/dist/CodeBlock/CodeTabBar.d.ts +6 -0
- package/dist/CodeBlock/CopyToClipboard.d.ts +2 -0
- package/dist/CodeBlock/CopyToClipboardButton.d.ts +5 -0
- package/dist/CodeBlock/index.d.ts +3 -0
- package/dist/CodeGroup.d.ts +12 -0
- package/dist/Param.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/main.css +61 -198
- package/package.json +2 -2
- package/package-lock.json +0 -43371
package/dist/main.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
! tailwindcss v3.
|
|
2
|
+
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
|
|
3
3
|
*//*
|
|
4
4
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
5
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
25
25
|
3. Use a more readable tab size.
|
|
26
26
|
4. Use the user's configured `sans` font-family by default.
|
|
27
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
27
28
|
*/
|
|
28
29
|
|
|
29
30
|
html {
|
|
@@ -33,6 +34,7 @@ html {
|
|
|
33
34
|
-o-tab-size: 4;
|
|
34
35
|
tab-size: 4; /* 3 */
|
|
35
36
|
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
|
|
37
|
+
font-feature-settings: normal; /* 5 */
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
/*
|
|
@@ -369,54 +371,12 @@ video {
|
|
|
369
371
|
height: auto;
|
|
370
372
|
}
|
|
371
373
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
--tw-translate-x: 0;
|
|
376
|
-
--tw-translate-y: 0;
|
|
377
|
-
--tw-rotate: 0;
|
|
378
|
-
--tw-skew-x: 0;
|
|
379
|
-
--tw-skew-y: 0;
|
|
380
|
-
--tw-scale-x: 1;
|
|
381
|
-
--tw-scale-y: 1;
|
|
382
|
-
--tw-pan-x: ;
|
|
383
|
-
--tw-pan-y: ;
|
|
384
|
-
--tw-pinch-zoom: ;
|
|
385
|
-
--tw-scroll-snap-strictness: proximity;
|
|
386
|
-
--tw-ordinal: ;
|
|
387
|
-
--tw-slashed-zero: ;
|
|
388
|
-
--tw-numeric-figure: ;
|
|
389
|
-
--tw-numeric-spacing: ;
|
|
390
|
-
--tw-numeric-fraction: ;
|
|
391
|
-
--tw-ring-inset: ;
|
|
392
|
-
--tw-ring-offset-width: 0px;
|
|
393
|
-
--tw-ring-offset-color: #fff;
|
|
394
|
-
--tw-ring-color: rgba(59, 130, 246, 0.5);
|
|
395
|
-
--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
|
|
396
|
-
--tw-ring-shadow: 0 0 rgba(0,0,0,0);
|
|
397
|
-
--tw-shadow: 0 0 rgba(0,0,0,0);
|
|
398
|
-
--tw-shadow-colored: 0 0 rgba(0,0,0,0);
|
|
399
|
-
--tw-blur: ;
|
|
400
|
-
--tw-brightness: ;
|
|
401
|
-
--tw-contrast: ;
|
|
402
|
-
--tw-grayscale: ;
|
|
403
|
-
--tw-hue-rotate: ;
|
|
404
|
-
--tw-invert: ;
|
|
405
|
-
--tw-saturate: ;
|
|
406
|
-
--tw-sepia: ;
|
|
407
|
-
--tw-drop-shadow: ;
|
|
408
|
-
--tw-backdrop-blur: ;
|
|
409
|
-
--tw-backdrop-brightness: ;
|
|
410
|
-
--tw-backdrop-contrast: ;
|
|
411
|
-
--tw-backdrop-grayscale: ;
|
|
412
|
-
--tw-backdrop-hue-rotate: ;
|
|
413
|
-
--tw-backdrop-invert: ;
|
|
414
|
-
--tw-backdrop-opacity: ;
|
|
415
|
-
--tw-backdrop-saturate: ;
|
|
416
|
-
--tw-backdrop-sepia: ;
|
|
374
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
375
|
+
[hidden] {
|
|
376
|
+
display: none;
|
|
417
377
|
}
|
|
418
378
|
|
|
419
|
-
|
|
379
|
+
*, ::before, ::after {
|
|
420
380
|
--tw-border-spacing-x: 0;
|
|
421
381
|
--tw-border-spacing-y: 0;
|
|
422
382
|
--tw-translate-x: 0;
|
|
@@ -1067,20 +1027,20 @@ video {
|
|
|
1067
1027
|
.prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) {
|
|
1068
1028
|
padding-left: 0.4285714em;
|
|
1069
1029
|
}
|
|
1070
|
-
.prose-sm :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1030
|
+
.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1071
1031
|
margin-top: 0.5714286em;
|
|
1072
1032
|
margin-bottom: 0.5714286em;
|
|
1073
1033
|
}
|
|
1074
|
-
.prose-sm :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1034
|
+
.prose-sm :where(.prose-sm > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1075
1035
|
margin-top: 1.1428571em;
|
|
1076
1036
|
}
|
|
1077
|
-
.prose-sm :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1037
|
+
.prose-sm :where(.prose-sm > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1078
1038
|
margin-bottom: 1.1428571em;
|
|
1079
1039
|
}
|
|
1080
|
-
.prose-sm :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1040
|
+
.prose-sm :where(.prose-sm > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1081
1041
|
margin-top: 1.1428571em;
|
|
1082
1042
|
}
|
|
1083
|
-
.prose-sm :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1043
|
+
.prose-sm :where(.prose-sm > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1084
1044
|
margin-bottom: 1.1428571em;
|
|
1085
1045
|
}
|
|
1086
1046
|
.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
|
|
@@ -1130,98 +1090,10 @@ video {
|
|
|
1130
1090
|
.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
|
|
1131
1091
|
padding-right: 0;
|
|
1132
1092
|
}
|
|
1133
|
-
.prose-sm :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1134
|
-
margin-top: 0;
|
|
1135
|
-
}
|
|
1136
|
-
.prose-sm :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1137
|
-
margin-bottom: 0;
|
|
1138
|
-
}
|
|
1139
|
-
.prose-base :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1140
|
-
margin-top: 0.75em;
|
|
1141
|
-
margin-bottom: 0.75em;
|
|
1142
|
-
}
|
|
1143
|
-
.prose-base :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1144
|
-
margin-top: 1.25em;
|
|
1145
|
-
}
|
|
1146
|
-
.prose-base :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1147
|
-
margin-bottom: 1.25em;
|
|
1148
|
-
}
|
|
1149
|
-
.prose-base :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1150
|
-
margin-top: 1.25em;
|
|
1151
|
-
}
|
|
1152
|
-
.prose-base :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1153
|
-
margin-bottom: 1.25em;
|
|
1154
|
-
}
|
|
1155
|
-
.prose-base :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1156
|
-
margin-top: 0;
|
|
1157
|
-
}
|
|
1158
|
-
.prose-base :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1159
|
-
margin-bottom: 0;
|
|
1160
|
-
}
|
|
1161
|
-
.prose-lg :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1162
|
-
margin-top: 0.8888889em;
|
|
1163
|
-
margin-bottom: 0.8888889em;
|
|
1164
|
-
}
|
|
1165
|
-
.prose-lg :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1166
|
-
margin-top: 1.3333333em;
|
|
1167
|
-
}
|
|
1168
|
-
.prose-lg :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1169
|
-
margin-bottom: 1.3333333em;
|
|
1170
|
-
}
|
|
1171
|
-
.prose-lg :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1172
|
-
margin-top: 1.3333333em;
|
|
1173
|
-
}
|
|
1174
|
-
.prose-lg :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1175
|
-
margin-bottom: 1.3333333em;
|
|
1176
|
-
}
|
|
1177
|
-
.prose-lg :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1178
|
-
margin-top: 0;
|
|
1179
|
-
}
|
|
1180
|
-
.prose-lg :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1181
|
-
margin-bottom: 0;
|
|
1182
|
-
}
|
|
1183
|
-
.prose-xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1184
|
-
margin-top: 0.8em;
|
|
1185
|
-
margin-bottom: 0.8em;
|
|
1186
|
-
}
|
|
1187
|
-
.prose-xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1188
|
-
margin-top: 1.2em;
|
|
1189
|
-
}
|
|
1190
|
-
.prose-xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1191
|
-
margin-bottom: 1.2em;
|
|
1192
|
-
}
|
|
1193
|
-
.prose-xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1194
|
-
margin-top: 1.2em;
|
|
1195
|
-
}
|
|
1196
|
-
.prose-xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1197
|
-
margin-bottom: 1.2em;
|
|
1198
|
-
}
|
|
1199
|
-
.prose-xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1200
|
-
margin-top: 0;
|
|
1201
|
-
}
|
|
1202
|
-
.prose-xl :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1203
|
-
margin-bottom: 0;
|
|
1204
|
-
}
|
|
1205
|
-
.prose-2xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1206
|
-
margin-top: 0.8333333em;
|
|
1207
|
-
margin-bottom: 0.8333333em;
|
|
1208
|
-
}
|
|
1209
|
-
.prose-2xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1210
|
-
margin-top: 1.3333333em;
|
|
1211
|
-
}
|
|
1212
|
-
.prose-2xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1213
|
-
margin-bottom: 1.3333333em;
|
|
1214
|
-
}
|
|
1215
|
-
.prose-2xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1216
|
-
margin-top: 1.3333333em;
|
|
1217
|
-
}
|
|
1218
|
-
.prose-2xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1219
|
-
margin-bottom: 1.3333333em;
|
|
1220
|
-
}
|
|
1221
|
-
.prose-2xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1093
|
+
.prose-sm :where(.prose-sm > :first-child):not(:where([class~="not-prose"] *)) {
|
|
1222
1094
|
margin-top: 0;
|
|
1223
1095
|
}
|
|
1224
|
-
.prose-
|
|
1096
|
+
.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1225
1097
|
margin-bottom: 0;
|
|
1226
1098
|
}
|
|
1227
1099
|
.prose-slate {
|
|
@@ -1266,14 +1138,12 @@ video {
|
|
|
1266
1138
|
--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
|
1267
1139
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1268
1140
|
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
|
1269
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
|
1270
1141
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
|
|
1271
1142
|
}
|
|
1272
1143
|
.dark .gray-frame {
|
|
1273
1144
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1274
1145
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1275
1146
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
|
1276
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
|
1277
1147
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
|
1278
1148
|
--tw-ring-inset: inset;
|
|
1279
1149
|
--tw-ring-color: rgba(255, 255, 255, 0.1);
|
|
@@ -1482,7 +1352,6 @@ video {
|
|
|
1482
1352
|
width: 10rem;
|
|
1483
1353
|
}
|
|
1484
1354
|
.w-fit {
|
|
1485
|
-
width: -webkit-fit-content;
|
|
1486
1355
|
width: -moz-fit-content;
|
|
1487
1356
|
width: fit-content;
|
|
1488
1357
|
}
|
|
@@ -1490,7 +1359,6 @@ video {
|
|
|
1490
1359
|
min-width: 100%;
|
|
1491
1360
|
}
|
|
1492
1361
|
.max-w-max {
|
|
1493
|
-
max-width: -webkit-max-content;
|
|
1494
1362
|
max-width: -moz-max-content;
|
|
1495
1363
|
max-width: max-content;
|
|
1496
1364
|
}
|
|
@@ -1587,6 +1455,9 @@ video {
|
|
|
1587
1455
|
.overflow-visible {
|
|
1588
1456
|
overflow: visible;
|
|
1589
1457
|
}
|
|
1458
|
+
.overflow-x-auto {
|
|
1459
|
+
overflow-x: auto;
|
|
1460
|
+
}
|
|
1590
1461
|
.truncate {
|
|
1591
1462
|
overflow: hidden;
|
|
1592
1463
|
text-overflow: ellipsis;
|
|
@@ -1950,16 +1821,13 @@ video {
|
|
|
1950
1821
|
color: rgba(190, 24, 93, var(--tw-text-opacity));
|
|
1951
1822
|
}
|
|
1952
1823
|
.underline {
|
|
1953
|
-
|
|
1954
|
-
text-decoration-line: underline;
|
|
1824
|
+
text-decoration-line: underline;
|
|
1955
1825
|
}
|
|
1956
1826
|
.decoration-slate-400 {
|
|
1957
|
-
|
|
1958
|
-
text-decoration-color: #94a3b8;
|
|
1827
|
+
text-decoration-color: #94a3b8;
|
|
1959
1828
|
}
|
|
1960
1829
|
.decoration-dotted {
|
|
1961
|
-
|
|
1962
|
-
text-decoration-style: dotted;
|
|
1830
|
+
text-decoration-style: dotted;
|
|
1963
1831
|
}
|
|
1964
1832
|
.decoration-2 {
|
|
1965
1833
|
text-decoration-thickness: 2px;
|
|
@@ -1971,7 +1839,6 @@ video {
|
|
|
1971
1839
|
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
|
|
1972
1840
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1973
1841
|
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
|
1974
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
|
|
1975
1842
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
|
|
1976
1843
|
}
|
|
1977
1844
|
.outline-none {
|
|
@@ -1982,7 +1849,6 @@ video {
|
|
|
1982
1849
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1983
1850
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1984
1851
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
|
1985
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
|
1986
1852
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
|
1987
1853
|
}
|
|
1988
1854
|
.ring-transparent {
|
|
@@ -2064,7 +1930,6 @@ video {
|
|
|
2064
1930
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2065
1931
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2066
1932
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
|
2067
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
|
|
2068
1933
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
|
|
2069
1934
|
}
|
|
2070
1935
|
.focus\:ring-indigo-500:focus {
|
|
@@ -2121,49 +1986,8 @@ video {
|
|
|
2121
1986
|
--tw-shadow: 0 0 rgba(0,0,0,0) !important;
|
|
2122
1987
|
--tw-shadow-colored: 0 0 rgba(0,0,0,0) !important;
|
|
2123
1988
|
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
|
|
2124
|
-
box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
|
|
2125
1989
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
|
|
2126
1990
|
}
|
|
2127
|
-
.dark .dark\:prose-dark {
|
|
2128
|
-
color: #94a3b8;
|
|
2129
|
-
}
|
|
2130
|
-
.dark .dark\:prose-dark :where(h1, h2, h3, h4, thead th):not(:where([class~="not-prose"] *)) {
|
|
2131
|
-
color: #e2e8f0;
|
|
2132
|
-
}
|
|
2133
|
-
.dark .dark\:prose-dark :where(h1 small, h2 small, h3 small, h4 small):not(:where([class~="not-prose"] *)) {
|
|
2134
|
-
color: #94a3b8;
|
|
2135
|
-
}
|
|
2136
|
-
.dark .dark\:prose-dark :where(kbd):not(:where([class~="not-prose"] *)) {
|
|
2137
|
-
background: #334155;
|
|
2138
|
-
border-color: #475569;
|
|
2139
|
-
color: #e2e8f0;
|
|
2140
|
-
}
|
|
2141
|
-
.dark .dark\:prose-dark :where(code):not(:where([class~="not-prose"] *)) {
|
|
2142
|
-
color: #e2e8f0;
|
|
2143
|
-
}
|
|
2144
|
-
.dark .dark\:prose-dark :where(hr):not(:where([class~="not-prose"] *)) {
|
|
2145
|
-
border-color: #e2e8f0;
|
|
2146
|
-
opacity: 0.05;
|
|
2147
|
-
}
|
|
2148
|
-
.dark .dark\:prose-dark :where(pre):not(:where([class~="not-prose"] *)) {
|
|
2149
|
-
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
|
2150
|
-
}
|
|
2151
|
-
.dark .dark\:prose-dark :where(a):not(:where([class~="not-prose"] *)) {
|
|
2152
|
-
color: #fff;
|
|
2153
|
-
}
|
|
2154
|
-
.dark .dark\:prose-dark :where(strong):not(:where([class~="not-prose"] *)) {
|
|
2155
|
-
color: #e2e8f0;
|
|
2156
|
-
}
|
|
2157
|
-
.dark .dark\:prose-dark :where(thead):not(:where([class~="not-prose"] *)) {
|
|
2158
|
-
color: #cbd5e1;
|
|
2159
|
-
border-bottom-color: rgba(148, 163, 184, 0.2);
|
|
2160
|
-
}
|
|
2161
|
-
.dark .dark\:prose-dark :where(tbody tr):not(:where([class~="not-prose"] *)) {
|
|
2162
|
-
border-bottom-color: rgba(148, 163, 184, 0.1);
|
|
2163
|
-
}
|
|
2164
|
-
.dark .dark\:prose-dark :where(blockQuote):not(:where([class~="not-prose"] *)) {
|
|
2165
|
-
color: #fff;
|
|
2166
|
-
}
|
|
2167
1991
|
.dark .dark\:border-slate-800 {
|
|
2168
1992
|
--tw-border-opacity: 1;
|
|
2169
1993
|
border-color: rgba(30, 41, 59, var(--tw-border-opacity));
|
|
@@ -2268,8 +2092,47 @@ video {
|
|
|
2268
2092
|
color: rgba(249, 168, 212, var(--tw-text-opacity));
|
|
2269
2093
|
}
|
|
2270
2094
|
.dark .dark\:decoration-slate-500 {
|
|
2271
|
-
|
|
2272
|
-
|
|
2095
|
+
text-decoration-color: #64748b;
|
|
2096
|
+
}
|
|
2097
|
+
.dark .dark\:prose-dark {
|
|
2098
|
+
color: #94a3b8;
|
|
2099
|
+
}
|
|
2100
|
+
.dark .dark\:prose-dark :where(h1, h2, h3, h4, thead th):not(:where([class~="not-prose"] *)) {
|
|
2101
|
+
color: #e2e8f0;
|
|
2102
|
+
}
|
|
2103
|
+
.dark .dark\:prose-dark :where(h1 small, h2 small, h3 small, h4 small):not(:where([class~="not-prose"] *)) {
|
|
2104
|
+
color: #94a3b8;
|
|
2105
|
+
}
|
|
2106
|
+
.dark .dark\:prose-dark :where(kbd):not(:where([class~="not-prose"] *)) {
|
|
2107
|
+
background: #334155;
|
|
2108
|
+
border-color: #475569;
|
|
2109
|
+
color: #e2e8f0;
|
|
2110
|
+
}
|
|
2111
|
+
.dark .dark\:prose-dark :where(code):not(:where([class~="not-prose"] *)) {
|
|
2112
|
+
color: #e2e8f0;
|
|
2113
|
+
}
|
|
2114
|
+
.dark .dark\:prose-dark :where(hr):not(:where([class~="not-prose"] *)) {
|
|
2115
|
+
border-color: #e2e8f0;
|
|
2116
|
+
opacity: 0.05;
|
|
2117
|
+
}
|
|
2118
|
+
.dark .dark\:prose-dark :where(pre):not(:where([class~="not-prose"] *)) {
|
|
2119
|
+
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
|
2120
|
+
}
|
|
2121
|
+
.dark .dark\:prose-dark :where(a):not(:where([class~="not-prose"] *)) {
|
|
2122
|
+
color: #fff;
|
|
2123
|
+
}
|
|
2124
|
+
.dark .dark\:prose-dark :where(strong):not(:where([class~="not-prose"] *)) {
|
|
2125
|
+
color: #e2e8f0;
|
|
2126
|
+
}
|
|
2127
|
+
.dark .dark\:prose-dark :where(thead):not(:where([class~="not-prose"] *)) {
|
|
2128
|
+
color: #cbd5e1;
|
|
2129
|
+
border-bottom-color: rgba(148, 163, 184, 0.2);
|
|
2130
|
+
}
|
|
2131
|
+
.dark .dark\:prose-dark :where(tbody tr):not(:where([class~="not-prose"] *)) {
|
|
2132
|
+
border-bottom-color: rgba(148, 163, 184, 0.1);
|
|
2133
|
+
}
|
|
2134
|
+
.dark .dark\:prose-dark :where(blockQuote):not(:where([class~="not-prose"] *)) {
|
|
2135
|
+
color: #fff;
|
|
2273
2136
|
}
|
|
2274
2137
|
.dark .dark\:bg-grid-slate-700\/25 {
|
|
2275
2138
|
background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 32 32%27 width=%2732%27 height=%2732%27 fill=%27none%27 stroke=%27rgb%2851 65 85 / 0.25%29%27%3e%3cpath d=%27M0 .5H31.5V32%27/%3e%3c/svg%3e");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.48",
|
|
4
4
|
"description": "Open-source library of UI components made with React and TailwindCSS.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "webpack",
|
|
19
|
-
"
|
|
19
|
+
"publish-package": "npm run build && npm publish --access public",
|
|
20
20
|
"storybook": "start-storybook -p 6006",
|
|
21
21
|
"build-storybook": "build-storybook"
|
|
22
22
|
},
|