@bigbinary/neeto-fields-frontend 1.1.3 → 1.1.5
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 +9 -0
- package/dist/index.cjs.js +265 -120
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +268 -123
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +2 -0
package/README.md
CHANGED
|
@@ -186,6 +186,15 @@ default, but you can customize its behavior by passing optional props.
|
|
|
186
186
|
URL will be shown in the `NoData` screen.
|
|
187
187
|
11. `nameAliases`: This property accepts alias names as key-value pairs to be
|
|
188
188
|
displayed for the names of resource types in header and menubar.
|
|
189
|
+
12. `headerTitle`: Specify the header title explicitly. Default is 'fields'
|
|
190
|
+
13. `resources`: For owner-based field categorization, provide an array of
|
|
191
|
+
objects with `id` and `name` properties for each owner. For resource
|
|
192
|
+
type-based categorization, use an array of strings representing resource
|
|
193
|
+
types.
|
|
194
|
+
|
|
195
|
+
> If no resources are provided, for resource type-based categorization, the
|
|
196
|
+
> menu bar will fetch all resource types. For owner-based categorization, it
|
|
197
|
+
> will fetch and list all owners in the organization.
|
|
189
198
|
|
|
190
199
|
#### Usage:
|
|
191
200
|
|