@stn-uiux/pub-ui-react 0.1.52 → 0.1.53

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 +13 -0
  2. package/package.json +8 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,19 @@ All notable changes to `@stn-uiux/pub-ui` and `@stn-uiux/pub-ui-react` will be d
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.1.53] - 2026-09-21
8
+
9
+ ### ⚠️ Developer Action Required (개발자 조치 사항)
10
+ 1. **패키지 업데이트**:
11
+ ```bash
12
+ npm install @stn-uiux/pub-ui-react@0.1.53
13
+ ```
14
+
15
+ ### Changed (변경 및 개선)
16
+ - `@stn-uiux/pub-ui` 0.1.53 피어 디펜던시 동기화
17
+
18
+ ---
19
+
7
20
  ## [0.1.52] - 2026-09-21
8
21
 
9
22
  ### ⚠️ Developer Action Required (개발자 조치 사항)
package/package.json CHANGED
@@ -1,16 +1,21 @@
1
1
  {
2
2
  "name": "@stn-uiux/pub-ui-react",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
4
4
  "description": "STN Pub React components — strict design system implementations",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "main": "./dist/index.js",
8
8
  "module": "./dist/index.js",
9
9
  "types": "./dist/index.d.ts",
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "CHANGELOG.md",
14
+ "bin"
15
+ ],
10
16
  "bin": {
11
17
  "stn-pub-ui-react": "./bin/stn-pub-ui-react.mjs"
12
18
  },
13
- "files": ["dist", "bin", "README.md", "CHANGELOG.md"],
14
19
  "scripts": {
15
20
  "build": "tsup",
16
21
  "prepack": "npm run build"
@@ -23,7 +28,7 @@
23
28
  "./package.json": "./package.json"
24
29
  },
25
30
  "peerDependencies": {
26
- "@stn-uiux/pub-ui": "^0.1.52",
31
+ "@stn-uiux/pub-ui": "^0.1.53",
27
32
  "react": ">=18.0.0 <21.0.0",
28
33
  "react-dom": ">=18.0.0 <21.0.0"
29
34
  },