-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5da81dd
commit 789123b
Showing
7 changed files
with
8,032 additions
and
8,241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,53 @@ | ||
/* tslint:disable */ | ||
/** | ||
* This is an autogenerated file created by the Stencil compiler. | ||
* It contains typing information for all components that exist in this project. | ||
*/ | ||
/* tslint:disable */ | ||
|
||
import '@stencil/core'; | ||
|
||
import { HTMLStencilElement, JSXBase } from '@stencil/core/internal'; | ||
|
||
|
||
export namespace Components { | ||
interface ChuckNorrisJokes { | ||
'firstname': string; | ||
'lastname': string; | ||
} | ||
} | ||
|
||
declare global { | ||
interface HTMLElement { | ||
componentOnReady?: () => Promise<this | null>; | ||
} | ||
|
||
interface HTMLStencilElement extends HTMLElement { | ||
componentOnReady(): Promise<this>; | ||
|
||
forceUpdate(): void; | ||
interface HTMLChuckNorrisJokesElement extends Components.ChuckNorrisJokes, HTMLStencilElement {} | ||
var HTMLChuckNorrisJokesElement: { | ||
prototype: HTMLChuckNorrisJokesElement; | ||
new (): HTMLChuckNorrisJokesElement; | ||
}; | ||
interface HTMLElementTagNameMap { | ||
'chuck-norris-jokes': HTMLChuckNorrisJokesElement; | ||
} | ||
} | ||
|
||
interface HTMLAttributes {} | ||
|
||
namespace StencilComponents { | ||
|
||
interface ChuckNorrisJokes { | ||
'firstname': string; | ||
'lastname': string; | ||
} | ||
declare namespace LocalJSX { | ||
interface ChuckNorrisJokes { | ||
'firstname'?: string; | ||
'lastname'?: string; | ||
} | ||
|
||
|
||
interface HTMLChuckNorrisJokesElement extends StencilComponents.ChuckNorrisJokes, HTMLStencilElement {} | ||
|
||
var HTMLChuckNorrisJokesElement: { | ||
prototype: HTMLChuckNorrisJokesElement; | ||
new (): HTMLChuckNorrisJokesElement; | ||
}; | ||
|
||
|
||
namespace JSX { | ||
interface Element {} | ||
export interface IntrinsicElements { | ||
'chuck-norris-jokes': JSXElements.ChuckNorrisJokesAttributes; | ||
} | ||
interface IntrinsicElements { | ||
'chuck-norris-jokes': ChuckNorrisJokes; | ||
} | ||
} | ||
|
||
namespace JSXElements { | ||
|
||
export interface ChuckNorrisJokesAttributes extends HTMLAttributes { | ||
'firstname'?: string; | ||
'lastname'?: string; | ||
} | ||
} | ||
export { LocalJSX as JSX }; | ||
|
||
interface HTMLElementTagNameMap { | ||
'chuck-norris-jokes': HTMLChuckNorrisJokesElement | ||
} | ||
|
||
interface ElementTagNameMap { | ||
'chuck-norris-jokes': HTMLChuckNorrisJokesElement; | ||
declare module "@stencil/core" { | ||
export namespace JSX { | ||
interface IntrinsicElements { | ||
'chuck-norris-jokes': LocalJSX.ChuckNorrisJokes & JSXBase.HTMLAttributes<HTMLChuckNorrisJokesElement>; | ||
} | ||
} | ||
} | ||
declare global { namespace JSX { interface StencilJSX {} } } | ||
|
||
export declare function defineCustomElements(window: any): void; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html dir="ltr" lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0"> | ||
<title>Chuck Norris Jokes</title> | ||
<script src="/build/chuck-norris-jokes.js"></script> | ||
|
||
</head> | ||
<body> | ||
|
||
<chuck-norris-jokes firstname="" lastname=""></chuck-norris-jokes> | ||
|
||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" /> | ||
<title>Chuck Norris Jokes</title> | ||
<script type="module" src="/build/chuck-norris-jokes.esm.js"></script> | ||
<script nomodule src="/build/chuck-norris-jokes.js"></script> | ||
</head> | ||
<body> | ||
<chuck-norris-jokes firstname="" lastname=""></chuck-norris-jokes> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from './components'; | ||
export * from './components/chuck-norris-jokes/chuck-norris-jokes'; |