UNPKG

outsystems-ui

Version:
29 lines (25 loc) 704 B
// eslint-disable-next-line @typescript-eslint/no-unused-vars namespace OSFramework.OSUI.Patterns.AnimatedLabel.Enum { /** * AnimatedLabel Enums */ export enum AnimationEvent { OnAutoFillStart = 'onAutoFillStart', } /** * Css Classes */ export enum CssClasses { InputPlaceholder = 'animated-label-input', IsActive = 'active', LabelPlaceholder = 'animated-label-text', Pattern = 'animated-label', } /** * Warning/Error messages */ export enum Messages { InputNotFound = 'Missing input or textarea.', LabelNotFound = 'We notice that a label is missing inside the Label Placeholder. In order to grant accessibility add it and assign the Input Widget accordingly.', } }