design-angular-kit 1.1.1 → 1.1.2
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.
|
@@ -10,26 +10,26 @@ export declare class ItNavscrollComponent implements OnInit {
|
|
|
10
10
|
/**
|
|
11
11
|
* Header of the Navscroll
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
header: string;
|
|
14
14
|
/**
|
|
15
15
|
* A list of links
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
items: Array<NavscrollItem>;
|
|
18
18
|
/**
|
|
19
19
|
* Border position
|
|
20
20
|
* @default left
|
|
21
21
|
*/
|
|
22
|
-
|
|
22
|
+
borderPosition: 'left' | 'right';
|
|
23
23
|
/**
|
|
24
24
|
* Alignment
|
|
25
25
|
* @default top
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
alignment: 'top' | 'bottom';
|
|
28
28
|
/**
|
|
29
29
|
* Theme
|
|
30
30
|
* @default light
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
theme: 'light' | 'dark';
|
|
33
33
|
/**
|
|
34
34
|
* Custom template for the content section
|
|
35
35
|
*/
|
package/package.json
CHANGED