@mantine/nprogress 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 CHANGED
@@ -1,35 +1 @@
1
- .m-8f2832ae {
2
- position: fixed;
3
- top: 0;
4
- right: 0;
5
- left: 0;
6
- z-index: var(--nprogress-z-index);
7
- background-color: transparent;
8
- transition: opacity 150ms ease;
9
- transition-delay: 50ms;
10
- opacity: var(--_nprogress-opacity, 0);
11
- overflow: visible;
12
- }
13
-
14
- .m-8f2832ae[data-mounted] {
15
- --_nprogress-opacity: 1;
16
- }
17
-
18
- .m-7a0fe999 {
19
- position: relative;
20
- transition: width 150ms ease;
21
- overflow: visible;
22
- }
23
-
24
- .m-7a0fe999::before {
25
- content: '';
26
- position: absolute;
27
- width: calc(6.25rem * var(--mantine-scale));
28
- height: var(--progress-size);
29
- top: 0;
30
- right: 1px;
31
- transform: rotate(4deg) translateY(-4px);
32
- box-shadow:
33
- 0 0 10px var(--progress-section-color),
34
- 0 0 5px var(--progress-section-color);
35
- }
1
+ .m-8f2832ae{background-color:transparent;left:0;opacity:var(--_nprogress-opacity,0);overflow:visible;position:fixed;right:0;top:0;transition:opacity .15s ease;transition-delay:50ms;z-index:var(--nprogress-z-index)}.m-8f2832ae[data-mounted]{--_nprogress-opacity:1}.m-7a0fe999{overflow:visible;position:relative;transition:width .15s ease}.m-7a0fe999:before{box-shadow:0 0 10px var(--progress-section-color),0 0 5px var(--progress-section-color);content:"";height:var(--progress-size);position:absolute;right:1px;top:0;transform:rotate(4deg) translateY(-4px);width:calc(6.25rem*var(--mantine-scale))}
package/esm/index.css CHANGED
@@ -1,35 +1 @@
1
- .m-8f2832ae {
2
- position: fixed;
3
- top: 0;
4
- right: 0;
5
- left: 0;
6
- z-index: var(--nprogress-z-index);
7
- background-color: transparent;
8
- transition: opacity 150ms ease;
9
- transition-delay: 50ms;
10
- opacity: var(--_nprogress-opacity, 0);
11
- overflow: visible;
12
- }
13
-
14
- .m-8f2832ae[data-mounted] {
15
- --_nprogress-opacity: 1;
16
- }
17
-
18
- .m-7a0fe999 {
19
- position: relative;
20
- transition: width 150ms ease;
21
- overflow: visible;
22
- }
23
-
24
- .m-7a0fe999::before {
25
- content: '';
26
- position: absolute;
27
- width: calc(6.25rem * var(--mantine-scale));
28
- height: var(--progress-size);
29
- top: 0;
30
- right: 1px;
31
- transform: rotate(4deg) translateY(-4px);
32
- box-shadow:
33
- 0 0 10px var(--progress-section-color),
34
- 0 0 5px var(--progress-section-color);
35
- }
1
+ .m-8f2832ae{background-color:transparent;left:0;opacity:var(--_nprogress-opacity,0);overflow:visible;position:fixed;right:0;top:0;transition:opacity .15s ease;transition-delay:50ms;z-index:var(--nprogress-z-index)}.m-8f2832ae[data-mounted]{--_nprogress-opacity:1}.m-7a0fe999{overflow:visible;position:relative;transition:width .15s ease}.m-7a0fe999:before{box-shadow:0 0 10px var(--progress-section-color),0 0 5px var(--progress-section-color);content:"";height:var(--progress-size);position:absolute;right:1px;top:0;transform:rotate(4deg) translateY(-4px);width:calc(6.25rem*var(--mantine-scale))}
@@ -0,0 +1 @@
1
+ @layer mantine {.m-8f2832ae{background-color:transparent;left:0;opacity:var(--_nprogress-opacity,0);overflow:visible;position:fixed;right:0;top:0;transition:opacity .15s ease;transition-delay:50ms;z-index:var(--nprogress-z-index)}.m-8f2832ae[data-mounted]{--_nprogress-opacity:1}.m-7a0fe999{overflow:visible;position:relative;transition:width .15s ease}.m-7a0fe999:before{box-shadow:0 0 10px var(--progress-section-color),0 0 5px var(--progress-section-color);content:"";height:var(--progress-size);position:absolute;right:1px;top:0;transform:rotate(4deg) translateY(-4px);width:calc(6.25rem*var(--mantine-scale))}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mantine/nprogress",
3
3
  "description": "Navigation progress bar",
4
- "version": "7.0.2",
4
+ "version": "7.1.0",
5
5
  "main": "./cjs/index.js",
6
6
  "types": "./lib/index.d.ts",
7
7
  "module": "./esm/index.mjs",
@@ -16,7 +16,8 @@
16
16
  "default": "./cjs/index.js"
17
17
  }
18
18
  },
19
- "./styles.css": "./esm/index.css"
19
+ "./styles.css": "./esm/index.css",
20
+ "./styles.layer.css": "./esm/index.layer.css"
20
21
  },
21
22
  "license": "MIT",
22
23
  "author": "Vitaly Rtishchev <rtivital@gmail.com>",
@@ -30,13 +31,13 @@
30
31
  "directory": "src/mantine-nprogress"
31
32
  },
32
33
  "peerDependencies": {
33
- "@mantine/core": "7.0.2",
34
- "@mantine/hooks": "7.0.2",
34
+ "@mantine/core": "7.1.0",
35
+ "@mantine/hooks": "7.1.0",
35
36
  "react": "^18.2.0",
36
37
  "react-dom": "^18.2.0"
37
38
  },
38
39
  "dependencies": {
39
- "@mantine/store": "7.0.2"
40
+ "@mantine/store": "7.1.0"
40
41
  },
41
42
  "devDependencies": {}
42
43
  }