Skip to content

Commit

Permalink
fix: broken build for flutter version
Browse files Browse the repository at this point in the history
  • Loading branch information
omariosouto committed Jan 26, 2022
1 parent 18140ba commit c4bf04e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/components/box/box.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ it('works', () => {
xs: 'red',
},
padding: {
xs: 10,
xs: '10',
},
}}
>
Expand Down
3 changes: 2 additions & 1 deletion lib/core/stylesheet/stylesheet.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@
},
"flex": {
"type": "int?",
"default": "defaultIntEmptyValue"
"default": "defaultIntEmptyValue",
"hintValues": "number | string"
},
"overflowY": {
"type": "String?",
Expand Down
2 changes: 1 addition & 1 deletion lib/core/stylesheet/stylesheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface StyleSheet {
borderRadiusTopLeft?: ResponsiveProperty<string> | string;
borderRadius?: ResponsiveProperty<string> | string;
overflowY?: ResponsiveProperty<'visible' | 'hidden' | 'scroll'> | string;
flex?: ResponsiveProperty<int> | string | number;
flex?: ResponsiveProperty<number | string> | string | number;
alignItems?:
| ResponsiveProperty<'stretch' | 'flex-start' | 'flex-end' | 'center'>
| string;
Expand Down

3 comments on commit c4bf04e

@vercel
Copy link

@vercel vercel bot commented on c4bf04e Jan 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on c4bf04e Jan 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

sknui-demobase-react – ./examples/demo_base

sknui-demobase-react-git-main-skynexui.vercel.app
sknui-demobase-react.vercel.app
sknui-demobase-react-skynexui.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c4bf04e Jan 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.