Files
NativeScript/packages/core/ui/button/button-common.ts
Nathan Walker 4b36334d01 ci: tests
2024-02-11 21:50:31 -08:00

26 lines
715 B
TypeScript

import { Button as ButtonDefinition } from '.';
import { TextBase } from '../text-base';
import { CSSType } from '../core/view';
import { booleanConverter } from '../core/view-base';
import { AccessibilityRole } from '../../accessibility';
@CSSType('Button')
export abstract class ButtonBase extends TextBase implements ButtonDefinition {
public static tapEvent = 'tap';
accessibilityRole = AccessibilityRole.Button;
get textWrap(): boolean {
return this.style.whiteSpace === 'normal';
}
set textWrap(value: boolean) {
if (typeof value === 'string') {
value = booleanConverter(value);
}
this.style.whiteSpace = value ? 'normal' : 'nowrap';
}
}
ButtonBase.prototype.recycleNativeView = 'auto';