Skip to content

Commit

Permalink
chore : add typography components
Browse files Browse the repository at this point in the history
  • Loading branch information
RomuloCintra committed Dec 18, 2017
1 parent 5f47395 commit 15d35b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 96 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@material/select": "^0.27.0",
"@material/snackbar": "^0.27.0",
"@material/toolbar": "^0.27.0",
"@material/typography": "^0.3.0",
"@stencil/core": "0.0.9-2"
},
"devDependencies": {
Expand Down
96 changes: 1 addition & 95 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,101 +29,7 @@ declare global {
}
namespace JSXElements {
export interface ODemoBarSelectAttributes extends HTMLAttributes {
first?: string;
last?: string;
}
}
}


import {
DemoToolbarComponent as ODemoBarToolbar
} from './components/o-demo-bar-toolbar/o-demo-bar-toolbar';

declare global {
interface HTMLODemoBarToolbarElement extends ODemoBarToolbar, HTMLElement {
}
var HTMLODemoBarToolbarElement: {
prototype: HTMLODemoBarToolbarElement;
new (): HTMLODemoBarToolbarElement;
};
interface HTMLElementTagNameMap {
"o-demo-bar-toolbar": HTMLODemoBarToolbarElement;
}
interface ElementTagNameMap {
"o-demo-bar-toolbar": HTMLODemoBarToolbarElement;
}
namespace JSX {
interface IntrinsicElements {
"o-demo-bar-toolbar": JSXElements.ODemoBarToolbarAttributes;
}
}
namespace JSXElements {
export interface ODemoBarToolbarAttributes extends HTMLAttributes {
first?: string;
last?: string;
}
}
}


import {
DemoBarComponent as ODemoBar
} from './components/o-demo-bar/o-demo-bar';

declare global {
interface HTMLODemoBarElement extends ODemoBar, HTMLElement {
}
var HTMLODemoBarElement: {
prototype: HTMLODemoBarElement;
new (): HTMLODemoBarElement;
};
interface HTMLElementTagNameMap {
"o-demo-bar": HTMLODemoBarElement;
}
interface ElementTagNameMap {
"o-demo-bar": HTMLODemoBarElement;
}
namespace JSX {
interface IntrinsicElements {
"o-demo-bar": JSXElements.ODemoBarAttributes;
}
}
namespace JSXElements {
export interface ODemoBarAttributes extends HTMLAttributes {
first?: string;
last?: string;
}
}
}


import {
DemoCaseComponent as ODemoCase
} from './components/o-demo-case/o-demo-case';

declare global {
interface HTMLODemoCaseElement extends ODemoCase, HTMLElement {
}
var HTMLODemoCaseElement: {
prototype: HTMLODemoCaseElement;
new (): HTMLODemoCaseElement;
};
interface HTMLElementTagNameMap {
"o-demo-case": HTMLODemoCaseElement;
}
interface ElementTagNameMap {
"o-demo-case": HTMLODemoCaseElement;
}
namespace JSX {
interface IntrinsicElements {
"o-demo-case": JSXElements.ODemoCaseAttributes;
}
}
namespace JSXElements {
export interface ODemoCaseAttributes extends HTMLAttributes {
first?: string;
last?: string;
options?: any;
}
}
}
Expand Down

0 comments on commit 15d35b6

Please sign in to comment.