@smals-belgium-shared/vidis-medication-scheme-list 3.4.4-snapshot.16 → 3.4.4-snapshot.17
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 +3 -42
- package/README.md +3 -4
- package/assets/main-D_5IIfJ8.js +80 -0
- package/medication-scheme-list.css +1 -1
- package/medication-scheme-list.js +1 -1
- package/package.json +1 -1
- package/assets/main-CUIX4DEl.js +0 -80
package/CHANGELOG.md
CHANGED
|
@@ -164,49 +164,10 @@
|
|
|
164
164
|
### vidis-delivered-medication-detail:
|
|
165
165
|
* Fix leaflet download for ios
|
|
166
166
|
|
|
167
|
-
## v3.4.
|
|
168
|
-
### vidis-prescription-detail
|
|
169
|
-
* Mobile view : Redesign the prescription details page to provide a more structured overview.
|
|
170
|
-
|
|
171
|
-
### vidis-delivered-medication-list
|
|
172
|
-
* redesign of information banner, aligned to design kit
|
|
173
|
-
* make banner expanded by default for desktop view and collapsed for mobile view
|
|
174
|
-
|
|
175
|
-
### vidis-medication-scheme-list:
|
|
176
|
-
* Change the type of `onSelectMedication` output : new type `{ id: string; date?: string; }`, old type : `id: string`.
|
|
177
|
-
* Mobile view: the if necessary panel is expanded by default and other closed. Same behavior if you change date.
|
|
178
|
-
|
|
179
|
-
### vidis-medication-scheme-detail:
|
|
180
|
-
* Mobile view : Redesign the Medicationscheme details page to provide a more structured overview.
|
|
181
|
-
* Remove of `id` input.
|
|
182
|
-
* Add of `detail` input, with the type : `{ id: string; date?: string; }`
|
|
183
|
-
|
|
184
|
-
## __RELEASE_VERSION__ (__RELEASE_DATE__)
|
|
185
|
-
* `onError` to be emitted after reporting an error (in all webcoponents).
|
|
167
|
+
## v3.4.3 (2025-12-17)
|
|
186
168
|
### vidis-prescription-detail
|
|
187
169
|
* Masanté Demo mode data: Modify instructions in 2 languages
|
|
188
|
-
* Bugfix: hide reservation button when prescription is already reserved
|
|
189
|
-
* Add 2 new outputs navigate to the new components in mobile view, both have the data for the `info` input:
|
|
190
|
-
* `clickReserve` to navigate to the new reservation component
|
|
191
|
-
* `clickVisibility` to navigate to the new visibility component
|
|
192
|
-
* Add 2 new components for reservation and changing visibility of a prescription for mobile view:
|
|
193
|
-
* `vidis-pharmacy-reservation` with input `info` and output `finishReservation`
|
|
194
|
-
* `vidis-prescription-visibility` with input `info` and output `finishVisibility`
|
|
195
|
-
* Bugfix: replace ‘patient’ with ‘beneficiary’ in the translation for mobile view
|
|
196
|
-
|
|
197
|
-
### vidis-diarynote
|
|
198
|
-
* Add snackbar confirmation when a note is created
|
|
199
|
-
* Redesign of the sorting, adding and filtering diarynote, aligned to design kit
|
|
200
|
-
* Redesign of the cards
|
|
201
|
-
* Add new spinner when attachments are downloading
|
|
202
|
-
|
|
203
|
-
### vidis-prescription-list:
|
|
204
|
-
* Redesign of the cards
|
|
205
|
-
* Improve accessibility for the cards
|
|
206
|
-
|
|
207
|
-
### vidis-medication-scheme-detail:
|
|
208
|
-
* Bugfix: add comment section in the mobile view
|
|
209
170
|
|
|
171
|
+
## __RELEASE_VERSION__ (__RELEASE_DATE__)
|
|
210
172
|
### vidis-medication-scheme-list:
|
|
211
|
-
*
|
|
212
|
-
* Set disclaimer on the top of the page
|
|
173
|
+
* fix crash when there is no medicationscheme
|
package/README.md
CHANGED
|
@@ -54,10 +54,9 @@ The **daily view** is tailored for those who need a more specific, day-to-day br
|
|
|
54
54
|
|
|
55
55
|
## Outputs
|
|
56
56
|
|
|
57
|
-
| Name
|
|
58
|
-
|
|
59
|
-
| `onSelectMedication` |
|
|
60
|
-
| `onError` | {reported: boolean} | Emitted after the error dialog closes. reported is true if the user confirmed reporting the error; otherwise false. |
|
|
57
|
+
| Name | Type | Description |
|
|
58
|
+
|------------------------|--------|-----------------------------------------------|
|
|
59
|
+
| `onSelectMedication` | string | Notified with the selected ID code as string |
|
|
61
60
|
|
|
62
61
|
|
|
63
62
|
## Usage
|