@norwegian/core-components 6.2.0 → 6.3.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/esm2022/lib/components/accordion/accordion.component.mjs +3 -11
- package/esm2022/lib/components/filter/filter.component.mjs +1 -1
- package/esm2022/lib/components/info/info.component.mjs +1 -1
- package/esm2022/lib/components/trip-summary/trip-summary.component.mjs +1 -1
- package/fesm2022/norwegian-core-components.mjs +5 -13
- package/fesm2022/norwegian-core-components.mjs.map +1 -1
- package/lib/components/accordion/accordion.component.d.ts +1 -25
- package/package.json +1 -1
|
@@ -24,14 +24,6 @@ export declare class AccordionComponent extends NasComponentBase implements OnIn
|
|
|
24
24
|
* <nas-accordion [title]="'This is a title'">You can put any kind of elements and content here...</nas-accordion>
|
|
25
25
|
*/
|
|
26
26
|
title: string;
|
|
27
|
-
/**
|
|
28
|
-
* @property Input
|
|
29
|
-
* @description
|
|
30
|
-
* A string input value to set subheader text of component.
|
|
31
|
-
* @example
|
|
32
|
-
* <nas-accordion [subheader]="'This is a subheader'">You can put any kind of elements and content here...</nas-accordion>
|
|
33
|
-
*/
|
|
34
|
-
subheader: string;
|
|
35
27
|
/**
|
|
36
28
|
* @property Input
|
|
37
29
|
* @description
|
|
@@ -146,22 +138,6 @@ export declare class AccordionComponent extends NasComponentBase implements OnIn
|
|
|
146
138
|
* <nas-accordion info>You can put any kind of elements and content here...</nas-accordion>
|
|
147
139
|
*/
|
|
148
140
|
info?: boolean;
|
|
149
|
-
/**
|
|
150
|
-
* @property Input
|
|
151
|
-
* @description
|
|
152
|
-
* A boolean input value to set the accordion to subheader positive style.
|
|
153
|
-
* @example
|
|
154
|
-
* <nas-accordion subheader="This is subheader" subheaderPositive>You can put any kind of elements and content here...</nas-accordion>
|
|
155
|
-
*/
|
|
156
|
-
subheaderPositive?: boolean;
|
|
157
|
-
/**
|
|
158
|
-
* @property Input
|
|
159
|
-
* @description
|
|
160
|
-
* A boolean input value to set the accordion to subheader negative style.
|
|
161
|
-
* @example
|
|
162
|
-
* <nas-accordion subheader="This is subheader" subheaderNegative>You can put any kind of elements and content here...</nas-accordion>
|
|
163
|
-
*/
|
|
164
|
-
subheaderNegative?: boolean;
|
|
165
141
|
/**
|
|
166
142
|
* @property Input
|
|
167
143
|
* @description
|
|
@@ -235,5 +211,5 @@ export declare class AccordionComponent extends NasComponentBase implements OnIn
|
|
|
235
211
|
toggle(): void;
|
|
236
212
|
setHeaderType(): void;
|
|
237
213
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
238
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "nas-accordion", never, { "expanded": { "alias": "expanded"; "required": false; }; "title": { "alias": "title"; "required": false; }; "
|
|
214
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "nas-accordion", never, { "expanded": { "alias": "expanded"; "required": false; }; "title": { "alias": "title"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "simple": { "alias": "simple"; "required": false; }; "spaced": { "alias": "spaced"; "required": false; }; "small": { "alias": "small"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "containerOnToggle": { "alias": "containerOnToggle"; "required": false; }; "nopadding": { "alias": "nopadding"; "required": false; }; "transparent": { "alias": "transparent"; "required": false; }; "approve": { "alias": "approve"; "required": false; }; "primary": { "alias": "primary"; "required": false; }; "info": { "alias": "info"; "required": false; }; "badgeInfo": { "alias": "badgeInfo"; "required": false; }; "badgeSuccess": { "alias": "badgeSuccess"; "required": false; }; "badgeWarning": { "alias": "badgeWarning"; "required": false; }; "badgeError": { "alias": "badgeError"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "cssStyle": { "alias": "cssStyle"; "required": false; }; }, { "toggleChange": "toggleChange"; }, never, ["*"], false, never>;
|
|
239
215
|
}
|