From 0f2b1f7aa272d93830292a9797bd21fbab83d710 Mon Sep 17 00:00:00 2001 From: emplums Date: Tue, 26 Mar 2019 14:56:10 -0700 Subject: [PATCH 1/2] move flex order to item again --- src/constants.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/constants.js b/src/constants.js index 76e4d9c8f7f..5a466918cbb 100644 --- a/src/constants.js +++ b/src/constants.js @@ -49,15 +49,15 @@ export const FLEX_CONTAINER_LIST = [ 'alignContent', 'alignItems', 'justifyContent', - 'justifyItems', - 'order' + 'justifyItems' ] export const FLEX_ITEM_LIST = [ // flex container child props 'flex', 'justifySelf', - 'alignSelf' + 'alignSelf', + 'order' ] export const COMMON = composeList(COMMON_LIST) From 220dcccb7dfd6ef0f80016e28a6b45abfd994739 Mon Sep 17 00:00:00 2001 From: emplums Date: Tue, 26 Mar 2019 15:05:16 -0700 Subject: [PATCH 2/2] update version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 75641cceaa7..d4cf924bebb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/components", - "version": "12.0.0", + "version": "12.0.1", "description": "Primer react components", "main": "dist/index.umd.js", "module": "dist/index.esm.js",