@newview/file-ui 0.0.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 +11 -0
- package/dist/file-ui.mjs +15439 -0
- package/dist/file-ui.umd.js +1 -0
- package/dist/style.css +1 -0
- package/package-dev.json +38 -0
- package/package-publish.json +59 -0
- package/package.json +39 -0
- package/src/ComFormUp/ComFormUp.ts +131 -0
- package/src/ComFormUp/ComFormUp.vue +27 -0
- package/src/ComFormUp/index.ts +2 -0
- package/src/TextEditor/TextEditor.ts +207 -0
- package/src/TextEditor/TextEditor.vue +23 -0
- package/src/TextEditor/index.ts +2 -0
- package/src/UploadFile/FilePreview.ts +181 -0
- package/src/UploadFile/FilePreview.vue +32 -0
- package/src/UploadFile/UploadFile.ts +483 -0
- package/src/UploadFile/UploadFile.vue +239 -0
- package/src/UploadFile/index.ts +3 -0
- package/src/index.ts +3 -0
- package/tsconfig.json +19 -0
- package/tsconfig.node.json +9 -0
- package/types/ComFormUp.d.ts +27 -0
- package/types/FilePreview.d.ts +5 -0
- package/types/FilePreviewInstance.d.ts +9 -0
- package/types/TextEditor.d.ts +26 -0
- package/types/UploadFile.d.ts +5 -0
- package/types/UploadFileInstance.d.ts +5 -0
- package/types/index.d.ts +7 -0
- package/vite.config.ts +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
## 1.1.9
|
|
2
|
+
1. UploadFile 增加只读状态且无附件信息下的显示信息提示
|
|
3
|
+
2. UploadFile 修改预览图片时,图片显示不对应问题
|
|
4
|
+
3. UploadFile 修改只读且无附件提示样式
|
|
5
|
+
4. TextEditor 只读状态下增加显示/隐藏边框配置
|
|
6
|
+
5. ComFormUp 增加 TextEditor 获取值方法 及 text 改变事件
|
|
7
|
+
6. ComFormUp 增加附件校验
|
|
8
|
+
|
|
9
|
+
## 1.1.8
|
|
10
|
+
|
|
11
|
+
1. ComFormUp 添加 TextEditor 组件导出的方法
|