@hashicorp/design-system-components
Version:
Helios Design System Components
35 lines (34 loc) • 1.31 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
import type { ComponentLike } from '@glint/template';
import type { HdsApplicationStateAligns } from './types';
import type { HdsApplicationStateMediaSignature } from './media';
import type { HdsApplicationStateHeaderSignature } from './header';
import type { HdsApplicationStateBodySignature } from './body';
import type { HdsApplicationStateFooterSignature } from './footer';
export declare const ALIGNS: HdsApplicationStateAligns[];
export interface HdsApplicationStateSignature {
Args: {
align?: HdsApplicationStateAligns;
isAutoCentered?: boolean;
};
Blocks: {
default: [
{
Media?: ComponentLike<HdsApplicationStateMediaSignature>;
Header?: ComponentLike<HdsApplicationStateHeaderSignature>;
Body?: ComponentLike<HdsApplicationStateBodySignature>;
Footer?: ComponentLike<HdsApplicationStateFooterSignature>;
}
];
};
Element: HTMLDivElement;
}
export default class HdsApplicationState extends Component<HdsApplicationStateSignature> {
get isAutoCentered(): boolean;
get align(): HdsApplicationStateAligns;
get classNames(): string;
}