@hipay/hipay-material-ui 2.0.0-beta.73 → 2.0.0-beta.75
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/CHANGELOG.md +228 -0
- package/HiAlertModal/HiAlertModal.js +5 -2
- package/HiBreadcrumb/HiBreadcrumb.js +7 -0
- package/HiBreadcrumb/HiStepLabel.js +2 -4
- package/HiExpansionPanel/HiExpansionPanel.js +1 -1
- package/HiIcon/HiIcon.js +1 -1
- package/HiMap/HiMapExpand.js +26 -8
- package/HiNotice/HiKPI.js +16 -9
- package/HiPaymentMeans/HiPaymentMeans.js +667 -0
- package/HiPaymentMeans/index.js +15 -0
- package/HiRadio/HiRadio.js +5 -0
- package/HiSelect/HiSelect.js +1 -1
- package/HiSelect/HiSelectField.js +10 -3
- package/HiTable/HiCellBuilder.js +1 -1
- package/es/HiAlertModal/HiAlertModal.js +7 -4
- package/es/HiBreadcrumb/HiBreadcrumb.js +7 -0
- package/es/HiBreadcrumb/HiStepLabel.js +2 -4
- package/es/HiExpansionPanel/HiExpansionPanel.js +1 -1
- package/es/HiIcon/HiIcon.js +1 -1
- package/es/HiMap/HiMapExpand.js +26 -8
- package/es/HiNotice/HiKPI.js +15 -9
- package/es/HiPaymentMeans/HiPaymentMeans.js +621 -0
- package/es/HiPaymentMeans/index.js +1 -0
- package/es/HiRadio/HiRadio.js +5 -0
- package/es/HiSelect/HiSelect.js +1 -1
- package/es/HiSelect/HiSelectField.js +11 -4
- package/es/HiTable/HiCellBuilder.js +1 -1
- package/es/hi-svg-icons/HiDownload.js +13 -7
- package/hi-svg-icons/HiDownload.js +8 -6
- package/index.es.js +1 -1
- package/index.js +1 -1
- package/package.json +3 -3
@@ -1,13 +1,19 @@
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
2
3
|
import React from 'react';
|
3
4
|
|
4
|
-
|
5
|
-
|
6
|
-
|
5
|
+
const HiDownload = props => {
|
6
|
+
const {
|
7
|
+
color
|
8
|
+
} = props,
|
9
|
+
other = _objectWithoutProperties(props, ["color"]);
|
7
10
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
11
|
+
return React.createElement("svg", _extends({
|
12
|
+
viewBox: "0 0 500 500"
|
13
|
+
}, other), React.createElement("path", {
|
14
|
+
fill: color,
|
15
|
+
d: "M250 0C111.94 0 0 111.94 0 250s111.92 250 250 250 250-111.92 250-250S388.06 0 250 0zm-44.18 210.14V114.8h88.37v95.34h58.68L250 321.14l-102.87-111zM352.87 385.2H147.13v-32h205.74z"
|
16
|
+
}));
|
17
|
+
};
|
12
18
|
|
13
19
|
export default HiDownload;
|
@@ -9,17 +9,19 @@ exports.default = void 0;
|
|
9
9
|
|
10
10
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
11
11
|
|
12
|
-
var
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
13
13
|
|
14
|
-
var
|
15
|
-
d: "M250 0C111.94 0 0 111.94 0 250s111.92 250 250 250 250-111.92 250-250S388.06 0 250 0zm-44.18 210.14V114.8h88.37v95.34h58.68L250 321.14l-102.87-111zM352.87 385.2H147.13v-32h205.74z"
|
16
|
-
});
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
17
15
|
|
18
16
|
var HiDownload = function HiDownload(props) {
|
17
|
+
var color = props.color,
|
18
|
+
other = (0, _objectWithoutProperties2.default)(props, ["color"]);
|
19
19
|
return _react.default.createElement("svg", (0, _extends2.default)({
|
20
|
-
"data-name": "Calque 1",
|
21
20
|
viewBox: "0 0 500 500"
|
22
|
-
},
|
21
|
+
}, other), _react.default.createElement("path", {
|
22
|
+
fill: color,
|
23
|
+
d: "M250 0C111.94 0 0 111.94 0 250s111.92 250 250 250 250-111.92 250-250S388.06 0 250 0zm-44.18 210.14V114.8h88.37v95.34h58.68L250 321.14l-102.87-111zM352.87 385.2H147.13v-32h205.74z"
|
24
|
+
}));
|
23
25
|
};
|
24
26
|
|
25
27
|
var _default = HiDownload;
|
package/index.es.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@hipay/hipay-material-ui",
|
3
3
|
"private": false,
|
4
4
|
"author": "HiPay PSYCHE Team",
|
5
|
-
"version": "2.0.0-beta.
|
5
|
+
"version": "2.0.0-beta.75",
|
6
6
|
"description": "React components that implement Google's Material Design.",
|
7
7
|
"keywords": [
|
8
8
|
"react",
|
@@ -47,7 +47,7 @@
|
|
47
47
|
"jss-props-sort": "^6.0.0",
|
48
48
|
"jss-vendor-prefixer": "^8.0.1",
|
49
49
|
"keycode": "^2.1.9",
|
50
|
-
"leaflet": "^1.
|
50
|
+
"leaflet": "^1.5.1",
|
51
51
|
"mdi-material-ui": "^5.4.0",
|
52
52
|
"moment": "^2.22.2",
|
53
53
|
"moment-timezone": "^0.5.23",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"react-event-listener": "^0.6.2",
|
60
60
|
"react-jss": "^8.1.0",
|
61
61
|
"react-lazyload": "^2.5.0",
|
62
|
-
"react-leaflet": "^2.
|
62
|
+
"react-leaflet": "^2.3.0",
|
63
63
|
"react-pdf": "^3.0.5",
|
64
64
|
"react-spinners": "^0.4.5",
|
65
65
|
"react-transition-group": "^2.2.1",
|