@mantine/notifications 7.0.2 → 7.1.0
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/cjs/index.css +1 -15
- package/esm/index.css +1 -15
- package/esm/index.layer.css +1 -0
- package/package.json +6 -5
package/cjs/index.css
CHANGED
|
@@ -1,15 +1 @@
|
|
|
1
|
-
.m-b37d9ac7 {
|
|
2
|
-
width: calc(100% - var(--mantine-spacing-md) * 2);
|
|
3
|
-
position: fixed;
|
|
4
|
-
z-index: var(--notifications-z-index);
|
|
5
|
-
top: var(--notifications-top);
|
|
6
|
-
left: var(--notifications-left);
|
|
7
|
-
right: var(--notifications-right);
|
|
8
|
-
bottom: var(--notifications-bottom);
|
|
9
|
-
transform: var(--notifications-transform);
|
|
10
|
-
max-width: var(--notifications-container-width);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.m-5ed0edd0 + .m-5ed0edd0 {
|
|
14
|
-
margin-top: var(--mantine-spacing-md);
|
|
15
|
-
}
|
|
1
|
+
.m-b37d9ac7{bottom:var(--notifications-bottom);left:var(--notifications-left);max-width:var(--notifications-container-width);position:fixed;right:var(--notifications-right);top:var(--notifications-top);transform:var(--notifications-transform);width:calc(100% - var(--mantine-spacing-md)*2);z-index:var(--notifications-z-index)}.m-5ed0edd0+.m-5ed0edd0{margin-top:var(--mantine-spacing-md)}
|
package/esm/index.css
CHANGED
|
@@ -1,15 +1 @@
|
|
|
1
|
-
.m-b37d9ac7 {
|
|
2
|
-
width: calc(100% - var(--mantine-spacing-md) * 2);
|
|
3
|
-
position: fixed;
|
|
4
|
-
z-index: var(--notifications-z-index);
|
|
5
|
-
top: var(--notifications-top);
|
|
6
|
-
left: var(--notifications-left);
|
|
7
|
-
right: var(--notifications-right);
|
|
8
|
-
bottom: var(--notifications-bottom);
|
|
9
|
-
transform: var(--notifications-transform);
|
|
10
|
-
max-width: var(--notifications-container-width);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.m-5ed0edd0 + .m-5ed0edd0 {
|
|
14
|
-
margin-top: var(--mantine-spacing-md);
|
|
15
|
-
}
|
|
1
|
+
.m-b37d9ac7{bottom:var(--notifications-bottom);left:var(--notifications-left);max-width:var(--notifications-container-width);position:fixed;right:var(--notifications-right);top:var(--notifications-top);transform:var(--notifications-transform);width:calc(100% - var(--mantine-spacing-md)*2);z-index:var(--notifications-z-index)}.m-5ed0edd0+.m-5ed0edd0{margin-top:var(--mantine-spacing-md)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@layer mantine {.m-b37d9ac7{bottom:var(--notifications-bottom);left:var(--notifications-left);max-width:var(--notifications-container-width);position:fixed;right:var(--notifications-right);top:var(--notifications-top);transform:var(--notifications-transform);width:calc(100% - var(--mantine-spacing-md)*2);z-index:var(--notifications-z-index)}.m-5ed0edd0+.m-5ed0edd0{margin-top:var(--mantine-spacing-md)}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mantine/notifications",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"main": "./cjs/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"module": "./esm/index.mjs",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"default": "./cjs/index.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
"./styles.css": "./esm/index.css"
|
|
18
|
+
"./styles.css": "./esm/index.css",
|
|
19
|
+
"./styles.layer.css": "./esm/index.layer.css"
|
|
19
20
|
},
|
|
20
21
|
"license": "MIT",
|
|
21
22
|
"author": "Vitaly Rtishchev <rtivital@gmail.com>",
|
|
@@ -42,13 +43,13 @@
|
|
|
42
43
|
"notification-system"
|
|
43
44
|
],
|
|
44
45
|
"peerDependencies": {
|
|
45
|
-
"@mantine/core": "7.0
|
|
46
|
-
"@mantine/hooks": "7.0
|
|
46
|
+
"@mantine/core": "7.1.0",
|
|
47
|
+
"@mantine/hooks": "7.1.0",
|
|
47
48
|
"react": "^18.2.0",
|
|
48
49
|
"react-dom": "^18.2.0"
|
|
49
50
|
},
|
|
50
51
|
"dependencies": {
|
|
51
|
-
"@mantine/store": "7.0
|
|
52
|
+
"@mantine/store": "7.1.0",
|
|
52
53
|
"react-transition-group": "4.4.5"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {}
|