@mtes-mct/monitor-ui 8.6.1 → 8.8.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 +14 -0
- package/index.js +32 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/icons/Reset.d.ts +2 -0
- package/src/icons/SortSelectedDown.d.ts +2 -0
- package/src/icons/SortSelectedUp.d.ts +2 -0
- package/src/icons/SortingChevrons.d.ts +2 -0
- package/src/icons/index.d.ts +5 -1
- package/src/index.d.ts +3 -0
- package/src/utils/pluralize.d.ts +4 -0
package/package.json
CHANGED
package/src/icons/index.d.ts
CHANGED
|
@@ -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
|
@@ -62,6 +62,7 @@ export { useKey } from './hooks/useKey';
|
|
|
62
62
|
export { NewWindowContext, useNewWindow } from './hooks/useNewWindow';
|
|
63
63
|
export { usePrevious } from './hooks/usePrevious';
|
|
64
64
|
export { CustomSearch } from './libs/CustomSearch';
|
|
65
|
+
export { cleanString } from './utils/cleanString';
|
|
65
66
|
export { customDayjs } from './utils/customDayjs';
|
|
66
67
|
export { getCoordinates, coordinatesAreDistinct } from './utils/coordinates';
|
|
67
68
|
export { getLocalizedDayjs } from './utils/getLocalizedDayjs';
|
|
@@ -74,7 +75,9 @@ export { isDefined } from './utils/isDefined';
|
|
|
74
75
|
export { isNumeric } from './utils/isNumeric';
|
|
75
76
|
export { isObject } from './utils/isObject';
|
|
76
77
|
export { logSoftError } from './utils/logSoftError';
|
|
78
|
+
export { normalizeString } from './utils/normalizeString';
|
|
77
79
|
export { nullify } from './utils/nullify';
|
|
80
|
+
export { pluralize } from './utils/pluralize';
|
|
78
81
|
export { stopMouseEventPropagation } from './utils/stopMouseEventPropagation';
|
|
79
82
|
export { undefine } from './utils/undefine';
|
|
80
83
|
export type { PartialTheme, Theme } from './theme';
|