directus-extension-flow-manager 1.3.0 → 1.4.0
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 +23 -0
- package/dist/api.js +8 -0
- package/dist/app.js +8 -0
- package/package.json +41 -18
- package/.nvmrc +0 -1
- package/screenshoots/Screenshot_20240317_123438.png +0 -0
- package/screenshoots/image.png +0 -0
- package/screenshoots/screenrecorder-2024-03-17_11.43.38.mp4 +0 -0
- package/tsconfig.json +0 -28
package/README.md
CHANGED
|
@@ -3,12 +3,25 @@ This directus module extension allows you to manage your flow content from direc
|
|
|
3
3
|
|
|
4
4
|
You can install it via ``npm install directus-extension-flow-manager``
|
|
5
5
|
|
|
6
|
+
Roadmap:
|
|
6
7
|
- [x] Duplicate flow
|
|
7
8
|
- [x] Export and import flow
|
|
8
9
|
- [x] Add flow validation when Restore
|
|
9
10
|
- [x] Feature for keeping original flow id when restore
|
|
10
11
|
- [x] Add flow grouping
|
|
11
12
|
- [x] Add feature to import directly to another directus instance
|
|
13
|
+
- [x] Add feature for search flow on navigation
|
|
14
|
+
- [x] Fix deep child flow logic when drag and drop
|
|
15
|
+
- [x] Add table view option with search, filter, header reorder, data sorting, and header resize features
|
|
16
|
+
- [x] Add feature to run Manual flow with the ability to pass the payload
|
|
17
|
+
- [x] Add Total Runs, Last Run Time and Last Updated Time on flow row
|
|
18
|
+
- [x] Add ability to bulk delete, duplicate, export, and restore flow
|
|
19
|
+
- [x] Now we can customize the folder icon and color
|
|
20
|
+
- [ ] Pagination on table view
|
|
21
|
+
- [ ] Move the category to a collection for better UX and data structure
|
|
22
|
+
- [ ] Run Another flow ability
|
|
23
|
+
|
|
24
|
+
|
|
12
25
|
|
|
13
26
|
Screenshoots
|
|
14
27
|

|
|
@@ -46,4 +59,14 @@ Changelogs:
|
|
|
46
59
|
You can click the flow row and it will bring you to the directus flow detail page
|
|
47
60
|
* Add option to delete the flow
|
|
48
61
|
You can delete the flow by clicking the delete button on the flow row option or the navigation context menu
|
|
62
|
+
- 1.4.0 (25 May 2024)
|
|
63
|
+
* Add table view option with search, filter, header reorder, data sorting, and header resize features
|
|
64
|
+
* Add feature to run Manual flow with the ability to pass the payload
|
|
65
|
+
* Add Total Runs, Last Run Time and Last Updated Time on flow row
|
|
66
|
+
* Add ability to bulk delete, duplicate, export, and restore flow
|
|
67
|
+
* Now we can customize the folder icon and color
|
|
68
|
+
* Add feature to move to the current opened category from navigation context menu
|
|
69
|
+
* Fix on MySQL because of the default value of the category
|
|
70
|
+
|
|
71
|
+
Contributing:
|
|
49
72
|
If you want to contribute kindly to create a PR and if you want to request a feature or report of a bug kindly create the Issue
|