@hipay/hipay-material-ui 2.0.0-beta.55 → 2.0.0-beta.57

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. package/CHANGELOG.md +116 -0
  2. package/HiBreadcrumb/HiBreadcrumb.js +14 -4
  3. package/HiBreadcrumb/HiStep.js +4 -1
  4. package/HiBreadcrumb/HiStepContent.js +0 -1
  5. package/HiBreadcrumb/HiStepLabel.js +12 -4
  6. package/HiBreadcrumb/HiStepper.js +1 -1
  7. package/HiButton/HiButton.js +7 -1
  8. package/HiCell/CellIcon.js +4 -4
  9. package/HiCell/CellImage.js +13 -1
  10. package/HiCell/CellRate.js +6 -3
  11. package/HiCell/CellSentinel.js +7 -10
  12. package/HiCell/CellTextStyled.js +29 -1
  13. package/HiColoredLabel/HiColoredLabel.js +1 -1
  14. package/HiDatePicker/Caption.js +16 -10
  15. package/HiDatePicker/HiDatePicker.js +9 -3
  16. package/HiDatePicker/HiDateRangePicker.js +36 -22
  17. package/HiDatePicker/HiDateRangeSelector.js +75 -21
  18. package/HiDatePicker/NavBar.js +8 -1
  19. package/HiDatePicker/Overlays/CustomOverlayLayout.js +26 -17
  20. package/HiDatePicker/Overlays/CustomOverlayLayoutWithoutFooter.js +123 -0
  21. package/HiDatePicker/Overlays/MonthPickerOverlay.js +4 -4
  22. package/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +1 -0
  23. package/HiDatePicker/Overlays/Overlay.js +15 -8
  24. package/HiDatePicker/Overlays/Overlay.spec.js +1 -0
  25. package/HiDatePicker/Overlays/TimePickerOverlay.js +2 -2
  26. package/HiDatePicker/Overlays/TimePickerOverlay.spec.js +1 -0
  27. package/HiDatePicker/Overlays/YearPickerOverlay.js +4 -6
  28. package/HiDatePicker/Overlays/YearPickerOverlay.spec.js +1 -0
  29. package/HiDatePicker/hiLocaleUtils.js +144 -0
  30. package/HiDatePicker/stylesheet.js +33 -7
  31. package/HiDotsStepper/HiDot.js +108 -0
  32. package/HiDotsStepper/HiDotsStepper.js +121 -0
  33. package/HiExpansionPanel/HiExpansionPanel.js +1 -1
  34. package/HiForm/HiAddressField.js +176 -0
  35. package/HiForm/HiFormControl.js +2 -0
  36. package/HiForm/HiInput.js +3 -3
  37. package/HiForm/HiSlider.js +352 -0
  38. package/HiForm/HiUpload.js +204 -0
  39. package/HiForm/HiUploadField.js +182 -0
  40. package/HiForm/HiUploadInput.js +459 -0
  41. package/HiForm/index.js +16 -0
  42. package/HiMap/HiMap.js +345 -0
  43. package/HiMap/HiMapExpand.js +210 -0
  44. package/HiMap/index.js +23 -0
  45. package/HiNotice/HiKPI.js +238 -0
  46. package/HiNotice/HiKPINotice.js +96 -0
  47. package/HiNotice/index.js +23 -0
  48. package/HiPdfReader/HiPdfReader.js +269 -0
  49. package/HiPdfReader/index.js +15 -0
  50. package/HiPin/HiPin.js +1 -1
  51. package/HiRadio/HiRadio.js +74 -0
  52. package/HiRadio/index.js +15 -0
  53. package/HiSelect/HiSelect.js +73 -84
  54. package/HiSelect/HiSuggestSelect.js +35 -4
  55. package/HiSelect/SelectInput.js +9 -1
  56. package/HiSelectNew/HiNestedSelectContent.js +5 -1
  57. package/HiSelectNew/HiSelect.js +260 -179
  58. package/HiSelectNew/HiSelectContent.js +0 -8
  59. package/HiSelectNew/HiSelectInput.js +8 -9
  60. package/HiSelectableList/HiSelectableList.js +39 -4
  61. package/HiSelectableList/HiSelectableListItem.js +81 -38
  62. package/HiTable/HiCellBuilder.js +25 -12
  63. package/HiTable/HiTableHeader.js +16 -17
  64. package/HiTable/constants.js +3 -1
  65. package/README.md +248 -98
  66. package/es/HiBreadcrumb/HiBreadcrumb.js +14 -4
  67. package/es/HiBreadcrumb/HiStep.js +4 -1
  68. package/es/HiBreadcrumb/HiStepContent.js +0 -1
  69. package/es/HiBreadcrumb/HiStepLabel.js +13 -4
  70. package/es/HiBreadcrumb/HiStepper.js +1 -1
  71. package/es/HiButton/HiButton.js +7 -0
  72. package/es/HiCell/CellIcon.js +5 -5
  73. package/es/HiCell/CellImage.js +13 -1
  74. package/es/HiCell/CellRate.js +6 -3
  75. package/es/HiCell/CellSentinel.js +7 -10
  76. package/es/HiCell/CellTextStyled.js +28 -1
  77. package/es/HiColoredLabel/HiColoredLabel.js +1 -1
  78. package/es/HiDatePicker/Caption.js +14 -10
  79. package/es/HiDatePicker/HiDatePicker.js +8 -3
  80. package/es/HiDatePicker/HiDateRangePicker.js +40 -28
  81. package/es/HiDatePicker/HiDateRangeSelector.js +69 -21
  82. package/es/HiDatePicker/ListPicker.js +1 -1
  83. package/es/HiDatePicker/NavBar.js +7 -1
  84. package/es/HiDatePicker/Overlays/CustomOverlayLayout.js +30 -19
  85. package/es/HiDatePicker/Overlays/CustomOverlayLayoutWithoutFooter.js +106 -0
  86. package/es/HiDatePicker/Overlays/MonthPickerOverlay.js +5 -5
  87. package/es/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +1 -0
  88. package/es/HiDatePicker/Overlays/Overlay.js +16 -9
  89. package/es/HiDatePicker/Overlays/Overlay.spec.js +1 -0
  90. package/es/HiDatePicker/Overlays/TimePickerOverlay.js +2 -2
  91. package/es/HiDatePicker/Overlays/TimePickerOverlay.spec.js +1 -0
  92. package/es/HiDatePicker/Overlays/YearPickerOverlay.js +4 -6
  93. package/es/HiDatePicker/Overlays/YearPickerOverlay.spec.js +1 -0
  94. package/es/HiDatePicker/hiLocaleUtils.js +131 -0
  95. package/es/HiDatePicker/stylesheet.js +32 -7
  96. package/es/HiDotsStepper/HiDot.js +66 -0
  97. package/es/HiDotsStepper/HiDotsStepper.js +73 -0
  98. package/es/HiExpansionPanel/HiExpansionPanel.js +1 -1
  99. package/es/HiForm/HiAddressField.js +134 -0
  100. package/es/HiForm/HiFormControl.js +2 -0
  101. package/es/HiForm/HiInput.js +3 -3
  102. package/es/HiForm/HiSlider.js +302 -0
  103. package/es/HiForm/HiUpload.js +158 -0
  104. package/es/HiForm/HiUploadField.js +140 -0
  105. package/es/HiForm/HiUploadInput.js +411 -0
  106. package/es/HiForm/index.js +2 -0
  107. package/es/HiMap/HiMap.js +290 -0
  108. package/es/HiMap/HiMapExpand.js +162 -0
  109. package/es/HiMap/index.js +2 -0
  110. package/es/HiNotice/HiKPI.js +196 -0
  111. package/es/HiNotice/HiKPINotice.js +78 -0
  112. package/es/HiNotice/index.js +2 -0
  113. package/es/HiPdfReader/HiPdfReader.js +214 -0
  114. package/es/HiPdfReader/index.js +1 -0
  115. package/es/HiPin/HiPin.js +1 -1
  116. package/es/HiRadio/HiRadio.js +55 -0
  117. package/es/HiRadio/index.js +1 -0
  118. package/es/HiSelect/HiSelect.js +68 -78
  119. package/es/HiSelect/HiSuggestSelect.js +30 -4
  120. package/es/HiSelect/SelectInput.js +9 -1
  121. package/es/HiSelectNew/HiNestedSelectContent.js +5 -1
  122. package/es/HiSelectNew/HiSelect.js +246 -162
  123. package/es/HiSelectNew/HiSelectContent.js +0 -7
  124. package/es/HiSelectNew/HiSelectInput.js +8 -9
  125. package/es/HiSelectableList/HiSelectableList.js +34 -6
  126. package/es/HiSelectableList/HiSelectableListItem.js +92 -40
  127. package/es/HiTable/HiCellBuilder.js +130 -123
  128. package/es/HiTable/HiTableHeader.js +14 -12
  129. package/es/HiTable/constants.js +1 -0
  130. package/es/index.js +9 -1
  131. package/es/utils/helpers.js +1 -1
  132. package/index.es.js +9 -1
  133. package/index.js +66 -2
  134. package/package.json +5 -2
  135. package/umd/hipay-material-ui.development.js +44450 -40930
  136. package/umd/hipay-material-ui.production.min.js +2 -2
  137. package/utils/helpers.js +1 -1
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = exports.styles = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ var _styles = require("../styles");
15
+
16
+ var _Radio = _interopRequireDefault(require("@material-ui/core/Radio"));
17
+
18
+ // @inheritedComponent Radio
19
+ var styles = function styles(theme) {
20
+ return {
21
+ checked: {
22
+ color: theme.palette.neutral.main
23
+ },
24
+ disabled: {
25
+ color: theme.palette.action.disabled
26
+ }
27
+ };
28
+ };
29
+
30
+ exports.styles = styles;
31
+
32
+ var HiRadio = function HiRadio(_ref) {
33
+ var checked = _ref.checked,
34
+ classes = _ref.classes,
35
+ className = _ref.className,
36
+ color = _ref.color,
37
+ disabled = _ref.disabled,
38
+ label = _ref.label,
39
+ onChange = _ref.onChange,
40
+ value = _ref.value;
41
+ var hcolor = ['positive', 'negative', 'middle', 'neutral', 'inherit'].includes(color) ? 'default' : color;
42
+ return _react.default.createElement(_Radio.default, {
43
+ className: className,
44
+ classes: {
45
+ checked: classes.checked,
46
+ disabled: classes.disabled
47
+ },
48
+ checked: checked,
49
+ color: hcolor,
50
+ label: label,
51
+ onChange: onChange,
52
+ disabled: disabled,
53
+ value: value
54
+ });
55
+ };
56
+
57
+ HiRadio.propTypes = process.env.NODE_ENV !== "production" ? {
58
+ checked: _propTypes.default.bool,
59
+ classes: _propTypes.default.object,
60
+ className: _propTypes.default.string,
61
+ color: _propTypes.default.oneOf(['inherit', 'primary', 'secondary', 'positive', 'negative', 'middle', 'neutral']),
62
+ disabled: _propTypes.default.bool,
63
+ label: _propTypes.default.string,
64
+ onChange: _propTypes.default.func,
65
+ value: _propTypes.default.string
66
+ } : {};
67
+ HiRadio.defaultProps = {};
68
+
69
+ var _default = (0, _styles.withStyles)(styles, {
70
+ hiComponent: true,
71
+ name: 'HmuiHiRadio'
72
+ })(HiRadio);
73
+
74
+ exports.default = _default;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ Object.defineProperty(exports, "default", {
9
+ enumerable: true,
10
+ get: function get() {
11
+ return _HiRadio.default;
12
+ }
13
+ });
14
+
15
+ var _HiRadio = _interopRequireDefault(require("./HiRadio"));
@@ -23,8 +23,6 @@ var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/ge
23
23
 
