@hipay/hipay-material-ui 2.0.0-beta.50 → 2.0.0-beta.52

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.
@@ -1,4 +1,4 @@
1
- /** @license HiPay-Material-UI v2.0.0-beta.50
1
+ /** @license HiPay-Material-UI v2.0.0-beta.52
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -1086,6 +1086,7 @@
1086
1086
  } : _palette$positive,
1087
1087
  _palette$negative = palette.negative,
1088
1088
  negative = _palette$negative === void 0 ? {
1089
+ ultraLight: '#EA9494',
1089
1090
  light: '#E66666',
1090
1091
  main: '#D50000',
1091
1092
  dark: '#A00000',
@@ -1100,6 +1101,7 @@
1100
1101
  } : _palette$middle,
1101
1102
  _palette$neutral = palette.neutral,
1102
1103
  neutral = _palette$neutral === void 0 ? {
1104
+ ultraLight: '#8B8B8B',
1103
1105
  light: '#838383',
1104
1106
  main: '#737373',
1105
1107
  dark: '#20272B',
@@ -1111,6 +1113,11 @@
1111
1113
  main: red[500],
1112
1114
  dark: red[700]
1113
1115
  } : _palette$error,
1116
+ _palette$lookup = palette.lookup,
1117
+ lookup = _palette$lookup === void 0 ? {
1118
+ light: '#FFFF8D',
1119
+ main: '#EDED14'
1120
+ } : _palette$lookup,
1114
1121
  _palette$type = palette.type,
1115
1122
  type = _palette$type === void 0 ? 'light' : _palette$type,
1116
1123
  _palette$contrastThre = palette.contrastThreshold,
@@ -1119,7 +1126,7 @@
1119
1126
  tonalOffset = _palette$tonalOffset === void 0 ? 0.2 : _palette$tonalOffset,
1120
1127
  _palette$context = palette.context,
1121
1128
  context = _palette$context === void 0 ? 'local' : _palette$context,
1122
- other = objectWithoutProperties(palette, ["primary", "secondary", "positive", "negative", "middle", "neutral", "error", "type", "contrastThreshold", "tonalOffset", "context"]);
1129
+ other = objectWithoutProperties(palette, ["primary", "secondary", "positive", "negative", "middle", "neutral", "error", "lookup", "type", "contrastThreshold", "tonalOffset", "context"]);
1123
1130
 
1124
1131
  function getContrastText(background) {
1125
1132
  // Use the same logic as
@@ -1188,6 +1195,8 @@
1188
1195
  neutral: neutral,
1189
1196
  // The colors used to represent interface elements that the user should be made aware of.
1190
1197
  error: error,
1198
+ // The colors used to represent form elements that have lookup state.
1199
+ lookup: lookup,
1191
1200
  // The grey colors.
1192
1201
  grey: grey,
1193
1202
  // Used by `getContrastText()` to maximize the contrast between the background and
@@ -66090,8 +66099,8 @@
66090
66099
 
66091
66100
  var HiCheckbox =
66092
66101
  /*#__PURE__*/
66093
- function (_React$Component) {
66094
- inherits(HiCheckbox, _React$Component);
66102
+ function (_React$PureComponent) {
66103
+ inherits(HiCheckbox, _React$PureComponent);
66095
66104
 
66096
66105
  function HiCheckbox(props) {
66097
66106
  var _this;
@@ -66178,7 +66187,7 @@
66178
66187
  }]);
66179
66188
 
66180
66189
  return HiCheckbox;
66181
- }(React__default.Component);
66190
+ }(React__default.PureComponent);
66182
66191
 
66183
66192
  HiCheckbox.defaultProps = {
66184
66193
  checked: false,
@@ -68768,12 +68777,8 @@
68768
68777
  }, {
68769
68778
  key: "handleChange",
68770
68779
  value: function handleChange(event) {
68771
- var authorizedChar = '1234567890TOto<>';
68772
-
68773
68780
  if (this.props.onChange) {
68774
- if (authorizedChar.indexOf(event.target.value.charAt(event.target.value.length - 1)) >= 0 && this.props.onlyNumbers === true || this.props.onlyNumbers !== true) {
68775
- this.props.onChange(event);
68776
- }
68781
+ this.props.onChange(event);
68777
68782
  }
68778
68783
  }
68779
68784
  }, {
@@ -80419,6 +80424,9 @@
80419
80424
  '&:hover, &:focus': {
80420
80425
  backgroundColor: "".concat(theme.palette.action.hover, " !important")
80421
80426
  }
80427
+ },
80428
+ clicableRow: {
80429
+ cursor: 'pointer'
80422
80430
  }
80423
80431
  };
80424
80432
  };
