GitHub

Compactable

Compactable enforces consistent use of the compact property across components.

Directives

DaffCompactableDirective

import { DaffCompactableDirective } from '@daffodil/design'

Enforces consistent use of the compact property.

@Directive()
class DaffCompactableDirective {
  @Input() compact: boolean = false
}

Inputs

compact
boolean
Defaultfalse
Description

Whether the component is compact.


Types

DaffCompactable

Deprecated

import { DaffCompactable } from '@daffodil/design'

interface DaffCompactable {
  compact: boolean
}