@bpmn-io/form-js-viewer 1.11.1 → 1.11.3
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/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +4 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -5740,7 +5740,9 @@ function FilePicker(props) {
|
|
|
5740
5740
|
accept = ''
|
|
5741
5741
|
} = field;
|
|
5742
5742
|
/** @type {string} */
|
|
5743
|
-
const evaluatedAccept = useSingleLineTemplateEvaluation(accept
|
|
5743
|
+
const evaluatedAccept = useSingleLineTemplateEvaluation(accept, {
|
|
5744
|
+
debug: true
|
|
5745
|
+
});
|
|
5744
5746
|
const evaluatedMultiple = useBooleanExpressionEvaluation(multiple);
|
|
5745
5747
|
const errorMessageId = `${domId}-error-message`;
|
|
5746
5748
|
/** @type {File[]} */
|
|
@@ -6007,7 +6009,7 @@ class FormFields {
|
|
|
6007
6009
|
}
|
|
6008
6010
|
}
|
|
6009
6011
|
|
|
6010
|
-
const EXPRESSION_PROPERTIES = ['alt', 'appearance.prefixAdorner', 'appearance.suffixAdorner', 'conditional.hide', 'description', 'label', 'source', 'readonly', 'text', 'validate.min', 'validate.max', 'validate.minLength', 'validate.maxLength', 'valuesExpression', 'url', 'dataSource', 'columnsExpression', 'expression'];
|
|
6012
|
+
const EXPRESSION_PROPERTIES = ['alt', 'appearance.prefixAdorner', 'appearance.suffixAdorner', 'conditional.hide', 'description', 'label', 'source', 'readonly', 'text', 'validate.min', 'validate.max', 'validate.minLength', 'validate.maxLength', 'valuesExpression', 'url', 'dataSource', 'columnsExpression', 'expression', 'multiple', 'accept'];
|
|
6011
6013
|
const TEMPLATE_PROPERTIES = ['alt', 'appearance.prefixAdorner', 'appearance.suffixAdorner', 'description', 'label', 'source', 'text', 'content', 'url'];
|
|
6012
6014
|
|
|
6013
6015
|
/**
|