@hipay/hipay-material-ui 1.0.0-beta.9 → 2.0.0-beta.36

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.
Files changed (1059) hide show
  1. package/CHANGELOG.md +1922 -21
  2. package/HiAlertModal/HiAlertModal.js +185 -210
  3. package/HiAlertModal/index.js +6 -7
  4. package/HiAppBar/HiAppBar.js +199 -0
  5. package/HiAppBar/index.js +15 -0
  6. package/HiBadge/HiBadge.js +119 -95
  7. package/HiBadge/index.js +6 -7
  8. package/HiBreadcrumb/HiBreadcrumb.js +90 -115
  9. package/HiBreadcrumb/HiStep.js +155 -98
  10. package/HiBreadcrumb/HiStepConnector.js +170 -109
  11. package/HiBreadcrumb/HiStepContent.js +108 -0
  12. package/HiBreadcrumb/HiStepIcon.js +166 -123
  13. package/HiBreadcrumb/HiStepLabel.js +209 -172
  14. package/HiBreadcrumb/HiStepper.js +76 -104
  15. package/HiBreadcrumb/index.js +6 -7
  16. package/HiButton/HiButton.js +192 -136
  17. package/HiButton/index.js +6 -7
  18. package/HiCheckbox/HiCheckbox.js +196 -147
  19. package/HiCheckbox/index.js +6 -7
  20. package/HiChip/HiChip.js +254 -174
  21. package/HiChip/HiChipSwitch.js +279 -289
  22. package/HiChip/index.js +10 -12
  23. package/HiColoredLabel/HiColoredLabel.js +179 -100
  24. package/HiColoredLabel/index.js +6 -7
  25. package/HiDatePicker/Caption.js +77 -82
  26. package/HiDatePicker/Caption.spec.js +88 -0
  27. package/HiDatePicker/HiDatePicker.js +369 -373
  28. package/HiDatePicker/ListPicker.js +137 -148
  29. package/HiDatePicker/ListPicker.spec.js +68 -0
  30. package/HiDatePicker/NavBar.js +146 -0
  31. package/HiDatePicker/NavBar.spec.js +56 -0
  32. package/HiDatePicker/Overlays/CustomOverlayLayout.js +113 -132
  33. package/HiDatePicker/Overlays/MonthPickerOverlay.js +95 -115
  34. package/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +74 -0
  35. package/HiDatePicker/Overlays/Overlay.js +102 -94
  36. package/HiDatePicker/Overlays/Overlay.spec.js +38 -0
  37. package/HiDatePicker/Overlays/TimePickerOverlay.js +242 -281
  38. package/HiDatePicker/Overlays/TimePickerOverlay.spec.js +71 -0
  39. package/HiDatePicker/Overlays/YearPickerOverlay.js +124 -144
  40. package/HiDatePicker/Overlays/YearPickerOverlay.spec.js +127 -0
  41. package/HiDatePicker/Overlays/index.js +22 -27
  42. package/HiDatePicker/Weekday.js +20 -23
  43. package/HiDatePicker/stylesheet.js +198 -181
  44. package/HiExpansionPanel/HiExpansionPanel.js +153 -204
  45. package/HiExpansionPanel/index.js +6 -7
  46. package/HiForm/HiEmailField.js +90 -102
  47. package/HiForm/HiFormControl.js +319 -341
  48. package/HiForm/HiFormLabel.js +129 -152
  49. package/HiForm/HiInput.js +519 -481
  50. package/HiForm/HiPasswordField.js +93 -103
  51. package/HiForm/HiSearchField.js +158 -163
  52. package/HiForm/HiTextField.js +143 -134
  53. package/HiForm/index.js +28 -44
  54. package/HiIcon/HiIcon.js +178 -0
  55. package/HiIcon/index.js +15 -0
  56. package/HiIconButton/HiIconButton.js +120 -0
  57. package/HiIconButton/index.js +15 -0
  58. package/HiLoader/HiLoader.js +53 -39
  59. package/HiLoader/index.js +6 -7
  60. package/HiPin/HiPin.js +117 -0
  61. package/HiPin/index.js +15 -0
  62. package/HiSelect/HiSelect.js +901 -744
  63. package/HiSelect/HiSelectField.js +88 -104
  64. package/HiSelect/HiSuggestSelect.js +288 -242
  65. package/HiSelect/HiSuggestSelectField.js +76 -92
  66. package/HiSelect/SelectInput.js +293 -298
  67. package/HiSelect/index.js +34 -28
  68. package/HiSelectNew/HiDynamicSelect.js +238 -0
  69. package/HiSelectNew/HiNestedSelect.js +453 -0
  70. package/HiSelectNew/HiSelect.js +698 -0
  71. package/HiSelectNew/HiSelectField.js +146 -0
  72. package/HiSelectNew/HiSelectInput.js +349 -0
  73. package/HiSelectNew/index.js +39 -0
  74. package/HiSelectableList/HiSelectableList.js +188 -228
  75. package/HiSelectableList/HiSelectableListHierarchic.js +233 -0
  76. package/HiSelectableList/HiSelectableListItem.js +434 -520
  77. package/HiSelectableList/index.js +18 -12
  78. package/HiSwitch/HiSwitch.js +228 -200
  79. package/HiSwitch/HiSwitchState.js +206 -216
  80. package/HiSwitch/index.js +9 -17
  81. package/README.md +100 -185
  82. package/es/HiAlertModal/HiAlertModal.js +158 -173
  83. package/es/HiAppBar/HiAppBar.js +151 -0
  84. package/es/HiAppBar/index.js +1 -0
  85. package/es/HiBadge/HiBadge.js +106 -64
  86. package/es/HiBreadcrumb/HiBreadcrumb.js +58 -59
  87. package/es/HiBreadcrumb/HiStep.js +112 -80
  88. package/es/HiBreadcrumb/HiStepConnector.js +141 -67
  89. package/es/HiBreadcrumb/HiStepContent.js +66 -0
  90. package/es/HiBreadcrumb/HiStepIcon.js +134 -64
  91. package/es/HiBreadcrumb/HiStepLabel.js +173 -138
  92. package/es/HiBreadcrumb/HiStepper.js +41 -49
  93. package/es/HiButton/HiButton.js +187 -114
  94. package/es/HiCheckbox/HiCheckbox.js +163 -84
  95. package/es/HiChip/HiChip.js +231 -132
  96. package/es/HiChip/HiChipSwitch.js +239 -226
  97. package/es/HiColoredLabel/HiColoredLabel.js +158 -67
  98. package/es/HiDatePicker/Caption.js +59 -57
  99. package/es/HiDatePicker/Caption.spec.js +68 -0
  100. package/es/HiDatePicker/HiDatePicker.js +307 -276
  101. package/es/HiDatePicker/ListPicker.js +93 -92
  102. package/es/HiDatePicker/ListPicker.spec.js +51 -0
  103. package/es/HiDatePicker/NavBar.js +117 -0
  104. package/es/HiDatePicker/NavBar.spec.js +40 -0
  105. package/es/HiDatePicker/Overlays/CustomOverlayLayout.js +90 -100
  106. package/es/HiDatePicker/Overlays/MonthPickerOverlay.js +66 -65
  107. package/es/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +53 -0
  108. package/es/HiDatePicker/Overlays/Overlay.js +84 -64
  109. package/es/HiDatePicker/Overlays/Overlay.spec.js +27 -0
  110. package/es/HiDatePicker/Overlays/TimePickerOverlay.js +178 -192
  111. package/es/HiDatePicker/Overlays/TimePickerOverlay.spec.js +53 -0
  112. package/es/HiDatePicker/Overlays/YearPickerOverlay.js +92 -89
  113. package/es/HiDatePicker/Overlays/YearPickerOverlay.spec.js +92 -0
  114. package/es/HiDatePicker/Overlays/index.js +1 -0
  115. package/es/HiDatePicker/Weekday.js +14 -9
  116. package/es/HiDatePicker/stylesheet.js +188 -172
  117. package/es/HiExpansionPanel/HiExpansionPanel.js +121 -154
  118. package/es/HiForm/HiEmailField.js +58 -51
  119. package/es/HiForm/HiFormControl.js +283 -285
  120. package/es/HiForm/HiFormLabel.js +96 -103
  121. package/es/HiForm/HiInput.js +471 -415
  122. package/es/HiForm/HiPasswordField.js +59 -51
  123. package/es/HiForm/HiSearchField.js +120 -107
  124. package/es/HiForm/HiTextField.js +70 -47
  125. package/es/HiForm/index.js +1 -2
  126. package/es/HiIcon/HiIcon.js +157 -0
  127. package/es/HiIcon/index.js +1 -0
  128. package/es/HiIconButton/HiIconButton.js +100 -0
  129. package/es/HiIconButton/index.js +1 -0
  130. package/es/HiLoader/HiLoader.js +45 -22
  131. package/es/HiPin/HiPin.js +101 -0
  132. package/es/HiPin/index.js +1 -0
  133. package/es/HiSelect/HiSelect.js +857 -659
  134. package/es/HiSelect/HiSelectField.js +39 -36
  135. package/es/HiSelect/HiSuggestSelect.js +247 -181
  136. package/es/HiSelect/HiSuggestSelectField.js +36 -33
  137. package/es/HiSelect/SelectInput.js +260 -254
  138. package/es/HiSelect/index.js +4 -10
  139. package/es/HiSelectNew/HiDynamicSelect.js +203 -0
  140. package/es/HiSelectNew/HiNestedSelect.js +401 -0
  141. package/es/HiSelectNew/HiSelect.js +619 -0
  142. package/es/HiSelectNew/HiSelectField.js +111 -0
  143. package/es/HiSelectNew/HiSelectInput.js +307 -0
  144. package/es/HiSelectNew/index.js +4 -0
  145. package/es/HiSelectableList/HiSelectableList.js +144 -184
  146. package/es/HiSelectableList/HiSelectableListHierarchic.js +175 -0
  147. package/es/HiSelectableList/HiSelectableListItem.js +396 -444
  148. package/es/HiSelectableList/index.js +2 -1
  149. package/es/HiSwitch/HiSwitch.js +199 -124
  150. package/es/HiSwitch/HiSwitchState.js +182 -151
  151. package/es/HiSwitch/index.js +0 -1
  152. package/es/hi-svg-icons/HiAccount.js +38 -0
  153. package/es/hi-svg-icons/HiAll.js +43 -0
  154. package/es/hi-svg-icons/HiBilling.js +38 -0
  155. package/es/hi-svg-icons/HiBriefcaseRescue.js +14 -0
  156. package/es/hi-svg-icons/HiCatalog.js +38 -0
  157. package/es/hi-svg-icons/HiCustomer.js +38 -0
  158. package/es/hi-svg-icons/HiFinance.js +38 -0
  159. package/es/hi-svg-icons/HiRoute.js +38 -0
  160. package/es/hi-svg-icons/HiSettlement.js +38 -0
  161. package/es/hi-svg-icons/HiSizeLarge.js +25 -0
  162. package/es/hi-svg-icons/HiSizeMedium.js +25 -0
  163. package/es/hi-svg-icons/HiSizeSmall.js +25 -0
  164. package/es/hi-svg-icons/HiTransaction.js +38 -0
  165. package/es/hi-svg-icons/HiUser.js +38 -0
  166. package/es/hi-svg-icons/HiWidget.js +43 -0
  167. package/es/{svg-icons → hi-svg-icons}/index.js +4 -0
  168. package/es/hi-svg-icons/index.text.js +41 -0
  169. package/es/index.js +16 -63
  170. package/es/styles/MuiThemeProvider.js +36 -26
  171. package/es/styles/colorManipulator.js +71 -43
  172. package/es/styles/createBreakpoints.js +5 -6
  173. package/es/styles/createGenerateClassName.js +29 -27
  174. package/es/styles/createMixins.js +4 -4
  175. package/es/styles/createMuiTheme.js +26 -17
  176. package/es/styles/createPalette.js +112 -31
  177. package/es/styles/createStyles.js +3 -0
  178. package/es/styles/createTypography.js +91 -33
  179. package/es/styles/getStylesCreator.js +14 -7
  180. package/es/styles/getThemeProps.js +14 -0
  181. package/es/styles/index.js +2 -2
  182. package/es/styles/jssPreset.js +2 -3
  183. package/es/styles/mergeClasses.js +29 -0
  184. package/es/styles/shadows.js +0 -1
  185. package/es/styles/shape.js +4 -0
  186. package/es/styles/spacing.js +4 -3
  187. package/es/styles/themeListener.js +2 -5
  188. package/es/styles/transitions.js +15 -19
  189. package/es/styles/withStyles.js +115 -98
  190. package/es/styles/withTheme.js +29 -10
  191. package/es/styles/zIndex.js +0 -1
  192. package/es/test-utils/createMount.js +9 -10
  193. package/es/test-utils/createRender.js +8 -8
  194. package/es/test-utils/createShallow.js +23 -23
  195. package/es/test-utils/getClasses.js +4 -8
  196. package/es/test-utils/until.js +14 -10
  197. package/es/test-utils/unwrap.js +0 -2
  198. package/es/transitions/utils.js +4 -3
  199. package/es/utils/exactProp.js +17 -10
  200. package/es/utils/helpers.js +102 -40
  201. package/es/utils/ownerDocument.js +5 -0
  202. package/es/utils/ownerWindow.js +8 -0
  203. package/es/utils/reactHelpers.js +10 -12
  204. package/es/utils/requirePropFactory.js +7 -3
  205. package/es/utils/unsupportedProp.js +16 -0
  206. package/es/withMobileDialog/index.js +1 -0
  207. package/es/{Dialog → withMobileDialog}/withMobileDialog.js +9 -6
  208. package/es/withWidth/index.js +2 -0
  209. package/es/withWidth/withWidth.js +176 -0
  210. package/hi-svg-icons/HiAccount.js +52 -0
  211. package/hi-svg-icons/HiAll.js +57 -0
  212. package/hi-svg-icons/HiBilling.js +52 -0
  213. package/hi-svg-icons/HiBriefcaseRescue.js +27 -0
  214. package/hi-svg-icons/HiCatalog.js +52 -0
  215. package/hi-svg-icons/HiCustomer.js +52 -0
  216. package/hi-svg-icons/HiFinance.js +52 -0
  217. package/hi-svg-icons/HiRoute.js +52 -0
  218. package/hi-svg-icons/HiSettlement.js +52 -0
  219. package/hi-svg-icons/HiSizeLarge.js +36 -0
  220. package/hi-svg-icons/HiSizeMedium.js +36 -0
  221. package/hi-svg-icons/HiSizeSmall.js +36 -0
  222. package/hi-svg-icons/HiTransaction.js +52 -0
  223. package/hi-svg-icons/HiUser.js +52 -0
  224. package/hi-svg-icons/HiWidget.js +57 -0
  225. package/hi-svg-icons/index.js +127 -0
  226. package/hi-svg-icons/index.text.js +51 -0
  227. package/index.es.js +17 -64
  228. package/index.js +64 -733
  229. package/package.json +38 -42
  230. package/styles/MuiThemeProvider.js +78 -93
  231. package/styles/colorManipulator.js +88 -57
  232. package/styles/createBreakpoints.js +18 -23
  233. package/styles/createGenerateClassName.js +36 -38
  234. package/styles/createMixins.js +11 -17
  235. package/styles/createMuiTheme.js +51 -65
  236. package/styles/createPalette.js +147 -77
  237. package/styles/createStyles.js +10 -0
  238. package/styles/createTypography.js +103 -56
  239. package/styles/getStylesCreator.js +22 -23
  240. package/styles/getThemeProps.js +20 -0
  241. package/styles/index.js +30 -37
  242. package/styles/jssPreset.js +13 -23
  243. package/styles/mergeClasses.js +41 -0
  244. package/styles/shadows.js +5 -4
  245. package/styles/shape.js +11 -0
  246. package/styles/spacing.js +6 -3
  247. package/styles/themeListener.js +11 -15
  248. package/styles/transitions.js +41 -47
  249. package/styles/withStyles.js +162 -200
  250. package/styles/withTheme.js +58 -59
  251. package/styles/zIndex.js +3 -2
  252. package/test-utils/createMount.js +12 -21
  253. package/test-utils/createRender.js +10 -17
  254. package/test-utils/createShallow.js +36 -48
  255. package/test-utils/getClasses.js +15 -26
  256. package/test-utils/index.js +22 -27
  257. package/test-utils/until.js +14 -19
  258. package/test-utils/unwrap.js +0 -1
  259. package/transitions/utils.js +7 -5
  260. package/umd/hipay-material-ui.development.js +75478 -100515
  261. package/umd/hipay-material-ui.production.min.js +5 -20
  262. package/utils/exactProp.js +28 -25
  263. package/utils/helpers.js +125 -55
  264. package/utils/ownerDocument.js +13 -0
  265. package/utils/ownerWindow.js +19 -0
  266. package/utils/reactHelpers.js +17 -8
  267. package/utils/requirePropFactory.js +15 -6
  268. package/utils/unsupportedProp.js +24 -0
  269. package/withMobileDialog/index.js +15 -0
  270. package/withMobileDialog/withMobileDialog.js +45 -0
  271. package/withWidth/index.js +27 -0
  272. package/withWidth/withWidth.js +229 -0
  273. package/AppBar/AppBar.js +0 -144
  274. package/AppBar/index.js +0 -16
  275. package/Avatar/Avatar.js +0 -165
  276. package/Avatar/index.js +0 -16
  277. package/Badge/Badge.js +0 -142
  278. package/Badge/index.js +0 -16
  279. package/BottomNavigation/BottomNavigation.js +0 -113
  280. package/BottomNavigation/BottomNavigationAction.js +0 -219
  281. package/BottomNavigation/index.js +0 -25
  282. package/Button/Button.js +0 -298
  283. package/Button/index.js +0 -16
  284. package/ButtonBase/ButtonBase.js +0 -446
  285. package/ButtonBase/Ripple.js +0 -162
  286. package/ButtonBase/TouchRipple.js +0 -359
  287. package/ButtonBase/createRippleHandler.js +0 -28
  288. package/ButtonBase/index.js +0 -16
  289. package/Card/Card.js +0 -48
  290. package/Card/CardActions.js +0 -94
  291. package/Card/CardContent.js +0 -76
  292. package/Card/CardHeader.js +0 -150
  293. package/Card/CardMedia.js +0 -113
  294. package/Card/index.js +0 -52
  295. package/Checkbox/Checkbox.js +0 -160
  296. package/Checkbox/index.js +0 -16
  297. package/Chip/Chip.js +0 -322
  298. package/Chip/index.js +0 -16
  299. package/Dialog/Dialog.js +0 -271
  300. package/Dialog/DialogActions.js +0 -94
  301. package/Dialog/DialogContent.js +0 -77
  302. package/Dialog/DialogContentText.js +0 -72
  303. package/Dialog/DialogTitle.js +0 -91
  304. package/Dialog/index.js +0 -61
  305. package/Dialog/withMobileDialog.js +0 -49
  306. package/Divider/Divider.js +0 -113
  307. package/Divider/index.js +0 -16
  308. package/Drawer/Drawer.js +0 -325
  309. package/Drawer/index.js +0 -16
  310. package/ExpansionPanel/ExpansionPanel.js +0 -257
  311. package/ExpansionPanel/ExpansionPanelActions.js +0 -79
  312. package/ExpansionPanel/ExpansionPanelDetails.js +0 -73
  313. package/ExpansionPanel/ExpansionPanelSummary.js +0 -250
  314. package/ExpansionPanel/index.js +0 -43
  315. package/Form/FormControl.js +0 -291
  316. package/Form/FormControlLabel.js +0 -168
  317. package/Form/FormGroup.js +0 -94
  318. package/Form/FormHelperText.js +0 -139
  319. package/Form/FormLabel.js +0 -158
  320. package/Form/index.js +0 -52
  321. package/Grid/Grid.js +0 -372
  322. package/Grid/index.js +0 -16
  323. package/GridList/GridList.js +0 -122
  324. package/GridList/GridListTile.js +0 -239
  325. package/GridList/GridListTileBar.js +0 -176
  326. package/GridList/index.js +0 -34
  327. package/HI-CHANGELOG.md +0 -42
  328. package/HiDatePicker/HiDateRangePicker.js +0 -715
  329. package/HiDatePicker/HiDateRangeSelector.js +0 -422
  330. package/HiDatePicker/HiWeekPicker.js +0 -389
  331. package/HiDatePicker/Navbar.js +0 -169
  332. package/HiDatePicker/index.js +0 -33
  333. package/HiDotsStepper/HiDot.js +0 -151
  334. package/HiDotsStepper/HiDotsStepper.js +0 -146
  335. package/HiDotsStepper/index.js +0 -16
  336. package/HiForm/HiAddressField.js +0 -204
  337. package/HiPdfReader/HiPdfReader.js +0 -282
  338. package/HiPdfReader/index.js +0 -16
  339. package/HiPins/HiPins.js +0 -98
  340. package/HiPins/index.js +0 -16
  341. package/HiRadio/HiRadio.js +0 -99
  342. package/HiRadio/index.js +0 -16
  343. package/HiTable/BodyCellBuilder.js +0 -397
  344. package/HiTable/BodyCells/CellAccount.js +0 -100
  345. package/HiTable/BodyCells/CellAccountNumber.js +0 -220
  346. package/HiTable/BodyCells/CellAddress.js +0 -199
  347. package/HiTable/BodyCells/CellCountry.js +0 -172
  348. package/HiTable/BodyCells/CellDate.js +0 -177
  349. package/HiTable/BodyCells/CellIcon.js +0 -148
  350. package/HiTable/BodyCells/CellImage.js +0 -177
  351. package/HiTable/BodyCells/CellLayout.js +0 -287
  352. package/HiTable/BodyCells/CellNumeric.js +0 -135
  353. package/HiTable/BodyCells/CellRate.js +0 -197
  354. package/HiTable/BodyCells/CellSentinel.js +0 -221
  355. package/HiTable/BodyCells/CellStatus.js +0 -140
  356. package/HiTable/BodyCells/CellText.js +0 -268
  357. package/HiTable/BodyCells/CellThirdPartySecurity.js +0 -144
  358. package/HiTable/BodyCells/index.js +0 -133
  359. package/HiTable/BodyRow.js +0 -394
  360. package/HiTable/ChildRow.js +0 -432
  361. package/HiTable/ColumnFilter.js +0 -494
  362. package/HiTable/HeaderCell.js +0 -466
  363. package/HiTable/HiStickyRow.js +0 -300
  364. package/HiTable/HiTable.js +0 -1028
  365. package/HiTable/HiTableBody.js +0 -571
  366. package/HiTable/HiTableContextMenu.js +0 -214
  367. package/HiTable/HiTableFooterScroll.js +0 -202
  368. package/HiTable/HiTableHead.js +0 -506
  369. package/HiTable/OrderColumns.js +0 -561
  370. package/HiTable/constants.js +0 -105
  371. package/HiTable/index.js +0 -25
  372. package/HiTopBar/HiTopBar.js +0 -553
  373. package/HiTopBar/index.js +0 -16
  374. package/Hidden/Hidden.js +0 -130
  375. package/Hidden/HiddenCss.js +0 -175
  376. package/Hidden/HiddenJs.js +0 -149
  377. package/Hidden/index.js +0 -16
  378. package/Icon/Icon.js +0 -109
  379. package/Icon/index.js +0 -16
  380. package/IconButton/IconButton.js +0 -146
  381. package/IconButton/index.js +0 -16
  382. package/Input/Input.js +0 -682
  383. package/Input/InputAdornment.js +0 -116
  384. package/Input/InputLabel.js +0 -163
  385. package/Input/Textarea.js +0 -301
  386. package/Input/index.js +0 -34
  387. package/List/List.js +0 -167
  388. package/List/ListItem.js +0 -279
  389. package/List/ListItemAvatar.js +0 -100
  390. package/List/ListItemIcon.js +0 -77
  391. package/List/ListItemSecondaryAction.js +0 -76
  392. package/List/ListItemText.js +0 -145
  393. package/List/ListSubheader.js +0 -127
  394. package/List/index.js +0 -70
  395. package/Menu/Menu.js +0 -274
  396. package/Menu/MenuItem.js +0 -113
  397. package/Menu/MenuList.js +0 -253
  398. package/Menu/index.js +0 -34
  399. package/MobileStepper/MobileStepper.js +0 -173
  400. package/MobileStepper/index.js +0 -16
  401. package/Modal/Backdrop.js +0 -102
  402. package/Modal/Modal.js +0 -502
  403. package/Modal/ModalManager.js +0 -210
  404. package/Modal/index.js +0 -34
  405. package/Modal/isOverflowing.js +0 -43
  406. package/Modal/manageAriaHidden.js +0 -45
  407. package/Paper/Paper.js +0 -111
  408. package/Paper/index.js +0 -16
  409. package/Popover/Popover.js +0 -564
  410. package/Popover/index.js +0 -16
  411. package/Portal/LegacyPortal.js +0 -158
  412. package/Portal/Portal.js +0 -144
  413. package/Portal/index.js +0 -21
  414. package/Progress/CircularProgress.js +0 -228
  415. package/Progress/LinearProgress.js +0 -258
  416. package/Progress/index.js +0 -25
  417. package/Radio/Radio.js +0 -155
  418. package/Radio/RadioGroup.js +0 -168
  419. package/Radio/index.js +0 -25
  420. package/Reboot/Reboot.js +0 -106
  421. package/Reboot/index.js +0 -16
  422. package/Select/Select.js +0 -229
  423. package/Select/SelectInput.js +0 -502
  424. package/Select/index.js +0 -16
  425. package/Snackbar/Snackbar.js +0 -451
  426. package/Snackbar/SnackbarContent.js +0 -135
  427. package/Snackbar/index.js +0 -25
  428. package/Stepper/Step.js +0 -151
  429. package/Stepper/StepButton.js +0 -143
  430. package/Stepper/StepConnector.js +0 -118
  431. package/Stepper/StepContent.js +0 -153
  432. package/Stepper/StepIcon.js +0 -86
  433. package/Stepper/StepLabel.js +0 -200
  434. package/Stepper/StepPositionIcon.js +0 -95
  435. package/Stepper/Stepper.js +0 -161
  436. package/Stepper/index.js +0 -61
  437. package/SvgIcon/SvgIcon.js +0 -147
  438. package/SvgIcon/index.js +0 -16
  439. package/Switch/Switch.js +0 -215
  440. package/Switch/index.js +0 -16
  441. package/Table/Table.js +0 -127
  442. package/Table/TableBody.js +0 -121
  443. package/Table/TableCell.js +0 -181
  444. package/Table/TableFooter.js +0 -93
  445. package/Table/TableHead.js +0 -121
  446. package/Table/TablePagination.js +0 -310
  447. package/Table/TablePaginationActions.js +0 -183
  448. package/Table/TableRow.js +0 -127
  449. package/Table/TableSortLabel.js +0 -145
  450. package/Table/index.js +0 -79
  451. package/Tabs/Tab.js +0 -340
  452. package/Tabs/TabIndicator.js +0 -95
  453. package/Tabs/TabScrollButton.js +0 -112
  454. package/Tabs/Tabs.js +0 -530
  455. package/Tabs/index.js +0 -25
  456. package/TextField/TextField.js +0 -290
  457. package/TextField/index.js +0 -16
  458. package/Toolbar/Toolbar.js +0 -89
  459. package/Toolbar/index.js +0 -16
  460. package/Tooltip/Tooltip.js +0 -514
  461. package/Tooltip/index.js +0 -16
  462. package/Typography/Typography.js +0 -192
  463. package/Typography/index.js +0 -16
  464. package/colors/amber.js +0 -23
  465. package/colors/blue.js +0 -23
  466. package/colors/blueGrey.js +0 -23
  467. package/colors/brown.js +0 -23
  468. package/colors/common.js +0 -11
  469. package/colors/cyan.js +0 -23
  470. package/colors/deepOrange.js +0 -23
  471. package/colors/deepPurple.js +0 -23
  472. package/colors/green.js +0 -23
  473. package/colors/grey.js +0 -23
  474. package/colors/index.js +0 -187
  475. package/colors/indigo.js +0 -23
  476. package/colors/lightBlue.js +0 -23
  477. package/colors/lightGreen.js +0 -23
  478. package/colors/lime.js +0 -23
  479. package/colors/orange.js +0 -23
  480. package/colors/pink.js +0 -23
  481. package/colors/purple.js +0 -23
  482. package/colors/red.js +0 -23
  483. package/colors/teal.js +0 -23
  484. package/colors/yellow.js +0 -23
  485. package/es/AppBar/AppBar.js +0 -106
  486. package/es/AppBar/index.js +0 -1
  487. package/es/Avatar/Avatar.js +0 -136
  488. package/es/Avatar/index.js +0 -1
  489. package/es/Badge/Badge.js +0 -112
  490. package/es/Badge/index.js +0 -1
  491. package/es/BottomNavigation/BottomNavigation.js +0 -86
  492. package/es/BottomNavigation/BottomNavigationAction.js +0 -153
  493. package/es/BottomNavigation/index.js +0 -2
  494. package/es/Button/Button.js +0 -274
  495. package/es/Button/index.js +0 -1
  496. package/es/ButtonBase/ButtonBase.js +0 -358
  497. package/es/ButtonBase/Ripple.js +0 -102
  498. package/es/ButtonBase/TouchRipple.js +0 -268
  499. package/es/ButtonBase/createRippleHandler.js +0 -23
  500. package/es/ButtonBase/index.js +0 -1
  501. package/es/Card/Card.js +0 -27
  502. package/es/Card/CardActions.js +0 -58
  503. package/es/Card/CardContent.js +0 -45
  504. package/es/Card/CardHeader.js +0 -120
  505. package/es/Card/CardMedia.js +0 -76
  506. package/es/Card/index.js +0 -5
  507. package/es/Checkbox/Checkbox.js +0 -117
  508. package/es/Checkbox/index.js +0 -1
  509. package/es/Chip/Chip.js +0 -241
  510. package/es/Chip/index.js +0 -1
  511. package/es/Dialog/Dialog.js +0 -231
  512. package/es/Dialog/DialogActions.js +0 -58
  513. package/es/Dialog/DialogContent.js +0 -48
  514. package/es/Dialog/DialogContentText.js +0 -41
  515. package/es/Dialog/DialogTitle.js +0 -57
  516. package/es/Dialog/index.js +0 -6
  517. package/es/Divider/Divider.js +0 -83
  518. package/es/Divider/index.js +0 -1
  519. package/es/Drawer/Drawer.js +0 -252
  520. package/es/Drawer/index.js +0 -1
  521. package/es/ExpansionPanel/ExpansionPanel.js +0 -194
  522. package/es/ExpansionPanel/ExpansionPanelActions.js +0 -47
  523. package/es/ExpansionPanel/ExpansionPanelDetails.js +0 -42
  524. package/es/ExpansionPanel/ExpansionPanelSummary.js +0 -182
  525. package/es/ExpansionPanel/index.js +0 -4
  526. package/es/Form/FormControl.js +0 -214
  527. package/es/Form/FormControlLabel.js +0 -137
  528. package/es/Form/FormGroup.js +0 -62
  529. package/es/Form/FormHelperText.js +0 -110
  530. package/es/Form/FormLabel.js +0 -132
  531. package/es/Form/index.js +0 -5
  532. package/es/Grid/Grid.js +0 -353
  533. package/es/Grid/index.js +0 -1
  534. package/es/GridList/GridList.js +0 -97
  535. package/es/GridList/GridListTile.js +0 -153
  536. package/es/GridList/GridListTileBar.js +0 -152
  537. package/es/GridList/index.js +0 -3
  538. package/es/HiDatePicker/HiDateRangePicker.js +0 -567
  539. package/es/HiDatePicker/HiDateRangeSelector.js +0 -345
  540. package/es/HiDatePicker/HiWeekPicker.js +0 -296
  541. package/es/HiDatePicker/Navbar.js +0 -130
  542. package/es/HiDatePicker/index.js +0 -7
  543. package/es/HiDotsStepper/HiDot.js +0 -92
  544. package/es/HiDotsStepper/HiDotsStepper.js +0 -83
  545. package/es/HiDotsStepper/index.js +0 -1
  546. package/es/HiForm/HiAddressField.js +0 -142
  547. package/es/HiPdfReader/HiPdfReader.js +0 -198
  548. package/es/HiPdfReader/index.js +0 -1
  549. package/es/HiPins/HiPins.js +0 -65
  550. package/es/HiPins/index.js +0 -1
  551. package/es/HiRadio/HiRadio.js +0 -41
  552. package/es/HiRadio/index.js +0 -1
  553. package/es/HiTable/BodyCellBuilder.js +0 -344
  554. package/es/HiTable/BodyCells/CellAccount.js +0 -40
  555. package/es/HiTable/BodyCells/CellAccountNumber.js +0 -166
  556. package/es/HiTable/BodyCells/CellAddress.js +0 -129
  557. package/es/HiTable/BodyCells/CellCountry.js +0 -107
  558. package/es/HiTable/BodyCells/CellDate.js +0 -111
  559. package/es/HiTable/BodyCells/CellIcon.js +0 -83
  560. package/es/HiTable/BodyCells/CellImage.js +0 -115
  561. package/es/HiTable/BodyCells/CellLayout.js +0 -204
  562. package/es/HiTable/BodyCells/CellNumeric.js +0 -71
  563. package/es/HiTable/BodyCells/CellRate.js +0 -131
  564. package/es/HiTable/BodyCells/CellSentinel.js +0 -161
  565. package/es/HiTable/BodyCells/CellStatus.js +0 -77
  566. package/es/HiTable/BodyCells/CellText.js +0 -189
  567. package/es/HiTable/BodyCells/CellThirdPartySecurity.js +0 -89
  568. package/es/HiTable/BodyCells/index.js +0 -16
  569. package/es/HiTable/BodyRow.js +0 -320
  570. package/es/HiTable/ChildRow.js +0 -345
  571. package/es/HiTable/ColumnFilter.js +0 -398
  572. package/es/HiTable/HeaderCell.js +0 -379
  573. package/es/HiTable/HiStickyRow.js +0 -217
  574. package/es/HiTable/HiTable.js +0 -892
  575. package/es/HiTable/HiTableBody.js +0 -477
  576. package/es/HiTable/HiTableContextMenu.js +0 -150
  577. package/es/HiTable/HiTableFooterScroll.js +0 -144
  578. package/es/HiTable/HiTableHead.js +0 -415
  579. package/es/HiTable/OrderColumns.js +0 -441
  580. package/es/HiTable/constants.js +0 -180
  581. package/es/HiTable/index.js +0 -2
  582. package/es/HiTopBar/HiTopBar.js +0 -458
  583. package/es/HiTopBar/index.js +0 -1
  584. package/es/Hidden/Hidden.js +0 -107
  585. package/es/Hidden/HiddenCss.js +0 -151
  586. package/es/Hidden/HiddenJs.js +0 -129
  587. package/es/Hidden/index.js +0 -1
  588. package/es/Icon/Icon.js +0 -74
  589. package/es/Icon/index.js +0 -1
  590. package/es/IconButton/IconButton.js +0 -106
  591. package/es/IconButton/index.js +0 -1
  592. package/es/Input/Input.js +0 -616
  593. package/es/Input/InputAdornment.js +0 -83
  594. package/es/Input/InputLabel.js +0 -138
  595. package/es/Input/Textarea.js +0 -234
  596. package/es/Input/index.js +0 -3
  597. package/es/List/List.js +0 -106
  598. package/es/List/ListItem.js +0 -212
  599. package/es/List/ListItemAvatar.js +0 -63
  600. package/es/List/ListItemIcon.js +0 -46
  601. package/es/List/ListItemSecondaryAction.js +0 -45
  602. package/es/List/ListItemText.js +0 -114
  603. package/es/List/ListSubheader.js +0 -90
  604. package/es/List/index.js +0 -7
  605. package/es/Menu/Menu.js +0 -205
  606. package/es/Menu/MenuItem.js +0 -75
  607. package/es/Menu/MenuList.js +0 -168
  608. package/es/Menu/index.js +0 -3
  609. package/es/MobileStepper/MobileStepper.js +0 -137
  610. package/es/MobileStepper/index.js +0 -1
  611. package/es/Modal/Backdrop.js +0 -67
  612. package/es/Modal/Modal.js +0 -398
  613. package/es/Modal/ModalManager.js +0 -162
  614. package/es/Modal/index.js +0 -3
  615. package/es/Modal/isOverflowing.js +0 -25
  616. package/es/Modal/manageAriaHidden.js +0 -33
  617. package/es/Paper/Paper.js +0 -81
  618. package/es/Paper/index.js +0 -1
  619. package/es/Popover/Popover.js +0 -455
  620. package/es/Popover/index.js +0 -1
  621. package/es/Portal/LegacyPortal.js +0 -97
  622. package/es/Portal/Portal.js +0 -82
  623. package/es/Portal/index.js +0 -5
  624. package/es/Progress/CircularProgress.js +0 -201
  625. package/es/Progress/LinearProgress.js +0 -235
  626. package/es/Progress/index.js +0 -2
  627. package/es/Radio/Radio.js +0 -113
  628. package/es/Radio/RadioGroup.js +0 -101
  629. package/es/Radio/index.js +0 -2
  630. package/es/Reboot/Reboot.js +0 -55
  631. package/es/Reboot/index.js +0 -1
  632. package/es/Select/Select.js +0 -199
  633. package/es/Select/SelectInput.js +0 -414
  634. package/es/Select/index.js +0 -1
  635. package/es/Snackbar/Snackbar.js +0 -370
  636. package/es/Snackbar/SnackbarContent.js +0 -96
  637. package/es/Snackbar/index.js +0 -2
  638. package/es/Stepper/Step.js +0 -120
  639. package/es/Stepper/StepButton.js +0 -111
  640. package/es/Stepper/StepConnector.js +0 -85
  641. package/es/Stepper/StepContent.js +0 -116
  642. package/es/Stepper/StepIcon.js +0 -54
  643. package/es/Stepper/StepLabel.js +0 -170
  644. package/es/Stepper/StepPositionIcon.js +0 -64
  645. package/es/Stepper/Stepper.js +0 -126
  646. package/es/Stepper/index.js +0 -6
  647. package/es/SvgIcon/SvgIcon.js +0 -117
  648. package/es/SvgIcon/index.js +0 -1
  649. package/es/Switch/Switch.js +0 -178
  650. package/es/Switch/index.js +0 -1
  651. package/es/Table/Table.js +0 -64
  652. package/es/Table/TableBody.js +0 -61
  653. package/es/Table/TableCell.js +0 -153
  654. package/es/Table/TableFooter.js +0 -44
  655. package/es/Table/TableHead.js +0 -61
  656. package/es/Table/TablePagination.js +0 -224
  657. package/es/Table/TablePaginationActions.js +0 -116
  658. package/es/Table/TableRow.js +0 -99
  659. package/es/Table/TableSortLabel.js +0 -101
  660. package/es/Table/index.js +0 -8
  661. package/es/Tabs/Tab.js +0 -271
  662. package/es/Tabs/TabIndicator.js +0 -63
  663. package/es/Tabs/TabScrollButton.js +0 -70
  664. package/es/Tabs/Tabs.js +0 -425
  665. package/es/Tabs/index.js +0 -2
  666. package/es/TextField/TextField.js +0 -259
  667. package/es/TextField/index.js +0 -1
  668. package/es/Toolbar/Toolbar.js +0 -55
  669. package/es/Toolbar/index.js +0 -1
  670. package/es/Tooltip/Tooltip.js +0 -425
  671. package/es/Tooltip/index.js +0 -1
  672. package/es/Typography/Typography.js +0 -164
  673. package/es/Typography/index.js +0 -1
  674. package/es/colors/amber.js +0 -18
  675. package/es/colors/blue.js +0 -18
  676. package/es/colors/blueGrey.js +0 -18
  677. package/es/colors/brown.js +0 -18
  678. package/es/colors/common.js +0 -6
  679. package/es/colors/cyan.js +0 -18
  680. package/es/colors/deepOrange.js +0 -18
  681. package/es/colors/deepPurple.js +0 -18
  682. package/es/colors/green.js +0 -18
  683. package/es/colors/grey.js +0 -18
  684. package/es/colors/index.js +0 -20
  685. package/es/colors/indigo.js +0 -18
  686. package/es/colors/lightBlue.js +0 -18
  687. package/es/colors/lightGreen.js +0 -18
  688. package/es/colors/lime.js +0 -18
  689. package/es/colors/orange.js +0 -18
  690. package/es/colors/pink.js +0 -18
  691. package/es/colors/purple.js +0 -18
  692. package/es/colors/red.js +0 -18
  693. package/es/colors/teal.js +0 -18
  694. package/es/colors/yellow.js +0 -18
  695. package/es/internal/RefHolder.js +0 -20
  696. package/es/internal/SwitchBase.js +0 -219
  697. package/es/internal/svg-icons/ArrowDownward.js +0 -20
  698. package/es/internal/svg-icons/ArrowDropDown.js +0 -20
  699. package/es/internal/svg-icons/Cancel.js +0 -19
  700. package/es/internal/svg-icons/CheckBox.js +0 -19
  701. package/es/internal/svg-icons/CheckBoxOutlineBlank.js +0 -19
  702. package/es/internal/svg-icons/CheckCircle.js +0 -19
  703. package/es/internal/svg-icons/IndeterminateCheckBox.js +0 -19
  704. package/es/internal/svg-icons/KeyboardArrowLeft.js +0 -19
  705. package/es/internal/svg-icons/KeyboardArrowRight.js +0 -19
  706. package/es/internal/svg-icons/RadioButtonChecked.js +0 -19
  707. package/es/internal/svg-icons/RadioButtonUnchecked.js +0 -19
  708. package/es/styles/createHiMuiTheme.js +0 -307
  709. package/es/svg-icons/ArrowDownward.js +0 -20
  710. package/es/svg-icons/ArrowDropDown.js +0 -20
  711. package/es/svg-icons/Cancel.js +0 -19
  712. package/es/svg-icons/CheckBox.js +0 -19
  713. package/es/svg-icons/CheckBoxOutlineBlank.js +0 -19
  714. package/es/svg-icons/CheckCircle.js +0 -19
  715. package/es/svg-icons/HiAccount.js +0 -33
  716. package/es/svg-icons/HiAll.js +0 -43
  717. package/es/svg-icons/HiBilling.js +0 -33
  718. package/es/svg-icons/HiCatalog.js +0 -33
  719. package/es/svg-icons/HiCustomer.js +0 -39
  720. package/es/svg-icons/HiFinance.js +0 -33
  721. package/es/svg-icons/HiRoute.js +0 -33
  722. package/es/svg-icons/HiSettlement.js +0 -36
  723. package/es/svg-icons/HiSizeLarge.js +0 -19
  724. package/es/svg-icons/HiSizeMedium.js +0 -19
  725. package/es/svg-icons/HiSizeSmall.js +0 -19
  726. package/es/svg-icons/HiTransaction.js +0 -33
  727. package/es/svg-icons/HiUser.js +0 -39
  728. package/es/svg-icons/HiWidget.js +0 -43
  729. package/es/svg-icons/IndeterminateCheckBox.js +0 -19
  730. package/es/svg-icons/KeyboardArrowLeft.js +0 -19
  731. package/es/svg-icons/KeyboardArrowRight.js +0 -19
  732. package/es/svg-icons/RadioButtonChecked.js +0 -19
  733. package/es/svg-icons/RadioButtonUnchecked.js +0 -19
  734. package/es/transitions/Collapse.js +0 -245
  735. package/es/transitions/Fade.js +0 -132
  736. package/es/transitions/Grow.js +0 -173
  737. package/es/transitions/Slide.js +0 -291
  738. package/es/transitions/Zoom.js +0 -129
  739. package/es/transitions/index.js +0 -5
  740. package/es/utils/ClickAwayListener.js +0 -65
  741. package/es/utils/HiIconBuilder.js +0 -107
  742. package/es/utils/addEventListener.js +0 -11
  743. package/es/utils/hiGetMdiIcon.js +0 -12
  744. package/es/utils/hiHelpers.js +0 -173
  745. package/es/utils/keyboardFocus.js +0 -51
  746. package/es/utils/manageAriaHidden.js +0 -33
  747. package/es/utils/withWidth.js +0 -141
  748. package/hmu/images/countries/ad.svg +0 -151
  749. package/hmu/images/countries/ae.svg +0 -6
  750. package/hmu/images/countries/af.svg +0 -83
  751. package/hmu/images/countries/ag.svg +0 -15
  752. package/hmu/images/countries/ai.svg +0 -767
  753. package/hmu/images/countries/al.svg +0 -5
  754. package/hmu/images/countries/am.svg +0 -5
  755. package/hmu/images/countries/ao.svg +0 -13
  756. package/hmu/images/countries/aq.svg +0 -6
  757. package/hmu/images/countries/ar.svg +0 -32
  758. package/hmu/images/countries/as.svg +0 -33
  759. package/hmu/images/countries/at.svg +0 -6
  760. package/hmu/images/countries/au.svg +0 -9
  761. package/hmu/images/countries/aw.svg +0 -186
  762. package/hmu/images/countries/ax.svg +0 -18
  763. package/hmu/images/countries/az.svg +0 -8
  764. package/hmu/images/countries/ba.svg +0 -12
  765. package/hmu/images/countries/bb.svg +0 -6
  766. package/hmu/images/countries/bd.svg +0 -4
  767. package/hmu/images/countries/be.svg +0 -7
  768. package/hmu/images/countries/bf.svg +0 -7
  769. package/hmu/images/countries/bg.svg +0 -7
  770. package/hmu/images/countries/bh.svg +0 -11
  771. package/hmu/images/countries/bi.svg +0 -15
  772. package/hmu/images/countries/bj.svg +0 -14
  773. package/hmu/images/countries/bl.svg +0 -7
  774. package/hmu/images/countries/bm.svg +0 -99
  775. package/hmu/images/countries/bn.svg +0 -36
  776. package/hmu/images/countries/bo.svg +0 -686
  777. package/hmu/images/countries/bq.svg +0 -5
  778. package/hmu/images/countries/br.svg +0 -45
  779. package/hmu/images/countries/bs.svg +0 -13
  780. package/hmu/images/countries/bt.svg +0 -89
  781. package/hmu/images/countries/bv.svg +0 -13
  782. package/hmu/images/countries/bw.svg +0 -7
  783. package/hmu/images/countries/by.svg +0 -61
  784. package/hmu/images/countries/bz.svg +0 -146
  785. package/hmu/images/countries/ca.svg +0 -4
  786. package/hmu/images/countries/cc.svg +0 -19
  787. package/hmu/images/countries/cd.svg +0 -5
  788. package/hmu/images/countries/cf.svg +0 -15
  789. package/hmu/images/countries/cg.svg +0 -12
  790. package/hmu/images/countries/ch.svg +0 -9
  791. package/hmu/images/countries/ci.svg +0 -7
  792. package/hmu/images/countries/ck.svg +0 -9
  793. package/hmu/images/countries/cl.svg +0 -13
  794. package/hmu/images/countries/cm.svg +0 -15
  795. package/hmu/images/countries/cn.svg +0 -11
  796. package/hmu/images/countries/co.svg +0 -7
  797. package/hmu/images/countries/cr.svg +0 -7
  798. package/hmu/images/countries/cu.svg +0 -13
  799. package/hmu/images/countries/cv.svg +0 -13
  800. package/hmu/images/countries/cw.svg +0 -14
  801. package/hmu/images/countries/cx.svg +0 -15
  802. package/hmu/images/countries/cy.svg +0 -6
  803. package/hmu/images/countries/cz.svg +0 -12
  804. package/hmu/images/countries/de.svg +0 -5
  805. package/hmu/images/countries/dj.svg +0 -13
  806. package/hmu/images/countries/dk.svg +0 -5
  807. package/hmu/images/countries/dm.svg +0 -152
  808. package/hmu/images/countries/do.svg +0 -6745
  809. package/hmu/images/countries/dz.svg +0 -5
  810. package/hmu/images/countries/ec.svg +0 -141
  811. package/hmu/images/countries/ee.svg +0 -7
  812. package/hmu/images/countries/eg.svg +0 -38
  813. package/hmu/images/countries/eh.svg +0 -15
  814. package/hmu/images/countries/er.svg +0 -8
  815. package/hmu/images/countries/es-ct.svg +0 -4
  816. package/hmu/images/countries/es.svg +0 -581
  817. package/hmu/images/countries/et.svg +0 -14
  818. package/hmu/images/countries/eu.svg +0 -28
  819. package/hmu/images/countries/fi.svg +0 -5
  820. package/hmu/images/countries/fj.svg +0 -124
  821. package/hmu/images/countries/fk.svg +0 -90
  822. package/hmu/images/countries/fm.svg +0 -11
  823. package/hmu/images/countries/fo.svg +0 -12
  824. package/hmu/images/countries/fr.svg +0 -7
  825. package/hmu/images/countries/ga.svg +0 -7
  826. package/hmu/images/countries/gb-eng.svg +0 -5
  827. package/hmu/images/countries/gb-nir.svg +0 -137
  828. package/hmu/images/countries/gb-sct.svg +0 -4
  829. package/hmu/images/countries/gb-wls.svg +0 -9
  830. package/hmu/images/countries/gb.svg +0 -15
  831. package/hmu/images/countries/gd.svg +0 -27
  832. package/hmu/images/countries/ge.svg +0 -6
  833. package/hmu/images/countries/gf.svg +0 -5
  834. package/hmu/images/countries/gg.svg +0 -9
  835. package/hmu/images/countries/gh.svg +0 -6
  836. package/hmu/images/countries/gi.svg +0 -33
  837. package/hmu/images/countries/gl.svg +0 -4
  838. package/hmu/images/countries/gm.svg +0 -14
  839. package/hmu/images/countries/gn.svg +0 -7
  840. package/hmu/images/countries/gp.svg +0 -7
  841. package/hmu/images/countries/gq.svg +0 -23
  842. package/hmu/images/countries/gr.svg +0 -22
  843. package/hmu/images/countries/gs.svg +0 -205
  844. package/hmu/images/countries/gt.svg +0 -204
  845. package/hmu/images/countries/gu.svg +0 -39
  846. package/hmu/images/countries/gw.svg +0 -13
  847. package/hmu/images/countries/gy.svg +0 -9
  848. package/hmu/images/countries/hk.svg +0 -32
  849. package/hmu/images/countries/hm.svg +0 -9
  850. package/hmu/images/countries/hn.svg +0 -18
  851. package/hmu/images/countries/hr.svg +0 -59
  852. package/hmu/images/countries/ht.svg +0 -122
  853. package/hmu/images/countries/hu.svg +0 -7
  854. package/hmu/images/countries/id.svg +0 -6
  855. package/hmu/images/countries/ie.svg +0 -7
  856. package/hmu/images/countries/il.svg +0 -14
  857. package/hmu/images/countries/im.svg +0 -36
  858. package/hmu/images/countries/in.svg +0 -25
  859. package/hmu/images/countries/io.svg +0 -148
  860. package/hmu/images/countries/iq.svg +0 -10
  861. package/hmu/images/countries/ir.svg +0 -219
  862. package/hmu/images/countries/is.svg +0 -12
  863. package/hmu/images/countries/it.svg +0 -7
  864. package/hmu/images/countries/je.svg +0 -32
  865. package/hmu/images/countries/jm.svg +0 -8
  866. package/hmu/images/countries/jo.svg +0 -16
  867. package/hmu/images/countries/jp.svg +0 -11
  868. package/hmu/images/countries/ke.svg +0 -23
  869. package/hmu/images/countries/kg.svg +0 -15
  870. package/hmu/images/countries/kh.svg +0 -69
  871. package/hmu/images/countries/ki.svg +0 -36
  872. package/hmu/images/countries/km.svg +0 -16
  873. package/hmu/images/countries/kn.svg +0 -14
  874. package/hmu/images/countries/kp.svg +0 -15
  875. package/hmu/images/countries/kr.svg +0 -24
  876. package/hmu/images/countries/kw.svg +0 -13
  877. package/hmu/images/countries/ky.svg +0 -63
  878. package/hmu/images/countries/kz.svg +0 -23
  879. package/hmu/images/countries/la.svg +0 -12
  880. package/hmu/images/countries/lb.svg +0 -15
  881. package/hmu/images/countries/lc.svg +0 -8
  882. package/hmu/images/countries/li.svg +0 -43
  883. package/hmu/images/countries/lk.svg +0 -22
  884. package/hmu/images/countries/lr.svg +0 -14
  885. package/hmu/images/countries/ls.svg +0 -8
  886. package/hmu/images/countries/lt.svg +0 -7
  887. package/hmu/images/countries/lu.svg +0 -5
  888. package/hmu/images/countries/lv.svg +0 -6
  889. package/hmu/images/countries/ly.svg +0 -13
  890. package/hmu/images/countries/ma.svg +0 -4
  891. package/hmu/images/countries/mc.svg +0 -6
  892. package/hmu/images/countries/md.svg +0 -72
  893. package/hmu/images/countries/me.svg +0 -118
  894. package/hmu/images/countries/mf.svg +0 -7
  895. package/hmu/images/countries/mg.svg +0 -7
  896. package/hmu/images/countries/mh.svg +0 -7
  897. package/hmu/images/countries/mk.svg +0 -5
  898. package/hmu/images/countries/ml.svg +0 -7
  899. package/hmu/images/countries/mm.svg +0 -16
  900. package/hmu/images/countries/mn.svg +0 -13
  901. package/hmu/images/countries/mo.svg +0 -9
  902. package/hmu/images/countries/mp.svg +0 -86
  903. package/hmu/images/countries/mq.svg +0 -7
  904. package/hmu/images/countries/mr.svg +0 -6
  905. package/hmu/images/countries/ms.svg +0 -39
  906. package/hmu/images/countries/mt.svg +0 -49
  907. package/hmu/images/countries/mu.svg +0 -8
  908. package/hmu/images/countries/mv.svg +0 -6
  909. package/hmu/images/countries/mw.svg +0 -10
  910. package/hmu/images/countries/mx.svg +0 -385
  911. package/hmu/images/countries/my.svg +0 -15
  912. package/hmu/images/countries/mz.svg +0 -21
  913. package/hmu/images/countries/na.svg +0 -16
  914. package/hmu/images/countries/nc.svg +0 -7
  915. package/hmu/images/countries/ne.svg +0 -6
  916. package/hmu/images/countries/nf.svg +0 -9
  917. package/hmu/images/countries/ng.svg +0 -6
  918. package/hmu/images/countries/ni.svg +0 -131
  919. package/hmu/images/countries/nl.svg +0 -7
  920. package/hmu/images/countries/no.svg +0 -7
  921. package/hmu/images/countries/np.svg +0 -14
  922. package/hmu/images/countries/nr.svg +0 -12
  923. package/hmu/images/countries/nu.svg +0 -26
  924. package/hmu/images/countries/nz.svg +0 -41
  925. package/hmu/images/countries/om.svg +0 -116
  926. package/hmu/images/countries/pa.svg +0 -14
  927. package/hmu/images/countries/pe.svg +0 -279
  928. package/hmu/images/countries/pf.svg +0 -19
  929. package/hmu/images/countries/pg.svg +0 -9
  930. package/hmu/images/countries/ph.svg +0 -28
  931. package/hmu/images/countries/pk.svg +0 -15
  932. package/hmu/images/countries/pl.svg +0 -6
  933. package/hmu/images/countries/pm.svg +0 -7
  934. package/hmu/images/countries/pn.svg +0 -62
  935. package/hmu/images/countries/pr.svg +0 -13
  936. package/hmu/images/countries/ps.svg +0 -15
  937. package/hmu/images/countries/pt.svg +0 -57
  938. package/hmu/images/countries/pw.svg +0 -11
  939. package/hmu/images/countries/py.svg +0 -157
  940. package/hmu/images/countries/qa.svg +0 -4
  941. package/hmu/images/countries/re.svg +0 -7
  942. package/hmu/images/countries/ro.svg +0 -7
  943. package/hmu/images/countries/rs.svg +0 -292
  944. package/hmu/images/countries/ru.svg +0 -7
  945. package/hmu/images/countries/rw.svg +0 -13
  946. package/hmu/images/countries/sa.svg +0 -26
  947. package/hmu/images/countries/sb.svg +0 -13
  948. package/hmu/images/countries/sc.svg +0 -14
  949. package/hmu/images/countries/sd.svg +0 -13
  950. package/hmu/images/countries/se.svg +0 -16
  951. package/hmu/images/countries/sg.svg +0 -13
  952. package/hmu/images/countries/sh.svg +0 -74
  953. package/hmu/images/countries/si.svg +0 -18
  954. package/hmu/images/countries/sj.svg +0 -7
  955. package/hmu/images/countries/sk.svg +0 -9
  956. package/hmu/images/countries/sl.svg +0 -7
  957. package/hmu/images/countries/sm.svg +0 -91
  958. package/hmu/images/countries/sn.svg +0 -8
  959. package/hmu/images/countries/so.svg +0 -11
  960. package/hmu/images/countries/sr.svg +0 -6
  961. package/hmu/images/countries/ss.svg +0 -8
  962. package/hmu/images/countries/st.svg +0 -16
  963. package/hmu/images/countries/sv.svg +0 -618
  964. package/hmu/images/countries/sx.svg +0 -56
  965. package/hmu/images/countries/sy.svg +0 -6
  966. package/hmu/images/countries/sz.svg +0 -45
  967. package/hmu/images/countries/tc.svg +0 -67
  968. package/hmu/images/countries/td.svg +0 -7
  969. package/hmu/images/countries/tf.svg +0 -15
  970. package/hmu/images/countries/tg.svg +0 -14
  971. package/hmu/images/countries/th.svg +0 -7
  972. package/hmu/images/countries/tj.svg +0 -22
  973. package/hmu/images/countries/tk.svg +0 -5
  974. package/hmu/images/countries/tl.svg +0 -13
  975. package/hmu/images/countries/tm.svg +0 -213
  976. package/hmu/images/countries/tn.svg +0 -13
  977. package/hmu/images/countries/to.svg +0 -10
  978. package/hmu/images/countries/tr.svg +0 -8
  979. package/hmu/images/countries/tt.svg +0 -5
  980. package/hmu/images/countries/tv.svg +0 -27
  981. package/hmu/images/countries/tw.svg +0 -14
  982. package/hmu/images/countries/tz.svg +0 -13
  983. package/hmu/images/countries/ua.svg +0 -6
  984. package/hmu/images/countries/ug.svg +0 -30
  985. package/hmu/images/countries/um.svg +0 -23
  986. package/hmu/images/countries/un.svg +0 -16
  987. package/hmu/images/countries/us.svg +0 -12
  988. package/hmu/images/countries/uy.svg +0 -28
  989. package/hmu/images/countries/uz.svg +0 -30
  990. package/hmu/images/countries/va.svg +0 -483
  991. package/hmu/images/countries/vc.svg +0 -8
  992. package/hmu/images/countries/ve.svg +0 -26
  993. package/hmu/images/countries/vg.svg +0 -133
  994. package/hmu/images/countries/vi.svg +0 -31
  995. package/hmu/images/countries/vn.svg +0 -11
  996. package/hmu/images/countries/vu.svg +0 -18
  997. package/hmu/images/countries/wf.svg +0 -7
  998. package/hmu/images/countries/ws.svg +0 -7
  999. package/hmu/images/countries/ye.svg +0 -7
  1000. package/hmu/images/countries/yt.svg +0 -7
  1001. package/hmu/images/countries/za.svg +0 -17
  1002. package/hmu/images/countries/zm.svg +0 -27
  1003. package/hmu/images/countries/zw.svg +0 -21
  1004. package/hmu/images/hipay-white-logo.svg +0 -42
  1005. package/hmu/images/logo_visa_75wx45h.gif +0 -0
  1006. package/internal/RefHolder.js +0 -64
  1007. package/internal/SwitchBase.js +0 -287
  1008. package/internal/svg-icons/ArrowDownward.js +0 -37
  1009. package/internal/svg-icons/ArrowDropDown.js +0 -37
  1010. package/internal/svg-icons/Cancel.js +0 -36
  1011. package/internal/svg-icons/CheckBox.js +0 -36
  1012. package/internal/svg-icons/CheckBoxOutlineBlank.js +0 -36
  1013. package/internal/svg-icons/CheckCircle.js +0 -36
  1014. package/internal/svg-icons/IndeterminateCheckBox.js +0 -36
  1015. package/internal/svg-icons/KeyboardArrowLeft.js +0 -36
  1016. package/internal/svg-icons/KeyboardArrowRight.js +0 -36
  1017. package/internal/svg-icons/RadioButtonChecked.js +0 -36
  1018. package/internal/svg-icons/RadioButtonUnchecked.js +0 -36
  1019. package/styles/createHiMuiTheme.js +0 -339
  1020. package/svg-icons/ArrowDownward.js +0 -37
  1021. package/svg-icons/ArrowDropDown.js +0 -37
  1022. package/svg-icons/Cancel.js +0 -36
  1023. package/svg-icons/CheckBox.js +0 -36
  1024. package/svg-icons/CheckBoxOutlineBlank.js +0 -36
  1025. package/svg-icons/CheckCircle.js +0 -36
  1026. package/svg-icons/HiAccount.js +0 -52
  1027. package/svg-icons/HiAll.js +0 -62
  1028. package/svg-icons/HiBilling.js +0 -52
  1029. package/svg-icons/HiCatalog.js +0 -52
  1030. package/svg-icons/HiCustomer.js +0 -58
  1031. package/svg-icons/HiFinance.js +0 -52
  1032. package/svg-icons/HiRoute.js +0 -52
  1033. package/svg-icons/HiSettlement.js +0 -52
  1034. package/svg-icons/HiSizeLarge.js +0 -36
  1035. package/svg-icons/HiSizeMedium.js +0 -36
  1036. package/svg-icons/HiSizeSmall.js +0 -36
  1037. package/svg-icons/HiTransaction.js +0 -52
  1038. package/svg-icons/HiUser.js +0 -58
  1039. package/svg-icons/HiWidget.js +0 -62
  1040. package/svg-icons/IndeterminateCheckBox.js +0 -36
  1041. package/svg-icons/KeyboardArrowLeft.js +0 -36
  1042. package/svg-icons/KeyboardArrowRight.js +0 -36
  1043. package/svg-icons/RadioButtonChecked.js +0 -36
  1044. package/svg-icons/RadioButtonUnchecked.js +0 -36
  1045. package/svg-icons/index.js +0 -106
  1046. package/transitions/Collapse.js +0 -324
  1047. package/transitions/Fade.js +0 -207
  1048. package/transitions/Grow.js +0 -251
  1049. package/transitions/Slide.js +0 -381
  1050. package/transitions/Zoom.js +0 -204
  1051. package/transitions/index.js +0 -52
  1052. package/utils/ClickAwayListener.js +0 -122
  1053. package/utils/HiIconBuilder.js +0 -178
  1054. package/utils/addEventListener.js +0 -26
  1055. package/utils/hiGetMdiIcon.js +0 -20
  1056. package/utils/hiHelpers.js +0 -195
  1057. package/utils/keyboardFocus.js +0 -75
  1058. package/utils/manageAriaHidden.js +0 -49
  1059. package/utils/withWidth.js +0 -214
