@mrhenry/stylelint-mrhenry-prop-order 3.1.9 → 3.1.11

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.
Files changed (2) hide show
  1. package/order.mjs +23 -1
  2. package/package.json +3 -3
package/order.mjs CHANGED
@@ -107,6 +107,28 @@ export const order = [
107
107
  "border-left-style",
108
108
  "border-left-width",
109
109
 
110
+ "corner",
111
+ // logical shorthands
112
+ "corner-inline-start",
113
+ "corner-inline-end",
114
+ "corner-block-start",
115
+ "corner-block-end",
116
+ // logical longhands
117
+ "corner-start-start",
118
+ "corner-start-end",
119
+ "corner-end-end",
120
+ "corner-end-start",
121
+ // physical shorthands
122
+ "corner-top",
123
+ "corner-right",
124
+ "corner-bottom",
125
+ "corner-left",
126
+ // physical longhands
127
+ "corner-top-left",
128
+ "corner-top-right",
129
+ "corner-bottom-left",
130
+ "corner-bottom-right",
131
+
110
132
  "border-radius",
111
133
  // border radius logical shorthands
112
134
  "border-inline-start-radius",
@@ -362,7 +384,7 @@ export const order = [
362
384
  "item-wrap",
363
385
  "item-cross",
364
386
  "item-pack",
365
- "item-slack",
387
+ "item-tolerance",
366
388
  "letter-spacing",
367
389
  "lighting-color",
368
390
  "line-break",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrhenry/stylelint-mrhenry-prop-order",
3
- "version": "3.1.9",
3
+ "version": "3.1.11",
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.23.1"
30
+ "stylelint": "^16.24.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "css-tree": "^3.1.0",
34
- "stylelint": "^16.23.1"
34
+ "stylelint": "^16.24.0"
35
35
  }
36
36
  }