@geops/rvf-mobility-web-component 0.1.111 → 0.1.112
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 +8 -0
- package/doc/next.config.mjs +5 -1
- package/doc/package.json +7 -7
- package/doc/src/app/components/GeopsMobility.tsx +17 -3
- package/doc/src/app/components/GeopsMobilitySearch.tsx +14 -2
- package/doc/src/app/components/WebComponentDoc.tsx +0 -1
- package/doc/tsconfig.json +3 -2
- package/index.js +182 -149
- package/package.json +8 -8
- package/src/Copyright/Copyright.tsx +1 -6
- package/src/NotificationDetails/NotificationDetails.tsx +7 -2
- package/src/RvfFeatureDetails/RvfSharedMobilityDetail/FloatingVehiclesDetails/FloatingVehiclesDetails.tsx +7 -5
- package/src/RvfFeatureDetails/RvfSharedMobilityDetail/StationDetails/StationDetails.tsx +2 -2
- package/src/RvfLink/RvfLink.tsx +5 -3
- package/src/ui/Link/Link.tsx +3 -3
- package/doc/declarations.d.ts +0 -6
- package/src/Copyright/index.css +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.112](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.111...v0.1.112) (2026-02-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* better link display in overlay ([#39](https://github.com/geops/rvf-mobility-web-component/issues/39)) ([cac6ef7](https://github.com/geops/rvf-mobility-web-component/commit/cac6ef785cba0f02fb302748af38d933db110639)), closes [#32](https://github.com/geops/rvf-mobility-web-component/issues/32)
|
|
11
|
+
* improve link display and update dependencies ([#32](https://github.com/geops/rvf-mobility-web-component/issues/32)) ([5aae002](https://github.com/geops/rvf-mobility-web-component/commit/5aae002e771ac279f72681a8032ccce3949f471b))
|
|
12
|
+
|
|
5
13
|
### [0.1.111](https://github.com/geops/rvf-mobility-web-component/compare/v0.1.109...v0.1.111) (2026-02-02)
|
|
6
14
|
|
|
7
15
|
|
package/doc/next.config.mjs
CHANGED
package/doc/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@mui/material": "^6.1.10",
|
|
12
12
|
"@mui/material-nextjs": "^6.1.9",
|
|
13
13
|
"@mui/styles": "^6.1.10",
|
|
14
|
-
"next": "
|
|
14
|
+
"next": "16.1.6",
|
|
15
15
|
"prismjs": "^1.29.0",
|
|
16
16
|
"react": "^18",
|
|
17
17
|
"react-dom": "^18",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"typeface-lato": "^1.1.13"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@tailwindcss/postcss": "^4.1.
|
|
23
|
-
"@types/node": "^
|
|
24
|
-
"@types/react": "^
|
|
25
|
-
"@types/react-dom": "^
|
|
22
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
23
|
+
"@types/node": "^25.2.0",
|
|
24
|
+
"@types/react": "^19.2.10",
|
|
25
|
+
"@types/react-dom": "^19.2.3",
|
|
26
26
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
27
27
|
"eslint": "^8",
|
|
28
28
|
"eslint-config-next": "15.0.3",
|
|
29
29
|
"eslint-config-prettier": "^9.1.0",
|
|
30
30
|
"generact": "^0.4.0",
|
|
31
31
|
"postcss": "^8.5.6",
|
|
32
|
-
"tailwindcss": "^4.1.
|
|
33
|
-
"typescript": "^5.
|
|
32
|
+
"tailwindcss": "^4.1.18",
|
|
33
|
+
"typescript": "^5.9.3"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "next build",
|
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare module "react" {
|
|
5
|
+
namespace JSX {
|
|
6
|
+
interface IntrinsicElements {
|
|
7
|
+
"geops-mobility": React.DetailedHTMLProps<
|
|
8
|
+
React.HTMLAttributes<HTMLElement>,
|
|
9
|
+
HTMLElement
|
|
10
|
+
> &
|
|
11
|
+
Record<string, unknown>;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const GeopsMobility = forwardRef<HTMLDivElement, Record<string, unknown>>(
|
|
17
|
+
(props, ref) => {
|
|
18
|
+
return <geops-mobility ref={ref} {...props}></geops-mobility>;
|
|
19
|
+
},
|
|
20
|
+
);
|
|
7
21
|
GeopsMobility.displayName = "GeopsMobility";
|
|
8
22
|
|
|
9
23
|
export default GeopsMobility;
|
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
import { forwardRef } from "react";
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
declare module "react" {
|
|
4
|
+
namespace JSX {
|
|
5
|
+
interface IntrinsicElements {
|
|
6
|
+
"geops-mobility-search": React.DetailedHTMLProps<
|
|
7
|
+
React.HTMLAttributes<HTMLElement>,
|
|
8
|
+
HTMLElement
|
|
9
|
+
> &
|
|
10
|
+
Record<string, unknown>;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const GeopsMobilitySearch = forwardRef<HTMLDivElement, Record<string, unknown>>(
|
|
16
|
+
(props, ref) => {
|
|
5
17
|
return <geops-mobility-search ref={ref} {...props}></geops-mobility-search>;
|
|
6
18
|
},
|
|
7
19
|
);
|
package/doc/tsconfig.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"moduleResolution": "bundler",
|
|
15
15
|
"resolveJsonModule": true,
|
|
16
16
|
"isolatedModules": true,
|
|
17
|
-
"jsx": "
|
|
17
|
+
"jsx": "react-jsx",
|
|
18
18
|
"incremental": true,
|
|
19
19
|
"plugins": [
|
|
20
20
|
{
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"next-env.d.ts",
|
|
33
33
|
"**/*.ts",
|
|
34
34
|
"**/*.tsx",
|
|
35
|
-
".next/types/**/*.ts"
|
|
35
|
+
".next/types/**/*.ts",
|
|
36
|
+
".next/dev/types/**/*.ts"
|
|
36
37
|
],
|
|
37
38
|
"exclude": [
|
|
38
39
|
"node_modules"
|