tailwindcss 0.0.0-oxide-insiders.b2f132e → 0.0.0-oxide-insiders.8e85a86
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/lib/corePlugins.js
CHANGED
|
@@ -881,7 +881,10 @@ let corePlugins = {
|
|
|
881
881
|
});
|
|
882
882
|
addUtilities({
|
|
883
883
|
".line-clamp-none": {
|
|
884
|
-
|
|
884
|
+
overflow: "visible",
|
|
885
|
+
display: "block",
|
|
886
|
+
"-webkit-box-orient": "horizontal",
|
|
887
|
+
"-webkit-line-clamp": "none"
|
|
885
888
|
}
|
|
886
889
|
});
|
|
887
890
|
},
|
|
@@ -92,5 +92,6 @@ function* _getModuleDependencies(filename, base, seen, ext = _path.default.extna
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
function getModuleDependencies(absoluteFilePath) {
|
|
95
|
+
if (absoluteFilePath === null) return new Set();
|
|
95
96
|
return new Set(_getModuleDependencies(absoluteFilePath, _path.default.dirname(absoluteFilePath), new Set()));
|
|
96
97
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "0.0.0-oxide-insiders.
|
|
3
|
+
"version": "0.0.0-oxide-insiders.8e85a86",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"postcss": "^8.0.9"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@tailwindcss/oxide": "0.0.0-oxide-insiders.
|
|
73
|
+
"@tailwindcss/oxide": "0.0.0-oxide-insiders.8e85a86",
|
|
74
74
|
"arg": "^5.0.2",
|
|
75
75
|
"browserslist": "^4.21.5",
|
|
76
76
|
"chokidar": "^3.5.3",
|
package/src/corePlugins.js
CHANGED
|
@@ -717,7 +717,12 @@ export let corePlugins = {
|
|
|
717
717
|
)
|
|
718
718
|
|
|
719
719
|
addUtilities({
|
|
720
|
-
'.line-clamp-none': {
|
|
720
|
+
'.line-clamp-none': {
|
|
721
|
+
overflow: 'visible',
|
|
722
|
+
display: 'block',
|
|
723
|
+
'-webkit-box-orient': 'horizontal',
|
|
724
|
+
'-webkit-line-clamp': 'none',
|
|
725
|
+
},
|
|
721
726
|
})
|
|
722
727
|
},
|
|
723
728
|
|
|
@@ -72,6 +72,7 @@ function* _getModuleDependencies(filename, base, seen, ext = path.extname(filena
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
export default function getModuleDependencies(absoluteFilePath) {
|
|
75
|
+
if (absoluteFilePath === null) return new Set()
|
|
75
76
|
return new Set(
|
|
76
77
|
_getModuleDependencies(absoluteFilePath, path.dirname(absoluteFilePath), new Set())
|
|
77
78
|
)
|