24
24
  var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
25
25
 
26
- var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
27
-
28
26
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
29
27
 
30
28
  var _react = _interopRequireDefault(require("react"));
@@ -126,30 +124,6 @@ function (_React$PureComponent) {
126
124
  (0, _classCallCheck2.default)(this, HiSelect);
127
125
  _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(HiSelect).call(this, _props));
128
126
 
129
- _this.handleClick = function () {
130
- if (_this.state.open) {
131
- _this.handleClose();
132
- } else {
133
- _this.setState({
134
- open: true
135
- });
136
-
137
- var options = _this.props.options.slice();
138
-
139
- _this.handleSuggestions(options);
140
-
141
- if (_this.props.onClick) {
142
- _this.props.onClick();
143
- } // Gestion du focus
144
-
145
-
146
- if (!_this.props.searchable) {
147
- // sinon focus sur le dernier élément selectionné
148
- _this.focusOnSelectedItem();
149
- }
150
- }
151
- };
152
-
153
127
  _this.buildHierarchyTrees = function (props) {
154
128
  // Construct two associative arrays
155
129
  // hierarchy[parentId] => children
@@ -211,6 +185,63 @@ function (_React$PureComponent) {
211
185
  }, 1);
212
186
  };
213
187
 
188
+ _this.handleBlur = function () {
189
+ _this.setState({
190
+ focused: false
191
+ });
192
+ };
193
+
194
+ _this.handleClick = function () {
195
+ if (_this.state.open) {
196
+ _this.handleClose();
197
+ } else {
198
+ _this.setState({
199
+ open: true
200
+ });
201
+
202
+ var options = _this.props.options.slice();
203
+
204
+ _this.handleSuggestions(options);
205
+
206
+ if (_this.props.onClick) {
207
+ _this.props.onClick();
208
+ } // Gestion du focus
209
+
210
+
211
+ if (!_this.props.searchable) {
212
+ // sinon focus sur le dernier élément selectionné
213
+ _this.focusOnSelectedItem();
214
+ }
215
+ }
216
+ };
217
+
218
+ _this.handleClickAway = function (event) {
219
+ // Au clic sur le bouton, on laisse le handleClick fermer le select
220
+ if (!_this.selectInputElement.contains(event.target)) {
221
+ _this.handleClose(event);
222
+ }
223
+ };
224
+
225
+ _this.handleClose = function () {
226
+ if (_this.props.onClose) {
227
+ _this.props.onClose();
228
+ }
229
+
230
+ if (_this.selectInputElement) {
231
+ _this.selectInputElement.focus();
232
+ }
233
+
234
+ _this.setState({
235
+ open: false
236
+ });
237
+ };
238
+
239
+ _this.handleFocus = function () {
240
+ _this.setState({
241
+ focused: true
242
+ });
243
+ };
244
+
214
245
  _this.handleKeyDown = function (event) {
215
246
  var nextItem;
216
247
 
@@ -244,36 +275,29 @@ function (_React$PureComponent) {
244
275
  }
245
276
  };
