valtech-components 2.0.883 → 2.0.885
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/molecules/footer-links/footer-links.component.mjs +17 -11
- package/esm2022/lib/components/molecules/footer-links/types.mjs +1 -1
- package/esm2022/lib/components/organisms/company-footer/company-footer.component.mjs +6 -3
- package/esm2022/lib/components/organisms/company-footer/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +22 -13
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +1 -1
- package/lib/components/molecules/footer-links/types.d.ts +2 -2
- package/lib/components/organisms/article/article.component.d.ts +1 -1
- package/lib/components/organisms/company-footer/company-footer.component.d.ts +1 -0
- package/lib/components/organisms/company-footer/types.d.ts +2 -0
- package/lib/components/organisms/landing-steps/landing-steps.component.d.ts +1 -1
- package/lib/components/organisms/toolbar/toolbar.component.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ export declare class RightsFooterComponent {
|
|
|
43
43
|
/**
|
|
44
44
|
* Computed helper for color prop in template.
|
|
45
45
|
*/
|
|
46
|
-
propsColor: import("@angular/core").Signal<"
|
|
46
|
+
propsColor: import("@angular/core").Signal<"medium" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "dark" | "light">;
|
|
47
47
|
/**
|
|
48
48
|
* Computed helper for withMargin prop in template.
|
|
49
49
|
*/
|
|
@@ -39,8 +39,8 @@ export interface FooterLinksMetadata {
|
|
|
39
39
|
logoHeight?: string;
|
|
40
40
|
/** Route to navigate when logo is clicked */
|
|
41
41
|
logoRoute?: string;
|
|
42
|
-
/** Optional divider configuration */
|
|
43
|
-
divider?: DividerMetadata;
|
|
42
|
+
/** Optional divider configuration. Set to false to hide the divider. */
|
|
43
|
+
divider?: DividerMetadata | false;
|
|
44
44
|
/** Social media links */
|
|
45
45
|
socialLinks?: SocialLinkMetadata[];
|
|
46
46
|
/** Language selector configuration. Set to false to hide. */
|
|
@@ -90,7 +90,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
90
90
|
contentInterpolation?: Record<string, string | number>;
|
|
91
91
|
icon?: import("valtech-components").IconMetada;
|
|
92
92
|
shape?: "round";
|
|
93
|
-
size?: "
|
|
93
|
+
size?: "small" | "large" | "default";
|
|
94
94
|
fill?: "default" | "clear" | "outline" | "solid";
|
|
95
95
|
type: "button" | "submit" | "reset";
|
|
96
96
|
token?: string;
|
|
@@ -35,6 +35,7 @@ export declare class CompanyFooterComponent {
|
|
|
35
35
|
propsWithRoundedTop: import("@angular/core").Signal<boolean>;
|
|
36
36
|
propsBorderless: import("@angular/core").Signal<boolean>;
|
|
37
37
|
propsTopRadius: import("@angular/core").Signal<string>;
|
|
38
|
+
propsBackground: import("@angular/core").Signal<string>;
|
|
38
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompanyFooterComponent, never>;
|
|
39
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<CompanyFooterComponent, "val-company-footer", never, { "props": { "alias": "props"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
40
41
|
}
|
|
@@ -19,4 +19,6 @@ export interface CompanyFooterMetadata {
|
|
|
19
19
|
roundedTop?: boolean | string;
|
|
20
20
|
/** Remove the top border/separator explicitly (also implied by roundedTop). */
|
|
21
21
|
borderless?: boolean;
|
|
22
|
+
/** Custom background color (any CSS value). Takes precedence over withBackground. */
|
|
23
|
+
background?: string;
|
|
22
24
|
}
|
|
@@ -4,7 +4,7 @@ export declare class LandingStepsComponent {
|
|
|
4
4
|
private readonly props_;
|
|
5
5
|
set props(v: LandingStepsMetadata);
|
|
6
6
|
readonly p: import("@angular/core").Signal<LandingStepsMetadata>;
|
|
7
|
-
readonly cols: import("@angular/core").Signal<
|
|
7
|
+
readonly cols: import("@angular/core").Signal<2 | 3 | 4>;
|
|
8
8
|
readonly accentColor: import("@angular/core").Signal<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<LandingStepsComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<LandingStepsComponent, "val-landing-steps", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -72,7 +72,7 @@ export declare class ToolbarComponent implements OnInit {
|
|
|
72
72
|
};
|
|
73
73
|
showFlags?: boolean;
|
|
74
74
|
color: import("@ionic/core").Color;
|
|
75
|
-
size?: "
|
|
75
|
+
size?: "small" | "large" | "default";
|
|
76
76
|
fill?: "default" | "clear" | "outline" | "solid";
|
|
77
77
|
shape?: "round";
|
|
78
78
|
expand?: "full" | "block";
|
package/lib/version.d.ts
CHANGED