@gfazioli/mantine-rings-progress 0.1.4 → 0.1.6
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/CHANGELOG.md +7 -1
- package/CONTRIBUTING.md +1 -1
- package/README.md +1 -0
- package/dist/styles.layer.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
The following is a list of notable changes to the Mantine
|
|
3
|
+
The following is a list of notable changes to the Mantine Ring Progress component.
|
|
4
4
|
Minor versions that are not listed in the changelog are bug fixes and small improvements.
|
|
5
5
|
|
|
6
|
+
## 0.1.5 (2024-06-10)
|
|
7
|
+
|
|
8
|
+
- 📝 Updated CHANGELOG, CONTRIBUTING and CODE_OF_CONDUCT
|
|
9
|
+
- 📦️ Updated Mantine 7.10.1
|
|
10
|
+
- 👷 Updated script release
|
|
11
|
+
|
|
6
12
|
## 0.1.4 (2024-03-17)
|
|
7
13
|
|
|
8
14
|
- 📝 Added CHANGELOG, CONTRIBUTING and CODE_OF_CONDUCT
|
package/CONTRIBUTING.md
CHANGED
package/README.md
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
This component is created on top of the [Mantine](https://mantine.dev/) library.
|
|
26
26
|
Display progress with animated rings like the Apple Watch activity app.
|
|
27
|
+
You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.
|
|
27
28
|
|
|
28
29
|
## Installation
|
|
29
30
|
|
package/dist/styles.layer.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer mantine {.me-b32e4812{position:relative}.me-b32e4812,.me-d43b5134{height:var(--rp-size);min-height:var(--rp-size);min-width:var(--rp-size);width:var(--rp-size)}.me-d43b5134{transform:rotate(-90deg)}.me-b1ca1fbf{stroke:var(--curve-color,var(--rp-curve-root-color))}[data-mantine-color-scheme=light] .me-b1ca1fbf{--rp-curve-root-color:var(--mantine-color-gray-2)}[data-mantine-color-scheme=dark] .me-b1ca1fbf{--rp-curve-root-color:var(--mantine-color-dark-4)}.me-b23f9dc4{left:var(--rp-label-offset);position:absolute;right:var(--rp-label-offset);top:50%;transform:translateY(-50%)}.me-726a891f{position:relative}.me-726a726d{left:0;position:absolute;top:0}}
|
|
1
|
+
@layer mantine-rings-progress {.me-b32e4812{position:relative}.me-b32e4812,.me-d43b5134{height:var(--rp-size);min-height:var(--rp-size);min-width:var(--rp-size);width:var(--rp-size)}.me-d43b5134{transform:rotate(-90deg)}.me-b1ca1fbf{stroke:var(--curve-color,var(--rp-curve-root-color))}[data-mantine-color-scheme=light] .me-b1ca1fbf{--rp-curve-root-color:var(--mantine-color-gray-2)}[data-mantine-color-scheme=dark] .me-b1ca1fbf{--rp-curve-root-color:var(--mantine-color-dark-4)}.me-b23f9dc4{left:var(--rp-label-offset);position:absolute;right:var(--rp-label-offset);top:50%;transform:translateY(-50%)}.me-726a891f{position:relative}.me-726a726d{left:0;position:absolute;top:0}}
|
package/package.json
CHANGED