@bpmn-io/form-js-editor 1.15.0 → 1.15.1
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 +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +10 -0
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -12737,6 +12737,7 @@ function DocumentsDataSource(props) {
|
|
|
12737
12737
|
const schema = `[
|
|
12738
12738
|
{
|
|
12739
12739
|
"documentId": "u123",
|
|
12740
|
+
"endpoint": "https://api.example.com/documents/u123",
|
|
12740
12741
|
"metadata": {
|
|
12741
12742
|
"fileName": "Document.pdf",
|
|
12742
12743
|
"contentType": "application/pdf"
|
|
@@ -12754,6 +12755,15 @@ function DocumentsDataSource(props) {
|
|
|
12754
12755
|
children: jsx("code", {
|
|
12755
12756
|
children: schema
|
|
12756
12757
|
})
|
|
12758
|
+
}), jsx("p", {
|
|
12759
|
+
children: "When using Camunda Tasklist UI, additional document reference attributes are automatically handled. Modifying the document reference may affect the document preview functionality."
|
|
12760
|
+
}), jsxs("p", {
|
|
12761
|
+
children: ["Learn more in our", ' ', jsx("a", {
|
|
12762
|
+
href: "https://docs.camunda.io/docs/8.7/components/modeler/forms/form-element-library/forms-element-library-document-preview/",
|
|
12763
|
+
target: "_blank",
|
|
12764
|
+
rel: "noopener noreferrer",
|
|
12765
|
+
children: "documentation"
|
|
12766
|
+
}), "."]
|
|
12757
12767
|
})]
|
|
12758
12768
|
});
|
|
12759
12769
|
return FeelTemplatingEntry({
|