@wemake4u/feel-editor 1.0.1 → 1.0.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/README.md +6 -0
- package/THIRD_PARTY_LICENSES.txt +13 -0
- package/esm2022/lib/assets/builtins.json +506 -0
- package/esm2022/lib/components/feel-editor.component.mjs +34 -177
- package/esm2022/lib/utils/parseBuiltins.mjs +25 -0
- package/fesm2022/wemake4u-feel-editor.mjs +564 -175
- package/fesm2022/wemake4u-feel-editor.mjs.map +1 -1
- package/lib/components/feel-editor.component.d.ts +10 -43
- package/lib/utils/parseBuiltins.d.ts +9 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -10,3 +10,9 @@ This component enables users to:
|
|
|
10
10
|
- **Handle change events** and validation state directly in Angular components
|
|
11
11
|
|
|
12
12
|
> Fully compatible with Angular reactive forms and validation workflows.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
This project includes @bpmn-io/feel-editor, licensed under the MIT License with attribution requirement.
|
|
16
|
+
© Camunda Services GmbH
|
|
17
|
+
https://github.com/bpmn-io/feel-editor
|
|
18
|
+
As required by the license, the original bpmn.io watermark displayed by the underlying software must remain visible and must not be removed or obscured when rendered.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Third-Party Licenses for @wemake4u/feel-editor
|
|
2
|
+
|
|
3
|
+
This project includes the following third-party components:
|
|
4
|
+
|
|
5
|
+
tslib (MIT License)
|
|
6
|
+
© Microsoft
|
|
7
|
+
https://github.com/Microsoft/tslib/blob/master/LICENSE.txt
|
|
8
|
+
|
|
9
|
+
@bpmn-io/feel-editor
|
|
10
|
+
© Camunda Services GmbH
|
|
11
|
+
MIT License with attribution requirement
|
|
12
|
+
https://github.com/bpmn-io/feel-editor
|
|
13
|
+
The bpmn.io watermark included by the software MUST remain visible.
|