hosanna-ui-docs - v0.9.0
    Preparing search index...

    The IFragmentStyle interface represents a style for a view fragment. This is how the style is stored in the style registry.

    interface IFragmentStyle {
        $supportsDataMap?: boolean;
        dataMap?: IViewFragmentDataMap;
        id?: string;
        isResolutionApplied?: boolean;
        views: {
            base: IFragmentChildViewStyle[];
            disabled?: IFragmentChildViewStyle;
            focused?: IFragmentChildViewStyle;
            normal: IFragmentChildViewStyle;
            selected?: IFragmentChildViewStyle;
        };
    }
    Index

    Properties

    $supportsDataMap?: boolean
    id?: string
    isResolutionApplied?: boolean
    views: {
        base: IFragmentChildViewStyle[];
        disabled?: IFragmentChildViewStyle;
        focused?: IFragmentChildViewStyle;
        normal: IFragmentChildViewStyle;
        selected?: IFragmentChildViewStyle;
    }