@mtes-mct/monitor-ui 8.6.0 → 8.6.1
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 +7 -0
- package/index.js +5 -7
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/{MapMenuModal → MapMenuDialog}/index.d.ts +1 -1
- package/src/elements/Table/SimpleTable.d.ts +1 -1
- package/src/elements/Table/TableWithSelectableRows/index.d.ts +1 -1
- package/src/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [8.6.0](https://github.com/MTES-MCT/monitor-ui/compare/v8.5.0...v8.6.0) (2023-08-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **types:** add Filter public type ([bac46f9](https://github.com/MTES-MCT/monitor-ui/commit/bac46f90fa20802e0b2745b7deca4a4c52cca589))
|
|
7
|
+
|
|
1
8
|
# [8.5.0](https://github.com/MTES-MCT/monitor-ui/compare/v8.4.0...v8.5.0) (2023-08-20)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -3527,15 +3527,15 @@ const Container = styled.div `
|
|
|
3527
3527
|
margin-right: 6px;
|
|
3528
3528
|
background-color: ${p => p.theme.color.white};
|
|
3529
3529
|
box-shadow: 0px 3px 6px ${p => p.theme.color.slateGray};
|
|
3530
|
-
|
|
3530
|
+
display: flex;
|
|
3531
|
+
flex-direction: column;
|
|
3531
3532
|
`;
|
|
3532
3533
|
const Header = styled.div `
|
|
3533
3534
|
height: 40px;
|
|
3534
3535
|
background-color: ${p => p.theme.color.charcoal};
|
|
3535
3536
|
display: flex;
|
|
3536
3537
|
justify-content: space-between;
|
|
3537
|
-
padding
|
|
3538
|
-
padding-left: 10px;
|
|
3538
|
+
padding: 9px 4px 9px 10px;
|
|
3539
3539
|
align-items: center;
|
|
3540
3540
|
`;
|
|
3541
3541
|
const Title = styled.span `
|
|
@@ -3560,12 +3560,10 @@ const Footer = styled.div `
|
|
|
3560
3560
|
flex-direction: column;
|
|
3561
3561
|
gap: 8px;
|
|
3562
3562
|
padding: 12px;
|
|
3563
|
-
position: absolute;
|
|
3564
|
-
bottom: 0;
|
|
3565
3563
|
width: 100%;
|
|
3566
3564
|
z-index: 10;
|
|
3567
3565
|
`;
|
|
3568
|
-
const
|
|
3566
|
+
const MapMenuDialog = {
|
|
3569
3567
|
Body,
|
|
3570
3568
|
CloseButton,
|
|
3571
3569
|
Container,
|
|
@@ -36717,5 +36715,5 @@ function undefine(value) {
|
|
|
36717
36715
|
return value;
|
|
36718
36716
|
}
|
|
36719
36717
|
|
|
36720
|
-
export { Accent, Button$1 as Button, Checkbox, CoordinatesFormat, CoordinatesInput, CustomSearch, DatePicker, DateRangePicker, Dialog, Dropdown, Field$2 as Field, FieldError, Fieldset, FormikCheckbox, FormikCoordinatesInput, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikNumberInput, FormikSearch, FormikSelect, FormikTextInput, FormikTextarea, GlobalStyle, index as Icon, IconButton, Label, Legend,
|
|
36718
|
+
export { Accent, Button$1 as Button, Checkbox, CoordinatesFormat, CoordinatesInput, CustomSearch, DatePicker, DateRangePicker, Dialog, Dropdown, Field$2 as Field, FieldError, Fieldset, FormikCheckbox, FormikCoordinatesInput, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikNumberInput, FormikSearch, FormikSelect, FormikTextInput, FormikTextarea, GlobalStyle, index as Icon, IconButton, Label, Legend, MapMenuDialog, MultiCheckbox, MultiRadio, MultiSelect, MultiZoneEditor, NewWindow, NewWindowContext, NotificationEvent, Notifier, NumberInput, OPENLAYERS_PROJECTION, OnlyFontGlobalStyle, Search, Select, SideMenu, SimpleTable, SingleTag, Size, THEME, TableWithSelectableRows, Tag, TagBullet, TagGroup, TextInput, Textarea, ThemeProvider, WSG84_PROJECTION, coordinatesAreDistinct, customDayjs, getCoordinates, getLocalizedDayjs, getOptionsFromIdAndName, getOptionsFromLabelledEnum, getPseudoRandomString, getUtcizedDayjs, isArray, isDefined, isNumeric, isObject, logSoftError, nullify, stopMouseEventPropagation, undefine, useClickOutsideEffect, useFieldControl, useForceUpdate, useKey, useNewWindow, usePrevious };
|
|
36721
36719
|
//# sourceMappingURL=index.js.map
|