identity-admin 1.25.1 → 1.25.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.
@@ -254,6 +254,11 @@ export interface IFieldValue {
254
254
  * @default undefined
255
255
  */
256
256
  valuePath?: string;
257
+ /**
258
+ * Specify if this property is clickable or not in the list view.
259
+ * @default undefined
260
+ */
261
+ isClickable?: boolean;
257
262
  }
258
263
  export interface IVirtualValue {
259
264
  /**
@@ -507,6 +512,13 @@ export interface IResourceFile {
507
512
  * @default false
508
513
  */
509
514
  displayEditPageInShowPage?: boolean;
515
+ /**
516
+ * An object for any extra data need to be sent with the resource file
517
+ * @default undefined
518
+ */
519
+ extras?: {
520
+ [key: string]: any;
521
+ };
510
522
  };
511
523
  /**
512
524
  * Array of properties that should be appeared in the list action.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin",
3
- "version": "1.25.1",
3
+ "version": "1.25.3",
4
4
  "description": "",
5
5
  "main": "lib/Dashboard.js",
6
6
  "types": "lib/Dashbord.d.ts",