@mtes-mct/monitor-ui 2.15.0 → 2.16.0
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.
- package/CHANGELOG.md +9 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# [2.15.0](https://github.com/MTES-MCT/monitor-ui/compare/v2.14.5...v2.15.0) (2023-02-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **elements:** stop click event propagation in Button & IconButton ([0796b02](https://github.com/MTES-MCT/monitor-ui/commit/0796b02b12fed5fe170fb9b8ce5734f9b54b8c9b))
|
|
7
|
+
* **fields:** add ellipsis for long options in MultiSelect & Select ([0c14f05](https://github.com/MTES-MCT/monitor-ui/commit/0c14f05582d9b8b5454a57908cb5a614837460dd))
|
|
8
|
+
* **fields:** add title to MultiSelect & Select options label ([0d5bca5](https://github.com/MTES-MCT/monitor-ui/commit/0d5bca51b659564c4bac034290b0609b7f693233))
|
|
9
|
+
|
|
1
10
|
## [2.14.5](https://github.com/MTES-MCT/monitor-ui/compare/v2.14.4...v2.14.5) (2023-02-09)
|
|
2
11
|
|
|
3
12
|
|
package/index.js
CHANGED
|
@@ -5845,5 +5845,5 @@ function FormikTextInput({ name, ...originalProps }) {
|
|
|
5845
5845
|
|
|
5846
5846
|
const noop = () => { };
|
|
5847
5847
|
|
|
5848
|
-
export { Accent, AutoComplete, Button, Checkbox, DatePicker, DateRangePicker, Dropdown, Field$2 as Field, Fieldset, FormikAutoComplete, FormikCheckbox, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikNumberInput, FormikSelect, FormikTextInput, FormikTextarea, GlobalStyle, index as Icon, IconButton, Label, Legend, MultiCheckbox, MultiRadio, MultiSelect, MultiZoneEditor, NumberInput, OnlyFontGlobalStyle, Select, SingleTag, Size, THEME, Tag, TagGroup, TextInput, Textarea, ThemeProvider, dayjs, getLocalizedDayjs, getUtcizedDayjs, noop, stopMouseEventPropagation, useClickOutsideEffect, useForceUpdate };
|
|
5848
|
+
export { Accent, AutoComplete, Button, Checkbox, DatePicker, DateRangePicker, Dropdown, Field$2 as Field, Fieldset, FormikAutoComplete, FormikCheckbox, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikNumberInput, FormikSelect, FormikTextInput, FormikTextarea, GlobalStyle, index as Icon, IconButton, Label, Legend, MultiCheckbox, MultiRadio, MultiSelect, MultiZoneEditor, NumberInput, OnlyFontGlobalStyle, Select, SingleTag, Size, THEME, Tag, TagGroup, TextInput, Textarea, ThemeProvider, dayjs, getLocalizedDayjs, getUtcizedDayjs, noop, stopMouseEventPropagation, useClickOutsideEffect, useForceUpdate, useKey, usePrevious };
|
|
5849
5849
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -39,7 +39,9 @@ export { FormikTextarea } from './formiks/FormikTextarea';
|
|
|
39
39
|
export { FormikTextInput } from './formiks/FormikTextInput';
|
|
40
40
|
export * as Icon from './icons';
|
|
41
41
|
export { useClickOutsideEffect } from './hooks/useClickOutsideEffect';
|
|
42
|
+
export { useKey } from './hooks/useKey';
|
|
42
43
|
export { useForceUpdate } from './hooks/useForceUpdate';
|
|
44
|
+
export { usePrevious } from './hooks/usePrevious';
|
|
43
45
|
export { dayjs } from './utils/dayjs';
|
|
44
46
|
export { getLocalizedDayjs } from './utils/getLocalizedDayjs';
|
|
45
47
|
export { getUtcizedDayjs } from './utils/getUtcizedDayjs';
|