@ohayojp.com/components
Version:
Common business components of ohayojp.
18 lines (17 loc) • 717 B
TypeScript
import { TemplateRef } from '@angular/core';
import { OhayoConfigService, NumberInput } from '@ohayojp.com/util';
export declare class SVContainerComponent {
static ngAcceptInputType_gutter: NumberInput;
static ngAcceptInputType_labelWidth: NumberInput;
static ngAcceptInputType_col: NumberInput;
title: string | TemplateRef<void>;
size: 'small' | 'large';
/** 列表项间距,单位为 `px` */
gutter: number;
layout: 'horizontal' | 'vertical';
labelWidth: number;
/** 指定信息最多分几列展示,最终一行几列由 col 配置结合响应式规则决定 */
col: number;
default: boolean;
constructor(configSrv: OhayoConfigService);
}