@smals-belgium-shared/vidis-medication-scheme-detail 3.4.4-snapshot.15 → 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 -41
- package/README.md +16 -11
- package/assets/main-UX2GmCV4.js +40 -0
- package/medication-scheme-detail.css +1 -1
- package/medication-scheme-detail.js +1 -1
- package/package.json +1 -1
- package/assets/main-DHyILkuo.js +0 -42
package/CHANGELOG.md
CHANGED
|
@@ -164,48 +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__)
|
|
167
|
+
## v3.4.3 (2025-12-17)
|
|
185
168
|
### vidis-prescription-detail
|
|
186
169
|
* Masanté Demo mode data: Modify instructions in 2 languages
|
|
187
|
-
* Bugfix: hide reservation button when prescription is already reserved
|
|
188
|
-
* Add 2 new outputs navigate to the new components in mobile view, both have the data for the `info` input:
|
|
189
|
-
* `clickReserve` to navigate to the new reservation component
|
|
190
|
-
* `clickVisibility` to navigate to the new visibility component
|
|
191
|
-
* Add 2 new components for reservation and changing visibility of a prescription for mobile view:
|
|
192
|
-
* `vidis-pharmacy-reservation` with input `info` and output `finishReservation`
|
|
193
|
-
* `vidis-prescription-visibility` with input `info` and output `finishVisibility`
|
|
194
|
-
* Bugfix: replace ‘patient’ with ‘beneficiary’ in the translation for mobile view
|
|
195
|
-
|
|
196
|
-
### vidis-diarynote
|
|
197
|
-
* Add snackbar confirmation when a note is created
|
|
198
|
-
* Redesign of the sorting, adding and filtering diarynote, aligned to design kit
|
|
199
|
-
* Redesign of the cards
|
|
200
|
-
* Add new spinner when attachments are downloading
|
|
201
|
-
|
|
202
|
-
### vidis-prescription-list:
|
|
203
|
-
* Redesign of the cards
|
|
204
|
-
* Improve accessibility for the cards
|
|
205
|
-
|
|
206
|
-
### vidis-medication-scheme-detail:
|
|
207
|
-
* Bugfix: add comment section in the mobile view
|
|
208
170
|
|
|
171
|
+
## __RELEASE_VERSION__ (__RELEASE_DATE__)
|
|
209
172
|
### vidis-medication-scheme-list:
|
|
210
|
-
*
|
|
211
|
-
* Set disclaimer on the top of the page
|
|
173
|
+
* fix crash when there is no medicationscheme
|
package/README.md
CHANGED
|
@@ -39,17 +39,22 @@ The **daily view** is tailored for those who need a more specific, day-to-day br
|
|
|
39
39
|
|
|
40
40
|
## Inputs
|
|
41
41
|
|
|
42
|
-
| Name | Mandatory | Possible values
|
|
43
|
-
|
|
44
|
-
| `language` | true | `en`, `de`, `fr`, `nl`
|
|
45
|
-
| `configName` | true | `acc`, `prod`
|
|
46
|
-
| `services` | true | N/A
|
|
47
|
-
| `professional` | true | `true`, `false`
|
|
48
|
-
| `ssin` | true | N/A
|
|
49
|
-
| `offlineDataStorageEnabled` | true | `true`, `false`
|
|
50
|
-
| `isOfflineAuthenticated` | true | `true`, `false`
|
|
51
|
-
| `exchangeClientId` | true | N/A
|
|
52
|
-
|
|
42
|
+
| Name | Mandatory | Possible values | Description |
|
|
43
|
+
|-----------------------------|-----------|------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
44
|
+
| `language` | true | `en`, `de`, `fr`, `nl` | The language holds the current language as a value, which means it can change over time if the user changes his/her preferred language. The web component adapts the translations based on the value set. The values of the language property are defined in the Language enum. |
|
|
45
|
+
| `configName` | true | `acc`, `prod` | Name of the configuration the application and the components are being deployed to. |
|
|
46
|
+
| `services` | true | N/A | Set of services to be consumed by the component. see [USAGE](#Usage). |
|
|
47
|
+
| `professional` | true | `true`, `false` | Indicates whether the component is being used in a professional context. If set to `true`, the `ssin` input must be provided and will be used to identify the patient. If `false`, the SSIN will be retrieved automatically from the authentication token. |
|
|
48
|
+
| `ssin` | true | N/A | The patient's SSIN. When `professional` is `false`, this value is ignored and the SSIN is extracted from the authentication token. |
|
|
49
|
+
| `offlineDataStorageEnabled` | true | `true`, `false` | A boolean flag indicating whether offline data storage has been enabled by the user. When true, the web component can store and retrieve data locally for offline access. |
|
|
50
|
+
| `isOfflineAuthenticated` | true | `true`, `false` | A boolean flag indicating whether the web component is being accessed from an offline state. |
|
|
51
|
+
| `exchangeClientId` | true | N/A | The client id used for the token exchange |
|
|
52
|
+
|
|
53
|
+
## Outputs
|
|
54
|
+
|
|
55
|
+
| Name | Type | Description |
|
|
56
|
+
|------------------------|--------|-----------------------------------------------|
|
|
57
|
+
| `onSelectMedication` | string | Notified with the selected ID code as string |
|
|
53
58
|
|
|
54
59
|
|
|
55
60
|
## Usage
|