@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.
- package/bundles/norwegian-core-components.umd.js +24 -2
- package/bundles/norwegian-core-components.umd.js.map +1 -1
- package/esm2015/lib/components/input/input.component.js +5 -2
- package/esm2015/lib/components/select/select.component.js +9 -2
- package/fesm2015/norwegian-core-components.js +12 -2
- package/fesm2015/norwegian-core-components.js.map +1 -1
- package/lib/components/input/input.component.d.ts +1 -0
- package/lib/components/select/select.component.d.ts +7 -0
- package/norwegian-core-components.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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>;
|