@norwegian/core-components 7.2.3 → 7.3.1
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/esm2022/lib/components/airport-select/airport-select.component.mjs +2 -2
- package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +8 -3
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +10 -4
- package/esm2022/lib/components/datepicker/calendar/calendar.component.mjs +2 -2
- package/esm2022/lib/components/datepicker/datepicker.component.mjs +3 -3
- package/esm2022/lib/components/datepicker-combo/datepicker-combo.component.mjs +4 -4
- package/esm2022/lib/components/filter/filter.component.mjs +3 -3
- package/esm2022/lib/components/phone-number/phone-number.component.mjs +3 -3
- package/fesm2022/norwegian-core-components.mjs +29 -18
- package/fesm2022/norwegian-core-components.mjs.map +1 -1
- package/lib/components/checkbox/checkbox.component.d.ts +13 -1
- package/package.json +1 -1
- package/styles/3__base/_heading.scss +0 -15
|
@@ -63,6 +63,18 @@ export declare class CheckboxComponent extends NasComponentBase implements OnIni
|
|
|
63
63
|
* Boolean to set outlined styling
|
|
64
64
|
*/
|
|
65
65
|
outlined: boolean;
|
|
66
|
+
/**
|
|
67
|
+
* @property Input
|
|
68
|
+
* @description
|
|
69
|
+
* Boolean to set checkbox position on right side
|
|
70
|
+
*/
|
|
71
|
+
reverse: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* @property Input
|
|
74
|
+
* @description
|
|
75
|
+
* Boolean to filled the container element with 100% width.
|
|
76
|
+
*/
|
|
77
|
+
filled: boolean;
|
|
66
78
|
/**
|
|
67
79
|
* @property Input
|
|
68
80
|
* @description
|
|
@@ -134,5 +146,5 @@ export declare class CheckboxComponent extends NasComponentBase implements OnIni
|
|
|
134
146
|
inputClicked(event: Event): void;
|
|
135
147
|
onKeydown(event: KeyboardEvent): void;
|
|
136
148
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "nas-checkbox", never, { "inputId": { "alias": "inputId"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "block": { "alias": "block"; "required": false; }; "spaceless": { "alias": "spaceless"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "nasFormControlName": { "alias": "nasFormControlName"; "required": false; }; "nasFormGroup": { "alias": "nasFormGroup"; "required": false; }; }, { "checkedChange": "checkedChange"; "focusOnPrevious": "focusOnPrevious"; }, never, ["*"], false, never>;
|
|
149
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "nas-checkbox", never, { "inputId": { "alias": "inputId"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "block": { "alias": "block"; "required": false; }; "spaceless": { "alias": "spaceless"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "filled": { "alias": "filled"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "nasFormControlName": { "alias": "nasFormControlName"; "required": false; }; "nasFormGroup": { "alias": "nasFormGroup"; "required": false; }; }, { "checkedChange": "checkedChange"; "focusOnPrevious": "focusOnPrevious"; }, never, ["*"], false, never>;
|
|
138
150
|
}
|
package/package.json
CHANGED
|
@@ -19,21 +19,6 @@
|
|
|
19
19
|
letter-spacing: -0.03em;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
h1,
|
|
23
|
-
.heading1,
|
|
24
|
-
h2,
|
|
25
|
-
.heading2,
|
|
26
|
-
h3,
|
|
27
|
-
.heading3,
|
|
28
|
-
h4,
|
|
29
|
-
.heading4,
|
|
30
|
-
h5,
|
|
31
|
-
.heading5,
|
|
32
|
-
h6,
|
|
33
|
-
.heading6 {
|
|
34
|
-
@include font(base, medium);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
22
|
h1,
|
|
38
23
|
.heading1 {
|
|
39
24
|
@include font(heading, bold);
|