@varlet/ui 3.2.10 → 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/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/utils/shared.mjs +6 -2
- package/es/varlet.esm.js +3488 -3433
- package/highlight/web-types.en-US.json +19 -1
- package/highlight/web-types.zh-CN.json +19 -1
- package/lib/varlet.cjs.js +401 -332
- 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;
|
|
@@ -161,13 +161,13 @@ var throttle = (fn2, delay = 200) => {
|
|
|
161
161
|
start2 = now;
|
|
162
162
|
}
|
|
163
163
|
if (timer) {
|
|
164
|
-
|
|
164
|
+
clearTimeout(timer);
|
|
165
165
|
}
|
|
166
166
|
if (elapsed >= delay) {
|
|
167
167
|
fn2.apply(this, args);
|
|
168
168
|
start2 = now;
|
|
169
169
|
} else {
|
|
170
|
-
timer =
|
|
170
|
+
timer = setTimeout(() => {
|
|
171
171
|
loop.apply(this, args);
|
|
172
172
|
}, delay - elapsed);
|
|
173
173
|
}
|
|
@@ -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;
|
|
@@ -2730,9 +2730,13 @@ const createCache = (max2) => {
|
|
|
2730
2730
|
const linear = (value) => value;
|
|
2731
2731
|
const cubic = (value) => value ** 3;
|
|
2732
2732
|
const easeInOutCubic = (value) => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2;
|
|
2733
|
-
const padStart$1 = (str
|
|
2734
|
-
if (str
|
|
2733
|
+
const padStart$1 = (str, maxLength, fillString = "") => {
|
|
2734
|
+
if (str === void 0) {
|
|
2735
|
+
str = "";
|
|
2736
|
+
}
|
|
2737
|
+
if (str.length >= maxLength) {
|
|
2735
2738
|
return str;
|
|
2739
|
+
}
|
|
2736
2740
|
const len = maxLength - str.length;
|
|
2737
2741
|
const repeatCount = Math.floor(len / fillString.length);
|
|
2738
2742
|
return fillString.repeat(repeatCount) + fillString.slice(0, len % fillString.length) + str;
|
|
@@ -2939,7 +2943,7 @@ const Lazy = {
|
|
|
2939
2943
|
}
|
|
2940
2944
|
};
|
|
2941
2945
|
const _LazyComponent = Lazy;
|
|
2942
|
-
var stdin_default$
|
|
2946
|
+
var stdin_default$5C = Lazy;
|
|
2943
2947
|
const props$1b = {
|
|
2944
2948
|
round: {
|
|
2945
2949
|
type: Boolean,
|
|
@@ -3045,7 +3049,7 @@ function __render__$1i(_ctx, _cache) {
|
|
|
3045
3049
|
}
|
|
3046
3050
|
const __sfc__$1j = vue.defineComponent({
|
|
3047
3051
|
name: name$1b,
|
|
3048
|
-
directives: { Lazy: stdin_default$
|
|
3052
|
+
directives: { Lazy: stdin_default$5C },
|
|
3049
3053
|
props: props$1b,
|
|
3050
3054
|
setup(props2) {
|
|
3051
3055
|
const avatarElement = vue.ref(null);
|
|
@@ -3097,11 +3101,11 @@ const __sfc__$1j = vue.defineComponent({
|
|
|
3097
3101
|
}
|
|
3098
3102
|
});
|
|
3099
3103
|
__sfc__$1j.render = __render__$1i;
|
|
3100
|
-
var stdin_default$
|
|
3101
|
-
withInstall(stdin_default$
|
|
3102
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3103
|
-
const _AvatarComponent = stdin_default$
|
|
3104
|
-
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;
|
|
3105
3109
|
const props$1a = {
|
|
3106
3110
|
offset: [Number, String],
|
|
3107
3111
|
vertical: Boolean
|
|
@@ -3141,11 +3145,11 @@ const __sfc__$1i = vue.defineComponent({
|
|
|
3141
3145
|
}
|
|
3142
3146
|
});
|
|
3143
3147
|
__sfc__$1i.render = __render__$1h;
|
|
3144
|
-
var stdin_default$
|
|
3145
|
-
withInstall(stdin_default$
|
|
3146
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3147
|
-
const _AvatarGroupComponent = stdin_default$
|
|
3148
|
-
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;
|
|
3149
3153
|
const props$19 = {
|
|
3150
3154
|
type: {
|
|
3151
3155
|
type: String,
|
|
@@ -3340,11 +3344,11 @@ const __sfc__$1h = vue.defineComponent({
|
|
|
3340
3344
|
}
|
|
3341
3345
|
});
|
|
3342
3346
|
__sfc__$1h.render = __render__$1g;
|
|
3343
|
-
var stdin_default$
|
|
3344
|
-
withInstall(stdin_default$
|
|
3345
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3346
|
-
const _LoadingComponent = stdin_default$
|
|
3347
|
-
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;
|
|
3348
3352
|
var __defProp$o = Object.defineProperty;
|
|
3349
3353
|
var __defProps$7 = Object.defineProperties;
|
|
3350
3354
|
var __getOwnPropDescs$7 = Object.getOwnPropertyDescriptors;
|
|
@@ -3485,10 +3489,10 @@ function __render__$1f(_ctx, _cache) {
|
|
|
3485
3489
|
const __sfc__$1g = vue.defineComponent({
|
|
3486
3490
|
name: name$18,
|
|
3487
3491
|
components: {
|
|
3488
|
-
VarLoading: stdin_default$
|
|
3489
|
-
VarHoverOverlay: stdin_default$
|
|
3492
|
+
VarLoading: stdin_default$5w,
|
|
3493
|
+
VarHoverOverlay: stdin_default$5P
|
|
3490
3494
|
},
|
|
3491
|
-
directives: { Ripple: stdin_default$
|
|
3495
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
3492
3496
|
props: props$18,
|
|
3493
3497
|
setup(props2) {
|
|
3494
3498
|
const isFocusing = vue.ref(false);
|
|
@@ -3559,11 +3563,11 @@ const __sfc__$1g = vue.defineComponent({
|
|
|
3559
3563
|
}
|
|
3560
3564
|
});
|
|
3561
3565
|
__sfc__$1g.render = __render__$1f;
|
|
3562
|
-
var stdin_default$
|
|
3563
|
-
withInstall(stdin_default$
|
|
3564
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3565
|
-
const _ButtonComponent = stdin_default$
|
|
3566
|
-
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;
|
|
3567
3571
|
const props$17 = {
|
|
3568
3572
|
visibilityHeight: {
|
|
3569
3573
|
type: [Number, String],
|
|
@@ -3625,8 +3629,8 @@ function __render__$1e(_ctx, _cache) {
|
|
|
3625
3629
|
const __sfc__$1f = vue.defineComponent({
|
|
3626
3630
|
name: name$17,
|
|
3627
3631
|
components: {
|
|
3628
|
-
VarButton: stdin_default$
|
|
3629
|
-
VarIcon: stdin_default$
|
|
3632
|
+
VarButton: stdin_default$5u,
|
|
3633
|
+
VarIcon: stdin_default$5R
|
|
3630
3634
|
},
|
|
3631
3635
|
inheritAttrs: false,
|
|
3632
3636
|
props: props$17,
|
|
@@ -3682,11 +3686,11 @@ const __sfc__$1f = vue.defineComponent({
|
|
|
3682
3686
|
}
|
|
3683
3687
|
});
|
|
3684
3688
|
__sfc__$1f.render = __render__$1e;
|
|
3685
|
-
var stdin_default$
|
|
3686
|
-
withInstall(stdin_default$
|
|
3687
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3688
|
-
const _BackTopComponent = stdin_default$
|
|
3689
|
-
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;
|
|
3690
3694
|
const props$16 = {
|
|
3691
3695
|
type: {
|
|
3692
3696
|
type: String,
|
|
@@ -3793,7 +3797,7 @@ function __render__$1d(_ctx, _cache) {
|
|
|
3793
3797
|
}
|
|
3794
3798
|
const __sfc__$1e = vue.defineComponent({
|
|
3795
3799
|
name: name$16,
|
|
3796
|
-
components: { VarIcon: stdin_default$
|
|
3800
|
+
components: { VarIcon: stdin_default$5R },
|
|
3797
3801
|
inheritAttrs: false,
|
|
3798
3802
|
props: props$16,
|
|
3799
3803
|
setup(props2) {
|
|
@@ -3814,11 +3818,11 @@ const __sfc__$1e = vue.defineComponent({
|
|
|
3814
3818
|
}
|
|
3815
3819
|
});
|
|
3816
3820
|
__sfc__$1e.render = __render__$1d;
|
|
3817
|
-
var stdin_default$
|
|
3818
|
-
withInstall(stdin_default$
|
|
3819
|
-
withPropsDefaultsSetter(stdin_default$
|
|
3820
|
-
const _BadgeComponent = stdin_default$
|
|
3821
|
-
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;
|
|
3822
3826
|
const props$15 = {
|
|
3823
3827
|
active: {
|
|
3824
3828
|
type: [Number, String],
|
|
@@ -3834,6 +3838,7 @@ const props$15 = {
|
|
|
3834
3838
|
safeArea: Boolean,
|
|
3835
3839
|
activeColor: String,
|
|
3836
3840
|
inactiveColor: String,
|
|
3841
|
+
placeholder: Boolean,
|
|
3837
3842
|
fabProps: Object,
|
|
3838
3843
|
onChange: defineListenerProp(),
|
|
3839
3844
|
onBeforeChange: defineListenerProp(),
|
|
@@ -3880,43 +3885,60 @@ const defaultFabProps = {
|
|
|
3880
3885
|
function __render__$1c(_ctx, _cache) {
|
|
3881
3886
|
const _component_var_button = vue.resolveComponent("var-button");
|
|
3882
3887
|
return vue.openBlock(), vue.createElementBlock(
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
class: vue.normalizeClass(
|
|
3886
|
-
_ctx.classes(
|
|
3887
|
-
_ctx.n(),
|
|
3888
|
-
_ctx.n("$--box"),
|
|
3889
|
-
[_ctx.fixed, _ctx.n("--fixed")],
|
|
3890
|
-
[_ctx.border, _ctx.n("--border")],
|
|
3891
|
-
[_ctx.safeArea, _ctx.n("--safe-area")],
|
|
3892
|
-
[_ctx.variant, _ctx.n("--variant")]
|
|
3893
|
-
)
|
|
3894
|
-
),
|
|
3895
|
-
ref: "bottomNavigationDom",
|
|
3896
|
-
style: vue.normalizeStyle(`z-index:${_ctx.zIndex}`)
|
|
3897
|
-
},
|
|
3888
|
+
vue.Fragment,
|
|
3889
|
+
null,
|
|
3898
3890
|
[
|
|
3899
|
-
vue.
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
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)
|
|
3912
3934
|
],
|
|
3913
|
-
|
|
3914
|
-
/*
|
|
3935
|
+
64
|
|
3936
|
+
/* STABLE_FRAGMENT */
|
|
3915
3937
|
);
|
|
3916
3938
|
}
|
|
3917
3939
|
const __sfc__$1d = vue.defineComponent({
|
|
3918
3940
|
name: name$15,
|
|
3919
|
-
components: { VarButton: stdin_default$
|
|
3941
|
+
components: { VarButton: stdin_default$5u },
|
|
3920
3942
|
props: props$15,
|
|
3921
3943
|
setup(props2, { slots }) {
|
|
3922
3944
|
const bottomNavigationDom = vue.ref(null);
|
|
@@ -3924,6 +3946,7 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
3924
3946
|
const activeColor = vue.computed(() => props2.activeColor);
|
|
3925
3947
|
const inactiveColor = vue.computed(() => props2.inactiveColor);
|
|
3926
3948
|
const variant = vue.computed(() => props2.variant);
|
|
3949
|
+
const placeholderHeight = vue.ref();
|
|
3927
3950
|
const fabProps = vue.ref({});
|
|
3928
3951
|
const { length, bottomNavigationItems, bindBottomNavigationItem } = useBottomNavigationItems();
|
|
3929
3952
|
const bottomNavigationProvider = {
|
|
@@ -3943,6 +3966,7 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
3943
3966
|
{ immediate: true, deep: true }
|
|
3944
3967
|
);
|
|
3945
3968
|
onSmartMounted(() => {
|
|
3969
|
+
resizePlaceholder();
|
|
3946
3970
|
if (!slots.fab) {
|
|
3947
3971
|
return;
|
|
3948
3972
|
}
|
|
@@ -4029,10 +4053,18 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
4029
4053
|
function handleFabClick() {
|
|
4030
4054
|
call(props2.onFabClick);
|
|
4031
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
|
+
}
|
|
4032
4063
|
return {
|
|
4033
4064
|
length,
|
|
4034
4065
|
bottomNavigationDom,
|
|
4035
4066
|
fabProps,
|
|
4067
|
+
placeholderHeight,
|
|
4036
4068
|
n: n$1c,
|
|
4037
4069
|
classes: classes$_,
|
|
4038
4070
|
handleFabClick
|
|
@@ -4040,11 +4072,11 @@ const __sfc__$1d = vue.defineComponent({
|
|
|
4040
4072
|
}
|
|
4041
4073
|
});
|
|
4042
4074
|
__sfc__$1d.render = __render__$1c;
|
|
4043
|
-
var stdin_default$
|
|
4044
|
-
withInstall(stdin_default$
|
|
4045
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4046
|
-
const _BottomNavigationComponent = stdin_default$
|
|
4047
|
-
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;
|
|
4048
4080
|
const props$14 = {
|
|
4049
4081
|
name: String,
|
|
4050
4082
|
label: String,
|
|
@@ -4160,10 +4192,10 @@ function __render__$1b(_ctx, _cache) {
|
|
|
4160
4192
|
const __sfc__$1c = vue.defineComponent({
|
|
4161
4193
|
name: name$14,
|
|
4162
4194
|
components: {
|
|
4163
|
-
VarBadge: stdin_default$
|
|
4164
|
-
VarIcon: stdin_default$
|
|
4195
|
+
VarBadge: stdin_default$5q,
|
|
4196
|
+
VarIcon: stdin_default$5R
|
|
4165
4197
|
},
|
|
4166
|
-
directives: { Ripple: stdin_default$
|
|
4198
|
+
directives: { Ripple: stdin_default$5V },
|
|
4167
4199
|
props: props$14,
|
|
4168
4200
|
setup(props2) {
|
|
4169
4201
|
const name2 = vue.computed(() => props2.name);
|
|
@@ -4195,11 +4227,11 @@ const __sfc__$1c = vue.defineComponent({
|
|
|
4195
4227
|
}
|
|
4196
4228
|
});
|
|
4197
4229
|
__sfc__$1c.render = __render__$1b;
|
|
4198
|
-
var stdin_default$
|
|
4199
|
-
withInstall(stdin_default$
|
|
4200
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4201
|
-
const _BottomNavigationItemComponent = stdin_default$
|
|
4202
|
-
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;
|
|
4203
4235
|
const props$13 = {
|
|
4204
4236
|
separator: String,
|
|
4205
4237
|
onClick: defineListenerProp()
|
|
@@ -4292,11 +4324,11 @@ const __sfc__$1b = vue.defineComponent({
|
|
|
4292
4324
|
}
|
|
4293
4325
|
});
|
|
4294
4326
|
__sfc__$1b.render = __render__$1a;
|
|
4295
|
-
var stdin_default$
|
|
4296
|
-
withInstall(stdin_default$
|
|
4297
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4298
|
-
const _BreadcrumbComponent = stdin_default$
|
|
4299
|
-
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;
|
|
4300
4332
|
const props$12 = {
|
|
4301
4333
|
separator: {
|
|
4302
4334
|
type: String,
|
|
@@ -4334,11 +4366,11 @@ const __sfc__$1a = vue.defineComponent({
|
|
|
4334
4366
|
}
|
|
4335
4367
|
});
|
|
4336
4368
|
__sfc__$1a.render = __render__$19;
|
|
4337
|
-
var stdin_default$
|
|
4338
|
-
withInstall(stdin_default$
|
|
4339
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4340
|
-
const _BreadcrumbsComponent = stdin_default$
|
|
4341
|
-
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;
|
|
4342
4374
|
const props$11 = {
|
|
4343
4375
|
type: {
|
|
4344
4376
|
type: String,
|
|
@@ -4404,11 +4436,11 @@ const __sfc__$19 = vue.defineComponent({
|
|
|
4404
4436
|
}
|
|
4405
4437
|
});
|
|
4406
4438
|
__sfc__$19.render = __render__$18;
|
|
4407
|
-
var stdin_default$
|
|
4408
|
-
withInstall(stdin_default$
|
|
4409
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4410
|
-
const _ButtonGroupComponent = stdin_default$
|
|
4411
|
-
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;
|
|
4412
4444
|
const props$10 = {
|
|
4413
4445
|
src: String,
|
|
4414
4446
|
fit: {
|
|
@@ -4642,10 +4674,10 @@ function __render__$17(_ctx, _cache) {
|
|
|
4642
4674
|
}
|
|
4643
4675
|
const __sfc__$18 = vue.defineComponent({
|
|
4644
4676
|
name: name$10,
|
|
4645
|
-
directives: { Ripple: stdin_default$
|
|
4677
|
+
directives: { Ripple: stdin_default$5V },
|
|
4646
4678
|
components: {
|
|
4647
|
-
VarIcon: stdin_default$
|
|
4648
|
-
VarButton: stdin_default$
|
|
4679
|
+
VarIcon: stdin_default$5R,
|
|
4680
|
+
VarButton: stdin_default$5u
|
|
4649
4681
|
},
|
|
4650
4682
|
props: props$10,
|
|
4651
4683
|
setup(props2) {
|
|
@@ -4775,11 +4807,11 @@ const __sfc__$18 = vue.defineComponent({
|
|
|
4775
4807
|
}
|
|
4776
4808
|
});
|
|
4777
4809
|
__sfc__$18.render = __render__$17;
|
|
4778
|
-
var stdin_default$
|
|
4779
|
-
withInstall(stdin_default$
|
|
4780
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4781
|
-
const _CardComponent = stdin_default$
|
|
4782
|
-
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;
|
|
4783
4815
|
const props$$ = {
|
|
4784
4816
|
title: String,
|
|
4785
4817
|
icon: pickProps(props$1f, "name"),
|
|
@@ -4878,8 +4910,8 @@ function __render__$16(_ctx, _cache) {
|
|
|
4878
4910
|
}
|
|
4879
4911
|
const __sfc__$17 = vue.defineComponent({
|
|
4880
4912
|
name: name$$,
|
|
4881
|
-
components: { VarIcon: stdin_default$
|
|
4882
|
-
directives: { Ripple: stdin_default$
|
|
4913
|
+
components: { VarIcon: stdin_default$5R },
|
|
4914
|
+
directives: { Ripple: stdin_default$5V },
|
|
4883
4915
|
props: props$$,
|
|
4884
4916
|
setup(props2) {
|
|
4885
4917
|
const borderOffsetStyles = vue.computed(() => {
|
|
@@ -4904,11 +4936,11 @@ const __sfc__$17 = vue.defineComponent({
|
|
|
4904
4936
|
}
|
|
4905
4937
|
});
|
|
4906
4938
|
__sfc__$17.render = __render__$16;
|
|
4907
|
-
var stdin_default$
|
|
4908
|
-
withInstall(stdin_default$
|
|
4909
|
-
withPropsDefaultsSetter(stdin_default$
|
|
4910
|
-
const _CellComponent = stdin_default$
|
|
4911
|
-
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;
|
|
4912
4944
|
const props$_ = {
|
|
4913
4945
|
errorMessage: {
|
|
4914
4946
|
type: String,
|
|
@@ -5001,11 +5033,11 @@ const __sfc__$16 = vue.defineComponent({
|
|
|
5001
5033
|
setup: () => ({ n: n$15 })
|
|
5002
5034
|
});
|
|
5003
5035
|
__sfc__$16.render = __render__$15;
|
|
5004
|
-
var stdin_default$
|
|
5005
|
-
withInstall(stdin_default$
|
|
5006
|
-
withPropsDefaultsSetter(stdin_default$
|
|
5007
|
-
const _FormDetailsComponent = stdin_default$
|
|
5008
|
-
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;
|
|
5009
5041
|
const props$Z = {
|
|
5010
5042
|
modelValue: {
|
|
5011
5043
|
type: [String, Number, Boolean, Object, Array],
|
|
@@ -5199,11 +5231,11 @@ function __render__$14(_ctx, _cache) {
|
|
|
5199
5231
|
}
|
|
5200
5232
|
const __sfc__$15 = vue.defineComponent({
|
|
5201
5233
|
name: name$Z,
|
|
5202
|
-
directives: { Ripple: stdin_default$
|
|
5234
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
5203
5235
|
components: {
|
|
5204
|
-
VarIcon: stdin_default$
|
|
5205
|
-
VarFormDetails: stdin_default$
|
|
5206
|
-
VarHoverOverlay: stdin_default$
|
|
5236
|
+
VarIcon: stdin_default$5R,
|
|
5237
|
+
VarFormDetails: stdin_default$5a,
|
|
5238
|
+
VarHoverOverlay: stdin_default$5P
|
|
5207
5239
|
},
|
|
5208
5240
|
props: props$Z,
|
|
5209
5241
|
setup(props2) {
|
|
@@ -5337,17 +5369,38 @@ const __sfc__$15 = vue.defineComponent({
|
|
|
5337
5369
|
}
|
|
5338
5370
|
});
|
|
5339
5371
|
__sfc__$15.render = __render__$14;
|
|
5340
|
-
var stdin_default$
|
|
5341
|
-
withInstall(stdin_default$
|
|
5342
|
-
withPropsDefaultsSetter(stdin_default$
|
|
5343
|
-
const _CheckboxComponent = stdin_default$
|
|
5344
|
-
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
|
+
});
|
|
5345
5397
|
const props$Y = {
|
|
5346
5398
|
modelValue: {
|
|
5347
5399
|
type: Array,
|
|
5348
5400
|
default: () => []
|
|
5349
5401
|
},
|
|
5350
5402
|
max: [String, Number],
|
|
5403
|
+
options: Array,
|
|
5351
5404
|
direction: {
|
|
5352
5405
|
type: String,
|
|
5353
5406
|
default: "horizontal"
|
|
@@ -5362,6 +5415,7 @@ const props$Y = {
|
|
|
5362
5415
|
};
|
|
5363
5416
|
const { name: name$Y, n: n$13, classes: classes$T } = createNamespace("checkbox-group");
|
|
5364
5417
|
function __render__$13(_ctx, _cache) {
|
|
5418
|
+
const _component_checkbox_group_option = vue.resolveComponent("checkbox-group-option");
|
|
5365
5419
|
const _component_var_form_details = vue.resolveComponent("var-form-details");
|
|
5366
5420
|
return vue.openBlock(), vue.createElementBlock(
|
|
5367
5421
|
"div",
|
|
@@ -5375,6 +5429,19 @@ function __render__$13(_ctx, _cache) {
|
|
|
5375
5429
|
class: vue.normalizeClass(_ctx.classes(_ctx.n(), _ctx.n(`--${_ctx.direction}`)))
|
|
5376
5430
|
},
|
|
5377
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),
|
|
5378
5445
|
vue.renderSlot(_ctx.$slots, "default")
|
|
5379
5446
|
],
|
|
5380
5447
|
2
|
|
@@ -5388,11 +5455,12 @@ function __render__$13(_ctx, _cache) {
|
|
|
5388
5455
|
}
|
|
5389
5456
|
const __sfc__$14 = vue.defineComponent({
|
|
5390
5457
|
name: name$Y,
|
|
5391
|
-
components: { VarFormDetails: stdin_default$
|
|
5458
|
+
components: { VarFormDetails: stdin_default$5a, CheckboxGroupOption: stdin_default$57 },
|
|
5392
5459
|
props: props$Y,
|
|
5393
5460
|
setup(props2) {
|
|
5394
5461
|
const max2 = vue.computed(() => props2.max);
|
|
5395
5462
|
const checkedCount = vue.computed(() => props2.modelValue.length);
|
|
5463
|
+
const checkboxGroupOptions = vue.computed(() => isArray(props2.options) ? props2.options : []);
|
|
5396
5464
|
const { length, checkboxes, bindCheckboxes } = useCheckboxes();
|
|
5397
5465
|
const { bindForm } = useForm();
|
|
5398
5466
|
const {
|
|
@@ -5442,7 +5510,7 @@ const __sfc__$14 = vue.defineComponent({
|
|
|
5442
5510
|
change(modelValue.filter((value) => value !== changedValue));
|
|
5443
5511
|
}
|
|
5444
5512
|
function syncCheckboxes() {
|
|
5445
|
-
|
|
5513
|
+
checkboxes.forEach(({ sync }) => sync(props2.modelValue));
|
|
5446
5514
|
}
|
|
5447
5515
|
function resetWithAnimation() {
|
|
5448
5516
|
checkboxes.forEach((checkbox) => checkbox.resetWithAnimation());
|
|
@@ -5470,6 +5538,7 @@ const __sfc__$14 = vue.defineComponent({
|
|
|
5470
5538
|
}
|
|
5471
5539
|
return {
|
|
5472
5540
|
errorMessage,
|
|
5541
|
+
checkboxGroupOptions,
|
|
5473
5542
|
n: n$13,
|
|
5474
5543
|
classes: classes$T,
|
|
5475
5544
|
checkAll: checkAll2,
|
|
@@ -5563,7 +5632,7 @@ function __render__$12(_ctx, _cache) {
|
|
|
5563
5632
|
const __sfc__$13 = vue.defineComponent({
|
|
5564
5633
|
name: name$X,
|
|
5565
5634
|
components: {
|
|
5566
|
-
VarIcon: stdin_default$
|
|
5635
|
+
VarIcon: stdin_default$5R
|
|
5567
5636
|
},
|
|
5568
5637
|
inheritAttrs: false,
|
|
5569
5638
|
props: props$X,
|
|
@@ -6084,7 +6153,7 @@ function __render__$$(_ctx, _cache) {
|
|
|
6084
6153
|
const __sfc__$10 = vue.defineComponent({
|
|
6085
6154
|
name: name$U,
|
|
6086
6155
|
components: {
|
|
6087
|
-
VarIcon: stdin_default$
|
|
6156
|
+
VarIcon: stdin_default$5R
|
|
6088
6157
|
},
|
|
6089
6158
|
props: props$U,
|
|
6090
6159
|
setup(props2) {
|
|
@@ -8854,11 +8923,11 @@ function __render__$Y(_ctx, _cache) {
|
|
|
8854
8923
|
const __sfc__$Z = vue.defineComponent({
|
|
8855
8924
|
name: name$R,
|
|
8856
8925
|
components: {
|
|
8857
|
-
VarButton: stdin_default$
|
|
8858
|
-
VarIcon: stdin_default$
|
|
8859
|
-
VarFormDetails: stdin_default$
|
|
8926
|
+
VarButton: stdin_default$5u,
|
|
8927
|
+
VarIcon: stdin_default$5R,
|
|
8928
|
+
VarFormDetails: stdin_default$5a
|
|
8860
8929
|
},
|
|
8861
|
-
directives: { Ripple: stdin_default$
|
|
8930
|
+
directives: { Ripple: stdin_default$5V },
|
|
8862
8931
|
inheritAttrs: false,
|
|
8863
8932
|
props: props$R,
|
|
8864
8933
|
setup(props2) {
|
|
@@ -9607,8 +9676,8 @@ function __render__$X(_ctx, _cache) {
|
|
|
9607
9676
|
const __sfc__$Y = vue.defineComponent({
|
|
9608
9677
|
name: "PanelHeader",
|
|
9609
9678
|
components: {
|
|
9610
|
-
VarButton: stdin_default$
|
|
9611
|
-
VarIcon: stdin_default$
|
|
9679
|
+
VarButton: stdin_default$5u,
|
|
9680
|
+
VarIcon: stdin_default$5R
|
|
9612
9681
|
},
|
|
9613
9682
|
props: {
|
|
9614
9683
|
date: {
|
|
@@ -9755,7 +9824,7 @@ function __render__$W(_ctx, _cache) {
|
|
|
9755
9824
|
const __sfc__$X = vue.defineComponent({
|
|
9756
9825
|
name: "MonthPickerPanel",
|
|
9757
9826
|
components: {
|
|
9758
|
-
VarButton: stdin_default$
|
|
9827
|
+
VarButton: stdin_default$5u,
|
|
9759
9828
|
PanelHeader: stdin_default$4S
|
|
9760
9829
|
},
|
|
9761
9830
|
props: {
|
|
@@ -10206,7 +10275,7 @@ function __render__$U(_ctx, _cache) {
|
|
|
10206
10275
|
const __sfc__$V = vue.defineComponent({
|
|
10207
10276
|
name: "YearPickerPanel",
|
|
10208
10277
|
components: {
|
|
10209
|
-
VarButton: stdin_default$
|
|
10278
|
+
VarButton: stdin_default$5u,
|
|
10210
10279
|
VarSticky: stdin_default$4P,
|
|
10211
10280
|
PanelHeader: stdin_default$4S
|
|
10212
10281
|
},
|
|
@@ -10521,7 +10590,7 @@ function __render__$T(_ctx, _cache) {
|
|
|
10521
10590
|
const __sfc__$U = vue.defineComponent({
|
|
10522
10591
|
name: "DayPickerPanel",
|
|
10523
10592
|
components: {
|
|
10524
|
-
VarButton: stdin_default$
|
|
10593
|
+
VarButton: stdin_default$5u,
|
|
10525
10594
|
PanelHeader: stdin_default$4S
|
|
10526
10595
|
},
|
|
10527
10596
|
props: {
|
|
@@ -11621,8 +11690,8 @@ function __render__$R(_ctx, _cache) {
|
|
|
11621
11690
|
const __sfc__$S = vue.defineComponent({
|
|
11622
11691
|
name: name$O,
|
|
11623
11692
|
components: {
|
|
11624
|
-
VarPopup: stdin_default$
|
|
11625
|
-
VarButton: stdin_default$
|
|
11693
|
+
VarPopup: stdin_default$5T,
|
|
11694
|
+
VarButton: stdin_default$5u
|
|
11626
11695
|
},
|
|
11627
11696
|
inheritAttrs: false,
|
|
11628
11697
|
props: props$O,
|
|
@@ -14184,7 +14253,7 @@ var stdin_default$4A = vue.defineComponent({
|
|
|
14184
14253
|
active: isActive.value
|
|
14185
14254
|
}) : null;
|
|
14186
14255
|
}
|
|
14187
|
-
return vue.withDirectives(vue.createVNode(stdin_default$
|
|
14256
|
+
return vue.withDirectives(vue.createVNode(stdin_default$5u, {
|
|
14188
14257
|
"var-fab-cover": true,
|
|
14189
14258
|
"class": n$M("trigger"),
|
|
14190
14259
|
"type": props2.type,
|
|
@@ -14193,7 +14262,7 @@ var stdin_default$4A = vue.defineComponent({
|
|
|
14193
14262
|
"elevation": props2.elevation,
|
|
14194
14263
|
"iconContainer": true
|
|
14195
14264
|
}, {
|
|
14196
|
-
default: () => [vue.createVNode(stdin_default$
|
|
14265
|
+
default: () => [vue.createVNode(stdin_default$5R, {
|
|
14197
14266
|
"var-fab-cover": true,
|
|
14198
14267
|
"class": classes$E([isActive.value, n$M("trigger-active-icon"), n$M("trigger-inactive-icon")]),
|
|
14199
14268
|
"name": isActive.value ? props2.activeIcon : props2.inactiveIcon,
|
|
@@ -14515,7 +14584,7 @@ function __render__$M(_ctx, _cache) {
|
|
|
14515
14584
|
}
|
|
14516
14585
|
const __sfc__$N = vue.defineComponent({
|
|
14517
14586
|
name: name$I,
|
|
14518
|
-
components: { VarIcon: stdin_default$
|
|
14587
|
+
components: { VarIcon: stdin_default$5R },
|
|
14519
14588
|
props: props$I,
|
|
14520
14589
|
setup(props2) {
|
|
14521
14590
|
const placeholderTextEl = vue.ref(null);
|
|
@@ -15011,8 +15080,8 @@ function __render__$J(_ctx, _cache) {
|
|
|
15011
15080
|
const __sfc__$K = vue.defineComponent({
|
|
15012
15081
|
name: name$F,
|
|
15013
15082
|
directives: {
|
|
15014
|
-
Lazy: stdin_default$
|
|
15015
|
-
Ripple: stdin_default$
|
|
15083
|
+
Lazy: stdin_default$5C,
|
|
15084
|
+
Ripple: stdin_default$5V
|
|
15016
15085
|
},
|
|
15017
15086
|
props: props$F,
|
|
15018
15087
|
setup(props2, { slots }) {
|
|
@@ -15290,8 +15359,8 @@ function __render__$I(_ctx, _cache) {
|
|
|
15290
15359
|
}
|
|
15291
15360
|
const __sfc__$J = vue.defineComponent({
|
|
15292
15361
|
name: name$E,
|
|
15293
|
-
directives: { Hover: stdin_default$
|
|
15294
|
-
components: { VarButton: stdin_default$
|
|
15362
|
+
directives: { Hover: stdin_default$5O },
|
|
15363
|
+
components: { VarButton: stdin_default$5u, VarIcon: stdin_default$5R },
|
|
15295
15364
|
props: props$E,
|
|
15296
15365
|
setup(props2) {
|
|
15297
15366
|
const swipeEl = vue.ref(null);
|
|
@@ -15836,8 +15905,8 @@ const __sfc__$H = vue.defineComponent({
|
|
|
15836
15905
|
components: {
|
|
15837
15906
|
VarSwipe: stdin_default$4p,
|
|
15838
15907
|
VarSwipeItem: stdin_default$4n,
|
|
15839
|
-
VarPopup: stdin_default$
|
|
15840
|
-
VarIcon: stdin_default$
|
|
15908
|
+
VarPopup: stdin_default$5T,
|
|
15909
|
+
VarIcon: stdin_default$5R
|
|
15841
15910
|
},
|
|
15842
15911
|
inheritAttrs: false,
|
|
15843
15912
|
props: props$D,
|
|
@@ -16662,7 +16731,7 @@ function __render__$D(_ctx, _cache) {
|
|
|
16662
16731
|
const __sfc__$E = vue.defineComponent({
|
|
16663
16732
|
name: name$z,
|
|
16664
16733
|
components: {
|
|
16665
|
-
VarFormDetails: stdin_default$
|
|
16734
|
+
VarFormDetails: stdin_default$5a,
|
|
16666
16735
|
VarFieldDecorator: stdin_default$4x
|
|
16667
16736
|
},
|
|
16668
16737
|
props: props$A,
|
|
@@ -17141,8 +17210,8 @@ function __render__$B(_ctx, _cache) {
|
|
|
17141
17210
|
}
|
|
17142
17211
|
const __sfc__$C = vue.defineComponent({
|
|
17143
17212
|
name: name$x,
|
|
17144
|
-
directives: { Ripple: stdin_default$
|
|
17145
|
-
components: { VarLoading: stdin_default$
|
|
17213
|
+
directives: { Ripple: stdin_default$5V },
|
|
17214
|
+
components: { VarLoading: stdin_default$5w },
|
|
17146
17215
|
props: props$y,
|
|
17147
17216
|
setup(props2) {
|
|
17148
17217
|
const listEl = vue.ref(null);
|
|
@@ -17232,7 +17301,7 @@ var stdin_default$4a = vue.defineComponent({
|
|
|
17232
17301
|
return () => vue.createVNode("div", {
|
|
17233
17302
|
"class": classes$t(n$z(), [props2.error, n$z("--error")]),
|
|
17234
17303
|
"style": {
|
|
17235
|
-
zIndex: stdin_default$
|
|
17304
|
+
zIndex: stdin_default$5W.zIndex + 10,
|
|
17236
17305
|
width: `${props2.value}%`,
|
|
17237
17306
|
opacity: props2.opacity,
|
|
17238
17307
|
height: toSizeUnit(props2.height),
|
|
@@ -17586,10 +17655,10 @@ function __render__$z(_ctx, _cache) {
|
|
|
17586
17655
|
}
|
|
17587
17656
|
const __sfc__$A = vue.defineComponent({
|
|
17588
17657
|
name: name$u,
|
|
17589
|
-
directives: { Ripple: stdin_default$
|
|
17658
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
17590
17659
|
components: {
|
|
17591
|
-
VarCheckbox: stdin_default$
|
|
17592
|
-
VarHoverOverlay: stdin_default$
|
|
17660
|
+
VarCheckbox: stdin_default$58,
|
|
17661
|
+
VarHoverOverlay: stdin_default$5P
|
|
17593
17662
|
},
|
|
17594
17663
|
props: props$u,
|
|
17595
17664
|
setup(props2) {
|
|
@@ -17998,10 +18067,10 @@ function __render__$x(_ctx, _cache) {
|
|
|
17998
18067
|
}
|
|
17999
18068
|
const __sfc__$y = vue.defineComponent({
|
|
18000
18069
|
name: name$s,
|
|
18001
|
-
directives: { Ripple: stdin_default$
|
|
18070
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
18002
18071
|
components: {
|
|
18003
|
-
VarCheckbox: stdin_default$
|
|
18004
|
-
VarHoverOverlay: stdin_default$
|
|
18072
|
+
VarCheckbox: stdin_default$58,
|
|
18073
|
+
VarHoverOverlay: stdin_default$5P
|
|
18005
18074
|
},
|
|
18006
18075
|
props: props$s,
|
|
18007
18076
|
setup(props2) {
|
|
@@ -18447,10 +18516,10 @@ const __sfc__$x = vue.defineComponent({
|
|
|
18447
18516
|
components: {
|
|
18448
18517
|
VarMenuSelect: stdin_default$43,
|
|
18449
18518
|
VarMenuOption: stdin_default$45,
|
|
18450
|
-
VarIcon: stdin_default$
|
|
18519
|
+
VarIcon: stdin_default$5R,
|
|
18451
18520
|
VarInput: stdin_default$4f
|
|
18452
18521
|
},
|
|
18453
|
-
directives: { Ripple: stdin_default$
|
|
18522
|
+
directives: { Ripple: stdin_default$5V },
|
|
18454
18523
|
props: props$q,
|
|
18455
18524
|
setup(props2) {
|
|
18456
18525
|
const quickJumperValue = vue.ref("");
|
|
@@ -18657,7 +18726,7 @@ function __render__$v(_ctx, _cache) {
|
|
|
18657
18726
|
}
|
|
18658
18727
|
const __sfc__$w = vue.defineComponent({
|
|
18659
18728
|
name: name$p,
|
|
18660
|
-
directives: { Ripple: stdin_default$
|
|
18729
|
+
directives: { Ripple: stdin_default$5V },
|
|
18661
18730
|
props: props$p,
|
|
18662
18731
|
setup(props2) {
|
|
18663
18732
|
function handleClick(e) {
|
|
@@ -18965,8 +19034,8 @@ function __render__$u(_ctx, _cache) {
|
|
|
18965
19034
|
const __sfc__$v = vue.defineComponent({
|
|
18966
19035
|
name: name$o,
|
|
18967
19036
|
components: {
|
|
18968
|
-
VarButton: stdin_default$
|
|
18969
|
-
VarPopup: stdin_default$
|
|
19037
|
+
VarButton: stdin_default$5u,
|
|
19038
|
+
VarPopup: stdin_default$5T
|
|
18970
19039
|
},
|
|
18971
19040
|
inheritAttrs: false,
|
|
18972
19041
|
props: props$o,
|
|
@@ -19676,7 +19745,7 @@ function __render__$s(_ctx, _cache) {
|
|
|
19676
19745
|
}
|
|
19677
19746
|
const __sfc__$t = vue.defineComponent({
|
|
19678
19747
|
name: name$m,
|
|
19679
|
-
components: { VarIcon: stdin_default$
|
|
19748
|
+
components: { VarIcon: stdin_default$5R },
|
|
19680
19749
|
props: props$m,
|
|
19681
19750
|
setup(props2) {
|
|
19682
19751
|
const controlPosition = vue.ref(0);
|
|
@@ -19966,11 +20035,11 @@ function __render__$r(_ctx, _cache) {
|
|
|
19966
20035
|
}
|
|
19967
20036
|
const __sfc__$s = vue.defineComponent({
|
|
19968
20037
|
name: name$l,
|
|
19969
|
-
directives: { Ripple: stdin_default$
|
|
20038
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
19970
20039
|
components: {
|
|
19971
|
-
VarIcon: stdin_default$
|
|
19972
|
-
VarFormDetails: stdin_default$
|
|
19973
|
-
VarHoverOverlay: stdin_default$
|
|
20040
|
+
VarIcon: stdin_default$5R,
|
|
20041
|
+
VarFormDetails: stdin_default$5a,
|
|
20042
|
+
VarHoverOverlay: stdin_default$5P
|
|
19974
20043
|
},
|
|
19975
20044
|
inheritAttrs: false,
|
|
19976
20045
|
props: props$l,
|
|
@@ -20153,7 +20222,7 @@ function __render__$q(_ctx, _cache) {
|
|
|
20153
20222
|
}
|
|
20154
20223
|
const __sfc__$r = vue.defineComponent({
|
|
20155
20224
|
name: name$k,
|
|
20156
|
-
components: { VarFormDetails: stdin_default$
|
|
20225
|
+
components: { VarFormDetails: stdin_default$5a },
|
|
20157
20226
|
props: props$k,
|
|
20158
20227
|
setup(props2) {
|
|
20159
20228
|
const { length, radios, bindRadios } = useRadios();
|
|
@@ -20358,11 +20427,11 @@ function __render__$p(_ctx, _cache) {
|
|
|
20358
20427
|
const __sfc__$q = vue.defineComponent({
|
|
20359
20428
|
name: name$j,
|
|
20360
20429
|
components: {
|
|
20361
|
-
VarIcon: stdin_default$
|
|
20362
|
-
VarFormDetails: stdin_default$
|
|
20363
|
-
VarHoverOverlay: stdin_default$
|
|
20430
|
+
VarIcon: stdin_default$5R,
|
|
20431
|
+
VarFormDetails: stdin_default$5a,
|
|
20432
|
+
VarHoverOverlay: stdin_default$5P
|
|
20364
20433
|
},
|
|
20365
|
-
directives: { Ripple: stdin_default$
|
|
20434
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
20366
20435
|
props: props$j,
|
|
20367
20436
|
setup(props2) {
|
|
20368
20437
|
const currentHoveringValue = vue.ref(-1);
|
|
@@ -21163,11 +21232,11 @@ function __render__$g(_ctx, _cache) {
|
|
|
21163
21232
|
const __sfc__$h = vue.defineComponent({
|
|
21164
21233
|
name: name$g,
|
|
21165
21234
|
components: {
|
|
21166
|
-
VarIcon: stdin_default$
|
|
21235
|
+
VarIcon: stdin_default$5R,
|
|
21167
21236
|
VarMenu: stdin_default$47,
|
|
21168
21237
|
VarChip: stdin_default$53,
|
|
21169
21238
|
VarFieldDecorator: stdin_default$4x,
|
|
21170
|
-
VarFormDetails: stdin_default$
|
|
21239
|
+
VarFormDetails: stdin_default$5a
|
|
21171
21240
|
},
|
|
21172
21241
|
props: props$g,
|
|
21173
21242
|
setup(props2) {
|
|
@@ -21837,10 +21906,10 @@ function __render__$e(_ctx, _cache) {
|
|
|
21837
21906
|
const __sfc__$f = vue.defineComponent({
|
|
21838
21907
|
name: name$e,
|
|
21839
21908
|
components: {
|
|
21840
|
-
VarFormDetails: stdin_default$
|
|
21841
|
-
VarHoverOverlay: stdin_default$
|
|
21909
|
+
VarFormDetails: stdin_default$5a,
|
|
21910
|
+
VarHoverOverlay: stdin_default$5P
|
|
21842
21911
|
},
|
|
21843
|
-
directives: { Hover: stdin_default$
|
|
21912
|
+
directives: { Hover: stdin_default$5O },
|
|
21844
21913
|
props: props$e,
|
|
21845
21914
|
setup(props2) {
|
|
21846
21915
|
const maxDistance = vue.ref(0);
|
|
@@ -22383,8 +22452,8 @@ function __render__$d(_ctx, _cache) {
|
|
|
22383
22452
|
const __sfc__$e = vue.defineComponent({
|
|
22384
22453
|
name: "VarSnackbarCore",
|
|
22385
22454
|
components: {
|
|
22386
|
-
VarLoading: stdin_default$
|
|
22387
|
-
VarIcon: stdin_default$
|
|
22455
|
+
VarLoading: stdin_default$5w,
|
|
22456
|
+
VarIcon: stdin_default$5R
|
|
22388
22457
|
},
|
|
22389
22458
|
props: props$d,
|
|
22390
22459
|
setup(props2) {
|
|
@@ -22590,7 +22659,7 @@ const TransitionGroupHost = {
|
|
|
22590
22659
|
});
|
|
22591
22660
|
return vue.createVNode(vue.TransitionGroup, vue.mergeProps(transitionGroupProps, {
|
|
22592
22661
|
"style": {
|
|
22593
|
-
zIndex: stdin_default$
|
|
22662
|
+
zIndex: stdin_default$5W.zIndex
|
|
22594
22663
|
},
|
|
22595
22664
|
"onAfterEnter": opened,
|
|
22596
22665
|
"onAfterLeave": removeUniqOption
|
|
@@ -22939,7 +23008,7 @@ function __render__$b(_ctx, _cache) {
|
|
|
22939
23008
|
}
|
|
22940
23009
|
const __sfc__$c = vue.defineComponent({
|
|
22941
23010
|
name: name$b,
|
|
22942
|
-
components: { VarIcon: stdin_default$
|
|
23011
|
+
components: { VarIcon: stdin_default$5R },
|
|
22943
23012
|
props: props$b,
|
|
22944
23013
|
setup() {
|
|
22945
23014
|
const { index, steps, bindSteps } = useSteps();
|
|
@@ -23217,10 +23286,10 @@ function __render__$9(_ctx, _cache) {
|
|
|
23217
23286
|
const __sfc__$9 = vue.defineComponent({
|
|
23218
23287
|
name: name$8,
|
|
23219
23288
|
components: {
|
|
23220
|
-
VarFormDetails: stdin_default$
|
|
23221
|
-
VarHoverOverlay: stdin_default$
|
|
23289
|
+
VarFormDetails: stdin_default$5a,
|
|
23290
|
+
VarHoverOverlay: stdin_default$5P
|
|
23222
23291
|
},
|
|
23223
|
-
directives: { Ripple: stdin_default$
|
|
23292
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
23224
23293
|
props: props$8,
|
|
23225
23294
|
setup(props2) {
|
|
23226
23295
|
const switchRef = vue.ref(null);
|
|
@@ -23414,7 +23483,7 @@ function __render__$8(_ctx, _cache) {
|
|
|
23414
23483
|
}
|
|
23415
23484
|
const __sfc__$8 = vue.defineComponent({
|
|
23416
23485
|
name: name$7,
|
|
23417
|
-
directives: { Ripple: stdin_default$
|
|
23486
|
+
directives: { Ripple: stdin_default$5V },
|
|
23418
23487
|
props: props$7,
|
|
23419
23488
|
setup(props2) {
|
|
23420
23489
|
const tabEl = vue.ref(null);
|
|
@@ -27952,12 +28021,12 @@ function __render__$1(_ctx, _cache) {
|
|
|
27952
28021
|
}
|
|
27953
28022
|
const __sfc__$1 = vue.defineComponent({
|
|
27954
28023
|
name: name$1,
|
|
27955
|
-
directives: { Ripple: stdin_default$
|
|
28024
|
+
directives: { Ripple: stdin_default$5V, Hover: stdin_default$5O },
|
|
27956
28025
|
components: {
|
|
27957
|
-
VarIcon: stdin_default$
|
|
27958
|
-
VarPopup: stdin_default$
|
|
27959
|
-
VarFormDetails: stdin_default$
|
|
27960
|
-
VarHoverOverlay: stdin_default$
|
|
28026
|
+
VarIcon: stdin_default$5R,
|
|
28027
|
+
VarPopup: stdin_default$5T,
|
|
28028
|
+
VarFormDetails: stdin_default$5a,
|
|
28029
|
+
VarHoverOverlay: stdin_default$5P
|
|
27961
28030
|
},
|
|
27962
28031
|
props: props$1,
|
|
27963
28032
|
setup(props2) {
|
|
@@ -28531,30 +28600,30 @@ withInstall(stdin_default$1);
|
|
|
28531
28600
|
withPropsDefaultsSetter(stdin_default$1, props);
|
|
28532
28601
|
const _WatermarkComponent = stdin_default$1;
|
|
28533
28602
|
var stdin_default = stdin_default$1;
|
|
28534
|
-
const version = "3.2.
|
|
28603
|
+
const version = "3.2.11";
|
|
28535
28604
|
function install(app) {
|
|
28536
|
-
stdin_default$
|
|
28537
|
-
stdin_default$
|
|
28538
|
-
stdin_default$
|
|
28539
|
-
stdin_default$
|
|
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$
|
|
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);
|
|
28551
28620
|
stdin_default$55.install && app.use(stdin_default$55);
|
|
28552
28621
|
stdin_default$53.install && app.use(stdin_default$53);
|
|
28553
28622
|
stdin_default$51.install && app.use(stdin_default$51);
|
|
28554
28623
|
stdin_default$4$.install && app.use(stdin_default$4$);
|
|
28555
28624
|
stdin_default$4Z.install && app.use(stdin_default$4Z);
|
|
28556
28625
|
stdin_default$4X.install && app.use(stdin_default$4X);
|
|
28557
|
-
stdin_default$
|
|
28626
|
+
stdin_default$5W.install && app.use(stdin_default$5W);
|
|
28558
28627
|
stdin_default$4V.install && app.use(stdin_default$4V);
|
|
28559
28628
|
stdin_default$4T.install && app.use(stdin_default$4T);
|
|
28560
28629
|
stdin_default$4L.install && app.use(stdin_default$4L);
|
|
@@ -28566,21 +28635,21 @@ function install(app) {
|
|
|
28566
28635
|
stdin_default$4x.install && app.use(stdin_default$4x);
|
|
28567
28636
|
stdin_default$4v.install && app.use(stdin_default$4v);
|
|
28568
28637
|
stdin_default$4t.install && app.use(stdin_default$4t);
|
|
28569
|
-
stdin_default$
|
|
28570
|
-
stdin_default$5N.install && app.use(stdin_default$5N);
|
|
28638
|
+
stdin_default$5a.install && app.use(stdin_default$5a);
|
|
28571
28639
|
stdin_default$5O.install && app.use(stdin_default$5O);
|
|
28572
|
-
stdin_default$
|
|
28640
|
+
stdin_default$5P.install && app.use(stdin_default$5P);
|
|
28641
|
+
stdin_default$5R.install && app.use(stdin_default$5R);
|
|
28573
28642
|
stdin_default$4r.install && app.use(stdin_default$4r);
|
|
28574
28643
|
stdin_default$4l.install && app.use(stdin_default$4l);
|
|
28575
28644
|
stdin_default$4j.install && app.use(stdin_default$4j);
|
|
28576
28645
|
stdin_default$4h.install && app.use(stdin_default$4h);
|
|
28577
28646
|
stdin_default$4f.install && app.use(stdin_default$4f);
|
|
28578
|
-
stdin_default$
|
|
28647
|
+
stdin_default$5C.install && app.use(stdin_default$5C);
|
|
28579
28648
|
stdin_default$4d.install && app.use(stdin_default$4d);
|
|
28580
28649
|
stdin_default$4b.install && app.use(stdin_default$4b);
|
|
28581
|
-
stdin_default$
|
|
28650
|
+
stdin_default$5w.install && app.use(stdin_default$5w);
|
|
28582
28651
|
stdin_default$49.install && app.use(stdin_default$49);
|
|
28583
|
-
stdin_default$
|
|
28652
|
+
stdin_default$5H.install && app.use(stdin_default$5H);
|
|
28584
28653
|
stdin_default$47.install && app.use(stdin_default$47);
|
|
28585
28654
|
stdin_default$45.install && app.use(stdin_default$45);
|
|
28586
28655
|
stdin_default$43.install && app.use(stdin_default$43);
|
|
@@ -28589,14 +28658,14 @@ function install(app) {
|
|
|
28589
28658
|
stdin_default$3Z.install && app.use(stdin_default$3Z);
|
|
28590
28659
|
stdin_default$3X.install && app.use(stdin_default$3X);
|
|
28591
28660
|
stdin_default$3V.install && app.use(stdin_default$3V);
|
|
28592
|
-
stdin_default$
|
|
28661
|
+
stdin_default$5T.install && app.use(stdin_default$5T);
|
|
28593
28662
|
stdin_default$3T.install && app.use(stdin_default$3T);
|
|
28594
28663
|
stdin_default$3R.install && app.use(stdin_default$3R);
|
|
28595
28664
|
stdin_default$3P.install && app.use(stdin_default$3P);
|
|
28596
28665
|
stdin_default$3N.install && app.use(stdin_default$3N);
|
|
28597
28666
|
stdin_default$3L.install && app.use(stdin_default$3L);
|
|
28598
28667
|
stdin_default$3D.install && app.use(stdin_default$3D);
|
|
28599
|
-
stdin_default$
|
|
28668
|
+
stdin_default$5V.install && app.use(stdin_default$5V);
|
|
28600
28669
|
stdin_default$3B.install && app.use(stdin_default$3B);
|
|
28601
28670
|
stdin_default$3z.install && app.use(stdin_default$3z);
|
|
28602
28671
|
stdin_default$3x.install && app.use(stdin_default$3x);
|
|
@@ -28624,28 +28693,28 @@ function install(app) {
|
|
|
28624
28693
|
const index_bundle = {
|
|
28625
28694
|
version,
|
|
28626
28695
|
install,
|
|
28627
|
-
ActionSheet: stdin_default$
|
|
28628
|
-
AppBar: stdin_default$
|
|
28629
|
-
Avatar: stdin_default$
|
|
28630
|
-
AvatarGroup: stdin_default$
|
|
28631
|
-
BackTop: stdin_default$
|
|
28632
|
-
Badge: stdin_default$
|
|
28633
|
-
BottomNavigation: stdin_default$
|
|
28634
|
-
BottomNavigationItem: stdin_default$
|
|
28635
|
-
Breadcrumb: stdin_default$
|
|
28636
|
-
Breadcrumbs: stdin_default$
|
|
28637
|
-
Button: stdin_default$
|
|
28638
|
-
ButtonGroup: stdin_default$
|
|
28639
|
-
Card: stdin_default$
|
|
28640
|
-
Cell: stdin_default$
|
|
28641
|
-
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,
|
|
28642
28711
|
CheckboxGroup: stdin_default$55,
|
|
28643
28712
|
Chip: stdin_default$53,
|
|
28644
28713
|
Col: stdin_default$51,
|
|
28645
28714
|
Collapse: stdin_default$4$,
|
|
28646
28715
|
CollapseItem: stdin_default$4Z,
|
|
28647
28716
|
CollapseTransition: stdin_default$4X,
|
|
28648
|
-
Context: stdin_default$
|
|
28717
|
+
Context: stdin_default$5W,
|
|
28649
28718
|
Countdown: stdin_default$4V,
|
|
28650
28719
|
Counter: stdin_default$4T,
|
|
28651
28720
|
DatePicker: stdin_default$4L,
|
|
@@ -28657,21 +28726,21 @@ const index_bundle = {
|
|
|
28657
28726
|
FieldDecorator: stdin_default$4x,
|
|
28658
28727
|
FloatingPanel: stdin_default$4v,
|
|
28659
28728
|
Form: stdin_default$4t,
|
|
28660
|
-
FormDetails: stdin_default$
|
|
28661
|
-
Hover: stdin_default$
|
|
28662
|
-
HoverOverlay: stdin_default$
|
|
28663
|
-
Icon: stdin_default$
|
|
28729
|
+
FormDetails: stdin_default$5a,
|
|
28730
|
+
Hover: stdin_default$5O,
|
|
28731
|
+
HoverOverlay: stdin_default$5P,
|
|
28732
|
+
Icon: stdin_default$5R,
|
|
28664
28733
|
Image: stdin_default$4r,
|
|
28665
28734
|
ImagePreview: stdin_default$4l,
|
|
28666
28735
|
IndexAnchor: stdin_default$4j,
|
|
28667
28736
|
IndexBar: stdin_default$4h,
|
|
28668
28737
|
Input: stdin_default$4f,
|
|
28669
|
-
Lazy: stdin_default$
|
|
28738
|
+
Lazy: stdin_default$5C,
|
|
28670
28739
|
Link: stdin_default$4d,
|
|
28671
28740
|
List: stdin_default$4b,
|
|
28672
|
-
Loading: stdin_default$
|
|
28741
|
+
Loading: stdin_default$5w,
|
|
28673
28742
|
LoadingBar: stdin_default$49,
|
|
28674
|
-
Locale: stdin_default$
|
|
28743
|
+
Locale: stdin_default$5H,
|
|
28675
28744
|
Menu: stdin_default$47,
|
|
28676
28745
|
MenuOption: stdin_default$45,
|
|
28677
28746
|
MenuSelect: stdin_default$43,
|
|
@@ -28680,14 +28749,14 @@ const index_bundle = {
|
|
|
28680
28749
|
Pagination: stdin_default$3Z,
|
|
28681
28750
|
Paper: stdin_default$3X,
|
|
28682
28751
|
Picker: stdin_default$3V,
|
|
28683
|
-
Popup: stdin_default$
|
|
28752
|
+
Popup: stdin_default$5T,
|
|
28684
28753
|
Progress: stdin_default$3T,
|
|
28685
28754
|
PullRefresh: stdin_default$3R,
|
|
28686
28755
|
Radio: stdin_default$3P,
|
|
28687
28756
|
RadioGroup: stdin_default$3N,
|
|
28688
28757
|
Rate: stdin_default$3L,
|
|
28689
28758
|
Result: stdin_default$3D,
|
|
28690
|
-
Ripple: stdin_default$
|
|
28759
|
+
Ripple: stdin_default$5V,
|
|
28691
28760
|
Row: stdin_default$3B,
|
|
28692
28761
|
Select: stdin_default$3z,
|
|
28693
28762
|
Skeleton: stdin_default$3x,
|
|
@@ -28712,28 +28781,28 @@ const index_bundle = {
|
|
|
28712
28781
|
Uploader: stdin_default$2,
|
|
28713
28782
|
Watermark: stdin_default
|
|
28714
28783
|
};
|
|
28715
|
-
exports.ActionSheet = stdin_default$
|
|
28716
|
-
exports.AppBar = stdin_default$
|
|
28717
|
-
exports.Avatar = stdin_default$
|
|
28718
|
-
exports.AvatarGroup = stdin_default$
|
|
28719
|
-
exports.BackTop = stdin_default$
|
|
28720
|
-
exports.Badge = stdin_default$
|
|
28721
|
-
exports.BottomNavigation = stdin_default$
|
|
28722
|
-
exports.BottomNavigationItem = stdin_default$
|
|
28723
|
-
exports.Breadcrumb = stdin_default$
|
|
28724
|
-
exports.Breadcrumbs = stdin_default$
|
|
28725
|
-
exports.Button = stdin_default$
|
|
28726
|
-
exports.ButtonGroup = stdin_default$
|
|
28727
|
-
exports.Card = stdin_default$
|
|
28728
|
-
exports.Cell = stdin_default$
|
|
28729
|
-
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;
|
|
28730
28799
|
exports.CheckboxGroup = stdin_default$55;
|
|
28731
28800
|
exports.Chip = stdin_default$53;
|
|
28732
28801
|
exports.Col = stdin_default$51;
|
|
28733
28802
|
exports.Collapse = stdin_default$4$;
|
|
28734
28803
|
exports.CollapseItem = stdin_default$4Z;
|
|
28735
28804
|
exports.CollapseTransition = stdin_default$4X;
|
|
28736
|
-
exports.Context = stdin_default$
|
|
28805
|
+
exports.Context = stdin_default$5W;
|
|
28737
28806
|
exports.Countdown = stdin_default$4V;
|
|
28738
28807
|
exports.Counter = stdin_default$4T;
|
|
28739
28808
|
exports.DatePicker = stdin_default$4L;
|
|
@@ -28745,21 +28814,21 @@ exports.Fab = stdin_default$4z;
|
|
|
28745
28814
|
exports.FieldDecorator = stdin_default$4x;
|
|
28746
28815
|
exports.FloatingPanel = stdin_default$4v;
|
|
28747
28816
|
exports.Form = stdin_default$4t;
|
|
28748
|
-
exports.FormDetails = stdin_default$
|
|
28749
|
-
exports.Hover = stdin_default$
|
|
28750
|
-
exports.HoverOverlay = stdin_default$
|
|
28751
|
-
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;
|
|
28752
28821
|
exports.Image = stdin_default$4r;
|
|
28753
28822
|
exports.ImagePreview = stdin_default$4l;
|
|
28754
28823
|
exports.IndexAnchor = stdin_default$4j;
|
|
28755
28824
|
exports.IndexBar = stdin_default$4h;
|
|
28756
28825
|
exports.Input = stdin_default$4f;
|
|
28757
|
-
exports.Lazy = stdin_default$
|
|
28826
|
+
exports.Lazy = stdin_default$5C;
|
|
28758
28827
|
exports.Link = stdin_default$4d;
|
|
28759
28828
|
exports.List = stdin_default$4b;
|
|
28760
|
-
exports.Loading = stdin_default$
|
|
28829
|
+
exports.Loading = stdin_default$5w;
|
|
28761
28830
|
exports.LoadingBar = stdin_default$49;
|
|
28762
|
-
exports.Locale = stdin_default$
|
|
28831
|
+
exports.Locale = stdin_default$5H;
|
|
28763
28832
|
exports.Menu = stdin_default$47;
|
|
28764
28833
|
exports.MenuOption = stdin_default$45;
|
|
28765
28834
|
exports.MenuSelect = stdin_default$43;
|
|
@@ -28769,14 +28838,14 @@ exports.PIXEL = PIXEL;
|
|
|
28769
28838
|
exports.Pagination = stdin_default$3Z;
|
|
28770
28839
|
exports.Paper = stdin_default$3X;
|
|
28771
28840
|
exports.Picker = stdin_default$3V;
|
|
28772
|
-
exports.Popup = stdin_default$
|
|
28841
|
+
exports.Popup = stdin_default$5T;
|
|
28773
28842
|
exports.Progress = stdin_default$3T;
|
|
28774
28843
|
exports.PullRefresh = stdin_default$3R;
|
|
28775
28844
|
exports.Radio = stdin_default$3P;
|
|
28776
28845
|
exports.RadioGroup = stdin_default$3N;
|
|
28777
28846
|
exports.Rate = stdin_default$3L;
|
|
28778
28847
|
exports.Result = stdin_default$3D;
|
|
28779
|
-
exports.Ripple = stdin_default$
|
|
28848
|
+
exports.Ripple = stdin_default$5V;
|
|
28780
28849
|
exports.Row = stdin_default$3B;
|
|
28781
28850
|
exports.SNACKBAR_TYPE = SNACKBAR_TYPE;
|
|
28782
28851
|
exports.Select = stdin_default$3z;
|
|
@@ -28920,7 +28989,7 @@ exports.dialogProps = props$O;
|
|
|
28920
28989
|
exports.dividerProps = props$N;
|
|
28921
28990
|
exports.dragProps = props$M;
|
|
28922
28991
|
exports.ellipsisProps = props$K;
|
|
28923
|
-
exports.enUS = stdin_default$
|
|
28992
|
+
exports.enUS = stdin_default$5L;
|
|
28924
28993
|
exports.fabProps = props$J;
|
|
28925
28994
|
exports.fieldDecoratorProps = props$I;
|
|
28926
28995
|
exports.formDetailsProps = props$_;
|
|
@@ -28981,4 +29050,4 @@ exports.useHoverOverlay = useHoverOverlay;
|
|
|
28981
29050
|
exports.useLocale = useLocale;
|
|
28982
29051
|
exports.version = version;
|
|
28983
29052
|
exports.watermarkProps = props;
|
|
28984
|
-
exports.zhCN = stdin_default$
|
|
29053
|
+
exports.zhCN = stdin_default$5M;
|