tailwindcss 0.0.0-oxide-insiders.52ca21b → 0.0.0-oxide-insiders.bfdf3a7
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 +6 -0
- package/package.json +3 -3
- package/src/corePlugins.js +2 -0
package/lib/corePlugins.js
CHANGED
|
@@ -1805,6 +1805,9 @@ let corePlugins = {
|
|
|
1805
1805
|
},
|
|
1806
1806
|
alignContent: ({ addUtilities })=>{
|
|
1807
1807
|
addUtilities({
|
|
1808
|
+
".content-normal": {
|
|
1809
|
+
"align-content": "normal"
|
|
1810
|
+
},
|
|
1808
1811
|
".content-center": {
|
|
1809
1812
|
"align-content": "center"
|
|
1810
1813
|
},
|
|
@@ -1825,6 +1828,9 @@ let corePlugins = {
|
|
|
1825
1828
|
},
|
|
1826
1829
|
".content-baseline": {
|
|
1827
1830
|
"align-content": "baseline"
|
|
1831
|
+
},
|
|
1832
|
+
".content-stretch": {
|
|
1833
|
+
"align-content": "stretch"
|
|
1828
1834
|
}
|
|
1829
1835
|
});
|
|
1830
1836
|
},
|
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.bfdf3a7",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"*.js"
|
|
49
49
|
],
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@swc/cli": "0.1.
|
|
51
|
+
"@swc/cli": "0.1.62",
|
|
52
52
|
"@swc/core": "1.3.35",
|
|
53
53
|
"@swc/jest": "0.2.24",
|
|
54
54
|
"@swc/register": "0.1.10",
|
|
@@ -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.bfdf3a7",
|
|
74
74
|
"arg": "^5.0.2",
|
|
75
75
|
"browserslist": "^4.21.5",
|
|
76
76
|
"chokidar": "^3.5.3",
|
package/src/corePlugins.js
CHANGED
|
@@ -1196,6 +1196,7 @@ export let corePlugins = {
|
|
|
1196
1196
|
|
|
1197
1197
|
alignContent: ({ addUtilities }) => {
|
|
1198
1198
|
addUtilities({
|
|
1199
|
+
'.content-normal': { 'align-content': 'normal' },
|
|
1199
1200
|
'.content-center': { 'align-content': 'center' },
|
|
1200
1201
|
'.content-start': { 'align-content': 'flex-start' },
|
|
1201
1202
|
'.content-end': { 'align-content': 'flex-end' },
|
|
@@ -1203,6 +1204,7 @@ export let corePlugins = {
|
|
|
1203
1204
|
'.content-around': { 'align-content': 'space-around' },
|
|
1204
1205
|
'.content-evenly': { 'align-content': 'space-evenly' },
|
|
1205
1206
|
'.content-baseline': { 'align-content': 'baseline' },
|
|
1207
|
+
'.content-stretch': { 'align-content': 'stretch' },
|
|
1206
1208
|
})
|
|
1207
1209
|
},
|
|
1208
1210
|
|