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", 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)