@mtes-mct/monitor-ui 8.6.0 → 8.7.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mtes-mct/monitor-ui",
3
3
  "description": "Common React UI components and styles for Monitorfish and Monitorenv.",
4
- "version": "8.6.0",
4
+ "version": "8.7.0",
5
5
  "license": "AGPL-3.0",
6
6
  "engines": {
7
7
  "node": ">=18"
@@ -1,5 +1,5 @@
1
1
  import { IconButton } from '../../elements/IconButton';
2
- export declare const MapMenuModal: {
2
+ export declare const MapMenuDialog: {
3
3
  Body: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
4
  CloseButton: import("styled-components").StyledComponent<typeof IconButton, import("styled-components").DefaultTheme, {}, never>;
5
5
  Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -4,7 +4,7 @@ export declare const SimpleTable: {
4
4
  SortContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
5
  Table: import("styled-components").StyledComponent<"table", import("styled-components").DefaultTheme, {}, never>;
6
6
  Td: import("styled-components").StyledComponent<"td", import("styled-components").DefaultTheme, {
7
- $isCenter: boolean;
7
+ $isCenter?: boolean;
8
8
  }, never>;
9
9
  Th: import("styled-components").StyledComponent<"th", import("styled-components").DefaultTheme, {}, never>;
10
10
  };
@@ -7,7 +7,7 @@ export declare const TableWithSelectableRows: {
7
7
  SortContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
8
  Table: import("styled-components").StyledComponent<"table", import("styled-components").DefaultTheme, {}, never>;
9
9
  Td: import("styled-components").StyledComponent<"td", import("styled-components").DefaultTheme, {
10
- $isCenter: boolean;
10
+ $isCenter?: boolean;
11
11
  } & {
12
12
  $hasRightBorder: boolean;
13
13
  }, never>;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from '../types';
2
+ export declare function Reset({ color, size, ...nativeProps }: IconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from '../types';
2
+ export declare function SortSelectedDown({ color, size, ...nativeProps }: IconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from '../types';
2
+ export declare function SortSelectedUp({ color, size, ...nativeProps }: IconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from '../types';
2
+ export declare function SortingChevrons({ color, size, ...nativeProps }: IconProps): import("react/jsx-runtime").JSX.Element;
@@ -52,6 +52,7 @@ import { Plane } from './Plane';
52
52
  import { Plus } from './Plus';
53
53
  import { Reject } from './Reject';
54
54
  import { Report } from './Report';
55
+ import { Reset } from './Reset';
55
56
  import { Save } from './Save';
56
57
  import { Search } from './Search';
57
58
  import { SelectCircle } from './SelectCircle';
@@ -62,6 +63,9 @@ import { Semaphore } from './Semaphore';
62
63
  import { ShowErsMessages } from './ShowErsMessages';
63
64
  import { ShowXml } from './ShowXml';
64
65
  import { SortingArrows } from './SortingArrows';
66
+ import { SortingChevrons } from './SortingChevrons';
67
+ import { SortSelectedDown } from './SortSelectedDown';
68
+ import { SortSelectedUp } from './SortSelectedUp';
65
69
  import { Summary } from './Summary';
66
70
  import { Tag } from './Tag';
67
71
  import { Target } from './Target';
@@ -69,4 +73,4 @@ import { Unlock } from './Unlock';
69
73
  import { Vessel } from './Vessel';
70
74
  import { ViewOnMap } from './ViewOnMap';
71
75
  import { Vms } from './Vms';
72
- export { ActivityFeed, Alert, Anchor, Archive, Attention, Calendar, Check, Chevron, Clock, Close, Confirm, Control, Delete, Display, DoubleChevron, Download, Drapeau, Duplicate, Edit, EditBis, Expand, Favorite, FilledArrow, Filter, FilterBis, Fishery, FishingEngine, FleetSegment, Focus, FocusVessel, FocusZones, Hide, Info, Infringement, Landmark, List, MapLayers, MeasureAngle, MeasureBrokenLine, MeasureCircle, MeasureLine, Minus, MissionAction, More, Note, Observation, Pin, PinFilled, Pinpoint, PinpointHide, Plane, Plus, Reject, Report, Save, Search, SelectCircle, SelectPolygon, SelectRectangle, SelectZone, Semaphore, ShowErsMessages, ShowXml, SortingArrows, Summary, Tag, Target, Unlock, Vessel, ViewOnMap, Vms };
76
+ export { ActivityFeed, Alert, Anchor, Archive, Attention, Calendar, Check, Chevron, Clock, Close, Confirm, Control, Delete, Display, DoubleChevron, Download, Drapeau, Duplicate, Edit, EditBis, Expand, Favorite, FilledArrow, Filter, FilterBis, Fishery, FishingEngine, FleetSegment, Focus, FocusVessel, FocusZones, Hide, Info, Infringement, Landmark, List, MapLayers, MeasureAngle, MeasureBrokenLine, MeasureCircle, MeasureLine, Minus, MissionAction, More, Note, Observation, Pin, PinFilled, Pinpoint, PinpointHide, Plane, Plus, Reject, Report, Reset, Save, Search, SelectCircle, SelectPolygon, SelectRectangle, SelectZone, Semaphore, ShowErsMessages, ShowXml, SortSelectedDown, SortSelectedUp, SortingArrows, SortingChevrons, Summary, Tag, Target, Unlock, Vessel, ViewOnMap, Vms };
package/src/index.d.ts CHANGED
@@ -16,7 +16,7 @@ export { NewWindow } from './components/NewWindow';
16
16
  export { NotificationEvent, Notifier } from './components/Notifier';
17
17
  export { SideMenu } from './components/SideMenu';
18
18
  export { SingleTag } from './components/SingleTag';
19
- export { MapMenuModal } from './components/MapMenuModal';
19
+ export { MapMenuDialog } from './components/MapMenuDialog';
20
20
  export { Button } from './elements/Button';
21
21
  export { Field } from './elements/Field';
22
22
  export { Fieldset } from './elements/Fieldset';