@smals-belgium-shared/vidis-medication-scheme-list 3.0.1-snapshot.0 → 3.0.2-snapshot.0
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 +5 -1
- package/README.md +30 -0
- package/assets/demo/v1_medicationscheme.json +1149 -0
- package/assets/main-D1MS6FXT.js +74 -0
- package/medication-scheme-list.js +1 -1
- package/package.json +1 -1
- package/assets/main-DMpmuyL6.js +0 -73
package/CHANGELOG.md
CHANGED
|
@@ -81,11 +81,15 @@
|
|
|
81
81
|
### vidis-diary-note:
|
|
82
82
|
* Support offline mode.
|
|
83
83
|
|
|
84
|
-
##
|
|
84
|
+
## v3.0.1 (2025-08-19)
|
|
85
85
|
|
|
86
|
+
* Fix demo mode + updating documentation
|
|
86
87
|
* Bugfix offline mode
|
|
88
|
+
|
|
87
89
|
### vidis-medication-scheme-detail:
|
|
88
90
|
* Support offline mode.
|
|
89
91
|
|
|
90
92
|
### vidis-medication-scheme-list:
|
|
91
93
|
* Support offline mode.
|
|
94
|
+
|
|
95
|
+
## __RELEASE_VERSION__ (__RELEASE_DATE__)
|
package/README.md
CHANGED
|
@@ -119,6 +119,36 @@ The **daily view** is tailored for those who need a more specific, day-to-day br
|
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
|
|
122
|
+
## Demo Mode Setup
|
|
123
|
+
|
|
124
|
+
To use the demo mode, ensure demo assets are accessible at _http(s)://[web-component-host]/assets_.
|
|
125
|
+
|
|
126
|
+
### Angular Configuration
|
|
127
|
+
|
|
128
|
+
To incorporate demo assets into your Angular application, modify your _angular.json_ file as follows:
|
|
129
|
+
|
|
130
|
+
```json
|
|
131
|
+
{
|
|
132
|
+
"projects": {
|
|
133
|
+
"your-angular-app": {
|
|
134
|
+
"architect": {
|
|
135
|
+
"build": {
|
|
136
|
+
"options": {
|
|
137
|
+
"assets": [
|
|
138
|
+
{
|
|
139
|
+
"glob": "**/*",
|
|
140
|
+
"input": "./node_modules/[package-name]/assets/demo",
|
|
141
|
+
"output": "/assets/"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
```
|
|
151
|
+
|
|
122
152
|
## Versioning
|
|
123
153
|
|
|
124
154
|
This project follows [Semantic Versioning][Semver]. Each release is categorized by major, minor, and patch updates. Significant changes that may break existing integrations will be introduced with major versions. Please check [CHANGELOG.md](CHANGELOG.md) file for more info.
|