@clickcns/vmedic-react 0.0.9 → 0.0.10

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.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * contenteditable 요소를 찾아서 포커스하는 유틸 함수
3
+ * @param containerId - 컨테이너 ID (옵션)
4
+ * @param delay - 포커스 전 대기 시간 (기본값: 100ms)
5
+ */
6
+ export declare const focusEditor: (containerId?: string, delay?: number) => void;
@@ -0,0 +1 @@
1
+ export { focusEditor } from './focusEditor';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickcns/vmedic-react",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A collection of powerful utilities and components built with React and Vite",
5
5
  "author": "clickcns",
6
6
  "license": "MIT",
@@ -48,12 +48,12 @@
48
48
  "require": "./dist/cjs/hooks/index.js"
49
49
  },
50
50
  "./hooks.user-notifications": {
51
- "types": "./dist/hooks.user-notifications/index.d.ts",
51
+ "types": "./dist/hooks/user-notifications/index.d.ts",
52
52
  "import": "./dist/es/hooks.user-notifications/index.js",
53
53
  "require": "./dist/cjs/hooks.user-notifications/index.js"
54
54
  },
55
55
  "./hooks.feedbacks": {
56
- "types": "./dist/hooks.feedbacks/index.d.ts",
56
+ "types": "./dist/hooks/feedbacks/index.d.ts",
57
57
  "import": "./dist/es/hooks.feedbacks/index.js",
58
58
  "require": "./dist/cjs/hooks.feedbacks/index.js"
59
59
  }