@headless-adminapp/app 1.1.7 → 1.1.8

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.
@@ -32,12 +32,12 @@ export declare const generateValidationSchema: (<A extends SchemaAttributes = Sc
32
32
  schema: Schema<A>;
33
33
  columns: string[];
34
34
  readonlyAttributes?: string[];
35
- editableGrids: Array<{
35
+ editableGrids?: Array<{
36
36
  schema: Schema;
37
37
  columns: string[];
38
38
  attributeName: string;
39
39
  required?: boolean;
40
- }> | undefined;
40
+ }>;
41
41
  language: string;
42
42
  strings: FormValidationStringSet;
43
43
  region: string;
package/index.css CHANGED
@@ -2,3 +2,32 @@
2
2
  margin-right: 0 !important;
3
3
  margin-left: -15px;
4
4
  }
5
+
6
+ .hdl-scrollbar-shadow-top::before {
7
+ content: ' ';
8
+ position: absolute;
9
+ top: 0;
10
+ left: 0;
11
+ right: 0;
12
+ height: 40px;
13
+ pointer-events: none;
14
+ background: linear-gradient(
15
+ to bottom,
16
+ var(--colorNeutralStrokeAlpha),
17
+ transparent
18
+ );
19
+ }
20
+ .hdl-scrollbar-shadow-bottom::after {
21
+ content: ' ';
22
+ position: absolute;
23
+ bottom: 0;
24
+ left: 0;
25
+ right: 0;
26
+ height: 40px;
27
+ pointer-events: none;
28
+ background: linear-gradient(
29
+ to top,
30
+ var(--colorNeutralStrokeAlpha),
31
+ transparent
32
+ );
33
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@headless-adminapp/app",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -36,5 +36,5 @@
36
36
  "uuid": "11.0.3",
37
37
  "yup": "^1.4.0"
38
38
  },
39
- "gitHead": "e5d75e8b5da3f818064090455eefd3cb27b5a2ce"
39
+ "gitHead": "918b655a582c5c63864e8bbe6999289ec959b917"
40
40
  }