@varlet/ui 2.8.1 → 2.8.2-alpha.1676818330977
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/button/Button.mjs +40 -4
- package/es/button/props.mjs +0 -2
- package/es/button/provide.mjs +16 -0
- package/es/button-group/ButtonGroup.mjs +45 -0
- package/es/button-group/ButtonGroupSfc.css +0 -0
- package/es/button-group/buttonGroup.css +1 -0
- package/es/button-group/index.mjs +9 -0
- package/es/button-group/props.mjs +43 -0
- package/es/button-group/provide.mjs +17 -0
- package/es/button-group/style/index.mjs +3 -0
- package/es/index.bundle.mjs +7 -1
- package/es/index.mjs +6 -1
- package/es/paper/Paper.mjs +1 -1
- package/es/style.css +1 -1
- package/es/style.mjs +1 -0
- package/es/varlet.esm.js +3852 -3713
- package/highlight/web-types.en-US.json +82 -7
- package/highlight/web-types.zh-CN.json +82 -7
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +343 -192
- package/package.json +5 -5
- package/types/buttonGroup.d.ts +25 -0
- package/types/index.d.ts +2 -0
- package/umd/varlet.js +6 -6
package/lib/varlet.cjs.js
CHANGED
|
@@ -700,7 +700,7 @@ function _extends$l() {
|
|
|
700
700
|
return _extends$l.apply(this, arguments);
|
|
701
701
|
}
|
|
702
702
|
var {
|
|
703
|
-
n: n$
|
|
703
|
+
n: n$1f
|
|
704
704
|
} = createNamespace("ripple");
|
|
705
705
|
var ANIMATION_DURATION$1 = 250;
|
|
706
706
|
function setStyles(element) {
|
|
@@ -755,7 +755,7 @@ function createRipple(event) {
|
|
|
755
755
|
size
|
|
756
756
|
} = computeRippleStyles(this, event);
|
|
757
757
|
var ripple2 = document.createElement("div");
|
|
758
|
-
ripple2.classList.add(n$
|
|
758
|
+
ripple2.classList.add(n$1f());
|
|
759
759
|
ripple2.style.opacity = "0";
|
|
760
760
|
ripple2.style.transform = "translate(" + x + "px, " + y + "px) scale3d(.3, .3, .3)";
|
|
761
761
|
ripple2.style.width = size + "px";
|
|
@@ -774,7 +774,7 @@ function createRipple(event) {
|
|
|
774
774
|
function removeRipple() {
|
|
775
775
|
var _ripple = this._ripple;
|
|
776
776
|
var task = () => {
|
|
777
|
-
var ripples = this.querySelectorAll("." + n$
|
|
777
|
+
var ripples = this.querySelectorAll("." + n$1f());
|
|
778
778
|
if (!ripples.length) {
|
|
779
779
|
return;
|
|
780
780
|
}
|
|
@@ -861,7 +861,7 @@ const Ripple$1 = Ripple;
|
|
|
861
861
|
function positionValidator$3(position) {
|
|
862
862
|
return ["top", "bottom", "right", "left", "center"].includes(position);
|
|
863
863
|
}
|
|
864
|
-
var props$
|
|
864
|
+
var props$17 = {
|
|
865
865
|
show: {
|
|
866
866
|
type: Boolean,
|
|
867
867
|
default: false
|
|
@@ -1008,13 +1008,13 @@ function _isSlot$2(s) {
|
|
|
1008
1008
|
return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !vue.isVNode(s);
|
|
1009
1009
|
}
|
|
1010
1010
|
var {
|
|
1011
|
-
n: n$
|
|
1012
|
-
classes: classes$
|
|
1011
|
+
n: n$1e,
|
|
1012
|
+
classes: classes$11
|
|
1013
1013
|
} = createNamespace("popup");
|
|
1014
1014
|
const Popup = vue.defineComponent({
|
|
1015
1015
|
name: "VarPopup",
|
|
1016
1016
|
inheritAttrs: false,
|
|
1017
|
-
props: props$
|
|
1017
|
+
props: props$17,
|
|
1018
1018
|
setup(props2, _ref) {
|
|
1019
1019
|
var {
|
|
1020
1020
|
slots,
|
|
@@ -1048,7 +1048,7 @@ const Popup = vue.defineComponent({
|
|
|
1048
1048
|
overlayStyle
|
|
1049
1049
|
} = props2;
|
|
1050
1050
|
return vue.createVNode("div", {
|
|
1051
|
-
"class": classes$
|
|
1051
|
+
"class": classes$11(n$1e("overlay"), overlayClass),
|
|
1052
1052
|
"style": _extends$k({
|
|
1053
1053
|
zIndex: zIndex.value - 1
|
|
1054
1054
|
}, overlayStyle),
|
|
@@ -1057,7 +1057,7 @@ const Popup = vue.defineComponent({
|
|
|
1057
1057
|
};
|
|
1058
1058
|
var renderContent = () => {
|
|
1059
1059
|
return vue.createVNode("div", vue.mergeProps({
|
|
1060
|
-
"class": classes$
|
|
1060
|
+
"class": classes$11(n$1e("content"), n$1e("--" + props2.position), [props2.defaultStyle, n$1e("--content-background-color")], [props2.defaultStyle, n$1e("$-elevation--3")]),
|
|
1061
1061
|
"style": {
|
|
1062
1062
|
zIndex: zIndex.value
|
|
1063
1063
|
}
|
|
@@ -1073,17 +1073,17 @@ const Popup = vue.defineComponent({
|
|
|
1073
1073
|
position
|
|
1074
1074
|
} = props2;
|
|
1075
1075
|
return vue.createVNode(vue.Transition, {
|
|
1076
|
-
"name": n$
|
|
1076
|
+
"name": n$1e("$-fade"),
|
|
1077
1077
|
"onAfterEnter": onOpened,
|
|
1078
1078
|
"onAfterLeave": onClosed
|
|
1079
1079
|
}, {
|
|
1080
1080
|
default: () => [vue.withDirectives(vue.createVNode("div", {
|
|
1081
|
-
"class": classes$
|
|
1081
|
+
"class": classes$11(n$1e("$--box"), n$1e()),
|
|
1082
1082
|
"style": {
|
|
1083
1083
|
zIndex: zIndex.value - 2
|
|
1084
1084
|
}
|
|
1085
1085
|
}, [overlay2 && renderOverlay(), vue.createVNode(vue.Transition, {
|
|
1086
|
-
"name": transition || n$
|
|
1086
|
+
"name": transition || n$1e("$-pop-" + position)
|
|
1087
1087
|
}, {
|
|
1088
1088
|
default: () => [show && renderContent()]
|
|
1089
1089
|
})]), [[vue.vShow, show]])]
|
|
@@ -1110,7 +1110,7 @@ Popup.install = function(app) {
|
|
|
1110
1110
|
app.component(Popup.name, Popup);
|
|
1111
1111
|
};
|
|
1112
1112
|
var _PopupComponent = Popup;
|
|
1113
|
-
var props$
|
|
1113
|
+
var props$16 = {
|
|
1114
1114
|
name: {
|
|
1115
1115
|
type: String
|
|
1116
1116
|
},
|
|
@@ -1160,10 +1160,10 @@ function _asyncToGenerator$c(fn2) {
|
|
|
1160
1160
|
};
|
|
1161
1161
|
}
|
|
1162
1162
|
var {
|
|
1163
|
-
n: n$
|
|
1164
|
-
classes: classes
|
|
1163
|
+
n: n$1d,
|
|
1164
|
+
classes: classes$10
|
|
1165
1165
|
} = createNamespace("icon");
|
|
1166
|
-
function __render__$
|
|
1166
|
+
function __render__$1e(_ctx, _cache) {
|
|
1167
1167
|
return vue.openBlock(), vue.createBlock(
|
|
1168
1168
|
vue.resolveDynamicComponent(_ctx.isURL(_ctx.name) ? "img" : "i"),
|
|
1169
1169
|
{
|
|
@@ -1183,9 +1183,9 @@ function __render__$1d(_ctx, _cache) {
|
|
|
1183
1183
|
["class", "style", "src", "onClick"]
|
|
1184
1184
|
);
|
|
1185
1185
|
}
|
|
1186
|
-
var __sfc__$
|
|
1186
|
+
var __sfc__$1f = vue.defineComponent({
|
|
1187
1187
|
name: "VarIcon",
|
|
1188
|
-
props: props$
|
|
1188
|
+
props: props$16,
|
|
1189
1189
|
setup(props2) {
|
|
1190
1190
|
var nextName = vue.ref("");
|
|
1191
1191
|
var shrinking = vue.ref(false);
|
|
@@ -1213,8 +1213,8 @@ var __sfc__$1e = vue.defineComponent({
|
|
|
1213
1213
|
immediate: true
|
|
1214
1214
|
});
|
|
1215
1215
|
return {
|
|
1216
|
-
n: n$
|
|
1217
|
-
classes: classes
|
|
1216
|
+
n: n$1d,
|
|
1217
|
+
classes: classes$10,
|
|
1218
1218
|
nextName,
|
|
1219
1219
|
shrinking,
|
|
1220
1220
|
isURL,
|
|
@@ -1223,8 +1223,8 @@ var __sfc__$1e = vue.defineComponent({
|
|
|
1223
1223
|
};
|
|
1224
1224
|
}
|
|
1225
1225
|
});
|
|
1226
|
-
__sfc__$
|
|
1227
|
-
const Icon = __sfc__$
|
|
1226
|
+
__sfc__$1f.render = __render__$1e;
|
|
1227
|
+
const Icon = __sfc__$1f;
|
|
1228
1228
|
Icon.install = function(app) {
|
|
1229
1229
|
app.component(Icon.name, Icon);
|
|
1230
1230
|
};
|
|
@@ -1243,7 +1243,7 @@ function _extends$j() {
|
|
|
1243
1243
|
};
|
|
1244
1244
|
return _extends$j.apply(this, arguments);
|
|
1245
1245
|
}
|
|
1246
|
-
var props$
|
|
1246
|
+
var props$15 = _extends$j({
|
|
1247
1247
|
show: {
|
|
1248
1248
|
type: Boolean,
|
|
1249
1249
|
default: false
|
|
@@ -1261,7 +1261,7 @@ var props$14 = _extends$j({
|
|
|
1261
1261
|
},
|
|
1262
1262
|
onSelect: defineListenerProp(),
|
|
1263
1263
|
"onUpdate:show": defineListenerProp()
|
|
1264
|
-
}, pickProps(props$
|
|
1264
|
+
}, pickProps(props$17, [
|
|
1265
1265
|
"overlay",
|
|
1266
1266
|
"overlayClass",
|
|
1267
1267
|
"overlayStyle",
|
|
@@ -1554,11 +1554,11 @@ const Locale = {
|
|
|
1554
1554
|
useLocale
|
|
1555
1555
|
};
|
|
1556
1556
|
var {
|
|
1557
|
-
n: n$
|
|
1558
|
-
classes: classes
|
|
1557
|
+
n: n$1c,
|
|
1558
|
+
classes: classes$$
|
|
1559
1559
|
} = createNamespace("action-sheet");
|
|
1560
1560
|
var _hoisted_1$s = ["onClick"];
|
|
1561
|
-
function __render__$
|
|
1561
|
+
function __render__$1d(_ctx, _cache) {
|
|
1562
1562
|
var _component_var_icon = vue.resolveComponent("var-icon");
|
|
1563
1563
|
var _component_var_popup = vue.resolveComponent("var-popup");
|
|
1564
1564
|
var _directive_ripple = vue.resolveDirective("ripple");
|
|
@@ -1651,7 +1651,7 @@ function __render__$1c(_ctx, _cache) {
|
|
|
1651
1651
|
["class", "overlay", "overlay-class", "overlay-style", "lock-scroll", "close-on-click-overlay", "teleport", "show", "onOpen", "onClose", "onClosed", "onOpened", "onRouteChange"]
|
|
1652
1652
|
);
|
|
1653
1653
|
}
|
|
1654
|
-
var __sfc__$
|
|
1654
|
+
var __sfc__$1e = vue.defineComponent({
|
|
1655
1655
|
name: "VarActionSheet",
|
|
1656
1656
|
directives: {
|
|
1657
1657
|
Ripple: Ripple$1
|
|
@@ -1661,7 +1661,7 @@ var __sfc__$1d = vue.defineComponent({
|
|
|
1661
1661
|
VarIcon: Icon
|
|
1662
1662
|
},
|
|
1663
1663
|
inheritAttrs: false,
|
|
1664
|
-
props: props$
|
|
1664
|
+
props: props$15,
|
|
1665
1665
|
setup(props2) {
|
|
1666
1666
|
var popupShow = vue.ref(false);
|
|
1667
1667
|
var handleSelect = (action) => {
|
|
@@ -1682,8 +1682,8 @@ var __sfc__$1d = vue.defineComponent({
|
|
|
1682
1682
|
immediate: true
|
|
1683
1683
|
});
|
|
1684
1684
|
return {
|
|
1685
|
-
n: n$
|
|
1686
|
-
classes: classes
|
|
1685
|
+
n: n$1c,
|
|
1686
|
+
classes: classes$$,
|
|
1687
1687
|
handlePopupUpdateShow,
|
|
1688
1688
|
popupShow,
|
|
1689
1689
|
pack,
|
|
@@ -1692,8 +1692,8 @@ var __sfc__$1d = vue.defineComponent({
|
|
|
1692
1692
|
};
|
|
1693
1693
|
}
|
|
1694
1694
|
});
|
|
1695
|
-
__sfc__$
|
|
1696
|
-
const VarActionSheet = __sfc__$
|
|
1695
|
+
__sfc__$1e.render = __render__$1d;
|
|
1696
|
+
const VarActionSheet = __sfc__$1e;
|
|
1697
1697
|
function _extends$h() {
|
|
1698
1698
|
_extends$h = Object.assign ? Object.assign.bind() : function(target) {
|
|
1699
1699
|
for (var i = 1; i < arguments.length; i++) {
|
|
@@ -1784,7 +1784,7 @@ function positionValidator$2(position) {
|
|
|
1784
1784
|
var validPositions = ["left", "center", "right"];
|
|
1785
1785
|
return validPositions.includes(position);
|
|
1786
1786
|
}
|
|
1787
|
-
var props$
|
|
1787
|
+
var props$14 = {
|
|
1788
1788
|
color: {
|
|
1789
1789
|
type: String
|
|
1790
1790
|
},
|
|
@@ -1815,10 +1815,10 @@ var props$13 = {
|
|
|
1815
1815
|
}
|
|
1816
1816
|
};
|
|
1817
1817
|
var {
|
|
1818
|
-
n: n$
|
|
1819
|
-
classes: classes$
|
|
1818
|
+
n: n$1b,
|
|
1819
|
+
classes: classes$_
|
|
1820
1820
|
} = createNamespace("app-bar");
|
|
1821
|
-
function __render__$
|
|
1821
|
+
function __render__$1c(_ctx, _cache) {
|
|
1822
1822
|
return vue.openBlock(), vue.createElementBlock(
|
|
1823
1823
|
"div",
|
|
1824
1824
|
{
|
|
@@ -1899,9 +1899,9 @@ function __render__$1b(_ctx, _cache) {
|
|
|
1899
1899
|
/* CLASS, STYLE */
|
|
1900
1900
|
);
|
|
1901
1901
|
}
|
|
1902
|
-
var __sfc__$
|
|
1902
|
+
var __sfc__$1d = vue.defineComponent({
|
|
1903
1903
|
name: "VarAppBar",
|
|
1904
|
-
props: props$
|
|
1904
|
+
props: props$14,
|
|
1905
1905
|
setup(props2, _ref) {
|
|
1906
1906
|
var {
|
|
1907
1907
|
slots
|
|
@@ -1935,16 +1935,16 @@ var __sfc__$1c = vue.defineComponent({
|
|
|
1935
1935
|
vue.onMounted(computePadding);
|
|
1936
1936
|
vue.onUpdated(computePadding);
|
|
1937
1937
|
return {
|
|
1938
|
-
n: n$
|
|
1939
|
-
classes: classes$
|
|
1938
|
+
n: n$1b,
|
|
1939
|
+
classes: classes$_,
|
|
1940
1940
|
rootStyles,
|
|
1941
1941
|
paddingLeft,
|
|
1942
1942
|
paddingRight
|
|
1943
1943
|
};
|
|
1944
1944
|
}
|
|
1945
1945
|
});
|
|
1946
|
-
__sfc__$
|
|
1947
|
-
const AppBar = __sfc__$
|
|
1946
|
+
__sfc__$1d.render = __render__$1c;
|
|
1947
|
+
const AppBar = __sfc__$1d;
|
|
1948
1948
|
AppBar.install = function(app) {
|
|
1949
1949
|
app.component(AppBar.name, AppBar);
|
|
1950
1950
|
};
|
|
@@ -2193,17 +2193,17 @@ function fitValidator$2(fit) {
|
|
|
2193
2193
|
return ["fill", "contain", "cover", "none", "scale-down"].includes(fit);
|
|
2194
2194
|
}
|
|
2195
2195
|
var internalSizeValidator$1 = (size) => ["mini", "small", "normal", "large"].includes(size);
|
|
2196
|
-
function sizeValidator$
|
|
2196
|
+
function sizeValidator$5(size) {
|
|
2197
2197
|
return internalSizeValidator$1(size) || isNumber(size) || isString(size);
|
|
2198
2198
|
}
|
|
2199
|
-
var props$
|
|
2199
|
+
var props$13 = {
|
|
2200
2200
|
round: {
|
|
2201
2201
|
type: Boolean,
|
|
2202
2202
|
default: true
|
|
2203
2203
|
},
|
|
2204
2204
|
size: {
|
|
2205
2205
|
type: [String, Number],
|
|
2206
|
-
validator: sizeValidator$
|
|
2206
|
+
validator: sizeValidator$5,
|
|
2207
2207
|
default: "normal"
|
|
2208
2208
|
},
|
|
2209
2209
|
color: {
|
|
@@ -2239,12 +2239,12 @@ var props$12 = {
|
|
|
2239
2239
|
onError: defineListenerProp()
|
|
2240
2240
|
};
|
|
2241
2241
|
var {
|
|
2242
|
-
n: n$
|
|
2243
|
-
classes: classes$
|
|
2242
|
+
n: n$1a,
|
|
2243
|
+
classes: classes$Z
|
|
2244
2244
|
} = createNamespace("avatar");
|
|
2245
2245
|
var _hoisted_1$r = ["src", "lazy-loading", "lazy-error"];
|
|
2246
2246
|
var _hoisted_2$d = ["src"];
|
|
2247
|
-
function __render__$
|
|
2247
|
+
function __render__$1b(_ctx, _cache) {
|
|
2248
2248
|
var _directive_lazy = vue.resolveDirective("lazy");
|
|
2249
2249
|
return vue.openBlock(), vue.createElementBlock(
|
|
2250
2250
|
"div",
|
|
@@ -2324,12 +2324,12 @@ function __render__$1a(_ctx, _cache) {
|
|
|
2324
2324
|
/* CLASS, STYLE */
|
|
2325
2325
|
);
|
|
2326
2326
|
}
|
|
2327
|
-
var __sfc__$
|
|
2327
|
+
var __sfc__$1c = vue.defineComponent({
|
|
2328
2328
|
name: "VarAvatar",
|
|
2329
2329
|
directives: {
|
|
2330
2330
|
Lazy: Lazy$1
|
|
2331
2331
|
},
|
|
2332
|
-
props: props$
|
|
2332
|
+
props: props$13,
|
|
2333
2333
|
setup(props2) {
|
|
2334
2334
|
var avatarElement = vue.ref(null);
|
|
2335
2335
|
var textElement = vue.ref(null);
|
|
@@ -2371,10 +2371,10 @@ var __sfc__$1b = vue.defineComponent({
|
|
|
2371
2371
|
vue.onUpdated(getScale);
|
|
2372
2372
|
return {
|
|
2373
2373
|
internalSizeValidator: internalSizeValidator$1,
|
|
2374
|
-
sizeValidator: sizeValidator$
|
|
2374
|
+
sizeValidator: sizeValidator$5,
|
|
2375
2375
|
toSizeUnit,
|
|
2376
|
-
n: n$
|
|
2377
|
-
classes: classes$
|
|
2376
|
+
n: n$1a,
|
|
2377
|
+
classes: classes$Z,
|
|
2378
2378
|
avatarElement,
|
|
2379
2379
|
textElement,
|
|
2380
2380
|
scale,
|
|
@@ -2384,13 +2384,13 @@ var __sfc__$1b = vue.defineComponent({
|
|
|
2384
2384
|
};
|
|
2385
2385
|
}
|
|
2386
2386
|
});
|
|
2387
|
-
__sfc__$
|
|
2388
|
-
const Avatar = __sfc__$
|
|
2387
|
+
__sfc__$1c.render = __render__$1b;
|
|
2388
|
+
const Avatar = __sfc__$1c;
|
|
2389
2389
|
Avatar.install = function(app) {
|
|
2390
2390
|
app.component(Avatar.name, Avatar);
|
|
2391
2391
|
};
|
|
2392
2392
|
var _AvatarComponent = Avatar;
|
|
2393
|
-
var props$
|
|
2393
|
+
var props$12 = {
|
|
2394
2394
|
offset: {
|
|
2395
2395
|
type: [Number, String]
|
|
2396
2396
|
},
|
|
@@ -2400,10 +2400,10 @@ var props$11 = {
|
|
|
2400
2400
|
}
|
|
2401
2401
|
};
|
|
2402
2402
|
var {
|
|
2403
|
-
n: n$
|
|
2404
|
-
classes: classes$
|
|
2403
|
+
n: n$19,
|
|
2404
|
+
classes: classes$Y
|
|
2405
2405
|
} = createNamespace("avatar-group");
|
|
2406
|
-
function __render__$
|
|
2406
|
+
function __render__$1a(_ctx, _cache) {
|
|
2407
2407
|
return vue.openBlock(), vue.createElementBlock(
|
|
2408
2408
|
"div",
|
|
2409
2409
|
{
|
|
@@ -2415,9 +2415,9 @@ function __render__$19(_ctx, _cache) {
|
|
|
2415
2415
|
/* CLASS, STYLE */
|
|
2416
2416
|
);
|
|
2417
2417
|
}
|
|
2418
|
-
var __sfc__$
|
|
2418
|
+
var __sfc__$1b = vue.defineComponent({
|
|
2419
2419
|
name: "VarAvatarGroup",
|
|
2420
|
-
props: props$
|
|
2420
|
+
props: props$12,
|
|
2421
2421
|
setup(props2) {
|
|
2422
2422
|
var rootStyles = vue.computed(() => {
|
|
2423
2423
|
if (props2.offset == null) {
|
|
@@ -2428,31 +2428,31 @@ var __sfc__$1a = vue.defineComponent({
|
|
|
2428
2428
|
};
|
|
2429
2429
|
});
|
|
2430
2430
|
return {
|
|
2431
|
-
n: n$
|
|
2432
|
-
classes: classes$
|
|
2431
|
+
n: n$19,
|
|
2432
|
+
classes: classes$Y,
|
|
2433
2433
|
toSizeUnit,
|
|
2434
2434
|
rootStyles
|
|
2435
2435
|
};
|
|
2436
2436
|
}
|
|
2437
2437
|
});
|
|
2438
|
-
__sfc__$
|
|
2439
|
-
const AvatarGroup = __sfc__$
|
|
2438
|
+
__sfc__$1b.render = __render__$1a;
|
|
2439
|
+
const AvatarGroup = __sfc__$1b;
|
|
2440
2440
|
AvatarGroup.install = function(app) {
|
|
2441
2441
|
app.component(AvatarGroup.name, AvatarGroup);
|
|
2442
2442
|
};
|
|
2443
2443
|
var _AvatarGroupComponent = AvatarGroup;
|
|
2444
|
-
function typeValidator$
|
|
2444
|
+
function typeValidator$a(type) {
|
|
2445
2445
|
return ["circle", "wave", "cube", "rect", "disappear"].includes(type);
|
|
2446
2446
|
}
|
|
2447
|
-
function sizeValidator$
|
|
2447
|
+
function sizeValidator$4(size) {
|
|
2448
2448
|
return ["normal", "mini", "small", "large"].includes(size);
|
|
2449
2449
|
}
|
|
2450
|
-
var props$
|
|
2450
|
+
var props$11 = {
|
|
2451
2451
|
// loading类型
|
|
2452
2452
|
type: {
|
|
2453
2453
|
type: String,
|
|
2454
2454
|
default: "circle",
|
|
2455
|
-
validator: typeValidator$
|
|
2455
|
+
validator: typeValidator$a
|
|
2456
2456
|
},
|
|
2457
2457
|
radius: {
|
|
2458
2458
|
type: [String, Number]
|
|
@@ -2461,7 +2461,7 @@ var props$10 = {
|
|
|
2461
2461
|
size: {
|
|
2462
2462
|
type: String,
|
|
2463
2463
|
default: "normal",
|
|
2464
|
-
validator: sizeValidator$
|
|
2464
|
+
validator: sizeValidator$4
|
|
2465
2465
|
},
|
|
2466
2466
|
// loading颜色
|
|
2467
2467
|
color: {
|
|
@@ -2476,8 +2476,8 @@ var props$10 = {
|
|
|
2476
2476
|
}
|
|
2477
2477
|
};
|
|
2478
2478
|
var {
|
|
2479
|
-
n: n$
|
|
2480
|
-
classes: classes$
|
|
2479
|
+
n: n$18,
|
|
2480
|
+
classes: classes$X
|
|
2481
2481
|
} = createNamespace("loading");
|
|
2482
2482
|
var _withScopeId$6 = (n2) => (vue.pushScopeId(""), n2 = n2(), vue.popScopeId(), n2);
|
|
2483
2483
|
var _hoisted_1$q = /* @__PURE__ */ _withScopeId$6(() => /* @__PURE__ */ vue.createElementVNode(
|
|
@@ -2495,7 +2495,7 @@ var _hoisted_1$q = /* @__PURE__ */ _withScopeId$6(() => /* @__PURE__ */ vue.crea
|
|
|
2495
2495
|
/* HOISTED */
|
|
2496
2496
|
));
|
|
2497
2497
|
var _hoisted_2$c = [_hoisted_1$q];
|
|
2498
|
-
function __render__$
|
|
2498
|
+
function __render__$19(_ctx, _cache) {
|
|
2499
2499
|
return vue.openBlock(), vue.createElementBlock(
|
|
2500
2500
|
"div",
|
|
2501
2501
|
{
|
|
@@ -2616,9 +2616,9 @@ function __render__$18(_ctx, _cache) {
|
|
|
2616
2616
|
/* CLASS */
|
|
2617
2617
|
);
|
|
2618
2618
|
}
|
|
2619
|
-
var __sfc__$
|
|
2619
|
+
var __sfc__$1a = vue.defineComponent({
|
|
2620
2620
|
name: "VarLoading",
|
|
2621
|
-
props: props$
|
|
2621
|
+
props: props$11,
|
|
2622
2622
|
setup(props2, _ref) {
|
|
2623
2623
|
var {
|
|
2624
2624
|
slots
|
|
@@ -2635,16 +2635,16 @@ var __sfc__$19 = vue.defineComponent({
|
|
|
2635
2635
|
return props2.loading;
|
|
2636
2636
|
});
|
|
2637
2637
|
return {
|
|
2638
|
-
n: n$
|
|
2639
|
-
classes: classes$
|
|
2638
|
+
n: n$18,
|
|
2639
|
+
classes: classes$X,
|
|
2640
2640
|
multiplySizeUnit,
|
|
2641
2641
|
loadingTypeDict,
|
|
2642
2642
|
isShow
|
|
2643
2643
|
};
|
|
2644
2644
|
}
|
|
2645
2645
|
});
|
|
2646
|
-
__sfc__$
|
|
2647
|
-
const Loading = __sfc__$
|
|
2646
|
+
__sfc__$1a.render = __render__$19;
|
|
2647
|
+
const Loading = __sfc__$1a;
|
|
2648
2648
|
Loading.install = function(app) {
|
|
2649
2649
|
app.component(Loading.name, Loading);
|
|
2650
2650
|
};
|
|
@@ -2663,20 +2663,19 @@ function _extends$f() {
|
|
|
2663
2663
|
};
|
|
2664
2664
|
return _extends$f.apply(this, arguments);
|
|
2665
2665
|
}
|
|
2666
|
-
function typeValidator$
|
|
2666
|
+
function typeValidator$9(type) {
|
|
2667
2667
|
return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
|
|
2668
2668
|
}
|
|
2669
|
-
function sizeValidator$
|
|
2669
|
+
function sizeValidator$3(size) {
|
|
2670
2670
|
return ["normal", "mini", "small", "large"].includes(size);
|
|
2671
2671
|
}
|
|
2672
2672
|
function nativeTypeValidator(nativeType) {
|
|
2673
2673
|
return ["button", "reset", "submit"].includes(nativeType);
|
|
2674
2674
|
}
|
|
2675
|
-
var props
|
|
2675
|
+
var props$10 = {
|
|
2676
2676
|
type: {
|
|
2677
2677
|
type: String,
|
|
2678
|
-
|
|
2679
|
-
validator: typeValidator$8
|
|
2678
|
+
validator: typeValidator$9
|
|
2680
2679
|
},
|
|
2681
2680
|
nativeType: {
|
|
2682
2681
|
type: String,
|
|
@@ -2685,8 +2684,7 @@ var props$$ = {
|
|
|
2685
2684
|
},
|
|
2686
2685
|
size: {
|
|
2687
2686
|
type: String,
|
|
2688
|
-
|
|
2689
|
-
validator: sizeValidator$2
|
|
2687
|
+
validator: sizeValidator$3
|
|
2690
2688
|
},
|
|
2691
2689
|
loading: {
|
|
2692
2690
|
type: Boolean,
|
|
@@ -2729,29 +2727,60 @@ var props$$ = {
|
|
|
2729
2727
|
loadingRadius: {
|
|
2730
2728
|
type: [Number, String]
|
|
2731
2729
|
},
|
|
2732
|
-
loadingType: pickProps(props$
|
|
2733
|
-
loadingSize: pickProps(props$
|
|
2734
|
-
loadingColor: _extends$f({}, pickProps(props$
|
|
2730
|
+
loadingType: pickProps(props$11, "type"),
|
|
2731
|
+
loadingSize: pickProps(props$11, "size"),
|
|
2732
|
+
loadingColor: _extends$f({}, pickProps(props$11, "color"), {
|
|
2735
2733
|
default: "currentColor"
|
|
2736
2734
|
}),
|
|
2737
2735
|
onClick: defineListenerProp(),
|
|
2738
2736
|
onTouchstart: defineListenerProp()
|
|
2739
2737
|
};
|
|
2738
|
+
var BUTTON_GROUP_BIND_BUTTON_KEY = Symbol("BUTTON_GROUP_BIND_BUTTON_KEY");
|
|
2739
|
+
var BUTTON_GROUP_COUNT_BUTTON_KEY = Symbol("BUTTON_GROUP_COUNT_BUTTON_KEY");
|
|
2740
|
+
function useButtons() {
|
|
2741
|
+
var {
|
|
2742
|
+
bindChildren,
|
|
2743
|
+
childProviders
|
|
2744
|
+
} = useChildren(BUTTON_GROUP_BIND_BUTTON_KEY);
|
|
2745
|
+
var {
|
|
2746
|
+
length
|
|
2747
|
+
} = useAtChildrenCounter(BUTTON_GROUP_COUNT_BUTTON_KEY);
|
|
2748
|
+
return {
|
|
2749
|
+
length,
|
|
2750
|
+
buttons: childProviders,
|
|
2751
|
+
bindButtons: bindChildren
|
|
2752
|
+
};
|
|
2753
|
+
}
|
|
2754
|
+
function useButtonGroup() {
|
|
2755
|
+
var {
|
|
2756
|
+
bindParent,
|
|
2757
|
+
parentProvider
|
|
2758
|
+
} = useParent(BUTTON_GROUP_BIND_BUTTON_KEY);
|
|
2759
|
+
var {
|
|
2760
|
+
index
|
|
2761
|
+
} = useAtParentIndex(BUTTON_GROUP_COUNT_BUTTON_KEY);
|
|
2762
|
+
return {
|
|
2763
|
+
index,
|
|
2764
|
+
buttonGroup: parentProvider,
|
|
2765
|
+
bindButtonGroup: bindParent
|
|
2766
|
+
};
|
|
2767
|
+
}
|
|
2740
2768
|
var {
|
|
2741
|
-
n: n$
|
|
2742
|
-
classes: classes$
|
|
2769
|
+
n: n$17,
|
|
2770
|
+
classes: classes$W
|
|
2743
2771
|
} = createNamespace("button");
|
|
2744
2772
|
var _hoisted_1$p = ["type", "disabled"];
|
|
2745
|
-
function __render__$
|
|
2773
|
+
function __render__$18(_ctx, _cache) {
|
|
2746
2774
|
var _component_var_loading = vue.resolveComponent("var-loading");
|
|
2747
2775
|
var _directive_ripple = vue.resolveDirective("ripple");
|
|
2748
2776
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock(
|
|
2749
2777
|
"button",
|
|
2750
2778
|
{
|
|
2751
|
-
|
|
2779
|
+
ref: "buttonEl",
|
|
2780
|
+
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), _ctx.n("--" + _ctx.states.size), [_ctx.block, _ctx.n("$--flex") + " " + _ctx.n("--block"), _ctx.n("$--inline-flex")], [_ctx.disabled, _ctx.n("--disabled")], [_ctx.states.text, _ctx.n("--text-" + _ctx.states.type) + " " + _ctx.n("--text"), _ctx.n("--" + _ctx.states.type) + " " + _ctx.n("$-elevation--" + _ctx.states.elevation)], [_ctx.states.text && _ctx.disabled, _ctx.n("--text-disabled")], [_ctx.round, _ctx.n("--round")], [_ctx.states.outline, _ctx.n("--outline")])),
|
|
2752
2781
|
style: vue.normalizeStyle({
|
|
2753
|
-
color: _ctx.textColor,
|
|
2754
|
-
background: _ctx.color
|
|
2782
|
+
color: _ctx.states.textColor,
|
|
2783
|
+
background: _ctx.states.color
|
|
2755
2784
|
}),
|
|
2756
2785
|
type: _ctx.nativeType,
|
|
2757
2786
|
disabled: _ctx.disabled,
|
|
@@ -2791,7 +2820,7 @@ function __render__$17(_ctx, _cache) {
|
|
|
2791
2820
|
disabled: _ctx.disabled || !_ctx.ripple
|
|
2792
2821
|
}]]);
|
|
2793
2822
|
}
|
|
2794
|
-
var __sfc__$
|
|
2823
|
+
var __sfc__$19 = vue.defineComponent({
|
|
2795
2824
|
name: "VarButton",
|
|
2796
2825
|
components: {
|
|
2797
2826
|
VarLoading: Loading
|
|
@@ -2799,9 +2828,41 @@ var __sfc__$18 = vue.defineComponent({
|
|
|
2799
2828
|
directives: {
|
|
2800
2829
|
Ripple: Ripple$1
|
|
2801
2830
|
},
|
|
2802
|
-
props: props
|
|
2831
|
+
props: props$10,
|
|
2803
2832
|
setup(props2) {
|
|
2804
2833
|
var pending = vue.ref(false);
|
|
2834
|
+
var {
|
|
2835
|
+
buttonGroup: buttonGroup2
|
|
2836
|
+
} = useButtonGroup();
|
|
2837
|
+
var states = vue.computed(() => {
|
|
2838
|
+
if (!buttonGroup2) {
|
|
2839
|
+
return {
|
|
2840
|
+
elevation: 2,
|
|
2841
|
+
type: props2.type != null ? props2.type : "default",
|
|
2842
|
+
size: props2.size != null ? props2.size : "normal",
|
|
2843
|
+
color: props2.color,
|
|
2844
|
+
text: props2.text,
|
|
2845
|
+
textColor: props2.textColor,
|
|
2846
|
+
outline: props2.outline
|
|
2847
|
+
};
|
|
2848
|
+
}
|
|
2849
|
+
var {
|
|
2850
|
+
type,
|
|
2851
|
+
size,
|
|
2852
|
+
color,
|
|
2853
|
+
textColor,
|
|
2854
|
+
mode
|
|
2855
|
+
} = buttonGroup2;
|
|
2856
|
+
return {
|
|
2857
|
+
elevation: 0,
|
|
2858
|
+
type: props2.type != null ? props2.type : type.value,
|
|
2859
|
+
size: props2.size != null ? props2.size : size.value,
|
|
2860
|
+
color: props2.color != null ? props2.color : color.value,
|
|
2861
|
+
textColor: props2.textColor != null ? props2.textColor : textColor.value,
|
|
2862
|
+
text: mode.value !== "normal",
|
|
2863
|
+
outline: mode.value === "outline"
|
|
2864
|
+
};
|
|
2865
|
+
});
|
|
2805
2866
|
var attemptAutoLoading = (result2) => {
|
|
2806
2867
|
if (props2.autoLoading) {
|
|
2807
2868
|
pending.value = true;
|
|
@@ -2836,21 +2897,22 @@ var __sfc__$18 = vue.defineComponent({
|
|
|
2836
2897
|
attemptAutoLoading(call(onTouchstart, e));
|
|
2837
2898
|
};
|
|
2838
2899
|
return {
|
|
2839
|
-
n: n$
|
|
2840
|
-
classes: classes$
|
|
2900
|
+
n: n$17,
|
|
2901
|
+
classes: classes$W,
|
|
2841
2902
|
pending,
|
|
2903
|
+
states,
|
|
2842
2904
|
handleClick,
|
|
2843
2905
|
handleTouchstart
|
|
2844
2906
|
};
|
|
2845
2907
|
}
|
|
2846
2908
|
});
|
|
2847
|
-
__sfc__$
|
|
2848
|
-
const Button = __sfc__$
|
|
2909
|
+
__sfc__$19.render = __render__$18;
|
|
2910
|
+
const Button = __sfc__$19;
|
|
2849
2911
|
Button.install = function(app) {
|
|
2850
2912
|
app.component(Button.name, Button);
|
|
2851
2913
|
};
|
|
2852
2914
|
var _ButtonComponent = Button;
|
|
2853
|
-
var props
|
|
2915
|
+
var props$$ = {
|
|
2854
2916
|
visibilityHeight: {
|
|
2855
2917
|
type: [Number, String],
|
|
2856
2918
|
default: 200
|
|
@@ -2871,10 +2933,10 @@ var props$_ = {
|
|
|
2871
2933
|
onClick: defineListenerProp()
|
|
2872
2934
|
};
|
|
2873
2935
|
var {
|
|
2874
|
-
n: n$
|
|
2875
|
-
classes: classes$
|
|
2936
|
+
n: n$16,
|
|
2937
|
+
classes: classes$V
|
|
2876
2938
|
} = createNamespace("back-top");
|
|
2877
|
-
function __render__$
|
|
2939
|
+
function __render__$17(_ctx, _cache) {
|
|
2878
2940
|
var _component_var_icon = vue.resolveComponent("var-icon");
|
|
2879
2941
|
var _component_var_button = vue.resolveComponent("var-button");
|
|
2880
2942
|
return vue.openBlock(), vue.createBlock(
|
|
@@ -2915,14 +2977,14 @@ function __render__$16(_ctx, _cache) {
|
|
|
2915
2977
|
["disabled"]
|
|
2916
2978
|
);
|
|
2917
2979
|
}
|
|
2918
|
-
var __sfc__$
|
|
2980
|
+
var __sfc__$18 = vue.defineComponent({
|
|
2919
2981
|
name: "VarBackTop",
|
|
2920
2982
|
components: {
|
|
2921
2983
|
VarButton: Button,
|
|
2922
2984
|
VarIcon: Icon
|
|
2923
2985
|
},
|
|
2924
2986
|
inheritAttrs: false,
|
|
2925
|
-
props: props
|
|
2987
|
+
props: props$$,
|
|
2926
2988
|
setup(props2) {
|
|
2927
2989
|
var show = vue.ref(false);
|
|
2928
2990
|
var backTopEl = vue.ref(null);
|
|
@@ -2954,30 +3016,30 @@ var __sfc__$17 = vue.defineComponent({
|
|
|
2954
3016
|
show,
|
|
2955
3017
|
backTopEl,
|
|
2956
3018
|
toSizeUnit,
|
|
2957
|
-
n: n$
|
|
2958
|
-
classes: classes$
|
|
3019
|
+
n: n$16,
|
|
3020
|
+
classes: classes$V,
|
|
2959
3021
|
click
|
|
2960
3022
|
};
|
|
2961
3023
|
}
|
|
2962
3024
|
});
|
|
2963
|
-
__sfc__$
|
|
2964
|
-
const BackTop = __sfc__$
|
|
3025
|
+
__sfc__$18.render = __render__$17;
|
|
3026
|
+
const BackTop = __sfc__$18;
|
|
2965
3027
|
BackTop.install = function(app) {
|
|
2966
3028
|
app.component(BackTop.name, BackTop);
|
|
2967
3029
|
};
|
|
2968
3030
|
var _BackTopComponent = BackTop;
|
|
2969
|
-
function typeValidator$
|
|
3031
|
+
function typeValidator$8(type) {
|
|
2970
3032
|
return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
|
|
2971
3033
|
}
|
|
2972
3034
|
function positionValidator$1(position) {
|
|
2973
3035
|
return ["right-top", "right-bottom", "left-top", "left-bottom"].includes(position);
|
|
2974
3036
|
}
|
|
2975
|
-
var props$
|
|
3037
|
+
var props$_ = {
|
|
2976
3038
|
// 徽标类型
|
|
2977
3039
|
type: {
|
|
2978
3040
|
type: String,
|
|
2979
3041
|
default: "default",
|
|
2980
|
-
validator: typeValidator$
|
|
3042
|
+
validator: typeValidator$8
|
|
2981
3043
|
},
|
|
2982
3044
|
// 是否隐藏徽标
|
|
2983
3045
|
hidden: {
|
|
@@ -3014,13 +3076,13 @@ var props$Z = {
|
|
|
3014
3076
|
}
|
|
3015
3077
|
};
|
|
3016
3078
|
var {
|
|
3017
|
-
n: n$
|
|
3018
|
-
classes: classes$
|
|
3079
|
+
n: n$15,
|
|
3080
|
+
classes: classes$U
|
|
3019
3081
|
} = createNamespace("badge");
|
|
3020
3082
|
var _hoisted_1$o = {
|
|
3021
3083
|
key: 1
|
|
3022
3084
|
};
|
|
3023
|
-
function __render__$
|
|
3085
|
+
function __render__$16(_ctx, _cache) {
|
|
3024
3086
|
var _component_var_icon = vue.resolveComponent("var-icon");
|
|
3025
3087
|
return vue.openBlock(), vue.createElementBlock(
|
|
3026
3088
|
"div",
|
|
@@ -3071,13 +3133,13 @@ function __render__$15(_ctx, _cache) {
|
|
|
3071
3133
|
/* CLASS */
|
|
3072
3134
|
);
|
|
3073
3135
|
}
|
|
3074
|
-
var __sfc__$
|
|
3136
|
+
var __sfc__$17 = vue.defineComponent({
|
|
3075
3137
|
name: "VarBadge",
|
|
3076
3138
|
components: {
|
|
3077
3139
|
VarIcon: Icon
|
|
3078
3140
|
},
|
|
3079
3141
|
inheritAttrs: false,
|
|
3080
|
-
props: props$
|
|
3142
|
+
props: props$_,
|
|
3081
3143
|
setup(props2, _ref) {
|
|
3082
3144
|
var {
|
|
3083
3145
|
slots
|
|
@@ -3089,11 +3151,11 @@ var __sfc__$16 = vue.defineComponent({
|
|
|
3089
3151
|
dot,
|
|
3090
3152
|
icon: icon2
|
|
3091
3153
|
} = props2;
|
|
3092
|
-
var positionBasic = slots.default && n$
|
|
3093
|
-
var dotClass = dot ? n$
|
|
3154
|
+
var positionBasic = slots.default && n$15("position") + " " + n$15("--" + position);
|
|
3155
|
+
var dotClass = dot ? n$15("dot") : null;
|
|
3094
3156
|
var positionClass = getPositionClass();
|
|
3095
|
-
var iconClass = icon2 ? n$
|
|
3096
|
-
return [n$
|
|
3157
|
+
var iconClass = icon2 ? n$15("icon") : null;
|
|
3158
|
+
return [n$15("--" + type), positionBasic, dotClass, positionClass, iconClass];
|
|
3097
3159
|
});
|
|
3098
3160
|
var values = vue.computed(() => {
|
|
3099
3161
|
var {
|
|
@@ -3115,25 +3177,25 @@ var __sfc__$16 = vue.defineComponent({
|
|
|
3115
3177
|
if (!dot)
|
|
3116
3178
|
return;
|
|
3117
3179
|
if (position.includes("right"))
|
|
3118
|
-
return n$
|
|
3180
|
+
return n$15("dot--right");
|
|
3119
3181
|
if (position.includes("left"))
|
|
3120
|
-
return n$
|
|
3182
|
+
return n$15("dot--left");
|
|
3121
3183
|
};
|
|
3122
3184
|
return {
|
|
3123
|
-
n: n$
|
|
3124
|
-
classes: classes$
|
|
3185
|
+
n: n$15,
|
|
3186
|
+
classes: classes$U,
|
|
3125
3187
|
values,
|
|
3126
3188
|
contentClass
|
|
3127
3189
|
};
|
|
3128
3190
|
}
|
|
3129
3191
|
});
|
|
3130
|
-
__sfc__$
|
|
3131
|
-
const Badge = __sfc__$
|
|
3192
|
+
__sfc__$17.render = __render__$16;
|
|
3193
|
+
const Badge = __sfc__$17;
|
|
3132
3194
|
Badge.install = function(app) {
|
|
3133
3195
|
app.component(Badge.name, Badge);
|
|
3134
3196
|
};
|
|
3135
3197
|
var _BadgeComponent = Badge;
|
|
3136
|
-
var props$
|
|
3198
|
+
var props$Z = {
|
|
3137
3199
|
active: {
|
|
3138
3200
|
type: [Number, String],
|
|
3139
3201
|
default: 0
|
|
@@ -3199,8 +3261,8 @@ function _extends$e() {
|
|
|
3199
3261
|
return _extends$e.apply(this, arguments);
|
|
3200
3262
|
}
|
|
3201
3263
|
var {
|
|
3202
|
-
n: n$
|
|
3203
|
-
classes: classes$
|
|
3264
|
+
n: n$14,
|
|
3265
|
+
classes: classes$T
|
|
3204
3266
|
} = createNamespace("bottom-navigation");
|
|
3205
3267
|
var {
|
|
3206
3268
|
n: nItem
|
|
@@ -3211,7 +3273,7 @@ var RIGHT_SPACE_CLASS = nItem("--right-space");
|
|
|
3211
3273
|
var defaultFabProps = {
|
|
3212
3274
|
type: "primary"
|
|
3213
3275
|
};
|
|
3214
|
-
function __render__$
|
|
3276
|
+
function __render__$15(_ctx, _cache) {
|
|
3215
3277
|
var _component_var_button = vue.resolveComponent("var-button");
|
|
3216
3278
|
return vue.openBlock(), vue.createElementBlock(
|
|
3217
3279
|
"div",
|
|
@@ -3242,12 +3304,12 @@ function __render__$14(_ctx, _cache) {
|
|
|
3242
3304
|
/* CLASS, STYLE */
|
|
3243
3305
|
);
|
|
3244
3306
|
}
|
|
3245
|
-
var __sfc__$
|
|
3307
|
+
var __sfc__$16 = vue.defineComponent({
|
|
3246
3308
|
name: "VarBottomNavigation",
|
|
3247
3309
|
components: {
|
|
3248
3310
|
VarButton: Button
|
|
3249
3311
|
},
|
|
3250
|
-
props: props$
|
|
3312
|
+
props: props$Z,
|
|
3251
3313
|
setup(props2, _ref) {
|
|
3252
3314
|
var {
|
|
3253
3315
|
slots
|
|
@@ -3375,8 +3437,8 @@ var __sfc__$15 = vue.defineComponent({
|
|
|
3375
3437
|
addMarginClass(length.value);
|
|
3376
3438
|
});
|
|
3377
3439
|
return {
|
|
3378
|
-
n: n$
|
|
3379
|
-
classes: classes$
|
|
3440
|
+
n: n$14,
|
|
3441
|
+
classes: classes$T,
|
|
3380
3442
|
length,
|
|
3381
3443
|
bottomNavigationDom,
|
|
3382
3444
|
handleFabClick,
|
|
@@ -3384,13 +3446,13 @@ var __sfc__$15 = vue.defineComponent({
|
|
|
3384
3446
|
};
|
|
3385
3447
|
}
|
|
3386
3448
|
});
|
|
3387
|
-
__sfc__$
|
|
3388
|
-
const BottomNavigation = __sfc__$
|
|
3449
|
+
__sfc__$16.render = __render__$15;
|
|
3450
|
+
const BottomNavigation = __sfc__$16;
|
|
3389
3451
|
BottomNavigation.install = function(app) {
|
|
3390
3452
|
app.component(BottomNavigation.name, BottomNavigation);
|
|
3391
3453
|
};
|
|
3392
3454
|
var _BottomNavigationComponent = BottomNavigation;
|
|
3393
|
-
var props$
|
|
3455
|
+
var props$Y = {
|
|
3394
3456
|
name: {
|
|
3395
3457
|
type: String
|
|
3396
3458
|
},
|
|
@@ -3428,14 +3490,14 @@ function useBottomNavigation() {
|
|
|
3428
3490
|
};
|
|
3429
3491
|
}
|
|
3430
3492
|
var {
|
|
3431
|
-
n: n$
|
|
3432
|
-
classes: classes$
|
|
3493
|
+
n: n$13,
|
|
3494
|
+
classes: classes$S
|
|
3433
3495
|
} = createNamespace("bottom-navigation-item");
|
|
3434
3496
|
var defaultBadgeProps = {
|
|
3435
3497
|
type: "danger",
|
|
3436
3498
|
dot: true
|
|
3437
3499
|
};
|
|
3438
|
-
function __render__$
|
|
3500
|
+
function __render__$14(_ctx, _cache) {
|
|
3439
3501
|
var _component_var_icon = vue.resolveComponent("var-icon");
|
|
3440
3502
|
var _component_var_badge = vue.resolveComponent("var-badge");
|
|
3441
3503
|
var _directive_ripple = vue.resolveDirective("ripple");
|
|
@@ -3500,7 +3562,7 @@ function __render__$13(_ctx, _cache) {
|
|
|
3500
3562
|
/* CLASS, STYLE */
|
|
3501
3563
|
)), [[_directive_ripple]]);
|
|
3502
3564
|
}
|
|
3503
|
-
var __sfc__$
|
|
3565
|
+
var __sfc__$15 = vue.defineComponent({
|
|
3504
3566
|
name: "VarBottomNavigationItem",
|
|
3505
3567
|
components: {
|
|
3506
3568
|
VarBadge: Badge,
|
|
@@ -3509,7 +3571,7 @@ var __sfc__$14 = vue.defineComponent({
|
|
|
3509
3571
|
directives: {
|
|
3510
3572
|
Ripple: Ripple$1
|
|
3511
3573
|
},
|
|
3512
|
-
props: props$
|
|
3574
|
+
props: props$Y,
|
|
3513
3575
|
setup(props2) {
|
|
3514
3576
|
var name = vue.computed(() => props2.name);
|
|
3515
3577
|
var badge2 = vue.computed(() => props2.badge);
|
|
@@ -3544,8 +3606,8 @@ var __sfc__$14 = vue.defineComponent({
|
|
|
3544
3606
|
immediate: true
|
|
3545
3607
|
});
|
|
3546
3608
|
return {
|
|
3547
|
-
n: n$
|
|
3548
|
-
classes: classes$
|
|
3609
|
+
n: n$13,
|
|
3610
|
+
classes: classes$S,
|
|
3549
3611
|
index,
|
|
3550
3612
|
active,
|
|
3551
3613
|
badge: badge2,
|
|
@@ -3555,13 +3617,13 @@ var __sfc__$14 = vue.defineComponent({
|
|
|
3555
3617
|
};
|
|
3556
3618
|
}
|
|
3557
3619
|
});
|
|
3558
|
-
__sfc__$
|
|
3559
|
-
const BottomNavigationItem = __sfc__$
|
|
3620
|
+
__sfc__$15.render = __render__$14;
|
|
3621
|
+
const BottomNavigationItem = __sfc__$15;
|
|
3560
3622
|
BottomNavigationItem.install = function(app) {
|
|
3561
3623
|
app.component(BottomNavigationItem.name, BottomNavigationItem);
|
|
3562
3624
|
};
|
|
3563
3625
|
var _BottomNavigationItemComponent = BottomNavigationItem;
|
|
3564
|
-
var props$
|
|
3626
|
+
var props$X = {
|
|
3565
3627
|
separator: {
|
|
3566
3628
|
type: String
|
|
3567
3629
|
},
|
|
@@ -3601,10 +3663,10 @@ function useBreadcrumb() {
|
|
|
3601
3663
|
};
|
|
3602
3664
|
}
|
|
3603
3665
|
var {
|
|
3604
|
-
n: n$
|
|
3605
|
-
classes: classes$
|
|
3666
|
+
n: n$12,
|
|
3667
|
+
classes: classes$R
|
|
3606
3668
|
} = createNamespace("breadcrumb");
|
|
3607
|
-
function __render__$
|
|
3669
|
+
function __render__$13(_ctx, _cache) {
|
|
3608
3670
|
return vue.openBlock(), vue.createElementBlock(
|
|
3609
3671
|
"div",
|
|
3610
3672
|
{
|
|
@@ -3639,9 +3701,9 @@ function __render__$12(_ctx, _cache) {
|
|
|
3639
3701
|
/* CLASS */
|
|
3640
3702
|
);
|
|
3641
3703
|
}
|
|
3642
|
-
var __sfc__$
|
|
3704
|
+
var __sfc__$14 = vue.defineComponent({
|
|
3643
3705
|
name: "VarBreadcrumb",
|
|
3644
|
-
props: props$
|
|
3706
|
+
props: props$X,
|
|
3645
3707
|
setup(props2) {
|
|
3646
3708
|
var {
|
|
3647
3709
|
index,
|
|
@@ -3658,30 +3720,30 @@ var __sfc__$13 = vue.defineComponent({
|
|
|
3658
3720
|
};
|
|
3659
3721
|
bindBreadcrumb(null);
|
|
3660
3722
|
return {
|
|
3661
|
-
n: n$
|
|
3662
|
-
classes: classes$
|
|
3723
|
+
n: n$12,
|
|
3724
|
+
classes: classes$R,
|
|
3663
3725
|
isLast,
|
|
3664
3726
|
parentSeparator,
|
|
3665
3727
|
handleClick
|
|
3666
3728
|
};
|
|
3667
3729
|
}
|
|
3668
3730
|
});
|
|
3669
|
-
__sfc__$
|
|
3670
|
-
const Breadcrumb = __sfc__$
|
|
3731
|
+
__sfc__$14.render = __render__$13;
|
|
3732
|
+
const Breadcrumb = __sfc__$14;
|
|
3671
3733
|
Breadcrumb.install = function(app) {
|
|
3672
3734
|
app.component(Breadcrumb.name, Breadcrumb);
|
|
3673
3735
|
};
|
|
3674
3736
|
var _BreadcrumbComponent = Breadcrumb;
|
|
3675
|
-
var props$
|
|
3737
|
+
var props$W = {
|
|
3676
3738
|
separator: {
|
|
3677
3739
|
type: String,
|
|
3678
3740
|
default: "/"
|
|
3679
3741
|
}
|
|
3680
3742
|
};
|
|
3681
3743
|
var {
|
|
3682
|
-
n: n$
|
|
3744
|
+
n: n$11
|
|
3683
3745
|
} = createNamespace("breadcrumbs");
|
|
3684
|
-
function __render__$
|
|
3746
|
+
function __render__$12(_ctx, _cache) {
|
|
3685
3747
|
return vue.openBlock(), vue.createElementBlock(
|
|
3686
3748
|
"div",
|
|
3687
3749
|
{
|
|
@@ -3692,9 +3754,9 @@ function __render__$11(_ctx, _cache) {
|
|
|
3692
3754
|
/* CLASS */
|
|
3693
3755
|
);
|
|
3694
3756
|
}
|
|
3695
|
-
var __sfc__$
|
|
3757
|
+
var __sfc__$13 = vue.defineComponent({
|
|
3696
3758
|
name: "VarBreadcrumbs",
|
|
3697
|
-
props: props$
|
|
3759
|
+
props: props$W,
|
|
3698
3760
|
setup(props2) {
|
|
3699
3761
|
var separator = vue.computed(() => props2.separator);
|
|
3700
3762
|
var {
|
|
@@ -3707,16 +3769,99 @@ var __sfc__$12 = vue.defineComponent({
|
|
|
3707
3769
|
};
|
|
3708
3770
|
bindBreadcrumbList(breadcrumbsProvider);
|
|
3709
3771
|
return {
|
|
3710
|
-
n: n$
|
|
3772
|
+
n: n$11
|
|
3711
3773
|
};
|
|
3712
3774
|
}
|
|
3713
3775
|
});
|
|
3714
|
-
__sfc__$
|
|
3715
|
-
const Breadcrumbs = __sfc__$
|
|
3776
|
+
__sfc__$13.render = __render__$12;
|
|
3777
|
+
const Breadcrumbs = __sfc__$13;
|
|
3716
3778
|
Breadcrumbs.install = function(app) {
|
|
3717
3779
|
app.component(Breadcrumbs.name, Breadcrumbs);
|
|
3718
3780
|
};
|
|
3719
3781
|
var _BreadcrumbsComponent = Breadcrumbs;
|
|
3782
|
+
function typeValidator$7(type) {
|
|
3783
|
+
return ["default", "primary", "info", "success", "warning", "danger"].includes(type);
|
|
3784
|
+
}
|
|
3785
|
+
function sizeValidator$2(size) {
|
|
3786
|
+
return ["normal", "mini", "small", "large"].includes(size);
|
|
3787
|
+
}
|
|
3788
|
+
function modeValidator$1(mode) {
|
|
3789
|
+
return ["normal", "text", "outline"].includes(mode);
|
|
3790
|
+
}
|
|
3791
|
+
var props$V = {
|
|
3792
|
+
type: {
|
|
3793
|
+
type: String,
|
|
3794
|
+
default: "default",
|
|
3795
|
+
validator: typeValidator$7
|
|
3796
|
+
},
|
|
3797
|
+
size: {
|
|
3798
|
+
type: String,
|
|
3799
|
+
default: "normal",
|
|
3800
|
+
validator: sizeValidator$2
|
|
3801
|
+
},
|
|
3802
|
+
color: {
|
|
3803
|
+
type: String
|
|
3804
|
+
},
|
|
3805
|
+
textColor: {
|
|
3806
|
+
type: String
|
|
3807
|
+
},
|
|
3808
|
+
mode: {
|
|
3809
|
+
type: String,
|
|
3810
|
+
default: "normal",
|
|
3811
|
+
validator: modeValidator$1
|
|
3812
|
+
},
|
|
3813
|
+
elevation: {
|
|
3814
|
+
type: [Number, String],
|
|
3815
|
+
default: 2
|
|
3816
|
+
},
|
|
3817
|
+
vertical: {
|
|
3818
|
+
type: Boolean,
|
|
3819
|
+
default: false
|
|
3820
|
+
}
|
|
3821
|
+
};
|
|
3822
|
+
var {
|
|
3823
|
+
n: n$10,
|
|
3824
|
+
classes: classes$Q
|
|
3825
|
+
} = createNamespace("button-group");
|
|
3826
|
+
function __render__$11(_ctx, _cache) {
|
|
3827
|
+
return vue.openBlock(), vue.createElementBlock(
|
|
3828
|
+
"div",
|
|
3829
|
+
{
|
|
3830
|
+
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), [_ctx.mode, "" + _ctx.n("--mode-" + _ctx.mode)], [_ctx.vertical, _ctx.n("--vertical"), _ctx.n("--horizontal")], [_ctx.mode === "normal", _ctx.n("$-elevation--" + _ctx.elevation)]))
|
|
3831
|
+
},
|
|
3832
|
+
[vue.renderSlot(_ctx.$slots, "default")],
|
|
3833
|
+
2
|
|
3834
|
+
/* CLASS */
|
|
3835
|
+
);
|
|
3836
|
+
}
|
|
3837
|
+
var __sfc__$12 = vue.defineComponent({
|
|
3838
|
+
name: "VarButtonGroup",
|
|
3839
|
+
props: props$V,
|
|
3840
|
+
setup(props2) {
|
|
3841
|
+
var {
|
|
3842
|
+
bindButtons
|
|
3843
|
+
} = useButtons();
|
|
3844
|
+
var buttonGroupProvider = {
|
|
3845
|
+
elevation: vue.computed(() => props2.elevation),
|
|
3846
|
+
type: vue.computed(() => props2.type),
|
|
3847
|
+
size: vue.computed(() => props2.size),
|
|
3848
|
+
color: vue.computed(() => props2.color),
|
|
3849
|
+
textColor: vue.computed(() => props2.textColor),
|
|
3850
|
+
mode: vue.computed(() => props2.mode)
|
|
3851
|
+
};
|
|
3852
|
+
bindButtons(buttonGroupProvider);
|
|
3853
|
+
return {
|
|
3854
|
+
n: n$10,
|
|
3855
|
+
classes: classes$Q
|
|
3856
|
+
};
|
|
3857
|
+
}
|
|
3858
|
+
});
|
|
3859
|
+
__sfc__$12.render = __render__$11;
|
|
3860
|
+
const ButtonGroup = __sfc__$12;
|
|
3861
|
+
ButtonGroup.install = function(app) {
|
|
3862
|
+
app.component(ButtonGroup.name, ButtonGroup);
|
|
3863
|
+
};
|
|
3864
|
+
var _ButtonGroupComponent = ButtonGroup;
|
|
3720
3865
|
function fitValidator$1(fit) {
|
|
3721
3866
|
return ["fill", "contain", "cover", "none", "scale-down"].includes(fit);
|
|
3722
3867
|
}
|
|
@@ -4925,7 +5070,7 @@ var props$P = {
|
|
|
4925
5070
|
textColor: {
|
|
4926
5071
|
type: String
|
|
4927
5072
|
},
|
|
4928
|
-
iconName: pickProps(props$
|
|
5073
|
+
iconName: pickProps(props$16, "name"),
|
|
4929
5074
|
plain: {
|
|
4930
5075
|
type: Boolean,
|
|
4931
5076
|
default: false
|
|
@@ -10584,7 +10729,7 @@ var props$I = _extends$a({
|
|
|
10584
10729
|
onConfirm: defineListenerProp(),
|
|
10585
10730
|
onCancel: defineListenerProp(),
|
|
10586
10731
|
"onUpdate:show": defineListenerProp()
|
|
10587
|
-
}, pickProps(props$
|
|
10732
|
+
}, pickProps(props$17, [
|
|
10588
10733
|
"overlay",
|
|
10589
10734
|
"overlayClass",
|
|
10590
10735
|
"overlayStyle",
|
|
@@ -13809,7 +13954,7 @@ var props$B = _extends$4({
|
|
|
13809
13954
|
default: false
|
|
13810
13955
|
},
|
|
13811
13956
|
"onUpdate:show": defineListenerProp()
|
|
13812
|
-
}, pickProps(props$C, ["loop", "indicator", "onChange"]), pickProps(props$
|
|
13957
|
+
}, pickProps(props$C, ["loop", "indicator", "onChange"]), pickProps(props$17, [
|
|
13813
13958
|
"lockScroll",
|
|
13814
13959
|
"teleport",
|
|
13815
13960
|
"onOpen",
|
|
@@ -16640,7 +16785,7 @@ function __render__$u(_ctx, _cache) {
|
|
|
16640
16785
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock(
|
|
16641
16786
|
"div",
|
|
16642
16787
|
{
|
|
16643
|
-
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), _ctx.n("$-elevation--" + _ctx.elevation), [_ctx.onClick, _ctx.n("--cursor")], [_ctx.round, _ctx.n("--round")], [_ctx.inline, _ctx.n("$--inline-flex")])),
|
|
16788
|
+
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box"), [_ctx.elevation != null, _ctx.n("$-elevation--" + _ctx.elevation)], [_ctx.onClick, _ctx.n("--cursor")], [_ctx.round, _ctx.n("--round")], [_ctx.inline, _ctx.n("$--inline-flex")])),
|
|
16644
16789
|
style: vue.normalizeStyle({
|
|
16645
16790
|
width: _ctx.toSizeUnit(_ctx.width),
|
|
16646
16791
|
height: _ctx.toSizeUnit(_ctx.height),
|
|
@@ -16751,7 +16896,7 @@ var props$n = _extends$3({
|
|
|
16751
16896
|
onChange: defineListenerProp(),
|
|
16752
16897
|
onConfirm: defineListenerProp(),
|
|
16753
16898
|
onCancel: defineListenerProp()
|
|
16754
|
-
}, pickProps(props$
|
|
16899
|
+
}, pickProps(props$17, ["show", "onUpdate:show", "closeOnClickOverlay", "teleport", "onOpen", "onClose", "onOpened", "onClosed", "onClickOverlay", "onRouteChange"]));
|
|
16755
16900
|
var {
|
|
16756
16901
|
n: n$q,
|
|
16757
16902
|
classes: classes$l
|
|
@@ -20305,10 +20450,10 @@ var props$c = {
|
|
|
20305
20450
|
type: Boolean,
|
|
20306
20451
|
default: false
|
|
20307
20452
|
},
|
|
20308
|
-
loadingType: pickProps(props$
|
|
20309
|
-
loadingSize: pickProps(props$
|
|
20310
|
-
loadingRadius: pickProps(props$
|
|
20311
|
-
loadingColor: _extends$2({}, pickProps(props$
|
|
20453
|
+
loadingType: pickProps(props$11, "type"),
|
|
20454
|
+
loadingSize: pickProps(props$11, "size"),
|
|
20455
|
+
loadingRadius: pickProps(props$11, "radius"),
|
|
20456
|
+
loadingColor: _extends$2({}, pickProps(props$11, "color"), {
|
|
20312
20457
|
default: "currentColor"
|
|
20313
20458
|
}),
|
|
20314
20459
|
// 是否禁止滚动穿透
|
|
@@ -23956,6 +24101,8 @@ const breadcrumbs = "";
|
|
|
23956
24101
|
const BreadcrumbsSfc = "";
|
|
23957
24102
|
const loading = "";
|
|
23958
24103
|
const ButtonSfc = "";
|
|
24104
|
+
const buttonGroup = "";
|
|
24105
|
+
const ButtonGroupSfc = "";
|
|
23959
24106
|
const card = "";
|
|
23960
24107
|
const CardSfc = "";
|
|
23961
24108
|
const cell = "";
|
|
@@ -24063,7 +24210,7 @@ const TimePickerSfc = "";
|
|
|
24063
24210
|
const TooltipSfc = "";
|
|
24064
24211
|
const uploader = "";
|
|
24065
24212
|
const UploaderSfc = "";
|
|
24066
|
-
const version = "2.8.
|
|
24213
|
+
const version = "2.8.2-alpha.1676818330977";
|
|
24067
24214
|
function install(app) {
|
|
24068
24215
|
ActionSheet.install && app.use(ActionSheet);
|
|
24069
24216
|
AppBar.install && app.use(AppBar);
|
|
@@ -24076,6 +24223,7 @@ function install(app) {
|
|
|
24076
24223
|
Breadcrumb.install && app.use(Breadcrumb);
|
|
24077
24224
|
Breadcrumbs.install && app.use(Breadcrumbs);
|
|
24078
24225
|
Button.install && app.use(Button);
|
|
24226
|
+
ButtonGroup.install && app.use(ButtonGroup);
|
|
24079
24227
|
Card.install && app.use(Card);
|
|
24080
24228
|
Cell.install && app.use(Cell);
|
|
24081
24229
|
Checkbox.install && app.use(Checkbox);
|
|
@@ -24156,6 +24304,7 @@ const index_bundle = {
|
|
|
24156
24304
|
Breadcrumb,
|
|
24157
24305
|
Breadcrumbs,
|
|
24158
24306
|
Button,
|
|
24307
|
+
ButtonGroup,
|
|
24159
24308
|
Card,
|
|
24160
24309
|
Cell,
|
|
24161
24310
|
Checkbox,
|
|
@@ -24233,6 +24382,7 @@ exports.BottomNavigationItem = BottomNavigationItem;
|
|
|
24233
24382
|
exports.Breadcrumb = Breadcrumb;
|
|
24234
24383
|
exports.Breadcrumbs = Breadcrumbs;
|
|
24235
24384
|
exports.Button = Button;
|
|
24385
|
+
exports.ButtonGroup = ButtonGroup;
|
|
24236
24386
|
exports.Card = Card;
|
|
24237
24387
|
exports.Cell = Cell;
|
|
24238
24388
|
exports.Checkbox = Checkbox;
|
|
@@ -24311,6 +24461,7 @@ exports._BottomNavigationItemComponent = _BottomNavigationItemComponent;
|
|
|
24311
24461
|
exports._BreadcrumbComponent = _BreadcrumbComponent;
|
|
24312
24462
|
exports._BreadcrumbsComponent = _BreadcrumbsComponent;
|
|
24313
24463
|
exports._ButtonComponent = _ButtonComponent;
|
|
24464
|
+
exports._ButtonGroupComponent = _ButtonGroupComponent;
|
|
24314
24465
|
exports._CardComponent = _CardComponent;
|
|
24315
24466
|
exports._CellComponent = _CellComponent;
|
|
24316
24467
|
exports._CheckboxComponent = _CheckboxComponent;
|
|
@@ -24376,18 +24527,18 @@ exports._ThemesComponent = _ThemesComponent;
|
|
|
24376
24527
|
exports._TimePickerComponent = _TimePickerComponent;
|
|
24377
24528
|
exports._TooltipComponent = _TooltipComponent;
|
|
24378
24529
|
exports._UploaderComponent = _UploaderComponent;
|
|
24379
|
-
exports.actionSheetProps = props$
|
|
24530
|
+
exports.actionSheetProps = props$15;
|
|
24380
24531
|
exports.add = add$2;
|
|
24381
|
-
exports.appBarProps = props$
|
|
24382
|
-
exports.avatarGroupProps = props$
|
|
24383
|
-
exports.avatarProps = props$
|
|
24384
|
-
exports.backTopProps = props
|
|
24385
|
-
exports.badgeProps = props$
|
|
24386
|
-
exports.bottomNavigationItemProps = props$
|
|
24387
|
-
exports.bottomNavigationProps = props$
|
|
24388
|
-
exports.breadcrumbProps = props$
|
|
24389
|
-
exports.breadcrumbsProps = props$
|
|
24390
|
-
exports.buttonProps = props
|
|
24532
|
+
exports.appBarProps = props$14;
|
|
24533
|
+
exports.avatarGroupProps = props$12;
|
|
24534
|
+
exports.avatarProps = props$13;
|
|
24535
|
+
exports.backTopProps = props$$;
|
|
24536
|
+
exports.badgeProps = props$_;
|
|
24537
|
+
exports.bottomNavigationItemProps = props$Y;
|
|
24538
|
+
exports.bottomNavigationProps = props$Z;
|
|
24539
|
+
exports.breadcrumbProps = props$X;
|
|
24540
|
+
exports.breadcrumbsProps = props$W;
|
|
24541
|
+
exports.buttonProps = props$10;
|
|
24391
24542
|
exports.cardProps = props$U;
|
|
24392
24543
|
exports.cellProps = props$T;
|
|
24393
24544
|
exports.checkboxGroupProps = props$Q;
|
|
@@ -24406,7 +24557,7 @@ exports.dividerProps = props$H;
|
|
|
24406
24557
|
exports.enUS = enUS;
|
|
24407
24558
|
exports.formDetailsProps = props$S;
|
|
24408
24559
|
exports.formProps = props$E;
|
|
24409
|
-
exports.iconProps = props$
|
|
24560
|
+
exports.iconProps = props$16;
|
|
24410
24561
|
exports.imageCache = imageCache;
|
|
24411
24562
|
exports.imagePreviewProps = props$B;
|
|
24412
24563
|
exports.imageProps = props$D;
|
|
@@ -24417,7 +24568,7 @@ exports.install = install;
|
|
|
24417
24568
|
exports.linkProps = props$w;
|
|
24418
24569
|
exports.listProps = props$v;
|
|
24419
24570
|
exports.loadingBarProps = props$u;
|
|
24420
|
-
exports.loadingProps = props$
|
|
24571
|
+
exports.loadingProps = props$11;
|
|
24421
24572
|
exports.menuProps = props$s;
|
|
24422
24573
|
exports.merge = merge;
|
|
24423
24574
|
exports.optionProps = props$r;
|
|
@@ -24427,7 +24578,7 @@ exports.packs = packs;
|
|
|
24427
24578
|
exports.paginationProps = props$p;
|
|
24428
24579
|
exports.paperProps = props$o;
|
|
24429
24580
|
exports.pickerProps = props$n;
|
|
24430
|
-
exports.popupProps = props$
|
|
24581
|
+
exports.popupProps = props$17;
|
|
24431
24582
|
exports.progressProps = props$m;
|
|
24432
24583
|
exports.pullRefreshProps = props$l;
|
|
24433
24584
|
exports.radioGroupProps = props$j;
|