@uniai-fe/uds-templates 0.3.15 → 0.4.0

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/README.md CHANGED
@@ -29,6 +29,59 @@ Next.js 서비스에서 primitives와 동일한 방식으로 **Raw TypeScript**
29
29
  - **templates**는 레이아웃/플로우/상태 표현까지 담당하고,
30
30
  - API 호출, 인증 토큰 관리, 라우팅, i18n 등 비즈니스 로직은 서비스 앱에서 구현합니다.
31
31
 
32
+ ## 확인 완료 도구 목록
33
+
34
+ - `/modal`
35
+ - `Modal.Provider`
36
+ - `Modal.StackProvider`
37
+ - `Modal.RouteReset`
38
+ - `Modal.useModal`
39
+ - `Modal.Alert`
40
+ - `Modal.Dialog`
41
+ - `createAlertModal`
42
+ - `createDialogModal`
43
+ - `modalStackAtom`
44
+ - `ModalState`
45
+ - `ModalStatePatch`
46
+ - `ModalProps`
47
+ - `ModalFooterButton`
48
+ - `AlertTemplateOptions`
49
+ - `DialogTemplateOptions`
50
+ - `UseModalReturn`
51
+ - `/weather`
52
+ - `WeatherComponents.PageHeader`
53
+ - `WeatherPageHeaderContainer`
54
+ - `WeatherMockProvider`
55
+ - `weatherCoordinate`
56
+ - `useWeatherKorea`
57
+ - `useOpenWeatherMap`
58
+ - `/cctv`
59
+ - `CCTV.Provider`
60
+ - `CCTV.CamList.Container`
61
+ - `CCTV.Video.Container`
62
+ - `CCTV.Video.Contents`
63
+ - `CCTV.Video.Overlay.Container`
64
+ - `CCTV.Pagination.Container`
65
+ - `CCTV.Pagination.List.Container`
66
+ - `CCTV.Pagination.Button.Prev`
67
+ - `CCTV.Pagination.Button.Next`
68
+ - `CCTV.Viewer.Desktop.Container`
69
+ - `useCctvCompanyData`
70
+ - `useCctvContext`
71
+ - `useCctvRtcStream`
72
+ - `getServerCompanyList`
73
+ - `getServerCctvToken`
74
+ - `postCctvRtcToken`
75
+ - `/page-frame`
76
+ - `Frame`
77
+ - `Frame.Mobile`
78
+ - `MobileFrame`
79
+ - `Frame.Desktop`
80
+ - `DesktopFrame`
81
+ - `MobileFrameProps`
82
+ - `PageFrameDesktopNavProps`
83
+ - `SitemapDataType`
84
+
32
85
  ## 현재 제공 템플릿/모듈
33
86
 
34
87
  - `/auth/**`
@@ -42,6 +95,12 @@ Next.js 서비스에서 primitives와 동일한 방식으로 **Raw TypeScript**
42
95
  - `/modal/**`
43
96
  - ui-legacy 스택 기반 모달 Provider/Root/Container + 템플릿(`Modal.Alert`, `Modal.Dialog`)
44
97
  - Storybook(`apps/design-storybook/src/stories/templates/modal`)에서 Alert/Confirm 케이스를 검증한다.
98
+ - `/weather/**`
99
+ - page-frame header utility에 결합되는 weather header 템플릿과 weather data hook/mock 도구를 제공한다.
100
+ - `/cctv/**`
101
+ - finder/viewer/video/pagination 조합과 rtc/company-list API helper를 제공한다.
102
+ - `/page-frame/**`
103
+ - mobile/desktop private route frame, nav/header/popup 조합을 제공한다.
45
104
 
46
105
  각 템플릿의 상세한 범위와 의사결정은 `CONTEXT-*.md` 문서에서 관리합니다.
47
106
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-templates",
3
- "version": "0.3.15",
3
+ "version": "0.4.0",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -4,6 +4,9 @@ import CCTVProvider from "./Provider";
4
4
  import { CCTVVideo } from "./video";
5
5
  import { CCTVViewer } from "./viewer";
6
6
 
7
+ /**
8
+ * CCTV Components; CCTV component namespace 집계
9
+ */
7
10
  export const CCTV = {
8
11
  Provider: CCTVProvider,
9
12
  Video: CCTVVideo,
@@ -1,5 +1,8 @@
1
1
  import "./index.scss";
2
2
 
3
+ /**
4
+ * CCTV; viewer, cam-list, pagination, api/hook/jotai 도구를 함께 제공하는 엔트리
5
+ */
3
6
  export * from "./apis";
4
7
  export * from "./data";
5
8
  export * from "./components";
@@ -11,6 +11,9 @@ import {
11
11
  createDialogModal,
12
12
  } from "./components";
13
13
 
14
+ /**
15
+ * Modal; namespace와 direct export를 함께 제공하는 modal 엔트리
16
+ */
14
17
  export const Modal = ModalNamespace;
15
18
 
16
19
  export {
@@ -3,6 +3,9 @@ import Nav from "./nav";
3
3
  import Header from "./header";
4
4
  import Popup from "./popup";
5
5
 
6
+ /**
7
+ * Page Frame Desktop Components; desktop frame namespace 집계
8
+ */
6
9
  const Frame = {
7
10
  Page: {
8
11
  ...Page,
@@ -2,6 +2,9 @@ import "./index.scss";
2
2
 
3
3
  import Frame from "./components";
4
4
 
5
+ /**
6
+ * Page Frame Desktop; desktop frame 엔트리
7
+ */
5
8
  export type * from "./types";
6
9
  export * from "./data/setting";
7
10
 
@@ -1,6 +1,9 @@
1
1
  import { DesktopFrame } from "./desktop";
2
2
  import { MobileFrame } from "./mobile";
3
3
 
4
+ /**
5
+ * Frame; desktop/mobile page-frame namespace 집계
6
+ */
4
7
  export * from "./mobile";
5
8
  export * from "./types";
6
9
  export * from "./desktop";
@@ -2,6 +2,9 @@ import Page from "./page";
2
2
  import Header from "./header";
3
3
  import Navigation from "./navigation";
4
4
 
5
+ /**
6
+ * Page Frame Mobile Components; mobile frame namespace 집계
7
+ */
5
8
  const Frame = {
6
9
  Page,
7
10
  Header,
@@ -2,6 +2,9 @@ import "./index.scss";
2
2
 
3
3
  import { MobileFrame } from "./components/page/Frame";
4
4
 
5
+ /**
6
+ * Page Frame Mobile; mobile frame 엔트리
7
+ */
5
8
  export type { MobileFrameProps } from "./types";
6
9
  export * from "./components";
7
10
  export { MobileFrame };
@@ -1,5 +1,8 @@
1
1
  import WeatherPageHeaderContainer from "./page-header/Container";
2
2
 
3
+ /**
4
+ * Weather Components; weather component namespace 집계
5
+ */
3
6
  const Weather = {
4
7
  PageHeader: WeatherPageHeaderContainer,
5
8
  };
@@ -1,6 +1,9 @@
1
1
  // Weather UI 컴포넌트 전용 스타일을 로드한다.
2
2
  import "./styles/weather.scss";
3
3
 
4
+ /**
5
+ * Weather; page-header 템플릿과 api/hook/jotai/mock 도구를 함께 제공하는 엔트리
6
+ */
4
7
  export * from "./utils";
5
8
  export * from "./apis";
6
9
  export * from "./jotai";