8000 add page-firebase-cloud-firestore · tja4472/ionic-stencil-firebase@2bb72e1 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
add page-firebase-cloud-firestore
Browse files Browse the repository at this point in the history
  • Loading branch information
tja4472 committed May 12, 2018
1 parent 2213d5c commit 2bb72e1
Show file tree
Hide file tree
Showing 8 changed files with 351 additions and 98 deletions.
70 changes: 33 additions & 37 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,43 +195,6 @@ declare global {
}


declare global {

namespace StencilComponents {
interface E2eAttributeBasic {
'customAttr': string;
'multiWord': string;
'single': string;
}
}

interface HTMLE2eAttributeBasicElement extends StencilComponents.E2eAttributeBasic, HTMLStencilElement {}

var HTMLE2eAttributeBasicElement: {
prototype: HTMLE2eAttributeBasicElement;
new (): HTMLE2eAttributeBasicElement;
};
interface HTMLElementTagNameMap {
'e2e-attribute-basic': HTMLE2eAttributeBasicElement;
}
interface ElementTagNameMap {
'e2e-attribute-basic': HTMLE2eAttributeBasicElement;
}
namespace JSX {
interface IntrinsicElements {
8000 'e2e-attribute-basic': JSXElements.E2eAttributeBasicAttributes;
}
}
namespace JSXElements {
export interface E2eAttributeBasicAttributes extends HTMLAttributes {
'customAttr'?: string;
'multiWord'?: string;
'single'?: string;
}
}
}


declare global {

namespace StencilComponents {
Expand Down Expand Up @@ -303,6 +266,39 @@ declare global {
}


declare global {

namespace StencilComponents {
interface PageFirebaseCloudFirestore {

}
}

interface HTMLPageFirebaseCloudFirestoreElement extends StencilComponents.PageFirebaseCloudFirestore, HTMLStencilElement {}

var HTMLPageFirebaseCloudFirestoreElement: {
prototype: HTMLPageFirebaseCloudFirestoreElement;
new (): HTMLPageFirebaseCloudFirestoreElement;
};
interface HTMLElementTagNameMap {
'page-firebase-cloud-firestore': HTMLPageFirebaseCloudFirestoreElement;
}
interface ElementTagNameMap {
'page-firebase-cloud-firestore': HTMLPageFirebaseCloudFirestoreElement;
}
namespace JSX {
interface IntrinsicElements {
'page-firebase-cloud-firestore': JSXElements.PageFirebaseCloudFirestoreAttributes;
}
}
namespace JSXElements {
export interface PageFirebaseCloudFirestoreAttributes extends HTMLAttributes {

}
}
}


declare global {

namespace StencilComponents {
Expand Down
14 changes: 6 additions & 8 deletions src/components/app-home/app-home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,15 @@ export class AppHome {
</ion-header>,

<ion-content>
<p>Blah!!!</p>

<e2e-attribute-basic
single="Single"
multi-word="Multi Word"
my-custom-attr="My Custom Attr"
/>

<ion-button data-testId="showModalPageButton" href={'/show-modal'}>
Show Modal page
</ion-button>
<ion-button
data-testId="showFirebaseCloudFirestorePageButton"
href={'/firebase-cloud-firestore'}
>
Show Cloud Firestore page
</ion-button>
<ion-button href={'/firebase'}>Show Firebase page</ion-button>
<ion-button href={'/gizmos'}>Show Gizmos page</ion-button>
<ion-button href={'/sign-in'}>Sign In</ion-button>
Expand Down
26 changes: 0 additions & 26 deletions src/components/e2e-attribute-basic/e2e-attribute-basic.spec.ts

This file was deleted.

27 changes: 0 additions & 27 deletions src/components/e2e-attribute-basic/e2e-attribute-basic.tsx

This file was deleted.

1 change: 1 addition & 0 deletions src/components/my-app/my-app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export class MyApp {

<ion-route url="/home" component="app-home" />
<ion-route url="/firebase" component="app-firebase" />
<ion-route url="/firebase-cloud-firestore" component="page-firebase-cloud-firestore" />
<ion-route url="/gizmos" component="app-gizmo" />
<ion-route url="/sign-in" component="app-sign-in" />

Expand Down
Empty file.
Loading

0 comments on commit 2bb72e1

Please sign in to comment.
0