@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.cjs
CHANGED
|
@@ -12757,6 +12757,7 @@ function DocumentsDataSource(props) {
|
|
|
12757
12757
|
const schema = `[
|
|
12758
12758
|
{
|
|
12759
12759
|
"documentId": "u123",
|
|
12760
|
+
"endpoint": "https://api.example.com/documents/u123",
|
|
12760
12761
|
"metadata": {
|
|
12761
12762
|
"fileName": "Document.pdf",
|
|
12762
12763
|
"contentType": "application/pdf"
|
|
@@ -12774,6 +12775,15 @@ function DocumentsDataSource(props) {
|
|
|
12774
12775
|
children: jsxRuntime.jsx("code", {
|
|
12775
12776
|
children: schema
|
|
12776
12777
|
})
|
|
12778
|
+
}), jsxRuntime.jsx("p", {
|
|
12779
|
+
children: "When using Camunda Tasklist UI, additional document reference attributes are automatically handled. Modifying the document reference may affect the document preview functionality."
|
|
12780
|
+
}), jsxRuntime.jsxs("p", {
|
|
12781
|
+
children: ["Learn more in our", ' ', jsxRuntime.jsx("a", {
|
|
12782
|
+
href: "https://docs.camunda.io/docs/8.7/components/modeler/forms/form-element-library/forms-element-library-document-preview/",
|
|
12783
|
+
target: "_blank",
|
|
12784
|
+
rel: "noopener noreferrer",
|
|
12785
|
+
children: "documentation"
|
|
12786
|
+
}), "."]
|
|
12777
12787
|
})]
|
|
12778
12788
|
});
|
|
12779
12789
|
return FeelTemplatingEntry({
|