@hipay/hipay-material-ui 1.0.0-beta.29 → 1.0.0-beta.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (430) hide show
  1. package/HiCheckbox/HiCheckbox.js +3 -6
  2. package/HiChip/HiChip.js +9 -84
  3. package/HiChip/HiChipSwitch.js +0 -6
  4. package/HiColoredLabel/HiColoredLabel.js +5 -11
  5. package/HiDatePicker/HiDatePicker.js +21 -35
  6. package/HiDatePicker/HiDateRangePicker.js +69 -152
  7. package/HiDatePicker/HiDateRangeSelector.js +30 -85
  8. package/HiDatePicker/Overlays/CustomOverlayLayout.js +1 -3
  9. package/HiDatePicker/Overlays/Overlay.js +5 -23
  10. package/HiDatePicker/stylesheet.js +0 -14
  11. package/HiForm/HiFormControl.js +29 -24
  12. package/HiForm/HiInput.js +17 -45
  13. package/HiForm/HiPasswordField.js +3 -8
  14. package/HiForm/HiSearchField.js +2 -8
  15. package/HiForm/index.js +0 -36
  16. package/HiLoader/HiLoader.js +9 -16
  17. package/HiPins/HiPins.js +5 -6
  18. package/HiSelect/HiSelect.js +157 -376
  19. package/HiSelect/HiSuggestSelect.js +8 -69
  20. package/HiSelect/SelectInput.js +19 -68
  21. package/HiSelectableList/HiSelectableList.js +49 -57
  22. package/HiSelectableList/HiSelectableListItem.js +94 -142
  23. package/HiTable/BodyCellBuilder.js +112 -144
  24. package/HiTable/BodyCells/CellAccount.js +21 -15
  25. package/HiTable/BodyCells/CellAccountNumber.js +220 -0
  26. package/HiTable/BodyCells/CellAddress.js +53 -15
  27. package/HiTable/BodyCells/CellCountry.js +43 -23
  28. package/HiTable/BodyCells/CellDate.js +64 -59
  29. package/HiTable/BodyCells/CellIcon.js +45 -46
  30. package/HiTable/BodyCells/CellImage.js +44 -54
  31. package/HiTable/BodyCells/CellLayout.js +24 -60
  32. package/HiTable/BodyCells/CellNumeric.js +28 -22
  33. package/HiTable/BodyCells/CellRate.js +6 -15
  34. package/HiTable/BodyCells/CellSentinel.js +68 -58
  35. package/HiTable/BodyCells/CellStatus.js +25 -30
  36. package/HiTable/BodyCells/CellText.js +46 -78
  37. package/HiTable/BodyCells/CellThirdPartySecurity.js +35 -53
  38. package/HiTable/BodyCells/index.js +9 -0
  39. package/HiTable/BodyRow.js +82 -133
  40. package/HiTable/ChildRow.js +9 -3
  41. package/HiTable/ColumnFilter.js +20 -30
  42. package/HiTable/HeaderCell.js +76 -97
  43. package/HiTable/HiStickyRow.js +16 -27
  44. package/HiTable/HiTable.js +111 -141
  45. package/HiTable/HiTableBody.js +62 -177
  46. package/HiTable/HiTableContextMenu.js +19 -39
  47. package/HiTable/HiTableFooterScroll.js +1 -1
  48. package/HiTable/HiTableHead.js +19 -42
  49. package/HiTable/OrderColumns.js +2 -6
  50. package/HiTable/constants.js +2 -2
  51. package/HiTopBar/HiTopBar.js +15 -25
  52. package/README.md +6 -72
  53. package/es/HiCheckbox/HiCheckbox.js +3 -6
  54. package/es/HiChip/HiChip.js +10 -96
  55. package/es/HiChip/HiChipSwitch.js +0 -6
  56. package/es/HiColoredLabel/HiColoredLabel.js +6 -11
  57. package/es/HiDatePicker/HiDatePicker.js +21 -30
  58. package/es/HiDatePicker/HiDateRangePicker.js +68 -140
  59. package/es/HiDatePicker/HiDateRangeSelector.js +31 -80
  60. package/es/HiDatePicker/Overlays/CustomOverlayLayout.js +1 -3
  61. package/es/HiDatePicker/Overlays/Overlay.js +5 -19
  62. package/es/HiDatePicker/stylesheet.js +0 -14
  63. package/es/HiForm/HiFormControl.js +17 -20
  64. package/es/HiForm/HiInput.js +16 -40
  65. package/es/HiForm/HiPasswordField.js +3 -8
  66. package/es/HiForm/HiSearchField.js +2 -3
  67. package/es/HiForm/index.js +1 -5
  68. package/es/HiLoader/HiLoader.js +6 -10
  69. package/es/HiPins/HiPins.js +5 -4
  70. package/es/HiSelect/HiSelect.js +125 -327
  71. package/es/HiSelect/HiSuggestSelect.js +8 -65
  72. package/es/HiSelect/SelectInput.js +19 -55
  73. package/es/HiSelectableList/HiSelectableList.js +50 -58
  74. package/es/HiSelectableList/HiSelectableListItem.js +94 -134
  75. package/es/HiTable/BodyCellBuilder.js +113 -132
  76. package/es/HiTable/BodyCells/CellAccount.js +11 -9
  77. package/es/HiTable/BodyCells/CellAccountNumber.js +166 -0
  78. package/es/HiTable/BodyCells/CellAddress.js +45 -9
  79. package/es/HiTable/BodyCells/CellCountry.js +38 -16
  80. package/es/HiTable/BodyCells/CellDate.js +49 -38
  81. package/es/HiTable/BodyCells/CellIcon.js +32 -32
  82. package/es/HiTable/BodyCells/CellImage.js +43 -47
  83. package/es/HiTable/BodyCells/CellLayout.js +27 -60
  84. package/es/HiTable/BodyCells/CellNumeric.js +19 -15
  85. package/es/HiTable/BodyCells/CellRate.js +4 -9
  86. package/es/HiTable/BodyCells/CellSentinel.js +51 -41
  87. package/es/HiTable/BodyCells/CellStatus.js +20 -24
  88. package/es/HiTable/BodyCells/CellText.js +25 -52
  89. package/es/HiTable/BodyCells/CellThirdPartySecurity.js +26 -43
  90. package/es/HiTable/BodyCells/index.js +2 -0
  91. package/es/HiTable/BodyRow.js +77 -125
  92. package/es/HiTable/ChildRow.js +10 -3
  93. package/es/HiTable/ColumnFilter.js +14 -17
  94. package/es/HiTable/HeaderCell.js +82 -100
  95. package/es/HiTable/HiStickyRow.js +14 -21
  96. package/es/HiTable/HiTable.js +84 -114
  97. package/es/HiTable/HiTableBody.js +57 -149
  98. package/es/HiTable/HiTableContextMenu.js +19 -36
  99. package/es/HiTable/HiTableFooterScroll.js +1 -1
  100. package/es/HiTable/HiTableHead.js +18 -33
  101. package/es/HiTable/OrderColumns.js +2 -6
  102. package/es/HiTable/constants.js +7 -7
  103. package/es/HiTopBar/HiTopBar.js +16 -27
  104. package/es/styles/createHiMuiTheme.js +0 -13
  105. package/es/svg-icons/Cancel.js +0 -2
  106. package/es/svg-icons/index.js +1 -2
  107. package/es/utils/HiIconBuilder.js +6 -18
  108. package/es/utils/hiHelpers.js +8 -9
  109. package/index.es.js +1 -1
  110. package/index.js +1 -1
  111. package/package.json +4 -13
  112. package/styles/createHiMuiTheme.js +0 -13
  113. package/svg-icons/Cancel.js +0 -2
  114. package/svg-icons/index.js +0 -9
  115. package/umd/hipay-material-ui.development.js +77003 -113141
  116. package/umd/hipay-material-ui.production.min.js +5 -5
  117. package/utils/HiIconBuilder.js +5 -19
  118. package/utils/hiHelpers.js +7 -9
  119. package/HI-CHANGELOG.md +0 -114
  120. package/HiAlertModal/HiAlertModal.js +0 -247
  121. package/HiAlertModal/index.js +0 -16
  122. package/HiBreadcrumb/HiBreadcrumb.js +0 -149
  123. package/HiBreadcrumb/HiStep.js +0 -159
  124. package/HiBreadcrumb/HiStepConnector.js +0 -207
  125. package/HiBreadcrumb/HiStepContent.js +0 -122
  126. package/HiBreadcrumb/HiStepIcon.js +0 -191
  127. package/HiBreadcrumb/HiStepLabel.js +0 -248
  128. package/HiBreadcrumb/HiStepper.js +0 -106
  129. package/HiBreadcrumb/index.js +0 -16
  130. package/HiDotsStepper/HiDot.js +0 -151
  131. package/HiDotsStepper/HiDotsStepper.js +0 -146
  132. package/HiDotsStepper/index.js +0 -16
  133. package/HiExpansionPanel/HiExpansionPanel.js +0 -231
  134. package/HiExpansionPanel/index.js +0 -16
  135. package/HiForm/HiAddressField.js +0 -187
  136. package/HiForm/HiSlider.js +0 -399
  137. package/HiForm/HiUpload.js +0 -280
  138. package/HiForm/HiUploadField.js +0 -456
  139. package/HiMap/HiMap.js +0 -367
  140. package/HiMap/HiMapExpand.js +0 -217
  141. package/HiMap/index.js +0 -25
  142. package/HiPdfReader/HiPdfReader.js +0 -282
  143. package/HiPdfReader/index.js +0 -16
  144. package/HiTable/HiTableFooter.js +0 -140
  145. package/es/HiAlertModal/HiAlertModal.js +0 -189
  146. package/es/HiAlertModal/index.js +0 -1
  147. package/es/HiBreadcrumb/HiBreadcrumb.js +0 -81
  148. package/es/HiBreadcrumb/HiStep.js +0 -94
  149. package/es/HiBreadcrumb/HiStepConnector.js +0 -143
  150. package/es/HiBreadcrumb/HiStepContent.js +0 -63
  151. package/es/HiBreadcrumb/HiStepIcon.js +0 -149
  152. package/es/HiBreadcrumb/HiStepLabel.js +0 -197
  153. package/es/HiBreadcrumb/HiStepper.js +0 -46
  154. package/es/HiBreadcrumb/index.js +0 -1
  155. package/es/HiDotsStepper/HiDot.js +0 -92
  156. package/es/HiDotsStepper/HiDotsStepper.js +0 -83
  157. package/es/HiDotsStepper/index.js +0 -1
  158. package/es/HiExpansionPanel/HiExpansionPanel.js +0 -170
  159. package/es/HiExpansionPanel/index.js +0 -1
  160. package/es/HiForm/HiAddressField.js +0 -127
  161. package/es/HiForm/HiSlider.js +0 -309
  162. package/es/HiForm/HiUpload.js +0 -194
  163. package/es/HiForm/HiUploadField.js +0 -368
  164. package/es/HiMap/HiMap.js +0 -285
  165. package/es/HiMap/HiMapExpand.js +0 -145
  166. package/es/HiMap/index.js +0 -2
  167. package/es/HiPdfReader/HiPdfReader.js +0 -198
  168. package/es/HiPdfReader/index.js +0 -1
  169. package/es/HiTable/HiTableFooter.js +0 -80
  170. package/es/svg-icons/HiBriefcaseRescue.js +0 -15
  171. package/hmu/images/countries/ad.svg +0 -151
  172. package/hmu/images/countries/ae.svg +0 -6
  173. package/hmu/images/countries/af.svg +0 -83
  174. package/hmu/images/countries/ag.svg +0 -15
  175. package/hmu/images/countries/ai.svg +0 -767
  176. package/hmu/images/countries/al.svg +0 -5
  177. package/hmu/images/countries/am.svg +0 -5
  178. package/hmu/images/countries/ao.svg +0 -13
  179. package/hmu/images/countries/aq.svg +0 -6
  180. package/hmu/images/countries/ar.svg +0 -32
  181. package/hmu/images/countries/as.svg +0 -33
  182. package/hmu/images/countries/at.svg +0 -6
  183. package/hmu/images/countries/au.svg +0 -9
  184. package/hmu/images/countries/aw.svg +0 -186
  185. package/hmu/images/countries/ax.svg +0 -18
  186. package/hmu/images/countries/az.svg +0 -8
  187. package/hmu/images/countries/ba.svg +0 -12
  188. package/hmu/images/countries/bb.svg +0 -6
  189. package/hmu/images/countries/bd.svg +0 -4
  190. package/hmu/images/countries/be.svg +0 -7
  191. package/hmu/images/countries/bf.svg +0 -7
  192. package/hmu/images/countries/bg.svg +0 -7
  193. package/hmu/images/countries/bh.svg +0 -11
  194. package/hmu/images/countries/bi.svg +0 -15
  195. package/hmu/images/countries/bj.svg +0 -14
  196. package/hmu/images/countries/bl.svg +0 -7
  197. package/hmu/images/countries/bm.svg +0 -99
  198. package/hmu/images/countries/bn.svg +0 -36
  199. package/hmu/images/countries/bo.svg +0 -686
  200. package/hmu/images/countries/bq.svg +0 -5
  201. package/hmu/images/countries/br.svg +0 -45
  202. package/hmu/images/countries/bs.svg +0 -13
  203. package/hmu/images/countries/bt.svg +0 -89
  204. package/hmu/images/countries/bv.svg +0 -13
  205. package/hmu/images/countries/bw.svg +0 -7
  206. package/hmu/images/countries/by.svg +0 -61
  207. package/hmu/images/countries/bz.svg +0 -146
  208. package/hmu/images/countries/ca.svg +0 -4
  209. package/hmu/images/countries/cc.svg +0 -19
  210. package/hmu/images/countries/cd.svg +0 -5
  211. package/hmu/images/countries/cf.svg +0 -15
  212. package/hmu/images/countries/cg.svg +0 -12
  213. package/hmu/images/countries/ch.svg +0 -9
  214. package/hmu/images/countries/ci.svg +0 -7
  215. package/hmu/images/countries/ck.svg +0 -9
  216. package/hmu/images/countries/cl.svg +0 -13
  217. package/hmu/images/countries/cm.svg +0 -15
  218. package/hmu/images/countries/cn.svg +0 -11
  219. package/hmu/images/countries/co.svg +0 -7
  220. package/hmu/images/countries/cr.svg +0 -7
  221. package/hmu/images/countries/cu.svg +0 -13
  222. package/hmu/images/countries/cv.svg +0 -13
  223. package/hmu/images/countries/cw.svg +0 -14
  224. package/hmu/images/countries/cx.svg +0 -15
  225. package/hmu/images/countries/cy.svg +0 -6
  226. package/hmu/images/countries/cz.svg +0 -12
  227. package/hmu/images/countries/de.svg +0 -5
  228. package/hmu/images/countries/dj.svg +0 -13
  229. package/hmu/images/countries/dk.svg +0 -5
  230. package/hmu/images/countries/dm.svg +0 -152
  231. package/hmu/images/countries/do.svg +0 -6745
  232. package/hmu/images/countries/dz.svg +0 -5
  233. package/hmu/images/countries/ec.svg +0 -141
  234. package/hmu/images/countries/ee.svg +0 -7
  235. package/hmu/images/countries/eg.svg +0 -38
  236. package/hmu/images/countries/eh.svg +0 -15
  237. package/hmu/images/countries/er.svg +0 -8
  238. package/hmu/images/countries/es-ct.svg +0 -4
  239. package/hmu/images/countries/es.svg +0 -581
  240. package/hmu/images/countries/et.svg +0 -14
  241. package/hmu/images/countries/eu.svg +0 -28
  242. package/hmu/images/countries/fi.svg +0 -5
  243. package/hmu/images/countries/fj.svg +0 -124
  244. package/hmu/images/countries/fk.svg +0 -90
  245. package/hmu/images/countries/fm.svg +0 -11
  246. package/hmu/images/countries/fo.svg +0 -12
  247. package/hmu/images/countries/fr.svg +0 -7
  248. package/hmu/images/countries/ga.svg +0 -7
  249. package/hmu/images/countries/gb-eng.svg +0 -5
  250. package/hmu/images/countries/gb-nir.svg +0 -137
  251. package/hmu/images/countries/gb-sct.svg +0 -4
  252. package/hmu/images/countries/gb-wls.svg +0 -9
  253. package/hmu/images/countries/gb.svg +0 -15
  254. package/hmu/images/countries/gd.svg +0 -27
  255. package/hmu/images/countries/ge.svg +0 -6
  256. package/hmu/images/countries/gf.svg +0 -5
  257. package/hmu/images/countries/gg.svg +0 -9
  258. package/hmu/images/countries/gh.svg +0 -6
  259. package/hmu/images/countries/gi.svg +0 -33
  260. package/hmu/images/countries/gl.svg +0 -4
  261. package/hmu/images/countries/gm.svg +0 -14
  262. package/hmu/images/countries/gn.svg +0 -7
  263. package/hmu/images/countries/gp.svg +0 -7
  264. package/hmu/images/countries/gq.svg +0 -23
  265. package/hmu/images/countries/gr.svg +0 -22
  266. package/hmu/images/countries/gs.svg +0 -205
  267. package/hmu/images/countries/gt.svg +0 -204
  268. package/hmu/images/countries/gu.svg +0 -39
  269. package/hmu/images/countries/gw.svg +0 -13
  270. package/hmu/images/countries/gy.svg +0 -9
  271. package/hmu/images/countries/hk.svg +0 -32
  272. package/hmu/images/countries/hm.svg +0 -9
  273. package/hmu/images/countries/hn.svg +0 -18
  274. package/hmu/images/countries/hr.svg +0 -59
  275. package/hmu/images/countries/ht.svg +0 -122
  276. package/hmu/images/countries/hu.svg +0 -7
  277. package/hmu/images/countries/id.svg +0 -6
  278. package/hmu/images/countries/ie.svg +0 -7
  279. package/hmu/images/countries/il.svg +0 -14
  280. package/hmu/images/countries/im.svg +0 -36
  281. package/hmu/images/countries/in.svg +0 -25
  282. package/hmu/images/countries/io.svg +0 -148
  283. package/hmu/images/countries/iq.svg +0 -10
  284. package/hmu/images/countries/ir.svg +0 -219
  285. package/hmu/images/countries/is.svg +0 -12
  286. package/hmu/images/countries/it.svg +0 -7
  287. package/hmu/images/countries/je.svg +0 -32
  288. package/hmu/images/countries/jm.svg +0 -8
  289. package/hmu/images/countries/jo.svg +0 -16
  290. package/hmu/images/countries/jp.svg +0 -11
  291. package/hmu/images/countries/ke.svg +0 -23
  292. package/hmu/images/countries/kg.svg +0 -15
  293. package/hmu/images/countries/kh.svg +0 -69
  294. package/hmu/images/countries/ki.svg +0 -36
  295. package/hmu/images/countries/km.svg +0 -16
  296. package/hmu/images/countries/kn.svg +0 -14
  297. package/hmu/images/countries/kp.svg +0 -15
  298. package/hmu/images/countries/kr.svg +0 -24
  299. package/hmu/images/countries/kw.svg +0 -13
  300. package/hmu/images/countries/ky.svg +0 -63
  301. package/hmu/images/countries/kz.svg +0 -23
  302. package/hmu/images/countries/la.svg +0 -12
  303. package/hmu/images/countries/lb.svg +0 -15
  304. package/hmu/images/countries/lc.svg +0 -8
  305. package/hmu/images/countries/li.svg +0 -43
  306. package/hmu/images/countries/lk.svg +0 -22
  307. package/hmu/images/countries/lr.svg +0 -14
  308. package/hmu/images/countries/ls.svg +0 -8
  309. package/hmu/images/countries/lt.svg +0 -7
  310. package/hmu/images/countries/lu.svg +0 -5
  311. package/hmu/images/countries/lv.svg +0 -6
  312. package/hmu/images/countries/ly.svg +0 -13
  313. package/hmu/images/countries/ma.svg +0 -4
  314. package/hmu/images/countries/mc.svg +0 -6
  315. package/hmu/images/countries/md.svg +0 -72
  316. package/hmu/images/countries/me.svg +0 -118
  317. package/hmu/images/countries/mf.svg +0 -7
  318. package/hmu/images/countries/mg.svg +0 -7
  319. package/hmu/images/countries/mh.svg +0 -7
  320. package/hmu/images/countries/mk.svg +0 -5
  321. package/hmu/images/countries/ml.svg +0 -7
  322. package/hmu/images/countries/mm.svg +0 -16
  323. package/hmu/images/countries/mn.svg +0 -13
  324. package/hmu/images/countries/mo.svg +0 -9
  325. package/hmu/images/countries/mp.svg +0 -86
  326. package/hmu/images/countries/mq.svg +0 -7
  327. package/hmu/images/countries/mr.svg +0 -6
  328. package/hmu/images/countries/ms.svg +0 -39
  329. package/hmu/images/countries/mt.svg +0 -49
  330. package/hmu/images/countries/mu.svg +0 -8
  331. package/hmu/images/countries/mv.svg +0 -6
  332. package/hmu/images/countries/mw.svg +0 -10
  333. package/hmu/images/countries/mx.svg +0 -385
  334. package/hmu/images/countries/my.svg +0 -15
  335. package/hmu/images/countries/mz.svg +0 -21
  336. package/hmu/images/countries/na.svg +0 -16
  337. package/hmu/images/countries/nc.svg +0 -7
  338. package/hmu/images/countries/ne.svg +0 -6
  339. package/hmu/images/countries/nf.svg +0 -9
  340. package/hmu/images/countries/ng.svg +0 -6
  341. package/hmu/images/countries/ni.svg +0 -131
  342. package/hmu/images/countries/nl.svg +0 -7
  343. package/hmu/images/countries/no.svg +0 -7
  344. package/hmu/images/countries/np.svg +0 -14
  345. package/hmu/images/countries/nr.svg +0 -12
  346. package/hmu/images/countries/nu.svg +0 -26
  347. package/hmu/images/countries/nz.svg +0 -41
  348. package/hmu/images/countries/om.svg +0 -116
  349. package/hmu/images/countries/pa.svg +0 -14
  350. package/hmu/images/countries/pe.svg +0 -279
  351. package/hmu/images/countries/pf.svg +0 -19
  352. package/hmu/images/countries/pg.svg +0 -9
  353. package/hmu/images/countries/ph.svg +0 -28
  354. package/hmu/images/countries/pk.svg +0 -15
  355. package/hmu/images/countries/pl.svg +0 -6
  356. package/hmu/images/countries/pm.svg +0 -7
  357. package/hmu/images/countries/pn.svg +0 -62
  358. package/hmu/images/countries/pr.svg +0 -13
  359. package/hmu/images/countries/ps.svg +0 -15
  360. package/hmu/images/countries/pt.svg +0 -57
  361. package/hmu/images/countries/pw.svg +0 -11
  362. package/hmu/images/countries/py.svg +0 -157
  363. package/hmu/images/countries/qa.svg +0 -4
  364. package/hmu/images/countries/re.svg +0 -7
  365. package/hmu/images/countries/ro.svg +0 -7
  366. package/hmu/images/countries/rs.svg +0 -292
  367. package/hmu/images/countries/ru.svg +0 -7
  368. package/hmu/images/countries/rw.svg +0 -13
  369. package/hmu/images/countries/sa.svg +0 -26
  370. package/hmu/images/countries/sb.svg +0 -13
  371. package/hmu/images/countries/sc.svg +0 -14
  372. package/hmu/images/countries/sd.svg +0 -13
  373. package/hmu/images/countries/se.svg +0 -16
  374. package/hmu/images/countries/sg.svg +0 -13
  375. package/hmu/images/countries/sh.svg +0 -74
  376. package/hmu/images/countries/si.svg +0 -18
  377. package/hmu/images/countries/sj.svg +0 -7
  378. package/hmu/images/countries/sk.svg +0 -9
  379. package/hmu/images/countries/sl.svg +0 -7
  380. package/hmu/images/countries/sm.svg +0 -91
  381. package/hmu/images/countries/sn.svg +0 -8
  382. package/hmu/images/countries/so.svg +0 -11
  383. package/hmu/images/countries/sr.svg +0 -6
  384. package/hmu/images/countries/ss.svg +0 -8
  385. package/hmu/images/countries/st.svg +0 -16
  386. package/hmu/images/countries/sv.svg +0 -618
  387. package/hmu/images/countries/sx.svg +0 -56
  388. package/hmu/images/countries/sy.svg +0 -6
  389. package/hmu/images/countries/sz.svg +0 -45
  390. package/hmu/images/countries/tc.svg +0 -67
  391. package/hmu/images/countries/td.svg +0 -7
  392. package/hmu/images/countries/tf.svg +0 -15
  393. package/hmu/images/countries/tg.svg +0 -14
  394. package/hmu/images/countries/th.svg +0 -7
  395. package/hmu/images/countries/tj.svg +0 -22
  396. package/hmu/images/countries/tk.svg +0 -5
  397. package/hmu/images/countries/tl.svg +0 -13
  398. package/hmu/images/countries/tm.svg +0 -213
  399. package/hmu/images/countries/tn.svg +0 -13
  400. package/hmu/images/countries/to.svg +0 -10
  401. package/hmu/images/countries/tr.svg +0 -8
  402. package/hmu/images/countries/tt.svg +0 -5
  403. package/hmu/images/countries/tv.svg +0 -27
  404. package/hmu/images/countries/tw.svg +0 -14
  405. package/hmu/images/countries/tz.svg +0 -13
  406. package/hmu/images/countries/ua.svg +0 -6
  407. package/hmu/images/countries/ug.svg +0 -30
  408. package/hmu/images/countries/um.svg +0 -23
  409. package/hmu/images/countries/un.svg +0 -16
  410. package/hmu/images/countries/us.svg +0 -12
  411. package/hmu/images/countries/uy.svg +0 -28
  412. package/hmu/images/countries/uz.svg +0 -30
  413. package/hmu/images/countries/va.svg +0 -483
  414. package/hmu/images/countries/vc.svg +0 -8
  415. package/hmu/images/countries/ve.svg +0 -26
  416. package/hmu/images/countries/vg.svg +0 -133
  417. package/hmu/images/countries/vi.svg +0 -31
  418. package/hmu/images/countries/vn.svg +0 -11
  419. package/hmu/images/countries/vu.svg +0 -18
  420. package/hmu/images/countries/wf.svg +0 -7
  421. package/hmu/images/countries/ws.svg +0 -7
  422. package/hmu/images/countries/ye.svg +0 -7
  423. package/hmu/images/countries/yt.svg +0 -7
  424. package/hmu/images/countries/za.svg +0 -17
  425. package/hmu/images/countries/zm.svg +0 -27
  426. package/hmu/images/countries/zw.svg +0 -21
  427. package/hmu/images/hipay-white-logo.svg +0 -42
  428. package/hmu/images/logo_visa_75wx45h.gif +0 -0
  429. package/hmu/images/map_marker.svg +0 -8
  430. package/svg-icons/HiBriefcaseRescue.js +0 -30
