@stn-uiux/pub-ui-react 0.1.51 → 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.
- package/CHANGELOG.md +31 -0
- package/README.md +0 -11
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,37 @@ 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
|
+
|
|
20
|
+
## [0.1.52] - 2026-09-21
|
|
21
|
+
|
|
22
|
+
### ⚠️ Developer Action Required (개발자 조치 사항)
|
|
23
|
+
1. **패키지 업데이트**:
|
|
24
|
+
```bash
|
|
25
|
+
npm install @stn-uiux/pub-ui-react@0.1.52
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Added (추가)
|
|
29
|
+
- **`StnSideNavigation.Item` 알림 아이콘 표준화**:
|
|
30
|
+
- 알림 메뉴 항목에 `icon={<StnIcon name="line/bell" size={20} />}` 기본 적용
|
|
31
|
+
|
|
32
|
+
### Fixed (버그 수정)
|
|
33
|
+
- `StnSideNavigation` 코드 생성기에서 알림 아이콘 누락 버그 해결
|
|
34
|
+
- `ComponentsTableDoc` 내 `EquipmentRow` 타입 참조 누락 해결
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
7
38
|
## [0.1.51] - 2026-09-21
|
|
8
39
|
|
|
9
40
|
### ⚠️ Developer Action Required (개발자 조치 사항)
|
package/README.md
CHANGED
|
@@ -47,17 +47,6 @@ export function App() {
|
|
|
47
47
|
| `applyThemeToDocument` | `boolean` | `false` | `true`일 경우 `<html>` 태그에 `data-theme` 속성을 자동 적용 |
|
|
48
48
|
| `useStn()` | Hook | - | 하위 컴포넌트에서 현재 테마 상태를 조회하는 훅 |
|
|
49
49
|
|
|
50
|
-
---
|
|
51
|
-
|
|
52
|
-
## 빠른 컴포넌트 생성 CLI
|
|
53
|
-
|
|
54
|
-
새로운 화면이나 레이아웃 템플릿을 빠르게 구성할 수 있는 대화형 스캐폴딩 도구를 제공합니다:
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
npx @stn-uiux/pub-ui-react help
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
---
|
|
61
50
|
|
|
62
51
|
## 주요 컴포넌트 목록
|
|
63
52
|
|
package/dist/index.d.ts
CHANGED
|
@@ -619,6 +619,9 @@ declare const StnTableSort: react.ForwardRefExoticComponent<ButtonHTMLAttributes
|
|
|
619
619
|
/** 프레스 면 고정 — `.is-pressed` (문서·마우스 다운과 동일) */
|
|
620
620
|
pressed?: boolean;
|
|
621
621
|
} & react.RefAttributes<HTMLButtonElement>>;
|
|
622
|
+
type StnTableRowActionsProps = HTMLAttributes<HTMLDivElement>;
|
|
623
|
+
/** Row Actions — 행 호버 시 우측 끝에 나타나는 액션 버튼 그룹 컨테이너 */
|
|
624
|
+
declare const StnTableRowActions: react.ForwardRefExoticComponent<StnTableRowActionsProps & react.RefAttributes<HTMLDivElement>>;
|
|
622
625
|
type StnTableCompound = typeof StnTableBase & {
|
|
623
626
|
Grid: typeof StnTableGrid;
|
|
624
627
|
Head: typeof StnTableHead;
|
|
@@ -629,6 +632,7 @@ type StnTableCompound = typeof StnTableBase & {
|
|
|
629
632
|
ThCheck: typeof StnTableThCheck;
|
|
630
633
|
TdCheck: typeof StnTableTdCheck;
|
|
631
634
|
Sort: typeof StnTableSort;
|
|
635
|
+
RowActions: typeof StnTableRowActions;
|
|
632
636
|
};
|
|
633
637
|
/**
|
|
634
638
|
* Pub list table shell — Infomap Figma thead/tbody (node 40000042:209510).
|
package/dist/index.js
CHANGED
|
@@ -1491,6 +1491,9 @@ var StnTableSort = forwardRef9(function StnTableSort2({ label, sort = "none", pr
|
|
|
1491
1491
|
}
|
|
1492
1492
|
);
|
|
1493
1493
|
});
|
|
1494
|
+
var StnTableRowActions = forwardRef9(function StnTableRowActions2({ className, children, ...rest }, ref) {
|
|
1495
|
+
return /* @__PURE__ */ jsx14("div", { ref, className: cn("stn-table__row-actions", className), ...rest, children });
|
|
1496
|
+
});
|
|
1494
1497
|
var StnTable = StnTableBase;
|
|
1495
1498
|
StnTable.Grid = StnTableGrid;
|
|
1496
1499
|
StnTable.Head = StnTableHead;
|
|
@@ -1501,6 +1504,7 @@ StnTable.Td = StnTableTd;
|
|
|
1501
1504
|
StnTable.ThCheck = StnTableThCheck;
|
|
1502
1505
|
StnTable.TdCheck = StnTableTdCheck;
|
|
1503
1506
|
StnTable.Sort = StnTableSort;
|
|
1507
|
+
StnTable.RowActions = StnTableRowActions;
|
|
1504
1508
|
|
|
1505
1509
|
// src/components/StnTree.tsx
|
|
1506
1510
|
import {
|