@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 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
 
@@ -1,4 +1,8 @@
1
1
  /** @type {import('next').NextConfig} */
2
- const nextConfig = {};
2
+ const nextConfig = {
3
+ turbopack: {
4
+ root: "./",
5
+ },
6
+ };
3
7
 
4
8
  export default nextConfig;
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": "15.5.7",
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.11",
23
- "@types/node": "^22.10.1",
24
- "@types/react": "^18.3.13",
25
- "@types/react-dom": "^18",
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.11",
33
- "typescript": "^5.8.3"
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
- const GeopsMobility = forwardRef((props: Record<string, unknown>, ref) => {
5
- return <geops-mobility ref={ref} {...props}></geops-mobility>;
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
- const GeopsMobilitySearch = forwardRef(
4
- (props: Record<string, unknown>, ref) => {
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
  );
@@ -135,7 +135,6 @@ function WebComponentDoc({
135
135
  {...attributes}
136
136
  // @ts-expect-error - strange error
137
137
  ref={(node: HTMLElement) => {
138
- // @ts-expect-error - strange error
139
138
  ref.current = node;
140
139
  }}
141
140
  {...compProps}
package/doc/tsconfig.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "moduleResolution": "bundler",
15
15
  "resolveJsonModule": true,
16
16
  "isolatedModules": true,
17
- "jsx": "preserve",
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"