@dgui/react-router-shared 0.3.2-beta.1 → 0.3.3

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.
@@ -2,5 +2,5 @@ import { type FunctionComponent } from 'react';
2
2
  declare const E404: FunctionComponent<E404Props>;
3
3
  export default E404;
4
4
  export type E404Props = {
5
- defaultTab: number;
5
+ readonly defaultTab: number;
6
6
  };
@@ -2,5 +2,5 @@ import { type FunctionComponent } from 'react';
2
2
  declare const BackControl: FunctionComponent<BackControlProps>;
3
3
  export default BackControl;
4
4
  export type BackControlProps = {
5
- tabId: string;
5
+ readonly tabId: string;
6
6
  };
@@ -2,5 +2,5 @@ import { type FunctionComponent } from 'react';
2
2
  declare const RouteControl: FunctionComponent<RouteControlProps>;
3
3
  export default RouteControl;
4
4
  export type RouteControlProps = {
5
- tabId: string;
5
+ readonly tabId: string;
6
6
  };
@@ -2,5 +2,5 @@ import { type FunctionComponent, type PropsWithChildren } from 'react';
2
2
  declare const TabRoute: FunctionComponent<TabRouteProps>;
3
3
  export default TabRoute;
4
4
  export type TabRouteProps = PropsWithChildren<{
5
- tabPath: string;
5
+ readonly tabPath: string;
6
6
  }>;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@dgui/react-router-shared",
3
3
  "title": "Digested React GUI Shared Router Components",
4
4
  "license": "LGPL-3.0-or-later",
5
- "version": "0.3.2-beta.1",
5
+ "version": "0.3.3",
6
6
  "private": false,
7
7
  "description": "Shared Router Components for a boilerplate React GUI",
8
8
  "author": "wallzero @wallzeroblog (http://wallzero.com)",
@@ -43,27 +43,27 @@
43
43
  "set:version": "npm version --allow-same-version --no-commit-hooks --no-git-tag-version --no-workspaces-update $(npm --silent view $(node -p \"require('./package.json').name\") version)"
44
44
  },
45
45
  "devDependencies": {
46
- "@digest/eslint-config-jest": "^4.2.2",
47
- "@digest/eslint-config-react": "^4.2.2",
48
- "@digest/eslint-config-typescript": "^4.2.2",
49
- "@digest/jest-junit": "^4.2.2",
50
- "@digest/jest-react": "^4.2.2",
51
- "@digest/jest-typescript": "^4.2.2",
52
- "@digest/typescript": "4.2.2",
53
- "@types/jest": "^29.5.1",
54
- "@types/react": "^18.0.38",
46
+ "@digest/eslint-config-jest": "^4.2.5",
47
+ "@digest/eslint-config-react": "^4.2.5",
48
+ "@digest/eslint-config-typescript": "^4.2.5",
49
+ "@digest/jest-junit": "^4.2.5",
50
+ "@digest/jest-react": "^4.2.5",
51
+ "@digest/jest-typescript": "^4.2.5",
52
+ "@digest/typescript": "^4.2.5",
53
+ "@types/jest": "^29.5.3",
54
+ "@types/react": "^18.2.18",
55
55
  "@types/react-test-renderer": "^18.0.0",
56
56
  "cross-env": "^7.0.3",
57
- "jest-environment-jsdom": "^29.5.0",
57
+ "jest-environment-jsdom": "^29.6.2",
58
58
  "jest-environment-jsdom-global": "^4.0.0",
59
59
  "npm-run-all": "^4.1.5",
60
60
  "react": "^18.2.0",
61
- "react-router": "^6.10.0",
61
+ "react-router": "^6.14.2",
62
62
  "react-test-renderer": "^18.2.0",
63
- "rimraf": "^5.0.0"
63
+ "rimraf": "^5.0.1"
64
64
  },
65
65
  "dependencies": {
66
- "@dgui/react-shared": "^0.3.2-beta.1"
66
+ "@dgui/react-shared": "^0.3.3"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
@@ -77,5 +77,5 @@
77
77
  "react-router",
78
78
  "typescript"
79
79
  ],
80
- "gitHead": "d7041d722670220288a98743c02810b000cf8020"
80
+ "gitHead": "8b5845c4bd7c8d05e64acc59718379b956c8a446"
81
81
  }