@varlet/ui 2.16.7 → 2.16.8-alpha.1695118057982
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 +186 -114
- package/es/progress/index.mjs +10 -5
- package/es/progress/props.mjs +7 -4
- 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 +158 -127
- 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 +12464 -13425
- 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 +3 -3
- package/highlight/web-types.zh-CN.json +2 -2
- package/lib/varlet.cjs.js +9187 -10199
- package/package.json +7 -7
- package/umd/varlet.js +4 -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/result/Result.mjs
CHANGED
|
@@ -1,49 +1,97 @@
|
|
|
1
|
-
import Info from
|
|
2
|
-
import Error from
|
|
3
|
-
import Warning from
|
|
4
|
-
import Success from
|
|
5
|
-
import Question from
|
|
6
|
-
import Empty from
|
|
7
|
-
import { computed, defineComponent } from
|
|
8
|
-
import { toNumber } from
|
|
9
|
-
import { props } from
|
|
10
|
-
import { createNamespace } from
|
|
11
|
-
import { toPxNum, toSizeUnit } from
|
|
12
|
-
|
|
13
|
-
name,
|
|
14
|
-
n,
|
|
15
|
-
classes
|
|
16
|
-
} = createNamespace('result');
|
|
1
|
+
import Info from "./Info.mjs";
|
|
2
|
+
import Error from "./Error.mjs";
|
|
3
|
+
import Warning from "./Warning.mjs";
|
|
4
|
+
import Success from "./Success.mjs";
|
|
5
|
+
import Question from "./Question.mjs";
|
|
6
|
+
import Empty from "./Empty.mjs";
|
|
7
|
+
import { computed, defineComponent } from "vue";
|
|
8
|
+
import { toNumber } from "@varlet/shared";
|
|
9
|
+
import { props } from "./props.mjs";
|
|
10
|
+
import { createNamespace } from "../utils/components.mjs";
|
|
11
|
+
import { toPxNum, toSizeUnit } from "../utils/elements.mjs";
|
|
12
|
+
const { name, n, classes } = createNamespace("result");
|
|
17
13
|
import { renderSlot as _renderSlot, resolveDynamicComponent as _resolveDynamicComponent, openBlock as _openBlock, createBlock as _createBlock, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString } from "vue";
|
|
18
14
|
function __render__(_ctx, _cache) {
|
|
19
|
-
return _openBlock(), _createElementBlock(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
15
|
+
return _openBlock(), _createElementBlock(
|
|
16
|
+
"div",
|
|
17
|
+
{
|
|
18
|
+
class: _normalizeClass(_ctx.classes(_ctx.n(), _ctx.n("$--box")))
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
_renderSlot(_ctx.$slots, "image", {}, () => [
|
|
22
|
+
_ctx.type ? (_openBlock(), _createElementBlock(
|
|
23
|
+
"div",
|
|
24
|
+
{
|
|
25
|
+
key: 0,
|
|
26
|
+
class: _normalizeClass(_ctx.n("image-container"))
|
|
27
|
+
},
|
|
28
|
+
[
|
|
29
|
+
_createElementVNode(
|
|
30
|
+
"div",
|
|
31
|
+
{
|
|
32
|
+
class: _normalizeClass(_ctx.classes(_ctx.n("image"), _ctx.n(_ctx.type))),
|
|
33
|
+
style: _normalizeStyle({
|
|
34
|
+
width: _ctx.circleSize,
|
|
35
|
+
height: _ctx.circleSize,
|
|
36
|
+
borderWidth: _ctx.borderSize
|
|
37
|
+
})
|
|
38
|
+
},
|
|
39
|
+
[
|
|
40
|
+
(_openBlock(), _createBlock(_resolveDynamicComponent(_ctx.type), {
|
|
41
|
+
"border-size": _ctx.borderSize,
|
|
42
|
+
animation: _ctx.animation
|
|
43
|
+
}, null, 8, ["border-size", "animation"]))
|
|
44
|
+
],
|
|
45
|
+
6
|
|
46
|
+
/* CLASS, STYLE */
|
|
47
|
+
)
|
|
48
|
+
],
|
|
49
|
+
2
|
|
50
|
+
/* CLASS */
|
|
51
|
+
)) : _createCommentVNode("v-if", true)
|
|
52
|
+
]),
|
|
53
|
+
_renderSlot(_ctx.$slots, "title", {}, () => [
|
|
54
|
+
_ctx.title ? (_openBlock(), _createElementBlock(
|
|
55
|
+
"div",
|
|
56
|
+
{
|
|
57
|
+
key: 0,
|
|
58
|
+
class: _normalizeClass(_ctx.n("title"))
|
|
59
|
+
},
|
|
60
|
+
_toDisplayString(_ctx.title),
|
|
61
|
+
3
|
|
62
|
+
/* TEXT, CLASS */
|
|
63
|
+
)) : _createCommentVNode("v-if", true)
|
|
64
|
+
]),
|
|
65
|
+
_renderSlot(_ctx.$slots, "description", {}, () => [
|
|
66
|
+
_ctx.description ? (_openBlock(), _createElementBlock(
|
|
67
|
+
"div",
|
|
68
|
+
{
|
|
69
|
+
key: 0,
|
|
70
|
+
class: _normalizeClass(_ctx.n("description"))
|
|
71
|
+
},
|
|
72
|
+
_toDisplayString(_ctx.description),
|
|
73
|
+
3
|
|
74
|
+
/* TEXT, CLASS */
|
|
75
|
+
)) : _createCommentVNode("v-if", true)
|
|
76
|
+
]),
|
|
77
|
+
_ctx.$slots.footer ? (_openBlock(), _createElementBlock(
|
|
78
|
+
"div",
|
|
79
|
+
{
|
|
80
|
+
key: 0,
|
|
81
|
+
class: _normalizeClass(_ctx.n("footer"))
|
|
82
|
+
},
|
|
83
|
+
[
|
|
84
|
+
_renderSlot(_ctx.$slots, "footer")
|
|
85
|
+
],
|
|
86
|
+
2
|
|
87
|
+
/* CLASS */
|
|
88
|
+
)) : _createCommentVNode("v-if", true)
|
|
89
|
+
],
|
|
90
|
+
2
|
|
91
|
+
/* CLASS */
|
|
92
|
+
);
|
|
44
93
|
}
|
|
45
|
-
|
|
46
|
-
var __sfc__ = defineComponent({
|
|
94
|
+
const __sfc__ = defineComponent({
|
|
47
95
|
name,
|
|
48
96
|
components: {
|
|
49
97
|
Info,
|
|
@@ -54,18 +102,14 @@ var __sfc__ = defineComponent({
|
|
|
54
102
|
Empty
|
|
55
103
|
},
|
|
56
104
|
props,
|
|
57
|
-
setup(
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
} = props;
|
|
62
|
-
return "calc(" + (imageSize ? toSizeUnit(imageSize) : 'var(--result-image-size)') + " * 0.9)";
|
|
105
|
+
setup(props2) {
|
|
106
|
+
const circleSize = computed(() => {
|
|
107
|
+
const { imageSize } = props2;
|
|
108
|
+
return `calc(${imageSize ? toSizeUnit(imageSize) : "var(--result-image-size)"} * 0.9)`;
|
|
63
109
|
});
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
} = props;
|
|
68
|
-
return "calc(" + (imageSize ? toSizeUnit(props.imageSize) : 'var(--result-image-size)') + " * 0.05)";
|
|
110
|
+
const borderSize = computed(() => {
|
|
111
|
+
const { imageSize } = props2;
|
|
112
|
+
return `calc(${imageSize ? toSizeUnit(props2.imageSize) : "var(--result-image-size)"} * 0.05)`;
|
|
69
113
|
});
|
|
70
114
|
return {
|
|
71
115
|
circleSize,
|
|
@@ -79,4 +123,7 @@ var __sfc__ = defineComponent({
|
|
|
79
123
|
}
|
|
80
124
|
});
|
|
81
125
|
__sfc__.render = __render__;
|
|
82
|
-
|
|
126
|
+
var stdin_default = __sfc__;
|
|
127
|
+
export {
|
|
128
|
+
stdin_default as default
|
|
129
|
+
};
|
package/es/result/Success.mjs
CHANGED
|
@@ -1,45 +1,86 @@
|
|
|
1
|
-
import { defineComponent } from
|
|
2
|
-
import { createNamespace } from
|
|
3
|
-
import { toNumber } from
|
|
4
|
-
|
|
5
|
-
n,
|
|
6
|
-
classes
|
|
7
|
-
} = createNamespace('result');
|
|
1
|
+
import { defineComponent } from "vue";
|
|
2
|
+
import { createNamespace } from "../utils/components.mjs";
|
|
3
|
+
import { toNumber } from "@varlet/shared";
|
|
4
|
+
const { n, classes } = createNamespace("result");
|
|
8
5
|
import { normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from "vue";
|
|
9
6
|
function __render__(_ctx, _cache) {
|
|
10
|
-
return _openBlock(), _createElementBlock(
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
7
|
+
return _openBlock(), _createElementBlock(
|
|
8
|
+
_Fragment,
|
|
9
|
+
null,
|
|
10
|
+
[
|
|
11
|
+
_createElementVNode(
|
|
12
|
+
"span",
|
|
13
|
+
{
|
|
14
|
+
class: _normalizeClass(_ctx.n("success-cover-left"))
|
|
15
|
+
},
|
|
16
|
+
null,
|
|
17
|
+
2
|
|
18
|
+
/* CLASS */
|
|
19
|
+
),
|
|
20
|
+
_createElementVNode(
|
|
21
|
+
"span",
|
|
22
|
+
{
|
|
23
|
+
class: _normalizeClass(_ctx.classes(_ctx.n("success-line"), _ctx.n("success-line-tip"))),
|
|
24
|
+
style: _normalizeStyle({
|
|
25
|
+
animationDuration: _ctx.animation ? `760ms` : "0ms",
|
|
26
|
+
borderRadius: `calc(${_ctx.borderSize} * 0.625)`
|
|
27
|
+
})
|
|
28
|
+
},
|
|
29
|
+
null,
|
|
30
|
+
6
|
|
31
|
+
/* CLASS, STYLE */
|
|
32
|
+
),
|
|
33
|
+
_createElementVNode(
|
|
34
|
+
"span",
|
|
35
|
+
{
|
|
36
|
+
class: _normalizeClass(_ctx.classes(_ctx.n("success-line"), _ctx.n("success-line-long"))),
|
|
37
|
+
style: _normalizeStyle({
|
|
38
|
+
animationDuration: _ctx.animation ? `770ms` : "0ms",
|
|
39
|
+
borderRadius: `calc(${_ctx.borderSize} * 0.625)`
|
|
40
|
+
})
|
|
41
|
+
},
|
|
42
|
+
null,
|
|
43
|
+
6
|
|
44
|
+
/* CLASS, STYLE */
|
|
45
|
+
),
|
|
46
|
+
_createElementVNode(
|
|
47
|
+
"span",
|
|
48
|
+
{
|
|
49
|
+
ref: "circle",
|
|
50
|
+
class: _normalizeClass(_ctx.n("success-circle")),
|
|
51
|
+
style: _normalizeStyle({ left: `-${_ctx.borderSize}`, top: `-${_ctx.borderSize}`, borderWidth: _ctx.borderSize })
|
|
52
|
+
},
|
|
53
|
+
null,
|
|
54
|
+
6
|
|
55
|
+
/* CLASS, STYLE */
|
|
56
|
+
),
|
|
57
|
+
_createElementVNode(
|
|
58
|
+
"span",
|
|
59
|
+
{
|
|
60
|
+
class: _normalizeClass(_ctx.n("success-line-fix"))
|
|
61
|
+
},
|
|
62
|
+
null,
|
|
63
|
+
2
|
|
64
|
+
/* CLASS */
|
|
65
|
+
),
|
|
66
|
+
_createElementVNode(
|
|
67
|
+
"span",
|
|
68
|
+
{
|
|
69
|
+
class: _normalizeClass(_ctx.n("success-cover-right")),
|
|
70
|
+
style: _normalizeStyle({
|
|
71
|
+
animationDuration: _ctx.animation ? `4250ms` : "0ms"
|
|
72
|
+
})
|
|
73
|
+
},
|
|
74
|
+
null,
|
|
75
|
+
6
|
|
76
|
+
/* CLASS, STYLE */
|
|
77
|
+
)
|
|
78
|
+
],
|
|
79
|
+
64
|
|
80
|
+
/* STABLE_FRAGMENT */
|
|
81
|
+
);
|
|
40
82
|
}
|
|
41
|
-
|
|
42
|
-
var __sfc__ = defineComponent({
|
|
83
|
+
const __sfc__ = defineComponent({
|
|
43
84
|
props: {
|
|
44
85
|
animation: {
|
|
45
86
|
type: Boolean
|
|
@@ -57,4 +98,7 @@ var __sfc__ = defineComponent({
|
|
|
57
98
|
}
|
|
58
99
|
});
|
|
59
100
|
__sfc__.render = __render__;
|
|
60
|
-
|
|
101
|
+
var stdin_default = __sfc__;
|
|
102
|
+
export {
|
|
103
|
+
stdin_default as default
|
|
104
|
+
};
|
package/es/result/Warning.mjs
CHANGED
|
@@ -1,17 +1,26 @@
|
|
|
1
|
-
import { defineComponent } from
|
|
1
|
+
import { defineComponent } from "vue";
|
|
2
2
|
import { createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
const _withScopeId = (n) => (_pushScopeId(""), n = n(), _popScopeId(), n);
|
|
4
|
+
const _hoisted_1 = {
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
6
|
viewBox: "-6 -4 35 35"
|
|
7
7
|
};
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
const _hoisted_2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ _createElementVNode(
|
|
9
|
+
"path",
|
|
10
|
+
{ d: "M10,21H14A2,2 0 0,1 12,23A2,2 0 0,1 10,21M21,19V20H3V19L5,17V11C5,7.9 7.03,5.17 10,4.29C10,4.19 10,4.1 10,4A2,2 0 0,1 12,2A2,2 0 0,1 14,4C14,4.1 14,4.19 14,4.29C16.97,5.17 19,7.9 19,11V17L21,19M17,11A5,5 0 0,0 12,6A5,5 0 0,0 7,11V18H17V11M19.75,3.19L18.33,4.61M1,11" },
|
|
11
|
+
null,
|
|
12
|
+
-1
|
|
13
|
+
/* HOISTED */
|
|
14
|
+
));
|
|
15
|
+
const _hoisted_3 = [
|
|
16
|
+
_hoisted_2
|
|
17
|
+
];
|
|
12
18
|
function __render__(_ctx, _cache) {
|
|
13
19
|
return _openBlock(), _createElementBlock("svg", _hoisted_1, _hoisted_3);
|
|
14
20
|
}
|
|
15
|
-
|
|
21
|
+
const __sfc__ = defineComponent({});
|
|
16
22
|
__sfc__.render = __render__;
|
|
17
|
-
|
|
23
|
+
var stdin_default = __sfc__;
|
|
24
|
+
export {
|
|
25
|
+
stdin_default as default
|
|
26
|
+
};
|
package/es/result/index.mjs
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import Result from
|
|
2
|
-
import { withInstall } from
|
|
1
|
+
import Result from "./Result.mjs";
|
|
2
|
+
import { withInstall } from "../utils/components.mjs";
|
|
3
3
|
withInstall(Result);
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
import { props } from "./props.mjs";
|
|
5
|
+
const _ResultComponent = Result;
|
|
6
|
+
var stdin_default = Result;
|
|
7
|
+
export {
|
|
8
|
+
_ResultComponent,
|
|
9
|
+
stdin_default as default,
|
|
10
|
+
props as resultProps
|
|
11
|
+
};
|
package/es/result/props.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
const props = {
|
|
2
2
|
imageSize: [String, Number],
|
|
3
3
|
type: {
|
|
4
4
|
type: String,
|
|
5
|
-
default:
|
|
5
|
+
default: "success"
|
|
6
6
|
},
|
|
7
7
|
title: String,
|
|
8
8
|
description: String,
|
|
@@ -10,4 +10,7 @@ export var props = {
|
|
|
10
10
|
type: Boolean,
|
|
11
11
|
default: true
|
|
12
12
|
}
|
|
13
|
-
};
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
props
|
|
16
|
+
};
|
package/es/ripple/index.mjs
CHANGED
|
@@ -1,95 +1,90 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
+
var __spreadValues = (a, b) => {
|
|
9
|
+
for (var prop in b || (b = {}))
|
|
10
|
+
if (__hasOwnProp.call(b, prop))
|
|
11
|
+
__defNormalProp(a, prop, b[prop]);
|
|
12
|
+
if (__getOwnPropSymbols)
|
|
13
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
+
if (__propIsEnum.call(b, prop))
|
|
15
|
+
__defNormalProp(a, prop, b[prop]);
|
|
16
|
+
}
|
|
17
|
+
return a;
|
|
18
|
+
};
|
|
19
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
+
import context from "../context/index.mjs";
|
|
21
|
+
import { supportTouch, getStyle, getRect } from "@varlet/shared";
|
|
22
|
+
import { createNamespace } from "../utils/components.mjs";
|
|
5
23
|
|
|
6
24
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
} = createNamespace('ripple');
|
|
10
|
-
var ANIMATION_DURATION = 250;
|
|
25
|
+
const { n } = createNamespace("ripple");
|
|
26
|
+
const ANIMATION_DURATION = 250;
|
|
11
27
|
function setStyles(element) {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
element.style.
|
|
17
|
-
element.style.
|
|
18
|
-
element.style.overflowY = 'hidden';
|
|
19
|
-
position === 'static' && (element.style.position = 'relative');
|
|
20
|
-
zIndex === 'auto' && (element.style.zIndex = '1');
|
|
28
|
+
const { zIndex, position } = getStyle(element);
|
|
29
|
+
element.style.overflow = "hidden";
|
|
30
|
+
element.style.overflowX = "hidden";
|
|
31
|
+
element.style.overflowY = "hidden";
|
|
32
|
+
position === "static" && (element.style.position = "relative");
|
|
33
|
+
zIndex === "auto" && (element.style.zIndex = "1");
|
|
21
34
|
}
|
|
22
35
|
function computeRippleStyles(element, event) {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
var localY = event.touches[0].clientY - top;
|
|
35
|
-
var centerX = (clientWidth - radius * 2) / 2;
|
|
36
|
-
var centerY = (clientHeight - radius * 2) / 2;
|
|
37
|
-
var x = localX - radius;
|
|
38
|
-
var y = localY - radius;
|
|
39
|
-
return {
|
|
40
|
-
x,
|
|
41
|
-
y,
|
|
42
|
-
centerX,
|
|
43
|
-
centerY,
|
|
44
|
-
size
|
|
45
|
-
};
|
|
36
|
+
const { top, left } = getRect(element);
|
|
37
|
+
const { clientWidth, clientHeight } = element;
|
|
38
|
+
const radius = Math.sqrt(clientWidth ** 2 + clientHeight ** 2) / 2;
|
|
39
|
+
const size = radius * 2;
|
|
40
|
+
const localX = event.touches[0].clientX - left;
|
|
41
|
+
const localY = event.touches[0].clientY - top;
|
|
42
|
+
const centerX = (clientWidth - radius * 2) / 2;
|
|
43
|
+
const centerY = (clientHeight - radius * 2) / 2;
|
|
44
|
+
const x = localX - radius;
|
|
45
|
+
const y = localY - radius;
|
|
46
|
+
return { x, y, centerX, centerY, size };
|
|
46
47
|
}
|
|
47
48
|
function createRipple(event) {
|
|
48
|
-
|
|
49
|
+
const _ripple = this._ripple;
|
|
49
50
|
_ripple.removeRipple();
|
|
50
51
|
if (_ripple.disabled || _ripple.tasker || !context.enableRipple) {
|
|
51
52
|
return;
|
|
52
53
|
}
|
|
53
|
-
|
|
54
|
+
const task = () => {
|
|
54
55
|
_ripple.tasker = null;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
y,
|
|
58
|
-
centerX,
|
|
59
|
-
centerY,
|
|
60
|
-
size
|
|
61
|
-
} = computeRippleStyles(this, event);
|
|
62
|
-
var ripple = document.createElement('div');
|
|
56
|
+
const { x, y, centerX, centerY, size } = computeRippleStyles(this, event);
|
|
57
|
+
const ripple = document.createElement("div");
|
|
63
58
|
ripple.classList.add(n());
|
|
64
|
-
ripple.style.opacity =
|
|
65
|
-
ripple.style.transform =
|
|
66
|
-
ripple.style.width = size
|
|
67
|
-
ripple.style.height = size
|
|
59
|
+
ripple.style.opacity = `0`;
|
|
60
|
+
ripple.style.transform = `translate(${x}px, ${y}px) scale3d(.3, .3, .3)`;
|
|
61
|
+
ripple.style.width = `${size}px`;
|
|
62
|
+
ripple.style.height = `${size}px`;
|
|
68
63
|
_ripple.color && (ripple.style.backgroundColor = _ripple.color);
|
|
69
64
|
ripple.dataset.createdAt = String(performance.now());
|
|
70
65
|
setStyles(this);
|
|
71
66
|
this.appendChild(ripple);
|
|
72
67
|
window.setTimeout(() => {
|
|
73
|
-
ripple.style.transform =
|
|
74
|
-
ripple.style.opacity =
|
|
68
|
+
ripple.style.transform = `translate(${centerX}px, ${centerY}px) scale3d(1, 1, 1)`;
|
|
69
|
+
ripple.style.opacity = `.25`;
|
|
75
70
|
}, 20);
|
|
76
71
|
};
|
|
77
72
|
_ripple.tasker = window.setTimeout(task, 30);
|
|
78
73
|
}
|
|
79
74
|
function removeRipple() {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
75
|
+
const _ripple = this._ripple;
|
|
76
|
+
const task = () => {
|
|
77
|
+
const ripples = this.querySelectorAll(`.${n()}`);
|
|
83
78
|
if (!ripples.length) {
|
|
84
79
|
return;
|
|
85
80
|
}
|
|
86
|
-
|
|
87
|
-
|
|
81
|
+
const lastRipple = ripples[ripples.length - 1];
|
|
82
|
+
const delay = ANIMATION_DURATION - performance.now() + Number(lastRipple.dataset.createdAt);
|
|
88
83
|
window.setTimeout(() => {
|
|
89
|
-
lastRipple.style.opacity =
|
|
84
|
+
lastRipple.style.opacity = `0`;
|
|
90
85
|
window.setTimeout(() => {
|
|
91
|
-
var
|
|
92
|
-
return (
|
|
86
|
+
var _a;
|
|
87
|
+
return (_a = lastRipple.parentNode) == null ? void 0 : _a.removeChild(lastRipple);
|
|
93
88
|
}, ANIMATION_DURATION);
|
|
94
89
|
}, delay);
|
|
95
90
|
};
|
|
@@ -99,62 +94,55 @@ function forbidRippleTask() {
|
|
|
99
94
|
if (!supportTouch() || !context.enableRipple) {
|
|
100
95
|
return;
|
|
101
96
|
}
|
|
102
|
-
|
|
97
|
+
const _ripple = this._ripple;
|
|
103
98
|
_ripple.tasker && window.clearTimeout(_ripple.tasker);
|
|
104
99
|
_ripple.tasker = null;
|
|
105
100
|
}
|
|
106
101
|
function mounted(el, binding) {
|
|
107
|
-
var
|
|
108
|
-
el._ripple =
|
|
102
|
+
var _a;
|
|
103
|
+
el._ripple = __spreadProps(__spreadValues({
|
|
109
104
|
tasker: null
|
|
110
|
-
}, (
|
|
105
|
+
}, (_a = binding.value) != null ? _a : {}), {
|
|
111
106
|
removeRipple: removeRipple.bind(el)
|
|
112
107
|
});
|
|
113
|
-
el.addEventListener(
|
|
114
|
-
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
});
|
|
119
|
-
el.addEventListener('dragstart', removeRipple, {
|
|
120
|
-
passive: true
|
|
121
|
-
});
|
|
122
|
-
document.addEventListener('touchend', el._ripple.removeRipple, {
|
|
123
|
-
passive: true
|
|
124
|
-
});
|
|
125
|
-
document.addEventListener('touchcancel', el._ripple.removeRipple, {
|
|
126
|
-
passive: true
|
|
127
|
-
});
|
|
108
|
+
el.addEventListener("touchstart", createRipple, { passive: true });
|
|
109
|
+
el.addEventListener("touchmove", forbidRippleTask, { passive: true });
|
|
110
|
+
el.addEventListener("dragstart", removeRipple, { passive: true });
|
|
111
|
+
document.addEventListener("touchend", el._ripple.removeRipple, { passive: true });
|
|
112
|
+
document.addEventListener("touchcancel", el._ripple.removeRipple, { passive: true });
|
|
128
113
|
}
|
|
129
114
|
function unmounted(el) {
|
|
130
|
-
el.removeEventListener(
|
|
131
|
-
el.removeEventListener(
|
|
132
|
-
el.removeEventListener(
|
|
133
|
-
document.removeEventListener(
|
|
134
|
-
document.removeEventListener(
|
|
115
|
+
el.removeEventListener("touchstart", createRipple);
|
|
116
|
+
el.removeEventListener("touchmove", forbidRippleTask);
|
|
117
|
+
el.removeEventListener("dragstart", removeRipple);
|
|
118
|
+
document.removeEventListener("touchend", el._ripple.removeRipple);
|
|
119
|
+
document.removeEventListener("touchcancel", el._ripple.removeRipple);
|
|
135
120
|
}
|
|
136
121
|
function updated(el, binding) {
|
|
137
|
-
var
|
|
138
|
-
|
|
139
|
-
color: (
|
|
140
|
-
disabled: (
|
|
122
|
+
var _a, _b, _c, _d, _e, _f;
|
|
123
|
+
const newBinding = {
|
|
124
|
+
color: (_a = binding.value) == null ? void 0 : _a.color,
|
|
125
|
+
disabled: (_b = binding.value) == null ? void 0 : _b.disabled
|
|
141
126
|
};
|
|
142
|
-
|
|
127
|
+
const diff = newBinding.color !== ((_c = el._ripple) == null ? void 0 : _c.color) || newBinding.disabled !== ((_d = el._ripple) == null ? void 0 : _d.disabled);
|
|
143
128
|
if (diff) {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
removeRipple: (_el$_ripple4 = el._ripple) == null ? void 0 : _el$_ripple4.removeRipple
|
|
129
|
+
el._ripple = __spreadValues({
|
|
130
|
+
tasker: newBinding.disabled ? null : (_e = el._ripple) == null ? void 0 : _e.tasker,
|
|
131
|
+
removeRipple: (_f = el._ripple) == null ? void 0 : _f.removeRipple
|
|
148
132
|
}, newBinding);
|
|
149
133
|
}
|
|
150
134
|
}
|
|
151
|
-
|
|
135
|
+
const Ripple = {
|
|
152
136
|
mounted,
|
|
153
137
|
unmounted,
|
|
154
138
|
updated,
|
|
155
139
|
install(app) {
|
|
156
|
-
app.directive(
|
|
140
|
+
app.directive("ripple", this);
|
|
157
141
|
}
|
|
158
142
|
};
|
|
159
|
-
|
|
160
|
-
|
|
143
|
+
const _RippleComponent = Ripple;
|
|
144
|
+
var stdin_default = Ripple;
|
|
145
|
+
export {
|
|
146
|
+
_RippleComponent,
|
|
147
|
+
stdin_default as default
|
|
148
|
+
};
|