mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
feat(HtmlView): selectable property (#10057)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { CssProperty } from '../core/properties';
|
||||
import { View, CSSType } from '../core/view';
|
||||
import { booleanConverter } from '../core/view-base';
|
||||
import { Property } from '../core/properties';
|
||||
import { Style } from '../styling/style';
|
||||
import { Color } from '../../color';
|
||||
@@ -8,6 +9,7 @@ import { HtmlView as HtmlViewDefinition } from '.';
|
||||
@CSSType('HtmlView')
|
||||
export class HtmlViewBase extends View implements HtmlViewDefinition {
|
||||
public html: string;
|
||||
public selectable: boolean;
|
||||
}
|
||||
|
||||
HtmlViewBase.prototype.recycleNativeView = 'auto';
|
||||
@@ -20,6 +22,13 @@ export const htmlProperty = new Property<HtmlViewBase, string>({
|
||||
});
|
||||
htmlProperty.register(HtmlViewBase);
|
||||
|
||||
export const selectableProperty = new Property<HtmlViewBase, boolean>({
|
||||
name: 'selectable',
|
||||
defaultValue: true,
|
||||
valueConverter: booleanConverter,
|
||||
});
|
||||
selectableProperty.register(HtmlViewBase);
|
||||
|
||||
export const linkColorProperty = new CssProperty<Style, Color>({
|
||||
name: 'linkColor',
|
||||
cssName: 'link-color',
|
||||
|
||||
Reference in New Issue
Block a user