valtech-components 2.0.670 → 2.0.672
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/templates/docs-shell/docs-shell.component.mjs +45 -3
- package/esm2022/lib/components/templates/docs-shell/types.mjs +1 -1
- package/fesm2022/valtech-components.mjs +44 -2
- 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/features-list/features-list.component.d.ts +1 -1
- package/lib/components/organisms/article/article.component.d.ts +1 -1
- package/lib/components/templates/docs-shell/types.d.ts +25 -0
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ export declare class RightsFooterComponent {
|
|
|
39
39
|
/**
|
|
40
40
|
* Computed helper for align prop in template.
|
|
41
41
|
*/
|
|
42
|
-
propsAlign: import("@angular/core").Signal<"left" | "
|
|
42
|
+
propsAlign: import("@angular/core").Signal<"left" | "center" | "right">;
|
|
43
43
|
/**
|
|
44
44
|
* Computed helper for color prop in template.
|
|
45
45
|
*/
|
|
@@ -49,7 +49,7 @@ export declare class FeaturesListComponent {
|
|
|
49
49
|
iconSize: number;
|
|
50
50
|
mode: "horizontal" | "vertical";
|
|
51
51
|
gap: "small" | "medium" | "large";
|
|
52
|
-
alignment: "
|
|
52
|
+
alignment: "center" | "start";
|
|
53
53
|
}>;
|
|
54
54
|
/** Resolved icon color (handles Ionic colors and CSS colors) */
|
|
55
55
|
iconColorStyle: import("@angular/core").Signal<string>;
|
|
@@ -57,7 +57,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
57
57
|
linkConfig?: import("valtech-components").LinkProcessorConfig;
|
|
58
58
|
allowPartialBold?: boolean;
|
|
59
59
|
authorColor?: import("@ionic/core").Color;
|
|
60
|
-
alignment?: "left" | "
|
|
60
|
+
alignment?: "left" | "center" | "right";
|
|
61
61
|
showQuoteMark?: boolean;
|
|
62
62
|
};
|
|
63
63
|
getHighlightTextProps(element: ArticleElement): {
|
|
@@ -21,6 +21,31 @@ export interface DocsShellMetadata {
|
|
|
21
21
|
/** Show keyboard shortcut hint */
|
|
22
22
|
showShortcut?: boolean;
|
|
23
23
|
};
|
|
24
|
+
/**
|
|
25
|
+
* Mobile logo configuration.
|
|
26
|
+
* Used in the mobile header toolbar.
|
|
27
|
+
*/
|
|
28
|
+
mobileLogo?: {
|
|
29
|
+
/**
|
|
30
|
+
* CSS variable for the logo (recommended for dark mode support).
|
|
31
|
+
* @example '--main-logo-mini'
|
|
32
|
+
*/
|
|
33
|
+
cssVariable?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Logo image source (alternative to cssVariable).
|
|
36
|
+
*/
|
|
37
|
+
src?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Logo width.
|
|
40
|
+
* @default '32px'
|
|
41
|
+
*/
|
|
42
|
+
width?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Logo height.
|
|
45
|
+
* @default '32px'
|
|
46
|
+
*/
|
|
47
|
+
height?: string;
|
|
48
|
+
};
|
|
24
49
|
/**
|
|
25
50
|
* Footer configuration.
|
|
26
51
|
*/
|