@mtes-mct/monitor-ui 5.4.0 → 5.5.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 CHANGED
@@ -1,3 +1,15 @@
1
+ # [5.4.0](https://github.com/MTES-MCT/monitor-ui/compare/v5.3.6...v5.4.0) (2023-04-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **fields:** apply lint ([4b89b0b](https://github.com/MTES-MCT/monitor-ui/commit/4b89b0baa32fb97de4b35e01df82902df5ea89cb))
7
+
8
+
9
+ ### Features
10
+
11
+ * **fields:** add isCleanable prop to select picker ([2924521](https://github.com/MTES-MCT/monitor-ui/commit/2924521b06490774e248c7bfedd843c2c456a848))
12
+
1
13
  ## [5.3.6](https://github.com/MTES-MCT/monitor-ui/compare/v5.3.5...v5.3.6) (2023-04-20)
2
14
 
3
15
 
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from '../types';
2
+ export declare function MissionAction({ color, size, ...nativeProps }: IconProps): JSX.Element;
package/icons/index.d.ts CHANGED
@@ -39,6 +39,7 @@ import { MeasureBrokenLine } from './MeasureBrokenLine';
39
39
  import { MeasureCircle } from './MeasureCircle';
40
40
  import { MeasureLine } from './MeasureLine';
41
41
  import { Minus } from './Minus';
42
+ import { MissionAction } from './MissionAction';
42
43
  import { More } from './More';
43
44
  import { Note } from './Note';
44
45
  import { Observation } from './Observation';
@@ -64,4 +65,4 @@ import { Unlock } from './Unlock';
64
65
  import { Vessel } from './Vessel';
65
66
  import { ViewOnMap } from './ViewOnMap';
66
67
  import { Vms } from './Vms';
67
- export { ActivityFeed, Alert, Anchor, Archive, Attention, Calendar, Check, Chevron, Clock, Close, Confirm, Control, Delete, Display, DoubleChevron, Download, Drapeau, Duplicate, Edit, EditBis, Favorite, FilledArrow, Filter, FilterBis, Fishery, FishingEngine, FleetSegment, Focus, FocusVessel, FocusZones, Hide, Info, Infringement, Landmark, List, MapLayers, MeasureAngle, MeasureBrokenLine, MeasureCircle, MeasureLine, Minus, More, Note, Observation, Pin, Pinpoint, PinpointHide, Plane, Plus, Reject, Save, Search, SelectCircle, SelectPolygon, SelectRectangle, SelectZone, ShowErsMessages, ShowXml, SortingArrows, Summary, Tag, Target, Unlock, Vessel, ViewOnMap, Vms };
68
+ export { ActivityFeed, Alert, Anchor, Archive, Attention, Calendar, Check, Chevron, Clock, Close, Confirm, Control, Delete, Display, DoubleChevron, Download, Drapeau, Duplicate, Edit, EditBis, 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, Pinpoint, PinpointHide, Plane, Plus, Reject, Save, Search, SelectCircle, SelectPolygon, SelectRectangle, SelectZone, ShowErsMessages, ShowXml, SortingArrows, Summary, Tag, Target, Unlock, Vessel, ViewOnMap, Vms };
package/index.js CHANGED
@@ -2635,6 +2635,10 @@ function Minus({ color, size, ...nativeProps }) {
2635
2635
  return (jsx(IconBox, { "$color": color, "$size": size, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("rect", { fill: "currentColor", height: "14", transform: "translate(3 11) rotate(-90)", width: "2" }), jsx("rect", { fill: "none", height: "20", width: "20" })] }) }));
2636
2636
  }
2637
2637
 
2638
+ function MissionAction({ color, size, ...nativeProps }) {
2639
+ return (jsx(IconBox, { "$color": color, "$size": size, children: jsx("svg", { height: "24.798", viewBox: "0 0 20.289 24.798", width: "20.289", ...nativeProps, children: jsx("path", { d: "M18.781,2.254h3.382a1.127,1.127,0,0,1,1.127,1.127V23.671A1.127,1.127,0,0,1,22.162,24.8H4.127A1.127,1.127,0,0,1,3,23.671V3.382A1.127,1.127,0,0,1,4.127,2.254H7.509V0H9.763V2.254h6.763V0h2.254ZM7.509,9.017v2.254H18.781V9.017Zm0,4.509v2.254H18.781V13.526Z", fill: "currentColor", transform: "translate(-3)" }) }) }));
2640
+ }
2641
+
2638
2642
  function More({ color, size, ...nativeProps }) {
2639
2643
  return (jsx(IconBox, { "$color": color, "$size": size, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { transform: "translate(240 -41)", children: [jsxs("g", { children: [jsx("circle", { cx: "2", cy: "2", fill: "currentColor", r: "2", transform: "translate(-232 49)" }), jsx("circle", { cx: "2", cy: "2", fill: "currentColor", r: "2", transform: "translate(-239 49)" }), jsx("circle", { cx: "2", cy: "2", fill: "currentColor", r: "2", transform: "translate(-225 49)" })] }), jsx("rect", { fill: "none", height: "20", transform: "translate(-240 41)", width: "20" })] }) }) }));
2640
2644
  }
@@ -2778,6 +2782,7 @@ var index = /*#__PURE__*/Object.freeze({
2778
2782
  MeasureCircle: MeasureCircle,
2779
2783
  MeasureLine: MeasureLine,
2780
2784
  Minus: Minus,
2785
+ MissionAction: MissionAction,
2781
2786
  More: More,
2782
2787
  Note: Note,
2783
2788
  Observation: Observation,