plataforma-fundacao-componentes 2.25.7 → 2.25.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,6 +6,7 @@ export default _default;
|
|
|
6
6
|
export function Default(): React.JSX.Element;
|
|
7
7
|
export function Success(): React.JSX.Element;
|
|
8
8
|
export function Error(): React.JSX.Element;
|
|
9
|
+
export function Warning(): React.JSX.Element;
|
|
9
10
|
export function DefaultWithButton(): React.JSX.Element;
|
|
10
11
|
import Toast from "./Toast";
|
|
11
12
|
import React from "react";
|
package/dist/index.css
CHANGED
|
@@ -7631,6 +7631,12 @@ nav.component-tabs {
|
|
|
7631
7631
|
.component-toast-error .component-toast-close-button svg {
|
|
7632
7632
|
color: #fefefe; }
|
|
7633
7633
|
|
|
7634
|
+
.component-toast-warning {
|
|
7635
|
+
color: #765f00;
|
|
7636
|
+
background-color: #ffcd00; }
|
|
7637
|
+
.component-toast-warning .component-toast-close-button svg {
|
|
7638
|
+
color: #765f00; }
|
|
7639
|
+
|
|
7634
7640
|
@keyframes fillToZero {
|
|
7635
7641
|
0% {
|
|
7636
7642
|
width: 100%; }
|
package/dist/index.js
CHANGED
|
@@ -9028,7 +9028,6 @@ function Paginator(props) {
|
|
|
9028
9028
|
}
|
|
9029
9029
|
setArrOfNumbers(arr);
|
|
9030
9030
|
}, [props.quantidadeDePaginas, props.maxLength, props.paginaAtual]);
|
|
9031
|
-
console.log(props.loading);
|
|
9032
9031
|
return React$1__default.createElement("div", {
|
|
9033
9032
|
id: props.id ? props.id : undefined,
|
|
9034
9033
|
className: getMergedClassNames([rootClassName$2i, props.className || ''])
|
|
@@ -11632,6 +11631,7 @@ Title.defaultProps = {};
|
|
|
11632
11631
|
ToastTypes["Default"] = "default";
|
|
11633
11632
|
ToastTypes["Success"] = "success";
|
|
11634
11633
|
ToastTypes["Error"] = "error";
|
|
11634
|
+
ToastTypes["Warning"] = "warning";
|
|
11635
11635
|
})(exports.ToastTypes || (exports.ToastTypes = {}));
|
|
11636
11636
|
|
|
11637
11637
|
var rootClassName$2G = 'component-toast';
|