m3-ripple 1.0.1 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.0.2 - 22 Jun 2025
2
+ Fix:
3
+ - Unexpected semi-colon in CSS
4
+
1
5
  # 1.0.1 - 22 Jun 2025
2
6
  Improvement:
3
7
  - Export `main`, `module`, and `types` in package.json
package/dist/ripple.css CHANGED
@@ -21,7 +21,7 @@
21
21
  inset: 0;
22
22
  pointer-events: none;
23
23
  overflow: hidden;
24
- border-radius: inherit;;
24
+ border-radius: inherit;
25
25
  }
26
26
 
27
27
  .salty-ripple .salty-ripple-surface::before,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "m3-ripple",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "React TypeScript implementation of Material Design 3 Ripple component",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",