uview-plus 3.4.28 → 3.4.30
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 +24 -0
- package/components/u-cate-tab/u-cate-tab.vue +20 -14
- package/components/u-image/u-image.vue +7 -4
- package/components/u-index-list/u-index-list.vue +1 -1
- package/components/u-number-box/u-number-box.vue +4 -3
- package/components/u-pagination/u-pagination.vue +283 -0
- package/components/u-popup/u-popup.vue +1 -0
- package/components/u-table2/u-table2.vue +431 -408
- package/components/u-tag/props.js +5 -0
- package/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -19,6 +19,8 @@ import debounce from './libs/function/debounce.js'
|
|
|
19
19
|
import throttle from './libs/function/throttle.js'
|
|
20
20
|
// 浮点计算
|
|
21
21
|
import calc from './libs/function/calc.js'
|
|
22
|
+
// 浮点计算
|
|
23
|
+
import digit from './libs/function/digit.js'
|
|
22
24
|
// 公共文件写入的方法
|
|
23
25
|
import index from './libs/function/index.js'
|
|
24
26
|
|
|
@@ -38,7 +40,7 @@ import http from './libs/function/http.js'
|
|
|
38
40
|
|
|
39
41
|
// 导出
|
|
40
42
|
let themeType = ['primary', 'success', 'error', 'warning', 'info'];
|
|
41
|
-
export { route, http, debounce, throttle, calc, platform, themeType, mixin, mpMixin, props, color, test, zIndex }
|
|
43
|
+
export { route, http, debounce, throttle, calc, digit, platform, themeType, mixin, mpMixin, props, color, test, zIndex }
|
|
42
44
|
export * from './libs/function/index.js'
|
|
43
45
|
export * from './libs/function/colorGradient.js'
|
|
44
46
|
|
package/package.json
CHANGED