File

libs/core/dynamic-form/line-break/src/line-break.model.ts

Extends

DfBaseConfig

Index

Properties

Properties

acl
Type never
columnSpan
Type never
id
Type never
infoIcon
Type never
label
Type never
spacing
Type never
testId
Type never
type
Type typeof DfLineBreakTypeName
Description

Specifies the type of the field as LINE_BREAK.

onInitEvent (Optional)
Type DfInteractiveEventConfig
Description

Configure either a PFE action or service activator configuration handler when the field's ngOnInit method is triggered.

renderName (Optional)
Type string
Description

The optional renderName is added as the attribute "data-render-name" to the df-formfield elements in the DOM. It can be used to find the rendered element of a specific field of a form.

import { DfBaseConfig } from '@allianz/taly-core/dynamic-form';

/**
 * The value to use for the `type` attribute of line break
 * formfield configs.
 */
export const DfLineBreakTypeName = 'LINE_BREAK';

export interface DfLineBreakConfig extends DfBaseConfig {
  /**
   * Specifies the type of the field as `LINE_BREAK`.
   */
  type: typeof DfLineBreakTypeName;
  label: never;
  id: never;
  infoIcon: never;
  spacing: never;
  columnSpan: never;
  testId: never;
  acl: never;
}

results matching ""

    No results matching ""