@fluent-form/core
Version:
An Angular dynamic forms library powered by Fluent API and JSON.
20 lines (19 loc) • 1.49 kB
TypeScript
import type { Stringify } from '../../../types';
import * as i0 from "@angular/core";
type Gap = 0 | 1 | 2 | 3 | 4 | 5 | 6;
type Justify = 'start' | 'end' | 'center' | 'space-around' | 'space-between' | 'space-evenly';
type Align = 'start' | 'end' | 'center';
export declare class FluentRowDirective {
readonly gap: import("@angular/core").InputSignal<Gap | Stringify<Gap> | [x: Gap, y: Gap] | Partial<Record<"xs" | "sm" | "md" | "lg" | "xl" | "xxl", Gap | [x: Gap, y: Gap]>> | null | undefined>;
readonly justify: import("@angular/core").InputSignal<Justify | null | undefined>;
readonly align: import("@angular/core").InputSignal<Align | null | undefined>;
/** Currently matched breakpoints. */
private readonly breakpoints;
protected readonly gapPx: import("@angular/core").Signal<[number, (number | undefined)?]>;
protected readonly justifyContent: import("@angular/core").Signal<string | null | undefined>;
protected readonly alignItems: import("@angular/core").Signal<string | null | undefined>;
constructor();
static ɵfac: i0.ɵɵFactoryDeclaration<FluentRowDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<FluentRowDirective, "fluent-row,[fluentRow]", ["fluentRow"], { "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "justify": { "alias": "justify"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
}
export {};