@varlet/ui 2.16.7 → 2.16.8-alpha.1695227124357
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/ActionSheet.mjs +97 -67
- package/es/action-sheet/index.mjs +43 -28
- package/es/action-sheet/props.mjs +39 -8
- package/es/app-bar/AppBar.mjs +129 -56
- package/es/app-bar/index.mjs +10 -5
- package/es/app-bar/props.mjs +6 -3
- package/es/avatar/Avatar.mjs +97 -87
- package/es/avatar/index.mjs +10 -5
- package/es/avatar/props.mjs +8 -5
- package/es/avatar-group/AvatarGroup.mjs +26 -20
- package/es/avatar-group/index.mjs +10 -5
- package/es/avatar-group/props.mjs +5 -2
- package/es/back-top/BackTop.mjs +71 -53
- package/es/back-top/index.mjs +10 -5
- package/es/back-top/props.mjs +6 -3
- package/es/badge/Badge.mjs +74 -46
- package/es/badge/index.mjs +10 -5
- package/es/badge/props.mjs +7 -4
- package/es/bottom-navigation/BottomNavigation.mjs +100 -97
- package/es/bottom-navigation/index.mjs +10 -5
- package/es/bottom-navigation/props.mjs +7 -4
- package/es/bottom-navigation/provide.mjs +13 -9
- package/es/bottom-navigation-item/BottomNavigationItem.mjs +93 -74
- package/es/bottom-navigation-item/index.mjs +10 -5
- package/es/bottom-navigation-item/props.mjs +7 -4
- package/es/bottom-navigation-item/provide.mjs +14 -11
- package/es/breadcrumb/Breadcrumb.mjs +51 -36
- package/es/breadcrumb/index.mjs +10 -5
- package/es/breadcrumb/props.mjs +6 -3
- package/es/breadcrumb/provide.mjs +12 -11
- package/es/breadcrumbs/Breadcrumbs.mjs +26 -24
- package/es/breadcrumbs/index.mjs +10 -5
- package/es/breadcrumbs/props.mjs +6 -3
- package/es/breadcrumbs/provide.mjs +11 -9
- package/es/button/Button.mjs +88 -90
- package/es/button/index.mjs +10 -5
- package/es/button/props.mjs +31 -10
- package/es/button/provide.mjs +8 -9
- package/es/button-group/ButtonGroup.mjs +38 -26
- package/es/button-group/index.mjs +8 -4
- package/es/button-group/props.mjs +8 -5
- package/es/button-group/provide.mjs +9 -9
- package/es/card/Card.mjs +292 -189
- package/es/card/index.mjs +10 -5
- package/es/card/props.mjs +9 -6
- package/es/cell/Cell.mjs +96 -52
- package/es/cell/index.mjs +10 -5
- package/es/cell/props.mjs +6 -3
- package/es/checkbox/Checkbox.mjs +136 -130
- package/es/checkbox/index.mjs +10 -5
- package/es/checkbox/props.mjs +9 -6
- package/es/checkbox/provide.mjs +10 -9
- package/es/checkbox-group/CheckboxGroup.mjs +63 -96
- package/es/checkbox-group/index.mjs +10 -5
- package/es/checkbox-group/props.mjs +9 -6
- package/es/checkbox-group/provide.mjs +11 -9
- package/es/chip/Chip.mjs +66 -50
- package/es/chip/index.mjs +10 -5
- package/es/chip/props.mjs +10 -7
- package/es/col/Col.mjs +60 -55
- package/es/col/index.mjs +10 -5
- package/es/col/props.mjs +7 -4
- package/es/col/provide.mjs +8 -9
- package/es/collapse/Collapse.mjs +70 -73
- package/es/collapse/index.mjs +10 -5
- package/es/collapse/props.mjs +7 -4
- package/es/collapse/provide.mjs +11 -9
- package/es/collapse-item/CollapseItem.mjs +156 -93
- package/es/collapse-item/index.mjs +10 -5
- package/es/collapse-item/props.mjs +6 -3
- package/es/collapse-item/provide.mjs +12 -11
- package/es/context/index.mjs +9 -5
- package/es/context/lock.mjs +18 -22
- package/es/context/zIndex.mjs +19 -16
- package/es/countdown/Countdown.mjs +73 -70
- package/es/countdown/index.mjs +10 -5
- package/es/countdown/props.mjs +7 -4
- package/es/counter/Counter.mjs +169 -173
- package/es/counter/index.mjs +10 -5
- package/es/counter/props.mjs +8 -5
- package/es/counter/provide.ts +3 -0
- package/es/date-picker/DatePicker.mjs +411 -304
- package/es/date-picker/index.mjs +10 -5
- package/es/date-picker/props.mjs +71 -45
- package/es/date-picker/src/day-picker-panel.mjs +270 -208
- package/es/date-picker/src/month-picker-panel.mjs +205 -175
- package/es/date-picker/src/panel-header.mjs +101 -83
- package/es/date-picker/src/year-picker-panel.mjs +64 -54
- package/es/dialog/Dialog.mjs +171 -106
- package/es/dialog/index.mjs +49 -33
- package/es/dialog/props.mjs +39 -9
- package/es/divider/Divider.mjs +56 -51
- package/es/divider/index.mjs +10 -5
- package/es/divider/props.mjs +5 -2
- package/es/drag/Drag.mjs +126 -144
- package/es/drag/index.mjs +10 -5
- package/es/drag/props.mjs +8 -5
- package/es/ellipsis/Ellipsis.mjs +81 -50
- package/es/ellipsis/index.mjs +8 -4
- package/es/ellipsis/props.mjs +5 -2
- package/es/fab/Fab.mjs +73 -75
- package/es/fab/index.mjs +8 -4
- package/es/fab/props.mjs +14 -11
- package/es/field-decorator/FieldDecorator.mjs +215 -110
- package/es/field-decorator/props.mjs +9 -6
- package/es/form/Form.mjs +69 -79
- package/es/form/index.mjs +11 -6
- package/es/form/props.mjs +6 -3
- package/es/form/provide.mjs +35 -22
- package/es/form-details/FormDetails.mjs +81 -39
- package/es/form-details/index.mjs +10 -5
- package/es/form-details/props.mjs +7 -4
- package/es/hover/index.mjs +37 -40
- package/es/hover-overlay/HoverOverlay.mjs +18 -14
- package/es/hover-overlay/index.mjs +13 -8
- package/es/hover-overlay/props.mjs +5 -2
- package/es/icon/Icon.mjs +50 -33
- package/es/icon/index.mjs +10 -5
- package/es/icon/props.mjs +7 -4
- package/es/image/Image.mjs +76 -82
- package/es/image/index.mjs +10 -5
- package/es/image/props.mjs +7 -4
- package/es/image-preview/ImagePreview.mjs +176 -193
- package/es/image-preview/index.mjs +44 -30
- package/es/image-preview/props.mjs +34 -9
- package/es/index-anchor/IndexAnchor.mjs +45 -42
- package/es/index-anchor/index.mjs +10 -5
- package/es/index-anchor/props.mjs +5 -2
- package/es/index-anchor/provide.mjs +12 -11
- package/es/index-bar/IndexBar.mjs +130 -131
- package/es/index-bar/index.mjs +10 -5
- package/es/index-bar/props.mjs +6 -3
- package/es/index-bar/provide.mjs +11 -9
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/input/Input.mjs +231 -247
- package/es/input/index.mjs +10 -5
- package/es/input/props.mjs +38 -8
- package/es/input/provide.ts +3 -0
- package/es/lazy/index.mjs +94 -87
- package/es/link/Link.mjs +39 -45
- package/es/link/index.mjs +10 -5
- package/es/link/props.mjs +8 -5
- package/es/list/List.mjs +144 -97
- package/es/list/index.mjs +10 -5
- package/es/list/props.mjs +8 -5
- package/es/list/provide.mjs +8 -9
- package/es/loading/Loading.mjs +165 -72
- package/es/loading/index.mjs +10 -5
- package/es/loading/props.mjs +7 -4
- package/es/loading-bar/LoadingBar.mjs +19 -16
- package/es/loading-bar/index.mjs +37 -30
- package/es/loading-bar/props.mjs +5 -2
- package/es/locale/en-US.mjs +76 -73
- package/es/locale/index.mjs +52 -41
- package/es/locale/zh-CN.mjs +76 -73
- package/es/menu/Menu.mjs +76 -57
- package/es/menu/index.mjs +10 -5
- package/es/menu/props.mjs +11 -8
- package/es/menu/usePopover.mjs +214 -207
- package/es/option/Option.mjs +86 -70
- package/es/option/index.mjs +10 -5
- package/es/option/props.mjs +5 -2
- package/es/option/provide.mjs +10 -11
- package/es/overlay/Overlay.mjs +29 -31
- package/es/overlay/index.mjs +10 -5
- package/es/overlay/props.mjs +7 -4
- package/es/pagination/Pagination.mjs +334 -202
- package/es/pagination/index.mjs +10 -5
- package/es/pagination/props.mjs +8 -5
- package/es/paper/Paper.mjs +43 -31
- package/es/paper/index.mjs +10 -5
- package/es/paper/props.mjs +6 -3
- package/es/picker/Picker.mjs +288 -224
- package/es/picker/index.mjs +24 -23
- package/es/picker/props.mjs +37 -7
- package/es/popup/Popup.mjs +68 -58
- package/es/popup/index.mjs +10 -5
- package/es/popup/props.mjs +9 -6
- package/es/popup/provide.mjs +12 -15
- package/es/progress/Progress.mjs +233 -116
- package/es/progress/index.mjs +10 -5
- package/es/progress/props.mjs +8 -5
- package/es/pull-refresh/PullRefresh.mjs +136 -116
- package/es/pull-refresh/index.mjs +10 -5
- package/es/pull-refresh/props.mjs +8 -5
- package/es/radio/Radio.mjs +122 -118
- package/es/radio/index.mjs +10 -5
- package/es/radio/props.mjs +8 -5
- package/es/radio/provide.mjs +8 -9
- package/es/radio-group/RadioGroup.mjs +50 -58
- package/es/radio-group/index.mjs +10 -5
- package/es/radio-group/props.mjs +10 -7
- package/es/radio-group/provide.mjs +11 -9
- package/es/rate/Rate.mjs +103 -132
- package/es/rate/index.mjs +10 -5
- package/es/rate/props.mjs +10 -7
- package/es/rate/provide.ts +3 -0
- package/es/result/Empty.mjs +21 -12
- package/es/result/Error.mjs +18 -9
- package/es/result/Info.mjs +18 -9
- package/es/result/Question.mjs +18 -9
- package/es/result/Result.mjs +102 -55
- package/es/result/Success.mjs +84 -40
- package/es/result/Warning.mjs +18 -9
- package/es/result/index.mjs +10 -5
- package/es/result/props.mjs +6 -3
- package/es/ripple/index.mjs +89 -101
- package/es/row/Row.mjs +40 -45
- package/es/row/index.mjs +10 -5
- package/es/row/props.mjs +8 -5
- package/es/row/provide.mjs +9 -9
- package/es/select/Select.mjs +308 -298
- package/es/select/index.mjs +10 -5
- package/es/select/props.mjs +40 -10
- package/es/select/provide.mjs +9 -9
- package/es/skeleton/Skeleton.mjs +182 -71
- package/es/skeleton/index.mjs +10 -5
- package/es/skeleton/props.mjs +5 -2
- package/es/slider/Slider.mjs +310 -260
- package/es/slider/index.mjs +10 -5
- package/es/slider/props.mjs +15 -11
- package/es/slider/provide.ts +3 -0
- package/es/snackbar/Snackbar.mjs +47 -34
- package/es/snackbar/core.mjs +140 -77
- package/es/snackbar/index.mjs +111 -97
- package/es/snackbar/props.mjs +35 -14
- package/es/space/Space.mjs +30 -28
- package/es/space/index.mjs +10 -5
- package/es/space/margin.mjs +22 -23
- package/es/space/props.mjs +8 -5
- package/es/step/Step.mjs +96 -74
- package/es/step/index.mjs +10 -5
- package/es/step/props.mjs +6 -3
- package/es/step/provide.mjs +10 -11
- package/es/steps/Steps.mjs +31 -30
- package/es/steps/index.mjs +10 -5
- package/es/steps/props.mjs +7 -4
- package/es/steps/provide.mjs +9 -8
- package/es/sticky/Sticky.mjs +104 -92
- package/es/sticky/index.mjs +10 -5
- package/es/sticky/props.mjs +6 -3
- package/es/style-provider/StyleProvider.mjs +19 -18
- package/es/style-provider/index.mjs +15 -11
- package/es/style-provider/props.mjs +6 -3
- package/es/swipe/Swipe.mjs +281 -268
- package/es/swipe/index.mjs +10 -5
- package/es/swipe/props.mjs +6 -3
- package/es/swipe/provide.mjs +11 -9
- package/es/swipe-item/SwipeItem.mjs +29 -29
- package/es/swipe-item/index.mjs +8 -4
- package/es/swipe-item/provide.mjs +10 -11
- package/es/switch/Switch.mjs +143 -103
- package/es/switch/index.mjs +10 -5
- package/es/switch/props.mjs +7 -4
- package/es/switch/provide.ts +3 -0
- package/es/tab/Tab.mjs +48 -61
- package/es/tab/index.mjs +10 -5
- package/es/tab/props.mjs +6 -3
- package/es/tab/provide.mjs +10 -11
- package/es/tab-item/TabItem.mjs +27 -32
- package/es/tab-item/index.mjs +10 -5
- package/es/tab-item/props.mjs +5 -2
- package/es/tab-item/provide.mjs +17 -18
- package/es/table/Table.mjs +54 -25
- package/es/table/index.mjs +10 -5
- package/es/table/props.mjs +6 -3
- package/es/tabs/Tabs.mjs +162 -134
- package/es/tabs/index.mjs +10 -5
- package/es/tabs/props.mjs +15 -12
- package/es/tabs/provide.mjs +9 -9
- package/es/tabs-items/TabsItems.mjs +61 -65
- package/es/tabs-items/index.mjs +10 -5
- package/es/tabs-items/props.mjs +7 -4
- package/es/tabs-items/provide.mjs +11 -9
- package/es/themes/dark/actionSheet.mjs +8 -5
- package/es/themes/dark/appBar.mjs +6 -3
- package/es/themes/dark/avatar.mjs +7 -4
- package/es/themes/dark/badge.mjs +6 -3
- package/es/themes/dark/bottomNavigation.mjs +7 -4
- package/es/themes/dark/bottomNavigationItem.mjs +6 -3
- package/es/themes/dark/breadcrumb.mjs +6 -3
- package/es/themes/dark/button.mjs +7 -4
- package/es/themes/dark/card.mjs +10 -7
- package/es/themes/dark/cell.mjs +7 -4
- package/es/themes/dark/checkbox.mjs +7 -4
- package/es/themes/dark/chip.mjs +7 -4
- package/es/themes/dark/collapse.mjs +8 -5
- package/es/themes/dark/countdown.mjs +6 -3
- package/es/themes/dark/datePicker.mjs +10 -7
- package/es/themes/dark/dialog.mjs +8 -5
- package/es/themes/dark/divider.mjs +7 -4
- package/es/themes/dark/fieldDecorator.mjs +7 -4
- package/es/themes/dark/index.mjs +69 -51
- package/es/themes/dark/link.mjs +6 -3
- package/es/themes/dark/menu.mjs +6 -3
- package/es/themes/dark/option.mjs +6 -3
- package/es/themes/dark/pagination.mjs +11 -8
- package/es/themes/dark/paper.mjs +6 -3
- package/es/themes/dark/picker.mjs +11 -8
- package/es/themes/dark/popup.mjs +6 -3
- package/es/themes/dark/progress.mjs +6 -3
- package/es/themes/dark/pullRefresh.mjs +6 -3
- package/es/themes/dark/radio.mjs +7 -4
- package/es/themes/dark/result.mjs +12 -9
- package/es/themes/dark/select.mjs +6 -3
- package/es/themes/dark/skeleton.mjs +11 -6
- package/es/themes/dark/steps.mjs +8 -5
- package/es/themes/dark/switch.mjs +7 -4
- package/es/themes/dark/tab.mjs +6 -3
- package/es/themes/dark/table.mjs +12 -9
- package/es/themes/dark/tabs.mjs +6 -3
- package/es/themes/dark/timePicker.mjs +9 -6
- package/es/themes/dark/uploader.mjs +10 -7
- package/es/themes/dark/watermark.mjs +6 -3
- package/es/themes/index.mjs +7 -5
- package/es/time-picker/TimePicker.mjs +297 -232
- package/es/time-picker/clock.mjs +222 -172
- package/es/time-picker/index.mjs +10 -5
- package/es/time-picker/props.mjs +14 -8
- package/es/time-picker/utils.mjs +46 -86
- package/es/tooltip/Tooltip.mjs +82 -62
- package/es/tooltip/index.mjs +10 -5
- package/es/tooltip/props.mjs +12 -9
- package/es/uploader/Uploader.mjs +315 -308
- package/es/uploader/index.mjs +10 -5
- package/es/uploader/props.mjs +10 -7
- package/es/uploader/provide.ts +3 -0
- package/es/utils/components.mjs +155 -131
- package/es/utils/elements.mjs +106 -123
- package/es/utils/logger.mjs +9 -5
- package/es/utils/shared.mjs +25 -23
- package/es/utils/test.mjs +105 -93
- package/es/varlet.esm.js +12426 -13450
- package/es/watermark/Watermark.mjs +191 -109
- package/es/watermark/index.mjs +8 -4
- package/es/watermark/props.mjs +8 -5
- package/highlight/web-types.en-US.json +6 -6
- package/highlight/web-types.zh-CN.json +5 -5
- package/lib/varlet.cjs.js +9233 -10194
- package/package.json +7 -7
- package/types/progress.d.ts +1 -1
- package/umd/varlet.js +5 -4
- package/es/counter/provide.mjs +0 -1
- package/es/input/provide.mjs +0 -1
- package/es/rate/provide.mjs +0 -1
- package/es/slider/provide.mjs +0 -1
- package/es/switch/provide.mjs +0 -1
- package/es/uploader/provide.mjs +0 -1
package/es/tabs/Tabs.mjs
CHANGED
|
@@ -1,79 +1,130 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
1
|
+
var __async = (__this, __arguments, generator) => {
|
|
2
|
+
return new Promise((resolve, reject) => {
|
|
3
|
+
var fulfilled = (value) => {
|
|
4
|
+
try {
|
|
5
|
+
step(generator.next(value));
|
|
6
|
+
} catch (e) {
|
|
7
|
+
reject(e);
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
var rejected = (value) => {
|
|
11
|
+
try {
|
|
12
|
+
step(generator.throw(value));
|
|
13
|
+
} catch (e) {
|
|
14
|
+
reject(e);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
18
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
import VarSticky from "../sticky/index.mjs";
|
|
22
|
+
import { defineComponent, watch, ref, computed, Transition, onActivated } from "vue";
|
|
23
|
+
import { props } from "./props.mjs";
|
|
24
|
+
import { useTabList } from "./provide.mjs";
|
|
25
|
+
import { clamp, isNumber, doubleRaf } from "@varlet/shared";
|
|
26
|
+
import { linear } from "../utils/shared.mjs";
|
|
27
|
+
import { toSizeUnit, scrollTo } from "../utils/elements.mjs";
|
|
28
|
+
import { createNamespace, call, formatElevation } from "../utils/components.mjs";
|
|
29
|
+
import { onWindowResize } from "@varlet/use";
|
|
30
|
+
const { name, n, classes } = createNamespace("tabs");
|
|
17
31
|
import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, openBlock as _openBlock, createBlock as _createBlock } from "vue";
|
|
18
32
|
function __render__(_ctx, _cache) {
|
|
19
|
-
return _openBlock(), _createBlock(_resolveDynamicComponent(_ctx.sticky ? _ctx.n(
|
|
20
|
-
ref: _ctx.sticky ?
|
|
21
|
-
"css-mode": _ctx.sticky ? _ctx.stickyCssMode :
|
|
22
|
-
"offset-top": _ctx.sticky ? _ctx.offsetTop :
|
|
23
|
-
"z-index": _ctx.sticky ? _ctx.stickyZIndex :
|
|
33
|
+
return _openBlock(), _createBlock(_resolveDynamicComponent(_ctx.sticky ? _ctx.n("$-sticky") : _ctx.Transition), {
|
|
34
|
+
ref: _ctx.sticky ? "stickyComponent" : void 0,
|
|
35
|
+
"css-mode": _ctx.sticky ? _ctx.stickyCssMode : void 0,
|
|
36
|
+
"offset-top": _ctx.sticky ? _ctx.offsetTop : void 0,
|
|
37
|
+
"z-index": _ctx.sticky ? _ctx.stickyZIndex : void 0
|
|
24
38
|
}, {
|
|
25
|
-
default: _withCtx(() => [
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
39
|
+
default: _withCtx(() => [
|
|
40
|
+
_createElementVNode(
|
|
41
|
+
"div",
|
|
42
|
+
_mergeProps({
|
|
43
|
+
class: _ctx.classes(
|
|
44
|
+
_ctx.n(),
|
|
45
|
+
_ctx.n("$--box"),
|
|
46
|
+
_ctx.n(`--item-${_ctx.itemDirection}`),
|
|
47
|
+
_ctx.n(`--layout-${_ctx.layoutDirection}-padding`),
|
|
48
|
+
_ctx.formatElevation(_ctx.elevation, 4),
|
|
49
|
+
[_ctx.fixedBottom, _ctx.n("--fixed-bottom")],
|
|
50
|
+
[_ctx.safeArea, _ctx.n("--safe-area")]
|
|
51
|
+
),
|
|
52
|
+
style: { background: _ctx.color }
|
|
53
|
+
}, _ctx.$attrs),
|
|
54
|
+
[
|
|
55
|
+
_createElementVNode(
|
|
56
|
+
"div",
|
|
57
|
+
{
|
|
58
|
+
ref: "scrollerEl",
|
|
59
|
+
class: _normalizeClass(
|
|
60
|
+
_ctx.classes(
|
|
61
|
+
_ctx.n("tab-wrap"),
|
|
62
|
+
[_ctx.localScrollable, _ctx.n(`--layout-${_ctx.layoutDirection}-scrollable`)],
|
|
63
|
+
_ctx.n(`--layout-${_ctx.layoutDirection}`)
|
|
64
|
+
)
|
|
65
|
+
)
|
|
66
|
+
},
|
|
67
|
+
[
|
|
68
|
+
_renderSlot(_ctx.$slots, "default"),
|
|
69
|
+
_createElementVNode(
|
|
70
|
+
"div",
|
|
71
|
+
{
|
|
72
|
+
class: _normalizeClass(_ctx.classes(_ctx.n("indicator"), _ctx.n(`--layout-${_ctx.layoutDirection}${_ctx.indicatorPosition}-indicator`))),
|
|
73
|
+
style: _normalizeStyle({
|
|
74
|
+
width: _ctx.layoutDirection === "horizontal" ? _ctx.indicatorWidth : _ctx.toSizeUnit(_ctx.indicatorSize),
|
|
75
|
+
height: _ctx.layoutDirection === "horizontal" ? _ctx.toSizeUnit(_ctx.indicatorSize) : _ctx.indicatorHeight,
|
|
76
|
+
transform: _ctx.layoutDirection === "horizontal" ? `translateX(${_ctx.indicatorX})` : `translateY(${_ctx.indicatorY})`
|
|
77
|
+
})
|
|
78
|
+
},
|
|
79
|
+
[
|
|
80
|
+
_createElementVNode(
|
|
81
|
+
"div",
|
|
82
|
+
{
|
|
83
|
+
class: _normalizeClass(_ctx.classes(_ctx.n("indicator-inner"), _ctx.n(`--layout-${_ctx.layoutDirection}-indicator-inner`))),
|
|
84
|
+
style: _normalizeStyle({ background: _ctx.indicatorColor || _ctx.activeColor })
|
|
85
|
+
},
|
|
86
|
+
null,
|
|
87
|
+
6
|
|
88
|
+
/* CLASS, STYLE */
|
|
89
|
+
)
|
|
90
|
+
],
|
|
91
|
+
6
|
|
92
|
+
/* CLASS, STYLE */
|
|
93
|
+
)
|
|
94
|
+
],
|
|
95
|
+
2
|
|
96
|
+
/* CLASS */
|
|
97
|
+
)
|
|
98
|
+
],
|
|
99
|
+
16
|
|
100
|
+
/* FULL_PROPS */
|
|
101
|
+
)
|
|
102
|
+
]),
|
|
103
|
+
_: 3
|
|
104
|
+
/* FORWARDED */
|
|
105
|
+
}, 8, ["css-mode", "offset-top", "z-index"]);
|
|
49
106
|
}
|
|
50
|
-
|
|
107
|
+
const __sfc__ = defineComponent({
|
|
51
108
|
name,
|
|
52
|
-
components: {
|
|
53
|
-
VarSticky
|
|
54
|
-
},
|
|
109
|
+
components: { VarSticky },
|
|
55
110
|
inheritAttrs: false,
|
|
56
111
|
props,
|
|
57
|
-
setup(
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
bindTabList,
|
|
74
|
-
length
|
|
75
|
-
} = useTabList();
|
|
76
|
-
var tabsProvider = {
|
|
112
|
+
setup(props2) {
|
|
113
|
+
const indicatorWidth = ref("0px");
|
|
114
|
+
const indicatorHeight = ref("0px");
|
|
115
|
+
const indicatorX = ref("0px");
|
|
116
|
+
const indicatorY = ref("0px");
|
|
117
|
+
const localScrollable = ref(false);
|
|
118
|
+
const scrollerEl = ref(null);
|
|
119
|
+
const active = computed(() => props2.active);
|
|
120
|
+
const activeColor = computed(() => props2.activeColor);
|
|
121
|
+
const inactiveColor = computed(() => props2.inactiveColor);
|
|
122
|
+
const disabledColor = computed(() => props2.disabledColor);
|
|
123
|
+
const itemDirection = computed(() => props2.itemDirection);
|
|
124
|
+
const stickyComponent = ref(null);
|
|
125
|
+
const indicatorPosition = computed(() => props2.indicatorPosition === "reverse" ? "-reverse" : "");
|
|
126
|
+
const { tabList, bindTabList, length } = useTabList();
|
|
127
|
+
const tabsProvider = {
|
|
77
128
|
active,
|
|
78
129
|
activeColor,
|
|
79
130
|
inactiveColor,
|
|
@@ -83,98 +134,78 @@ var __sfc__ = defineComponent({
|
|
|
83
134
|
onTabClick
|
|
84
135
|
};
|
|
85
136
|
bindTabList(tabsProvider);
|
|
86
|
-
watch(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
137
|
+
watch(
|
|
138
|
+
() => length.value,
|
|
139
|
+
() => __async(this, null, function* () {
|
|
140
|
+
yield doubleRaf();
|
|
141
|
+
resize();
|
|
142
|
+
})
|
|
143
|
+
);
|
|
144
|
+
watch(() => [props2.active, props2.scrollable], resize);
|
|
91
145
|
onActivated(resize);
|
|
92
146
|
onWindowResize(resize);
|
|
93
147
|
function onTabClick(tab) {
|
|
94
|
-
var
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
onChange,
|
|
99
|
-
onClick
|
|
100
|
-
} = props;
|
|
101
|
-
call(props['onUpdate:active'], currentActive);
|
|
148
|
+
var _a;
|
|
149
|
+
const currentActive = (_a = tab.name.value) != null ? _a : tab.index.value;
|
|
150
|
+
const { active: active2, onChange, onClick } = props2;
|
|
151
|
+
call(props2["onUpdate:active"], currentActive);
|
|
102
152
|
call(onClick, currentActive);
|
|
103
|
-
currentActive !==
|
|
153
|
+
currentActive !== active2 && call(onChange, currentActive);
|
|
104
154
|
}
|
|
105
155
|
function matchName() {
|
|
106
|
-
return tabList.find(
|
|
107
|
-
var {
|
|
108
|
-
name
|
|
109
|
-
} = _ref2;
|
|
110
|
-
return props.active === name.value;
|
|
111
|
-
});
|
|
156
|
+
return tabList.find(({ name: name2 }) => props2.active === name2.value);
|
|
112
157
|
}
|
|
113
158
|
function matchIndex(activeIndex) {
|
|
114
|
-
return tabList.find(
|
|
115
|
-
var {
|
|
116
|
-
index
|
|
117
|
-
} = _ref3;
|
|
118
|
-
return (activeIndex != null ? activeIndex : props.active) === index.value;
|
|
119
|
-
});
|
|
159
|
+
return tabList.find(({ index }) => (activeIndex != null ? activeIndex : props2.active) === index.value);
|
|
120
160
|
}
|
|
121
161
|
function matchBoundary() {
|
|
122
162
|
if (length.value === 0) {
|
|
123
163
|
return;
|
|
124
164
|
}
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
var activeIndex = clamp(active, 0, length.value - 1);
|
|
130
|
-
call(props['onUpdate:active'], activeIndex);
|
|
165
|
+
const { active: active2 } = props2;
|
|
166
|
+
if (isNumber(active2)) {
|
|
167
|
+
const activeIndex = clamp(active2, 0, length.value - 1);
|
|
168
|
+
call(props2["onUpdate:active"], activeIndex);
|
|
131
169
|
return matchIndex(activeIndex);
|
|
132
170
|
}
|
|
133
171
|
}
|
|
134
172
|
function watchScrollable() {
|
|
135
|
-
localScrollable.value =
|
|
173
|
+
localScrollable.value = props2.scrollable === "always" || tabList.length >= 5;
|
|
136
174
|
}
|
|
137
|
-
function moveIndicator(
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
indicatorWidth.value = el.offsetWidth + "px";
|
|
145
|
-
indicatorX.value = el.offsetLeft + "px";
|
|
175
|
+
function moveIndicator({ element }) {
|
|
176
|
+
const el = element.value;
|
|
177
|
+
if (!el)
|
|
178
|
+
return;
|
|
179
|
+
if (props2.layoutDirection === "horizontal") {
|
|
180
|
+
indicatorWidth.value = `${el.offsetWidth}px`;
|
|
181
|
+
indicatorX.value = `${el.offsetLeft}px`;
|
|
146
182
|
} else {
|
|
147
|
-
indicatorHeight.value = el.offsetHeight
|
|
148
|
-
indicatorY.value = el.offsetTop
|
|
183
|
+
indicatorHeight.value = `${el.offsetHeight}px`;
|
|
184
|
+
indicatorY.value = `${el.offsetTop}px`;
|
|
149
185
|
}
|
|
150
186
|
}
|
|
151
|
-
function scrollToCenter(
|
|
152
|
-
var {
|
|
153
|
-
element
|
|
154
|
-
} = _ref5;
|
|
187
|
+
function scrollToCenter({ element }) {
|
|
155
188
|
if (!localScrollable.value) {
|
|
156
189
|
return;
|
|
157
190
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
if (
|
|
161
|
-
|
|
191
|
+
const scroller = scrollerEl.value;
|
|
192
|
+
const el = element.value;
|
|
193
|
+
if (props2.layoutDirection === "horizontal") {
|
|
194
|
+
const left = el.offsetLeft + el.offsetWidth / 2 - scroller.offsetWidth / 2;
|
|
162
195
|
scrollTo(scroller, {
|
|
163
196
|
left,
|
|
164
197
|
animation: linear
|
|
165
198
|
});
|
|
166
199
|
} else {
|
|
167
|
-
|
|
200
|
+
const top = el.offsetTop + el.offsetHeight / 2 - scroller.offsetHeight / 2;
|
|
168
201
|
scrollTo(scroller, {
|
|
169
202
|
top,
|
|
170
203
|
animation: linear
|
|
171
204
|
});
|
|
172
205
|
}
|
|
173
206
|
}
|
|
174
|
-
|
|
175
|
-
// expose
|
|
176
207
|
function resize() {
|
|
177
|
-
|
|
208
|
+
const tab = matchName() || matchIndex() || matchBoundary();
|
|
178
209
|
if (!tab || tab.disabled.value) {
|
|
179
210
|
return;
|
|
180
211
|
}
|
|
@@ -182,18 +213,12 @@ var __sfc__ = defineComponent({
|
|
|
182
213
|
moveIndicator(tab);
|
|
183
214
|
scrollToCenter(tab);
|
|
184
215
|
}
|
|
185
|
-
|
|
186
|
-
// expose
|
|
187
216
|
function resizeSticky() {
|
|
188
|
-
return
|
|
189
|
-
|
|
190
|
-
function _resizeSticky() {
|
|
191
|
-
_resizeSticky = _asyncToGenerator(function* () {
|
|
192
|
-
if (props.sticky && stickyComponent.value) {
|
|
217
|
+
return __async(this, null, function* () {
|
|
218
|
+
if (props2.sticky && stickyComponent.value) {
|
|
193
219
|
yield stickyComponent.value.resize();
|
|
194
220
|
}
|
|
195
221
|
});
|
|
196
|
-
return _resizeSticky.apply(this, arguments);
|
|
197
222
|
}
|
|
198
223
|
return {
|
|
199
224
|
stickyComponent,
|
|
@@ -215,4 +240,7 @@ var __sfc__ = defineComponent({
|
|
|
215
240
|
}
|
|
216
241
|
});
|
|
217
242
|
__sfc__.render = __render__;
|
|
218
|
-
|
|
243
|
+
var stdin_default = __sfc__;
|
|
244
|
+
export {
|
|
245
|
+
stdin_default as default
|
|
246
|
+
};
|
package/es/tabs/index.mjs
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import Tabs from
|
|
2
|
-
import { withInstall } from
|
|
1
|
+
import Tabs from "./Tabs.mjs";
|
|
2
|
+
import { withInstall } from "../utils/components.mjs";
|
|
3
3
|
withInstall(Tabs);
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
import { props } from "./props.mjs";
|
|
5
|
+
const _TabsComponent = Tabs;
|
|
6
|
+
var stdin_default = Tabs;
|
|
7
|
+
export {
|
|
8
|
+
_TabsComponent,
|
|
9
|
+
stdin_default as default,
|
|
10
|
+
props as tabsProps
|
|
11
|
+
};
|
package/es/tabs/props.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { defineListenerProp, pickProps } from
|
|
2
|
-
import { props as stickyProps } from
|
|
3
|
-
|
|
1
|
+
import { defineListenerProp, pickProps } from "../utils/components.mjs";
|
|
2
|
+
import { props as stickyProps } from "../sticky/props.mjs";
|
|
3
|
+
const props = {
|
|
4
4
|
active: {
|
|
5
5
|
type: [String, Number],
|
|
6
6
|
default: 0
|
|
7
7
|
},
|
|
8
8
|
layoutDirection: {
|
|
9
9
|
type: String,
|
|
10
|
-
default:
|
|
10
|
+
default: "horizontal"
|
|
11
11
|
},
|
|
12
12
|
itemDirection: {
|
|
13
13
|
type: String,
|
|
14
|
-
default:
|
|
14
|
+
default: "horizontal"
|
|
15
15
|
},
|
|
16
16
|
fixedBottom: Boolean,
|
|
17
17
|
activeColor: String,
|
|
@@ -26,18 +26,21 @@ export var props = {
|
|
|
26
26
|
},
|
|
27
27
|
scrollable: {
|
|
28
28
|
type: String,
|
|
29
|
-
default:
|
|
29
|
+
default: "auto"
|
|
30
30
|
},
|
|
31
31
|
indicatorPosition: {
|
|
32
32
|
type: String,
|
|
33
|
-
default:
|
|
33
|
+
default: "normal"
|
|
34
34
|
},
|
|
35
35
|
safeArea: Boolean,
|
|
36
36
|
sticky: Boolean,
|
|
37
|
-
stickyCssMode: pickProps(stickyProps,
|
|
38
|
-
stickyZIndex: pickProps(stickyProps,
|
|
39
|
-
offsetTop: pickProps(stickyProps,
|
|
37
|
+
stickyCssMode: pickProps(stickyProps, "cssMode"),
|
|
38
|
+
stickyZIndex: pickProps(stickyProps, "zIndex"),
|
|
39
|
+
offsetTop: pickProps(stickyProps, "offsetTop"),
|
|
40
40
|
onClick: defineListenerProp(),
|
|
41
41
|
onChange: defineListenerProp(),
|
|
42
|
-
|
|
43
|
-
};
|
|
42
|
+
"onUpdate:active": defineListenerProp()
|
|
43
|
+
};
|
|
44
|
+
export {
|
|
45
|
+
props
|
|
46
|
+
};
|
package/es/tabs/provide.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { useChildren } from
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
childProviders,
|
|
6
|
-
bindChildren,
|
|
7
|
-
length
|
|
8
|
-
} = useChildren(TABS_BIND_TAB_KEY);
|
|
1
|
+
import { useChildren } from "@varlet/use";
|
|
2
|
+
const TABS_BIND_TAB_KEY = Symbol("TABS_BIND_TAB_KEY");
|
|
3
|
+
function useTabList() {
|
|
4
|
+
const { childProviders, bindChildren, length } = useChildren(TABS_BIND_TAB_KEY);
|
|
9
5
|
return {
|
|
10
6
|
length,
|
|
11
7
|
tabList: childProviders,
|
|
12
8
|
bindTabList: bindChildren
|
|
13
9
|
};
|
|
14
|
-
}
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
TABS_BIND_TAB_KEY,
|
|
13
|
+
useTabList
|
|
14
|
+
};
|
|
@@ -1,18 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
var __async = (__this, __arguments, generator) => {
|
|
2
|
+
return new Promise((resolve, reject) => {
|
|
3
|
+
var fulfilled = (value) => {
|
|
4
|
+
try {
|
|
5
|
+
step(generator.next(value));
|
|
6
|
+
} catch (e) {
|
|
7
|
+
reject(e);
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
var rejected = (value) => {
|
|
11
|
+
try {
|
|
12
|
+
step(generator.throw(value));
|
|
13
|
+
} catch (e) {
|
|
14
|
+
reject(e);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
18
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
import VarSwipe from "../swipe/index.mjs";
|
|
22
|
+
import { defineComponent, watch, ref } from "vue";
|
|
23
|
+
import { useTabItem } from "./provide.mjs";
|
|
24
|
+
import { call, createNamespace } from "../utils/components.mjs";
|
|
25
|
+
import { props } from "./props.mjs";
|
|
26
|
+
import { doubleRaf } from "@varlet/shared";
|
|
27
|
+
const { name, n } = createNamespace("tabs-items");
|
|
13
28
|
import { renderSlot as _renderSlot, resolveComponent as _resolveComponent, normalizeClass as _normalizeClass, withCtx as _withCtx, openBlock as _openBlock, createBlock as _createBlock } from "vue";
|
|
14
29
|
function __render__(_ctx, _cache) {
|
|
15
|
-
|
|
30
|
+
const _component_var_swipe = _resolveComponent("var-swipe");
|
|
16
31
|
return _openBlock(), _createBlock(_component_var_swipe, {
|
|
17
32
|
class: _normalizeClass(_ctx.n()),
|
|
18
33
|
ref: "swipe",
|
|
@@ -21,76 +36,54 @@ function __render__(_ctx, _cache) {
|
|
|
21
36
|
indicator: false,
|
|
22
37
|
onChange: _ctx.handleSwipeChange
|
|
23
38
|
}, {
|
|
24
|
-
default: _withCtx(() => [
|
|
25
|
-
|
|
26
|
-
|
|
39
|
+
default: _withCtx(() => [
|
|
40
|
+
_renderSlot(_ctx.$slots, "default")
|
|
41
|
+
]),
|
|
42
|
+
_: 3
|
|
43
|
+
/* FORWARDED */
|
|
44
|
+
}, 8, ["class", "loop", "touchable", "onChange"]);
|
|
27
45
|
}
|
|
28
|
-
|
|
46
|
+
const __sfc__ = defineComponent({
|
|
29
47
|
name,
|
|
30
|
-
components: {
|
|
31
|
-
VarSwipe
|
|
32
|
-
},
|
|
48
|
+
components: { VarSwipe },
|
|
33
49
|
props,
|
|
34
|
-
setup(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
tabItemList,
|
|
38
|
-
bindTabItem,
|
|
39
|
-
length
|
|
40
|
-
} = useTabItem();
|
|
50
|
+
setup(props2) {
|
|
51
|
+
const swipe = ref(null);
|
|
52
|
+
const { tabItemList, bindTabItem, length } = useTabItem();
|
|
41
53
|
bindTabItem({});
|
|
42
|
-
watch(() =>
|
|
43
|
-
watch(
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
54
|
+
watch(() => props2.active, handleActiveChange);
|
|
55
|
+
watch(
|
|
56
|
+
() => length.value,
|
|
57
|
+
() => __async(this, null, function* () {
|
|
58
|
+
yield doubleRaf();
|
|
59
|
+
handleActiveChange(props2.active);
|
|
60
|
+
})
|
|
61
|
+
);
|
|
47
62
|
function matchName(active) {
|
|
48
|
-
return tabItemList.find(
|
|
49
|
-
var {
|
|
50
|
-
name
|
|
51
|
-
} = _ref2;
|
|
52
|
-
return active === name.value;
|
|
53
|
-
});
|
|
63
|
+
return tabItemList.find(({ name: name2 }) => active === name2.value);
|
|
54
64
|
}
|
|
55
65
|
function matchIndex(active) {
|
|
56
|
-
return tabItemList.find(
|
|
57
|
-
var {
|
|
58
|
-
index
|
|
59
|
-
} = _ref3;
|
|
60
|
-
return active === index.value;
|
|
61
|
-
});
|
|
66
|
+
return tabItemList.find(({ index }) => active === index.value);
|
|
62
67
|
}
|
|
63
68
|
function matchActive(active) {
|
|
64
69
|
return matchName(active) || matchIndex(active);
|
|
65
70
|
}
|
|
66
71
|
function handleActiveChange(newValue) {
|
|
67
|
-
var
|
|
68
|
-
|
|
72
|
+
var _a;
|
|
73
|
+
const newActiveTabItemProvider = matchActive(newValue);
|
|
69
74
|
if (!newActiveTabItemProvider) {
|
|
70
75
|
return;
|
|
71
76
|
}
|
|
72
|
-
tabItemList.forEach(
|
|
73
|
-
var {
|
|
74
|
-
setCurrent
|
|
75
|
-
} = _ref4;
|
|
76
|
-
return setCurrent(false);
|
|
77
|
-
});
|
|
77
|
+
tabItemList.forEach(({ setCurrent }) => setCurrent(false));
|
|
78
78
|
newActiveTabItemProvider.setCurrent(true);
|
|
79
|
-
(
|
|
79
|
+
(_a = swipe.value) == null ? void 0 : _a.to(newActiveTabItemProvider.index.value);
|
|
80
80
|
}
|
|
81
81
|
function handleSwipeChange(currentIndex) {
|
|
82
|
-
var
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
} = _ref5;
|
|
87
|
-
return index.value === currentIndex;
|
|
88
|
-
});
|
|
89
|
-
var active = (_tabItem$name$value = tabItem.name.value) != null ? _tabItem$name$value : tabItem.index.value;
|
|
90
|
-
call(props['onUpdate:active'], active);
|
|
82
|
+
var _a;
|
|
83
|
+
const tabItem = tabItemList.find(({ index }) => index.value === currentIndex);
|
|
84
|
+
const active = (_a = tabItem.name.value) != null ? _a : tabItem.index.value;
|
|
85
|
+
call(props2["onUpdate:active"], active);
|
|
91
86
|
}
|
|
92
|
-
|
|
93
|
-
// expose
|
|
94
87
|
function getSwipe() {
|
|
95
88
|
return swipe.value;
|
|
96
89
|
}
|
|
@@ -103,4 +96,7 @@ var __sfc__ = defineComponent({
|
|
|
103
96
|
}
|
|
104
97
|
});
|
|
105
98
|
__sfc__.render = __render__;
|
|
106
|
-
|
|
99
|
+
var stdin_default = __sfc__;
|
|
100
|
+
export {
|
|
101
|
+
stdin_default as default
|
|
102
|
+
};
|
package/es/tabs-items/index.mjs
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import TabsItems from
|
|
2
|
-
import { withInstall } from
|
|
1
|
+
import TabsItems from "./TabsItems.mjs";
|
|
2
|
+
import { withInstall } from "../utils/components.mjs";
|
|
3
3
|
withInstall(TabsItems);
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
import { props } from "./props.mjs";
|
|
5
|
+
const _TabsItemsComponent = TabsItems;
|
|
6
|
+
var stdin_default = TabsItems;
|
|
7
|
+
export {
|
|
8
|
+
_TabsItemsComponent,
|
|
9
|
+
stdin_default as default,
|
|
10
|
+
props as tabsItemsProps
|
|
11
|
+
};
|
package/es/tabs-items/props.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineListenerProp } from
|
|
2
|
-
|
|
1
|
+
import { defineListenerProp } from "../utils/components.mjs";
|
|
2
|
+
const props = {
|
|
3
3
|
active: {
|
|
4
4
|
type: [String, Number],
|
|
5
5
|
default: 0
|
|
@@ -9,5 +9,8 @@ export var props = {
|
|
|
9
9
|
default: true
|
|
10
10
|
},
|
|
11
11
|
loop: Boolean,
|
|
12
|
-
|
|
13
|
-
};
|
|
12
|
+
"onUpdate:active": defineListenerProp()
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
props
|
|
16
|
+
};
|