@@ -1,1028 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.SORTED_COLUMN_ERROR_MESSAGE = exports.MANDATORY_COLUMN_ERROR_MESSAGE = exports.styles = undefined;
7
-
8
- var _toConsumableArray2 = require('babel-runtime/helpers/toConsumableArray');
9
-
10
- var _toConsumableArray3 = _interopRequireDefault(_toConsumableArray2);
11
-
12
- var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of');
13
-
14
- var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
15
-
16
- var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
17
-
18
- var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
19
-
20
- var _createClass2 = require('babel-runtime/helpers/createClass');
21
-
22
- var _createClass3 = _interopRequireDefault(_createClass2);
23
-
24
- var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
25
-
26
- var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
27
-
28
- var _inherits2 = require('babel-runtime/helpers/inherits');
29
-
30
- var _inherits3 = _interopRequireDefault(_inherits2);
31
-
32
- var _react = require('react');
33
-
34
- var _react2 = _interopRequireDefault(_react);
35
-
36
- var _propTypes = require('prop-types');
37
-
38
- var _propTypes2 = _interopRequireDefault(_propTypes);
39
-
40
- var _Table = require('material-ui/Table');
41
-
42
- var _Table2 = _interopRequireDefault(_Table);
43
-
44
- var _ArrowUp = require('mdi-material-ui/ArrowUp');
45
-
46
- var _ArrowUp2 = _interopRequireDefault(_ArrowUp);
47
-
48
- var _reactProptypeConditionalRequire = require('react-proptype-conditional-require');
49
-
50
- var _reactProptypeConditionalRequire2 = _interopRequireDefault(_reactProptypeConditionalRequire);
51
-
52
- var _HiButton = require('../HiButton');
53
-
54
- var _HiButton2 = _interopRequireDefault(_HiButton);
55
-
56
- var _styles = require('../styles');
57
-
58
- var _HiTableHead = require('./HiTableHead');
59
-
60
- var _HiTableHead2 = _interopRequireDefault(_HiTableHead);
61
-
62
- var _HiTableBody = require('./HiTableBody');
63
-
64
- var _HiTableBody2 = _interopRequireDefault(_HiTableBody);
65
-
66
- var _HiTableFooterScroll = require('./HiTableFooterScroll');
67
-
68
- var _HiTableFooterScroll2 = _interopRequireDefault(_HiTableFooterScroll);
69
-
70
- var _constants = require('./constants');
71
-
72
- var cst = _interopRequireWildcard(_constants);
73
-
74
- var _HiTableContextMenu = require('./HiTableContextMenu');
75
-
76
- var _HiTableContextMenu2 = _interopRequireDefault(_HiTableContextMenu);
77
-
78
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
79
-
80
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
81
-
82
- var styles = exports.styles = function styles(theme) {
83
- return {
84
- root: {
85
- position: 'relative',
86
- backgroundColor: theme.palette.background3
87
- },
88
- tableWrapper: {
89
- overflowX: 'auto',
90
- overflowY: 'hidden'
91
- },
92
- filter: {
93
- position: 'relative',
94
- top: 2,
95
- left: 2,
96
- cursor: 'pointer'
97
- },
98
- table: {
99
- position: 'relative',
100
- width: '100%',
101
- overflow: 'hidden',
102
- borderCollapse: 'collapse',
103
- backgroundColor: theme.palette.background3,
104
- zIndex: 10
105
- },
106
- backToTopButtonContainer: {
107
- position: 'absolute',
108
- width: '100%',
109
- textAlign: 'center',
110
- height: 48,
111
- top: -99999
112
- },
113
- backToTopButton: {
114
- zIndex: 11
115
- },
116
- backToTopButtonArrow: {
117
- height: 18,
118
- width: 18,
119
- position: 'relative',
120
- top: -2,
121
- margin: 2
122
- }
123
- };
124
- };
125
-
126
- var MANDATORY_COLUMN_ERROR_MESSAGE = exports.MANDATORY_COLUMN_ERROR_MESSAGE = 'Vous devez saisir la propriété "mandatoryColumnId" pour les tableaux "orderable"';
127
- var SORTED_COLUMN_ERROR_MESSAGE = exports.SORTED_COLUMN_ERROR_MESSAGE = 'Vous devez saisir la propriété "sortedColumnId" pour les tableaux "sortable"';
128
-
129
- /**
130
- * Display a list of elements in a table
131
- * The click on FilterVariant opens a menu that allows the user
132
- * to filter by value or to order by a specific column
133
- *
134
- * Renderer behaviors:
135
- * - Widths:
136
- * - all cells types have default width size (px) for each kind of view (L/M/S).
137
- * - if view isn't set we use the largest one (large).
138
- * - cell width can be overriden by column's props.
139
- * - if there is not enough space to render all cells,
140
- * we use horizontal scroll and cells width are fixed
141
- * - if there is enough space, no scroll and only the first cell (column),
142
- * which is not explicitly set as unfixed (fixedWidth = false),
143
- * has not fixed width and may enlarge his width to fit available space.
144
- *
145
- * - Fixed Header:
146
- * - header rows should be fixed and always be visible on body scroll.
147
- * - vertical scrollbar should be hidden
148
- * - if nbRows * cellHeight > tableHeight,
149
- * we virtually enlarge the table then crop arbitrary width to hide the scrollbar.
150
- * as each browsers may have different scrollbar widths,
151
- * it may trouble column header alignment.
152
- */
153
-
154
- var _ref = _react2.default.createElement('div', null);
155
-
156
- var _ref2 = _react2.default.createElement('div', null);
157
-
158
- var _ref3 = _react2.default.createElement('div', null);
159
-
160
- var _ref4 = _react2.default.createElement('div', null);
161
-
162
- var _ref5 = _react2.default.createElement('div', null);
163
-
164
- var _ref6 = _react2.default.createElement('div', null);
165
-
166
- var _ref7 = _react2.default.createElement('div', null);
167
-
168
- var _ref8 = _react2.default.createElement('div', null);
169
-
170
- var HiTable = function (_React$Component) {
171
- (0, _inherits3.default)(HiTable, _React$Component);
172
-
173
- function HiTable(props) {
174
- (0, _classCallCheck3.default)(this, HiTable);
175
-
176
- var _this = (0, _possibleConstructorReturn3.default)(this, (HiTable.__proto__ || (0, _getPrototypeOf2.default)(HiTable)).call(this, props));
177
-
178
- _this.wrapperDiv = _ref;
179
- _this.wrapperWidth = 0;
180
- _this.tHead = _ref2;
181
- _this.tHeadLeftPadding = _ref3;
182
- _this.tHeadRightPadding = _ref4;
183
- _this.tHeadFirst = _ref5;
184
- _this.tBody = _ref6;
185
- _this.tBodyScrollbarWidth = 0;
186
- _this.tBodyLeftPaddingElements = [];
187
- _this.tBodyRightPaddingElements = [];
188
- _this.tBodyFirstElements = [];
189
- _this.tFoot = _ref7;
190
- _this.tFootCenteredDiv = _ref8;
191
- _this.backToTopButton = null;
192
- _this.liveDataSpan = null;
193
- _this.scrollTop = 0;
194
- _this.scrollLeft = 0;
195
- _this.groupByRowsPositions = [];
196
-
197
- _this.updateFloatingBodyElementRefs = function () {
198
- _this.tBodyScrollbarWidth = _this.tBody.offsetWidth - _this.tBody.clientWidth;
199
-
200
- if (_this.tHead && _this.tBodyScrollbarWidth > 0) {
201
- _this.tHead.style.width = 'calc(100% - ' + _this.tBodyScrollbarWidth + 'px)';
202
- }
203
-
204
- _this.tBodyLeftPaddingElements = _this.tBody.querySelectorAll('tr td:nth-child(1), .floating-parent-row-label');
205
- _this.tBodyRightPaddingElements = _this.tBody.querySelectorAll('tr td:nth-last-child(1), .floating-parent-row-indicator');
206
-
207
- _this.tBodyFirstElements = _this.tBody.querySelectorAll('tr td:nth-child(2)');
208
- };
209
-
210
- _this.addNewRowRefs = function () {
211
- // delayed refs getting to let time at new rows to build up
212
- setTimeout(function () {
213
- _this.updateFloatingBodyElementRefs();
214
- _this.placeHorizontalFloatingElement();
215
- }, 10);
216
- };
217
-
218
- _this.state = {
219
- dateUpdate: Date.now(),
220
- isScrollToBottom: false,
221
- groupByIds: {}
222
- };
223
-
224
- // create associative array (object) with sticky row key & its values
225
- // => used for sticky row badges
226
- if (props.groupBy) {
227
- props.dataSource.map(function (row) {
228
- var value = row.datas[props.groupBy].value;
229
- var date = new Date(value);
230
-
231
- if (date instanceof Date && isFinite(date)) {
232
- value = value.substr(0, 10);
233
- }
234
- if (!_this.state.groupByIds.hasOwnProperty(value)) {
235
- _this.state.groupByIds[value] = [];
236
- }
237
- _this.state.groupByIds[value].push(row.datas);
238
- });
239
- }
240
-
241
- // Orderable
242
- _this.openOrderColumnsMenu = _this.openOrderColumnsMenu.bind(_this);
243
- _this.closeOrderColumnsMenu = _this.closeOrderColumnsMenu.bind(_this);
244
-
245
- // Selectable
246
- _this.toggleItem = _this.toggleItem.bind(_this);
247
- _this.toggleAll = _this.toggleAll.bind(_this);
248
- _this.selectAll = _this.selectAll.bind(_this);
249
- _this.deselectAll = _this.deselectAll.bind(_this);
250
-
251
- // Manage scrolling
252
- _this.handleHorizontalScroll = _this.handleHorizontalScroll.bind(_this);
253
- _this.handleVerticalScroll = _this.handleVerticalScroll.bind(_this);
254
- _this.placeHorizontalFloatingElement = _this.placeHorizontalFloatingElement.bind(_this);
255
- _this.scrollToTop = _this.scrollToTop.bind(_this);
256
-
257
- _this.isScrollToBottom = _this.isScrollToBottom.bind(_this);
258
- _this.handleRequestLiveDatas = _this.handleRequestLiveDatas.bind(_this);
259
- _this.handleNextStickyRow = _this.handleNextStickyRow.bind(_this);
260
- _this.handleStickyRowPositions = _this.handleStickyRowPositions.bind(_this);
261
- return _this;
262
- }
263
-
264
- /**
265
- * DOM references
266
- * use to replace element on horizontal & vertical scroll
267
- */
268
-
269
-
270
- (0, _createClass3.default)(HiTable, [{
271
- key: 'componentDidMount',
272
-
273
-
274
- /** Lifecycle methods */
275
-
276
- value: function componentDidMount() {
277
- this.wrapperScrollOffset = this.wrapperDiv.scrollWidth - this.wrapperDiv.offsetWidth;
278
-
279
- // Set DOM references
280
- this.tHead = this.wrapperDiv.querySelector('table thead');
281
- this.tHeadLeftPadding = this.tHead.querySelector('tr th:nth-child(1)');
282
- this.tHeadRightPadding = this.tHead.querySelector('tr th:nth-last-child(1)');
283
- this.tHeadFirst = this.tHead.querySelector('tr th:nth-child(2)');
284
- this.tBody = this.wrapperDiv.querySelector('table tbody');
285
- this.tFoot = this.wrapperDiv.querySelector('table tfoot');
286
- this.tFootCenteredDiv = this.wrapperDiv.querySelector('table tfoot tr td div');
287
- this.backToTopButton = this.wrapperDiv.querySelector('.back-to-top-button');
288
-
289
- this.updateFloatingBodyElementRefs();
290
-
291
- // Detect if root has horizontal scroll bar
292
- if (this.wrapperDiv.scrollWidth > this.wrapperDiv.offsetWidth) {
293
- // adapt first column to fixed width
294
- if (this.tHeadFirst && this.tHeadFirst.style) {
295
- this.tHeadFirst.style.width = 'auto';
296
- }
297
- // fixed footer width
298
- if (this.tFootCenteredDiv && this.tFootCenteredDiv.style) {
299
- this.tFootCenteredDiv.style.width = Math.round(this.wrapperDiv.offsetWidth / 2) + 'px';
300
- this.tFootCenteredDiv.style.position = 'absolute';
301
- this.tFootCenteredDiv.style.bottom = '0px';
302
- }
303
- }
304
-
305
- this.updateStickyRowsPosition();
306
-
307
- this.placeHorizontalFloatingElement();
308
- }
309
- }, {
310
- key: 'componentDidUpdate',
311
- value: function componentDidUpdate(prevProps, prevState, prevContext) {
312
- var _this2 = this;
313
-
314
- this.wrapperScrollOffset = this.wrapperDiv.scrollWidth - this.wrapperDiv.offsetWidth;
315
-
316
- // If orderedColumns has change, possibly the sticky cells has changed too
317
- if (this.props.orderedColumns[0].colId !== prevProps.orderedColumns[0].colId) {
318
- this.tHeadFirst = this.tHead.querySelector('tr th:nth-child(2)');
319
- this.tBodyFirstElements = this.wrapperDiv.querySelectorAll('table tbody tr td:nth-child(2)');
320
- }
321
-
322
- // If there is new rows, update tbody first element list and left padding cells
323
- if (this.props.dataSource.length > prevProps.dataSource.length) {
324
- this.updateFloatingBodyElementRefs();
325
- }
326
-
327
- if (this.props.countLiveDatas > 0) {
328
- this.liveDataSpan = this.tHead.querySelector('tr:nth-child(2) th span');
329
- this.backToTopButton.style.top = '-99999px';
330
- }
331
-
332
- if (prevProps.countLiveDatas > this.props.countLiveDatas) {
333
- this.setState({
334
- dateUpdate: Date.now()
335
- });
336
- }
337
-
338
- // Only if needed
339
- if (this.props.dataSource.length > prevProps.dataSource.length || this.props.dense !== prevProps.dense || this.props.sortedColumnId !== prevProps.sortedColumnId || this.props.sortDirection !== prevProps.sortDirection) {
340
- this.updateStickyRowsPosition();
341
- if (this.props.dataSource.length > prevProps.dataSource.length) {
342
- this.handleStickyRowPositions();
343
- }
344
- }
345
- if (this.props.dataSource.length > prevProps.dataSource.length && this.props.groupBy) {
346
- // create associative array (object) with sticky row key & its values
347
- // => used for sticky row badges
348
- var groupByIds = {};
349
- this.props.dataSource.map(function (row) {
350
- var value = row.datas[_this2.props.groupBy].value;
351
- var date = new Date(value);
352
-
353
- if (date instanceof Date && isFinite(date)) {
354
- value = value.substr(0, 10);
355
- }
356
- if (!groupByIds.hasOwnProperty(value)) {
357
- groupByIds[value] = [];
358
- }
359
- groupByIds[value].push(row.datas);
360
- });
361
- this.setState({ groupByIds: groupByIds });
362
- }
363
-
364
- this.isScrollToBottom(this.scrollTop === this.tBody.scrollHeight - this.tBody.offsetHeight);
365
-
366
- this.placeHorizontalFloatingElement();
367
- }
368
-
369
- /** END Lifecycle methods */
370
-
371
- }, {
372
- key: 'updateStickyRowsPosition',
373
- value: function updateStickyRowsPosition() {
374
- var _this3 = this;
375
-
376
- var rowHeight = this.props.dense ? cst.CELL_HEIGHT_DENSE : cst.CELL_HEIGHT;
377
- this.groupByRowsPositions = [];
378
- // Initialize new stickyRows position
379
- var tableBody = document.getElementById(this.props.tabId + '-body');
380
- var stickyRows = tableBody.getElementsByClassName('stickyGroupBy');
381
- if (stickyRows.length > 0) {
382
- Array.prototype.filter.call(stickyRows, function (stickyRow) {
383
- _this3.groupByRowsPositions.push(stickyRow.nextSibling.nextSibling.offsetTop - rowHeight);
384
- });
385
- }
386
- }
387
- }, {
388
- key: 'isScrollToBottom',
389
- value: function isScrollToBottom(value) {
390
- if (this.state.isScrollToBottom !== value) {
391
- this.setState({
392
- isScrollToBottom: value
393
- });
394
- }
395
- }
396
-
397
- /**
398
- * Ajoute / Supprime l'id de l'item du selectedIdList
399
- * @param item
400
- */
401
-
402
- }, {
403
- key: 'toggleItem',
404
- value: function toggleItem(item) {
405
- if (this.props.selectedIdList.includes(item.rowId)) {
406
- this.props.onSelect(this.props.selectedIdList.filter(function (itemId) {
407
- return itemId !== item.rowId;
408
- }));
409
- } else {
410
- this.props.onSelect([].concat((0, _toConsumableArray3.default)(this.props.selectedIdList), [item.rowId]));
411
- }
412
- }
413
-
414
- /**
415
- * Sélectionne / Déselectionne tous les éléments en fonction de l'état de la liste
416
- */
417
-
418
- }, {
419
- key: 'toggleAll',
420
- value: function toggleAll() {
421
- if (this.props.selectedIdList.length === this.props.dataSource.length) {
422
- this.deselectAll();
423
- } else {
424
- this.selectAll();
425
- }
426
- }
427
-
428
- /**
429
- * Sélectionne tous les items
430
- */
431
-
432
- }, {
433
- key: 'selectAll',
434
- value: function selectAll() {
435
- this.props.onSelect(this.props.dataSource.map(function (item) {
436
- return item.rowId;
437
- }));
438
- }
439
-
440
- /**
441
- * Désélectionne tous les items
442
- */
443
-
444
- }, {
445
- key: 'deselectAll',
446
- value: function deselectAll() {
447
- this.props.onSelect([]);
448
- }
449
-
450
- /**
451
- * Handle horizontal scroll (wrapperDiv)
452
- * - replace each first cells body & header & add right shadows
453
- */
454
-
455
- }, {
456
- key: 'handleHorizontalScroll',
457
- value: function handleHorizontalScroll(event) {
458
- // cancel if scroll is from tbody OR it didn't change
459
- if (event.target.nodeName === 'TBODY' || this.scrollLeft === event.target.scrollLeft) {
460
- return;
461
- }
462
-
463
- this.scrollLeft = event.target.scrollLeft;
464
-
465
- // Replace live datas notification
466
- this.placeHorizontalFloatingElement();
467
- }
468
-
469
- /**
470
- * Handle vertical scroll (tbody)
471
- * - add bottom shadow
472
- * - place back to top button
473
- * - request next datas if reach bottom
474
- */
475
-
476
- }, {
477
- key: 'handleVerticalScroll',
478
- value: function handleVerticalScroll(event) {
479
- // cancel if scroll is not from tbody OR it didn't change
480
- if (event.target.nodeName !== 'TBODY' || this.scrollTop === event.target.scrollTop) return;
481
-
482
- var scrollingUp = this.scrollTop > event.target.scrollTop;
483
-
484
- this.scrollTop = event.target.scrollTop;
485
-
486
- // Add bottom shadow to header row
487
- var shadowBottom = '0px 0px 2px 0px rgba(128, 128, 128, 0.32)';
488
- this.tHead.style['box-shadow'] = this.scrollTop > 0 ? shadowBottom : 'none';
489
- var rowHeight = this.props.dense ? cst.CELL_HEIGHT_DENSE : cst.CELL_HEIGHT;
490
-
491
- // Add back to top button when scrolling up from constant defined scroll point
492
- // if there not live data notification
493
- if (this.props.countLiveDatas === 0) {
494
- if (scrollingUp && this.scrollTop >= cst.NB_ROWS_BACK_TO_TOP * rowHeight) {
495
- this.backToTopButton.style.top = rowHeight * 1.5 + ' px';
496
- } else {
497
- this.backToTopButton.style.top = -99999 + 'px';
498
- }
499
- }
500
-
501
- this.handleStickyRowPositions();
502
-
503
- this.isScrollToBottom(this.scrollTop === event.target.scrollHeight - this.tBody.offsetHeight);
504
- }
505
- }, {
506
- key: 'handleStickyRowPositions',
507
- value: function handleStickyRowPositions() {
508
- var _this4 = this;
509
-
510
- var tableBody = document.getElementById(this.props.tabId + '-body');
511
- var stickyRows = tableBody.getElementsByClassName('stickyGroupBy');
512
- var rowHeight = this.props.dense ? cst.CELL_HEIGHT_DENSE : cst.CELL_HEIGHT;
513
- if (stickyRows.length > 0) {
514
- Array.prototype.filter.call(stickyRows, function (stickyRow, index) {
515
- var fakeTr = stickyRow.nextSibling;
516
- if (tableBody.scrollTop > _this4.groupByRowsPositions[index]) {
517
- // Calcul de la position du 'pinned' item
518
- // positionnement juste en dessous du header
519
- if (typeof stickyRows[index + 1] === 'undefined' || tableBody.scrollTop < stickyRows[index + 1].offsetTop) {
520
- // Si la prochaine ligne est aussi un 'pinned' item,
521
- // il pousse le précédent vers le haut
522
- if (typeof _this4.groupByRowsPositions[index + 1] !== 'undefined' && _this4.groupByRowsPositions[index + 1] - tableBody.scrollTop < rowHeight - 10) {
523
- stickyRow.style.top = tableBody.scrollTop + _this4.groupByRowsPositions[index + 1] - tableBody.scrollTop - rowHeight + '\n px';
524
- } else {
525
- stickyRow.style.top = tableBody.scrollTop + 'px';
526
- }
527
-
528
- if (stickyRow.style.position !== 'absolute') {
529
- // Repositionnement des éléments dans une row en position absolute
530
- stickyRow.style.position = 'absolute';
531
- fakeTr.style.display = 'inline-block';
532
- stickyRow.style.height = _this4.props.dense ? cst.CELL_HEIGHT_DENSE - 8 + 'px' : cst.CELL_HEIGHT - 8 + 'px';
533
- stickyRow.querySelector('button').style.maxHeight = _this4.props.dense ? cst.CELL_HEIGHT_DENSE - 16 + 'px' : cst.CELL_HEIGHT - 16 + 'px';
534
- stickyRow.querySelector('button').style.minHeight = _this4.props.dense ? cst.CELL_HEIGHT_DENSE - 16 + 'px' : cst.CELL_HEIGHT - 16 + 'px';
535
- stickyRow.querySelector('button').style.top = '-3px';
536
- stickyRow.querySelector('#stickyRowContent').style.top = !_this4.props.dense ? '4px' : '-3px';
537
- stickyRow.querySelector('td').style.height = _this4.props.dense ? cst.CELL_HEIGHT_DENSE - 8 + 'px' : cst.CELL_HEIGHT - 8 + 'px';
538
- if (_this4.props.dense) {
539
- stickyRow.querySelector('button').style.top = '0px';
540
- stickyRow.querySelector('button span').style.position = 'relative';
541
- stickyRow.querySelector('button span').style.top = '-4px';
542
- }
543
- }
544
- }
545
- } else if (stickyRow.style.position !== 'relative') {
546
- // Repositionnement normal
547
- stickyRow.style.position = 'relative';
548
- stickyRow.style.top = '0px';
549
- fakeTr.style.display = 'none';
550
- stickyRow.style.height = _this4.props.dense ? cst.CELL_HEIGHT_DENSE + 'px' : cst.CELL_HEIGHT + 'px';
551
- stickyRow.querySelector('#sticky-badge').style.top = '0px';
552
- stickyRow.querySelector('#stickyRowContent').style.top = '2px';
553
- stickyRow.querySelector('td').style.height = _this4.props.dense ? cst.CELL_HEIGHT_DENSE + 'px' : cst.CELL_HEIGHT + 'px';
554
- stickyRow.querySelector('button').style.maxHeight = _this4.props.dense ? cst.CELL_HEIGHT_DENSE - 2 + 'px' : cst.CELL_HEIGHT - 8 + 'px';
555
- stickyRow.querySelector('button').style.minHeight = _this4.props.dense ? cst.CELL_HEIGHT_DENSE - 2 + 'px' : cst.CELL_HEIGHT - 8 + 'px';
556
- if (_this4.props.dense) {
557
- stickyRow.querySelector('button span').style.top = '0px';
558
- }
559
- }
560
- });
561
- }
562
- }
563
-
564
- /**
565
- * Some element must be replace "manually"
566
- */
567
-
568
- }, {
569
- key: 'placeHorizontalFloatingElement',
570
- value: function placeHorizontalFloatingElement() {
571
- var _this5 = this;
572
-
573
- // live datas notification
574
- if (this.liveDataSpan) {
575
- this.liveDataSpan.style.left = this.wrapperDiv.clientWidth / 2 - 100 + this.scrollLeft + 'px';
576
- }
577
-
578
- // Replace left padding cells
579
- [].concat((0, _toConsumableArray3.default)(this.tBodyLeftPaddingElements), [this.tHeadLeftPadding]).forEach(function (element) {
580
- element.style.left = _this5.scrollLeft + 'px';
581
- });
582
-
583
- // TODO - FIX
584
- // Les éléments de droite sont décalés de 22px lorsque de nouvelles lignes sont
585
- // visible (children ou details)
586
-
587
- // Replace right padding cells
588
- [].concat((0, _toConsumableArray3.default)(this.tBodyRightPaddingElements), [this.tHeadRightPadding]).forEach(function (element) {
589
- element.style.right = Math.max(0, _this5.wrapperScrollOffset - _this5.scrollLeft - _this5.tBodyScrollbarWidth) + 'px';
590
- });
591
-
592
- // Replace first cells & add right shadows
593
- if (this.props.sticky) {
594
- var shadowRight = '1px 0px 0px 0px rgba(128, 128, 128, 0.32)';
595
- [].concat((0, _toConsumableArray3.default)(this.tBodyFirstElements), [this.tHeadFirst]).forEach(function (element) {
596
- element.style.left = _this5.scrollLeft + 'px';
597
- element.style['box-shadow'] = _this5.scrollLeft > 0 ? shadowRight : 'none';
598
- });
599
- }
600
-
601
- // Replace centered elements (elements width should be 50% of wrapper)
602
- if (this.tFootCenteredDiv) {
603
- this.tFootCenteredDiv.style.left = Math.round(this.wrapperDiv.offsetWidth / 4) + this.scrollLeft + 'px';
604
- }
605
-
606
- // Replace stickyRowContent
607
- var tableBody = document.getElementById(this.props.tabId + '-body');
608
- var stickyRowContentDiv = tableBody.getElementsByClassName('stickyRowContent');
609
- if (stickyRowContentDiv.length > 0) {
610
- Array.prototype.filter.call(stickyRowContentDiv, function (div) {
611
- div.style.left = _this5.wrapperDiv.scrollLeft + (_this5.props.selectable ? 25 : 0) + 'px';
612
- });
613
- }
614
- }
615
- }, {
616
- key: 'handleRequestLiveDatas',
617
- value: function handleRequestLiveDatas() {
618
- this.scrollToTop();
619
- this.props.requestLiveDatas();
620
- }
621
-
622
- /**
623
- * Scroll back to table top
624
- */
625
-
626
- }, {
627
- key: 'scrollToTop',
628
- value: function scrollToTop() {
629
- // Hide back to top button
630
- this.backToTopButton['style'].top = -99999 + 'px';
631
-
632
- // Set scroll top to 0
633
- this.tBody.scrollTop = 0;
634
- this.scrollTop = 0;
635
- }
636
- }, {
637
- key: 'openOrderColumnsMenu',
638
- value: function openOrderColumnsMenu(event) {
639
- this.setState({
640
- orderColumnsAnchor: event.currentTarget,
641
- orderColumnsMenuOpen: true
642
- });
643
- }
644
- }, {
645
- key: 'closeOrderColumnsMenu',
646
- value: function closeOrderColumnsMenu() {
647
- this.setState({
648
- orderColumnsAnchor: null,
649
- orderColumnsMenuOpen: false
650
- });
651
- }
652
-
653
- /**
654
- * This function is pass to table body to be advised when new rows are dynamically added (ex detail rows)
655
- * we can then update our list of floating body elements refs
656
- **/
657
-
658
- }, {
659
- key: 'handleNextStickyRow',
660
-
661
-
662
- /**
663
- * Scroll jusqu'au prochain stickRow
664
- *
665
- * @param stickyRowIndex
666
- */
667
- value: function handleNextStickyRow(stickyRowIndex) {
668
- if (this.groupByRowsPositions.length - 1 > stickyRowIndex) {
669
- var tableBody = document.getElementById(this.props.tabId + '-body');
670
- tableBody.scrollTop = this.groupByRowsPositions[stickyRowIndex + 1];
671
- }
672
- }
673
- }, {
674
- key: 'render',
675
- value: function render() {
676
- var _this6 = this;
677
-
678
- var _props = this.props,
679
- classes = _props.classes,
680
- tabId = _props.tabId,
681
- columns = _props.columns,
682
- orderedColumns = _props.orderedColumns,
683
- dataSource = _props.dataSource,
684
- orderable = _props.orderable,
685
- onColumnsOrderUpdate = _props.onColumnsOrderUpdate,
686
- mandatoryColumnId = _props.mandatoryColumnId,
687
- selectable = _props.selectable,
688
- selectedIdList = _props.selectedIdList,
689
- onRowClick = _props.onRowClick,
690
- sortable = _props.sortable,
691
- sortedColumnId = _props.sortedColumnId,
692
- sortDirection = _props.sortDirection,
693
- onSort = _props.onSort,
694
- filterable = _props.filterable,
695
- onFilterChange = _props.onFilterChange,
696
- infiniteScroll = _props.infiniteScroll,
697
- hasNextDatas = _props.hasNextDatas,
698
- requestNextDatas = _props.requestNextDatas,
699
- countLiveDatas = _props.countLiveDatas,
700
- dateLocale = _props.dateLocale,
701
- numberLocale = _props.numberLocale,
702
- dense = _props.dense,
703
- height = _props.height,
704
- sticky = _props.sticky,
705
- translations = _props.translations,
706
- view = _props.view,
707
- groupBy = _props.groupBy,
708
- lookupColumns = _props.lookupColumns,
709
- loading = _props.loading,
710
- fixedColumnWidth = _props.fixedColumnWidth;
711
- var _state = this.state,
712
- dateUpdate = _state.dateUpdate,
713
- isScrollToBottom = _state.isScrollToBottom,
714
- groupByIds = _state.groupByIds;
715
-
716
-
717
- var headerHeight = dense ? cst.CELL_HEADER_HEIGHT_DENSE : cst.CELL_HEADER_HEIGHT;
718
-
719
- return _react2.default.createElement(
720
- 'div',
721
- { className: classes.root },
722
- _react2.default.createElement(
723
- 'div',
724
- {
725
- id: tabId,
726
- className: classes.tableWrapper,
727
- ref: function ref(div) {
728
- return _this6.wrapperDiv = div;
729
- },
730
- onScroll: this.handleHorizontalScroll
731
- },
732
- _react2.default.createElement(
733
- _Table2.default,
734
- { className: classes.table, style: { height: height } },
735
- _react2.default.createElement(_HiTableHead2.default, {
736
- columns: columns,
737
- orderedColumns: orderedColumns,
738
- dataSource: dataSource,
739
- selectable: selectable,
740
- selectedIdList: selectedIdList,
741
- onSelect: this.toggleAll,
742
- sortable: sortable,
743
- sortedColumnId: sortedColumnId,
744
- sortDirection: sortDirection,
745
- onSort: onSort,
746
- filterable: filterable,
747
- onFilterChange: onFilterChange,
748
- orderable: orderable,
749
- onColumnsOrderUpdate: onColumnsOrderUpdate,
750
- mandatoryColumnId: mandatoryColumnId,
751
- onRequestLiveDatas: this.handleRequestLiveDatas,
752
- countLiveDatas: countLiveDatas,
753
- dateLocale: dateLocale,
754
- numberLocale: numberLocale,
755
- dense: dense,
756
- height: headerHeight,
757
- sticky: sticky,
758
- view: view,
759
- translations: translations,
760
- lookupColumns: lookupColumns,
761
- fixedColumnWidth: fixedColumnWidth
762
- }),
763
- _react2.default.createElement(_HiTableBody2.default, {
764
- tabId: tabId,
765
- columns: columns,
766
- orderedColumns: orderedColumns,
767
- dataSource: dataSource,
768
- selectable: selectable,
769
- selectedIdList: selectedIdList,
770
- sortedColumnId: sortedColumnId,
771
- onSelect: this.toggleItem,
772
- dateUpdate: dateUpdate,
773
- dateLocale: dateLocale,
774
- numberLocale: numberLocale,
775
- dense: dense,
776
- height: height - headerHeight,
777
- sticky: sticky,
778
- view: view,
779
- onRowClick: onRowClick,
780
- onScroll: this.handleVerticalScroll,
781
- addNewRowRefs: this.addNewRowRefs,
782
- translations: translations,
783
- groupBy: groupBy,
784
- onClickNext: this.handleNextStickyRow,
785
- groupByIds: groupByIds,
786
- lookupColumns: lookupColumns,
787
- loading: loading,
788
- fixedColumnWidth: fixedColumnWidth
789
- }),
790
- infiniteScroll && _react2.default.createElement(_HiTableFooterScroll2.default, {
791
- tabId: tabId,
792
- hasNextDatas: hasNextDatas,
793
- requestNextDatas: requestNextDatas,
794
- maxAutoRequest: 3,
795
- isScrollToBottom: isScrollToBottom,
796
- translations: translations
797
- })
798
- ),
799
- _react2.default.createElement(_HiTableContextMenu2.default, {
800
- tabId: tabId,
801
- onSearch: this.props.onSearch,
802
- onRedirect: this.props.onRedirect
803
- }),
804
- _react2.default.createElement(
805
- 'div',
806
- { className: 'back-to-top-button ' + classes.backToTopButtonContainer },
807
- _react2.default.createElement(
808
- _HiButton2.default,
809
- {
810
- variant: 'raised',
811
- color: 'primary',
812
- className: classes.backToTopButton,
813
- onClick: function onClick() {
814
- return _this6.scrollToTop();
815
- }
816
- },
817
- _react2.default.createElement(_ArrowUp2.default, { className: classes.backToTopButtonArrow }),
818
- translations.back_to_top,
819
- _react2.default.createElement(_ArrowUp2.default, { className: classes.backToTopButtonArrow })
820
- )
821
- )
822
- )
823
- );
824
- }
825
- }]);
826
- return HiTable;
827
- }(_react2.default.Component);
828
-
829
- HiTable.defaultProps = {
830
- orderable: false,
831
- selectable: false,
832
- sortable: true,
833
- sortDirection: 'asc',
834
- filterable: true,
835
- infiniteScroll: false,
836
- hasNextDatas: false,
837
- countLiveDatas: 0,
838
- dateLocale: 'en-EN',
839
- numberLocale: 'en-EN',
840
- dense: false,
841
- height: 450,
842
- sticky: true,
843
- translations: {
844
- load_more: 'Load More',
845
- back_to_top: 'Back to top',
846
- get_the_n_new_items: 'See %s new items',
847
- choose_and_organize_columns: 'Choose & organize columns',
848
- search: 'Search',
849
- time: 'Time',
850
- stickyRow: {
851
- button: {
852
- next: 'Next day'
853
- }
854
- }
855
- },
856
- view: 'l',
857
- lookupColumns: [],
858
- loading: false,
859
- fixedColumnWidth: true
860
- };
861
- HiTable.propTypes = process.env.NODE_ENV !== "production" ? {
862
- /**
863
- * Useful to extend the style applied to components.
864
- */
865
- classes: _propTypes2.default.object,
866
- /**
867
- * Colonnes du tableau (label, largeur, données, ... )
868
- */
869
- columns: _propTypes2.default.object.isRequired,
870
- /**
871
- * Nombre de nouvelles données disponibles (live)
872
- */
873
- countLiveDatas: _propTypes2.default.number,
874
- /**
875
- * Tableau des données
876
- */
877
- dataSource: _propTypes2.default.array.isRequired,
878
- /**
879
- * Locale utilisé pour le format des dates
880
- */
881
- dateLocale: _propTypes2.default.string,
882
- /**
883
- * Densité d'affichage (joue sur la hauteur des lignes)
884
- */
885
- dense: _propTypes2.default.bool,
886
- /**
887
- * Active le filtre sur les colonnes filtrables
888
- */
889
- filterable: _propTypes2.default.bool,
890
- /**
891
- * Fixe la taille des colonnes selon le type de vue
892
- * Sinon les colonnes s'adaptent à l'espace disponible
893
- */
894
- fixedColumnWidth: _propTypes2.default.bool,
895
- /**
896
- * Id de la colonne par laquelle sont regroupé les éléments
897
- */
898
- groupBy: _propTypes2.default.string,
899
- /**
900
- * Ajoute le loader et le requestNextDatas en fin de tableau (si infiniteScroll activé)
901
- */
902
- hasNextDatas: _propTypes2.default.bool,
903
- /**
904
- * Hauteur du tableau (px)
905
- */
906
- height: _propTypes2.default.number,
907
- /**
908
- * Ajoute l'infinite scroll
909
- */
910
- infiniteScroll: _propTypes2.default.bool,
911
- /**
912
- * État du tableau en cours de chargement des données
913
- */
914
- loading: _propTypes2.default.bool,
915
- /**
916
- * Identifiant de la ou des colonnes sur la/lesquelles il y a une 'lookup' search
917
- */
918
- lookupColumns: _propTypes2.default.array,
919
- /**
920
- * Pour les tableaux "orderable" uniquement : Id de la colonne obligatoire,
921
- * elle sera toujours affichée dans le tableau et ne pourra pas être cachée.
922
- */
923
- mandatoryColumnId: (0, _reactProptypeConditionalRequire2.default)(_propTypes2.default.string, function (props) {
924
- return props.hasOwnProperty('orderable') && props.orderable === true;
925
- }, MANDATORY_COLUMN_ERROR_MESSAGE),
926
- /**
927
- * Locale utilisé pour le format des nombres
928
- */
929
- numberLocale: _propTypes2.default.string,
930
- /**
931
- * Fonction de callback qui prend en paramètre le tableau des colonnes mis à jour.
932
- */
933
- onColumnsOrderUpdate: _propTypes2.default.func,
934
- /**
935
- * Fonction de callback sur le filtre d'une colonne
936
- * Passe l'id de la colonne et la liste des id des éléments inclus
937
- */
938
- onFilterChange: _propTypes2.default.func,
939
- /**
940
- * Fonction de callback appelée au clic sur l'item redirection
941
- * du menu contextuel ouvert au clic droit
942
- *
943
- * @param {int} id
944
- */
945
- onRedirect: _propTypes2.default.func,
946
- /**
947
- * Fonction de callback au click sur une ligne
948
- * Passe l'element (row)
949
- */
950
- onRowClick: _propTypes2.default.func,
951
- /**
952
- * Fonction de callback appelée au clic sur les items de recherche
953
- * du menu contextuel ouvert au clic droit
954
- *
955
- * @param {string} searched field
956
- * @param {string} searched value
957
- * @param {string} search type (lookup, exclude)
958
- */
959
- onSearch: _propTypes2.default.func,
960
- /**
961
- * Fonction de callback sur la sélection d'une ligne
962
- * (ou sélection/déselection de tous dans le header)
963
- * Passe la liste des id des lignes sélectionnées (selectedIdList)
964
- */
965
- onSelect: _propTypes2.default.func,
966
- /**
967
- * Fonction de callback sur le tri d'une colonne
968
- * Passe l'id de la colonne et la direction du tri (ou false si tri par défaut)
969
- */
970
- onSort: _propTypes2.default.func,
971
- /**
972
- * L'utilisateur peut changer l'ordre des colonnes,
973
- * les afficher ou non, et changer la vue de chaque colonne (small, medium, large).
974
- */
975
- orderable: _propTypes2.default.bool,
976
- /**
977
- * Tableau des colonnes affichées (ordonnées, visibles/cachées, l/m/s)
978
- */
979
- orderedColumns: _propTypes2.default.array.isRequired,
980
- /**
981
- * Fonction de callback requérant l'affichage des nouvelles données (live)
982
- */
983
- requestLiveDatas: _propTypes2.default.func,
984
- /**
985
- * Fonction de callback requérant l'affichage des données suivantes
986
- */
987
- requestNextDatas: _propTypes2.default.func,
988
- /**
989
- * [v2 - à venir] Les lignes sont sélectionnables (affichage d'une checkbox)
990
- */
991
- selectable: _propTypes2.default.bool,
992
- /**
993
- * Liste des id des lignes sélectionnées
994
- */
995
- selectedIdList: _propTypes2.default.array,
996
- /**
997
- * Active le tri sur les colonnes
998
- */
999
- sortable: _propTypes2.default.bool,
1000
- /**
1001
- * Sens du tri
1002
- */
1003
- sortDirection: _propTypes2.default.oneOf(['asc', 'desc']),
1004
- /**
1005
- * Id de la colonne trié
1006
- */
1007
- sortedColumnId: (0, _reactProptypeConditionalRequire2.default)(_propTypes2.default.string, function (props) {
1008
- return props.hasOwnProperty('sortable') && props.sortable === true;
1009
- }, SORTED_COLUMN_ERROR_MESSAGE),
1010
- /**
1011
- * Fixe la première colonne
1012
- */
1013
- sticky: _propTypes2.default.bool,
1014
- /**
1015
- * Identifiant unique à spécifier si on utilise plusieurs composants HiTable
1016
- */
1017
- tabId: _propTypes2.default.string.isRequired,
1018
- /**
1019
- * Traduction des chaînes affichées
1020
- */
1021
- translations: _propTypes2.default.object,
1022
- /**
1023
- * Taille du tableau (L/M/S),
1024
- * définit l'espace entre les cellules et leurs tailles par default
1025
- */
1026
- view: _propTypes2.default.oneOf(['l', 'm', 's'])
1027
- } : {};
1028
- exports.default = (0, _styles.withStyles)(styles, { withTheme: true, name: 'HmuiHiTable' })(HiTable);