From a8e4b5c25eff061717bea6bc66925b1b874d9fb9 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 25 Sep 2020 17:04:04 +0100 Subject: [PATCH 1/3] Fix typos in spacing top auto classes This doesn't cause errors, but does make these classes not work. --- src/less/spacing.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/less/spacing.less b/src/less/spacing.less index f4b405ebe..159620b26 100644 --- a/src/less/spacing.less +++ b/src/less/spacing.less @@ -82,7 +82,7 @@ } .@{prefix}-@{style}-top-auto { - .spacing-directional-styles(@style, 0, toauto); + .spacing-directional-styles(@style, auto, top); } .@{prefix}-@{style}-top-base { @@ -223,7 +223,7 @@ } .@{style}-top-auto { - .spacing-directional-styles(@style, 0, toauto); + .spacing-directional-styles(@style, auto, top); } .@{style}-top-base { From c4d66d04d7f8acb9c04f37c70ef08165ccf41981 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 28 Sep 2020 12:41:01 +0100 Subject: [PATCH 2/3] Fix top, bottom and left variants of typo --- src/less/spacing.less | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/less/spacing.less b/src/less/spacing.less index 159620b26..070591401 100644 --- a/src/less/spacing.less +++ b/src/less/spacing.less @@ -102,7 +102,7 @@ } .@{prefix}-@{style}-right-auto { - .spacing-directional-styles(@style, 0, righauto); + .spacing-directional-styles(@style, auto, right); } .@{prefix}-@{style}-right-base { @@ -122,7 +122,7 @@ } .@{prefix}-@{style}-bottom-auto { - .spacing-directional-styles(@style, 0, bottoauto); + .spacing-directional-styles(@style, auto, bottom); } .@{prefix}-@{style}-bottom-base { @@ -142,7 +142,7 @@ } .@{prefix}-@{style}-left-auto { - .spacing-directional-styles(@style, 0, lefauto); + .spacing-directional-styles(@style, auto, left); } .@{prefix}-@{style}-left-base { @@ -247,7 +247,7 @@ } .@{style}-right-auto { - .spacing-directional-styles(@style, 0, righauto); + .spacing-directional-styles(@style, auto, right); } .@{style}-right-small { @@ -263,7 +263,7 @@ } .@{style}-bottom-auto { - .spacing-directional-styles(@style, 0, bottoauto); + .spacing-directional-styles(@style, auto, bottom); } .@{style}-bottom-base { @@ -283,7 +283,7 @@ } .@{style}-left-auto { - .spacing-directional-styles(@style, 0, lefauto); + .spacing-directional-styles(@style, auto, left); } .@{style}-left-base { From c786b2834161cea44703c309e08cf9a521b22c73 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 28 Sep 2020 17:16:47 +0100 Subject: [PATCH 3/3] 0.11.2 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 498ac64fe..7e165c89b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@dabapps/roe", - "version": "0.11.1", + "version": "0.11.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a70e08961..b7f452e8a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dabapps/roe", - "version": "0.11.1", + "version": "0.11.2", "description": "A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.", "main": "dist/js/index.js", "types": "dist/js/index.d.ts",