@hipay/hipay-material-ui 2.0.0-beta.46 → 2.0.0-beta.47
Sign up to get free protection for your applications and to get access to all the features.
- package/HiCell/CellIcon.js +14 -6
- package/HiCell/CellNumeric.js +3 -2
- package/HiCell/CellRate.js +2 -1
- package/HiCell/CellSentinel.js +2 -1
- package/HiChip/HiChip.js +8 -8
- package/HiSelect/HiSelect.js +8 -2
- package/HiSelectNew/HiSelect.js +37 -5
- package/HiSelectableList/HiSelectableListItem.js +9 -3
- package/HiTable/HiCellBuilder.js +229 -0
- package/HiTable/HiTable.js +155 -0
- package/HiTable/HiTableBody.js +90 -0
- package/HiTable/HiTableHeader.js +162 -0
- package/HiTable/HiTableRow.js +154 -0
- package/HiTable/constants.js +145 -0
- package/HiTable/index.js +15 -0
- package/es/HiCell/CellIcon.js +14 -6
- package/es/HiCell/CellNumeric.js +3 -2
- package/es/HiCell/CellRate.js +2 -1
- package/es/HiCell/CellSentinel.js +2 -1
- package/es/HiChip/HiChip.js +10 -10
- package/es/HiSelect/HiSelect.js +8 -2
- package/es/HiSelectNew/HiSelect.js +34 -4
- package/es/HiSelectableList/HiSelectableListItem.js +9 -3
- package/es/HiTable/HiCellBuilder.js +181 -0
- package/es/HiTable/HiTable.js +114 -0
- package/es/HiTable/HiTableBody.js +56 -0
- package/es/HiTable/HiTableHeader.js +108 -0
- package/es/HiTable/HiTableRow.js +103 -0
- package/es/HiTable/constants.js +182 -0
- package/es/HiTable/index.js +1 -0
- package/es/index.js +1 -0
- package/es/utils/helpers.js +1 -1
- package/index.es.js +2 -1
- package/index.js +9 -1
- package/package.json +1 -1
- package/umd/hipay-material-ui.development.js +16018 -13677
- package/umd/hipay-material-ui.production.min.js +2 -2
- package/utils/helpers.js +1 -1
- package/yarn-error.log +0 -109
package/utils/helpers.js
CHANGED
@@ -169,7 +169,7 @@ function formatNumber(number) {
|
|
169
169
|
break;
|
170
170
|
}
|
171
171
|
|
172
|
-
var effectivePrecision = precision
|
172
|
+
var effectivePrecision = precision !== undefined ? precision : size === 'l' ? 2 : 0; // To locale
|
173
173
|
|
174
174
|
var options = {
|
175
175
|
minimumFractionDigits: effectivePrecision,
|
package/yarn-error.log
DELETED
@@ -1,109 +0,0 @@
|
|
1
|
-
Arguments:
|
2
|
-
/usr/local/bin/node /usr/share/yarn/bin/yarn.js publish
|
3
|
-
|
4
|
-
PATH:
|
5
|
-
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
|
6
|
-
|
7
|
-
Yarn version:
|
8
|
-
1.9.4
|
9
|
-
|
10
|
-
Node version:
|
11
|
-
8.12.0
|
12
|
-
|
13
|
-
Platform:
|
14
|
-
linux x64
|
15
|
-
|
16
|
-
Trace:
|
17
|
-
Error: canceled
|
18
|
-
at Interface.<anonymous> (/usr/share/yarn/lib/cli.js:126002:13)
|
19
|
-
at emitNone (events.js:106:13)
|
20
|
-
at Interface.emit (events.js:208:7)
|
21
|
-
at Interface._ttyWrite (readline.js:774:16)
|
22
|
-
at ReadStream.onkeypress (readline.js:158:10)
|
23
|
-
at emitTwo (events.js:126:13)
|
24
|
-
at ReadStream.emit (events.js:214:7)
|
25
|
-
at emitKeys (internal/readline.js:420:14)
|
26
|
-
at emitKeys.next (<anonymous>)
|
27
|
-
at ReadStream.onData (readline.js:1010:36)
|
28
|
-
|
29
|
-
npm manifest:
|
30
|
-
{
|
31
|
-
"name": "@hipay/hipay-material-ui",
|
32
|
-
"private": false,
|
33
|
-
"author": "HiPay PSYCHE Team",
|
34
|
-
"version": "2.0.0-beta.46",
|
35
|
-
"description": "React components that implement Google's Material Design.",
|
36
|
-
"keywords": [
|
37
|
-
"react",
|
38
|
-
"react-component",
|
39
|
-
"material design",
|
40
|
-
"material-ui",
|
41
|
-
"hipay",
|
42
|
-
"hipay-material-ui"
|
43
|
-
],
|
44
|
-
"repository": {
|
45
|
-
"type": "git",
|
46
|
-
"url": "https://gitlab.hipay.org/backend/hipay-material-ui.git"
|
47
|
-
},
|
48
|
-
"license": "MIT",
|
49
|
-
"bugs": {
|
50
|
-
"url": "https://gitlab.hipay.org/backend/hipay-material-ui/issues"
|
51
|
-
},
|
52
|
-
"homepage": "http://materialui.hipay.dev.local/",
|
53
|
-
"peerDependencies": {
|
54
|
-
"react": "^16.3.0",
|
55
|
-
"react-dom": "^16.3.0"
|
56
|
-
},
|
57
|
-
"dependencies": {
|
58
|
-
"@babel/runtime": "7.0.0",
|
59
|
-
"@material-ui/core": "^3.0.2",
|
60
|
-
"@material-ui/icons": "^3.0.1",
|
61
|
-
"@types/jss": "^9.5.3",
|
62
|
-
"@types/react-transition-group": "^2.0.8",
|
63
|
-
"brcast": "^3.0.1",
|
64
|
-
"classnames": "^2.2.5",
|
65
|
-
"csstype": "^2.5.2",
|
66
|
-
"debounce": "^1.1.0",
|
67
|
-
"deepmerge": "^2.0.1",
|
68
|
-
"dom-helpers": "^3.2.1",
|
69
|
-
"hoist-non-react-statics": "^2.5.0",
|
70
|
-
"is-plain-object": "^2.0.4",
|
71
|
-
"jss": "^9.8.7",
|
72
|
-
"jss-camel-case": "^6.0.0",
|
73
|
-
"jss-default-unit": "^8.0.2",
|
74
|
-
"jss-global": "^3.0.0",
|
75
|
-
"jss-nested": "^6.0.1",
|
76
|
-
"jss-props-sort": "^6.0.0",
|
77
|
-
"jss-vendor-prefixer": "^8.0.1",
|
78
|
-
"keycode": "^2.1.9",
|
79
|
-
"mdi-material-ui": "^5.4.0",
|
80
|
-
"normalize-scroll-left": "^0.1.2",
|
81
|
-
"popper.js": "^1.14.1",
|
82
|
-
"prop-types": "^15.6.0",
|
83
|
-
"react-custom-scrollbars": "^4.2.1",
|
84
|
-
"react-day-picker": "^7.2.4",
|
85
|
-
"react-event-listener": "^0.6.2",
|
86
|
-
"react-jss": "^8.1.0",
|
87
|
-
"react-spinners": "^0.4.5",
|
88
|
-
"react-transition-group": "^2.2.1",
|
89
|
-
"recompose": "^0.29.0",
|
90
|
-
"rimraf": "^2.6.2",
|
91
|
-
"validator": "^10.7.1",
|
92
|
-
"warning": "^4.0.1"
|
93
|
-
},
|
94
|
-
"sideEffects": false,
|
95
|
-
"publishConfig": {
|
96
|
-
"access": "public"
|
97
|
-
},
|
98
|
-
"engines": {
|
99
|
-
"node": ">=6.0.0"
|
100
|
-
},
|
101
|
-
"main": "./index.js",
|
102
|
-
"module": "./index.es.js"
|
103
|
-
}
|
104
|
-
|
105
|
-
yarn manifest:
|
106
|
-
No manifest
|
107
|
-
|
108
|
-
Lockfile:
|
109
|
-
No lockfile
|