@@ -1,197 +0,0 @@
1
- import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
2
- import _extends from 'babel-runtime/helpers/extends';
3
- import React from 'react';
4
- import PropTypes from 'prop-types';
5
- import classNames from 'classnames';
6
- import { withStyles } from '../styles';
7
- import HiStepIcon from './HiStepIcon';
8
- import HiPin from '../HiPins';
9
-
10
- export const styles = theme => ({
11
- root: {
12
- display: 'flex',
13
- alignItems: 'center',
14
- marginTop: -11,
15
- marginBottom: -5
16
- },
17
- frontRoot: {
18
- marginTop: -12,
19
- marginBottom: -7
20
- },
21
- frontDarkRoot: {
22
- marginTop: -13,
23
- marginBottom: -6
24
- },
25
- hipin: {
26
- marginLeft: 0
27
- },
28
- label: _extends({
29
- display: 'inline-block',
30
- marginLeft: 4,
31
- fontWeight: theme.typography.fontWeightRegular,
32
- color: theme.palette.neutral.normal,
33
- marginBottom: -4,
34
- '&:hover': {
35
- cursor: 'pointer'
36
- }
37
- }, theme.typography.body3),
38
- labelContainer: {
39
- marginBottom: 4
40
- },
41
- largeLabelContainer: {
42
- maxWidth: 300
43
- },
44
- shortLabelContainer: {
45
- maxWidth: 160
46
- },
47
- frontLabel: {
48
- fontSize: 18,
49
- fontWeight: theme.typography.fontWeightLight,
50
- marginLeft: 11
51
- },
52
- validated: {
53
- color: theme.palette.status[116]
54
- },
55
- refused: {
56
- color: theme.palette.negative.normal
57
- },
58
- active: {
59
- color: '#00ADE9'
60
- },
61
- activeStep: {
62
- fontWeight: theme.typography.fontWeightMedium
63
- },
64
- warning: {
65
- color: theme.palette.middle.normal
66
- },
67
- light: {
68
- color: '#FFFFFF'
69
- },
70
- pin: {
71
- marginLeft: 4
72
- },
73
- shortEllipsis: {
74
- display: 'inline-block',
75
- overflow: 'hidden',
76
- textOverflow: 'ellipsis',
77
- whiteSpace: 'pre',
78
- maxWidth: 51
79
- },
80
- longEllipsis: {
81
- display: 'inline-block',
82
- overflow: 'hidden',
83
- textOverflow: 'ellipsis',
84
- whiteSpace: 'pre',
85
- maxWidth: 90
86
- }
87
- });
88
-
89
- class HiStepLabel extends React.PureComponent {
90
-
91
- render() {
92
- const _props = this.props,
93
- {
94
- active,
95
- children,
96
- classes,
97
- className: classNameProp,
98
- notificationNumber,
99
- status,
100
- type
101
- } = _props,
102
- other = _objectWithoutProperties(_props, ['active', 'children', 'classes', 'className', 'notificationNumber', 'status', 'type']);
103
-
104
- return React.createElement(
105
- 'span',
106
- _extends({
107
- className: classNames(classes.root, classNameProp, {
108
- [classes.frontRoot]: type === 'front-light',
109
- [classes.frontDarkRoot]: type === 'front-dark'
110
- })
111
- }, other),
112
- React.createElement(
113
- 'span',
114
- { className: classes.iconContainer },
115
- React.createElement(HiStepIcon, { active: active, status: status, type: type })
116
- ),
117
- React.createElement(
118
- 'span',
119
- {
120
- className: classNames(classes.labelContainer, {
121
- [classes.largeLabelContainer]: type !== 'back',
122
- [classes.shortLabelContainer]: type === 'back'
123
- })
124
- },
125
- React.createElement(
126
- 'div',
127
- {
128
- className: classNames(classes.label, {
129
- [classes.validated]: status === 'validated',
130
- [classes.refused]: status === 'refused',
131
- [classes.warning]: status === 'warning',
132
- [classes.active]: status === 'active',
133
- [classes.light]: type === 'front-light',
134
- [classes.activeStep]: active,
135
- [classes.frontLabel]: type !== 'back',
136
- [classes.shortEllipsis]: notificationNumber > 0,
137
- [classes.longEllipsis]: notificationNumber === 0 && type === 'back'
138
- })
139
- },
140
- children
141
- ),
142
- notificationNumber > 0 && React.createElement(
143
- 'span',
144
- { className: classes.pin },
145
- React.createElement(
146
- HiPin,
147
- {
148
- color: this.props.theme.palette.business.primary.normal,
149
- className: classes.hipin
150
- },
151
- notificationNumber
152
- )
153
- )
154
- )
155
- );
156
- }
157
- }
158
-
159
- HiStepLabel.defaultProps = {
160
- active: false,
161
- children: '',
162
- notificationNumber: 0,
163
- status: 'unreviewed',
164
- type: 'back'
165
- };
166
- HiStepLabel.propTypes = process.env.NODE_ENV !== "production" ? {
167
- /**
168
- * @ignore
169
- * Sets the step as active. Is passed to child components.
170
- */
171
- active: PropTypes.bool,
172
- /**
173
- * In most cases will simply be a string containing a title for the label.
174
- */
175
- children: PropTypes.node,
176
- /**
177
- * Custom styles for component.
178
- */
179
- classes: PropTypes.object.isRequired,
180
- /**
181
- * @ignore
182
- */
183
- className: PropTypes.string,
184
- /**
185
- * The value to be displayed in the HiPin on the right of the label
186
- */
187
- notificationNumber: PropTypes.number,
188
- /**
189
- * 'Unreviewed', 'refused', 'validated' et 'warning' sont les statuts pour tous les types de breadcrumb. 'active' est spécifique au Front dark
190
- */
191
- status: PropTypes.oneOf(['unreviewed', 'refused', 'validated', 'warning', 'active']),
192
- /**
193
- * The Breadcrumb type
194
- */
195
- type: PropTypes.oneOf(['back', 'front-light', 'front-dark'])
196
- } : {};
197
- export default withStyles(styles, { name: 'MuiHiStepLabel', withTheme: true })(HiStepLabel);
@@ -1,46 +0,0 @@
1
- import _extends from 'babel-runtime/helpers/extends';
2
- import React from 'react';
3
- import PropTypes from 'prop-types';
4
- import classNames from 'classnames';
5
- import { withStyles } from '../styles';
6
- import Paper from '../Paper';
7
-
8
- export const styles = theme => ({
9
- root: {
10
- width: 340
11
- }
12
- });
13
-
14
- class HiStepper extends React.PureComponent {
15
-
16
- render() {
17
- const { activeStep, children, classes } = this.props;
18
-
19
- const childrenArray = React.Children.toArray(children.props.children);
20
-
21
- const steps = childrenArray.map((step, index) => {
22
- return React.cloneElement(step, _extends({ index, active: activeStep === index }, step.props));
23
- });
24
-
25
- return React.createElement(
26
- 'div',
27
- { className: classes.root },
28
- steps
29
- );
30
- }
31
- }
32
-
33
- HiStepper.defaultProps = {
34
- activeStep: 0
35
- };
36
- HiStepper.propTypes = process.env.NODE_ENV !== "production" ? {
37
- /**
38
- * Set the active step (zero based index).
39
- */
40
- activeStep: PropTypes.number,
41
- /**
42
- * Two or more `<Step />` components.
43
- */
44
- children: PropTypes.node.isRequired
45
- } : {};
46
- export default withStyles(styles, { name: 'MuiHiStepper' })(HiStepper);
@@ -1 +0,0 @@
1
- export { default } from './HiBreadcrumb';
@@ -1,92 +0,0 @@
1
- import React from 'react';
2
- import PropTypes from 'prop-types';
3
- import classnames from 'classnames';
4
- import withStyles from '../styles/withStyles';
5
- import ButtonBase from '../ButtonBase';
6
-
7
- export const styles = theme => ({
8
- dot: {
9
- backgroundColor: theme.palette.dot.neutral,
10
- borderRadius: '100%',
11
- width: 12,
12
- height: 12,
13
- '&:hover': {
14
- transform: 'scale(1.2)'
15
- },
16
- marginLeft: 12
17
- },
18
- dotActive: {
19
- marginTop: 4,
20
- marginLeft: 4,
21
- '&:hover': {
22
- transform: 'scale(1)'
23
- }
24
- },
25
- dotValidated: {
26
- backgroundColor: theme.palette.status[116]
27
- },
28
- dotRefused: {
29
- backgroundColor: theme.palette.error.main
30
- },
31
- dotAround: {
32
- backgroundColor: 'transparent',
33
- borderRadius: '100%',
34
- width: 24,
35
- height: 24,
36
- marginLeft: 6,
37
- border: '2px solid ' + theme.palette.dot.neutral,
38
- '&:hover': {
39
- transform: 'scale(1.2)'
40
- }
41
- },
42
- dotAroundValidated: {
43
- border: '2px solid ' + theme.palette.status[116]
44
- },
45
- dotAroundRefused: {
46
- border: '2px solid ' + theme.palette.error.main
47
- }
48
- });
49
-
50
- class HiDot extends React.PureComponent {
51
-
52
- render() {
53
- const { active, status, classes, onClick } = this.props;
54
-
55
- const dotAroundClass = classnames(classes.dotAround, {
56
- [classes.dotAroundValidated]: status === 'validated',
57
- [classes.dotAroundRefused]: status === 'refused'
58
- });
59
-
60
- const dotClassName = classnames(classes.dot, {
61
- [classes.dotActive]: active,
62
- [classes.dotRefused]: status === 'refused',
63
- [classes.dotValidated]: status === 'validated'
64
- });
65
-
66
- return React.createElement(
67
- ButtonBase,
68
- { disableRipple: true, role: 'button', onClick: onClick },
69
- active ? React.createElement(
70
- 'div',
71
- { className: dotAroundClass },
72
- React.createElement('div', { className: dotClassName })
73
- ) : React.createElement('div', { className: dotClassName })
74
- );
75
- }
76
- }
77
-
78
- HiDot.defaultProps = {
79
- active: false,
80
- status: 'unreviewed'
81
- };
82
- HiDot.propTypes = process.env.NODE_ENV !== "production" ? {
83
- active: PropTypes.bool,
84
- classes: PropTypes.object,
85
- /**
86
- * @ignore
87
- */
88
- className: PropTypes.string,
89
- onClick: PropTypes.func,
90
- status: PropTypes.oneOf(['refused', 'validated', 'unreviewed'])
91
- } : {};
92
- export default withStyles(styles, { name: 'MuiHiDot' })(HiDot);
@@ -1,83 +0,0 @@
1
- import React from 'react';
2
- import PropTypes from 'prop-types';
3
- import withStyles from '../styles/withStyles';
4
- import HiDot from './HiDot';
5
-
6
- export const styles = theme => ({
7
- dotStepper: {
8
- width: '100%',
9
- maxWidth: 200,
10
- display: 'flex',
11
- flexDirection: 'row',
12
- flexWrap: 'nowrap',
13
- justifyContent: 'center',
14
- alignItems: 'center'
15
- }
16
- });
17
-
18
- class HiDotsStepper extends React.PureComponent {
19
-
20
- constructor() {
21
- super();
22
-
23
- this.handleClick = activeStep => () => {
24
- this.props.onChange(activeStep);
25
- };
26
-
27
- this.handleNavigation = activeStep => e => {
28
- let nextStep = activeStep;
29
- const { steps } = this.props;
30
-
31
- if (e.key === 'ArrowLeft') nextStep -= 1;
32
- if (e.key === 'ArrowRight') nextStep += 1;
33
-
34
- nextStep = (nextStep + steps.length) % steps.length;
35
-
36
- // Permet la navigation d'un Dot au suivant / précédent
37
- document.querySelector(`div[tabIndex="${nextStep}"]`).focus();
38
-
39
- this.props.onChange(nextStep);
40
- };
41
-
42
- this.handleClick = this.handleClick.bind(this);
43
- this.handleNavigation = this.handleNavigation.bind(this);
44
- }
45
-
46
- render() {
47
- const { classes, activeStep, steps } = this.props;
48
-
49
- const listDots = steps.map((step, idx) => {
50
- const { id, status } = step;
51
- return React.createElement(
52
- 'div',
53
- {
54
- key: id,
55
- tabIndex: id,
56
- className: classes.dotContainer,
57
- role: 'navigation',
58
- onKeyDown: this.handleNavigation(idx)
59
- },
60
- React.createElement(HiDot, {
61
- status: status,
62
- active: idx === activeStep,
63
- onClick: this.handleClick(idx)
64
- })
65
- );
66
- });
67
-
68
- return React.createElement(
69
- 'div',
70
- { className: classes.dotStepper },
71
- listDots
72
- );
73
- }
74
- }
75
-
76
- HiDotsStepper.propTypes = process.env.NODE_ENV !== "production" ? {
77
- activeStep: PropTypes.number.isRequired,
78
- classes: PropTypes.object,
79
- className: PropTypes.string,
80
- onChange: PropTypes.func,
81
- steps: PropTypes.array.isRequired
82
- } : {};
83
- export default withStyles(styles, { name: 'MuiHiDotsStepper' })(HiDotsStepper);
@@ -1 +0,0 @@
1
- export { default } from './HiDotsStepper';
@@ -1,170 +0,0 @@
1
- import _extends from 'babel-runtime/helpers/extends';
2
- import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
3
- // @inheritedComponent ExpansionPanel
4
-
5
- import React from 'react';
6
- import PropTypes from 'prop-types';
7
- import ExpansionPanel, { ExpansionPanelSummary, ExpansionPanelDetails } from 'material-ui/ExpansionPanel';
8
- import Typography from 'material-ui/Typography';
9
- import MenuDownIcon from 'mdi-material-ui/MenuDown';
10
- import { withStyles } from '../styles';
11
-
12
- export const styles = theme => ({
13
- heading: {
14
- fontSize: 20,
15
- lineHeight: '24px',
16
- fontWeight: theme.typography.fontWeightLight
17
- },
18
- secondaryHeading: {
19
- fontSize: 11,
20
- color: '#737373',
21
- textAlign: 'right',
22
- lineHeight: '24px',
23
- fontWeight: theme.typography.fontWeightRegular,
24
- verticalAlign: 'middle',
25
- '&>svg': {
26
- fontSize: 18,
27
- marginLeft: 3,
28
- marginBottom: -5
29
- }
30
- },
31
- column: {
32
- flexBasis: '100%'
33
- },
34
- panelSummary: {
35
- '&>div:first-child': {
36
- margin: '12px 0',
37
- '&>div:last-child': {
38
- paddingRight: 8
39
- }
40
- },
41
- '&>div:last-child': {
42
- width: 16,
43
- height: 16
44
- }
45
- },
46
- panelSummaryExpanded: {
47
- borderBottom: '1px solid #E3E6E7',
48
- minHeight: 0
49
- },
50
- expandMoreIcon: {
51
- margin: 0,
52
- fontSize: 18,
53
- width: 20
54
- },
55
- panel: {
56
- boxShadow: 'none',
57
- border: 'none'
58
- },
59
- panelDetails: {
60
- padding: '8px 24px 8px'
61
- },
62
- disabledPanel: {
63
- backgroundColor: '#ffffff',
64
- opacity: 1
65
- },
66
- expandIconExpanded: {
67
- transform: 'translateY(-50%) rotate(-90deg)'
68
- }
69
- });
70
-
71
- class HiExpansionPanel extends React.PureComponent {
72
-
73
- render() {
74
- const _props = this.props,
75
- {
76
- disabled,
77
- heading,
78
- secondaryHeading,
79
- secondaryHeadingDisabled,
80
- secondaryHeadingIcon,
81
- children,
82
- classes
83
- } = _props,
84
- props = _objectWithoutProperties(_props, ['disabled', 'heading', 'secondaryHeading', 'secondaryHeadingDisabled', 'secondaryHeadingIcon', 'children', 'classes']);
85
-
86
- const effectiveDisabled = disabled || !children;
87
-
88
- return React.createElement(
89
- ExpansionPanel,
90
- _extends({
91
- disabled: effectiveDisabled,
92
- classes: { root: classes.panel, disabled: classes.disabledPanel }
93
- }, props),
94
- React.createElement(
95
- ExpansionPanelSummary,
96
- {
97
- classes: {
98
- root: classes.panelSummary,
99
- disabled: classes.disabledPanel,
100
- expanded: classes.panelSummaryExpanded,
101
- expandIconExpanded: classes.expandIconExpanded
102
- },
103
- expandIcon: React.createElement(MenuDownIcon, { classes: { root: classes.expandMoreIcon } })
104
- },
105
- React.createElement(
106
- 'div',
107
- { className: classes.column },
108
- React.createElement(
109
- Typography,
110
- { classes: { root: classes.heading } },
111
- heading
112
- )
113
- ),
114
- React.createElement(
115
- 'div',
116
- { className: classes.column },
117
- React.createElement(
118
- Typography,
119
- { classes: { root: classes.secondaryHeading } },
120
- !effectiveDisabled ? secondaryHeading : secondaryHeadingDisabled,
121
- secondaryHeadingIcon
122
- )
123
- )
124
- ),
125
- !!children && React.createElement(
126
- ExpansionPanelDetails,
127
- { classes: { root: classes.panelDetails } },
128
- children
129
- )
130
- );
131
- }
132
- }
133
-
134
- HiExpansionPanel.defaultProps = {
135
- disabled: false,
136
- secondaryHeading: '',
137
- secondaryHeadingIcon: '',
138
- secondaryHeadingDisabled: 'PAS ENCORE COMPLETE'
139
- };
140
- HiExpansionPanel.propTypes = process.env.NODE_ENV !== "production" ? {
141
- /**
142
- * Contenu du panel
143
- */
144
- children: PropTypes.any,
145
- /**
146
- * Surcharge les classes du composant
147
- */
148
- classes: PropTypes.object,
149
- /**
150
- * Désactivé
151
- */
152
- disabled: PropTypes.bool,
153
- /**
154
- * Titre principal du panel
155
- */
156
- heading: PropTypes.string.isRequired,
157
- /**
158
- * Titre secondaire du panel
159
- */
160
- secondaryHeading: PropTypes.string,
161
- /**
162
- * Titre secondaire si désactivé
163
- */
164
- secondaryHeadingDisabled: PropTypes.string,
165
- /**
166
- * Icone dans le titre secondaire du panel
167
- */
168
- secondaryHeadingIcon: PropTypes.any
169
- } : {};
170
- export default withStyles(styles, { name: 'HmuiHiExpansionPanel' })(HiExpansionPanel);
@@ -1 +0,0 @@
1
- export { default } from './HiExpansionPanel';