@norwegian/core-components 5.1.2 → 5.2.0
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/bundles/norwegian-core-components.umd.js +21 -11
- package/bundles/norwegian-core-components.umd.js.map +1 -1
- package/esm2015/lib/components/airport-select/services/airport-select.service.js +8 -6
- package/esm2015/lib/components/grid/col/col.component.js +6 -4
- package/esm2015/lib/components/grid/grid.component.js +10 -4
- package/fesm2015/norwegian-core-components.js +21 -11
- package/fesm2015/norwegian-core-components.js.map +1 -1
- package/lib/components/grid/col/col.component.d.ts +5 -0
- package/lib/components/grid/grid.component.d.ts +15 -0
- package/norwegian-core-components.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -26,6 +26,11 @@ export declare class ColComponent extends NasComponentBase implements OnInit {
|
|
|
26
26
|
* Sets column size for all extra large screen sizes and up
|
|
27
27
|
*/
|
|
28
28
|
xl: string | number;
|
|
29
|
+
/**
|
|
30
|
+
* @description
|
|
31
|
+
* Sets specific size for each columns (100/colSize = result %)
|
|
32
|
+
*/
|
|
33
|
+
colSize: string | number;
|
|
29
34
|
/**
|
|
30
35
|
* @description
|
|
31
36
|
* Represent a column component.
|
|
@@ -38,6 +38,11 @@ export declare class GridComponent extends NasComponentBase {
|
|
|
38
38
|
* Boolean to reduce space between items
|
|
39
39
|
*/
|
|
40
40
|
xtight: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* @description
|
|
43
|
+
* Boolean to reduce space between items
|
|
44
|
+
*/
|
|
45
|
+
xxtight: boolean;
|
|
41
46
|
/**
|
|
42
47
|
* @description
|
|
43
48
|
* Boolean which will remove all right and left space of each column. Top and bottom space will be kept
|
|
@@ -48,6 +53,16 @@ export declare class GridComponent extends NasComponentBase {
|
|
|
48
53
|
* Removes padding on the right and left of grid.
|
|
49
54
|
*/
|
|
50
55
|
nopadding: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* @description
|
|
58
|
+
* Removes margin on the right and left of grid.
|
|
59
|
+
*/
|
|
60
|
+
nomargin: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* @description
|
|
63
|
+
* Sets column width based on colGroup value (100/colGroup = result%)
|
|
64
|
+
*/
|
|
65
|
+
colGroup: string | number;
|
|
51
66
|
/**
|
|
52
67
|
* @description
|
|
53
68
|
* Represent a grid component.
|