Files
Ross Gerbasi 6c6f867ce4 refactor(sass): tweaks to the alpha css variables (#14223)
* alpha tweaks

* added alpha-input
cleanup for theme-builder

* removed global variables

* style(searchbar): fix indentation

closes #14196
2018-03-30 10:27:58 -04:00

218 lines
5.3 KiB
TypeScript

/**
* This is an autogenerated file created by the Stencil build process.
* It contains typing information for all components that exist in this project
* and imports for stencil collections that might be configured in your stencil.config.js file
*/
declare global {
namespace JSX {
interface Element {}
export interface IntrinsicElements {}
}
namespace JSXElements {}
interface HTMLStencilElement extends HTMLElement {
componentOnReady(): Promise<this>;
componentOnReady(done: (ele?: this) => void): void;
forceUpdate(): void;
}
interface HTMLAttributes {}
}
import {
Color,
} from './components/Color';
import {
AppPreview as AppPreview
} from './components/app-preview/app-preview';
declare global {
interface HTMLAppPreviewElement extends AppPreview, HTMLStencilElement {
}
var HTMLAppPreviewElement: {
prototype: HTMLAppPreviewElement;
new (): HTMLAppPreviewElement;
};
interface HTMLElementTagNameMap {
"app-preview": HTMLAppPreviewElement;
}
interface ElementTagNameMap {
"app-preview": HTMLAppPreviewElement;
}
namespace JSX {
interface IntrinsicElements {
"app-preview": JSXElements.AppPreviewAttributes;
}
}
namespace JSXElements {
export interface AppPreviewAttributes extends HTMLAttributes {
cssText?: string;
demoMode?: string;
demoUrl?: string;
hoverProperty?: string;
}
}
}
import {
CssText as CssText
} from './components/css-text/css-text';
declare global {
interface HTMLCssTextElement extends CssText, HTMLStencilElement {
}
var HTMLCssTextElement: {
prototype: HTMLCssTextElement;
new (): HTMLCssTextElement;
};
interface HTMLElementTagNameMap {
"css-text": HTMLCssTextElement;
}
interface ElementTagNameMap {
"css-text": HTMLCssTextElement;
}
namespace JSX {
interface IntrinsicElements {
"css-text": JSXElements.CssTextAttributes;
}
}
namespace JSXElements {
export interface CssTextAttributes extends HTMLAttributes {
cssText?: string;
themeName?: string;
}
}
}
import {
DemoSelection as DemoSelection
} from './components/demo-selection/demo-selection';
declare global {
interface HTMLDemoSelectionElement extends DemoSelection, HTMLStencilElement {
}
var HTMLDemoSelectionElement: {
prototype: HTMLDemoSelectionElement;
new (): HTMLDemoSelectionElement;
};
interface HTMLElementTagNameMap {
"demo-selection": HTMLDemoSelectionElement;
}
interface ElementTagNameMap {
"demo-selection": HTMLDemoSelectionElement;
}
namespace JSX {
interface IntrinsicElements {
"demo-selection": JSXElements.DemoSelectionAttributes;
}
}
namespace JSXElements {
export interface DemoSelectionAttributes extends HTMLAttributes {
demoData?: { name: string, url: string }[];
demoMode?: string;
demoUrl?: string;
}
}
}
import {
ThemeBuilder as ThemeBuilder
} from './components/theme-builder/theme-builder';
declare global {
interface HTMLThemeBuilderElement extends ThemeBuilder, HTMLStencilElement {
}
var HTMLThemeBuilderElement: {
prototype: HTMLThemeBuilderElement;
new (): HTMLThemeBuilderElement;
};
interface HTMLElementTagNameMap {
"theme-builder": HTMLThemeBuilderElement;
}
interface ElementTagNameMap {
"theme-builder": HTMLThemeBuilderElement;
}
namespace JSX {
interface IntrinsicElements {
"theme-builder": JSXElements.ThemeBuilderAttributes;
}
}
namespace JSXElements {
export interface ThemeBuilderAttributes extends HTMLAttributes {
}
}
}
import {
ThemeSelector as ThemeSelector
} from './components/theme-selector/theme-selector';
declare global {
interface HTMLThemeSelectorElement extends ThemeSelector, HTMLStencilElement {
}
var HTMLThemeSelectorElement: {
prototype: HTMLThemeSelectorElement;
new (): HTMLThemeSelectorElement;
};
interface HTMLElementTagNameMap {
"theme-selector": HTMLThemeSelectorElement;
}
interface ElementTagNameMap {
"theme-selector": HTMLThemeSelectorElement;
}
namespace JSX {
interface IntrinsicElements {
"theme-selector": JSXElements.ThemeSelectorAttributes;
}
}
namespace JSXElements {
export interface ThemeSelectorAttributes extends HTMLAttributes {
propertiesUsed?: string[];
themeData?: { name: string }[];
}
}
}
import {
VariableSelector as VariableSelector
} from './components/variable-selector/variable-selector';
declare global {
interface HTMLVariableSelectorElement extends VariableSelector, HTMLStencilElement {
}
var HTMLVariableSelectorElement: {
prototype: HTMLVariableSelectorElement;
new (): HTMLVariableSelectorElement;
};
interface HTMLElementTagNameMap {
"variable-selector": HTMLVariableSelectorElement;
}
interface ElementTagNameMap {
"variable-selector": HTMLVariableSelectorElement;
}
namespace JSX {
interface IntrinsicElements {
"variable-selector": JSXElements.VariableSelectorAttributes;
}
}
namespace JSXElements {
export interface VariableSelectorAttributes extends HTMLAttributes {
isRgb?: boolean;
property?: string;
type?: 'color' | 'percent';
usedWith?: string[];
value?: Color | string | number;
}
}
}
declare global { namespace JSX { interface StencilJSX {} } }