@mantine/core 8.3.13 → 8.3.15
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/LICENSE +21 -0
- package/cjs/components/Checkbox/Checkbox.cjs +2 -0
- package/cjs/components/Checkbox/Checkbox.cjs.map +1 -1
- package/cjs/components/CloseButton/CloseButton.cjs.map +1 -1
- package/cjs/components/MultiSelect/MultiSelect.cjs +10 -2
- package/cjs/components/MultiSelect/MultiSelect.cjs.map +1 -1
- package/cjs/components/Switch/Switch.cjs +2 -0
- package/cjs/components/Switch/Switch.cjs.map +1 -1
- package/cjs/components/TagsInput/TagsInput.cjs +11 -3
- package/cjs/components/TagsInput/TagsInput.cjs.map +1 -1
- package/cjs/components/TagsInput/get-splitted-tags.cjs +17 -2
- package/cjs/components/TagsInput/get-splitted-tags.cjs.map +1 -1
- package/cjs/index.cjs +2 -2
- package/esm/components/Checkbox/Checkbox.mjs +2 -0
- package/esm/components/Checkbox/Checkbox.mjs.map +1 -1
- package/esm/components/CloseButton/CloseButton.mjs.map +1 -1
- package/esm/components/MultiSelect/MultiSelect.mjs +10 -2
- package/esm/components/MultiSelect/MultiSelect.mjs.map +1 -1
- package/esm/components/Switch/Switch.mjs +2 -0
- package/esm/components/Switch/Switch.mjs.map +1 -1
- package/esm/components/TagsInput/TagsInput.mjs +11 -3
- package/esm/components/TagsInput/TagsInput.mjs.map +1 -1
- package/esm/components/TagsInput/get-splitted-tags.mjs +17 -2
- package/esm/components/TagsInput/get-splitted-tags.mjs.map +1 -1
- package/esm/index.mjs +1 -1
- package/lib/components/ActionIcon/ActionIcon.d.ts +3 -3
- package/lib/components/Anchor/Anchor.d.ts +3 -3
- package/lib/components/AppShell/AppShellSection/AppShellSection.d.ts +3 -3
- package/lib/components/Avatar/Avatar.d.ts +3 -3
- package/lib/components/BackgroundImage/BackgroundImage.d.ts +3 -3
- package/lib/components/Badge/Badge.d.ts +3 -3
- package/lib/components/Button/Button.d.ts +3 -3
- package/lib/components/Card/Card.d.ts +3 -3
- package/lib/components/Card/CardSection/CardSection.d.ts +3 -3
- package/lib/components/Center/Center.d.ts +3 -3
- package/lib/components/CloseButton/CloseButton.d.ts +4 -4
- package/lib/components/ColorSwatch/ColorSwatch.d.ts +3 -3
- package/lib/components/Flex/Flex.d.ts +3 -3
- package/lib/components/Highlight/Highlight.d.ts +3 -3
- package/lib/components/Image/Image.d.ts +3 -3
- package/lib/components/Input/Input.d.ts +3 -3
- package/lib/components/InputBase/InputBase.d.ts +3 -3
- package/lib/components/Menu/Menu.d.ts +3 -3
- package/lib/components/Menu/MenuItem/MenuItem.d.ts +3 -3
- package/lib/components/Menu/MenuSub/MenuSub.d.ts +3 -3
- package/lib/components/Menu/MenuSubItem/MenuSubItem.d.ts +3 -3
- package/lib/components/NavLink/NavLink.d.ts +3 -3
- package/lib/components/Overlay/Overlay.d.ts +3 -3
- package/lib/components/Paper/Paper.d.ts +3 -3
- package/lib/components/TagsInput/get-splitted-tags.d.ts +3 -1
- package/lib/components/Text/Text.d.ts +3 -3
- package/lib/components/UnstyledButton/UnstyledButton.d.ts +3 -3
- package/lib/core/factory/index.d.ts +5 -5
- package/package.json +2 -2
- package/styles/Chip.css +1 -1
- package/styles/Chip.layer.css +1 -1
- package/styles/Switch.css +4 -2
- package/styles/Switch.layer.css +4 -2
- package/styles.css +5 -3
- package/styles.layer.css +5 -3
package/styles/Chip.layer.css
CHANGED
package/styles/Switch.css
CHANGED
|
@@ -42,9 +42,11 @@
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.m_926b4011 {
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
/* Hide the input visually without removing it from the accessibility tree or obscuring it in the DOM */
|
|
46
|
+
height: 100%;
|
|
47
|
+
width: 100%;
|
|
47
48
|
opacity: 0;
|
|
49
|
+
|
|
48
50
|
margin: 0;
|
|
49
51
|
padding: 0;
|
|
50
52
|
position: absolute;
|
package/styles/Switch.layer.css
CHANGED
|
@@ -42,9 +42,11 @@
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.m_926b4011 {
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
/* Hide the input visually without removing it from the accessibility tree or obscuring it in the DOM */
|
|
46
|
+
height: 100%;
|
|
47
|
+
width: 100%;
|
|
47
48
|
opacity: 0;
|
|
49
|
+
|
|
48
50
|
margin: 0;
|
|
49
51
|
padding: 0;
|
|
50
52
|
position: absolute;
|
package/styles.css
CHANGED
|
@@ -3645,7 +3645,7 @@ fieldset:disabled .m_8ee546b8,
|
|
|
3645
3645
|
}
|
|
3646
3646
|
|
|
3647
3647
|
.m_be049a53:where([data-checked]) {
|
|
3648
|
-
padding: var(--chip-checked-padding);
|
|
3648
|
+
padding-inline: var(--chip-checked-padding);
|
|
3649
3649
|
}
|
|
3650
3650
|
|
|
3651
3651
|
.m_be049a53:where([data-disabled]) {
|
|
@@ -6682,9 +6682,11 @@ fieldset:disabled .m_38aeed47:where(:not([data-inverted])),
|
|
|
6682
6682
|
}
|
|
6683
6683
|
|
|
6684
6684
|
.m_926b4011 {
|
|
6685
|
-
|
|
6686
|
-
|
|
6685
|
+
/* Hide the input visually without removing it from the accessibility tree or obscuring it in the DOM */
|
|
6686
|
+
height: 100%;
|
|
6687
|
+
width: 100%;
|
|
6687
6688
|
opacity: 0;
|
|
6689
|
+
|
|
6688
6690
|
margin: 0;
|
|
6689
6691
|
padding: 0;
|
|
6690
6692
|
position: absolute;
|
package/styles.layer.css
CHANGED
|
@@ -3645,7 +3645,7 @@ fieldset:disabled .m_8ee546b8,
|
|
|
3645
3645
|
}
|
|
3646
3646
|
|
|
3647
3647
|
.m_be049a53:where([data-checked]) {
|
|
3648
|
-
padding: var(--chip-checked-padding);
|
|
3648
|
+
padding-inline: var(--chip-checked-padding);
|
|
3649
3649
|
}
|
|
3650
3650
|
|
|
3651
3651
|
.m_be049a53:where([data-disabled]) {
|
|
@@ -6682,9 +6682,11 @@ fieldset:disabled .m_38aeed47:where(:not([data-inverted])),
|
|
|
6682
6682
|
}
|
|
6683
6683
|
|
|
6684
6684
|
.m_926b4011 {
|
|
6685
|
-
|
|
6686
|
-
|
|
6685
|
+
/* Hide the input visually without removing it from the accessibility tree or obscuring it in the DOM */
|
|
6686
|
+
height: 100%;
|
|
6687
|
+
width: 100%;
|
|
6687
6688
|
opacity: 0;
|
|
6689
|
+
|
|
6688
6690
|
margin: 0;
|
|
6689
6691
|
padding: 0;
|
|
6690
6692
|
position: absolute;
|