mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00

* feat: add 3d rotation * chore: fix build errors * chore: fix tslint errors * chore: add @types/chai dev dep * chore: unused import cleanup * chore: update tests for x,y rotation * chore: rebase upstream/master * fix: iOS Affine Transform test verification * feat(css): Added optional css-tree parser (#8076) * feat(css): Added optional css-tree parser * test: css-tree parser compat tests * test: more css-tree compat tests * feat(dialogs): Setting the size of popup dialog thru dialog options (#8041) * Added iOS specific height and width attributes to ShowModalOptions * Set the height and width of the popup dialog to the presenting controller * dialog options ios attributes presentationStyle, height & width are made optional * Updated NativeScript.api.md for public API changes * Update with git properties * Public API * CLA update * fix: use iOS native-helper for 3d-rotate * test: Fix tests using _getTransformMismatchError * fix: view.__hasTransfrom not set updating properly * test: fix css-animations test page Co-authored-by: Alexander Vakrilov <alexander.vakrilov@gmail.com> Co-authored-by: Darin Dimitrov <darin.dimitrov@gmail.com> Co-authored-by: Shailesh Lolam <slolam@live.com> Co-authored-by: Dimitar Topuzov <dtopuzov@gmail.com>
235 lines
7.2 KiB
TypeScript
235 lines
7.2 KiB
TypeScript
/**
|
|
* @module "ui/styling/style"
|
|
*/ /** */
|
|
|
|
import { Length, PercentLength, ViewBase, Observable, BackgroundRepeat, Visibility, HorizontalAlignment, VerticalAlignment, dip } from "../../core/view";
|
|
import { Color } from "../../../color";
|
|
import { Background } from "../background";
|
|
import { Font, FontStyle, FontWeight } from "../font";
|
|
import { TextAlignment, TextDecoration, TextTransform, WhiteSpace } from "../../text-base";
|
|
import {
|
|
FlexDirection, FlexWrap, JustifyContent, AlignItems, AlignContent,
|
|
Order, FlexGrow, FlexShrink, FlexWrapBefore, AlignSelf
|
|
} from "../../layouts/flexbox-layout";
|
|
import { LinearGradient } from "../gradient";
|
|
|
|
export interface Thickness {
|
|
left: number;
|
|
top: number;
|
|
right: number;
|
|
bottom: number;
|
|
}
|
|
|
|
export interface BorderColor {
|
|
top: Color;
|
|
right: Color;
|
|
bottom: Color;
|
|
left: Color;
|
|
}
|
|
|
|
export interface CommonLayoutParams {
|
|
width: number;
|
|
height: number;
|
|
|
|
widthPercent: number;
|
|
heightPercent: number;
|
|
|
|
leftMargin: number;
|
|
topMargin: number;
|
|
rightMargin: number;
|
|
bottomMargin: number;
|
|
|
|
leftMarginPercent: number;
|
|
topMarginPercent: number;
|
|
rightMarginPercent: number;
|
|
bottomMarginPercent: number;
|
|
|
|
horizontalAlignment: HorizontalAlignment;
|
|
verticalAlignment: VerticalAlignment;
|
|
}
|
|
|
|
export class Style extends Observable {
|
|
public fontInternal: Font;
|
|
public backgroundInternal: Background;
|
|
|
|
public rotate: number;
|
|
public rotateX: number;
|
|
public rotateY: number;
|
|
public perspective: number;
|
|
public scaleX: number;
|
|
public scaleY: number;
|
|
public translateX: dip;
|
|
public translateY: dip;
|
|
|
|
public clipPath: string;
|
|
public color: Color;
|
|
public tintColor: Color;
|
|
public placeholderColor: Color;
|
|
|
|
public background: string;
|
|
public backgroundColor: Color;
|
|
public backgroundImage: string | LinearGradient;
|
|
public backgroundRepeat: BackgroundRepeat;
|
|
public backgroundSize: string;
|
|
public backgroundPosition: string;
|
|
|
|
public borderColor: string | Color;
|
|
public borderTopColor: Color;
|
|
public borderRightColor: Color;
|
|
public borderBottomColor: Color;
|
|
public borderLeftColor: Color;
|
|
public borderWidth: string | Length;
|
|
public borderTopWidth: Length;
|
|
public borderRightWidth: Length;
|
|
public borderBottomWidth: Length;
|
|
public borderLeftWidth: Length;
|
|
public borderRadius: string | Length;
|
|
public borderTopLeftRadius: Length;
|
|
public borderTopRightRadius: Length;
|
|
public borderBottomRightRadius: Length;
|
|
public borderBottomLeftRadius: Length;
|
|
|
|
public fontSize: number;
|
|
public fontFamily: string;
|
|
public fontStyle: FontStyle;
|
|
public fontWeight: FontWeight;
|
|
public font: string;
|
|
|
|
public androidElevation: number;
|
|
public androidDynamicElevationOffset: number;
|
|
public zIndex: number;
|
|
public opacity: number;
|
|
public visibility: Visibility;
|
|
|
|
public letterSpacing: number;
|
|
public lineHeight: number;
|
|
public textAlignment: TextAlignment;
|
|
public textDecoration: TextDecoration;
|
|
public textTransform: TextTransform;
|
|
public whiteSpace: WhiteSpace;
|
|
|
|
public minWidth: Length;
|
|
public minHeight: Length;
|
|
public width: PercentLength;
|
|
public height: PercentLength;
|
|
public margin: string | PercentLength;
|
|
public marginLeft: PercentLength;
|
|
public marginTop: PercentLength;
|
|
public marginRight: PercentLength;
|
|
public marginBottom: PercentLength;
|
|
public padding: string | Length;
|
|
public paddingLeft: Length;
|
|
public paddingTop: Length;
|
|
public paddingRight: Length;
|
|
public paddingBottom: Length;
|
|
public horizontalAlignment: HorizontalAlignment;
|
|
public verticalAlignment: VerticalAlignment;
|
|
|
|
// TabView-specific props
|
|
public tabTextFontSize: number;
|
|
public tabTextColor: Color;
|
|
public tabBackgroundColor: Color;
|
|
public selectedTabTextColor: Color;
|
|
public androidSelectedTabHighlightColor: Color;
|
|
|
|
// ListView-specific props
|
|
public separatorColor: Color;
|
|
|
|
// SegmentedBar-specific props
|
|
public selectedBackgroundColor: Color;
|
|
|
|
// Page-specific props
|
|
public statusBarStyle: "light" | "dark";
|
|
public androidStatusBarBackground: Color;
|
|
|
|
// Android ActionBar specific props
|
|
|
|
/**
|
|
* Gets or sets the content inset for the android actionbar.
|
|
* The content inset affects the valid area for ActionBar content; insets can be used to effectively align ActionBar content along well-known gridlines.
|
|
*
|
|
* This property is effective on Android API level 21 or later.
|
|
*/
|
|
public androidContentInset: string | Length;
|
|
|
|
/**
|
|
* Gets or sets the left content inset for the android actionbar.
|
|
* The content inset affects the valid area for ActionBar content; insets can be used to effectively align ActionBar content along well-known gridlines.
|
|
*
|
|
* This property is effective on Android API level 21 or later.
|
|
*/
|
|
public androidContentInsetLeft: Length;
|
|
|
|
/**
|
|
* Gets or sets the right content inset for the android actionbar.
|
|
* The content inset affects the valid area for ActionBar content; insets can be used to effectively align ActionBar content along well-known gridlines.
|
|
*
|
|
* This property is effective on Android API level 21 or later.
|
|
*/
|
|
public androidContentInsetRight: Length;
|
|
|
|
constructor(ownerView: ViewBase | WeakRef<ViewBase>);
|
|
public viewRef: WeakRef<ViewBase>;
|
|
|
|
/**
|
|
* @deprecated use `viewRef` instead.
|
|
*
|
|
* The `ViewBase` object associated with the Style!
|
|
*/
|
|
public view: ViewBase;
|
|
|
|
//flexbox layout properties
|
|
public flexDirection: FlexDirection;
|
|
public flexWrap: FlexWrap;
|
|
public justifyContent: JustifyContent;
|
|
public alignItems: AlignItems;
|
|
public alignContent: AlignContent;
|
|
public order: Order;
|
|
public flexGrow: FlexGrow;
|
|
public flexShrink: FlexShrink;
|
|
public flexWrapBefore: FlexWrapBefore;
|
|
public alignSelf: AlignSelf;
|
|
|
|
/**
|
|
* The property bag is a simple class that is paired with the Style class.
|
|
* Setting regular css properties on the PropertyBag should simply preserve their values.
|
|
* Setting shorthand css properties on the PropertyBag should decompose the provided value, and set each of the shorthand composite properties.
|
|
* The shorthand properties are defined as non-enumerable so it should be safe to for-in the keys that are set in the bag.
|
|
*/
|
|
public readonly PropertyBag: PropertyBagClass;
|
|
|
|
/**
|
|
* Set a scoped css-value. These are css-variables set from CssState
|
|
*/
|
|
public setScopedCssVariable(varName: string, value: string): void;
|
|
|
|
/**
|
|
* Set a unscoped css-value. These are css-variables set on view.style
|
|
*/
|
|
public setUnscopedCssVariable(varName: string, value: string): void;
|
|
|
|
/**
|
|
* Get value of the css-variable.
|
|
* If the value is not set on this style-object, try the parent view.
|
|
*/
|
|
public getCssVariable(varName: string): string | null;
|
|
|
|
/**
|
|
* Remove all scoped css-variables
|
|
*/
|
|
public resetScopedCssVariables(): void;
|
|
|
|
/**
|
|
* Remove all unscoped css-variables
|
|
*/
|
|
public resetUnscopedCssVariables(): void;
|
|
}
|
|
|
|
interface PropertyBagClass {
|
|
new(): PropertyBag;
|
|
prototype: PropertyBag;
|
|
}
|
|
interface PropertyBag {
|
|
[property: string]: string;
|
|
}
|