overflowHide.d.ts 325 B

1234567
  1. import { OverflowHideLabelTransform } from '../spec';
  2. import { LabelTransformComponent as LLC } from '../runtime';
  3. export type OverflowHideOptions = Omit<OverflowHideLabelTransform, 'type'>;
  4. /**
  5. * Hide the label when the label is overflowed from the element.
  6. */
  7. export declare const OverflowHide: LLC<OverflowHideOptions>;