246
277
 
247
- _this.handleFocus = function () {
248
- _this.setState({
249
- focused: true
250
- });
251
- };
278
+ _this.handleRequestDelete = function (event) {
279
+ event.stopPropagation();
252
280
 
253
- _this.handleBlur = function () {
254
- _this.setState({
255
- focused: false
256
- });
281
+ _this.props.onChange(_this.props.name, []);
257
282
  };
258
283
 
259
- _this.handleClose = function () {
260
- if (_this.props.onClose) {
261
- _this.props.onClose();
262
- }
284
+ _this.handleReset = function (event) {
285
+ if (_this.props.onReset) {
286
+ event.stopPropagation();
263
287
 
264
- if (_this.selectInputElement) {
265
- _this.selectInputElement.focus();
288
+ _this.props.onReset(event);
266
289
  }
267
-
268
- _this.setState({
269
- open: false
270
- });
271
290
  };
272
291
 
273
- _this.handleClickAway = function (event) {
274
- // Au clic sur le bouton, on laisse le handleClick fermer le select
275
- if (!_this.selectInputElement.contains(event.target)) {
276
- _this.handleClose(event);
292
+ _this.handleScroll = function (event) {
293
+ if (!_this.props.loadingMoreResults && _this.props.hasMore && event.target.scrollHeight - event.target.clientHeight - event.target.scrollTop < 15) {
294
+ _this.props.loadMoreResults(_this.state.resultsPageNumber + 1);
295
+
296
+ _this.setState(function (prevState) {
297
+ return {
298
+ resultsPageNumber: prevState.resultsPageNumber + 1
299
+ };
300
+ });
277
301
  }
278
302
  };
279
303
 
@@ -446,24 +470,6 @@ function (_React$PureComponent) {
446
470
  });
447
471
  };
448
472
 
449
- _this.handleRequestDelete = function (evt) {
450
- evt.stopPropagation();
451
-
452
- _this.props.onChange(_this.props.name, []);
453
- };
454
-
455
- _this.handleScroll = function (event) {
456
- if (!_this.props.loadingMoreResults && _this.props.hasMore && event.target.scrollHeight - event.target.clientHeight - event.target.scrollTop < 15) {
457
- _this.props.loadMoreResults(_this.state.resultsPageNumber + 1);
458
-
459
- _this.setState(function (prevState) {
460
- return {
461
- resultsPageNumber: prevState.resultsPageNumber + 1
462
- };
463
- });
464
- }
465
- };
466
-
467
473
  _this.state = {
468
474
  open: false,
469
475
  focused: false,
@@ -521,15 +527,6 @@ function (_React$PureComponent) {
521
527
  _this.state.dynamic = true;
522
528
  }
523
529
 
524
- _this.handleSelect = _this.handleSelect.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
525
- _this.handleClick = _this.handleClick.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
526
- _this.handleClose = _this.handleClose.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
527
- _this.handleClickAway = _this.handleClickAway.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
528
- _this.handleRequestDelete = _this.handleRequestDelete.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
529
- _this.handleSuggestions = _this.handleSuggestions.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
530
- _this.handleFocus = _this.handleFocus.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
531
- _this.handleBlur = _this.handleBlur.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
532
- _this.handleScroll = _this.handleScroll.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this)));
533
530
  return _this;
534
531
  }
