@mtes-mct/monitor-ui 24.47.0 → 24.48.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/icons/SortingChevrons.d.ts +1 -1
- package/icons/SortingChevrons.d.ts.map +1 -1
- package/index.js +4 -4
- package/package.json +1 -1
- package/stats.html +1 -1
- package/types/definitions.d.ts +2 -0
- package/types/definitions.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [24.47.0](https://github.com/MTES-MCT/monitor-ui/compare/v24.46.0...v24.47.0) (2026-04-09)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **icons:** add Load icon ([57f388a](https://github.com/MTES-MCT/monitor-ui/commit/57f388a1d0bbe7f3815946f907d0e85c49d9c558))
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **fields:** fix time input displaying on top when isCalendarTop is set ([986360c](https://github.com/MTES-MCT/monitor-ui/commit/986360c88730ba36a3e3d78d35d4bf44aeaf0fee))
|
|
10
|
+
|
|
11
|
+
### Code Refactoring
|
|
12
|
+
|
|
13
|
+
* **fields:** remove optional to isTop inner prop ([dec24a7](https://github.com/MTES-MCT/monitor-ui/commit/dec24a7dc26fe879c3bac978f1fbff713ec17bb2))
|
|
14
|
+
|
|
1
15
|
## [24.46.0](https://github.com/MTES-MCT/monitor-ui/compare/v24.45.1...v24.46.0) (2026-03-18)
|
|
2
16
|
|
|
3
17
|
### Features
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { IconProps } from '../types/definitions';
|
|
2
|
-
export declare function SortingChevrons({ color, size, title, ...nativeProps }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function SortingChevrons({ color, secondaryColor, size, tertiaryColor, title, ...nativeProps }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
//# sourceMappingURL=SortingChevrons.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SortingChevrons.d.ts","sourceRoot":"","sources":["../../src/icons/SortingChevrons.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"SortingChevrons.d.ts","sourceRoot":"","sources":["../../src/icons/SortingChevrons.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAyB/G"}
|
package/index.js
CHANGED
|
@@ -3527,14 +3527,14 @@ function es({ color: e, size: t, title: r, ...n }) {
|
|
|
3527
3527
|
/* @__PURE__ */ a("rect", { fill: "none", height: "20", transform: "translate(40)", width: "20" })
|
|
3528
3528
|
] }) }) });
|
|
3529
3529
|
}
|
|
3530
|
-
function _p({ color: e,
|
|
3531
|
-
return /* @__PURE__ */ a(D, { $color: e, $size:
|
|
3530
|
+
function _p({ color: e, secondaryColor: t, size: r, tertiaryColor: n, title: i, ...o }) {
|
|
3531
|
+
return /* @__PURE__ */ a(D, { $color: e, $size: r, title: i, children: /* @__PURE__ */ m("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...o, children: [
|
|
3532
3532
|
/* @__PURE__ */ a(
|
|
3533
3533
|
"path",
|
|
3534
3534
|
{
|
|
3535
3535
|
d: "M-184.5-110.5-190-105l-5.5-5.5",
|
|
3536
3536
|
fill: "none",
|
|
3537
|
-
stroke: "currentColor",
|
|
3537
|
+
stroke: t ?? "currentColor",
|
|
3538
3538
|
strokeMiterlimit: "10",
|
|
3539
3539
|
strokeWidth: "2",
|
|
3540
3540
|
transform: "translate(200 123)"
|
|
@@ -3545,7 +3545,7 @@ function _p({ color: e, size: t, title: r, ...n }) {
|
|
|
3545
3545
|
{
|
|
3546
3546
|
d: "M-195.5-115.5l5.5-5.5,5.5,5.5",
|
|
3547
3547
|
fill: "none",
|
|
3548
|
-
stroke: "currentColor",
|
|
3548
|
+
stroke: n ?? "currentColor",
|
|
3549
3549
|
strokeMiterlimit: "10",
|
|
3550
3550
|
strokeWidth: "2",
|
|
3551
3551
|
transform: "translate(200 123)"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mtes-mct/monitor-ui",
|
|
3
3
|
"description": "Common React components, hooks, utilities and CSS stylesheets for MonitorFish, MonitorEnv and RapportNav.",
|
|
4
|
-
"version": "24.
|
|
4
|
+
"version": "24.48.0",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|