dhre-ui-kit 0.0.345 → 0.0.347
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/lib/index.js +4 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -743,11 +743,13 @@ const createStyles$3 = (theme) => {
|
|
|
743
743
|
backdrop: {
|
|
744
744
|
flex: 1,
|
|
745
745
|
justifyContent: "center",
|
|
746
|
-
alignItems: "center"
|
|
746
|
+
alignItems: "center",
|
|
747
|
+
backgroundColor: "rgba(0, 0, 0, 0.3)"
|
|
747
748
|
},
|
|
748
749
|
box: {
|
|
749
750
|
width: 148,
|
|
750
751
|
height: 187,
|
|
752
|
+
backgroundColor: theme.SURFACE_PRIMARY,
|
|
751
753
|
borderRadius: 16,
|
|
752
754
|
justifyContent: "center",
|
|
753
755
|
alignItems: "center",
|
|
@@ -1977,10 +1979,7 @@ const LOADER_LIGHT = {
|
|
|
1977
1979
|
markers: []
|
|
1978
1980
|
};
|
|
1979
1981
|
|
|
1980
|
-
const CustomLoader = ({
|
|
1981
|
-
loading,
|
|
1982
|
-
loadingText = "Loading..."
|
|
1983
|
-
}) => {
|
|
1982
|
+
const CustomLoader = ({ loading }) => {
|
|
1984
1983
|
const { theme, mode } = useTheme();
|
|
1985
1984
|
const styles = createStyles$3(theme);
|
|
1986
1985
|
if (!loading) return null;
|