@zjw-jszn/platform-imsdk 1.0.6 → 1.0.7

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.
Files changed (4) hide show
  1. package/README.md +1 -1
  2. package/index.js +0 -2
  3. package/package.json +4 -5
  4. package/style.css +1 -1465
package/README.md CHANGED
@@ -95,7 +95,7 @@ declare function getCustomerChatList(data: {
95
95
 
96
96
  ## 样式
97
97
 
98
- 样式由依赖链中的 shared 包自动注入,通常不需要手动引入。
98
+ 样式由依赖链中的 shared 包自动注入;业务侧只引入 JS 入口即可,通常不需要手动引入。
99
99
  如需手动控制加载时机:
100
100
 
101
101
  ```ts
package/index.js CHANGED
@@ -1,4 +1,2 @@
1
- import './style.css'
2
-
3
1
  export { default } from './dist/platform-imsdk.es.js'
4
2
  export * from './dist/platform-imsdk.es.js'
package/package.json CHANGED
@@ -1,23 +1,22 @@
1
1
  {
2
2
  "name": "@zjw-jszn/platform-imsdk",
3
3
  "type": "module",
4
- "version": "1.0.6",
4
+ "version": "1.0.7",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
8
8
  "import": "./index.js",
9
9
  "require": "./index.cjs",
10
10
  "default": "./index.js"
11
- },
12
- "./style.css": "./style.css"
11
+ }
13
12
  },
14
13
  "main": "./dist/platform-imsdk.umd.cjs",
15
14
  "module": "./index.js",
16
15
  "types": "./dist/index.d.ts",
17
16
  "files": [
18
17
  "dist",
19
- "index.js",
20
18
  "index.cjs",
19
+ "index.js",
21
20
  "style.css"
22
21
  ],
23
22
  "publishConfig": {
@@ -25,7 +24,7 @@
25
24
  "registry": "https://registry.npmjs.org/"
26
25
  },
27
26
  "dependencies": {
28
- "@zjw-jszn/shared-imsdk": "1.0.6"
27
+ "@zjw-jszn/shared-imsdk": "1.0.7"
29
28
  },
30
29
  "devDependencies": {
31
30
  "typescript": "~5.9.3",