@alfalab/core-components-vars 6.4.1 → 6.4.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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-vars@6.4.1...@alfalab/core-components-vars@6.4.2) (2022-07-18)
7
+
8
+ **Note:** Version bump only for package @alfalab/core-components-vars
9
+
10
+
11
+
12
+
13
+
6
14
  ## [6.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-vars@6.4.0...@alfalab/core-components-vars@6.4.1) (2022-07-14)
7
15
 
8
16
  **Note:** Version bump only for package @alfalab/core-components-vars
package/border-radius.css CHANGED
@@ -5,6 +5,7 @@
5
5
  --border-radius-l: 12px;
6
6
  --border-radius-xl: 16px;
7
7
  --border-radius-xxl: 20px;
8
+ --border-radius-3xl: 24px;
8
9
  --border-radius-circle: 50%;
9
10
  --border-radius-pill: 99px;
10
11
  }
@@ -5,6 +5,7 @@
5
5
  --border-radius-l: 12px;
6
6
  --border-radius-xl: 16px;
7
7
  --border-radius-xxl: 20px;
8
+ --border-radius-3xl: 24px;
8
9
  --border-radius-circle: 50%;
9
10
  --border-radius-pill: 99px;
10
11
  }
package/cssm/index.css CHANGED
@@ -707,6 +707,7 @@
707
707
  --border-radius-l: 12px;
708
708
  --border-radius-xl: 16px;
709
709
  --border-radius-xxl: 20px;
710
+ --border-radius-3xl: 24px;
710
711
  --border-radius-circle: 50%;
711
712
  --border-radius-pill: 99px;
712
713
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfalab/core-components-vars",
3
- "version": "6.4.1",
3
+ "version": "6.4.2",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "MIT",
@@ -9,5 +9,5 @@
9
9
  "access": "public",
10
10
  "directory": "dist"
11
11
  },
12
- "postinstall": "node ./send-stats.js > /dev/null 2>&1 || exit 0"
12
+ "postinstall": "node -e \"if (require('fs').existsSync('./send-stats.js')){require('./send-stats.js')} \""
13
13
  }