@hipay/hipay-material-ui 2.0.0-beta.72 → 2.0.0-beta.74
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +76 -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 +2 -1
- package/HiPaymentMeans/HiPaymentMeans.js +666 -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 +2 -1
- package/es/HiPaymentMeans/HiPaymentMeans.js +620 -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 +19 -0
- package/es/hi-svg-icons/index.js +2 -1
- package/hi-svg-icons/HiDownload.js +28 -0
- package/hi-svg-icons/index.js +9 -1
- package/index.es.js +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
@@ -0,0 +1,19 @@
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
import React from 'react';
|
4
|
+
|
5
|
+
const HiDownload = props => {
|
6
|
+
const {
|
7
|
+
color
|
8
|
+
} = props,
|
9
|
+
other = _objectWithoutProperties(props, ["color"]);
|
10
|
+
|
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
|
+
};
|
18
|
+
|
19
|
+
export default HiDownload;
|
package/es/hi-svg-icons/index.js
CHANGED
@@ -14,4 +14,5 @@ export { default as HiTransaction } from './HiTransaction';
|
|
14
14
|
export { default as HiUser } from './HiUser';
|
15
15
|
export { default as HiWidget } from './HiWidget';
|
16
16
|
export { default as HiActivity } from './HiActivity';
|
17
|
-
export { default as HiPermission } from './HiPermission';
|
17
|
+
export { default as HiPermission } from './HiPermission';
|
18
|
+
export { default as HiDownload } from './HiDownload';
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.default = void 0;
|
9
|
+
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
11
|
+
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
13
|
+
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
15
|
+
|
16
|
+
var HiDownload = function HiDownload(props) {
|
17
|
+
var color = props.color,
|
18
|
+
other = (0, _objectWithoutProperties2.default)(props, ["color"]);
|
19
|
+
return _react.default.createElement("svg", (0, _extends2.default)({
|
20
|
+
viewBox: "0 0 500 500"
|
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
|
+
}));
|
25
|
+
};
|
26
|
+
|
27
|
+
var _default = HiDownload;
|
28
|
+
exports.default = _default;
|
package/hi-svg-icons/index.js
CHANGED
@@ -107,6 +107,12 @@ Object.defineProperty(exports, "HiPermission", {
|
|
107
107
|
return _HiPermission.default;
|
108
108
|
}
|
109
109
|
});
|
110
|
+
Object.defineProperty(exports, "HiDownload", {
|
111
|
+
enumerable: true,
|
112
|
+
get: function get() {
|
113
|
+
return _HiDownload.default;
|
114
|
+
}
|
115
|
+
});
|
110
116
|
|
111
117
|
var _HiAccount = _interopRequireDefault(require("./HiAccount"));
|
112
118
|
|
@@ -140,4 +146,6 @@ var _HiWidget = _interopRequireDefault(require("./HiWidget"));
|
|
140
146
|
|
141
147
|
var _HiActivity = _interopRequireDefault(require("./HiActivity"));
|
142
148
|
|
143
|
-
var _HiPermission = _interopRequireDefault(require("./HiPermission"));
|
149
|
+
var _HiPermission = _interopRequireDefault(require("./HiPermission"));
|
150
|
+
|
151
|
+
var _HiDownload = _interopRequireDefault(require("./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.74",
|
6
6
|
"description": "React components that implement Google's Material Design.",
|
7
7
|
"keywords": [
|
8
8
|
"react",
|
@@ -74,4 +74,4 @@
|
|
74
74
|
},
|
75
75
|
"main": "./index.js",
|
76
76
|
"module": "./index.es.js"
|
77
|
-
}
|
77
|
+
}
|