@bigbinary/neeto-team-members-frontend 2.10.12 → 2.11.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 +16 -4
- package/dist/index.cjs.js +79 -84
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +79 -84
- package/dist/index.js.map +1 -1
- package/package.json +77 -73
package/README.md
CHANGED
|
@@ -9,8 +9,9 @@ The `neeto-team-members-nano` facilitates the administration of team members wit
|
|
|
9
9
|
- [Installation](#installation)
|
|
10
10
|
- [Usage](#usage)
|
|
11
11
|
- [Frontend package](#frontend-package)
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
* [Installation](#installation-1)
|
|
13
|
+
* [Instructions for development](#instructions-for-development)
|
|
14
|
+
* [Components](#components)
|
|
14
15
|
2. [Instructions for Publishing](#instructions-for-publishing)
|
|
15
16
|
|
|
16
17
|
## Development with Host Application
|
|
@@ -83,9 +84,14 @@ Install the latest `NeetoTeamMembersNano` package using the below command:
|
|
|
83
84
|
yarn add @bigbinary/neeto-team-members-frontend
|
|
84
85
|
```
|
|
85
86
|
|
|
86
|
-
|
|
87
|
+
### Instructions for development
|
|
87
88
|
|
|
88
|
-
|
|
89
|
+
Check the [Frontend package development guide](https://neeto-engineering.neetokb.com/p/a-d34cb4b0) for step-by-step instructions to develop the frontend package.
|
|
90
|
+
|
|
91
|
+
### Components
|
|
92
|
+
|
|
93
|
+
#### `Roles`
|
|
94
|
+

|
|
89
95
|
|
|
90
96
|
This component manages team roles. It includes functionalities such as adding roles and allowing updates to roles with associated permissions.
|
|
91
97
|
|
|
@@ -127,6 +133,8 @@ export default App;
|
|
|
127
133
|
|
|
128
134
|
##### `TeamMembers`
|
|
129
135
|
|
|
136
|
+

|
|
137
|
+
|
|
130
138
|
The component offers functionalities for adding, updating and viewing team members and their roles in a tabular format. Additionally, it provides filtering options based on email, name, and role.
|
|
131
139
|
|
|
132
140
|
###### Props
|
|
@@ -167,6 +175,8 @@ export default App;
|
|
|
167
175
|
|
|
168
176
|
##### `Permissions`
|
|
169
177
|
|
|
178
|
+

|
|
179
|
+
|
|
170
180
|
The component handles the rendering and management of permissions for team members. It organizes permissions into categories, provides checkboxes for selection, and supports hierarchical structures with parent-child relationships.
|
|
171
181
|
|
|
172
182
|
###### Props
|
|
@@ -212,6 +222,8 @@ export default App;
|
|
|
212
222
|
|
|
213
223
|
##### `ManageMembers`
|
|
214
224
|
|
|
225
|
+

|
|
226
|
+
|
|
215
227
|
The component is a form-based interface for adding or editing team members.
|
|
216
228
|
|
|
217
229
|
###### Props
|