535
532
 
@@ -557,14 +554,6 @@ function (_React$PureComponent) {
557
554
  });
558
555
  }
559
556
  }
560
- }, {
561
- key: "handleReset",
562
- value: function handleReset(event) {
563
- if (this.props.onReset) {
564
- event.stopPropagation();
565
- this.props.onReset(event);
566
- }
567
- }
568
557
  }, {
569
558
  key: "render",
570
559
  value: function render() {
@@ -47,6 +47,8 @@ var _Popper = _interopRequireDefault(require("@material-ui/core/Popper"));
47
47
 
48
48
  var _helpers = require("../utils/helpers");
49
49
 
50
+ var _keycode = _interopRequireDefault(require("keycode"));
51
+
50
52
  // @inheritedComponent HiInput
51
53
  var styles = function styles(theme) {
52
54
  return {
@@ -115,13 +117,24 @@ function (_React$PureComponent) {
115
117
 
116
118
  _this.handleKeyDown = function (event) {
117
119
  var nextItem;
120
+ var key = (0, _keycode.default)(event);
118
121
 
119
- if (event.key === 'ArrowDown') {
122
+ if (key === 'down') {
123
+ event.preventDefault();
120
124
  nextItem = (0, _helpers.getNextItemSelectable)(document.activeElement, 'down');
121
- } else if (event.key === 'ArrowUp') {
125
+ } else if (key === 'up') {
126
+ event.preventDefault();
122
127
  nextItem = (0, _helpers.getNextItemSelectable)(document.activeElement, 'up');
123
- } else if (event.key === 'Tab') {
128
+ } else if (key === 'tab') {
124
129
  document.body.style.overflow = 'auto';
130
+ } else if (key === 'escape' || 'enter') {
131
+ event.preventDefault();
132
+
133
+ var item = _this.props.options.find(function (elem) {
134
+ return String(elem.id) === event.target.id;
135
+ });
136
+
137
+ _this.handleSelect(null, item);
125
138
  }
126
139
 
127
140
  if (nextItem) {
@@ -172,10 +185,14 @@ function (_React$PureComponent) {
172
185
  }
173
186
  }, {
174
187
  key: "handleFocus",
175
- value: function handleFocus() {
188
+ value: function handleFocus(event) {
176
189
  this.setState({
177
190
  focused: true
178
191
  });
192
+
193
+ if (this.props.onFocusInput) {
194
+ this.props.onFocusInput(event);
195
+ }
179
196
  }
180
197
  }, {
181
198
  key: "handleBlur",
@@ -188,6 +205,10 @@ function (_React$PureComponent) {
188
205
  focused: false
189
206
  });
190
207
  }
208
+
209
+ if (this.props.onBlurInput) {
210
+ this.props.onBlurInput(event);
211
+ }
191
212
  }
192
213
  }, {
193
214
  key: "render",
@@ -307,6 +328,16 @@ HiSuggestSelect.propTypes = process.env.NODE_ENV !== "production" ? {
307
328
  */
308
329
  loading: _propTypes.default.bool,
309
330
 
331
+ /**
332
+ * Fonction de callback appelée lorsqu'on blur le champ de recherche
333
+ */
334
+ onBlurInput: _propTypes.default.func,
335
+
336
+ /**
337
+ * Fonction de callback appelée lorsqu'on focus le champs de recherche
338
+ */
339
+ onFocusInput: _propTypes.default.func,
340
+
310
341
  /**
311
342
  * Fonction de callback appelée lorsqu'on écrit dans le champ
312
343
  */
@@ -45,7 +45,10 @@ var styles = function styles(theme) {
45
45
  maxWidth: 500,
46
46
  display: 'flex',
47
47
  justifyContent: 'center',
48
- padding: 8,
48
+ paddingTop: 7,
49
+ paddingBottom: 9,
50
+ paddingRight: 8,
51
+ paddingLeft: 8,
49
52
  cursor: 'pointer'
50
53
  },
51
54
  underline: {
@@ -345,6 +348,11 @@ SelectInput.propTypes = process.env.NODE_ENV !== "production" ? {
345
348
  */
346
349
  refElement: _propTypes.default.func,
347
350
 
351
+ /**
352
+ * Theme object
353
+ */
354
+ theme: _propTypes.default.object,
355
+
348
356
  /**
349
357
  * Valeur à afficher (déjà formattée)
350
358
  */
@@ -235,7 +235,6 @@ function (_React$PureComponent) {
235
235
  var search = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
236
236
  var loading = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
237
237
  var _this$props2 = _this.props,
238
- classes = _this$props2.classes,
239
238
  disabledParent = _this$props2.disabledParent,
240
239
  hasAll = _this$props2.hasAll,
241
240
  iconAll = _this$props2.iconAll,
@@ -353,6 +352,11 @@ HiNestedSelectContent.propTypes = process.env.NODE_ENV !== "production" ? {
353
352
  */
354
353
  hasAll: _propTypes.default.bool,
355
354
 
355
+ /**
356
+ * Propriétés du composant HiSelectableList
357
+ */
358
+ hiSelectableListProps: _propTypes.default.object,
359
+
356
360
  /**
357
361
  * id du select
358
362
  */