@xelto.npm/xc2-lib 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +40 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +40 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -10050,8 +10050,47 @@ process.env.NODE_ENV !== "production" ? Typography.propTypes /* remove-proptypes
|
|
|
10050
10050
|
variantMapping: propTypes.exports /* @typescript-to-proptypes-ignore */.object
|
|
10051
10051
|
} : void 0;
|
|
10052
10052
|
|
|
10053
|
+
const theme = createTheme({
|
|
10054
|
+
mainPallete: {
|
|
10055
|
+
primary: {
|
|
10056
|
+
blue: '#293072',
|
|
10057
|
+
grey: '#5D5D5C',
|
|
10058
|
+
red: '#E42127',
|
|
10059
|
+
white: '#FFFFFF',
|
|
10060
|
+
placeholderText: '#B0BAD8',
|
|
10061
|
+
tooltipBg: '#53598E',
|
|
10062
|
+
},
|
|
10063
|
+
secondary: {
|
|
10064
|
+
inputsValidation: '#FFF5F5',
|
|
10065
|
+
buttonBlack: '#000000',
|
|
10066
|
+
buttonBlue: '#3A44A7',
|
|
10067
|
+
buttonGreen: '#61CC61',
|
|
10068
|
+
},
|
|
10069
|
+
table: {
|
|
10070
|
+
header: '#E7EAF3',
|
|
10071
|
+
border: '#DBE0F2',
|
|
10072
|
+
tableCellDarker: '#F6F8FB',
|
|
10073
|
+
bodyTextColor: '#2A3D96',
|
|
10074
|
+
selected: 'rgba(176,186,216,0.5)',
|
|
10075
|
+
}
|
|
10076
|
+
},
|
|
10077
|
+
fontWeight: {
|
|
10078
|
+
thin: 100,
|
|
10079
|
+
extraLight: 200,
|
|
10080
|
+
light: 300,
|
|
10081
|
+
regular: 400,
|
|
10082
|
+
medium: 500,
|
|
10083
|
+
semiBold: 600,
|
|
10084
|
+
bold: 700,
|
|
10085
|
+
extraBold: 800,
|
|
10086
|
+
black: 900,
|
|
10087
|
+
},
|
|
10088
|
+
fontFamily: [
|
|
10089
|
+
'"Barlow", sans-serif',
|
|
10090
|
+
].join(','),
|
|
10091
|
+
});
|
|
10092
|
+
|
|
10053
10093
|
var StyledTypography = styled(Typography)(function (_a) {
|
|
10054
|
-
var theme = _a.theme;
|
|
10055
10094
|
return ({
|
|
10056
10095
|
fontSize: '26px',
|
|
10057
10096
|
lineHeight: '34px',
|