@hipay/hipay-material-ui 3.12.2 → 3.13.0
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/HiAccordionSummary/HiAccordionSummary.js +4 -6
- package/HiAlertModal/HiAlertModal.js +2 -2
- package/HiBreadcrumb/HiStepLabel.js +1 -2
- package/HiChip/HiChip.js +1 -2
- package/HiChip/HiChipSwitch.js +1 -2
- package/HiColoredLabel/HiColoredLabel.js +5 -5
- package/HiDatePicker/Caption.js +1 -1
- package/HiDatePicker/HiDateRangePicker.js +1 -1
- package/HiDatePicker/HiDateRangeSelector.js +23 -20
- package/HiDatePicker/Overlays/CustomOverlayLayout.js +2 -4
- package/HiDatePicker/Overlays/CustomOverlayLayoutWithoutFooter.js +2 -4
- package/HiDatePicker/Overlays/TimePickerOverlay.js +2 -4
- package/HiDatePicker/stylesheet.js +2 -4
- package/HiDialog/HiDialog.js +1 -1
- package/HiExpansionPanel/HiExpansionPanel.js +3 -6
- package/HiForm/HiFormControl.js +5 -8
- package/HiForm/HiFormLabel.js +4 -5
- package/HiForm/HiInput.js +4 -5
- package/HiForm/HiSlider.js +1 -1
- package/HiForm/HiUploadInput.js +2 -3
- package/HiIconButton/HiIconButton.js +2 -2
- package/HiSelect/HiNestedSelect.js +2 -2
- package/HiSelect/HiSelect.js +2 -2
- package/HiSelect/HiSelectContent.js +2 -2
- package/HiSelect/HiSelectInput.js +1 -1
- package/HiSelectableList/HiSelectableListItem.js +3 -5
- package/HiTable/HiTableHeader.js +3 -2
- package/HiTable/HiTableRow.js +1 -2
- package/es/HiAccordionSummary/HiAccordionSummary.js +4 -6
- package/es/HiAlertModal/HiAlertModal.js +2 -2
- package/es/HiBreadcrumb/HiStepLabel.js +1 -2
- package/es/HiChip/HiChip.js +1 -2
- package/es/HiChip/HiChipSwitch.js +1 -2
- package/es/HiColoredLabel/HiColoredLabel.js +5 -5
- package/es/HiDatePicker/Caption.js +1 -1
- package/es/HiDatePicker/HiDateRangePicker.js +1 -1
- package/es/HiDatePicker/HiDateRangeSelector.js +23 -20
- package/es/HiDatePicker/Overlays/CustomOverlayLayout.js +2 -4
- package/es/HiDatePicker/Overlays/CustomOverlayLayoutWithoutFooter.js +2 -4
- package/es/HiDatePicker/Overlays/TimePickerOverlay.js +2 -4
- package/es/HiDatePicker/stylesheet.js +2 -4
- package/es/HiDialog/HiDialog.js +1 -1
- package/es/HiExpansionPanel/HiExpansionPanel.js +3 -6
- package/es/HiForm/HiFormControl.js +5 -8
- package/es/HiForm/HiFormLabel.js +4 -5
- package/es/HiForm/HiInput.js +4 -5
- package/es/HiForm/HiSlider.js +1 -1
- package/es/HiForm/HiUploadInput.js +2 -3
- package/es/HiIconButton/HiIconButton.js +2 -2
- package/es/HiSelect/HiNestedSelect.js +2 -2
- package/es/HiSelect/HiSelect.js +2 -2
- package/es/HiSelect/HiSelectContent.js +2 -2
- package/es/HiSelect/HiSelectInput.js +1 -1
- package/es/HiSelectableList/HiSelectableListItem.js +3 -5
- package/es/HiTable/HiTableHeader.js +3 -2
- package/es/HiTable/HiTableRow.js +1 -2
- package/package.json +3 -2
@@ -59,7 +59,7 @@ var styles = function styles(theme) {
|
|
59
59
|
overflow: 'hidden',
|
60
60
|
textOverflow: 'ellipsis',
|
61
61
|
paddingRight: 16
|
62
|
-
}, theme.typography.
|
62
|
+
}, theme.typography.body2, {
|
63
63
|
display: 'inline-flex',
|
64
64
|
width: '100%'
|
65
65
|
}),
|
@@ -68,7 +68,7 @@ var styles = function styles(theme) {
|
|
68
68
|
overflow: 'hidden',
|
69
69
|
textOverflow: 'ellipsis',
|
70
70
|
paddingRight: 16
|
71
|
-
}, theme.typography.
|
71
|
+
}, theme.typography.body2, {
|
72
72
|
display: 'inline-flex',
|
73
73
|
width: '100%'
|
74
74
|
})
|
@@ -182,7 +182,7 @@ var useStyles = (0, _makeStyles.default)(function (theme) {
|
|
182
182
|
padding: theme.spacing(2, 0),
|
183
183
|
margin: 'auto'
|
184
184
|
},
|
185
|
-
listItemContent: (0, _objectSpread2.default)({}, theme.typography.
|
185
|
+
listItemContent: (0, _objectSpread2.default)({}, theme.typography.body2, {
|
186
186
|
fontWeight: 'inherit',
|
187
187
|
width: '100%',
|
188
188
|
minWidth: '50%',
|
@@ -207,17 +207,15 @@ var useStyles = (0, _makeStyles.default)(function (theme) {
|
|
207
207
|
color: theme.palette.primary.main,
|
208
208
|
textTransform: 'uppercase'
|
209
209
|
},
|
210
|
-
secondaryLabel: (0, _objectSpread2.default)({}, theme.typography.
|
210
|
+
secondaryLabel: (0, _objectSpread2.default)({}, theme.typography.caption, {
|
211
211
|
color: theme.palette.neutral.main,
|
212
212
|
fontWeight: theme.typography.fontWeightLight,
|
213
|
-
fontSize: 11,
|
214
213
|
marginLeft: theme.spacing(1)
|
215
214
|
}),
|
216
215
|
inline: {},
|
217
|
-
info: (0, _objectSpread2.default)({}, theme.typography.
|
216
|
+
info: (0, _objectSpread2.default)({}, theme.typography.body3, {
|
218
217
|
color: theme.palette.neutral.main,
|
219
218
|
fontWeight: theme.typography.fontWeightLight,
|
220
|
-
fontSize: 12,
|
221
219
|
textOverflow: 'ellipsis',
|
222
220
|
textAlign: 'right',
|
223
221
|
alignSelf: 'center'
|
@@ -56,9 +56,10 @@ var styles = function styles(theme) {
|
|
56
56
|
overflow: 'hidden',
|
57
57
|
textOverflow: 'ellipsis',
|
58
58
|
whiteSpace: 'nowrap',
|
59
|
-
fontWeight: theme.typography.fontWeightLight,
|
60
59
|
color: '#000000'
|
61
|
-
}, theme.typography.
|
60
|
+
}, theme.typography.body3, {
|
61
|
+
fontWeight: theme.typography.fontWeightLight
|
62
|
+
}),
|
62
63
|
icon: {
|
63
64
|
color: '#00ADE9'
|
64
65
|
}
|
package/es/HiTable/HiTableRow.js
CHANGED
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hipay/hipay-material-ui",
|
3
3
|
"private": false,
|
4
|
-
"version": "3.
|
4
|
+
"version": "3.13.0",
|
5
5
|
"description": "React components that implement Google's Material Design.",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
@@ -13,6 +13,7 @@
|
|
13
13
|
},
|
14
14
|
"homepage": "http://materialui.hipay.dev.local/",
|
15
15
|
"peerDependencies": {
|
16
|
+
"@hipay/design-system": "^1.0.1",
|
16
17
|
"@mui/material": "5.5.3",
|
17
18
|
"@mui/styles": "5.5.3",
|
18
19
|
"@mui/styled-engine": "npm:@mui/styled-engine-sc@5.4.2",
|
@@ -49,7 +50,7 @@
|
|
49
50
|
"react-jss": "10.0.3",
|
50
51
|
"react-lazyload": "2.6.2",
|
51
52
|
"react-pdf": "5.7.2",
|
52
|
-
"react-spinners": "0.12.0
|
53
|
+
"react-spinners": "0.12.0",
|
53
54
|
"recompose": "0.30.0",
|
54
55
|
"validator": "10.7.1"
|
55
56
|
},
|