bhd-components 0.1.8 → 0.2.0
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 +8 -0
- package/dist/6a77b797.esm.es5.development.js +43819 -0
- package/dist/7fed7be7.esm.es5.production.js +211 -0
- package/dist/table.esm.es5.development.css +62 -0
- package/dist/table.esm.es5.development.js +416 -0
- package/dist/table.esm.es5.production.css +1 -0
- package/dist/table.esm.es5.production.js +1 -0
- package/es2017/index.d.ts +69 -1
- package/es2017/index.js +72 -2
- package/es2017/provider/config.js +3 -1
- package/es2017/provider/index.d.ts +4 -1
- package/es2017/provider/index.js +7 -0
- package/es2017/table/index.d.ts +2 -2
- package/es2017/table/index.js +23 -11
- package/es2017/table/index.module.less +37 -20
- package/es2017/table/index/347/232/204/345/211/257/346/234/254.d.ts +12 -0
- package/es2017/table/index/347/232/204/345/211/257/346/234/254.js +188 -0
- package/es2017/textTootip/index.d.ts +3 -3
- package/es2017/textTootip/index.js +7 -5
- package/esm/index.d.ts +69 -1
- package/esm/index.js +72 -2
- package/esm/provider/config.js +3 -1
- package/esm/provider/index.d.ts +4 -1
- package/esm/provider/index.js +7 -0
- package/esm/table/index.d.ts +2 -2
- package/esm/table/index.js +23 -11
- package/esm/table/index.module.less +37 -20
- package/esm/table/index/347/232/204/345/211/257/346/234/254.d.ts +12 -0
- package/esm/table/index/347/232/204/345/211/257/346/234/254.js +193 -0
- package/esm/textTootip/index.d.ts +3 -3
- package/esm/textTootip/index.js +7 -5
- package/package.json +1 -1
- package/dist/table.umd.es5.production.css +0 -47
- package/dist/table.umd.es5.production.js +0 -227
package/README.md
CHANGED
|
@@ -14,11 +14,19 @@ $ npm i bhd-components --save
|
|
|
14
14
|
import BhdComponents from 'bhd-components';
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
## 相关资料
|
|
18
|
+
|
|
19
|
+
- **ice-pkg:** https://pkg.ice.work
|
|
20
|
+
- **文档配置:** https://docusaurus.io/zh-CN/docs/creating-pages
|
|
21
|
+
- **文档插件:** https://docusaurus.io/docs/api/plugin-methods
|
|
22
|
+
|
|
23
|
+
|
|
17
24
|
待研究事宜:
|
|
18
25
|
1.文档语法熟悉 初步熟悉
|
|
19
26
|
2.antd组件的样式污染问题
|
|
20
27
|
1.通过provider 配置专属主题
|
|
21
28
|
3.中英文等全局配置问题
|
|
29
|
+
1.通过provider 配置专属主题
|
|
22
30
|
4.构建版本时 支持umd
|
|
23
31
|
5.构建版本后 按需加载问题
|
|
24
32
|
6.构建es6的包时,less需转成css
|