@jnrs/vue-core 1.2.34 → 1.2.36
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/CHANGELOG.md +16 -1
- package/dist/components/JnImageView.vue.d.ts +1 -1
- package/dist/components/index.js +1066 -1174
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# 发版日志
|
|
2
2
|
|
|
3
|
-
## [1.2.
|
|
3
|
+
## [1.2.36] - 2026-07-29 【latest】
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- `JnFileUpload`:调整文件列表项右侧操作区域宽度(60px → 85px),增加预览按钮空间
|
|
8
|
+
|
|
9
|
+
## [1.2.35] - 2026-07-28
|
|
10
|
+
|
|
11
|
+
### Refactor
|
|
12
|
+
|
|
13
|
+
- `previewPdf` 工具函数从 vue-core 移至 jnrs-vue 模板工程(因依赖 `fileDownloadApi`)
|
|
14
|
+
- `JnPdfView` 恢复直接 `window.open` 预览逻辑
|
|
15
|
+
- `JnFileUpload` 恢复 `previewFileFn` prop,由父组件传入预览函数
|
|
16
|
+
- `JnImageView` 优化代码复用(v-for 统一渲染,消除重复模板)
|
|
17
|
+
|
|
18
|
+
## [1.2.34] - 2026-07-28
|
|
4
19
|
|
|
5
20
|
### Features
|
|
6
21
|
|
|
@@ -35,5 +35,5 @@ interface JnImageViewProps {
|
|
|
35
35
|
*/
|
|
36
36
|
showAll?: boolean;
|
|
37
37
|
}
|
|
38
|
-
declare const _default: import('vue').DefineComponent<JnImageViewProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<JnImageViewProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
38
|
+
declare const _default: import('vue').DefineComponent<JnImageViewProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<JnImageViewProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
39
|
export default _default;
|