@norwegian/core-components 5.15.1 → 5.16.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.
@@ -158,6 +158,7 @@ export declare class InputComponent extends NasComponentBase implements AfterVie
158
158
  */
159
159
  pattern: string;
160
160
  get inputId(): string;
161
+ get errorId(): string;
161
162
  private componentId;
162
163
  private modelValue;
163
164
  private disabledValue;
@@ -25,6 +25,11 @@ export declare class SelectComponent extends NasComponentBase implements OnChang
25
25
  optionComponents: QueryList<OptionComponent>;
26
26
  optgroupComponents: QueryList<OptgroupComponent>;
27
27
  private optionsValue;
28
+ /**
29
+ * @description
30
+ * The ID of the native input element
31
+ */
32
+ id: string;
28
33
  /**
29
34
  * @description
30
35
  * Add custom inline styling.
@@ -151,6 +156,8 @@ export declare class SelectComponent extends NasComponentBase implements OnChang
151
156
  ngAfterContentInit(): void;
152
157
  ngAfterViewChecked(): void;
153
158
  getSelectId(): string;
159
+ get selectId(): string;
160
+ get errorId(): string;
154
161
  toggleSelect(event: any, keydown?: boolean): void;
155
162
  blurSelect(): void;
156
163
  getClasses(): Array<ClassModel>;