hanbiro-react16-sdk 1.0.0 → 1.0.2
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 +88 -0
- package/dist/components/ChatAIDraft/List.d.ts +1 -1
- package/dist/components/index.js +1 -1
- package/dist/{index-DuSzMCvF.mjs → index-BB9T_tBw.mjs} +396 -347
- package/dist/index.js +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/url.d.ts +10 -0
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './url';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface SDKConfig {
|
|
2
|
+
baseUrl: string;
|
|
3
|
+
signer: any | null;
|
|
4
|
+
}
|
|
5
|
+
export declare const SDKConfig: SDKConfig;
|
|
6
|
+
export declare const initHanbiroReactSDK: ({ baseUrl, signer }: SDKConfig) => void;
|
|
7
|
+
export declare const isDevelopment: boolean;
|
|
8
|
+
export declare const getBaseUrl: () => string;
|
|
9
|
+
export declare const getGroupwareUrl: () => string;
|
|
10
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hanbiro-react16-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "React 16.2.0 compatible UI components for Hanbiro",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -51,8 +51,7 @@
|
|
|
51
51
|
"test:typescript": "tsc --noEmit"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"react": ">=16.2.0"
|
|
55
|
-
"react-dom": ">=16.2.0"
|
|
54
|
+
"react": ">=16.2.0"
|
|
56
55
|
},
|
|
57
56
|
"devDependencies": {
|
|
58
57
|
"@types/node": "^20.0.0",
|
|
@@ -62,14 +61,15 @@
|
|
|
62
61
|
"@vitejs/plugin-react": "^4.3.4",
|
|
63
62
|
"react": "^16.2.0",
|
|
64
63
|
"react-dom": "^16.2.0",
|
|
64
|
+
"sass-embedded": "^1.98.0",
|
|
65
65
|
"typescript": "^5.5.0",
|
|
66
66
|
"vite": "^5.4.0",
|
|
67
67
|
"vite-plugin-dts": "^3.9.1"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"axios": "^1.13.6",
|
|
71
|
+
"marked": "^15.0.12",
|
|
71
72
|
"react-feather": "^2.0.10",
|
|
72
|
-
"uuid": "^9.0.0"
|
|
73
|
-
"marked": "^15.0.12"
|
|
73
|
+
"uuid": "^9.0.0"
|
|
74
74
|
}
|
|
75
75
|
}
|