@accounter/client 0.0.6-alpha-20250721003005-5938b056d0ba67eea1d64a09f04faeb3550c5295 → 0.0.6-alpha-20250721061727-7022e2dc3b1e92ab852aa0c79aa7f61a2225797e
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-9mUQ-Yce.js +825 -0
- package/dist/assets/index-X0nt4zGa.css +1 -0
- package/dist/index.html +2 -2
- package/package.json +2 -1
- package/src/components/common/modals/uniform-format-files-modal.tsx +235 -0
- package/src/components/layout/mobile-sidebar.tsx +52 -14
- package/src/components/layout/nav.tsx +89 -31
- package/src/components/layout/sidebar.tsx +51 -19
- package/src/components/layout/sidelinks.tsx +8 -1
- package/src/gql/gql.ts +6 -0
- package/src/gql/graphql.ts +24 -0
- package/dist/assets/index-eRknOFHx.css +0 -1
- package/dist/assets/index-pMWV5usw.js +0 -820
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @accounter/client
|
|
2
2
|
|
|
3
|
-
## 0.0.6-alpha-
|
|
3
|
+
## 0.0.6-alpha-20250721061727-7022e2dc3b1e92ab852aa0c79aa7f61a2225797e
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -141,6 +141,12 @@
|
|
|
141
141
|
[`react-router-dom@7.7.0` ↗︎](https://www.npmjs.com/package/react-router-dom/v/7.7.0) (from
|
|
142
142
|
`7.6.3`, in `dependencies`)
|
|
143
143
|
|
|
144
|
+
- [#2322](https://github.com/Urigo/accounter-fullstack/pull/2322)
|
|
145
|
+
[`88ef12e`](https://github.com/Urigo/accounter-fullstack/commit/88ef12e4078c0cc116804bd7d2eedff0ed0c971e)
|
|
146
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - dependencies updates:
|
|
147
|
+
- Added dependency [`iconv-lite@0.6.3` ↗︎](https://www.npmjs.com/package/iconv-lite/v/0.6.3) (to
|
|
148
|
+
`dependencies`)
|
|
149
|
+
|
|
144
150
|
- [#2306](https://github.com/Urigo/accounter-fullstack/pull/2306)
|
|
145
151
|
[`a491206`](https://github.com/Urigo/accounter-fullstack/commit/a491206eeedf25ddab8e308a409357d841673062)
|
|
146
152
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - \* **New Features**
|
|
@@ -163,6 +169,24 @@
|
|
|
163
169
|
- **Bug Fixes**
|
|
164
170
|
- Fixed modal behavior to ensure correct display and filtering based on user actions.
|
|
165
171
|
|
|
172
|
+
- [#2322](https://github.com/Urigo/accounter-fullstack/pull/2322)
|
|
173
|
+
[`99de2a6`](https://github.com/Urigo/accounter-fullstack/commit/99de2a6af68733c5c7966eb9b348e5c905726302)
|
|
174
|
+
Thanks [@gilgardosh](https://github.com/gilgardosh)! - \* **New Client-Side Feature**: I've added
|
|
175
|
+
a new modal component (`FileDownloadModal`) to the client application, allowing users to select a
|
|
176
|
+
date range and trigger the generation and download of uniform format files (bkmvdata and ini)
|
|
177
|
+
directly from the UI.
|
|
178
|
+
- **Data Model Extension**: The `JournalEntry` and `BusinessMetadata` schemas have been extended
|
|
179
|
+
to support additional optional fields, such as `batchNumber`, `transactionType`,
|
|
180
|
+
`referenceDocument`, `currencyCode`, `foreignCurrencyAmount` for journal entries, and `address`
|
|
181
|
+
details for business metadata. This enriches the data available for reporting.
|
|
182
|
+
- **Uniform Format Generator Enhancement**: The `generateUniformFormatReport` function in the
|
|
183
|
+
generator package has been updated to consume and incorporate these new extended fields from the
|
|
184
|
+
`JournalEntry` and `BusinessMetadata` into the generated uniform format files, ensuring more
|
|
185
|
+
comprehensive reports.
|
|
186
|
+
- **Testing**: New unit tests have been added to verify that the uniform format generator
|
|
187
|
+
correctly handles journal entries with the newly introduced extended fields, ensuring data
|
|
188
|
+
integrity and proper report generation.
|
|
189
|
+
|
|
166
190
|
- [#2278](https://github.com/Urigo/accounter-fullstack/pull/2278)
|
|
167
191
|
[`2bab7e1`](https://github.com/Urigo/accounter-fullstack/commit/2bab7e1529ef7ee313f928f58772aefe200a16ee)
|
|
168
192
|
Thanks [@gilgardosh](https://github.com/gilgardosh)! - Enhance Href and query params handling for
|