@openmrs/ngx-formentry 5.0.1-pre.342 → 5.0.1-pre.347
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/esm2020/form-entry/value-adapters/diagnosis.adapter.mjs +16 -9
- package/fesm2015/openmrs-ngx-formentry.mjs +15 -8
- package/fesm2015/openmrs-ngx-formentry.mjs.map +1 -1
- package/fesm2020/openmrs-ngx-formentry.mjs +15 -8
- package/fesm2020/openmrs-ngx-formentry.mjs.map +1 -1
- package/package.json +9 -7
- package/styles/ngx-formentry.css +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/ngx-formentry",
|
|
3
|
-
"version": "5.0.1-pre.
|
|
3
|
+
"version": "5.0.1-pre.347",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.0"
|
|
6
6
|
},
|
|
@@ -24,13 +24,9 @@
|
|
|
24
24
|
"slick-carousel": "^1.8.1",
|
|
25
25
|
"tree-model": "^1.0.7"
|
|
26
26
|
},
|
|
27
|
-
"module": "fesm2015/openmrs-ngx-formentry.mjs",
|
|
28
|
-
"es2020": "fesm2020/openmrs-ngx-formentry.mjs",
|
|
29
|
-
"esm2020": "esm2020/openmrs-ngx-formentry.mjs",
|
|
30
|
-
"fesm2020": "fesm2020/openmrs-ngx-formentry.mjs",
|
|
31
|
-
"fesm2015": "fesm2015/openmrs-ngx-formentry.mjs",
|
|
32
|
-
"typings": "index.d.ts",
|
|
33
27
|
"exports": {
|
|
28
|
+
"./styles/ngx-formentry.css": "./styles/ngx-formentry.css",
|
|
29
|
+
"./styles/picker.min.css": "./styles/picker.min.css",
|
|
34
30
|
"./package.json": {
|
|
35
31
|
"default": "./package.json"
|
|
36
32
|
},
|
|
@@ -43,5 +39,11 @@
|
|
|
43
39
|
"default": "./fesm2020/openmrs-ngx-formentry.mjs"
|
|
44
40
|
}
|
|
45
41
|
},
|
|
42
|
+
"module": "fesm2015/openmrs-ngx-formentry.mjs",
|
|
43
|
+
"es2020": "fesm2020/openmrs-ngx-formentry.mjs",
|
|
44
|
+
"esm2020": "esm2020/openmrs-ngx-formentry.mjs",
|
|
45
|
+
"fesm2020": "fesm2020/openmrs-ngx-formentry.mjs",
|
|
46
|
+
"fesm2015": "fesm2015/openmrs-ngx-formentry.mjs",
|
|
47
|
+
"typings": "index.d.ts",
|
|
46
48
|
"sideEffects": false
|
|
47
49
|
}
|
package/styles/ngx-formentry.css
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import 'picker.min.css';
|
|
2
1
|
.ng-select {
|
|
3
2
|
padding-bottom: 1.25em;
|
|
4
3
|
min-width: 16rem;
|
|
@@ -298,7 +297,7 @@
|
|
|
298
297
|
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
|
|
299
298
|
line-height: 3em;
|
|
300
299
|
min-height: 3em;
|
|
301
|
-
white-space:
|
|
300
|
+
white-space: wrap !important;
|
|
302
301
|
overflow: hidden;
|
|
303
302
|
text-overflow: ellipsis;
|
|
304
303
|
padding: 0 16px;
|
|
@@ -306,6 +305,7 @@
|
|
|
306
305
|
position: relative;
|
|
307
306
|
color: rgba(0, 0, 0, 0.87);
|
|
308
307
|
text-align: left;
|
|
308
|
+
border-bottom: 1px solid #eee;
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
[dir='rtl'] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
|