valtech-components 2.0.986 → 2.0.987
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/atoms/button/button.component.mjs +6 -3
- package/esm2022/lib/components/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +5 -3
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/article/article.component.d.ts +1 -0
- package/lib/components/types.d.ts +2 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -79,6 +79,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
79
79
|
expand?: "full" | "block";
|
|
80
80
|
link?: string;
|
|
81
81
|
href?: string;
|
|
82
|
+
routerLink?: string | any[];
|
|
82
83
|
target?: "_blank" | "_self" | "_parent" | "_top";
|
|
83
84
|
download?: string;
|
|
84
85
|
color: import("@ionic/core").Color;
|
|
@@ -284,6 +284,8 @@ export interface ButtonMetadata {
|
|
|
284
284
|
link?: string;
|
|
285
285
|
/** Associated href link */
|
|
286
286
|
href?: string;
|
|
287
|
+
/** Angular router link (SPA navigation, no reload) */
|
|
288
|
+
routerLink?: string | any[];
|
|
287
289
|
/** Link target */
|
|
288
290
|
target?: '_blank' | '_self' | '_parent' | '_top';
|
|
289
291
|
/** Download file name */
|
package/lib/version.d.ts
CHANGED