vxe-pc-ui 3.3.75 → 3.3.76
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/es/icon/style.css +1 -1
- package/es/language/ko-KR.js +515 -515
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/upload/src/upload.js +3 -3
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +5 -5
- package/lib/index.umd.min.js +1 -1
- package/lib/language/ko-KR.js +515 -515
- package/lib/language/ko-KR.min.js +1 -1
- package/lib/language/ko-KR.umd.js +515 -515
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/upload/src/upload.js +3 -3
- package/lib/upload/src/upload.min.js +1 -1
- package/package.json +1 -1
- package/packages/language/ko-KR.ts +515 -515
- package/packages/upload/src/upload.ts +3 -3
- /package/es/icon/{iconfont.1736688685691.ttf → iconfont.1736736652316.ttf} +0 -0
- /package/es/icon/{iconfont.1736688685691.woff → iconfont.1736736652316.woff} +0 -0
- /package/es/icon/{iconfont.1736688685691.woff2 → iconfont.1736736652316.woff2} +0 -0
- /package/es/{iconfont.1736688685691.ttf → iconfont.1736736652316.ttf} +0 -0
- /package/es/{iconfont.1736688685691.woff → iconfont.1736736652316.woff} +0 -0
- /package/es/{iconfont.1736688685691.woff2 → iconfont.1736736652316.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1736688685691.ttf → iconfont.1736736652316.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1736688685691.woff → iconfont.1736736652316.woff} +0 -0
- /package/lib/icon/style/{iconfont.1736688685691.woff2 → iconfont.1736736652316.woff2} +0 -0
- /package/lib/{iconfont.1736688685691.ttf → iconfont.1736736652316.ttf} +0 -0
- /package/lib/{iconfont.1736688685691.woff → iconfont.1736736652316.woff} +0 -0
- /package/lib/{iconfont.1736688685691.woff2 → iconfont.1736736652316.woff2} +0 -0
|
@@ -493,9 +493,9 @@ export default defineVxeComponent({
|
|
|
493
493
|
return decodeURIComponent(`${url || ''}`).split('/').pop() || ''
|
|
494
494
|
},
|
|
495
495
|
parseFileType (name: string) {
|
|
496
|
-
const index = name
|
|
497
|
-
if (index >
|
|
498
|
-
return name.substring(index + 1
|
|
496
|
+
const index = name.lastIndexOf('.')
|
|
497
|
+
if (index > 0) {
|
|
498
|
+
return name.substring(index + 1).toLowerCase()
|
|
499
499
|
}
|
|
500
500
|
return ''
|
|
501
501
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|