@mrhenry/stylelint-mrhenry-prop-order 4.0.6 → 4.0.8

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 +11 -9
  2. package/package.json +3 -3
package/order.mjs CHANGED
@@ -6,6 +6,8 @@ export const order = [
6
6
  "animation",
7
7
  "animation-composition",
8
8
  "animation-delay",
9
+ "animation-delay-start",
10
+ "animation-delay-end",
9
11
  "animation-direction",
10
12
  "animation-duration",
11
13
  "animation-fill-mode",
@@ -42,7 +44,6 @@ export const order = [
42
44
  "background-repeat-x",
43
45
  "background-repeat-y",
44
46
  "background-size",
45
- "baseline-source",
46
47
  "block-step",
47
48
  "block-step-align",
48
49
  "block-step-insert",
@@ -169,18 +170,19 @@ export const order = [
169
170
 
170
171
  "border-shape",
171
172
 
173
+ "corner-shape",
172
174
  "corner-inline-start-shape",
173
175
  "corner-inline-end-shape",
174
176
  "corner-block-start-shape",
175
177
  "corner-block-end-shape",
176
178
  "corner-top-shape",
177
- "corner-top-right-shape",
178
- "corner-top-left-shape",
179
179
  "corner-right-shape",
180
180
  "corner-bottom-shape",
181
+ "corner-left-shape",
182
+ "corner-top-right-shape",
183
+ "corner-top-left-shape",
181
184
  "corner-bottom-right-shape",
182
185
  "corner-bottom-left-shape",
183
- "corner-left-shape",
184
186
  "corner-start-start-shape",
185
187
  "corner-start-end-shape",
186
188
  "corner-end-end-shape",
@@ -234,9 +236,7 @@ export const order = [
234
236
  "container-type",
235
237
  "content",
236
238
  "content-visibility",
237
- "continue",
238
239
  "copy-into",
239
- "corner-shape",
240
240
  "counter-increment",
241
241
  "counter-reset",
242
242
  "counter-set",
@@ -314,6 +314,7 @@ export const order = [
314
314
  "footnote-display",
315
315
  "footnote-policy",
316
316
  "forced-color-adjust",
317
+ "grid-gap",
317
318
  "gap",
318
319
  "rule",
319
320
  "rule-width",
@@ -327,6 +328,7 @@ export const order = [
327
328
  "rule-inset-end",
328
329
  "rule-visibility-items",
329
330
  "rule-overlap",
331
+ "grid-row-gap",
330
332
  "row-gap",
331
333
  "row-rule",
332
334
  "row-rule-width",
@@ -343,6 +345,7 @@ export const order = [
343
345
  "row-rule-inset-junction-start",
344
346
  "row-rule-inset-junction-end",
345
347
  "row-rule-visibility-items",
348
+ "grid-column-gap",
346
349
  "column-gap",
347
350
  "column-rule",
348
351
  "column-rule-width",
@@ -361,16 +364,13 @@ export const order = [
361
364
  "column-rule-visibility-items",
362
365
  "glyph-orientation-vertical",
363
366
  "grid",
364
- "grid-gap",
365
367
  "grid-area",
366
368
  "grid-row",
367
369
  "grid-row-start",
368
370
  "grid-row-end",
369
- "grid-row-gap",
370
371
  "grid-column",
371
372
  "grid-column-start",
372
373
  "grid-column-end",
373
- "grid-column-gap",
374
374
  "grid-auto-rows",
375
375
  "grid-auto-columns",
376
376
  "grid-auto-flow",
@@ -410,6 +410,7 @@ export const order = [
410
410
  "lighting-color",
411
411
  "line-break",
412
412
  "line-clamp",
413
+ "continue",
413
414
  "line-fit-edge",
414
415
  "line-grid",
415
416
  "line-height",
@@ -711,6 +712,7 @@ export const order = [
711
712
  "user-select",
712
713
  "vector-effect",
713
714
  "vertical-align",
715
+ "baseline-source",
714
716
  "alignment-baseline",
715
717
  "baseline-shift",
716
718
  "view-timeline",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrhenry/stylelint-mrhenry-prop-order",
3
- "version": "4.0.6",
3
+ "version": "4.0.8",
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": "^17.10.0"
30
+ "stylelint": "^17.14.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "css-tree": "^3.2.1",
34
- "stylelint": "^17.10.0"
34
+ "stylelint": "^17.14.1"
35
35
  }
36
36
  }