@sebgroup/green-core-ng 3.1.0 → 3.5.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.
@@ -19,6 +19,8 @@ export declare class GdsContextMenuComponent implements OnInit, OnChanges, After
19
19
  showLabel?: GdsContextMenu['showLabel'];
20
20
  /** The label for the popover and menu. Should describe the context of the menu. */
21
21
  label?: GdsContextMenu['label'];
22
+ /** Maximum height of the menu list. */
23
+ maxHeight?: GdsContextMenu['maxHeight'];
22
24
  /** The placement of the popover relative to the trigger. */
23
25
  placement?: GdsContextMenu['placement'];
24
26
  /** Style Expression Property that controls the `margin` property.
@@ -72,7 +74,7 @@ export declare class GdsContextMenuComponent implements OnInit, OnChanges, After
72
74
  ngOnChanges(changes: SimpleChanges): void;
73
75
  ngAfterViewInit(): void;
74
76
  static ɵfac: i0.ɵɵFactoryDeclaration<GdsContextMenuComponent, never>;
75
- static ɵcmp: i0.ɵɵComponentDeclaration<GdsContextMenuComponent, "gds-context-menu", never, { "open": { "alias": "open"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsMenuItemClick": "gdsMenuItemClick"; "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<GdsContextMenuComponent, "gds-context-menu", never, { "open": { "alias": "open"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "marginInline": { "alias": "marginInline"; "required": false; }; "marginBlock": { "alias": "marginBlock"; "required": false; }; "alignSelf": { "alias": "alignSelf"; "required": false; }; "justifySelf": { "alias": "justifySelf"; "required": false; }; "placeSelf": { "alias": "placeSelf"; "required": false; }; "gridColumn": { "alias": "gridColumn"; "required": false; }; "gridRow": { "alias": "gridRow"; "required": false; }; "gridArea": { "alias": "gridArea"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "order": { "alias": "order"; "required": false; }; "syncFirstRender": { "alias": "syncFirstRender"; "required": false; }; }, { "gdsMenuItemClick": "gdsMenuItemClick"; "gdsUiState": "gdsUiState"; }, never, ["*"], true, never>;
76
78
  static ngAcceptInputType_open: unknown;
77
79
  static ngAcceptInputType_showLabel: unknown;
78
80
  static ngAcceptInputType_syncFirstRender: unknown;
@@ -11,7 +11,6 @@ export declare class GdsFormSummaryComponent implements OnInit, OnChanges, After
11
11
  private cdr;
12
12
  get element(): GdsFormSummary;
13
13
  constructor();
14
- /** Whether to hide the error messages under the labels. */
15
14
  hideErrors?: GdsFormSummary['hideErrors'];
16
15
  /** Whether to refresh the summary automatically as controls in the form change validation state.
17
16