@norwegian/core-components 5.1.4 → 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.
@@ -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.