-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Shailesh Aanand <[email protected]> Co-authored-by: Khavin Shankar <[email protected]> Co-authored-by: Sandra <[email protected]> Co-authored-by: Samyuktha Ganeshkumar <[email protected]> Co-authored-by: Arpan Abhishek <[email protected]> Co-authored-by: Abhinandan Arya <[email protected]> Co-authored-by: Sumit Datta <[email protected]> Co-authored-by: Gigin George <[email protected]> Co-authored-by: Sandra K <[email protected]> Co-authored-by: developedBySJ <[email protected]> Co-authored-by: Apurva <[email protected]> Co-authored-by: Divya Garg <[email protected]>
- Loading branch information
1 parent
90eb2c0
commit 392331c
Showing
54 changed files
with
12,524 additions
and
11,458 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
node_modules | ||
dist | ||
build | ||
.dockerignore | ||
Dockerfile | ||
.git |
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
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,11 +1,10 @@ | ||
Cypress.Commands.add('verifyNotification', (text) => { | ||
cy.get('.pnotify-container').should('exist').contains(text) | ||
cy.get('.pnotify-container').click() | ||
}) | ||
|
||
Cypress.Commands.add("verifyNotification", (text) => { | ||
cy.get(".pnotify-container").should("exist").contains(text); | ||
cy.get(".pnotify-container").click(); | ||
}); | ||
|
||
declare namespace Cypress { | ||
interface Chainable<Subject = any> { | ||
verifyNotification(text: String): Chainable<Subject>; | ||
} | ||
} | ||
interface Chainable<Subject = any> { | ||
verifyNotification(text: String): Chainable<Subject>; | ||
} | ||
} |
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,5 +1,5 @@ | ||
[build] | ||
publish = "dist/" | ||
publish = "build/" | ||
|
||
[[redirects]] | ||
from = "/api/*" | ||
|
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
File renamed without changes.
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
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,22 +1,21 @@ | ||
/* TypeScript file generated from SlideOver.res by genType. */ | ||
/* eslint-disable import/first */ | ||
|
||
|
||
import * as React from 'react'; | ||
import * as React from "react"; | ||
|
||
// @ts-ignore: Implicit any on import | ||
import * as SlideOverBS__Es6Import from './SlideOver.bs'; | ||
import * as SlideOverBS__Es6Import from "./SlideOver.bs"; | ||
const SlideOverBS: any = SlideOverBS__Es6Import; | ||
|
||
// tslint:disable-next-line:interface-over-type-literal | ||
export type Props = { | ||
readonly children: React.ReactNode; | ||
readonly setShow: (_1:boolean) => void; | ||
readonly show: boolean | ||
readonly children: React.ReactNode; | ||
readonly setShow: (_1: boolean) => void; | ||
readonly show: boolean; | ||
}; | ||
|
||
export const make: React.ComponentType<{ | ||
readonly children: React.ReactNode; | ||
readonly setShow: (_1:boolean) => void; | ||
readonly show: boolean | ||
readonly children: React.ReactNode; | ||
readonly setShow: (_1: boolean) => void; | ||
readonly show: boolean; | ||
}> = SlideOverBS.make; |
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
Oops, something went wrong.