analytica-frontend-lib 1.0.26 → 1.0.27
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.
- package/dist/Toast/Toast.js +2 -2
- package/dist/Toast/Toast.mjs +1 -1
- package/dist/Toast/utils/Toaster.js +2 -2
- package/dist/Toast/utils/Toaster.mjs +1 -1
- package/dist/{chunk-XYTNJU4A.mjs → chunk-XJA5HF7B.mjs} +2 -2
- package/dist/index.css +3 -0
- package/dist/index.js +221 -127
- package/dist/index.mjs +178 -92
- package/dist/styles.css +2059 -0
- package/package.json +9 -10
package/dist/Toast/Toast.js
CHANGED
|
@@ -28,9 +28,9 @@ var import_phosphor_react = require("phosphor-react");
|
|
|
28
28
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
29
29
|
var VARIANT_ACTION_CLASSES = {
|
|
30
30
|
solid: {
|
|
31
|
-
warning: "bg-warning text-warning-
|
|
31
|
+
warning: "bg-warning text-warning-600 border-none focus-visible:outline-none",
|
|
32
32
|
success: "bg-success text-success-800 border-none focus-visible:outline-none",
|
|
33
|
-
info: "bg-info text-info-
|
|
33
|
+
info: "bg-info text-info-600 border-none focus-visible:outline-none"
|
|
34
34
|
},
|
|
35
35
|
outlined: {
|
|
36
36
|
warning: "bg-warning text-warning-600 border border-warning-300 focus-visible:outline-none",
|
package/dist/Toast/Toast.mjs
CHANGED
|
@@ -48,9 +48,9 @@ var import_phosphor_react = require("phosphor-react");
|
|
|
48
48
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
49
49
|
var VARIANT_ACTION_CLASSES = {
|
|
50
50
|
solid: {
|
|
51
|
-
warning: "bg-warning text-warning-
|
|
51
|
+
warning: "bg-warning text-warning-600 border-none focus-visible:outline-none",
|
|
52
52
|
success: "bg-success text-success-800 border-none focus-visible:outline-none",
|
|
53
|
-
info: "bg-info text-info-
|
|
53
|
+
info: "bg-info text-info-600 border-none focus-visible:outline-none"
|
|
54
54
|
},
|
|
55
55
|
outlined: {
|
|
56
56
|
warning: "bg-warning text-warning-600 border border-warning-300 focus-visible:outline-none",
|
|
@@ -3,9 +3,9 @@ import { CheckCircle, WarningCircle, Info, X } from "phosphor-react";
|
|
|
3
3
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
4
|
var VARIANT_ACTION_CLASSES = {
|
|
5
5
|
solid: {
|
|
6
|
-
warning: "bg-warning text-warning-
|
|
6
|
+
warning: "bg-warning text-warning-600 border-none focus-visible:outline-none",
|
|
7
7
|
success: "bg-success text-success-800 border-none focus-visible:outline-none",
|
|
8
|
-
info: "bg-info text-info-
|
|
8
|
+
info: "bg-info text-info-600 border-none focus-visible:outline-none"
|
|
9
9
|
},
|
|
10
10
|
outlined: {
|
|
11
11
|
warning: "bg-warning text-warning-600 border border-warning-300 focus-visible:outline-none",
|