tailwindcss 2.0.1-compat → 2.0.4
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 +47 -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 +15 -12
- 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/lib/util/withAlphaVariable.js +2 -1
- package/package.json +25 -23
- package/scripts/compat.js +8 -2
- package/stubs/defaultConfig.stub.js +21 -20
- package/lib/index.postcss8.js +0 -92
- package/tailwind.config.js +0 -9
package/dist/utilities.css
CHANGED
|
@@ -10199,6 +10199,10 @@
|
|
|
10199
10199
|
cursor: move
|
|
10200
10200
|
}
|
|
10201
10201
|
|
|
10202
|
+
.cursor-help {
|
|
10203
|
+
cursor: help
|
|
10204
|
+
}
|
|
10205
|
+
|
|
10202
10206
|
.cursor-not-allowed {
|
|
10203
10207
|
cursor: not-allowed
|
|
10204
10208
|
}
|
|
@@ -38769,6 +38773,10 @@
|
|
|
38769
38773
|
cursor: move
|
|
38770
38774
|
}
|
|
38771
38775
|
|
|
38776
|
+
.sm\:cursor-help {
|
|
38777
|
+
cursor: help
|
|
38778
|
+
}
|
|
38779
|
+
|
|
38772
38780
|
.sm\:cursor-not-allowed {
|
|
38773
38781
|
cursor: not-allowed
|
|
38774
38782
|
}
|
|
@@ -67296,6 +67304,10 @@
|
|
|
67296
67304
|
cursor: move
|
|
67297
67305
|
}
|
|
67298
67306
|
|
|
67307
|
+
.md\:cursor-help {
|
|
67308
|
+
cursor: help
|
|
67309
|
+
}
|
|
67310
|
+
|
|
67299
67311
|
.md\:cursor-not-allowed {
|
|
67300
67312
|
cursor: not-allowed
|
|
67301
67313
|
}
|
|
@@ -95823,6 +95835,10 @@
|
|
|
95823
95835
|
cursor: move
|
|
95824
95836
|
}
|
|
95825
95837
|
|
|
95838
|
+
.lg\:cursor-help {
|
|
95839
|
+
cursor: help
|
|
95840
|
+
}
|
|
95841
|
+
|
|
95826
95842
|
.lg\:cursor-not-allowed {
|
|
95827
95843
|
cursor: not-allowed
|
|
95828
95844
|
}
|
|
@@ -124350,6 +124366,10 @@
|
|
|
124350
124366
|
cursor: move
|
|
124351
124367
|
}
|
|
124352
124368
|
|
|
124369
|
+
.xl\:cursor-help {
|
|
124370
|
+
cursor: help
|
|
124371
|
+
}
|
|
124372
|
+
|
|
124353
124373
|
.xl\:cursor-not-allowed {
|
|
124354
124374
|
cursor: not-allowed
|
|
124355
124375
|
}
|
|
@@ -152877,6 +152897,10 @@
|
|
|
152877
152897
|
cursor: move
|
|
152878
152898
|
}
|
|
152879
152899
|
|
|
152900
|
+
.\32xl\:cursor-help {
|
|
152901
|
+
cursor: help
|
|
152902
|
+
}
|
|
152903
|
+
|
|
152880
152904
|
.\32xl\:cursor-not-allowed {
|
|
152881
152905
|
cursor: not-allowed
|
|
152882
152906
|
}
|