@mtes-mct/monitor-ui 24.22.1 → 24.22.2

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,9 @@
1
+ ## [24.22.1](https://github.com/MTES-MCT/monitor-ui/compare/v24.22.0...v24.22.1) (2025-06-20)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **elements:** fix key in FingerprintLoader ([07d0238](https://github.com/MTES-MCT/monitor-ui/commit/07d02383381618d35b4456a359347c616fc88221))
6
+
1
7
  ## [24.22.0](https://github.com/MTES-MCT/monitor-ui/compare/v24.21.3...v24.22.0) (2025-06-20)
2
8
 
3
9
  ### Features
package/index.js CHANGED
@@ -54819,6 +54819,10 @@ const RingLoader = styled.div`
54819
54819
  overflow: hidden;
54820
54820
  position: relative;
54821
54821
 
54822
+ * {
54823
+ box-sizing: border-box;
54824
+ }
54825
+
54822
54826
  .spinner-ring {
54823
54827
  position: absolute;
54824
54828
  border-radius: 50%;
@@ -54915,6 +54919,10 @@ const BouncingCircle = styled.div`
54915
54919
  position: relative;
54916
54920
  animation: fulfilling-bouncing-circle-spinner-animation infinite ${(p)=>p.$animationDuration}ms ease;
54917
54921
 
54922
+ * {
54923
+ box-sizing: border-box;
54924
+ }
54925
+
54918
54926
  .orbit {
54919
54927
  height: ${(p)=>p.$size}px;
54920
54928
  width: ${(p)=>p.$size}px;
package/package.json CHANGED
@@ -1,16 +1,16 @@
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.22.1",
4
+ "version": "24.22.2",
5
5
  "license": "AGPL-3.0",
6
6
  "type": "module",
7
7
  "engines": {
8
8
  "node": ">=20"
9
9
  },
10
10
  "dependencies": {
11
- "@babel/runtime": "7.27.1",
11
+ "@babel/runtime": "7.27.6",
12
12
  "@tanstack/react-table": "8.21.3",
13
- "@tanstack/react-virtual": "3.13.6",
13
+ "@tanstack/react-virtual": "3.13.10",
14
14
  "prop-types": "15.8.1",
15
15
  "tslib": "2.8.1"
16
16
  },