eidos-ui 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/index.css +1 -0
  2. package/package.json +2 -1
package/dist/index.css CHANGED
@@ -1459,6 +1459,7 @@ svg.lucide {
1459
1459
  outline: none;
1460
1460
  }
1461
1461
  .eidos-chip {
1462
+ display: inline-flex;
1462
1463
  position: relative;
1463
1464
  border-radius: var(--border-radius-sm);
1464
1465
  font-weight: var(--font-weight-medium);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eidos-ui",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A modern React component library with TypeScript and SCSS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -40,6 +40,7 @@
40
40
  "prettier:check": "prettier --check .",
41
41
  "prettier:fix": "prettier --write .",
42
42
  "prepublishOnly": "npm run build",
43
+ "postversion": "git push --follow-tags",
43
44
  "init": "npm run dev & npm run storybook",
44
45
  "release:needed": "node scripts/release-needed.js",
45
46
  "release:preflight": "node scripts/preflight-release.js && npm run lint && npm run typecheck && npm run build",