mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
chore(packages): move the packages to root
This commit is contained in:
210
core/scripts/theme-builder/src/components.d.ts
vendored
Normal file
210
core/scripts/theme-builder/src/components.d.ts
vendored
Normal file
@ -0,0 +1,210 @@
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
import {
|
||||
Color,
|
||||
} from './components/Color';
|
||||
|
||||
declare global {
|
||||
interface HTMLStencilElement extends HTMLElement {
|
||||
componentOnReady(): Promise<this>;
|
||||
componentOnReady(done: (ele?: this) => void): void;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
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 {} } }
|
Reference in New Issue
Block a user