@accounter/client 0.0.7-alpha-20250826125101-8e67da24044e9d8db18839e14e9ccf64abb1828b → 0.0.7-alpha-20250826205252-d0970241403e154a1e6e74762cdcf9f6669c26d3
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 +25 -1
- package/dist/assets/{index-oUkNOq2n.js → index-BomqoFTe.js} +262 -262
- package/dist/assets/index-SP83bfNM.css +1 -0
- package/dist/assets/{index.es-C3GEnZyX.js → index.es-B-FftcuA.js} +1 -1
- package/dist/index.html +2 -2
- package/package.json +2 -2
- package/src/app.tsx +2 -8
- package/src/components/screens/network-error.tsx +15 -0
- package/src/components/screens/page-not-found.tsx +12 -0
- package/src/gql/graphql.ts +146 -0
- package/src/providers/auth-guard.tsx +2 -0
- package/src/providers/urql.tsx +8 -3
- package/dist/assets/index-BERPxH5K.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @accounter/client
|
|
2
2
|
|
|
3
|
-
## 0.0.7-alpha-
|
|
3
|
+
## 0.0.7-alpha-20250826205252-d0970241403e154a1e6e74762cdcf9f6669c26d3
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -118,6 +118,30 @@
|
|
|
118
118
|
- Updated dependency [`zod@4.1.1` ↗︎](https://www.npmjs.com/package/zod/v/4.1.1) (from `4.1.0`,
|
|
119
119
|
in `dependencies`)
|
|
120
120
|
|
|
121
|
+
- [#2465](https://github.com/Urigo/accounter-fullstack/pull/2465)
|
|
122
|
+
[`822e851`](https://github.com/Urigo/accounter-fullstack/commit/822e851c27c872e8ead2d263c34df6789a16cbea)
|
|
123
|
+
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
|
|
124
|
+
- Updated dependency
|
|
125
|
+
[`lucide-react@0.542.0` ↗︎](https://www.npmjs.com/package/lucide-react/v/0.542.0) (from
|
|
126
|
+
`0.541.0`, in `dependencies`)
|
|
127
|
+
|
|
128
|
+
- [#2466](https://github.com/Urigo/accounter-fullstack/pull/2466)
|
|
129
|
+
[`afdc9bf`](https://github.com/Urigo/accounter-fullstack/commit/afdc9bf6def07a69893c8087f8635b3e86570bdf)
|
|
130
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - - **Improved 404 Handling**: A dedicated
|
|
131
|
+
`PageNotFound` component has been created to provide a consistent and user-friendly experience
|
|
132
|
+
when users navigate to non-existent URLs.
|
|
133
|
+
- **Dedicated Network Error Page**: A new `NetworkError` component has been introduced to clearly
|
|
134
|
+
inform users about connectivity issues with the server, guiding them to check their internet
|
|
135
|
+
connection.
|
|
136
|
+
- **Centralized 404 Routing**: The application's routing has been updated to utilize the new
|
|
137
|
+
`PageNotFound` component for all unmatched routes, centralizing 404 display logic.
|
|
138
|
+
- **Proactive Network Error Redirection**: The `urql` provider now includes enhanced error
|
|
139
|
+
handling that detects network-related errors and automatically redirects the user to the new
|
|
140
|
+
`NetworkError` page, preventing generic error displays.
|
|
141
|
+
- **Robust Error Property Access**: Optional chaining has been applied to error property access
|
|
142
|
+
within the `urql` provider's authentication error checks, making the code more resilient to
|
|
143
|
+
unexpected error structures.
|
|
144
|
+
|
|
121
145
|
## 0.0.6
|
|
122
146
|
|
|
123
147
|
### Patch Changes
|