identity-admin 1.25.2 → 1.25.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/lib/types/IResourceFile.d.ts +15 -0
- package/package.json +1 -1
|
@@ -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,16 @@ export interface IResourceFile {
|
|
|
507
512
|
* @default false
|
|
508
513
|
*/
|
|
509
514
|
displayEditPageInShowPage?: boolean;
|
|
515
|
+
/**
|
|
516
|
+
* Specify the path of image to be shown beside the name in the reference options
|
|
517
|
+
* @default undefined
|
|
518
|
+
*/
|
|
519
|
+
imageOnReferencePath?: string;
|
|
520
|
+
/**
|
|
521
|
+
* The option to disable displaying the image beside the name in the reference options
|
|
522
|
+
* @default false
|
|
523
|
+
*/
|
|
524
|
+
disableImageOnReference?: boolean;
|
|
510
525
|
/**
|
|
511
526
|
* An object for any extra data need to be sent with the resource file
|
|
512
527
|
* @default undefined
|