@@ -80458,7 +80466,7 @@
80458
80466
  locale = _this$props.locale,
80459
80467
  rowdata = _this$props.rowdata;
80460
80468
  return React__default.createElement(TableRow$4, {
80461
- className: classes.row,
80469
+ className: classnames(classes.row, defineProperty({}, classes.clicableRow, this.props.onClick)),
80462
80470
  hover: true,
80463
80471
  onClick: function onClick(event) {
80464
80472
  return _this2.handleClick(event, rowdata);
@@ -80475,10 +80483,10 @@
80475
80483
  height: dense ? CELL_HEIGHT_DENSE : CELL_HEIGHT
80476
80484
  },
80477
80485
  tabIndex: 0
80478
- }, Object.keys(columns).map(function (key) {
80486
+ }, Object.keys(columns).map(function (column) {
80479
80487
  return React__default.createElement(HiCellBuilder, {
80480
- key: columns[key].colId,
80481
- column: columns[key],
80488
+ key: columns[column].colId,
80489
+ column: columns[column],
80482
80490
  data: rowdata,
80483
80491
  locale: locale
80484
80492
  });
@@ -94070,14 +94078,15 @@
94070
94078
  color = props.color,
94071
94079
  active = props.active,
94072
94080
  fontWeight = props.fontWeight,
94081
+ style = props.style,
94073
94082
  theme = props.theme,
94074
- other = objectWithoutProperties(props, ["classes", "className", "label", "color", "active", "fontWeight", "theme"]);
94083
+ other = objectWithoutProperties(props, ["classes", "className", "label", "color", "active", "fontWeight", "style", "theme"]);
94075
94084
 
94076
94085
  var isHiColor = ['primary', 'secondary', 'positive', 'negative', 'middle', 'neutral'].includes(color);
94077
94086
  var isHexColor = !isHiColor && /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(color);
94078
94087
  return React__default.createElement("div", _extends_1({
94079
94088
  className: classnames(classes.root, (_classNames = {}, defineProperty(_classNames, classes.color, !active), defineProperty(_classNames, classes.activeColor, active), defineProperty(_classNames, classes["activeColor".concat(capitalize(color))], active && isHiColor), defineProperty(_classNames, classes["color".concat(capitalize(color))], !active && isHiColor), _classNames), className),
94080
- style: _extends_1({}, isHexColor && {
94089
+ style: _extends_1({}, style, isHexColor && {
94081
94090
  backgroundColor: active ? color : fade(color, 0.08),
94082
94091
  color: active ? theme.palette.getContrastText(color) : color
94083
94092
  }, fontWeight && {
@@ -97970,6 +97979,8 @@
97970
97979
  name: 'HmuiHiLoader'
97971
97980
  })(HiLoader);
97972
97981
 
97982
+ var PureListSubheader = pure(ListSubheader$2);
97983
+ var PureListItem = pure(ListItem$2);
97973
97984
  var styles$p = function styles(theme) {
97974
97985
  return {
97975
97986
  root: {
@@ -98066,8 +98077,7 @@
98066
98077
  textOverflow: 'ellipsis',
98067
98078
  textAlign: 'right',
98068
98079
  margin: '4px 12px 4px 8px',
98069
- alignSelf: 'center',
98070
- width: '100%'
98080
+ alignSelf: 'center'
98071
98081
  }),
98072
98082
  checkbox: {
98073
98083
  marginTop: 3
@@ -98093,8 +98103,8 @@
98093
98103
 
98094
98104
  var HiSelectableListItem =
98095
98105
  /*#__PURE__*/
98096
- function (_React$Component) {
98097
- inherits(HiSelectableListItem, _React$Component);
98106
+ function (_React$PureComponent) {
98107
+ inherits(HiSelectableListItem, _React$PureComponent);
98098
98108
 
98099
98109
  function HiSelectableListItem(props) {
98100
98110
  var _this;
@@ -98212,7 +98222,7 @@
98212
98222
  displayedIcon = icon;
98213
98223
  }
98214
98224
 
98215
- var ListItemComponentName = pinned ? ListSubheader$2 : ListItem$2;
98225
+ var ListItemComponentName = pinned ? PureListSubheader : PureListItem;
98216
98226
  return React__default.createElement(ListItemComponentName, _extends_1({
98217
98227
  id: id,
98218
98228
  tabIndex: disabled ? '-1' : 0,
@@ -98267,7 +98277,7 @@
98267
98277
  }]);
98268
98278
 
98269
98279
  return HiSelectableListItem;
98270
- }(React__default.Component);
98280
+ }(React__default.PureComponent);
98271
98281
 
98272
98282
  HiSelectableListItem.defaultProps = {
98273
98283
  centered: false,