@vaneui/ui 0.1.1 → 0.1.3

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/dist/ui.css CHANGED
@@ -96,7 +96,7 @@
96
96
  --font-weight-bold: 700;
97
97
  --font-weight-extrabold: 800;
98
98
  --font-weight-black: 900;
99
- --tracking-tighter: -0.05em;
99
+ --tracking-tight: -0.025em;
100
100
  --radius-xs: 0.125rem;
101
101
  --radius-sm: 0.25rem;
102
102
  --radius-md: 0.375rem;
@@ -1001,9 +1001,9 @@
1001
1001
  --tw-font-weight: var(--font-weight-thin);
1002
1002
  font-weight: var(--font-weight-thin);
1003
1003
  }
1004
- .tracking-tighter {
1005
- --tw-tracking: var(--tracking-tighter);
1006
- letter-spacing: var(--tracking-tighter);
1004
+ .tracking-tight {
1005
+ --tw-tracking: var(--tracking-tight);
1006
+ letter-spacing: var(--tracking-tight);
1007
1007
  }
1008
1008
  .text-balance {
1009
1009
  text-wrap: balance;
package/package.json CHANGED
@@ -1,7 +1,24 @@
1
1
  {
2
2
  "name": "@vaneui/ui",
3
- "version": "0.1.1",
4
- "description": "",
3
+ "version": "0.1.3",
4
+ "description": "A simple, elegant, and lightweight UI component library for React, built with Tailwind CSS.",
5
+ "author": "",
6
+ "license": "ISC",
7
+ "homepage": "https://vaneui.com/",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/vaneui/vaneui.git"
11
+ },
12
+ "keywords": [
13
+ "react",
14
+ "ui",
15
+ "components",
16
+ "vane",
17
+ "vaneui",
18
+ "tailwind",
19
+ "headless",
20
+ "typescript"
21
+ ],
5
22
  "type": "module",
6
23
  "main": "dist/index.js",
7
24
  "module": "dist/index.esm.js",
@@ -30,16 +47,9 @@
30
47
  "build:js": "npm run type-check && npm run clean && rollup -c --bundleConfigAsCjs",
31
48
  "build:css:vars": "npx @tailwindcss/cli -i src/components/css/vars.css -o ./dist/vars.css",
32
49
  "build:css:ui": "npx @tailwindcss/cli -i src/components/index.css -o ./dist/ui.css",
33
- "watch:css:vars": "npx @tailwindcss/cli --watch -i src/components/css/vars.css -o ./dist/vars.css",
34
- "watch:css:ui": "npx @tailwindcss/cli --watch -i src/components/index.css -o ./dist/ui.css",
35
50
  "build": "npm run clean && npm run build:js && npm run build:css:ui && npm run build:css:vars",
36
- "watch": "npm run clean && concurrently \"rollup -c --bundleConfigAsCjs -w\" \"npm run watch:css:ui\" \"npm run watch:css:vars\"",
37
- "prepublishOnly": "npm run build",
38
51
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
39
52
  },
40
- "keywords": [],
41
- "author": "",
42
- "license": "ISC",
43
53
  "peerDependencies": {
44
54
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
45
55
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"