This commit is contained in:
621
node_modules/react-toastify/dist/ReactToastify.css
generated
vendored
Normal file
621
node_modules/react-toastify/dist/ReactToastify.css
generated
vendored
Normal file
@@ -0,0 +1,621 @@
|
||||
:root {
|
||||
--toastify-color-light: #fff;
|
||||
--toastify-color-dark: #121212;
|
||||
--toastify-color-info: #3498db;
|
||||
--toastify-color-success: #07bc0c;
|
||||
--toastify-color-warning: #f1c40f;
|
||||
--toastify-color-error: #e74c3c;
|
||||
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
||||
--toastify-icon-color-info: var(--toastify-color-info);
|
||||
--toastify-icon-color-success: var(--toastify-color-success);
|
||||
--toastify-icon-color-warning: var(--toastify-color-warning);
|
||||
--toastify-icon-color-error: var(--toastify-color-error);
|
||||
--toastify-toast-width: 320px;
|
||||
--toastify-toast-background: #fff;
|
||||
--toastify-toast-min-height: 64px;
|
||||
--toastify-toast-max-height: 800px;
|
||||
--toastify-font-family: sans-serif;
|
||||
--toastify-z-index: 9999;
|
||||
--toastify-text-color-light: #757575;
|
||||
--toastify-text-color-dark: #fff;
|
||||
--toastify-text-color-info: #fff;
|
||||
--toastify-text-color-success: #fff;
|
||||
--toastify-text-color-warning: #fff;
|
||||
--toastify-text-color-error: #fff;
|
||||
--toastify-spinner-color: #616161;
|
||||
--toastify-spinner-color-empty-area: #e0e0e0;
|
||||
--toastify-color-progress-light: linear-gradient(
|
||||
to right,
|
||||
#4cd964,
|
||||
#5ac8fa,
|
||||
#007aff,
|
||||
#34aadc,
|
||||
#5856d6,
|
||||
#ff2d55
|
||||
);
|
||||
--toastify-color-progress-dark: #bb86fc;
|
||||
--toastify-color-progress-info: var(--toastify-color-info);
|
||||
--toastify-color-progress-success: var(--toastify-color-success);
|
||||
--toastify-color-progress-warning: var(--toastify-color-warning);
|
||||
--toastify-color-progress-error: var(--toastify-color-error);
|
||||
}
|
||||
|
||||
.Toastify__toast-container {
|
||||
z-index: var(--toastify-z-index);
|
||||
-webkit-transform: translate3d(0, 0, var(--toastify-z-index));
|
||||
position: fixed;
|
||||
padding: 4px;
|
||||
width: var(--toastify-toast-width);
|
||||
box-sizing: border-box;
|
||||
color: #fff;
|
||||
}
|
||||
.Toastify__toast-container--top-left {
|
||||
top: 1em;
|
||||
left: 1em;
|
||||
}
|
||||
.Toastify__toast-container--top-center {
|
||||
top: 1em;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.Toastify__toast-container--top-right {
|
||||
top: 1em;
|
||||
right: 1em;
|
||||
}
|
||||
.Toastify__toast-container--bottom-left {
|
||||
bottom: 1em;
|
||||
left: 1em;
|
||||
}
|
||||
.Toastify__toast-container--bottom-center {
|
||||
bottom: 1em;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.Toastify__toast-container--bottom-right {
|
||||
bottom: 1em;
|
||||
right: 1em;
|
||||
}
|
||||
|
||||
@media only screen and (max-width : 480px) {
|
||||
.Toastify__toast-container {
|
||||
width: 100vw;
|
||||
padding: 0;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
|
||||
top: 0;
|
||||
transform: translateX(0);
|
||||
}
|
||||
.Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
|
||||
bottom: 0;
|
||||
transform: translateX(0);
|
||||
}
|
||||
.Toastify__toast-container--rtl {
|
||||
right: 0;
|
||||
left: initial;
|
||||
}
|
||||
}
|
||||
.Toastify__toast {
|
||||
position: relative;
|
||||
min-height: var(--toastify-toast-min-height);
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 1rem;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
max-height: var(--toastify-toast-max-height);
|
||||
overflow: hidden;
|
||||
font-family: var(--toastify-font-family);
|
||||
cursor: default;
|
||||
direction: ltr;
|
||||
/* webkit only issue #791 */
|
||||
z-index: 0;
|
||||
}
|
||||
.Toastify__toast--rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.Toastify__toast--close-on-click {
|
||||
cursor: pointer;
|
||||
}
|
||||
.Toastify__toast-body {
|
||||
margin: auto 0;
|
||||
-ms-flex: 1 1 auto;
|
||||
flex: 1 1 auto;
|
||||
padding: 6px;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.Toastify__toast-body > div:last-child {
|
||||
word-break: break-word;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
}
|
||||
.Toastify__toast-icon {
|
||||
-webkit-margin-end: 10px;
|
||||
margin-inline-end: 10px;
|
||||
width: 20px;
|
||||
-ms-flex-negative: 0;
|
||||
flex-shrink: 0;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.Toastify--animate {
|
||||
animation-fill-mode: both;
|
||||
animation-duration: 0.7s;
|
||||
}
|
||||
|
||||
.Toastify--animate-icon {
|
||||
animation-fill-mode: both;
|
||||
animation-duration: 0.3s;
|
||||
}
|
||||
|
||||
@media only screen and (max-width : 480px) {
|
||||
.Toastify__toast {
|
||||
margin-bottom: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
.Toastify__toast-theme--dark {
|
||||
background: var(--toastify-color-dark);
|
||||
color: var(--toastify-text-color-dark);
|
||||
}
|
||||
.Toastify__toast-theme--light {
|
||||
background: var(--toastify-color-light);
|
||||
color: var(--toastify-text-color-light);
|
||||
}
|
||||
.Toastify__toast-theme--colored.Toastify__toast--default {
|
||||
background: var(--toastify-color-light);
|
||||
color: var(--toastify-text-color-light);
|
||||
}
|
||||
.Toastify__toast-theme--colored.Toastify__toast--info {
|
||||
color: var(--toastify-text-color-info);
|
||||
background: var(--toastify-color-info);
|
||||
}
|
||||
.Toastify__toast-theme--colored.Toastify__toast--success {
|
||||
color: var(--toastify-text-color-success);
|
||||
background: var(--toastify-color-success);
|
||||
}
|
||||
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
||||
color: var(--toastify-text-color-warning);
|
||||
background: var(--toastify-color-warning);
|
||||
}
|
||||
.Toastify__toast-theme--colored.Toastify__toast--error {
|
||||
color: var(--toastify-text-color-error);
|
||||
background: var(--toastify-color-error);
|
||||
}
|
||||
|
||||
.Toastify__progress-bar-theme--light {
|
||||
background: var(--toastify-color-progress-light);
|
||||
}
|
||||
.Toastify__progress-bar-theme--dark {
|
||||
background: var(--toastify-color-progress-dark);
|
||||
}
|
||||
.Toastify__progress-bar--info {
|
||||
background: var(--toastify-color-progress-info);
|
||||
}
|
||||
.Toastify__progress-bar--success {
|
||||
background: var(--toastify-color-progress-success);
|
||||
}
|
||||
.Toastify__progress-bar--warning {
|
||||
background: var(--toastify-color-progress-warning);
|
||||
}
|
||||
.Toastify__progress-bar--error {
|
||||
background: var(--toastify-color-progress-error);
|
||||
}
|
||||
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
||||
background: var(--toastify-color-transparent);
|
||||
}
|
||||
|
||||
.Toastify__close-button {
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
outline: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
opacity: 0.7;
|
||||
transition: 0.3s ease;
|
||||
-ms-flex-item-align: start;
|
||||
align-self: flex-start;
|
||||
}
|
||||
.Toastify__close-button--light {
|
||||
color: #000;
|
||||
opacity: 0.3;
|
||||
}
|
||||
.Toastify__close-button > svg {
|
||||
fill: currentColor;
|
||||
height: 16px;
|
||||
width: 14px;
|
||||
}
|
||||
.Toastify__close-button:hover, .Toastify__close-button:focus {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@keyframes Toastify__trackProgress {
|
||||
0% {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
100% {
|
||||
transform: scaleX(0);
|
||||
}
|
||||
}
|
||||
.Toastify__progress-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
z-index: var(--toastify-z-index);
|
||||
opacity: 0.7;
|
||||
transform-origin: left;
|
||||
}
|
||||
.Toastify__progress-bar--animated {
|
||||
animation: Toastify__trackProgress linear 1 forwards;
|
||||
}
|
||||
.Toastify__progress-bar--controlled {
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.Toastify__progress-bar--rtl {
|
||||
right: 0;
|
||||
left: initial;
|
||||
transform-origin: right;
|
||||
}
|
||||
|
||||
.Toastify__spinner {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
box-sizing: border-box;
|
||||
border: 2px solid;
|
||||
border-radius: 100%;
|
||||
border-color: var(--toastify-spinner-color-empty-area);
|
||||
border-right-color: var(--toastify-spinner-color);
|
||||
animation: Toastify__spin 0.65s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes Toastify__bounceInRight {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
}
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(3000px, 0, 0);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(-25px, 0, 0);
|
||||
}
|
||||
75% {
|
||||
transform: translate3d(10px, 0, 0);
|
||||
}
|
||||
90% {
|
||||
transform: translate3d(-5px, 0, 0);
|
||||
}
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceOutRight {
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translate3d(-20px, 0, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(2000px, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceInLeft {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
}
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(-3000px, 0, 0);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(25px, 0, 0);
|
||||
}
|
||||
75% {
|
||||
transform: translate3d(-10px, 0, 0);
|
||||
}
|
||||
90% {
|
||||
transform: translate3d(5px, 0, 0);
|
||||
}
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceOutLeft {
|
||||
20% {
|
||||
opacity: 1;
|
||||
transform: translate3d(20px, 0, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(-2000px, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceInUp {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
}
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 3000px, 0);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, -20px, 0);
|
||||
}
|
||||
75% {
|
||||
transform: translate3d(0, 10px, 0);
|
||||
}
|
||||
90% {
|
||||
transform: translate3d(0, -5px, 0);
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceOutUp {
|
||||
20% {
|
||||
transform: translate3d(0, -10px, 0);
|
||||
}
|
||||
40%, 45% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 20px, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -2000px, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceInDown {
|
||||
from, 60%, 75%, 90%, to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
}
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -3000px, 0);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 25px, 0);
|
||||
}
|
||||
75% {
|
||||
transform: translate3d(0, -10px, 0);
|
||||
}
|
||||
90% {
|
||||
transform: translate3d(0, 5px, 0);
|
||||
}
|
||||
to {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__bounceOutDown {
|
||||
20% {
|
||||
transform: translate3d(0, 10px, 0);
|
||||
}
|
||||
40%, 45% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, -20px, 0);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 2000px, 0);
|
||||
}
|
||||
}
|
||||
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
|
||||
animation-name: Toastify__bounceInLeft;
|
||||
}
|
||||
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
|
||||
animation-name: Toastify__bounceInRight;
|
||||
}
|
||||
.Toastify__bounce-enter--top-center {
|
||||
animation-name: Toastify__bounceInDown;
|
||||
}
|
||||
.Toastify__bounce-enter--bottom-center {
|
||||
animation-name: Toastify__bounceInUp;
|
||||
}
|
||||
|
||||
.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
|
||||
animation-name: Toastify__bounceOutLeft;
|
||||
}
|
||||
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
|
||||
animation-name: Toastify__bounceOutRight;
|
||||
}
|
||||
.Toastify__bounce-exit--top-center {
|
||||
animation-name: Toastify__bounceOutUp;
|
||||
}
|
||||
.Toastify__bounce-exit--bottom-center {
|
||||
animation-name: Toastify__bounceOutDown;
|
||||
}
|
||||
|
||||
@keyframes Toastify__zoomIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__zoomOut {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
.Toastify__zoom-enter {
|
||||
animation-name: Toastify__zoomIn;
|
||||
}
|
||||
|
||||
.Toastify__zoom-exit {
|
||||
animation-name: Toastify__zoomOut;
|
||||
}
|
||||
|
||||
@keyframes Toastify__flipIn {
|
||||
from {
|
||||
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
||||
animation-timing-function: ease-in;
|
||||
opacity: 0;
|
||||
}
|
||||
40% {
|
||||
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
||||
animation-timing-function: ease-in;
|
||||
}
|
||||
60% {
|
||||
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
||||
opacity: 1;
|
||||
}
|
||||
80% {
|
||||
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
||||
}
|
||||
to {
|
||||
transform: perspective(400px);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__flipOut {
|
||||
from {
|
||||
transform: perspective(400px);
|
||||
}
|
||||
30% {
|
||||
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
.Toastify__flip-enter {
|
||||
animation-name: Toastify__flipIn;
|
||||
}
|
||||
|
||||
.Toastify__flip-exit {
|
||||
animation-name: Toastify__flipOut;
|
||||
}
|
||||
|
||||
@keyframes Toastify__slideInRight {
|
||||
from {
|
||||
transform: translate3d(110%, 0, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideInLeft {
|
||||
from {
|
||||
transform: translate3d(-110%, 0, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideInUp {
|
||||
from {
|
||||
transform: translate3d(0, 110%, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideInDown {
|
||||
from {
|
||||
transform: translate3d(0, -110%, 0);
|
||||
visibility: visible;
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideOutRight {
|
||||
from {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
to {
|
||||
visibility: hidden;
|
||||
transform: translate3d(110%, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideOutLeft {
|
||||
from {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
to {
|
||||
visibility: hidden;
|
||||
transform: translate3d(-110%, 0, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideOutDown {
|
||||
from {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
to {
|
||||
visibility: hidden;
|
||||
transform: translate3d(0, 500px, 0);
|
||||
}
|
||||
}
|
||||
@keyframes Toastify__slideOutUp {
|
||||
from {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
to {
|
||||
visibility: hidden;
|
||||
transform: translate3d(0, -500px, 0);
|
||||
}
|
||||
}
|
||||
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
|
||||
animation-name: Toastify__slideInLeft;
|
||||
}
|
||||
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
|
||||
animation-name: Toastify__slideInRight;
|
||||
}
|
||||
.Toastify__slide-enter--top-center {
|
||||
animation-name: Toastify__slideInDown;
|
||||
}
|
||||
.Toastify__slide-enter--bottom-center {
|
||||
animation-name: Toastify__slideInUp;
|
||||
}
|
||||
|
||||
.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
|
||||
animation-name: Toastify__slideOutLeft;
|
||||
}
|
||||
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
|
||||
animation-name: Toastify__slideOutRight;
|
||||
}
|
||||
.Toastify__slide-exit--top-center {
|
||||
animation-name: Toastify__slideOutUp;
|
||||
}
|
||||
.Toastify__slide-exit--bottom-center {
|
||||
animation-name: Toastify__slideOutDown;
|
||||
}
|
||||
|
||||
@keyframes Toastify__spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=ReactToastify.css.map */
|
||||
1
node_modules/react-toastify/dist/ReactToastify.css.map
generated
vendored
Normal file
1
node_modules/react-toastify/dist/ReactToastify.css.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/react-toastify/dist/ReactToastify.min.css
generated
vendored
Normal file
1
node_modules/react-toastify/dist/ReactToastify.min.css
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/react-toastify/dist/ReactToastify.minimal.css
generated
vendored
Normal file
1
node_modules/react-toastify/dist/ReactToastify.minimal.css
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
:root{--toastify-color-light:#fff;--toastify-color-dark:#121212;--toastify-color-info:#3498db;--toastify-color-success:#07bc0c;--toastify-color-warning:#f1c40f;--toastify-color-error:#e74c3c;--toastify-color-transparent:hsla(0,0%,100%,.7);--toastify-icon-color-info:var(--toastify-color-info);--toastify-icon-color-success:var(--toastify-color-success);--toastify-icon-color-warning:var(--toastify-color-warning);--toastify-icon-color-error:var(--toastify-color-error);--toastify-toast-width:320px;--toastify-toast-background:#fff;--toastify-toast-min-height:64px;--toastify-toast-max-height:800px;--toastify-font-family:sans-serif;--toastify-z-index:9999;--toastify-text-color-light:#757575;--toastify-text-color-dark:#fff;--toastify-text-color-info:#fff;--toastify-text-color-success:#fff;--toastify-text-color-warning:#fff;--toastify-text-color-error:#fff;--toastify-spinner-color:#616161;--toastify-spinner-color-empty-area:#e0e0e0;--toastify-color-progress-light:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);--toastify-color-progress-dark:#bb86fc;--toastify-color-progress-info:var(--toastify-color-info);--toastify-color-progress-success:var(--toastify-color-success);--toastify-color-progress-warning:var(--toastify-color-warning);--toastify-color-progress-error:var(--toastify-color-error)}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{animation:Toastify__trackProgress linear 1 forwards}
|
||||
1
node_modules/react-toastify/dist/ReactToastify.minimal.css.map
generated
vendored
Normal file
1
node_modules/react-toastify/dist/ReactToastify.minimal.css.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../scss/_variables.scss","../scss/minimal.scss"],"names":[],"mappings":"AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAGA;EACA;EACA;EACA;EAEA;EACA;EAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAUA;EACA;EACA;EACA;EACA;;;AC/CF;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE","file":"ReactToastify.minimal.css"}
|
||||
9
node_modules/react-toastify/dist/components/CloseButton.d.ts
generated
vendored
Normal file
9
node_modules/react-toastify/dist/components/CloseButton.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
import { Theme, TypeOptions } from '../types';
|
||||
export interface CloseButtonProps {
|
||||
closeToast: (e: React.MouseEvent<HTMLElement>) => void;
|
||||
type: TypeOptions;
|
||||
ariaLabel?: string;
|
||||
theme: Theme;
|
||||
}
|
||||
export declare function CloseButton({ closeToast, theme, ariaLabel }: CloseButtonProps): React.JSX.Element;
|
||||
24
node_modules/react-toastify/dist/components/Icons.d.ts
generated
vendored
Normal file
24
node_modules/react-toastify/dist/components/Icons.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import React from 'react';
|
||||
import { Theme, ToastProps, TypeOptions } from '../types';
|
||||
/**
|
||||
* Used when providing custom icon
|
||||
*/
|
||||
export interface IconProps {
|
||||
theme: Theme;
|
||||
type: TypeOptions;
|
||||
}
|
||||
export type BuiltInIconProps = React.SVGProps<SVGSVGElement> & IconProps;
|
||||
declare function Warning(props: BuiltInIconProps): React.JSX.Element;
|
||||
declare function Info(props: BuiltInIconProps): React.JSX.Element;
|
||||
declare function Success(props: BuiltInIconProps): React.JSX.Element;
|
||||
declare function Error(props: BuiltInIconProps): React.JSX.Element;
|
||||
declare function Spinner(): React.JSX.Element;
|
||||
export declare const Icons: {
|
||||
info: typeof Info;
|
||||
warning: typeof Warning;
|
||||
success: typeof Success;
|
||||
error: typeof Error;
|
||||
spinner: typeof Spinner;
|
||||
};
|
||||
export declare function getIcon({ theme, type, isLoading, icon }: ToastProps): React.ReactNode;
|
||||
export {};
|
||||
53
node_modules/react-toastify/dist/components/ProgressBar.d.ts
generated
vendored
Normal file
53
node_modules/react-toastify/dist/components/ProgressBar.d.ts
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
import React from 'react';
|
||||
import { TypeOptions, ToastClassName, Theme } from '../types';
|
||||
export interface ProgressBarProps {
|
||||
/**
|
||||
* The animation delay which determine when to close the toast
|
||||
*/
|
||||
delay: number;
|
||||
/**
|
||||
* Whether or not the animation is running or paused
|
||||
*/
|
||||
isRunning: boolean;
|
||||
/**
|
||||
* Func to close the current toast
|
||||
*/
|
||||
closeToast: () => void;
|
||||
/**
|
||||
* Optional type : info, success ...
|
||||
*/
|
||||
type?: TypeOptions;
|
||||
/**
|
||||
* The theme that is currently used
|
||||
*/
|
||||
theme: Theme;
|
||||
/**
|
||||
* Hide or not the progress bar
|
||||
*/
|
||||
hide?: boolean;
|
||||
/**
|
||||
* Optionnal className
|
||||
*/
|
||||
className?: ToastClassName;
|
||||
/**
|
||||
* Optionnal inline style
|
||||
*/
|
||||
style?: React.CSSProperties;
|
||||
/**
|
||||
* Tell wether or not controlled progress bar is used
|
||||
*/
|
||||
controlledProgress?: boolean;
|
||||
/**
|
||||
* Controlled progress value
|
||||
*/
|
||||
progress?: number | string;
|
||||
/**
|
||||
* Support rtl content
|
||||
*/
|
||||
rtl?: boolean;
|
||||
/**
|
||||
* Tell if the component is visible on screen or not
|
||||
*/
|
||||
isIn?: boolean;
|
||||
}
|
||||
export declare function ProgressBar({ delay, isRunning, closeToast, type, hide, className, style: userStyle, controlledProgress, progress, rtl, isIn, theme }: ProgressBarProps): React.JSX.Element;
|
||||
3
node_modules/react-toastify/dist/components/Toast.d.ts
generated
vendored
Normal file
3
node_modules/react-toastify/dist/components/Toast.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import React from 'react';
|
||||
import { ToastProps } from '../types';
|
||||
export declare const Toast: React.FC<ToastProps>;
|
||||
3
node_modules/react-toastify/dist/components/ToastContainer.d.ts
generated
vendored
Normal file
3
node_modules/react-toastify/dist/components/ToastContainer.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import React from 'react';
|
||||
import { ToastContainerProps } from '../types';
|
||||
export declare const ToastContainer: React.ForwardRefExoticComponent<ToastContainerProps & React.RefAttributes<HTMLDivElement>>;
|
||||
6
node_modules/react-toastify/dist/components/Transitions.d.ts
generated
vendored
Normal file
6
node_modules/react-toastify/dist/components/Transitions.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/// <reference types="react" />
|
||||
declare const Bounce: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
||||
declare const Slide: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
||||
declare const Zoom: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
||||
declare const Flip: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
||||
export { Bounce, Slide, Zoom, Flip };
|
||||
6
node_modules/react-toastify/dist/components/index.d.ts
generated
vendored
Normal file
6
node_modules/react-toastify/dist/components/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export * from './CloseButton';
|
||||
export * from './ProgressBar';
|
||||
export * from './ToastContainer';
|
||||
export * from './Transitions';
|
||||
export * from './Toast';
|
||||
export * from './Icons';
|
||||
39
node_modules/react-toastify/dist/core/eventManager.d.ts
generated
vendored
Normal file
39
node_modules/react-toastify/dist/core/eventManager.d.ts
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
/// <reference types="react" />
|
||||
import { Id, ToastContent, ClearWaitingQueueParams, NotValidatedToastProps, ToastItem } from '../types';
|
||||
import { ContainerInstance } from '../hooks';
|
||||
export declare const enum Event {
|
||||
Show = 0,
|
||||
Clear = 1,
|
||||
DidMount = 2,
|
||||
WillUnmount = 3,
|
||||
Change = 4,
|
||||
ClearWaitingQueue = 5
|
||||
}
|
||||
type OnShowCallback = (content: ToastContent, options: NotValidatedToastProps) => void;
|
||||
type OnClearCallback = (id?: Id) => void;
|
||||
type OnClearWaitingQueue = (params: ClearWaitingQueueParams) => void;
|
||||
type OnDidMountCallback = (containerInstance: ContainerInstance) => void;
|
||||
type OnWillUnmountCallback = OnDidMountCallback;
|
||||
export type OnChangeCallback = (toast: ToastItem) => void;
|
||||
type Callback = OnShowCallback | OnClearCallback | OnClearWaitingQueue | OnDidMountCallback | OnWillUnmountCallback | OnChangeCallback;
|
||||
type TimeoutId = ReturnType<typeof setTimeout>;
|
||||
export interface EventManager {
|
||||
list: Map<Event, Callback[]>;
|
||||
emitQueue: Map<Event, TimeoutId[]>;
|
||||
on(event: Event.Show, callback: OnShowCallback): EventManager;
|
||||
on(event: Event.Clear, callback: OnClearCallback): EventManager;
|
||||
on(event: Event.ClearWaitingQueue, callback: OnClearWaitingQueue): EventManager;
|
||||
on(event: Event.DidMount, callback: OnDidMountCallback): EventManager;
|
||||
on(event: Event.WillUnmount, callback: OnWillUnmountCallback): EventManager;
|
||||
on(event: Event.Change, callback: OnChangeCallback): EventManager;
|
||||
off(event: Event, callback?: Callback): EventManager;
|
||||
cancelEmit(event: Event): EventManager;
|
||||
emit<TData>(event: Event.Show, content: React.ReactNode | ToastContent<TData>, options: NotValidatedToastProps): void;
|
||||
emit(event: Event.Clear, id?: string | number): void;
|
||||
emit(event: Event.ClearWaitingQueue, params: ClearWaitingQueueParams): void;
|
||||
emit(event: Event.DidMount, containerInstance: ContainerInstance): void;
|
||||
emit(event: Event.WillUnmount, containerInstance: ContainerInstance): void;
|
||||
emit(event: Event.Change, data: ToastItem): void;
|
||||
}
|
||||
export declare const eventManager: EventManager;
|
||||
export {};
|
||||
2
node_modules/react-toastify/dist/core/index.d.ts
generated
vendored
Normal file
2
node_modules/react-toastify/dist/core/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from './eventManager';
|
||||
export * from './toast';
|
||||
41
node_modules/react-toastify/dist/core/toast.d.ts
generated
vendored
Normal file
41
node_modules/react-toastify/dist/core/toast.d.ts
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
import { OnChangeCallback } from './eventManager';
|
||||
import { ToastContent, ToastOptions, Id, UpdateOptions, ClearWaitingQueueParams, TypeOptions } from '../types';
|
||||
declare function toast<TData = unknown>(content: ToastContent<TData>, options?: ToastOptions): Id;
|
||||
declare namespace toast {
|
||||
var loading: <TData = unknown>(content: ToastContent<TData>, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var promise: typeof handlePromise;
|
||||
var success: <TData = unknown>(content: ToastContent<TData>, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var info: <TData = unknown>(content: ToastContent<TData>, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var error: <TData = unknown>(content: ToastContent<TData>, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var warning: <TData = unknown>(content: ToastContent<TData>, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var warn: <TData = unknown>(content: ToastContent<TData>, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var dark: (content: ToastContent, options?: ToastOptions<{}> | undefined) => Id;
|
||||
var dismiss: (id?: Id | undefined) => void;
|
||||
var clearWaitingQueue: (params?: ClearWaitingQueueParams) => void;
|
||||
var isActive: (id: Id) => boolean;
|
||||
var update: <TData = unknown>(toastId: Id, options?: UpdateOptions<TData>) => void;
|
||||
var done: (id: Id) => void;
|
||||
var onChange: (callback: OnChangeCallback) => () => void;
|
||||
var POSITION: {
|
||||
TOP_LEFT: import("../types").ToastPosition;
|
||||
TOP_RIGHT: import("../types").ToastPosition;
|
||||
TOP_CENTER: import("../types").ToastPosition;
|
||||
BOTTOM_LEFT: import("../types").ToastPosition;
|
||||
BOTTOM_RIGHT: import("../types").ToastPosition;
|
||||
BOTTOM_CENTER: import("../types").ToastPosition;
|
||||
};
|
||||
var TYPE: {
|
||||
INFO: TypeOptions;
|
||||
SUCCESS: TypeOptions;
|
||||
WARNING: TypeOptions;
|
||||
ERROR: TypeOptions;
|
||||
DEFAULT: TypeOptions;
|
||||
};
|
||||
}
|
||||
export interface ToastPromiseParams<TData = unknown, TError = unknown, TPending = unknown> {
|
||||
pending?: string | UpdateOptions<TPending>;
|
||||
success?: string | UpdateOptions<TData>;
|
||||
error?: string | UpdateOptions<TError>;
|
||||
}
|
||||
declare function handlePromise<TData = unknown, TError = unknown, TPending = unknown>(promise: Promise<TData> | (() => Promise<TData>), { pending, error, success }: ToastPromiseParams<TData, TError, TPending>, options?: ToastOptions): Promise<TData>;
|
||||
export { toast };
|
||||
2
node_modules/react-toastify/dist/hooks/index.d.ts
generated
vendored
Normal file
2
node_modules/react-toastify/dist/hooks/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from './useToastContainer';
|
||||
export * from './useToast';
|
||||
10
node_modules/react-toastify/dist/hooks/useToast.d.ts
generated
vendored
Normal file
10
node_modules/react-toastify/dist/hooks/useToast.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { DOMAttributes } from 'react';
|
||||
import { ToastProps } from '../types';
|
||||
export declare function useToast(props: ToastProps): {
|
||||
playToast: () => void;
|
||||
pauseToast: () => void;
|
||||
isRunning: boolean;
|
||||
preventExitTransition: boolean;
|
||||
toastRef: import("react").RefObject<HTMLDivElement>;
|
||||
eventHandlers: DOMAttributes<HTMLElement>;
|
||||
};
|
||||
23
node_modules/react-toastify/dist/hooks/useToastContainer.d.ts
generated
vendored
Normal file
23
node_modules/react-toastify/dist/hooks/useToastContainer.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/// <reference types="react" />
|
||||
import { Id, ToastContainerProps, ToastProps, ToastContent, Toast, ToastPosition } from '../types';
|
||||
interface QueuedToast {
|
||||
toastContent: ToastContent;
|
||||
toastProps: ToastProps;
|
||||
staleId?: Id;
|
||||
}
|
||||
export interface ContainerInstance {
|
||||
toastKey: number;
|
||||
displayedToast: number;
|
||||
props: ToastContainerProps;
|
||||
containerId?: Id | null;
|
||||
isToastActive: (toastId: Id) => boolean;
|
||||
getToast: (id: Id) => Toast | null | undefined;
|
||||
queue: QueuedToast[];
|
||||
count: number;
|
||||
}
|
||||
export declare function useToastContainer(props: ToastContainerProps): {
|
||||
getToastToRender: <T>(cb: (position: ToastPosition, toastList: Toast[]) => T) => T[];
|
||||
containerRef: import("react").MutableRefObject<null>;
|
||||
isToastActive: (id: Id) => boolean;
|
||||
};
|
||||
export {};
|
||||
5
node_modules/react-toastify/dist/index.d.ts
generated
vendored
Normal file
5
node_modules/react-toastify/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export { useToastContainer, useToast } from './hooks';
|
||||
export { cssTransition, collapseToast } from './utils';
|
||||
export { ToastContainer, Bounce, Flip, Slide, Zoom, Icons, IconProps, CloseButtonProps } from './components';
|
||||
export { toast, ToastPromiseParams } from './core';
|
||||
export { TypeOptions, Theme, ToastPosition, ToastContentProps, ToastContent, ToastTransition, ToastClassName, ClearWaitingQueueParams, DraggableDirection, ToastOptions, UpdateOptions, ToastContainerProps, ToastTransitionProps, Id, ToastItem } from './types';
|
||||
8
node_modules/react-toastify/dist/inject-style.d.ts
generated
vendored
Normal file
8
node_modules/react-toastify/dist/inject-style.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
* Inject the style in case you cannot import the css file
|
||||
* Call it once in your app
|
||||
*/
|
||||
export declare function injectStyle(): void;
|
||||
|
||||
|
||||
8
node_modules/react-toastify/dist/inject-style.esm.mjs
generated
vendored
Normal file
8
node_modules/react-toastify/dist/inject-style.esm.mjs
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
12
node_modules/react-toastify/dist/inject-style.js
generated
vendored
Normal file
12
node_modules/react-toastify/dist/inject-style.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
node_modules/react-toastify/dist/react-toastify.esm.mjs
generated
vendored
Normal file
3
node_modules/react-toastify/dist/react-toastify.esm.mjs
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/react-toastify/dist/react-toastify.esm.mjs.map
generated
vendored
Normal file
1
node_modules/react-toastify/dist/react-toastify.esm.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
node_modules/react-toastify/dist/react-toastify.js
generated
vendored
Normal file
3
node_modules/react-toastify/dist/react-toastify.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/react-toastify/dist/react-toastify.js.map
generated
vendored
Normal file
1
node_modules/react-toastify/dist/react-toastify.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2
node_modules/react-toastify/dist/react-toastify.umd.js
generated
vendored
Normal file
2
node_modules/react-toastify/dist/react-toastify.umd.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/react-toastify/dist/react-toastify.umd.js.map
generated
vendored
Normal file
1
node_modules/react-toastify/dist/react-toastify.umd.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
279
node_modules/react-toastify/dist/types/index.d.ts
generated
vendored
Normal file
279
node_modules/react-toastify/dist/types/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,279 @@
|
||||
import React from 'react';
|
||||
import { CloseButtonProps, IconProps } from '../components';
|
||||
type Nullable<T> = {
|
||||
[P in keyof T]: T[P] | null;
|
||||
};
|
||||
export type TypeOptions = 'info' | 'success' | 'warning' | 'error' | 'default';
|
||||
export type Theme = 'light' | 'dark' | 'colored';
|
||||
export type ToastPosition = 'top-right' | 'top-center' | 'top-left' | 'bottom-right' | 'bottom-center' | 'bottom-left';
|
||||
export interface ToastContentProps<Data = {}> {
|
||||
closeToast?: () => void;
|
||||
toastProps: ToastProps;
|
||||
data?: Data;
|
||||
}
|
||||
export type ToastContent<T = unknown> = React.ReactNode | ((props: ToastContentProps<T>) => React.ReactNode);
|
||||
export type ToastIcon = boolean | ((props: IconProps) => React.ReactNode) | React.ReactElement<IconProps> | string | number | React.ReactNode;
|
||||
export type Id = number | string;
|
||||
export type ToastTransition = React.FC<ToastTransitionProps> | React.ComponentClass<ToastTransitionProps>;
|
||||
/**
|
||||
* ClassName for the elements - can take a function to build a classname or a raw string that is cx'ed to defaults
|
||||
*/
|
||||
export type ToastClassName = ((context?: {
|
||||
type?: TypeOptions;
|
||||
defaultClassName?: string;
|
||||
position?: ToastPosition;
|
||||
rtl?: boolean;
|
||||
}) => string) | string;
|
||||
export interface ClearWaitingQueueParams {
|
||||
containerId?: Id;
|
||||
}
|
||||
export type DraggableDirection = 'x' | 'y';
|
||||
interface CommonOptions {
|
||||
/**
|
||||
* Pause the timer when the mouse hover the toast.
|
||||
* `Default: true`
|
||||
*/
|
||||
pauseOnHover?: boolean;
|
||||
/**
|
||||
* Pause the toast when the window loses focus.
|
||||
* `Default: true`
|
||||
*/
|
||||
pauseOnFocusLoss?: boolean;
|
||||
/**
|
||||
* Remove the toast when clicked.
|
||||
* `Default: true`
|
||||
*/
|
||||
closeOnClick?: boolean;
|
||||
/**
|
||||
* Set the delay in ms to close the toast automatically.
|
||||
* Use `false` to prevent the toast from closing.
|
||||
* `Default: 5000`
|
||||
*/
|
||||
autoClose?: number | false;
|
||||
/**
|
||||
* Set the default position to use.
|
||||
* `One of: 'top-right', 'top-center', 'top-left', 'bottom-right', 'bottom-center', 'bottom-left'`
|
||||
* `Default: 'top-right'`
|
||||
*/
|
||||
position?: ToastPosition;
|
||||
/**
|
||||
* Pass a custom close button.
|
||||
* To remove the close button pass `false`
|
||||
*/
|
||||
closeButton?: boolean | ((props: CloseButtonProps) => React.ReactNode) | React.ReactElement<CloseButtonProps>;
|
||||
/**
|
||||
* An optional css class to set for the progress bar.
|
||||
*/
|
||||
progressClassName?: ToastClassName;
|
||||
/**
|
||||
* An optional style to set for the progress bar.
|
||||
*/
|
||||
progressStyle?: React.CSSProperties;
|
||||
/**
|
||||
* An optional css class to set for the toast content.
|
||||
*/
|
||||
bodyClassName?: ToastClassName;
|
||||
/**
|
||||
* An optional inline style to apply for the toast content.
|
||||
*/
|
||||
bodyStyle?: React.CSSProperties;
|
||||
/**
|
||||
* Hide or show the progress bar.
|
||||
* `Default: false`
|
||||
*/
|
||||
hideProgressBar?: boolean;
|
||||
/**
|
||||
* Pass a custom transition built with react-transition-group.
|
||||
*/
|
||||
transition?: ToastTransition;
|
||||
/**
|
||||
* Allow toast to be draggable
|
||||
* `Default: true`
|
||||
*/
|
||||
draggable?: boolean;
|
||||
/**
|
||||
* The percentage of the toast's width it takes for a drag to dismiss a toast
|
||||
* `Default: 80`
|
||||
*/
|
||||
draggablePercent?: number;
|
||||
/**
|
||||
* Specify in which direction should you swipe to dismiss the toast
|
||||
* `Default: "x"`
|
||||
*/
|
||||
draggableDirection?: DraggableDirection;
|
||||
/**
|
||||
* Define the ARIA role for the toast
|
||||
* `Default: alert`
|
||||
* https://www.w3.org/WAI/PF/aria/roles
|
||||
*/
|
||||
role?: string;
|
||||
/**
|
||||
* Set id to handle multiple container
|
||||
*/
|
||||
containerId?: Id;
|
||||
/**
|
||||
* @deprecated
|
||||
* ⚠️ Will be removed in the next major release. You can pass a react component with you handler instead.
|
||||
*
|
||||
* Fired when clicking inside toaster
|
||||
*/
|
||||
onClick?: (event: React.MouseEvent) => void;
|
||||
/**
|
||||
* Support right to left display.
|
||||
* `Default: false`
|
||||
*/
|
||||
rtl?: boolean;
|
||||
/**
|
||||
* Used to display a custom icon. Set it to `false` to prevent
|
||||
* the icons from being displayed
|
||||
*/
|
||||
icon?: ToastIcon;
|
||||
/**
|
||||
* Theme to use.
|
||||
* `One of: 'light', 'dark', 'colored'`
|
||||
* `Default: 'light'`
|
||||
*/
|
||||
theme?: Theme;
|
||||
}
|
||||
export interface ToastOptions<Data = {}> extends CommonOptions {
|
||||
/**
|
||||
* An optional css class to set.
|
||||
*/
|
||||
className?: ToastClassName;
|
||||
/**
|
||||
* @deprecated
|
||||
* ⚠️ Will be removed in the next major release. You can rely on `toast.onChange` instead.
|
||||
*
|
||||
* Called when toast is mounted.
|
||||
*/
|
||||
onOpen?: <T = {}>(props: T) => void;
|
||||
/**
|
||||
* @deprecated
|
||||
* ⚠️ Will be removed in the next major release. You can rely on `toast.onChange` instead.
|
||||
*
|
||||
* Called when toast is unmounted.
|
||||
*/
|
||||
onClose?: <T = {}>(props: T) => void;
|
||||
/**
|
||||
* An optional inline style to apply.
|
||||
*/
|
||||
style?: React.CSSProperties;
|
||||
/**
|
||||
* Set the toast type.
|
||||
* `One of: 'info', 'success', 'warning', 'error', 'default'`
|
||||
*/
|
||||
type?: TypeOptions;
|
||||
/**
|
||||
* Set a custom `toastId`
|
||||
*/
|
||||
toastId?: Id;
|
||||
/**
|
||||
* Used during update
|
||||
*/
|
||||
updateId?: Id;
|
||||
/**
|
||||
* Set the percentage for the controlled progress bar. `Value must be between 0 and 1.`
|
||||
*/
|
||||
progress?: number | string;
|
||||
/**
|
||||
* Add a delay in ms before the toast appear.
|
||||
*/
|
||||
delay?: number;
|
||||
isLoading?: boolean;
|
||||
data?: Data;
|
||||
}
|
||||
export interface UpdateOptions<T = unknown> extends Nullable<ToastOptions<T>> {
|
||||
/**
|
||||
* Used to update a toast.
|
||||
* Pass any valid ReactNode(string, number, component)
|
||||
*/
|
||||
render?: ToastContent<T>;
|
||||
}
|
||||
export interface ToastContainerProps extends CommonOptions {
|
||||
/**
|
||||
* An optional css class to set.
|
||||
*/
|
||||
className?: ToastClassName;
|
||||
/**
|
||||
* Whether or not to display the newest toast on top.
|
||||
* `Default: false`
|
||||
*/
|
||||
newestOnTop?: boolean;
|
||||
/**
|
||||
* An optional inline style to apply.
|
||||
*/
|
||||
style?: React.CSSProperties;
|
||||
/**
|
||||
* An optional inline style to apply for the toast.
|
||||
*/
|
||||
toastStyle?: React.CSSProperties;
|
||||
/**
|
||||
* An optional css class for the toast.
|
||||
*/
|
||||
toastClassName?: ToastClassName;
|
||||
/**
|
||||
* Show the toast only if it includes containerId and it's the same as containerId
|
||||
* `Default: false`
|
||||
*/
|
||||
enableMultiContainer?: boolean;
|
||||
/**
|
||||
* Limit the number of toast displayed at the same time
|
||||
*/
|
||||
limit?: number;
|
||||
}
|
||||
export interface ToastTransitionProps {
|
||||
isIn: boolean;
|
||||
done: () => void;
|
||||
position: ToastPosition | string;
|
||||
preventExitTransition: boolean;
|
||||
nodeRef: React.RefObject<HTMLElement>;
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
/**
|
||||
* @INTERNAL
|
||||
*/
|
||||
export interface ToastProps extends ToastOptions {
|
||||
isIn: boolean;
|
||||
staleId?: Id;
|
||||
toastId: Id;
|
||||
key: Id;
|
||||
transition: ToastTransition;
|
||||
closeToast: () => void;
|
||||
position: ToastPosition;
|
||||
children?: ToastContent;
|
||||
draggablePercent: number;
|
||||
draggableDirection?: DraggableDirection;
|
||||
progressClassName?: ToastClassName;
|
||||
className?: ToastClassName;
|
||||
bodyClassName?: ToastClassName;
|
||||
deleteToast: () => void;
|
||||
theme: Theme;
|
||||
type: TypeOptions;
|
||||
iconOut?: React.ReactNode;
|
||||
}
|
||||
/**
|
||||
* @INTERNAL
|
||||
*/
|
||||
export interface NotValidatedToastProps extends Partial<ToastProps> {
|
||||
toastId: Id;
|
||||
}
|
||||
/**
|
||||
* @INTERNAL
|
||||
*/
|
||||
export interface Toast {
|
||||
content: ToastContent;
|
||||
props: ToastProps;
|
||||
}
|
||||
export type ToastItemStatus = 'added' | 'removed' | 'updated';
|
||||
export interface ToastItem<Data = {}> {
|
||||
content: ToastContent<Data>;
|
||||
id: Id;
|
||||
theme?: Theme;
|
||||
type?: TypeOptions;
|
||||
isLoading?: boolean;
|
||||
containerId?: Id;
|
||||
data: Data;
|
||||
icon?: ToastIcon;
|
||||
status: ToastItemStatus;
|
||||
}
|
||||
export {};
|
||||
5
node_modules/react-toastify/dist/utils/collapseToast.d.ts
generated
vendored
Normal file
5
node_modules/react-toastify/dist/utils/collapseToast.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Default } from './constant';
|
||||
/**
|
||||
* Used to collapse toast after exit animation
|
||||
*/
|
||||
export declare function collapseToast(node: HTMLElement, done: () => void, duration?: Default): void;
|
||||
36
node_modules/react-toastify/dist/utils/constant.d.ts
generated
vendored
Normal file
36
node_modules/react-toastify/dist/utils/constant.d.ts
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import { ToastPosition, TypeOptions } from '../types';
|
||||
type KeyOfPosition = 'TOP_LEFT' | 'TOP_RIGHT' | 'TOP_CENTER' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT' | 'BOTTOM_CENTER';
|
||||
type KeyOfType = 'INFO' | 'SUCCESS' | 'WARNING' | 'ERROR' | 'DEFAULT';
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
export declare const POSITION: {
|
||||
[key in KeyOfPosition]: ToastPosition;
|
||||
};
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
export declare const TYPE: {
|
||||
[key in KeyOfType]: TypeOptions;
|
||||
};
|
||||
export declare const enum Type {
|
||||
INFO = "info",
|
||||
SUCCESS = "success",
|
||||
WARNING = "warning",
|
||||
ERROR = "error",
|
||||
DEFAULT = "default"
|
||||
}
|
||||
export declare const enum Default {
|
||||
COLLAPSE_DURATION = 300,
|
||||
DEBOUNCE_DURATION = 50,
|
||||
CSS_NAMESPACE = "Toastify",
|
||||
DRAGGABLE_PERCENT = 80
|
||||
}
|
||||
export declare const enum Direction {
|
||||
X = "x",
|
||||
Y = "y"
|
||||
}
|
||||
export declare const enum SyntheticEvent {
|
||||
ENTRANCE_ANIMATION_END = "d"
|
||||
}
|
||||
export {};
|
||||
43
node_modules/react-toastify/dist/utils/cssTransition.d.ts
generated
vendored
Normal file
43
node_modules/react-toastify/dist/utils/cssTransition.d.ts
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
import React from 'react';
|
||||
import { ToastTransitionProps } from '../types';
|
||||
export interface CSSTransitionProps {
|
||||
/**
|
||||
* Css class to apply when toast enter
|
||||
*/
|
||||
enter: string;
|
||||
/**
|
||||
* Css class to apply when toast leave
|
||||
*/
|
||||
exit: string;
|
||||
/**
|
||||
* Append current toast position to the classname.
|
||||
* If multiple classes are provided, only the last one will get the position
|
||||
* For instance `myclass--top-center`...
|
||||
* `Default: false`
|
||||
*/
|
||||
appendPosition?: boolean;
|
||||
/**
|
||||
* Collapse toast smoothly when exit animation end
|
||||
* `Default: true`
|
||||
*/
|
||||
collapse?: boolean;
|
||||
/**
|
||||
* Collapse transition duration
|
||||
* `Default: 300`
|
||||
*/
|
||||
collapseDuration?: number;
|
||||
}
|
||||
/**
|
||||
* Css animation that just work.
|
||||
* You could use animate.css for instance
|
||||
*
|
||||
*
|
||||
* ```
|
||||
* cssTransition({
|
||||
* enter: "animate__animated animate__bounceIn",
|
||||
* exit: "animate__animated animate__bounceOut"
|
||||
* })
|
||||
* ```
|
||||
*
|
||||
*/
|
||||
export declare function cssTransition({ enter, exit, appendPosition, collapse, collapseDuration }: CSSTransitionProps): ({ children, position, preventExitTransition, done, nodeRef, isIn }: ToastTransitionProps) => React.JSX.Element;
|
||||
5
node_modules/react-toastify/dist/utils/index.d.ts
generated
vendored
Normal file
5
node_modules/react-toastify/dist/utils/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export * from './propValidator';
|
||||
export * from './constant';
|
||||
export * from './cssTransition';
|
||||
export * from './collapseToast';
|
||||
export * from './mapper';
|
||||
2
node_modules/react-toastify/dist/utils/mapper.d.ts
generated
vendored
Normal file
2
node_modules/react-toastify/dist/utils/mapper.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import { Toast, ToastItem, ToastItemStatus } from '../types';
|
||||
export declare function toToastItem(toast: Toast, status: ToastItemStatus): ToastItem;
|
||||
6
node_modules/react-toastify/dist/utils/propValidator.d.ts
generated
vendored
Normal file
6
node_modules/react-toastify/dist/utils/propValidator.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export declare const isNum: (v: any) => v is Number;
|
||||
export declare const isStr: (v: any) => v is String;
|
||||
export declare const isFn: (v: any) => v is Function;
|
||||
export declare const parseClassName: (v: any) => any;
|
||||
export declare const getAutoCloseDelay: (toastAutoClose?: false | number, containerAutoClose?: false | number) => number | false | undefined;
|
||||
export declare const canBeRendered: <T>(content: T) => boolean;
|
||||
Reference in New Issue
Block a user