@norwegian/core-components 6.25.0 → 6.25.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-dropdown/airport-select-dropdown.component.mjs +1 -1
- package/esm2022/lib/components/button/button.component.mjs +3 -6
- package/esm2022/lib/components/continue/continue.component.mjs +1 -1
- package/esm2022/lib/components/cover/cover.component.mjs +1 -1
- package/esm2022/lib/components/info/info.component.mjs +1 -1
- package/esm2022/lib/components/input/input.component.mjs +2 -2
- package/esm2022/lib/components/input-text/input-text.component.mjs +2 -2
- package/esm2022/lib/components/journey-selection/journey-selection.component.mjs +1 -1
- package/esm2022/lib/components/modal/modal.component.mjs +1 -1
- package/esm2022/lib/components/number-field/number-field.component.mjs +1 -1
- package/esm2022/lib/components/page-footer/page-footer.component.mjs +1 -1
- package/esm2022/lib/components/page-header/page-header.component.mjs +1 -1
- package/esm2022/lib/components/page-header-old/page-header-old.component.mjs +1 -1
- package/esm2022/lib/components/sort/sort.component.mjs +1 -1
- package/esm2022/lib/components/subsidy-discount/subsidy-discount.component.mjs +1 -1
- package/esm2022/lib/components/suggestions/suggestions.component.mjs +1 -1
- package/fesm2022/norwegian-core-components.mjs +19 -22
- package/fesm2022/norwegian-core-components.mjs.map +1 -1
- package/lib/components/button/button.component.d.ts +1 -10
- package/package.json +1 -1
- package/styles/3__base/_input.scss +1 -1
|
@@ -108,15 +108,6 @@ export declare class ButtonComponent extends NasComponentBase {
|
|
|
108
108
|
* <nas-button spaceless>Click on me!</nas-button>
|
|
109
109
|
*/
|
|
110
110
|
spaceless?: boolean;
|
|
111
|
-
/**
|
|
112
|
-
* @property Input
|
|
113
|
-
* @description
|
|
114
|
-
* Boolean to set transparent style of button. Will be transparent.
|
|
115
|
-
*
|
|
116
|
-
* @example
|
|
117
|
-
* <nas-button transparent>Click on me!</nas-button>
|
|
118
|
-
*/
|
|
119
|
-
transparent?: boolean;
|
|
120
111
|
/**
|
|
121
112
|
* @property Input
|
|
122
113
|
* @description
|
|
@@ -275,5 +266,5 @@ export declare class ButtonComponent extends NasComponentBase {
|
|
|
275
266
|
emitTrackingEvent(): void;
|
|
276
267
|
emitTrackingAndClickEvent(event: Event): void;
|
|
277
268
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
278
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "nas-button", never, { "primary": { "alias": "primary"; "required": false; }; "secondary": { "alias": "secondary"; "required": false; }; "link": { "alias": "link"; "required": false; }; "light": { "alias": "light"; "required": false; }; "large": { "alias": "large"; "required": false; }; "block": { "alias": "block"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "right": { "alias": "right"; "required": false; }; "spaceless": { "alias": "spaceless"; "required": false; }; "
|
|
269
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "nas-button", never, { "primary": { "alias": "primary"; "required": false; }; "secondary": { "alias": "secondary"; "required": false; }; "link": { "alias": "link"; "required": false; }; "light": { "alias": "light"; "required": false; }; "large": { "alias": "large"; "required": false; }; "block": { "alias": "block"; "required": false; }; "flex": { "alias": "flex"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "right": { "alias": "right"; "required": false; }; "spaceless": { "alias": "spaceless"; "required": false; }; "href": { "alias": "href"; "required": false; }; "trackingvalue": { "alias": "trackingvalue"; "required": false; }; "canContinueOnDisabled": { "alias": "canContinueOnDisabled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "cssStyle": { "alias": "cssStyle"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "overrideBaseCssClass": { "alias": "overrideBaseCssClass"; "required": false; }; "useRouterLink": { "alias": "useRouterLink"; "required": false; }; "id": { "alias": "id"; "required": false; }; "target": { "alias": "target"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "buttonlink": { "alias": "buttonlink"; "required": false; }; }, { "clickChange": "clickChange"; }, never, ["*"], false, never>;
|
|
279
270
|
}
|
package/package.json
CHANGED