@clickcns/vmedic-react 0.0.8 → 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.
- package/dist/cjs/ui/index.js +35 -35
- package/dist/cjs/ui/index.js.map +1 -1
- package/dist/es/ui/index.js +1774 -1758
- package/dist/es/ui/index.js.map +1 -1
- package/dist/hooks/feedbacks/index.d.ts +1 -1
- package/dist/ui/feedbacks/utils/focusEditor.d.ts +6 -0
- package/dist/ui/feedbacks/utils/index.d.ts +1 -0
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FeedbackListRequest } from '@clickcns/vmedic-react/types';
|
|
1
|
+
import { CreateFeedbackRequest, FeedbackListRequest } from '@clickcns/vmedic-react/types';
|
|
2
2
|
export declare const FEEDBACKS_QUERY_KEY: string[];
|
|
3
3
|
interface UseFeedbacksParams extends FeedbackListRequest {
|
|
4
4
|
enabled?: boolean;
|
|
@@ -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.
|
|
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",
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
},
|
|
50
50
|
"./hooks.user-notifications": {
|
|
51
51
|
"types": "./dist/hooks/user-notifications/index.d.ts",
|
|
52
|
-
"import": "./dist/es/hooks
|
|
53
|
-
"require": "./dist/cjs/hooks
|
|
52
|
+
"import": "./dist/es/hooks.user-notifications/index.js",
|
|
53
|
+
"require": "./dist/cjs/hooks.user-notifications/index.js"
|
|
54
54
|
},
|
|
55
55
|
"./hooks.feedbacks": {
|
|
56
56
|
"types": "./dist/hooks/feedbacks/index.d.ts",
|
|
57
|
-
"import": "./dist/es/hooks
|
|
58
|
-
"require": "./dist/cjs/hooks
|
|
57
|
+
"import": "./dist/es/hooks.feedbacks/index.js",
|
|
58
|
+
"require": "./dist/cjs/hooks.feedbacks/index.js"
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"files": [
|