Skip to content

Commit 756424a

Browse files
committed
minor fixes for library updates
1 parent 94e3ef5 commit 756424a

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

es/components/Card/Card.stories.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

es/components/Checkbox/Checkbox.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ export var withIndeterminate = function withIndeterminate() {
210210
};
211211
withIndeterminate.story = {
212212
name: 'with indeterminate'
213-
};
213+
};

es/components/FlexLayout/FlexLayout.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ export var withPointerCursor = function withPointerCursor() {
135135
};
136136
withPointerCursor.story = {
137137
name: 'with pointer cursor'
138-
};
138+
};

es/components/Grid/Grid.stories.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

es/components/TreeSelect/TreeSelect.theme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var _createThemeTag3 = createThemeTag(name, function (_ref) {
4444
borderColor: "".concat(COLORS.PRIMARY, " !important")
4545
},
4646
'&:after': {
47-
content: '\'3\' !important',
47+
content: '"33" !important',
4848
display: 'inline-block',
4949
borderRight: '2px solid hsl(0,0%,80%)',
5050
borderBottom: '2px solid hsl(0,0%,80%)',

es/components/TreeSelect/TreeSelect.theme.js.flow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const [_, treeSelectTheme] = createThemeTag(name, ({ COLORS, SIZES, FONTS }: *)
4141
},
4242

4343
'&:after': {
44-
content: '\'3\' !important',
44+
content: '"33" !important',
4545
display: 'inline-block',
4646
borderRight: '2px solid hsl(0,0%,80%)',
4747
borderBottom: '2px solid hsl(0,0%,80%)',

es/theme/createThemeTag.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"build:clean": "rm -rf es",
1010
"build:es": "NODE_ENV=production babel src -d es --ignore '**/*test.js','**/*stories.js'",
1111
"build:flow": "NODE_ENV=production yarn flow-copy-source src es -i '**/*test.js' -i '**/*stories.js'",
12-
"build": "yarn build:clean && yarn build:es && yarn build:flow",
12+
"build": "yarn build:clean && yarn build:es && yarn build:flow && yarn post-build",
1313
"watch": "NODE_ENV=development babel src -d es --watch --ignore '**/*test.js'",
1414
"build-storybook": "build-storybook -c storybook -o .out",
1515
"deploy-storybook": "storybook-to-ghpages",
@@ -26,7 +26,8 @@
2626
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
2727
"version": "yarn changelog && git add CHANGELOG.md",
2828
"postversion": "git push --follow-tags && yarn deploy-storybook",
29-
"commit": "git-cz"
29+
"commit": "git-cz",
30+
"post-build": "find ./es -type f -exec sed -i '' 's|import _styled from \"@emotion/styled-base\";|import _styled from \"@emotion/styled/base\";|g' {} +"
3031
},
3132
"peerDependencies": {
3233
"@emotion/react": "^11.13.5",

src/components/TreeSelect/TreeSelect.theme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const [_, treeSelectTheme] = createThemeTag(name, ({ COLORS, SIZES, FONTS }: *)
4141
},
4242

4343
'&:after': {
44-
content: '\'3\' !important',
44+
content: '"33" !important',
4545
display: 'inline-block',
4646
borderRight: '2px solid hsl(0,0%,80%)',
4747
borderBottom: '2px solid hsl(0,0%,80%)',

0 commit comments

Comments
 (0)