@varlet/ui 3.2.11-alpha.1716133168406 → 3.2.11
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/action-sheet/style/index.mjs +1 -1
- package/es/bottom-navigation/BottomNavigation.mjs +59 -32
- package/es/bottom-navigation/props.mjs +1 -0
- package/es/checkbox-group/CheckboxGroup.mjs +21 -4
- package/es/checkbox-group/CheckboxGroupOption.mjs +28 -0
- package/es/checkbox-group/props.mjs +1 -0
- package/es/checkbox-group/style/index.mjs +1 -0
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/snackbar/style/index.mjs +1 -1
- package/es/varlet.esm.js +3486 -3431
- package/highlight/web-types.en-US.json +19 -1
- package/highlight/web-types.zh-CN.json +19 -1
- package/lib/varlet.cjs.js +393 -328
- package/package.json +7 -7
- package/types/bottomNavigation.d.ts +1 -0
- package/types/checkboxGroup.d.ts +10 -1
- package/umd/varlet.js +5 -5
package/lib/varlet.cjs.js
CHANGED
|
@@ -7,7 +7,7 @@ const context = {
|
|
|
7
7
|
enableRipple: true
|
|
8
8
|
};
|
|
9
9
|
const _ContextComponent = vue.reactive(context);
|
|
10
|
-
var stdin_default$
|
|
10
|
+
var stdin_default$5W = vue.reactive(context);
|
|
11
11
|
var __defProp$x = Object.defineProperty;
|
|
12
12
|
var __defProps$a = Object.defineProperties;
|
|
13
13
|
var __getOwnPropDescs$a = Object.getOwnPropertyDescriptors;
|
|
@@ -850,7 +850,7 @@ function computeRippleStyles(element, event) {
|
|
|
850
850
|
function createRipple(event) {
|
|
851
851
|
const _ripple = this._ripple;
|
|
852
852
|
_ripple.removeRipple();
|
|
853
|
-
if (_ripple.disabled || _ripple.tasker || !stdin_default$
|
|
853
|
+
if (_ripple.disabled || _ripple.tasker || !stdin_default$5W.enableRipple) {
|
|
854
854
|
return;
|
|
855
855
|
}
|
|
856
856
|
const task = () => {
|
|
@@ -893,7 +893,7 @@ function removeRipple() {
|
|
|
893
893
|
_ripple.tasker ? window.setTimeout(task, 30) : task();
|
|
894
894
|
}
|
|
895
895
|
function forbidRippleTask() {
|
|
896
|
-
if (!supportTouch() || !stdin_default$
|
|
896
|
+
if (!supportTouch() || !stdin_default$5W.enableRipple) {
|
|
897
897
|
return;
|
|
898
898
|
}
|
|
899
899
|
const _ripple = this._ripple;
|
|
@@ -966,7 +966,7 @@ const Ripple = {
|
|
|
966
966
|
}
|
|
967
967
|
};
|
|
968
968
|
const _RippleComponent = Ripple;
|
|
969
|
-
var stdin_default$
|
|
969
|
+
var stdin_default$5V = Ripple;
|
|
970
970
|
const props$1g = {
|
|
971
971
|
show: Boolean,
|
|
972
972
|
position: {
|
|
@@ -1013,15 +1013,15 @@ const props$1g = {
|
|
|
1013
1013
|
onRouteChange: defineListenerProp()
|
|
1014
1014
|
};
|
|
1015
1015
|
function resolveLock() {
|
|
1016
|
-
const lockCounts = Object.keys(stdin_default$
|
|
1016
|
+
const lockCounts = Object.keys(stdin_default$5W.locks).length;
|
|
1017
1017
|
lockCounts <= 0 ? document.body.classList.remove("var--lock") : document.body.classList.add("var--lock");
|
|
1018
1018
|
}
|
|
1019
1019
|
function addLock(uid) {
|
|
1020
|
-
stdin_default$
|
|
1020
|
+
stdin_default$5W.locks[uid] = 1;
|
|
1021
1021
|
resolveLock();
|
|
1022
1022
|
}
|
|
1023
1023
|
function releaseLock(uid) {
|
|
1024
|
-
delete stdin_default$
|
|
1024
|
+
delete stdin_default$5W.locks[uid];
|
|
1025
1025
|
resolveLock();
|
|
1026
1026
|
}
|
|
1027
1027
|
function useLock(source, useSource) {
|
|
@@ -1079,13 +1079,13 @@ function useLock(source, useSource) {
|
|
|
1079
1079
|
});
|
|
1080
1080
|
}
|
|
1081
1081
|
function useZIndex(source, count) {
|
|
1082
|
-
const zIndex = vue.ref(stdin_default$
|
|
1082
|
+
const zIndex = vue.ref(stdin_default$5W.zIndex);
|
|
1083
1083
|
vue.watch(
|
|
1084
1084
|
source,
|
|
1085
1085
|
(newValue) => {
|
|
1086
1086
|
if (newValue) {
|
|
1087
|
-
stdin_default$
|
|
1088
|
-
zIndex.value = stdin_default$
|
|
1087
|
+
stdin_default$5W.zIndex += process.env.NODE_ENV === "test" ? 0 : count;
|
|
1088
|
+
zIndex.value = stdin_default$5W.zIndex;
|
|
1089
1089
|
}
|
|
1090
1090
|
},
|
|
1091
1091
|
{ immediate: true }
|
|
@@ -1170,7 +1170,7 @@ const {
|
|
|
1170
1170
|
n: n$1o,
|
|
1171
1171
|
classes: classes$1a
|
|
1172
1172
|
} = createNamespace("popup");
|
|
1173
|
-
var stdin_default$
|
|
1173
|
+
var stdin_default$5U = vue.defineComponent({
|
|
1174
1174
|
name: name$1h,
|
|
1175
1175
|
inheritAttrs: false,
|
|
1176
1176
|
props: props$1g,
|
|
@@ -1279,10 +1279,10 @@ var stdin_default$5T = vue.defineComponent({
|
|
|
1279
1279
|
};
|
|
1280
1280
|
}
|
|
1281
1281
|
});
|
|
1282
|
-
withInstall(stdin_default$
|
|
1283
|
-
withPropsDefaultsSetter(stdin_default$
|
|
1284
|
-
const _PopupComponent = stdin_default$
|
|
1285
|
-
var stdin_default$
|
|
1282
|
+
withInstall(stdin_default$5U);
|
|
1283
|
+
withPropsDefaultsSetter(stdin_default$5U, props$1g);
|
|
1284
|
+
const _PopupComponent = stdin_default$5U;
|
|
1285
|
+
var stdin_default$5T = stdin_default$5U;
|
|
1286
1286
|
const props$1f = {
|
|
1287
1287
|
name: String,
|
|
1288
1288
|
size: [Number, String],
|
|
@@ -1560,11 +1560,11 @@ const __sfc__$1o = vue.defineComponent({
|
|
|
1560
1560
|
}
|
|
1561
1561
|
});
|
|
1562
1562
|
__sfc__$1o.render = __render__$1n;
|
|
1563
|
-
var stdin_default$
|
|
1564
|
-
withInstall(stdin_default$
|
|
1565
|
-
withPropsDefaultsSetter(stdin_default$
|
|
1566
|
-
const _IconComponent = stdin_default$
|
|
1567
|
-
var stdin_default$
|
|
1563
|
+
var stdin_default$5S = __sfc__$1o;
|
|
1564
|
+
withInstall(stdin_default$5S);
|
|
1565
|
+
withPropsDefaultsSetter(stdin_default$5S, props$1f);
|
|
1566
|
+
const _IconComponent = stdin_default$5S;
|
|
1567
|
+
var stdin_default$5R = stdin_default$5S;
|
|
1568
1568
|
const props$1e = {
|
|
1569
1569
|
hovering: Boolean,
|
|
1570
1570
|
focusing: Boolean
|
|
@@ -1591,9 +1591,9 @@ const __sfc__$1n = vue.defineComponent({
|
|
|
1591
1591
|
})
|
|
1592
1592
|
});
|
|
1593
1593
|
__sfc__$1n.render = __render__$1m;
|
|
1594
|
-
var stdin_default$
|
|
1595
|
-
withInstall(stdin_default$
|
|
1596
|
-
withPropsDefaultsSetter(stdin_default$
|
|
1594
|
+
var stdin_default$5Q = __sfc__$1n;
|
|
1595
|
+
withInstall(stdin_default$5Q);
|
|
1596
|
+
withPropsDefaultsSetter(stdin_default$5Q, props$1e);
|
|
1597
1597
|
function useHoverOverlay() {
|
|
1598
1598
|
const hovering = vue.ref(false);
|
|
1599
1599
|
const handleHovering = (value) => {
|
|
@@ -1604,8 +1604,8 @@ function useHoverOverlay() {
|
|
|
1604
1604
|
handleHovering
|
|
1605
1605
|
};
|
|
1606
1606
|
}
|
|
1607
|
-
const _HoverOverlayComponent = stdin_default$
|
|
1608
|
-
var stdin_default$
|
|
1607
|
+
const _HoverOverlayComponent = stdin_default$5Q;
|
|
1608
|
+
var stdin_default$5P = stdin_default$5Q;
|
|
1609
1609
|
function shouldDisabled(arg) {
|
|
1610
1610
|
if (!arg) {
|
|
1611
1611
|
return false;
|
|
@@ -1727,7 +1727,7 @@ const Hover = {
|
|
|
1727
1727
|
}
|
|
1728
1728
|
};
|
|
1729
1729
|
const _HoverComponent = Hover;
|
|
1730
|
-
var stdin_default$
|
|
1730
|
+
var stdin_default$5O = Hover;
|
|
1731
1731
|
const { name: name$1e, n: n$1l, classes: classes$17 } = createNamespace("action-sheet");
|
|
1732
1732
|
function __render__$1l(_ctx, _cache) {
|
|
1733
1733
|
const _component_var_icon = vue.resolveComponent("var-icon");
|
|
@@ -1772,10 +1772,10 @@ function __render__$1l(_ctx, _cache) {
|
|
|
1772
1772
|
const __sfc__$1m = vue.defineComponent({
|
|
1773
1773
|
name: name$1e,
|
|
1774
1774
|
components: {
|
|
1775
|
-
VarHoverOverlay: stdin_default$
|
|
1776
|
-
VarIcon: stdin_default$
|
|
1775
|
+
VarHoverOverlay: stdin_default$5P,
|
|
1776
|
+
VarIcon: stdin_default$5R
|
|
1777
1777
|
},
|
|
1778
|
-
directives: { Ripple: stdin_default$
|
|
1778
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
1779
1779
|
props: {
|
|
1780
1780
|
name: String,
|
|
1781
1781
|
className: String,
|
|
@@ -1796,7 +1796,7 @@ const __sfc__$1m = vue.defineComponent({
|
|
|
1796
1796
|
}
|
|
1797
1797
|
});
|
|
1798
1798
|
__sfc__$1m.render = __render__$1l;
|
|
1799
|
-
var stdin_default$
|
|
1799
|
+
var stdin_default$5N = __sfc__$1m;
|
|
1800
1800
|
var __defProp$s = Object.defineProperty;
|
|
1801
1801
|
var __getOwnPropSymbols$s = Object.getOwnPropertySymbols;
|
|
1802
1802
|
var __hasOwnProp$s = Object.prototype.hasOwnProperty;
|
|
@@ -1844,7 +1844,7 @@ const props$1d = __spreadValues$s({
|
|
|
1844
1844
|
"onRouteChange",
|
|
1845
1845
|
"onKeyEscape"
|
|
1846
1846
|
]));
|
|
1847
|
-
var stdin_default$
|
|
1847
|
+
var stdin_default$5M = {
|
|
1848
1848
|
// Dialog
|
|
1849
1849
|
dialogTitle: "提示",
|
|
1850
1850
|
dialogConfirmButtonText: "确认",
|
|
@@ -1949,7 +1949,7 @@ var stdin_default$5L = {
|
|
|
1949
1949
|
// time-picker
|
|
1950
1950
|
timePickerHint: "选择时间"
|
|
1951
1951
|
};
|
|
1952
|
-
var stdin_default$
|
|
1952
|
+
var stdin_default$5L = {
|
|
1953
1953
|
// Dialog
|
|
1954
1954
|
dialogTitle: "Hint",
|
|
1955
1955
|
dialogConfirmButtonText: "Confirm",
|
|
@@ -2054,7 +2054,7 @@ var stdin_default$5K = {
|
|
|
2054
2054
|
// time-picker
|
|
2055
2055
|
timePickerHint: "SELECT TIME"
|
|
2056
2056
|
};
|
|
2057
|
-
var stdin_default$
|
|
2057
|
+
var stdin_default$5K = {
|
|
2058
2058
|
// Dialog
|
|
2059
2059
|
dialogTitle: "提示",
|
|
2060
2060
|
dialogConfirmButtonText: "確認",
|
|
@@ -2156,8 +2156,8 @@ var stdin_default$5J = {
|
|
|
2156
2156
|
paginationPage: "頁",
|
|
2157
2157
|
paginationJump: "前往"
|
|
2158
2158
|
};
|
|
2159
|
-
var stdin_default$
|
|
2160
|
-
var stdin_default$
|
|
2159
|
+
var stdin_default$5J = stdin_default$5K;
|
|
2160
|
+
var stdin_default$5I = {
|
|
2161
2161
|
// Dialog
|
|
2162
2162
|
dialogTitle: "اشاره",
|
|
2163
2163
|
dialogConfirmButtonText: "تایید",
|
|
@@ -2315,15 +2315,15 @@ function useLocale() {
|
|
|
2315
2315
|
};
|
|
2316
2316
|
}
|
|
2317
2317
|
const { messages, currentMessage, add: add$2, use, merge, t } = useLocale();
|
|
2318
|
-
add$2("zh-CN", stdin_default$
|
|
2318
|
+
add$2("zh-CN", stdin_default$5M);
|
|
2319
2319
|
use("zh-CN");
|
|
2320
|
-
const _LocaleComponent = { zhCN: stdin_default$
|
|
2321
|
-
var stdin_default$
|
|
2322
|
-
zhCN: stdin_default$
|
|
2323
|
-
enUS: stdin_default$
|
|
2324
|
-
zhTW: stdin_default$
|
|
2325
|
-
zhHK: stdin_default$
|
|
2326
|
-
faIR: stdin_default$
|
|
2320
|
+
const _LocaleComponent = { zhCN: stdin_default$5M, enUS: stdin_default$5L, messages, currentMessage, add: add$2, use, merge, t, useLocale };
|
|
2321
|
+
var stdin_default$5H = {
|
|
2322
|
+
zhCN: stdin_default$5M,
|
|
2323
|
+
enUS: stdin_default$5L,
|
|
2324
|
+
zhTW: stdin_default$5K,
|
|
2325
|
+
zhHK: stdin_default$5J,
|
|
2326
|
+
faIR: stdin_default$5I,
|
|
2327
2327
|
messages,
|
|
2328
2328
|
currentMessage,
|
|
2329
2329
|
add: add$2,
|
|
@@ -2408,10 +2408,10 @@ function __render__$1k(_ctx, _cache) {
|
|
|
2408
2408
|
}
|
|
2409
2409
|
const __sfc__$1l = vue.defineComponent({
|
|
2410
2410
|
name: name$1d,
|
|
2411
|
-
directives: { Ripple: stdin_default$
|
|
2411
|
+
directives: { Ripple: stdin_default$5V },
|
|
2412
2412
|
components: {
|
|
2413
|
-
VarPopup: stdin_default$
|
|
2414
|
-
VarActionItem: stdin_default$
|
|
2413
|
+
VarPopup: stdin_default$5T,
|
|
2414
|
+
VarActionItem: stdin_default$5N
|
|
2415
2415
|
},
|
|
2416
2416
|
inheritAttrs: false,
|
|
2417
2417
|
props: props$1d,
|
|
@@ -2437,7 +2437,7 @@ const __sfc__$1l = vue.defineComponent({
|
|
|
2437
2437
|
}
|
|
2438
2438
|
});
|
|
2439
2439
|
__sfc__$1l.render = __render__$1k;
|
|
2440
|
-
var stdin_default$
|
|
2440
|
+
var stdin_default$5G = __sfc__$1l;
|
|
2441
2441
|
var __defProp$q = Object.defineProperty;
|
|
2442
2442
|
var __getOwnPropSymbols$q = Object.getOwnPropertySymbols;
|
|
2443
2443
|
var __hasOwnProp$q = Object.prototype.hasOwnProperty;
|
|
@@ -2468,7 +2468,7 @@ function ActionSheet(options) {
|
|
|
2468
2468
|
const reactiveActionSheetOptions = vue.reactive(normalizeOptions$3(options));
|
|
2469
2469
|
reactiveActionSheetOptions.teleport = "body";
|
|
2470
2470
|
singletonOptions$3 = reactiveActionSheetOptions;
|
|
2471
|
-
const { unmountInstance } = mountInstance(stdin_default$
|
|
2471
|
+
const { unmountInstance } = mountInstance(stdin_default$5G, reactiveActionSheetOptions, {
|
|
2472
2472
|
onSelect: (action) => {
|
|
2473
2473
|
call(reactiveActionSheetOptions.onSelect, action);
|
|
2474
2474
|
resolve(action);
|
|
@@ -2508,12 +2508,12 @@ ActionSheet.close = function() {
|
|
|
2508
2508
|
});
|
|
2509
2509
|
}
|
|
2510
2510
|
};
|
|
2511
|
-
ActionSheet.Component = stdin_default$
|
|
2512
|
-
withInstall(stdin_default$
|
|
2513
|
-
withInstall(stdin_default$
|
|
2511
|
+
ActionSheet.Component = stdin_default$5G;
|
|
2512
|
+
withInstall(stdin_default$5G);
|
|
2513
|
+
withInstall(stdin_default$5G, ActionSheet);
|
|
2514
2514
|
withPropsDefaultsSetter(ActionSheet, props$1d);
|
|
2515
|
-
const _ActionSheetComponent = stdin_default$
|
|
2516
|
-
var stdin_default$
|
|
2515
|
+
const _ActionSheetComponent = stdin_default$5G;
|
|
2516
|
+
var stdin_default$5F = ActionSheet;
|
|
2517
2517
|
const props$1c = {
|
|
2518
2518
|
color: String,
|
|
2519
2519
|
textColor: String,
|
|
@@ -2688,11 +2688,11 @@ const __sfc__$1k = vue.defineComponent({
|
|
|
2688
2688
|
}
|
|
2689
2689
|
});
|
|
2690
2690
|
__sfc__$1k.render = __render__$1j;
|
|
2691
|
-
var stdin_default$
|
|
2692
|
-
withInstall(stdin_default$
|
|
2693
|
-
withPropsDefaultsSetter(stdin_default$
|
|
2694
|
-
const _AppBarComponent = stdin_default$
|
|
2695
|
-
var stdin_default$
|
|
2691
|
+
var stdin_default$5E = __sfc__$1k;
|
|
2692
|
+
withInstall(stdin_default$5E);
|
|
2693
|
+
withPropsDefaultsSetter(stdin_default$5E, props$1c);
|
|
2694
|
+
const _AppBarComponent = stdin_default$5E;
|
|
2695
|
+
var stdin_default$5D = stdin_default$5E;
|
|
2696
2696
|
const isHTMLSupportImage = (val) => {
|
|
2697
2697
|
if (!isString(val)) {
|
|
2698
2698
|
return false;
|
|
@@ -2943,7 +2943,7 @@ const Lazy = {
|
|
|
2943
2943
|
}
|
|
2944
2944
|
};
|
|
2945
2945
|
const _LazyComponent = Lazy;
|
|
2946
|
-
var stdin_default$
|
|
2946
|
+
var stdin_default$5C = Lazy;
|
|
2947
2947
|
const props$1b = {
|
|
2948
2948
|
round: {
|
|
2949
2949
|
type: Boolean,
|
|
@@ -3049,7 +3049,7 @@ function __render__$1i(_ctx, _cache) {
|
|
|
3049
3049
|
}
|
|
3050
3050
|
const __sfc__$1j = vue.defineComponent({
|
|
3051
3051
|
name: name$1b,
|
|
3052
|
-
directives: { Lazy: stdin_default$
|
|
3052
|
+
directives: { Lazy: stdin_default$5C },
|
|
3053
3053
|
props: props$1b,
|
|
3054
3054
|
setup(props2) {
|
|
3055
3055
|
const avatarElement = vue.ref(null);
|
|
@@ -3101,11 +3101,11 @@ const __sfc__$1j = vue.defineComponent({
|
|
|
3101
3101
|
}
|
|
3102
3102
|
});
|
|
3103
3103
|
__sfc__$1j.render = __render__$1i;
|
|
3104
|
-
var stdin_default$
|
|
3105
|
-
withInstall(stdin_default$
|
|
3106
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3107
|
-
const _AvatarComponent = stdin_default$
|
|
3108
|
-
var stdin_default$
|
|
3104
|
+
var stdin_default$5B = __sfc__$1j;
|
|
3105
|
+
withInstall(stdin_default$5B);
|
|
3106
|
+
withPropsDefaultsSetter(stdin_default$5B, props$1b);
|
|
3107
|
+
const _AvatarComponent = stdin_default$5B;
|
|
3108
|
+
var stdin_default$5A = stdin_default$5B;
|
|
3109
3109
|
const props$1a = {
|
|
3110
3110
|
offset: [Number, String],
|
|
3111
3111
|
vertical: Boolean
|
|
@@ -3145,11 +3145,11 @@ const __sfc__$1i = vue.defineComponent({
|
|
|
3145
3145
|
}
|
|
3146
3146
|
});
|
|
3147
3147
|
__sfc__$1i.render = __render__$1h;
|
|
3148
|
-
var stdin_default$
|
|
3149
|
-
withInstall(stdin_default$
|
|
3150
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3151
|
-
const _AvatarGroupComponent = stdin_default$
|
|
3152
|
-
var stdin_default$
|
|
3148
|
+
var stdin_default$5z = __sfc__$1i;
|
|
3149
|
+
withInstall(stdin_default$5z);
|
|
3150
|
+
withPropsDefaultsSetter(stdin_default$5z, props$1a);
|
|
3151
|
+
const _AvatarGroupComponent = stdin_default$5z;
|
|
3152
|
+
var stdin_default$5y = stdin_default$5z;
|
|
3153
3153
|
const props$19 = {
|
|
3154
3154
|
type: {
|
|
3155
3155
|
type: String,
|
|
@@ -3344,11 +3344,11 @@ const __sfc__$1h = vue.defineComponent({
|
|
|
3344
3344
|
}
|
|
3345
3345
|
});
|
|
3346
3346
|
__sfc__$1h.render = __render__$1g;
|
|
3347
|
-
var stdin_default$
|
|
3348
|
-
withInstall(stdin_default$
|
|
3349
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3350
|
-
const _LoadingComponent = stdin_default$
|
|
3351
|
-
var stdin_default$
|
|
3347
|
+
var stdin_default$5x = __sfc__$1h;
|
|
3348
|
+
withInstall(stdin_default$5x);
|
|
3349
|
+
withPropsDefaultsSetter(stdin_default$5x, props$19);
|
|
3350
|
+
const _LoadingComponent = stdin_default$5x;
|
|
3351
|
+
var stdin_default$5w = stdin_default$5x;
|
|
3352
3352
|
var __defProp$o = Object.defineProperty;
|
|
3353
3353
|
var __defProps$7 = Object.defineProperties;
|
|
3354
3354
|
var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
|
|
@@ -3489,10 +3489,10 @@ function __render__$1f(_ctx, _cache) {
|
|
|
3489
3489
|
const __sfc__$1g = vue.defineComponent({
|
|
3490
3490
|
name: name$18,
|
|
3491
3491
|
components: {
|
|
3492
|
-
VarLoading: stdin_default$
|
|
3493
|
-
VarHoverOverlay: stdin_default$
|
|
3492
|
+
VarLoading: stdin_default$5w,
|
|
3493
|
+
VarHoverOverlay: stdin_default$5P
|
|
3494
3494
|
},
|
|
3495
|
-
directives: { Ripple: stdin_default$
|
|
3495
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
3496
3496
|
props: props$18,
|
|
3497
3497
|
setup(props2) {
|
|
3498
3498
|
const isFocusing = vue.ref(false);
|
|
@@ -3563,11 +3563,11 @@ const __sfc__$1g = vue.defineComponent({
|
|
|
3563
3563
|
}
|
|
3564
3564
|
});
|
|
3565
3565
|
__sfc__$1g.render = __render__$1f;
|
|
3566
|
-
var stdin_default$
|
|
3567
|
-
withInstall(stdin_default$
|
|
3568
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3569
|
-
const _ButtonComponent = stdin_default$
|
|
3570
|
-
var stdin_default$
|
|
3566
|
+
var stdin_default$5v = __sfc__$1g;
|
|
3567
|
+
withInstall(stdin_default$5v);
|
|
3568
|
+
withPropsDefaultsSetter(stdin_default$5v, props$18);
|
|
3569
|
+
const _ButtonComponent = stdin_default$5v;
|
|
3570
|
+
var stdin_default$5u = stdin_default$5v;
|
|
3571
3571
|
const props$17 = {
|
|
3572
3572
|
visibilityHeight: {
|
|
3573
3573
|
type: [Number, String],
|
|
@@ -3629,8 +3629,8 @@ function __render__$1e(_ctx, _cache) {
|
|
|
3629
3629
|
const __sfc__$1f = vue.defineComponent({
|
|
3630
3630
|
name: name$17,
|
|
3631
3631
|
components: {
|
|
3632
|
-
VarButton: stdin_default$
|
|
3633
|
-
VarIcon: stdin_default$
|
|
3632
|
+
VarButton: stdin_default$5u,
|
|
3633
|
+
VarIcon: stdin_default$5R
|
|
3634
3634
|
},
|
|
3635
3635
|
inheritAttrs: false,
|
|
3636
3636
|
props: props$17,
|
|
@@ -3686,11 +3686,11 @@ const __sfc__$1f = vue.defineComponent({
|
|
|
3686
3686
|
}
|
|
3687
3687
|
});
|
|
3688
3688
|
__sfc__$1f.render = __render__$1e;
|
|
3689
|
-
var stdin_default$
|
|
3690
|
-
withInstall(stdin_default$
|
|
3691
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3692
|
-
const _BackTopComponent = stdin_default$
|
|
3693
|
-
var stdin_default$
|
|
3689
|
+
var stdin_default$5t = __sfc__$1f;
|
|
3690
|
+
withInstall(stdin_default$5t);
|
|
3691
|
+
withPropsDefaultsSetter(stdin_default$5t, props$17);
|
|
3692
|
+
const _BackTopComponent = stdin_default$5t;
|
|
3693
|
+
var stdin_default$5s = stdin_default$5t;
|
|
3694
3694
|
const props$16 = {
|
|
3695
3695
|
type: {
|
|
3696
3696
|
type: String,
|
|
@@ -3797,7 +3797,7 @@ function __render__$1d(_ctx, _cache) {
|
|
|
3797
3797
|
}
|
|
3798
3798
|
const __sfc__$1e = vue.defineComponent({
|
|
3799
3799
|
name: name$16,
|
|
3800
|
-
components: { VarIcon: stdin_default$
|
|
3800
|
+
components: { VarIcon: stdin_default$5R },
|
|
3801
3801
|
inheritAttrs: false,
|
|
3802
3802
|
props: props$16,
|
|
3803
3803
|
setup(props2) {
|
|
@@ -3818,11 +3818,11 @@ const __sfc__$1e = vue.defineComponent({
|
|
|
3818
3818
|
}
|
|
3819
3819
|
});
|
|
3820
3820
|
__sfc__$1e.render = __render__$1d;
|
|
3821
|
-
var stdin_default$
|
|
3822
|
-
withInstall(stdin_default$
|
|
3823
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3824
|
-
const _BadgeComponent = stdin_default$
|
|
3825
|
-
var stdin_default$
|
|
3821
|
+
var stdin_default$5r = __sfc__$1e;
|
|
3822
|
+
withInstall(stdin_default$5r);
|
|
3823
|
+
withPropsDefaultsSetter(stdin_default$5r, props$16);
|
|
3824
|
+
const _BadgeComponent = stdin_default$5r;
|
|
3825
|
+
var stdin_default$5q = stdin_default$5r;
|
|
3826
3826
|
const props$15 = {
|
|
3827
3827
|
active: {
|
|
3828
3828
|
type: [Number, String],
|
|
@@ -3838,6 +3838,7 @@ const props$15 = {
|
|
|
3838
3838
|
safeArea: Boolean,
|
|
3839
3839
|
activeColor: String,
|
|
3840
3840
|
inactiveColor: String,
|
|
3841
|
+
placeholder: Boolean,
|
|
3841
3842
|
fabProps: Object,
|
|
3842
3843
|
onChange: defineListenerProp(),
|
|
3843
3844
|
onBeforeChange: defineListenerProp(),
|
|
@@ -3884,43 +3885,60 @@ const defaultFabProps = {
|
|
|
3884
3885
|
function __render__$1c(_ctx, _cache) {
|
|
3885
3886
|
const _component_var_button = vue.resolveComponent("var-button");
|
|
3886
3887
|
return vue.openBlock(), vue.createElementBlock(
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
class: vue.normalizeClass(
|
|
3890
|
-
_ctx.classes(
|
|
3891
|
-
_ctx.n(),
|
|
3892
|
-
_ctx.n("$--box"),
|
|
3893
|
-
[_ctx.fixed, _ctx.n("--fixed")],
|
|
3894
|
-
[_ctx.border, _ctx.n("--border")],
|
|
3895
|
-
[_ctx.safeArea, _ctx.n("--safe-area")],
|
|
3896
|
-
[_ctx.variant, _ctx.n("--variant")]
|
|
3897
|
-
)
|
|
3898
|
-
),
|
|
3899
|
-
ref: "bottomNavigationDom",
|
|
3900
|
-
style: vue.normalizeStyle(`z-index:${_ctx.zIndex}`)
|
|
3901
|
-
},
|
|
3888
|
+
vue.Fragment,
|
|
3889
|
+
null,
|
|
3902
3890
|
[
|
|
3903
|
-
vue.
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3891
|
+
vue.createElementVNode(
|
|
3892
|
+
"div",
|
|
3893
|
+
vue.mergeProps({
|
|
3894
|
+
class: _ctx.classes(
|
|
3895
|
+
_ctx.n(),
|
|
3896
|
+
_ctx.n("$--box"),
|
|
3897
|
+
[_ctx.fixed, _ctx.n("--fixed")],
|
|
3898
|
+
[_ctx.border, _ctx.n("--border")],
|
|
3899
|
+
[_ctx.safeArea, _ctx.n("--safe-area")],
|
|
3900
|
+
[_ctx.variant, _ctx.n("--variant")]
|
|
3901
|
+
),
|
|
3902
|
+
ref: "bottomNavigationDom",
|
|
3903
|
+
style: `z-index:${_ctx.zIndex}`
|
|
3904
|
+
}, _ctx.$attrs),
|
|
3905
|
+
[
|
|
3906
|
+
vue.renderSlot(_ctx.$slots, "default"),
|
|
3907
|
+
_ctx.$slots.fab ? (vue.openBlock(), vue.createBlock(_component_var_button, vue.mergeProps({
|
|
3908
|
+
key: 0,
|
|
3909
|
+
class: _ctx.classes(_ctx.n("fab"), [_ctx.length % 2, _ctx.n("--fab-right"), _ctx.n("--fab-center")]),
|
|
3910
|
+
"var-bottom-navigation__fab": "",
|
|
3911
|
+
onClick: _ctx.handleFabClick
|
|
3912
|
+
}, _ctx.fabProps), {
|
|
3913
|
+
default: vue.withCtx(() => [
|
|
3914
|
+
vue.renderSlot(_ctx.$slots, "fab")
|
|
3915
|
+
]),
|
|
3916
|
+
_: 3
|
|
3917
|
+
/* FORWARDED */
|
|
3918
|
+
}, 16, ["class", "onClick"])) : vue.createCommentVNode("v-if", true)
|
|
3919
|
+
],
|
|
3920
|
+
16
|
|
3921
|
+
/* FULL_PROPS */
|
|
3922
|
+
),
|
|
3923
|
+
_ctx.fixed && _ctx.placeholder ? (vue.openBlock(), vue.createElementBlock(
|
|
3924
|
+
"div",
|
|
3925
|
+
{
|
|
3926
|
+
key: 0,
|
|
3927
|
+
class: vue.normalizeClass(_ctx.n("placeholder")),
|
|
3928
|
+
style: vue.normalizeStyle({ height: _ctx.placeholderHeight })
|
|
3929
|
+
},
|
|
3930
|
+
null,
|
|
3931
|
+
6
|
|
3932
|
+
/* CLASS, STYLE */
|
|
3933
|
+
)) : vue.createCommentVNode("v-if", true)
|
|
3916
3934
|
],
|
|
3917
|
-
|
|
3918
|
-
/*
|
|
3935
|
+
64
|
|
3936
|
+
/* STABLE_FRAGMENT */
|
|
3919
3937
|
);
|
|
3920
3938
|
}
|
|
3921
3939
|
const __sfc__$1d = vue.defineComponent({
|
|
3922
3940
|
name: name$15,
|
|
3923
|
-
components: { VarButton: stdin_default$
|
|
3941
|
+
components: { VarButton: stdin_default$5u },
|
|
3924
3942
|
props: props$15,
|
|
3925
3943
|
setup(props2, { slots }) {
|
|
3926
3944
|
const bottomNavigationDom = vue.ref(null);
|
|
@@ -3928,6 +3946,7 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
3928
3946
|
const activeColor = vue.computed(() => props2.activeColor);
|
|
3929
3947
|
const inactiveColor = vue.computed(() => props2.inactiveColor);
|
|
3930
3948
|
const variant = vue.computed(() => props2.variant);
|
|
3949
|
+
const placeholderHeight = vue.ref();
|
|
3931
3950
|
const fabProps = vue.ref({});
|
|
3932
3951
|
const { length, bottomNavigationItems, bindBottomNavigationItem } = useBottomNavigationItems();
|
|
3933
3952
|
const bottomNavigationProvider = {
|
|
@@ -3947,6 +3966,7 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
3947
3966
|
{ immediate: true, deep: true }
|
|
3948
3967
|
);
|
|
3949
3968
|
onSmartMounted(() => {
|
|
3969
|
+
resizePlaceholder();
|
|
3950
3970
|
if (!slots.fab) {
|
|
3951
3971
|
return;
|
|
3952
3972
|
}
|
|
@@ -4033,10 +4053,18 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
4033
4053
|
function handleFabClick() {
|
|
4034
4054
|
call(props2.onFabClick);
|
|
4035
4055
|
}
|
|
4056
|
+
function resizePlaceholder() {
|
|
4057
|
+
if (!props2.fixed || !props2.placeholder) {
|
|
4058
|
+
return;
|
|
4059
|
+
}
|
|
4060
|
+
const { height } = getRect(bottomNavigationDom.value);
|
|
4061
|
+
placeholderHeight.value = `${height}px`;
|
|
4062
|
+
}
|
|
4036
4063
|
return {
|
|
4037
4064
|
length,
|
|
4038
4065
|
bottomNavigationDom,
|
|
4039
4066
|
fabProps,
|
|
4067
|
+
placeholderHeight,
|
|
4040
4068
|
n: n$1c,
|
|
4041
4069
|
classes: classes$_,
|
|
4042
4070
|
handleFabClick
|
|
@@ -4044,11 +4072,11 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
4044
4072
|
}
|
|
4045
4073
|
});
|
|
4046
4074
|
__sfc__$1d.render = __render__$1c;
|
|
4047
|
-
var stdin_default$
|
|
4048
|
-
withInstall(stdin_default$
|
|
4049
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4050
|
-
const _BottomNavigationComponent = stdin_default$
|
|
4051
|
-
var stdin_default$
|
|
4075
|
+
var stdin_default$5p = __sfc__$1d;
|
|
4076
|
+
withInstall(stdin_default$5p);
|
|
4077
|
+
withPropsDefaultsSetter(stdin_default$5p, props$15);
|
|
4078
|
+
const _BottomNavigationComponent = stdin_default$5p;
|
|
4079
|
+
var stdin_default$5o = stdin_default$5p;
|
|
4052
4080
|
const props$14 = {
|
|
4053
4081
|
name: String,
|
|
4054
4082
|
label: String,
|
|
@@ -4164,10 +4192,10 @@ function __render__$1b(_ctx, _cache) {
|
|
|
4164
4192
|
const __sfc__$1c = vue.defineComponent({
|
|
4165
4193
|
name: name$14,
|
|
4166
4194
|
components: {
|
|
4167
|
-
VarBadge: stdin_default$
|
|
4168
|
-
VarIcon: stdin_default$
|
|
4195
|
+
VarBadge: stdin_default$5q,
|
|
4196
|
+
VarIcon: stdin_default$5R
|
|
4169
4197
|
},
|
|
4170
|
-
directives: { Ripple: stdin_default$
|
|
4198
|
+
directives: { Ripple: stdin_default$5V },
|
|
4171
4199
|
props: props$14,
|
|
4172
4200
|
setup(props2) {
|
|
4173
4201
|
const name2 = vue.computed(() => props2.name);
|
|
@@ -4199,11 +4227,11 @@ const __sfc__$1c = vue.defineComponent({
|
|
|
4199
4227
|
}
|
|
4200
4228
|
});
|
|
4201
4229
|
__sfc__$1c.render = __render__$1b;
|
|
4202
|
-
var stdin_default$
|
|
4203
|
-
withInstall(stdin_default$
|
|
4204
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4205
|
-
const _BottomNavigationItemComponent = stdin_default$
|
|
4206
|
-
var stdin_default$
|
|
4230
|
+
var stdin_default$5n = __sfc__$1c;
|
|
4231
|
+
withInstall(stdin_default$5n);
|
|
4232
|
+
withPropsDefaultsSetter(stdin_default$5n, props$14);
|
|
4233
|
+
const _BottomNavigationItemComponent = stdin_default$5n;
|
|
4234
|
+
var stdin_default$5m = stdin_default$5n;
|
|
4207
4235
|
const props$13 = {
|
|
4208
4236
|
separator: String,
|
|
4209
4237
|
onClick: defineListenerProp()
|
|
@@ -4296,11 +4324,11 @@ const __sfc__$1b = vue.defineComponent({
|
|
|
4296
4324
|
}
|
|
4297
4325
|
});
|
|
4298
4326
|
__sfc__$1b.render = __render__$1a;
|
|
4299
|
-
var stdin_default$
|
|
4300
|
-
withInstall(stdin_default$
|
|
4301
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4302
|
-
const _BreadcrumbComponent = stdin_default$
|
|
4303
|
-
var stdin_default$
|
|
4327
|
+
var stdin_default$5l = __sfc__$1b;
|
|
4328
|
+
withInstall(stdin_default$5l);
|
|
4329
|
+
withPropsDefaultsSetter(stdin_default$5l, props$13);
|
|
4330
|
+
const _BreadcrumbComponent = stdin_default$5l;
|
|
4331
|
+
var stdin_default$5k = stdin_default$5l;
|
|
4304
4332
|
const props$12 = {
|
|
4305
4333
|
separator: {
|
|
4306
4334
|
type: String,
|
|
@@ -4338,11 +4366,11 @@ const __sfc__$1a = vue.defineComponent({
|
|
|
4338
4366
|
}
|
|
4339
4367
|
});
|
|
4340
4368
|
__sfc__$1a.render = __render__$19;
|
|
4341
|
-
var stdin_default$
|
|
4342
|
-
withInstall(stdin_default$
|
|
4343
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4344
|
-
const _BreadcrumbsComponent = stdin_default$
|
|
4345
|
-
var stdin_default$
|
|
4369
|
+
var stdin_default$5j = __sfc__$1a;
|
|
4370
|
+
withInstall(stdin_default$5j);
|
|
4371
|
+
withPropsDefaultsSetter(stdin_default$5j, props$12);
|
|
4372
|
+
const _BreadcrumbsComponent = stdin_default$5j;
|
|
4373
|
+
var stdin_default$5i = stdin_default$5j;
|
|
4346
4374
|
const props$11 = {
|
|
4347
4375
|
type: {
|
|
4348
4376
|
type: String,
|
|
@@ -4408,11 +4436,11 @@ const __sfc__$19 = vue.defineComponent({
|
|
|
4408
4436
|
}
|
|
4409
4437
|
});
|
|
4410
4438
|
__sfc__$19.render = __render__$18;
|
|
4411
|
-
var stdin_default$
|
|
4412
|
-
withInstall(stdin_default$
|
|
4413
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4414
|
-
const _ButtonGroupComponent = stdin_default$
|
|
4415
|
-
var stdin_default$
|
|
4439
|
+
var stdin_default$5h = __sfc__$19;
|
|
4440
|
+
withInstall(stdin_default$5h);
|
|
4441
|
+
withPropsDefaultsSetter(stdin_default$5h, props$11);
|
|
4442
|
+
const _ButtonGroupComponent = stdin_default$5h;
|
|
4443
|
+
var stdin_default$5g = stdin_default$5h;
|
|
4416
4444
|
const props$10 = {
|
|
4417
4445
|
src: String,
|
|
4418
4446
|
fit: {
|
|
@@ -4646,10 +4674,10 @@ function __render__$17(_ctx, _cache) {
|
|
|
4646
4674
|
}
|
|
4647
4675
|
const __sfc__$18 = vue.defineComponent({
|
|
4648
4676
|
name: name$10,
|
|
4649
|
-
directives: { Ripple: stdin_default$
|
|
4677
|
+
directives: { Ripple: stdin_default$5V },
|
|
4650
4678
|
components: {
|
|
4651
|
-
VarIcon: stdin_default$
|
|
4652
|
-
VarButton: stdin_default$
|
|
4679
|
+
VarIcon: stdin_default$5R,
|
|
4680
|
+
VarButton: stdin_default$5u
|
|
4653
4681
|
},
|
|
4654
4682
|
props: props$10,
|
|
4655
4683
|
setup(props2) {
|
|
@@ -4779,11 +4807,11 @@ const __sfc__$18 = vue.defineComponent({
|
|
|
4779
4807
|
}
|
|
4780
4808
|
});
|
|
4781
4809
|
__sfc__$18.render = __render__$17;
|
|
4782
|
-
var stdin_default$
|
|
4783
|
-
withInstall(stdin_default$
|
|
4784
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4785
|
-
const _CardComponent = stdin_default$
|
|
4786
|
-
var stdin_default$
|
|
4810
|
+
var stdin_default$5f = __sfc__$18;
|
|
4811
|
+
withInstall(stdin_default$5f);
|
|
4812
|
+
withPropsDefaultsSetter(stdin_default$5f, props$10);
|
|
4813
|
+
const _CardComponent = stdin_default$5f;
|
|
4814
|
+
var stdin_default$5e = stdin_default$5f;
|
|
4787
4815
|
const props$$ = {
|
|
4788
4816
|
title: String,
|
|
4789
4817
|
icon: pickProps(props$1f, "name"),
|
|
@@ -4882,8 +4910,8 @@ function __render__$16(_ctx, _cache) {
|
|
|
4882
4910
|
}
|
|
4883
4911
|
const __sfc__$17 = vue.defineComponent({
|
|
4884
4912
|
name: name$$,
|
|
4885
|
-
components: { VarIcon: stdin_default$
|
|
4886
|
-
directives: { Ripple: stdin_default$
|
|
4913
|
+
components: { VarIcon: stdin_default$5R },
|
|
4914
|
+
directives: { Ripple: stdin_default$5V },
|
|
4887
4915
|
props: props$$,
|
|
4888
4916
|
setup(props2) {
|
|
4889
4917
|
const borderOffsetStyles = vue.computed(() => {
|
|
@@ -4908,11 +4936,11 @@ const __sfc__$17 = vue.defineComponent({
|
|
|
4908
4936
|
}
|
|
4909
4937
|
});
|
|
4910
4938
|
__sfc__$17.render = __render__$16;
|
|
4911
|
-
var stdin_default$
|
|
4912
|
-
withInstall(stdin_default$
|
|
4913
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4914
|
-
const _CellComponent = stdin_default$
|
|
4915
|
-
var stdin_default$
|
|
4939
|
+
var stdin_default$5d = __sfc__$17;
|
|
4940
|
+
withInstall(stdin_default$5d);
|
|
4941
|
+
withPropsDefaultsSetter(stdin_default$5d, props$$);
|
|
4942
|
+
const _CellComponent = stdin_default$5d;
|
|
4943
|
+
var stdin_default$5c = stdin_default$5d;
|
|
4916
4944
|
const props$_ = {
|
|
4917
4945
|
errorMessage: {
|
|
4918
4946
|
type: String,
|
|
@@ -5005,11 +5033,11 @@ const __sfc__$16 = vue.defineComponent({
|
|
|
5005
5033
|
setup: () => ({ n: n$15 })
|
|
5006
5034
|
});
|
|
5007
5035
|
__sfc__$16.render = __render__$15;
|
|
5008
|
-
var stdin_default$
|
|
5009
|
-
withInstall(stdin_default$
|
|
5010
|
-
withPropsDefaultsSetter(stdin_default$
|
|
5011
|
-
const _FormDetailsComponent = stdin_default$
|
|
5012
|
-
var stdin_default$
|
|
5036
|
+
var stdin_default$5b = __sfc__$16;
|
|
5037
|
+
withInstall(stdin_default$5b);
|
|
5038
|
+
withPropsDefaultsSetter(stdin_default$5b, props$_);
|
|
5039
|
+
const _FormDetailsComponent = stdin_default$5b;
|
|
5040
|
+
var stdin_default$5a = stdin_default$5b;
|
|
5013
5041
|
const props$Z = {
|
|
5014
5042
|
modelValue: {
|
|
5015
5043
|
type: [String, Number, Boolean, Object, Array],
|
|
@@ -5203,11 +5231,11 @@ function __render__$14(_ctx, _cache) {
|
|
|
5203
5231
|
}
|
|
5204
5232
|
const __sfc__$15 = vue.defineComponent({
|
|
5205
5233
|
name: name$Z,
|
|
5206
|
-
directives: { Ripple: stdin_default$
|
|
5234
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
5207
5235
|
components: {
|
|
5208
|
-
VarIcon: stdin_default$
|
|
5209
|
-
VarFormDetails: stdin_default$
|
|
5210
|
-
VarHoverOverlay: stdin_default$
|
|
5236
|
+
VarIcon: stdin_default$5R,
|
|
5237
|
+
VarFormDetails: stdin_default$5a,
|
|
5238
|
+
VarHoverOverlay: stdin_default$5P
|
|
5211
5239
|
},
|
|
5212
5240
|
props: props$Z,
|
|
5213
5241
|
setup(props2) {
|
|
@@ -5341,17 +5369,38 @@ const __sfc__$15 = vue.defineComponent({
|
|
|
5341
5369
|
}
|
|
5342
5370
|
});
|
|
5343
5371
|
__sfc__$15.render = __render__$14;
|
|
5344
|
-
var stdin_default$
|
|
5345
|
-
withInstall(stdin_default$
|
|
5346
|
-
withPropsDefaultsSetter(stdin_default$
|
|
5347
|
-
const _CheckboxComponent = stdin_default$
|
|
5348
|
-
var stdin_default$
|
|
5372
|
+
var stdin_default$59 = __sfc__$15;
|
|
5373
|
+
withInstall(stdin_default$59);
|
|
5374
|
+
withPropsDefaultsSetter(stdin_default$59, props$Z);
|
|
5375
|
+
const _CheckboxComponent = stdin_default$59;
|
|
5376
|
+
var stdin_default$58 = stdin_default$59;
|
|
5377
|
+
var stdin_default$57 = vue.defineComponent({
|
|
5378
|
+
name: "CheckboxGroupOption",
|
|
5379
|
+
props: {
|
|
5380
|
+
checked: Boolean,
|
|
5381
|
+
option: Object
|
|
5382
|
+
},
|
|
5383
|
+
setup(props2) {
|
|
5384
|
+
return () => {
|
|
5385
|
+
if (props2.option == null) {
|
|
5386
|
+
return;
|
|
5387
|
+
}
|
|
5388
|
+
return vue.createVNode(stdin_default$58, {
|
|
5389
|
+
"checkedValue": props2.option.value,
|
|
5390
|
+
"disabled": props2.option.disabled
|
|
5391
|
+
}, {
|
|
5392
|
+
default: () => [isFunction(props2.option.label) ? props2.option.label(props2.option, props2.checked) : props2.option.label]
|
|
5393
|
+
});
|
|
5394
|
+
};
|
|
5395
|
+
}
|
|
5396
|
+
});
|
|
5349
5397
|
const props$Y = {
|
|
5350
5398
|
modelValue: {
|
|
5351
5399
|
type: Array,
|
|
5352
5400
|
default: () => []
|
|
5353
5401
|
},
|
|
5354
5402
|
max: [String, Number],
|
|
5403
|
+
options: Array,
|
|
5355
5404
|
direction: {
|
|
5356
5405
|
type: String,
|
|
5357
5406
|
default: "horizontal"
|
|
@@ -5366,6 +5415,7 @@ const props$Y = {
|
|
|
5366
5415
|
};
|
|
5367
5416
|
const { name: name$Y, n: n$13, classes: classes$T } = createNamespace("checkbox-group");
|
|
5368
5417
|
function __render__$13(_ctx, _cache) {
|
|
5418
|
+
const _component_checkbox_group_option = vue.resolveComponent("checkbox-group-option");
|
|
5369
5419
|
const _component_var_form_details = vue.resolveComponent("var-form-details");
|
|
5370
5420
|
return vue.openBlock(), vue.createElementBlock(
|
|
5371
5421
|
"div",
|
|
@@ -5379,6 +5429,19 @@ function __render__$13(_ctx, _cache) {
|
|
|
5379
5429
|
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n(`--${_ctx.direction}`)))
|
|
5380
5430
|
},
|
|
5381
5431
|
[
|
|
5432
|
+
_ctx.checkboxGroupOptions.length ? (vue.openBlock(true), vue.createElementBlock(
|
|
5433
|
+
vue.Fragment,
|
|
5434
|
+
{ key: 0 },
|
|
5435
|
+
vue.renderList(_ctx.checkboxGroupOptions, (option) => {
|
|
5436
|
+
return vue.openBlock(), vue.createBlock(_component_checkbox_group_option, {
|
|
5437
|
+
key: option.value.toString(),
|
|
5438
|
+
checked: _ctx.modelValue.includes(option.value),
|
|
5439
|
+
option
|
|
5440
|
+
}, null, 8, ["checked", "option"]);
|
|
5441
|
+
}),
|
|
5442
|
+
128
|
|
5443
|
+
/* KEYED_FRAGMENT */
|
|
5444
|
+
)) : vue.createCommentVNode("v-if", true),
|
|
5382
5445
|
vue.renderSlot(_ctx.$slots, "default")
|
|
5383
5446
|
],
|
|
5384
5447
|
2
|
|
@@ -5392,11 +5455,12 @@ function __render__$13(_ctx, _cache) {
|
|
|
5392
5455
|
}
|
|
5393
5456
|
const __sfc__$14 = vue.defineComponent({
|
|
5394
5457
|
name: name$Y,
|
|
5395
|
-
components: { VarFormDetails: stdin_default$
|
|
5458
|
+
components: { VarFormDetails: stdin_default$5a, CheckboxGroupOption: stdin_default$57 },
|
|
5396
5459
|
props: props$Y,
|
|
5397
5460
|
setup(props2) {
|
|
5398
5461
|
const max2 = vue.computed(() => props2.max);
|
|
5399
5462
|
const checkedCount = vue.computed(() => props2.modelValue.length);
|
|
5463
|
+
const checkboxGroupOptions = vue.computed(() => isArray(props2.options) ? props2.options : []);
|
|
5400
5464
|
const { length, checkboxes, bindCheckboxes } = useCheckboxes();
|
|
5401
5465
|
const { bindForm } = useForm();
|
|
5402
5466
|
const {
|
|
@@ -5446,7 +5510,7 @@ const __sfc__$14 = vue.defineComponent({
|
|
|
5446
5510
|
change(modelValue.filter((value) => value !== changedValue));
|
|
5447
5511
|
}
|
|
5448
5512
|
function syncCheckboxes() {
|
|
5449
|
-
|
|
5513
|
+
checkboxes.forEach(({ sync }) => sync(props2.modelValue));
|
|
5450
5514
|
}
|
|
5451
5515
|
function resetWithAnimation() {
|
|
5452
5516
|
checkboxes.forEach((checkbox) => checkbox.resetWithAnimation());
|
|
@@ -5474,6 +5538,7 @@ const __sfc__$14 = vue.defineComponent({
|
|
|
5474
5538
|
}
|
|
5475
5539
|
return {
|
|
5476
5540
|
errorMessage,
|
|
5541
|
+
checkboxGroupOptions,
|
|
5477
5542
|
n: n$13,
|
|
5478
5543
|
classes: classes$T,
|
|
5479
5544
|
checkAll: checkAll2,
|
|
@@ -5567,7 +5632,7 @@ function __render__$12(_ctx, _cache) {
|
|
|
5567
5632
|
const __sfc__$13 = vue.defineComponent({
|
|
5568
5633
|
name: name$X,
|
|
5569
5634
|
components: {
|
|
5570
|
-
VarIcon: stdin_default$
|
|
5635
|
+
VarIcon: stdin_default$5R
|
|
5571
5636
|
},
|
|
5572
5637
|
inheritAttrs: false,
|
|
5573
5638
|
props: props$X,
|
|
@@ -6088,7 +6153,7 @@ function __render__$$(_ctx, _cache) {
|
|
|
6088
6153
|
const __sfc__$10 = vue.defineComponent({
|
|
6089
6154
|
name: name$U,
|
|
6090
6155
|
components: {
|
|
6091
|
-
VarIcon: stdin_default$
|
|
6156
|
+
VarIcon: stdin_default$5R
|
|
6092
6157
|
},
|
|
6093
6158
|
props: props$U,
|
|
6094
6159
|
setup(props2) {
|
|
@@ -8858,11 +8923,11 @@ function __render__$Y(_ctx, _cache) {
|
|
|
8858
8923
|
const __sfc__$Z = vue.defineComponent({
|
|
8859
8924
|
name: name$R,
|
|
8860
8925
|
components: {
|
|
8861
|
-
VarButton: stdin_default$
|
|
8862
|
-
VarIcon: stdin_default$
|
|
8863
|
-
VarFormDetails: stdin_default$
|
|
8926
|
+
VarButton: stdin_default$5u,
|
|
8927
|
+
VarIcon: stdin_default$5R,
|
|
8928
|
+
VarFormDetails: stdin_default$5a
|
|
8864
8929
|
},
|
|
8865
|
-
directives: { Ripple: stdin_default$
|
|
8930
|
+
directives: { Ripple: stdin_default$5V },
|
|
8866
8931
|
inheritAttrs: false,
|
|
8867
8932
|
props: props$R,
|
|
8868
8933
|
setup(props2) {
|
|
@@ -9611,8 +9676,8 @@ function __render__$X(_ctx, _cache) {
|
|
|
9611
9676
|
const __sfc__$Y = vue.defineComponent({
|
|
9612
9677
|
name: "PanelHeader",
|
|
9613
9678
|
components: {
|
|
9614
|
-
VarButton: stdin_default$
|
|
9615
|
-
VarIcon: stdin_default$
|
|
9679
|
+
VarButton: stdin_default$5u,
|
|
9680
|
+
VarIcon: stdin_default$5R
|
|
9616
9681
|
},
|
|
9617
9682
|
props: {
|
|
9618
9683
|
date: {
|
|
@@ -9759,7 +9824,7 @@ function __render__$W(_ctx, _cache) {
|
|
|
9759
9824
|
const __sfc__$X = vue.defineComponent({
|
|
9760
9825
|
name: "MonthPickerPanel",
|
|
9761
9826
|
components: {
|
|
9762
|
-
VarButton: stdin_default$
|
|
9827
|
+
VarButton: stdin_default$5u,
|
|
9763
9828
|
PanelHeader: stdin_default$4S
|
|
9764
9829
|
},
|
|
9765
9830
|
props: {
|
|
@@ -10210,7 +10275,7 @@ function __render__$U(_ctx, _cache) {
|
|
|
10210
10275
|
const __sfc__$V = vue.defineComponent({
|
|
10211
10276
|
name: "YearPickerPanel",
|
|
10212
10277
|
components: {
|
|
10213
|
-
VarButton: stdin_default$
|
|
10278
|
+
VarButton: stdin_default$5u,
|
|
10214
10279
|
VarSticky: stdin_default$4P,
|
|
10215
10280
|
PanelHeader: stdin_default$4S
|
|
10216
10281
|
},
|
|
@@ -10525,7 +10590,7 @@ function __render__$T(_ctx, _cache) {
|
|
|
10525
10590
|
const __sfc__$U = vue.defineComponent({
|
|
10526
10591
|
name: "DayPickerPanel",
|
|
10527
10592
|
components: {
|
|
10528
|
-
VarButton: stdin_default$
|
|
10593
|
+
VarButton: stdin_default$5u,
|
|
10529
10594
|
PanelHeader: stdin_default$4S
|
|
10530
10595
|
},
|
|
10531
10596
|
props: {
|
|
@@ -11625,8 +11690,8 @@ function __render__$R(_ctx, _cache) {
|
|
|
11625
11690
|
const __sfc__$S = vue.defineComponent({
|
|
11626
11691
|
name: name$O,
|
|
11627
11692
|
components: {
|
|
11628
|
-
VarPopup: stdin_default$
|
|
11629
|
-
VarButton: stdin_default$
|
|
11693
|
+
VarPopup: stdin_default$5T,
|
|
11694
|
+
VarButton: stdin_default$5u
|
|
11630
11695
|
},
|
|
11631
11696
|
inheritAttrs: false,
|
|
11632
11697
|
props: props$O,
|
|
@@ -14188,7 +14253,7 @@ var stdin_default$4A = vue.defineComponent({
|
|
|
14188
14253
|
active: isActive.value
|
|
14189
14254
|
}) : null;
|
|
14190
14255
|
}
|
|
14191
|
-
return vue.withDirectives(vue.createVNode(stdin_default$
|
|
14256
|
+
return vue.withDirectives(vue.createVNode(stdin_default$5u, {
|
|
14192
14257
|
"var-fab-cover": true,
|
|
14193
14258
|
"class": n$M("trigger"),
|
|
14194
14259
|
"type": props2.type,
|
|
@@ -14197,7 +14262,7 @@ var stdin_default$4A = vue.defineComponent({
|
|
|
14197
14262
|
"elevation": props2.elevation,
|
|
14198
14263
|
"iconContainer": true
|
|
14199
14264
|
}, {
|
|
14200
|
-
default: () => [vue.createVNode(stdin_default$
|
|
14265
|
+
default: () => [vue.createVNode(stdin_default$5R, {
|
|
14201
14266
|
"var-fab-cover": true,
|
|
14202
14267
|
"class": classes$E([isActive.value, n$M("trigger-active-icon"), n$M("trigger-inactive-icon")]),
|
|
14203
14268
|
"name": isActive.value ? props2.activeIcon : props2.inactiveIcon,
|
|
@@ -14519,7 +14584,7 @@ function __render__$M(_ctx, _cache) {
|
|
|
14519
14584
|
}
|
|
14520
14585
|
const __sfc__$N = vue.defineComponent({
|
|
14521
14586
|
name: name$I,
|
|
14522
|
-
components: { VarIcon: stdin_default$
|
|
14587
|
+
components: { VarIcon: stdin_default$5R },
|
|
14523
14588
|
props: props$I,
|
|
14524
14589
|
setup(props2) {
|
|
14525
14590
|
const placeholderTextEl = vue.ref(null);
|
|
@@ -15015,8 +15080,8 @@ function __render__$J(_ctx, _cache) {
|
|
|
15015
15080
|
const __sfc__$K = vue.defineComponent({
|
|
15016
15081
|
name: name$F,
|
|
15017
15082
|
directives: {
|
|
15018
|
-
Lazy: stdin_default$
|
|
15019
|
-
Ripple: stdin_default$
|
|
15083
|
+
Lazy: stdin_default$5C,
|
|
15084
|
+
Ripple: stdin_default$5V
|
|
15020
15085
|
},
|
|
15021
15086
|
props: props$F,
|
|
15022
15087
|
setup(props2, { slots }) {
|
|
@@ -15294,8 +15359,8 @@ function __render__$I(_ctx, _cache) {
|
|
|
15294
15359
|
}
|
|
15295
15360
|
const __sfc__$J = vue.defineComponent({
|
|
15296
15361
|
name: name$E,
|
|
15297
|
-
directives: { Hover: stdin_default$
|
|
15298
|
-
components: { VarButton: stdin_default$
|
|
15362
|
+
directives: { Hover: stdin_default$5O },
|
|
15363
|
+
components: { VarButton: stdin_default$5u, VarIcon: stdin_default$5R },
|
|
15299
15364
|
props: props$E,
|
|
15300
15365
|
setup(props2) {
|
|
15301
15366
|
const swipeEl = vue.ref(null);
|
|
@@ -15840,8 +15905,8 @@ const __sfc__$H = vue.defineComponent({
|
|
|
15840
15905
|
components: {
|
|
15841
15906
|
VarSwipe: stdin_default$4p,
|
|
15842
15907
|
VarSwipeItem: stdin_default$4n,
|
|
15843
|
-
VarPopup: stdin_default$
|
|
15844
|
-
VarIcon: stdin_default$
|
|
15908
|
+
VarPopup: stdin_default$5T,
|
|
15909
|
+
VarIcon: stdin_default$5R
|
|
15845
15910
|
},
|
|
15846
15911
|
inheritAttrs: false,
|
|
15847
15912
|
props: props$D,
|
|
@@ -16666,7 +16731,7 @@ function __render__$D(_ctx, _cache) {
|
|
|
16666
16731
|
const __sfc__$E = vue.defineComponent({
|
|
16667
16732
|
name: name$z,
|
|
16668
16733
|
components: {
|
|
16669
|
-
VarFormDetails: stdin_default$
|
|
16734
|
+
VarFormDetails: stdin_default$5a,
|
|
16670
16735
|
VarFieldDecorator: stdin_default$4x
|
|
16671
16736
|
},
|
|
16672
16737
|
props: props$A,
|
|
@@ -17145,8 +17210,8 @@ function __render__$B(_ctx, _cache) {
|
|
|
17145
17210
|
}
|
|
17146
17211
|
const __sfc__$C = vue.defineComponent({
|
|
17147
17212
|
name: name$x,
|
|
17148
|
-
directives: { Ripple: stdin_default$
|
|
17149
|
-
components: { VarLoading: stdin_default$
|
|
17213
|
+
directives: { Ripple: stdin_default$5V },
|
|
17214
|
+
components: { VarLoading: stdin_default$5w },
|
|
17150
17215
|
props: props$y,
|
|
17151
17216
|
setup(props2) {
|
|
17152
17217
|
const listEl = vue.ref(null);
|
|
@@ -17236,7 +17301,7 @@ var stdin_default$4a = vue.defineComponent({
|
|
|
17236
17301
|
return () => vue.createVNode("div", {
|
|
17237
17302
|
"class": classes$t(n$z(), [props2.error, n$z("--error")]),
|
|
17238
17303
|
"style": {
|
|
17239
|
-
zIndex: stdin_default$
|
|
17304
|
+
zIndex: stdin_default$5W.zIndex + 10,
|
|
17240
17305
|
width: `${props2.value}%`,
|
|
17241
17306
|
opacity: props2.opacity,
|
|
17242
17307
|
height: toSizeUnit(props2.height),
|
|
@@ -17590,10 +17655,10 @@ function __render__$z(_ctx, _cache) {
|
|
|
17590
17655
|
}
|
|
17591
17656
|
const __sfc__$A = vue.defineComponent({
|
|
17592
17657
|
name: name$u,
|
|
17593
|
-
directives: { Ripple: stdin_default$
|
|
17658
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
17594
17659
|
components: {
|
|
17595
|
-
VarCheckbox: stdin_default$
|
|
17596
|
-
VarHoverOverlay: stdin_default$
|
|
17660
|
+
VarCheckbox: stdin_default$58,
|
|
17661
|
+
VarHoverOverlay: stdin_default$5P
|
|
17597
17662
|
},
|
|
17598
17663
|
props: props$u,
|
|
17599
17664
|
setup(props2) {
|
|
@@ -18002,10 +18067,10 @@ function __render__$x(_ctx, _cache) {
|
|
|
18002
18067
|
}
|
|
18003
18068
|
const __sfc__$y = vue.defineComponent({
|
|
18004
18069
|
name: name$s,
|
|
18005
|
-
directives: { Ripple: stdin_default$
|
|
18070
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
18006
18071
|
components: {
|
|
18007
|
-
VarCheckbox: stdin_default$
|
|
18008
|
-
VarHoverOverlay: stdin_default$
|
|
18072
|
+
VarCheckbox: stdin_default$58,
|
|
18073
|
+
VarHoverOverlay: stdin_default$5P
|
|
18009
18074
|
},
|
|
18010
18075
|
props: props$s,
|
|
18011
18076
|
setup(props2) {
|
|
@@ -18451,10 +18516,10 @@ const __sfc__$x = vue.defineComponent({
|
|
|
18451
18516
|
components: {
|
|
18452
18517
|
VarMenuSelect: stdin_default$43,
|
|
18453
18518
|
VarMenuOption: stdin_default$45,
|
|
18454
|
-
VarIcon: stdin_default$
|
|
18519
|
+
VarIcon: stdin_default$5R,
|
|
18455
18520
|
VarInput: stdin_default$4f
|
|
18456
18521
|
},
|
|
18457
|
-
directives: { Ripple: stdin_default$
|
|
18522
|
+
directives: { Ripple: stdin_default$5V },
|
|
18458
18523
|
props: props$q,
|
|
18459
18524
|
setup(props2) {
|
|
18460
18525
|
const quickJumperValue = vue.ref("");
|
|
@@ -18661,7 +18726,7 @@ function __render__$v(_ctx, _cache) {
|
|
|
18661
18726
|
}
|
|
18662
18727
|
const __sfc__$w = vue.defineComponent({
|
|
18663
18728
|
name: name$p,
|
|
18664
|
-
directives: { Ripple: stdin_default$
|
|
18729
|
+
directives: { Ripple: stdin_default$5V },
|
|
18665
18730
|
props: props$p,
|
|
18666
18731
|
setup(props2) {
|
|
18667
18732
|
function handleClick(e) {
|
|
@@ -18969,8 +19034,8 @@ function __render__$u(_ctx, _cache) {
|
|
|
18969
19034
|
const __sfc__$v = vue.defineComponent({
|
|
18970
19035
|
name: name$o,
|
|
18971
19036
|
components: {
|
|
18972
|
-
VarButton: stdin_default$
|
|
18973
|
-
VarPopup: stdin_default$
|
|
19037
|
+
VarButton: stdin_default$5u,
|
|
19038
|
+
VarPopup: stdin_default$5T
|
|
18974
19039
|
},
|
|
18975
19040
|
inheritAttrs: false,
|
|
18976
19041
|
props: props$o,
|
|
@@ -19680,7 +19745,7 @@ function __render__$s(_ctx, _cache) {
|
|
|
19680
19745
|
}
|
|
19681
19746
|
const __sfc__$t = vue.defineComponent({
|
|
19682
19747
|
name: name$m,
|
|
19683
|
-
components: { VarIcon: stdin_default$
|
|
19748
|
+
components: { VarIcon: stdin_default$5R },
|
|
19684
19749
|
props: props$m,
|
|
19685
19750
|
setup(props2) {
|
|
19686
19751
|
const controlPosition = vue.ref(0);
|
|
@@ -19970,11 +20035,11 @@ function __render__$r(_ctx, _cache) {
|
|
|
19970
20035
|
}
|
|
19971
20036
|
const __sfc__$s = vue.defineComponent({
|
|
19972
20037
|
name: name$l,
|
|
19973
|
-
directives: { Ripple: stdin_default$
|
|
20038
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
19974
20039
|
components: {
|
|
19975
|
-
VarIcon: stdin_default$
|
|
19976
|
-
VarFormDetails: stdin_default$
|
|
19977
|
-
VarHoverOverlay: stdin_default$
|
|
20040
|
+
VarIcon: stdin_default$5R,
|
|
20041
|
+
VarFormDetails: stdin_default$5a,
|
|
20042
|
+
VarHoverOverlay: stdin_default$5P
|
|
19978
20043
|
},
|
|
19979
20044
|
inheritAttrs: false,
|
|
19980
20045
|
props: props$l,
|
|
@@ -20157,7 +20222,7 @@ function __render__$q(_ctx, _cache) {
|
|
|
20157
20222
|
}
|
|
20158
20223
|
const __sfc__$r = vue.defineComponent({
|
|
20159
20224
|
name: name$k,
|
|
20160
|
-
components: { VarFormDetails: stdin_default$
|
|
20225
|
+
components: { VarFormDetails: stdin_default$5a },
|
|
20161
20226
|
props: props$k,
|
|
20162
20227
|
setup(props2) {
|
|
20163
20228
|
const { length, radios, bindRadios } = useRadios();
|
|
@@ -20362,11 +20427,11 @@ function __render__$p(_ctx, _cache) {
|
|
|
20362
20427
|
const __sfc__$q = vue.defineComponent({
|
|
20363
20428
|
name: name$j,
|
|
20364
20429
|
components: {
|
|
20365
|
-
VarIcon: stdin_default$
|
|
20366
|
-
VarFormDetails: stdin_default$
|
|
20367
|
-
VarHoverOverlay: stdin_default$
|
|
20430
|
+
VarIcon: stdin_default$5R,
|
|
20431
|
+
VarFormDetails: stdin_default$5a,
|
|
20432
|
+
VarHoverOverlay: stdin_default$5P
|
|
20368
20433
|
},
|
|
20369
|
-
directives: { Ripple: stdin_default$
|
|
20434
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
20370
20435
|
props: props$j,
|
|
20371
20436
|
setup(props2) {
|
|
20372
20437
|
const currentHoveringValue = vue.ref(-1);
|
|
@@ -21167,11 +21232,11 @@ function __render__$g(_ctx, _cache) {
|
|
|
21167
21232
|
const __sfc__$h = vue.defineComponent({
|
|
21168
21233
|
name: name$g,
|
|
21169
21234
|
components: {
|
|
21170
|
-
VarIcon: stdin_default$
|
|
21235
|
+
VarIcon: stdin_default$5R,
|
|
21171
21236
|
VarMenu: stdin_default$47,
|
|
21172
21237
|
VarChip: stdin_default$53,
|
|
21173
21238
|
VarFieldDecorator: stdin_default$4x,
|
|
21174
|
-
VarFormDetails: stdin_default$
|
|
21239
|
+
VarFormDetails: stdin_default$5a
|
|
21175
21240
|
},
|
|
21176
21241
|
props: props$g,
|
|
21177
21242
|
setup(props2) {
|
|
@@ -21841,10 +21906,10 @@ function __render__$e(_ctx, _cache) {
|
|
|
21841
21906
|
const __sfc__$f = vue.defineComponent({
|
|
21842
21907
|
name: name$e,
|
|
21843
21908
|
components: {
|
|
21844
|
-
VarFormDetails: stdin_default$
|
|
21845
|
-
VarHoverOverlay: stdin_default$
|
|
21909
|
+
VarFormDetails: stdin_default$5a,
|
|
21910
|
+
VarHoverOverlay: stdin_default$5P
|
|
21846
21911
|
},
|
|
21847
|
-
directives: { Hover: stdin_default$
|
|
21912
|
+
directives: { Hover: stdin_default$5O },
|
|
21848
21913
|
props: props$e,
|
|
21849
21914
|
setup(props2) {
|
|
21850
21915
|
const maxDistance = vue.ref(0);
|
|
@@ -22387,8 +22452,8 @@ function __render__$d(_ctx, _cache) {
|
|
|
22387
22452
|
const __sfc__$e = vue.defineComponent({
|
|
22388
22453
|
name: "VarSnackbarCore",
|
|
22389
22454
|
components: {
|
|
22390
|
-
VarLoading: stdin_default$
|
|
22391
|
-
VarIcon: stdin_default$
|
|
22455
|
+
VarLoading: stdin_default$5w,
|
|
22456
|
+
VarIcon: stdin_default$5R
|
|
22392
22457
|
},
|
|
22393
22458
|
props: props$d,
|
|
22394
22459
|
setup(props2) {
|
|
@@ -22594,7 +22659,7 @@ const TransitionGroupHost = {
|
|
|
22594
22659
|
});
|
|
22595
22660
|
return vue.createVNode(vue.TransitionGroup, vue.mergeProps(transitionGroupProps, {
|
|
22596
22661
|
"style": {
|
|
22597
|
-
zIndex: stdin_default$
|
|
22662
|
+
zIndex: stdin_default$5W.zIndex
|
|
22598
22663
|
},
|
|
22599
22664
|
"onAfterEnter": opened,
|
|
22600
22665
|
"onAfterLeave": removeUniqOption
|
|
@@ -22943,7 +23008,7 @@ function __render__$b(_ctx, _cache) {
|
|
|
22943
23008
|
}
|
|
22944
23009
|
const __sfc__$c = vue.defineComponent({
|
|
22945
23010
|
name: name$b,
|
|
22946
|
-
components: { VarIcon: stdin_default$
|
|
23011
|
+
components: { VarIcon: stdin_default$5R },
|
|
22947
23012
|
props: props$b,
|
|
22948
23013
|
setup() {
|
|
22949
23014
|
const { index, steps, bindSteps } = useSteps();
|
|
@@ -23221,10 +23286,10 @@ function __render__$9(_ctx, _cache) {
|
|
|
23221
23286
|
const __sfc__$9 = vue.defineComponent({
|
|
23222
23287
|
name: name$8,
|
|
23223
23288
|
components: {
|
|
23224
|
-
VarFormDetails: stdin_default$
|
|
23225
|
-
VarHoverOverlay: stdin_default$
|
|
23289
|
+
VarFormDetails: stdin_default$5a,
|
|
23290
|
+
VarHoverOverlay: stdin_default$5P
|
|
23226
23291
|
},
|
|
23227
|
-
directives: { Ripple: stdin_default$
|
|
23292
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
23228
23293
|
props: props$8,
|
|
23229
23294
|
setup(props2) {
|
|
23230
23295
|
const switchRef = vue.ref(null);
|
|
@@ -23418,7 +23483,7 @@ function __render__$8(_ctx, _cache) {
|
|
|
23418
23483
|
}
|
|
23419
23484
|
const __sfc__$8 = vue.defineComponent({
|
|
23420
23485
|
name: name$7,
|
|
23421
|
-
directives: { Ripple: stdin_default$
|
|
23486
|
+
directives: { Ripple: stdin_default$5V },
|
|
23422
23487
|
props: props$7,
|
|
23423
23488
|
setup(props2) {
|
|
23424
23489
|
const tabEl = vue.ref(null);
|
|
@@ -27956,12 +28021,12 @@ function __render__$1(_ctx, _cache) {
|
|
|
27956
28021
|
}
|
|
27957
28022
|
const __sfc__$1 = vue.defineComponent({
|
|
27958
28023
|
name: name$1,
|
|
27959
|
-
directives: { Ripple: stdin_default$
|
|
28024
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
27960
28025
|
components: {
|
|
27961
|
-
VarIcon: stdin_default$
|
|
27962
|
-
VarPopup: stdin_default$
|
|
27963
|
-
VarFormDetails: stdin_default$
|
|
27964
|
-
VarHoverOverlay: stdin_default$
|
|
28026
|
+
VarIcon: stdin_default$5R,
|
|
28027
|
+
VarPopup: stdin_default$5T,
|
|
28028
|
+
VarFormDetails: stdin_default$5a,
|
|
28029
|
+
VarHoverOverlay: stdin_default$5P
|
|
27965
28030
|
},
|
|
27966
28031
|
props: props$1,
|
|
27967
28032
|
setup(props2) {
|
|
@@ -28535,30 +28600,30 @@ withInstall(stdin_default$1);
|
|
|
28535
28600
|
withPropsDefaultsSetter(stdin_default$1, props);
|
|
28536
28601
|
const _WatermarkComponent = stdin_default$1;
|
|
28537
28602
|
var stdin_default = stdin_default$1;
|
|
28538
|
-
const version = "3.2.11
|
|
28603
|
+
const version = "3.2.11";
|
|
28539
28604
|
function install(app) {
|
|
28540
|
-
stdin_default$
|
|
28541
|
-
stdin_default$
|
|
28542
|
-
stdin_default$
|
|
28543
|
-
stdin_default$
|
|
28544
|
-
stdin_default$
|
|
28545
|
-
stdin_default$
|
|
28546
|
-
stdin_default$
|
|
28547
|
-
stdin_default$
|
|
28548
|
-
stdin_default$
|
|
28549
|
-
stdin_default$
|
|
28550
|
-
stdin_default$
|
|
28551
|
-
stdin_default$
|
|
28552
|
-
stdin_default$
|
|
28553
|
-
stdin_default$
|
|
28554
|
-
stdin_default$
|
|
28605
|
+
stdin_default$5F.install && app.use(stdin_default$5F);
|
|
28606
|
+
stdin_default$5D.install && app.use(stdin_default$5D);
|
|
28607
|
+
stdin_default$5A.install && app.use(stdin_default$5A);
|
|
28608
|
+
stdin_default$5y.install && app.use(stdin_default$5y);
|
|
28609
|
+
stdin_default$5s.install && app.use(stdin_default$5s);
|
|
28610
|
+
stdin_default$5q.install && app.use(stdin_default$5q);
|
|
28611
|
+
stdin_default$5o.install && app.use(stdin_default$5o);
|
|
28612
|
+
stdin_default$5m.install && app.use(stdin_default$5m);
|
|
28613
|
+
stdin_default$5k.install && app.use(stdin_default$5k);
|
|
28614
|
+
stdin_default$5i.install && app.use(stdin_default$5i);
|
|
28615
|
+
stdin_default$5u.install && app.use(stdin_default$5u);
|
|
28616
|
+
stdin_default$5g.install && app.use(stdin_default$5g);
|
|
28617
|
+
stdin_default$5e.install && app.use(stdin_default$5e);
|
|
28618
|
+
stdin_default$5c.install && app.use(stdin_default$5c);
|
|
28619
|
+
stdin_default$58.install && app.use(stdin_default$58);
|
|
28555
28620
|
stdin_default$55.install && app.use(stdin_default$55);
|
|
28556
28621
|
stdin_default$53.install && app.use(stdin_default$53);
|
|
28557
28622
|
stdin_default$51.install && app.use(stdin_default$51);
|
|
28558
28623
|
stdin_default$4$.install && app.use(stdin_default$4$);
|
|
28559
28624
|
stdin_default$4Z.install && app.use(stdin_default$4Z);
|
|
28560
28625
|
stdin_default$4X.install && app.use(stdin_default$4X);
|
|
28561
|
-
stdin_default$
|
|
28626
|
+
stdin_default$5W.install && app.use(stdin_default$5W);
|
|
28562
28627
|
stdin_default$4V.install && app.use(stdin_default$4V);
|
|
28563
28628
|
stdin_default$4T.install && app.use(stdin_default$4T);
|
|
28564
28629
|
stdin_default$4L.install && app.use(stdin_default$4L);
|
|
@@ -28570,21 +28635,21 @@ function install(app) {
|
|
|
28570
28635
|
stdin_default$4x.install && app.use(stdin_default$4x);
|
|
28571
28636
|
stdin_default$4v.install && app.use(stdin_default$4v);
|
|
28572
28637
|
stdin_default$4t.install && app.use(stdin_default$4t);
|
|
28573
|
-
stdin_default$
|
|
28574
|
-
stdin_default$5N.install && app.use(stdin_default$5N);
|
|
28638
|
+
stdin_default$5a.install && app.use(stdin_default$5a);
|
|
28575
28639
|
stdin_default$5O.install && app.use(stdin_default$5O);
|
|
28576
|
-
stdin_default$
|
|
28640
|
+
stdin_default$5P.install && app.use(stdin_default$5P);
|
|
28641
|
+
stdin_default$5R.install && app.use(stdin_default$5R);
|
|
28577
28642
|
stdin_default$4r.install && app.use(stdin_default$4r);
|
|
28578
28643
|
stdin_default$4l.install && app.use(stdin_default$4l);
|
|
28579
28644
|
stdin_default$4j.install && app.use(stdin_default$4j);
|
|
28580
28645
|
stdin_default$4h.install && app.use(stdin_default$4h);
|
|
28581
28646
|
stdin_default$4f.install && app.use(stdin_default$4f);
|
|
28582
|
-
stdin_default$
|
|
28647
|
+
stdin_default$5C.install && app.use(stdin_default$5C);
|
|
28583
28648
|
stdin_default$4d.install && app.use(stdin_default$4d);
|
|
28584
28649
|
stdin_default$4b.install && app.use(stdin_default$4b);
|
|
28585
|
-
stdin_default$
|
|
28650
|
+
stdin_default$5w.install && app.use(stdin_default$5w);
|
|
28586
28651
|
stdin_default$49.install && app.use(stdin_default$49);
|
|
28587
|
-
stdin_default$
|
|
28652
|
+
stdin_default$5H.install && app.use(stdin_default$5H);
|
|
28588
28653
|
stdin_default$47.install && app.use(stdin_default$47);
|
|
28589
28654
|
stdin_default$45.install && app.use(stdin_default$45);
|
|
28590
28655
|
stdin_default$43.install && app.use(stdin_default$43);
|
|
@@ -28593,14 +28658,14 @@ function install(app) {
|
|
|
28593
28658
|
stdin_default$3Z.install && app.use(stdin_default$3Z);
|
|
28594
28659
|
stdin_default$3X.install && app.use(stdin_default$3X);
|
|
28595
28660
|
stdin_default$3V.install && app.use(stdin_default$3V);
|
|
28596
|
-
stdin_default$
|
|
28661
|
+
stdin_default$5T.install && app.use(stdin_default$5T);
|
|
28597
28662
|
stdin_default$3T.install && app.use(stdin_default$3T);
|
|
28598
28663
|
stdin_default$3R.install && app.use(stdin_default$3R);
|
|
28599
28664
|
stdin_default$3P.install && app.use(stdin_default$3P);
|
|
28600
28665
|
stdin_default$3N.install && app.use(stdin_default$3N);
|
|
28601
28666
|
stdin_default$3L.install && app.use(stdin_default$3L);
|
|
28602
28667
|
stdin_default$3D.install && app.use(stdin_default$3D);
|
|
28603
|
-
stdin_default$
|
|
28668
|
+
stdin_default$5V.install && app.use(stdin_default$5V);
|
|
28604
28669
|
stdin_default$3B.install && app.use(stdin_default$3B);
|
|
28605
28670
|
stdin_default$3z.install && app.use(stdin_default$3z);
|
|
28606
28671
|
stdin_default$3x.install && app.use(stdin_default$3x);
|
|
@@ -28628,28 +28693,28 @@ function install(app) {
|
|
|
28628
28693
|
const index_bundle = {
|
|
28629
28694
|
version,
|
|
28630
28695
|
install,
|
|
28631
|
-
ActionSheet: stdin_default$
|
|
28632
|
-
AppBar: stdin_default$
|
|
28633
|
-
Avatar: stdin_default$
|
|
28634
|
-
AvatarGroup: stdin_default$
|
|
28635
|
-
BackTop: stdin_default$
|
|
28636
|
-
Badge: stdin_default$
|
|
28637
|
-
BottomNavigation: stdin_default$
|
|
28638
|
-
BottomNavigationItem: stdin_default$
|
|
28639
|
-
Breadcrumb: stdin_default$
|
|
28640
|
-
Breadcrumbs: stdin_default$
|
|
28641
|
-
Button: stdin_default$
|
|
28642
|
-
ButtonGroup: stdin_default$
|
|
28643
|
-
Card: stdin_default$
|
|
28644
|
-
Cell: stdin_default$
|
|
28645
|
-
Checkbox: stdin_default$
|
|
28696
|
+
ActionSheet: stdin_default$5F,
|
|
28697
|
+
AppBar: stdin_default$5D,
|
|
28698
|
+
Avatar: stdin_default$5A,
|
|
28699
|
+
AvatarGroup: stdin_default$5y,
|
|
28700
|
+
BackTop: stdin_default$5s,
|
|
28701
|
+
Badge: stdin_default$5q,
|
|
28702
|
+
BottomNavigation: stdin_default$5o,
|
|
28703
|
+
BottomNavigationItem: stdin_default$5m,
|
|
28704
|
+
Breadcrumb: stdin_default$5k,
|
|
28705
|
+
Breadcrumbs: stdin_default$5i,
|
|
28706
|
+
Button: stdin_default$5u,
|
|
28707
|
+
ButtonGroup: stdin_default$5g,
|
|
28708
|
+
Card: stdin_default$5e,
|
|
28709
|
+
Cell: stdin_default$5c,
|
|
28710
|
+
Checkbox: stdin_default$58,
|
|
28646
28711
|
CheckboxGroup: stdin_default$55,
|
|
28647
28712
|
Chip: stdin_default$53,
|
|
28648
28713
|
Col: stdin_default$51,
|
|
28649
28714
|
Collapse: stdin_default$4$,
|
|
28650
28715
|
CollapseItem: stdin_default$4Z,
|
|
28651
28716
|
CollapseTransition: stdin_default$4X,
|
|
28652
|
-
Context: stdin_default$
|
|
28717
|
+
Context: stdin_default$5W,
|
|
28653
28718
|
Countdown: stdin_default$4V,
|
|
28654
28719
|
Counter: stdin_default$4T,
|
|
28655
28720
|
DatePicker: stdin_default$4L,
|
|
@@ -28661,21 +28726,21 @@ const index_bundle = {
|
|
|
28661
28726
|
FieldDecorator: stdin_default$4x,
|
|
28662
28727
|
FloatingPanel: stdin_default$4v,
|
|
28663
28728
|
Form: stdin_default$4t,
|
|
28664
|
-
FormDetails: stdin_default$
|
|
28665
|
-
Hover: stdin_default$
|
|
28666
|
-
HoverOverlay: stdin_default$
|
|
28667
|
-
Icon: stdin_default$
|
|
28729
|
+
FormDetails: stdin_default$5a,
|
|
28730
|
+
Hover: stdin_default$5O,
|
|
28731
|
+
HoverOverlay: stdin_default$5P,
|
|
28732
|
+
Icon: stdin_default$5R,
|
|
28668
28733
|
Image: stdin_default$4r,
|
|
28669
28734
|
ImagePreview: stdin_default$4l,
|
|
28670
28735
|
IndexAnchor: stdin_default$4j,
|
|
28671
28736
|
IndexBar: stdin_default$4h,
|
|
28672
28737
|
Input: stdin_default$4f,
|
|
28673
|
-
Lazy: stdin_default$
|
|
28738
|
+
Lazy: stdin_default$5C,
|
|
28674
28739
|
Link: stdin_default$4d,
|
|
28675
28740
|
List: stdin_default$4b,
|
|
28676
|
-
Loading: stdin_default$
|
|
28741
|
+
Loading: stdin_default$5w,
|
|
28677
28742
|
LoadingBar: stdin_default$49,
|
|
28678
|
-
Locale: stdin_default$
|
|
28743
|
+
Locale: stdin_default$5H,
|
|
28679
28744
|
Menu: stdin_default$47,
|
|
28680
28745
|
MenuOption: stdin_default$45,
|
|
28681
28746
|
MenuSelect: stdin_default$43,
|
|
@@ -28684,14 +28749,14 @@ const index_bundle = {
|
|
|
28684
28749
|
Pagination: stdin_default$3Z,
|
|
28685
28750
|
Paper: stdin_default$3X,
|
|
28686
28751
|
Picker: stdin_default$3V,
|
|
28687
|
-
Popup: stdin_default$
|
|
28752
|
+
Popup: stdin_default$5T,
|
|
28688
28753
|
Progress: stdin_default$3T,
|
|
28689
28754
|
PullRefresh: stdin_default$3R,
|
|
28690
28755
|
Radio: stdin_default$3P,
|
|
28691
28756
|
RadioGroup: stdin_default$3N,
|
|
28692
28757
|
Rate: stdin_default$3L,
|
|
28693
28758
|
Result: stdin_default$3D,
|
|
28694
|
-
Ripple: stdin_default$
|
|
28759
|
+
Ripple: stdin_default$5V,
|
|
28695
28760
|
Row: stdin_default$3B,
|
|
28696
28761
|
Select: stdin_default$3z,
|
|
28697
28762
|
Skeleton: stdin_default$3x,
|
|
@@ -28716,28 +28781,28 @@ const index_bundle = {
|
|
|
28716
28781
|
Uploader: stdin_default$2,
|
|
28717
28782
|
Watermark: stdin_default
|
|
28718
28783
|
};
|
|
28719
|
-
exports.ActionSheet = stdin_default$
|
|
28720
|
-
exports.AppBar = stdin_default$
|
|
28721
|
-
exports.Avatar = stdin_default$
|
|
28722
|
-
exports.AvatarGroup = stdin_default$
|
|
28723
|
-
exports.BackTop = stdin_default$
|
|
28724
|
-
exports.Badge = stdin_default$
|
|
28725
|
-
exports.BottomNavigation = stdin_default$
|
|
28726
|
-
exports.BottomNavigationItem = stdin_default$
|
|
28727
|
-
exports.Breadcrumb = stdin_default$
|
|
28728
|
-
exports.Breadcrumbs = stdin_default$
|
|
28729
|
-
exports.Button = stdin_default$
|
|
28730
|
-
exports.ButtonGroup = stdin_default$
|
|
28731
|
-
exports.Card = stdin_default$
|
|
28732
|
-
exports.Cell = stdin_default$
|
|
28733
|
-
exports.Checkbox = stdin_default$
|
|
28784
|
+
exports.ActionSheet = stdin_default$5F;
|
|
28785
|
+
exports.AppBar = stdin_default$5D;
|
|
28786
|
+
exports.Avatar = stdin_default$5A;
|
|
28787
|
+
exports.AvatarGroup = stdin_default$5y;
|
|
28788
|
+
exports.BackTop = stdin_default$5s;
|
|
28789
|
+
exports.Badge = stdin_default$5q;
|
|
28790
|
+
exports.BottomNavigation = stdin_default$5o;
|
|
28791
|
+
exports.BottomNavigationItem = stdin_default$5m;
|
|
28792
|
+
exports.Breadcrumb = stdin_default$5k;
|
|
28793
|
+
exports.Breadcrumbs = stdin_default$5i;
|
|
28794
|
+
exports.Button = stdin_default$5u;
|
|
28795
|
+
exports.ButtonGroup = stdin_default$5g;
|
|
28796
|
+
exports.Card = stdin_default$5e;
|
|
28797
|
+
exports.Cell = stdin_default$5c;
|
|
28798
|
+
exports.Checkbox = stdin_default$58;
|
|
28734
28799
|
exports.CheckboxGroup = stdin_default$55;
|
|
28735
28800
|
exports.Chip = stdin_default$53;
|
|
28736
28801
|
exports.Col = stdin_default$51;
|
|
28737
28802
|
exports.Collapse = stdin_default$4$;
|
|
28738
28803
|
exports.CollapseItem = stdin_default$4Z;
|
|
28739
28804
|
exports.CollapseTransition = stdin_default$4X;
|
|
28740
|
-
exports.Context = stdin_default$
|
|
28805
|
+
exports.Context = stdin_default$5W;
|
|
28741
28806
|
exports.Countdown = stdin_default$4V;
|
|
28742
28807
|
exports.Counter = stdin_default$4T;
|
|
28743
28808
|
exports.DatePicker = stdin_default$4L;
|
|
@@ -28749,21 +28814,21 @@ exports.Fab = stdin_default$4z;
|
|
|
28749
28814
|
exports.FieldDecorator = stdin_default$4x;
|
|
28750
28815
|
exports.FloatingPanel = stdin_default$4v;
|
|
28751
28816
|
exports.Form = stdin_default$4t;
|
|
28752
|
-
exports.FormDetails = stdin_default$
|
|
28753
|
-
exports.Hover = stdin_default$
|
|
28754
|
-
exports.HoverOverlay = stdin_default$
|
|
28755
|
-
exports.Icon = stdin_default$
|
|
28817
|
+
exports.FormDetails = stdin_default$5a;
|
|
28818
|
+
exports.Hover = stdin_default$5O;
|
|
28819
|
+
exports.HoverOverlay = stdin_default$5P;
|
|
28820
|
+
exports.Icon = stdin_default$5R;
|
|
28756
28821
|
exports.Image = stdin_default$4r;
|
|
28757
28822
|
exports.ImagePreview = stdin_default$4l;
|
|
28758
28823
|
exports.IndexAnchor = stdin_default$4j;
|
|
28759
28824
|
exports.IndexBar = stdin_default$4h;
|
|
28760
28825
|
exports.Input = stdin_default$4f;
|
|
28761
|
-
exports.Lazy = stdin_default$
|
|
28826
|
+
exports.Lazy = stdin_default$5C;
|
|
28762
28827
|
exports.Link = stdin_default$4d;
|
|
28763
28828
|
exports.List = stdin_default$4b;
|
|
28764
|
-
exports.Loading = stdin_default$
|
|
28829
|
+
exports.Loading = stdin_default$5w;
|
|
28765
28830
|
exports.LoadingBar = stdin_default$49;
|
|
28766
|
-
exports.Locale = stdin_default$
|
|
28831
|
+
exports.Locale = stdin_default$5H;
|
|
28767
28832
|
exports.Menu = stdin_default$47;
|
|
28768
28833
|
exports.MenuOption = stdin_default$45;
|
|
28769
28834
|
exports.MenuSelect = stdin_default$43;
|
|
@@ -28773,14 +28838,14 @@ exports.PIXEL = PIXEL;
|
|
|
28773
28838
|
exports.Pagination = stdin_default$3Z;
|
|
28774
28839
|
exports.Paper = stdin_default$3X;
|
|
28775
28840
|
exports.Picker = stdin_default$3V;
|
|
28776
|
-
exports.Popup = stdin_default$
|
|
28841
|
+
exports.Popup = stdin_default$5T;
|
|
28777
28842
|
exports.Progress = stdin_default$3T;
|
|
28778
28843
|
exports.PullRefresh = stdin_default$3R;
|
|
28779
28844
|
exports.Radio = stdin_default$3P;
|
|
28780
28845
|
exports.RadioGroup = stdin_default$3N;
|
|
28781
28846
|
exports.Rate = stdin_default$3L;
|
|
28782
28847
|
exports.Result = stdin_default$3D;
|
|
28783
|
-
exports.Ripple = stdin_default$
|
|
28848
|
+
exports.Ripple = stdin_default$5V;
|
|
28784
28849
|
exports.Row = stdin_default$3B;
|
|
28785
28850
|
exports.SNACKBAR_TYPE = SNACKBAR_TYPE;
|
|
28786
28851
|
exports.Select = stdin_default$3z;
|
|
@@ -28924,7 +28989,7 @@ exports.dialogProps = props$O;
|
|
|
28924
28989
|
exports.dividerProps = props$N;
|
|
28925
28990
|
exports.dragProps = props$M;
|
|
28926
28991
|
exports.ellipsisProps = props$K;
|
|
28927
|
-
exports.enUS = stdin_default$
|
|
28992
|
+
exports.enUS = stdin_default$5L;
|
|
28928
28993
|
exports.fabProps = props$J;
|
|
28929
28994
|
exports.fieldDecoratorProps = props$I;
|
|
28930
28995
|
exports.formDetailsProps = props$_;
|
|
@@ -28985,4 +29050,4 @@ exports.useHoverOverlay = useHoverOverlay;
|
|
|
28985
29050
|
exports.useLocale = useLocale;
|
|
28986
29051
|
exports.version = version;
|
|
28987
29052
|
exports.watermarkProps = props;
|
|
28988
|
-
exports.zhCN = stdin_default$
|
|
29053
|
+
exports.zhCN = stdin_default$5M;
|