valtech-components 2.0.873 → 2.0.875

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.
@@ -0,0 +1,9 @@
1
+ import { LandingSplitMetadata } from './types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LandingSplitComponent {
4
+ private readonly props_;
5
+ set props(v: LandingSplitMetadata);
6
+ readonly p: import("@angular/core").Signal<LandingSplitMetadata>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<LandingSplitComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<LandingSplitComponent, "val-landing-split", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, ["[actions]", "[visual]"], true, never>;
9
+ }
@@ -0,0 +1,6 @@
1
+ export interface LandingSplitMetadata {
2
+ kicker?: string;
3
+ title: string;
4
+ description?: string;
5
+ reversed?: boolean;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { LandingStepsMetadata } from './types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LandingStepsComponent {
4
+ private readonly props_;
5
+ set props(v: LandingStepsMetadata);
6
+ readonly p: import("@angular/core").Signal<LandingStepsMetadata>;
7
+ readonly cols: import("@angular/core").Signal<2 | 3 | 4>;
8
+ readonly accentColor: import("@angular/core").Signal<string>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<LandingStepsComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<LandingStepsComponent, "val-landing-steps", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,9 @@
1
+ export interface LandingStep {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export interface LandingStepsMetadata {
6
+ steps: LandingStep[];
7
+ columns?: 2 | 3 | 4;
8
+ accentColor?: string;
9
+ }
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "2.0.873";
5
+ export declare const VERSION = "2.0.875";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.873",
3
+ "version": "2.0.875",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"
package/public-api.d.ts CHANGED
@@ -215,6 +215,10 @@ export * from './lib/components/organisms/cards-carousel/cards-carousel.componen
215
215
  export * from './lib/components/organisms/cards-carousel/types';
216
216
  export * from './lib/components/organisms/testimonial-carousel/testimonial-carousel.component';
217
217
  export * from './lib/components/organisms/testimonial-carousel/types';
218
+ export * from './lib/components/organisms/landing-split/landing-split.component';
219
+ export * from './lib/components/organisms/landing-split/types';
220
+ export * from './lib/components/organisms/landing-steps/landing-steps.component';
221
+ export * from './lib/components/organisms/landing-steps/types';
218
222
  export * from './lib/components/organisms/fun-header/fun-header.component';
219
223
  export * from './lib/components/organisms/fun-header/types';
220
224
  export * from './lib/components/organisms/animated-terminal/animated-terminal.component';