@smals-belgium-shared/vidis-medication-scheme-list 3.4.4-snapshot.14 → 3.4.4-snapshot.16
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 +4 -1
- package/README.md +4 -3
- package/assets/{main-DnkI-Xpt.js → main-CUIX4DEl.js} +66 -66
- package/medication-scheme-list.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
* Add of `detail` input, with the type : `{ id: string; date?: string; }`
|
|
183
183
|
|
|
184
184
|
## __RELEASE_VERSION__ (__RELEASE_DATE__)
|
|
185
|
+
* `onError` to be emitted after reporting an error (in all webcoponents).
|
|
185
186
|
### vidis-prescription-detail
|
|
186
187
|
* Masanté Demo mode data: Modify instructions in 2 languages
|
|
187
188
|
* Bugfix: hide reservation button when prescription is already reserved
|
|
@@ -195,7 +196,9 @@
|
|
|
195
196
|
|
|
196
197
|
### vidis-diarynote
|
|
197
198
|
* Add snackbar confirmation when a note is created
|
|
198
|
-
*
|
|
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
|
|
199
202
|
|
|
200
203
|
### vidis-prescription-list:
|
|
201
204
|
* Redesign of the cards
|
package/README.md
CHANGED
|
@@ -54,9 +54,10 @@ 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`
|
|
57
|
+
| Name | Type | Description |
|
|
58
|
+
|----------------------|--------------------------------|---------------------------------------------------------------------------------------------------------------------|
|
|
59
|
+
| `onSelectMedication` | { id: string; date?: string; } | Notified with the selected ID code as string, date returned only if daily view |
|
|
60
|
+
| `onError` | {reported: boolean} | Emitted after the error dialog closes. reported is true if the user confirmed reporting the error; otherwise false. |
|
|
60
61
|
|
|
61
62
|
|
|
62
63
|
## Usage
|