-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* update 1 * update 2 * update 3 * update 4 * update 5 * update * update * update * Update CHANGELOG.md * update * Update Popover.jsx * Update Popover.jsx * Update demo.ete.js * update * update * update * update Co-authored-by: Gal Havivi <gal.havivi@oath.com>
- Loading branch information
Showing
169 changed files
with
2,439 additions
and
1,783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from 'react'; | ||
import { createGenerateClassName, StylesProvider } from '@mui/styles'; | ||
import { createTheme, ThemeProvider } from '@mui/material/styles'; | ||
|
||
// fixes issue in prod of css conflicts when using material ui + styled components | ||
const generateClassName = createGenerateClassName({ productionPrefix: 'react-app' }); | ||
|
||
|
||
const theme = createTheme({ | ||
// palette: { | ||
// primary: { | ||
// main: colors.blue[700], | ||
// }, | ||
// secondary: { | ||
// main: colors.blue[700], | ||
// }, | ||
// }, | ||
}); | ||
|
||
export default ({ children }) => (<StylesProvider generateClassName={generateClassName}> | ||
<ThemeProvider theme={theme}>{children}</ThemeProvider> | ||
</StylesProvider>); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ges/react-components/src/lib/edit/CheckboxCollection/internal/SearchInput/SearchInput.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
packages/react-components/src/lib/edit/DatePicker/DatePicker.styled.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* Copyright 2021, Gal Havivi | ||
* Licensed under the terms of the MIT license. See LICENSE file in project root for terms. | ||
*/ | ||
|
||
import styled from 'styled-components'; | ||
import InternalTextField from '@mui/material/TextField'; | ||
|
||
export const TextField = styled(InternalTextField)` | ||
width: 100%; | ||
input { | ||
padding-top: 5px; | ||
padding-bottom: 4px; | ||
padding-left: 0; | ||
} | ||
fieldset { | ||
border-radius: 0; | ||
border-top: 0; | ||
border-right: 0; | ||
border-left: 0; | ||
} | ||
`; | ||
|
||
export default { | ||
TextField, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
packages/react-components/src/lib/edit/DateTimePicker/DateTimePicker.styled.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* Copyright 2021, Gal Havivi | ||
* Licensed under the terms of the MIT license. See LICENSE file in project root for terms. | ||
*/ | ||
|
||
import styled from 'styled-components'; | ||
import InternalTextField from '@mui/material/TextField'; | ||
|
||
export const TextField = styled(InternalTextField)` | ||
width: 100%; | ||
input { | ||
padding-top: 5px; | ||
padding-bottom: 4px; | ||
padding-left: 0; | ||
} | ||
fieldset { | ||
border-radius: 0; | ||
border-top: 0; | ||
border-right: 0; | ||
border-left: 0; | ||
} | ||
`; | ||
|
||
export default { | ||
TextField, | ||
}; |
Oops, something went wrong.