@mrhenry/stylelint-mrhenry-prop-order 3.0.18 → 3.0.20
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/order.mjs +24 -8
- package/package.json +4 -4
package/order.mjs
CHANGED
|
@@ -96,6 +96,9 @@ export const order = [
|
|
|
96
96
|
"border-left-color",
|
|
97
97
|
"border-left-style",
|
|
98
98
|
"border-left-width",
|
|
99
|
+
|
|
100
|
+
"corners",
|
|
101
|
+
"border-radius",
|
|
99
102
|
// border radius logical shorthands
|
|
100
103
|
"border-inline-start-radius",
|
|
101
104
|
"border-inline-end-radius",
|
|
@@ -116,12 +119,10 @@ export const order = [
|
|
|
116
119
|
"border-top-right-radius",
|
|
117
120
|
"border-bottom-left-radius",
|
|
118
121
|
"border-bottom-right-radius",
|
|
122
|
+
|
|
119
123
|
"border-boundary",
|
|
120
124
|
"border-limit",
|
|
121
125
|
|
|
122
|
-
"corners",
|
|
123
|
-
"border-radius",
|
|
124
|
-
|
|
125
126
|
"border-spacing",
|
|
126
127
|
"border-clip",
|
|
127
128
|
"border-clip-top",
|
|
@@ -167,10 +168,6 @@ export const order = [
|
|
|
167
168
|
"columns",
|
|
168
169
|
"column-count",
|
|
169
170
|
"column-fill",
|
|
170
|
-
"column-rule",
|
|
171
|
-
"column-rule-color",
|
|
172
|
-
"column-rule-style",
|
|
173
|
-
"column-rule-width",
|
|
174
171
|
"column-span",
|
|
175
172
|
"column-width",
|
|
176
173
|
"contain",
|
|
@@ -260,8 +257,27 @@ export const order = [
|
|
|
260
257
|
"footnote-policy",
|
|
261
258
|
"forced-color-adjust",
|
|
262
259
|
"gap",
|
|
260
|
+
"gap-rule",
|
|
261
|
+
"gap-rule-width",
|
|
262
|
+
"gap-rule-style",
|
|
263
|
+
"gap-rule-color",
|
|
264
|
+
"gap-rule-break",
|
|
265
|
+
"gap-rule-outset",
|
|
266
|
+
"gap-rule-paint-order",
|
|
263
267
|
"row-gap",
|
|
268
|
+
"row-rule",
|
|
269
|
+
"row-rule-width",
|
|
270
|
+
"row-rule-style",
|
|
271
|
+
"row-rule-color",
|
|
272
|
+
"row-rule-break",
|
|
273
|
+
"row-rule-outset",
|
|
264
274
|
"column-gap",
|
|
275
|
+
"column-rule",
|
|
276
|
+
"column-rule-width",
|
|
277
|
+
"column-rule-style",
|
|
278
|
+
"column-rule-color",
|
|
279
|
+
"column-rule-break",
|
|
280
|
+
"column-rule-outset",
|
|
265
281
|
"glyph-orientation-vertical",
|
|
266
282
|
"grid",
|
|
267
283
|
"grid-gap",
|
|
@@ -499,7 +515,7 @@ export const order = [
|
|
|
499
515
|
"scroll-snap-align",
|
|
500
516
|
"scroll-snap-stop",
|
|
501
517
|
"scroll-snap-type",
|
|
502
|
-
"scroll-
|
|
518
|
+
"scroll-initial-target",
|
|
503
519
|
"scroll-timeline",
|
|
504
520
|
"scroll-timeline-axis",
|
|
505
521
|
"scroll-timeline-name",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrhenry/stylelint-mrhenry-prop-order",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.20",
|
|
4
4
|
"description": "Mr. Henry's preferred order for CSS properties",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.mjs",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"stylelint-plugin"
|
|
28
28
|
],
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"stylelint": "^16.
|
|
30
|
+
"stylelint": "^16.13.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"css-tree": "^3.
|
|
34
|
-
"stylelint": "^16.
|
|
33
|
+
"css-tree": "^3.1.0",
|
|
34
|
+
"stylelint": "^16.13.0"
|
|
35
35
|
}
|
|
36
36
|
}
|