@jbpark/ui-kit 2.1.0 → 2.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbpark/ui-kit",
3
- "version": "2.1.0",
3
+ "version": "2.2.2",
4
4
  "description": "Modern React UI component library built with TypeScript, Tailwind CSS, and Radix UI. Featuring atoms, molecules, organisms and layout templates for building beautiful interfaces.",
5
5
  "keywords": [
6
6
  "react",
@@ -99,6 +99,8 @@
99
99
  "lucide-react": "^0.542.0",
100
100
  "motion": "^12.23.12",
101
101
  "postcss": "^8.4.31",
102
+ "radix-ui": "^1.4.3",
103
+ "react-colorful": "^5.6.1",
102
104
  "react-use": "^17.6.0",
103
105
  "swiper": "^11.2.10",
104
106
  "tailwind-merge": "^3.3.1",
@@ -114,7 +116,7 @@
114
116
  "scripts": {
115
117
  "prebuild": "npx @tailwindcss/cli -i ./src/globals.css -o ./src/output.css",
116
118
  "build": "tsdown",
117
- "lint": "eslint . --max-warnings 0",
119
+ "lint": "eslint .",
118
120
  "generate:component": "turbo gen react-component",
119
121
  "check-types": "tsc --noEmit"
120
122
  }
@@ -1,12 +0,0 @@
1
- //#region src/lib/enums/index.ts
2
- const TEXT_LEVELS = {
3
- 1: "text-2xl",
4
- 2: "text-xl",
5
- 3: "text-lg",
6
- 4: "text-base",
7
- 5: "text-sm",
8
- 6: "text-xs"
9
- };
10
-
11
- //#endregion
12
- export { TEXT_LEVELS as t };