openchs-models 1.31.63 → 1.31.64
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.
|
@@ -298,6 +298,11 @@ class FormElement extends _BaseEntity.default {
|
|
|
298
298
|
return _lodash.default.isNil(repeatable) ? false : repeatable.getValue();
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
+
get disableManualActions() {
|
|
302
|
+
const disableManualActions = this.recordByKey("disableManualActions");
|
|
303
|
+
return _lodash.default.isNil(disableManualActions) ? false : disableManualActions.getValue();
|
|
304
|
+
}
|
|
305
|
+
|
|
301
306
|
get datePickerMode() {
|
|
302
307
|
const datePickerMode = this.recordByKey("datePickerMode");
|
|
303
308
|
return _lodash.default.isNil(datePickerMode) ? null : datePickerMode.getValue();
|