identity-admin 1.25.9 → 1.25.10

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.
@@ -8,7 +8,7 @@ function getCustomPageSchema(schemaOptions) {
8
8
  type: String,
9
9
  required: true,
10
10
  index: true,
11
- unique: true
11
+ unique: true,
12
12
  },
13
13
  title: {
14
14
  type: String,
@@ -18,15 +18,20 @@ function getCustomPageSchema(schemaOptions) {
18
18
  type: String,
19
19
  required: true,
20
20
  },
21
+ visible: {
22
+ type: Boolean,
23
+ required: false,
24
+ default: true,
25
+ },
21
26
  disableMainLayoutHeader: {
22
27
  type: Boolean,
23
28
  required: false,
24
- default: false
29
+ default: false,
25
30
  },
26
31
  disableMainLayoutFooter: {
27
32
  type: Boolean,
28
33
  required: false,
29
- default: false
34
+ default: false,
30
35
  },
31
36
  }, schemaOptions);
32
37
  }
@@ -4,6 +4,7 @@ export interface ICustomPageProps {
4
4
  key: string;
5
5
  title: string;
6
6
  content: string;
7
+ visible?: boolean;
7
8
  disableMainLayoutHeader?: boolean;
8
9
  disableMainLayoutFooter?: boolean;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin",
3
- "version": "1.25.9",
3
+ "version": "1.25.10",
4
4
  "description": "",
5
5
  "main": "lib/Dashboard.js",
6
6
  "types": "lib/Dashbord.d.ts",