@bigbinary/neeto-rules-frontend 0.3.2 → 0.3.4
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 +17 -0
- package/dist/index.cjs.js +4068 -45718
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +4068 -45718
- package/dist/index.js.map +1 -1
- package/package.json +15 -6
- package/src/translations/en.json +283 -0
- package/src/translations/fr.json +9 -0
- package/src/translations/index.js +4 -0
package/README.md
CHANGED
|
@@ -90,6 +90,22 @@ yarn add @bigbinary/neetoui @bigbinary/neeto-icons ramda@^0.28.0 classnames@^2.3
|
|
|
90
90
|
| -------- | ---------------------------------------------------------------- | ------------- |
|
|
91
91
|
| required | To specify whether the input field is required or not. `Boolean` | `true` |
|
|
92
92
|
|
|
93
|
+
## Custom Action Component
|
|
94
|
+
|
|
95
|
+
**neetoRulesFrontend** allows to pass custom action components from host
|
|
96
|
+
application. Below is an example for customize task component which is being
|
|
97
|
+
sent by neeto-crm in action options.
|
|
98
|
+
|
|
99
|
+
```jsx
|
|
100
|
+
{
|
|
101
|
+
label: "Add task",
|
|
102
|
+
value: "add_task",
|
|
103
|
+
placeholder: "Task",
|
|
104
|
+
component: TaskComponent,
|
|
105
|
+
validation: TASK_VALIDATION,
|
|
106
|
+
},
|
|
107
|
+
```
|
|
108
|
+
|
|
93
109
|
## Field Components
|
|
94
110
|
|
|
95
111
|
### InputField
|
|
@@ -446,3 +462,4 @@ https://youtu.be/QBiYGP0Rhe0
|
|
|
446
462
|
| ----------------- | ----------------------------------------- |
|
|
447
463
|
| neeto-desk-web | Automation rules, Views, Canned responses |
|
|
448
464
|
| neeto-planner-web | Automation rules |
|
|
465
|
+
| neeto-crm-web | Automation rules |
|