tailwindcss 2.0.0 → 2.0.3
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/CHANGELOG.md +30 -1
- package/dist/base.css +3 -0
- package/dist/base.min.css +1 -1
- package/dist/tailwind-dark.css +7587 -0
- package/dist/tailwind-dark.min.css +1 -1
- package/dist/tailwind-experimental.css +27 -0
- package/dist/tailwind-experimental.min.css +1 -1
- package/dist/tailwind.css +27 -0
- package/dist/tailwind.min.css +1 -1
- package/dist/utilities.css +24 -0
- package/dist/utilities.min.css +1 -1
- package/lib/cli/commands/init.js +6 -4
- package/lib/cli/utils.js +22 -2
- package/lib/constants.js +9 -1
- package/lib/index.js +8 -6
- package/lib/index.postcss7.js +8 -6
- package/lib/lib/evaluateTailwindFunctions.js +1 -1
- package/lib/lib/substituteClassApplyAtRules.js +71 -32
- package/lib/lib/substituteTailwindAtRules.js +1 -1
- package/lib/plugins/css/preflight.css +1 -0
- package/lib/plugins/preflight.js +5 -1
- package/lib/plugins/ringOffsetColor.js +1 -1
- package/lib/plugins/ringOffsetWidth.js +1 -1
- package/lib/plugins/ringWidth.js +2 -2
- package/lib/processTailwindFeatures.js +4 -0
- package/lib/util/disposables.js +30 -0
- package/lib/util/transformThemeValue.js +4 -0
- package/lib/util/useMemo.js +14 -3
- package/package.json +17 -17
- package/scripts/compat.js +8 -2
- package/stubs/defaultConfig.stub.js +21 -20
- package/tailwind.config.js +0 -9
package/dist/tailwind.css
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/*! tailwindcss v2.0.3 | MIT License | https://tailwindcss.com */
|
|
2
|
+
|
|
1
3
|
/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
2
4
|
|
|
3
5
|
/*
|
|
@@ -440,6 +442,7 @@ textarea {
|
|
|
440
442
|
|
|
441
443
|
input::placeholder,
|
|
442
444
|
textarea::placeholder {
|
|
445
|
+
opacity: 1;
|
|
443
446
|
color: #9ca3af;
|
|
444
447
|
}
|
|
445
448
|
|
|
@@ -10772,6 +10775,10 @@ video {
|
|
|
10772
10775
|
cursor: move;
|
|
10773
10776
|
}
|
|
10774
10777
|
|
|
10778
|
+
.cursor-help {
|
|
10779
|
+
cursor: help;
|
|
10780
|
+
}
|
|
10781
|
+
|
|
10775
10782
|
.cursor-not-allowed {
|
|
10776
10783
|
cursor: not-allowed;
|
|
10777
10784
|
}
|
|
@@ -39376,6 +39383,10 @@ video {
|
|
|
39376
39383
|
cursor: move;
|
|
39377
39384
|
}
|
|
39378
39385
|
|
|
39386
|
+
.sm\:cursor-help {
|
|
39387
|
+
cursor: help;
|
|
39388
|
+
}
|
|
39389
|
+
|
|
39379
39390
|
.sm\:cursor-not-allowed {
|
|
39380
39391
|
cursor: not-allowed;
|
|
39381
39392
|
}
|
|
@@ -67937,6 +67948,10 @@ video {
|
|
|
67937
67948
|
cursor: move;
|
|
67938
67949
|
}
|
|
67939
67950
|
|
|
67951
|
+
.md\:cursor-help {
|
|
67952
|
+
cursor: help;
|
|
67953
|
+
}
|
|
67954
|
+
|
|
67940
67955
|
.md\:cursor-not-allowed {
|
|
67941
67956
|
cursor: not-allowed;
|
|
67942
67957
|
}
|
|
@@ -96498,6 +96513,10 @@ video {
|
|
|
96498
96513
|
cursor: move;
|
|
96499
96514
|
}
|
|
96500
96515
|
|
|
96516
|
+
.lg\:cursor-help {
|
|
96517
|
+
cursor: help;
|
|
96518
|
+
}
|
|
96519
|
+
|
|
96501
96520
|
.lg\:cursor-not-allowed {
|
|
96502
96521
|
cursor: not-allowed;
|
|
96503
96522
|
}
|
|
@@ -125059,6 +125078,10 @@ video {
|
|
|
125059
125078
|
cursor: move;
|
|
125060
125079
|
}
|
|
125061
125080
|
|
|
125081
|
+
.xl\:cursor-help {
|
|
125082
|
+
cursor: help;
|
|
125083
|
+
}
|
|
125084
|
+
|
|
125062
125085
|
.xl\:cursor-not-allowed {
|
|
125063
125086
|
cursor: not-allowed;
|
|
125064
125087
|
}
|
|
@@ -153620,6 +153643,10 @@ video {
|
|
|
153620
153643
|
cursor: move;
|
|
153621
153644
|
}
|
|
153622
153645
|
|
|
153646
|
+
.\32xl\:cursor-help {
|
|
153647
|
+
cursor: help;
|
|
153648
|
+
}
|
|
153649
|
+
|
|
153623
153650
|
.\32xl\:cursor-not-allowed {
|
|
153624
153651
|
cursor: not-allowed;
|
|
153625
153652
|
}
|