@mantine/core 7.9.1 → 7.9.2
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/components/Divider/Divider.cjs.map +1 -1
- package/cjs/components/Input/InputWrapper/get-input-offsets/get-input-offsets.cjs +4 -4
- package/cjs/components/Input/InputWrapper/get-input-offsets/get-input-offsets.cjs.map +1 -1
- package/cjs/components/Pagination/Pagination.icons.cjs.map +1 -1
- package/cjs/components/Rating/Rating.cjs +4 -3
- package/cjs/components/Rating/Rating.cjs.map +1 -1
- package/cjs/components/TagsInput/TagsInput.cjs +7 -3
- package/cjs/components/TagsInput/TagsInput.cjs.map +1 -1
- package/cjs/core/MantineProvider/use-mantine-color-scheme/use-mantine-color-scheme.cjs +7 -3
- package/cjs/core/MantineProvider/use-mantine-color-scheme/use-mantine-color-scheme.cjs.map +1 -1
- package/esm/components/Divider/Divider.mjs.map +1 -1
- package/esm/components/Input/InputWrapper/get-input-offsets/get-input-offsets.mjs +4 -4
- package/esm/components/Input/InputWrapper/get-input-offsets/get-input-offsets.mjs.map +1 -1
- package/esm/components/Pagination/Pagination.icons.mjs.map +1 -1
- package/esm/components/Rating/Rating.mjs +4 -3
- package/esm/components/Rating/Rating.mjs.map +1 -1
- package/esm/components/TagsInput/TagsInput.mjs +8 -4
- package/esm/components/TagsInput/TagsInput.mjs.map +1 -1
- package/esm/core/MantineProvider/use-mantine-color-scheme/use-mantine-color-scheme.mjs +8 -4
- package/esm/core/MantineProvider/use-mantine-color-scheme/use-mantine-color-scheme.mjs.map +1 -1
- package/lib/components/Divider/Divider.d.ts +1 -1
- package/lib/components/Pagination/Pagination.icons.d.ts +1 -0
- package/package.json +3 -3
- package/styles/NavLink.css +4 -4
- package/styles/NavLink.layer.css +4 -4
- package/styles.css +4 -4
- package/styles.layer.css +4 -4
package/styles/NavLink.css
CHANGED
|
@@ -35,26 +35,26 @@
|
|
|
35
35
|
pointer-events: none;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.m_f0824112:where([data-active]) {
|
|
38
|
+
.m_f0824112:where([data-active], [aria-current='page']) {
|
|
39
39
|
background-color: var(--nl-bg);
|
|
40
40
|
color: var(--nl-color);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
@media (hover: hover) {
|
|
44
44
|
|
|
45
|
-
.m_f0824112:where([data-active]):hover {
|
|
45
|
+
.m_f0824112:where([data-active], [aria-current='page']):hover {
|
|
46
46
|
background-color: var(--nl-hover);
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
@media (hover: none) {
|
|
51
51
|
|
|
52
|
-
.m_f0824112:where([data-active]):active {
|
|
52
|
+
.m_f0824112:where([data-active], [aria-current='page']):active {
|
|
53
53
|
background-color: var(--nl-hover);
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
.m_f0824112:where([data-active]) .m_57492dcc {
|
|
57
|
+
.m_f0824112:where([data-active], [aria-current='page']) .m_57492dcc {
|
|
58
58
|
--description-opacity: 0.9;
|
|
59
59
|
--description-color: var(--nl-color);
|
|
60
60
|
}
|
package/styles/NavLink.layer.css
CHANGED
|
@@ -35,26 +35,26 @@
|
|
|
35
35
|
pointer-events: none;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.m_f0824112:where([data-active]) {
|
|
38
|
+
.m_f0824112:where([data-active], [aria-current='page']) {
|
|
39
39
|
background-color: var(--nl-bg);
|
|
40
40
|
color: var(--nl-color);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
@media (hover: hover) {
|
|
44
44
|
|
|
45
|
-
.m_f0824112:where([data-active]):hover {
|
|
45
|
+
.m_f0824112:where([data-active], [aria-current='page']):hover {
|
|
46
46
|
background-color: var(--nl-hover);
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
@media (hover: none) {
|
|
51
51
|
|
|
52
|
-
.m_f0824112:where([data-active]):active {
|
|
52
|
+
.m_f0824112:where([data-active], [aria-current='page']):active {
|
|
53
53
|
background-color: var(--nl-hover);
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
.m_f0824112:where([data-active]) .m_57492dcc {
|
|
57
|
+
.m_f0824112:where([data-active], [aria-current='page']) .m_57492dcc {
|
|
58
58
|
--description-opacity: 0.9;
|
|
59
59
|
--description-color: var(--nl-color);
|
|
60
60
|
}
|
package/styles.css
CHANGED
|
@@ -4263,26 +4263,26 @@ fieldset:disabled .m_d3ea56bb,
|
|
|
4263
4263
|
pointer-events: none;
|
|
4264
4264
|
}
|
|
4265
4265
|
|
|
4266
|
-
.m_f0824112:where([data-active]) {
|
|
4266
|
+
.m_f0824112:where([data-active], [aria-current='page']) {
|
|
4267
4267
|
background-color: var(--nl-bg);
|
|
4268
4268
|
color: var(--nl-color);
|
|
4269
4269
|
}
|
|
4270
4270
|
|
|
4271
4271
|
@media (hover: hover) {
|
|
4272
4272
|
|
|
4273
|
-
.m_f0824112:where([data-active]):hover {
|
|
4273
|
+
.m_f0824112:where([data-active], [aria-current='page']):hover {
|
|
4274
4274
|
background-color: var(--nl-hover);
|
|
4275
4275
|
}
|
|
4276
4276
|
}
|
|
4277
4277
|
|
|
4278
4278
|
@media (hover: none) {
|
|
4279
4279
|
|
|
4280
|
-
.m_f0824112:where([data-active]):active {
|
|
4280
|
+
.m_f0824112:where([data-active], [aria-current='page']):active {
|
|
4281
4281
|
background-color: var(--nl-hover);
|
|
4282
4282
|
}
|
|
4283
4283
|
}
|
|
4284
4284
|
|
|
4285
|
-
.m_f0824112:where([data-active]) .m_57492dcc {
|
|
4285
|
+
.m_f0824112:where([data-active], [aria-current='page']) .m_57492dcc {
|
|
4286
4286
|
--description-opacity: 0.9;
|
|
4287
4287
|
--description-color: var(--nl-color);
|
|
4288
4288
|
}
|
package/styles.layer.css
CHANGED
|
@@ -4263,26 +4263,26 @@ fieldset:disabled .m_d3ea56bb,
|
|
|
4263
4263
|
pointer-events: none;
|
|
4264
4264
|
}
|
|
4265
4265
|
|
|
4266
|
-
.m_f0824112:where([data-active]) {
|
|
4266
|
+
.m_f0824112:where([data-active], [aria-current='page']) {
|
|
4267
4267
|
background-color: var(--nl-bg);
|
|
4268
4268
|
color: var(--nl-color);
|
|
4269
4269
|
}
|
|
4270
4270
|
|
|
4271
4271
|
@media (hover: hover) {
|
|
4272
4272
|
|
|
4273
|
-
.m_f0824112:where([data-active]):hover {
|
|
4273
|
+
.m_f0824112:where([data-active], [aria-current='page']):hover {
|
|
4274
4274
|
background-color: var(--nl-hover);
|
|
4275
4275
|
}
|
|
4276
4276
|
}
|
|
4277
4277
|
|
|
4278
4278
|
@media (hover: none) {
|
|
4279
4279
|
|
|
4280
|
-
.m_f0824112:where([data-active]):active {
|
|
4280
|
+
.m_f0824112:where([data-active], [aria-current='page']):active {
|
|
4281
4281
|
background-color: var(--nl-hover);
|
|
4282
4282
|
}
|
|
4283
4283
|
}
|
|
4284
4284
|
|
|
4285
|
-
.m_f0824112:where([data-active]) .m_57492dcc {
|
|
4285
|
+
.m_f0824112:where([data-active], [aria-current='page']) .m_57492dcc {
|
|
4286
4286
|
--description-opacity: 0.9;
|
|
4287
4287
|
--description-color: var(--nl-color);
|
|
4288
4288
|
}
|