@kbss-cvut/s-forms 0.7.1-beta-4f299f9.0 → 0.7.1-beta-eef66f7.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/dist/components/FormManager.d.ts +1 -0
- package/dist/model/ValidationProcessor.d.ts +16 -0
- package/dist/model/ValidatorFactory.d.ts +4 -7
- package/dist/s-forms.cjs +1 -1
- package/dist/s-forms.cjs.map +1 -1
- package/dist/s-forms.js +1 -1
- package/dist/s-forms.js.map +1 -1
- package/dist/s-forms.modern.js +1 -1
- package/dist/s-forms.modern.js.map +1 -1
- package/dist/s-forms.umd.js +1 -1
- package/dist/s-forms.umd.js.map +1 -1
- package/dist/util/FormUtils.d.ts +1 -0
- package/package.json +1 -1
package/dist/util/FormUtils.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export default class FormUtils {
|
|
|
29
29
|
static testCondition(condition: any): boolean;
|
|
30
30
|
static _getMappedObjectsArray(jsonObjects: any, objectType: any): any;
|
|
31
31
|
static hasAnswer(question: any): boolean;
|
|
32
|
+
static getAnswerValue(question: any): any;
|
|
32
33
|
/**
|
|
33
34
|
* Resolves which format of date/time/datetime value should be used in the datetime picker.
|
|
34
35
|
* @param question Question with format info
|