All files ux-select-theme.ts

75% Statements 3/4
100% Branches 0/0
100% Functions 1/1
66.67% Lines 2/3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33    1x                                                         1x  
import { UxTheme } from '@aurelia-ux/core';
 
export class UxSelectTheme implements UxTheme {
  public themeKey = 'select';
 
  public foreground: string;
  public background: string;
 
  public triggerBorder: string;
  public triggerBorderDisabled: string;
  public triggerBorderFocused: string;
 
  public listMaxWidth: number;
  public listMaxWidthPx: string;
  public listMaxHeight: number;
  public listMaxHeightPx: string;
  public listBackground: string;
  public listTransition: number;
  public listTransitionS: string;
 
  public optionHover: string;
  public optionFocused: string;
  public optionSelected: string;
 
  public borderBottom: string;
  public borderBottomHover: string;
  public borderBottomSelected: string;
 
  public listboxShadow: string;
 
  public error: string;
}