ados-rcm 1.1.442 → 1.1.444

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.
@@ -1,3 +1,7 @@
1
+ /**
2
+ * 레이아웃 상태를 저장하고 로드하기 위한 hook
3
+ * 다른 프로젝트에서 패키지로 사용할 때도 IndexedDB를 자동으로 생성하고 관리합니다.
4
+ */
1
5
  export declare function useLayoutDB(): {
2
6
  save: (id: string, lengths: number[]) => Promise<boolean>;
3
7
  get: (id: string) => Promise<number[] | null>;
@@ -1,6 +1,3 @@
1
- /**
2
- * IndexedDB 관리 모듈
3
- */
4
1
  export interface IRecord {
5
2
  id: string;
6
3
  [key: string]: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ados-rcm",
3
- "version": "1.1.442",
3
+ "version": "1.1.444",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",