@availity/mui-favorites 0.2.4 → 0.2.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 CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.2.6](https://github.com/Availity/element/compare/@availity/mui-favorites@0.2.5...@availity/mui-favorites@0.2.6) (2025-01-22)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `0.2.5`
10
+ * `mui-progress` updated to version `0.2.5`
11
+ ## [0.2.5](https://github.com/Availity/element/compare/@availity/mui-favorites@0.2.4...@availity/mui-favorites@0.2.5) (2025-01-13)
12
+
5
13
  ## [0.2.4](https://github.com/Availity/element/compare/@availity/mui-favorites@0.2.3...@availity/mui-favorites@0.2.4) (2025-01-10)
6
14
 
7
15
  ## [0.2.3](https://github.com/Availity/element/compare/@availity/mui-favorites@0.2.2...@availity/mui-favorites@0.2.3) (2025-01-06)
package/dist/index.js CHANGED
@@ -309,7 +309,7 @@ var FavoriteIcon = (0, import_styles.styled)("div", {
309
309
  fontSize: fontSize(customSize)
310
310
  }));
311
311
  var validateSize = (size) => {
312
- const match = size.match(/^(\\d*\.?\d+)(px|rem)$/);
312
+ const match = size.match(/^(\d*\.?\d+)(px|rem)$/);
313
313
  if (!match) {
314
314
  return false;
315
315
  }
package/dist/index.mjs CHANGED
@@ -274,7 +274,7 @@ var FavoriteIcon = styled("div", {
274
274
  fontSize: fontSize(customSize)
275
275
  }));
276
276
  var validateSize = (size) => {
277
- const match = size.match(/^(\\d*\.?\d+)(px|rem)$/);
277
+ const match = size.match(/^(\d*\.?\d+)(px|rem)$/);
278
278
  if (!match) {
279
279
  return false;
280
280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-favorites",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Availity MUI Favorites Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -37,8 +37,8 @@
37
37
  "@tanstack/react-query": "^4.36.1"
38
38
  },
39
39
  "devDependencies": {
40
- "@availity/mui-icon": "^0.12.1",
41
- "@availity/mui-progress": "^0.4.3",
40
+ "@availity/mui-icon": "^0.13.0",
41
+ "@availity/mui-progress": "^0.4.4",
42
42
  "@availity/mui-tooltip": "^0.5.8",
43
43
  "@mui/material": "^5.15.15",
44
44
  "react": "18.2.0",
@@ -47,8 +47,8 @@
47
47
  "typescript": "^5.4.5"
48
48
  },
49
49
  "peerDependencies": {
50
- "@availity/mui-icon": "^0.12.1",
51
- "@availity/mui-progress": "^0.4.3",
50
+ "@availity/mui-icon": "^0.13.0",
51
+ "@availity/mui-progress": "^0.4.4",
52
52
  "@availity/mui-tooltip": "^0.5.8",
53
53
  "@mui/material": "^5.11.9",
54
54
  "react": ">=16.3.0"
@@ -63,7 +63,7 @@ const FavoriteIcon = styled('div', {
63
63
  // validates the size input is the correct format and at least 24px or 1.5rem
64
64
  const validateSize = (size: string) => {
65
65
  // Match the number and unit in the size string
66
- const match = size.match(/^(\\d*\.?\d+)(px|rem)$/);
66
+ const match = size.match(/^(\d*\.?\d+)(px|rem)$/);
67
67
 
68
68
  if (!match) {
69
69
  return false; // Invalid format