@codefast/ui 0.2.15 → 0.2.17

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/CHANGELOG.md +27 -0
  2. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @codefast/ui
2
2
 
3
+ ## 0.2.17
4
+
5
+ ### Patch Changes
6
+
7
+ - [`70cf9f0`](https://github.com/codefastlabs/codefast/commit/70cf9f0511d16dbe0de1a8361861070d41dcf806) Thanks [@thevuong](https://github.com/thevuong)! - improve eslint configuration structure
8
+
9
+ - Updated dependencies [[`70cf9f0`](https://github.com/codefastlabs/codefast/commit/70cf9f0511d16dbe0de1a8361861070d41dcf806)]:
10
+ - @codefast/hooks@0.2.17
11
+ - @codefast-ui/checkbox-group@0.2.17
12
+ - @codefast-ui/day-picker@0.2.17
13
+ - @codefast-ui/input@0.2.17
14
+ - @codefast-ui/number-input@0.2.17
15
+
16
+ ## 0.2.16
17
+
18
+ ### Patch Changes
19
+
20
+ - [`63b4ce9`](https://github.com/codefastlabs/codefast/commit/63b4ce9a7223c619b956851c645378602a84e297) Thanks [@thevuong](https://github.com/thevuong)! - enhance various configurations across the project, ensuring consistency and best practices are
21
+ maintained, while also updating dependencies to their latest stable versions to improve performance
22
+ and security.
23
+ - Updated dependencies [[`63b4ce9`](https://github.com/codefastlabs/codefast/commit/63b4ce9a7223c619b956851c645378602a84e297)]:
24
+ - @codefast/hooks@0.2.16
25
+ - @codefast-ui/checkbox-group@0.2.16
26
+ - @codefast-ui/day-picker@0.2.16
27
+ - @codefast-ui/input@0.2.16
28
+ - @codefast-ui/number-input@0.2.16
29
+
3
30
  ## 0.2.15
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codefast/ui",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
4
4
  "bugs": {
5
5
  "url": "https://github.com/codefastlabs/codefast/issues"
6
6
  },
@@ -88,11 +88,11 @@
88
88
  "tailwind-merge": "^3.0.1",
89
89
  "tailwind-variants": "^0.3.1",
90
90
  "vaul": "^1.1.2",
91
- "@codefast-ui/checkbox-group": "0.2.15",
92
- "@codefast-ui/day-picker": "0.2.15",
93
- "@codefast-ui/input": "0.2.15",
94
- "@codefast-ui/number-input": "0.2.15",
95
- "@codefast/hooks": "0.2.15"
91
+ "@codefast-ui/checkbox-group": "0.2.17",
92
+ "@codefast-ui/day-picker": "0.2.17",
93
+ "@codefast-ui/input": "0.2.17",
94
+ "@codefast-ui/number-input": "0.2.17",
95
+ "@codefast/hooks": "0.2.17"
96
96
  },
97
97
  "devDependencies": {
98
98
  "@tailwindcss/postcss": "4.0.3",
@@ -103,8 +103,8 @@
103
103
  "tailwindcss": "4.0.3",
104
104
  "tsup": "^8.3.6",
105
105
  "typescript": "^5.7.3",
106
- "@codefast/eslint-config": "0.2.15",
107
- "@codefast/typescript-config": "0.2.15"
106
+ "@codefast/eslint-config": "0.2.17",
107
+ "@codefast/typescript-config": "0.2.17"
108
108
  },
109
109
  "peerDependencies": {
110
110
  "@tanstack/react-table": ">=8",
@@ -137,6 +137,7 @@
137
137
  "build": "tsup",
138
138
  "clean": "rm -rf node_modules dist",
139
139
  "dev": "tsup --watch",
140
- "lint": "TIMING=1 eslint --max-warnings 0"
140
+ "lint": "TIMING=1 eslint --max-warnings 0",
141
+ "lint:inspect": "npx @eslint/config-inspector@latest"
141
142
  }
142
143
  }