@varlet/ui 2.7.2 → 2.7.3-alpha.1675189320554
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 +8 -4
- package/es/app-bar/AppBar.mjs +8 -4
- package/es/back-top/BackTop.mjs +8 -4
- package/es/badge/Badge.mjs +8 -4
- package/es/bottom-navigation/BottomNavigation.mjs +8 -4
- package/es/bottom-navigation-item/BottomNavigationItem.mjs +8 -4
- package/es/breadcrumb/Breadcrumb.mjs +8 -4
- package/es/breadcrumbs/Breadcrumbs.mjs +8 -4
- package/es/button/Button.mjs +8 -4
- package/es/card/Card.mjs +8 -4
- package/es/cell/Cell.mjs +8 -4
- package/es/checkbox/Checkbox.mjs +8 -4
- package/es/checkbox-group/CheckboxGroup.mjs +8 -4
- package/es/chip/Chip.mjs +8 -4
- package/es/col/Col.mjs +8 -4
- package/es/collapse/Collapse.mjs +8 -4
- package/es/collapse-item/CollapseItem.mjs +8 -4
- package/es/countdown/Countdown.mjs +8 -4
- package/es/counter/Counter.mjs +8 -4
- package/es/date-picker/DatePicker.mjs +8 -4
- package/es/date-picker/src/day-picker-panel.mjs +8 -4
- package/es/date-picker/src/month-picker-panel.mjs +8 -4
- package/es/date-picker/src/panel-header.mjs +8 -4
- package/es/date-picker/src/year-picker-panel.mjs +8 -4
- package/es/dialog/Dialog.mjs +8 -4
- package/es/divider/Divider.mjs +8 -4
- package/es/form/Form.mjs +8 -4
- package/es/form-details/FormDetails.mjs +8 -4
- package/es/icon/Icon.mjs +8 -4
- package/es/image/Image.mjs +8 -4
- package/es/image-preview/ImagePreview.mjs +8 -4
- package/es/index-anchor/IndexAnchor.mjs +8 -4
- package/es/index-bar/IndexBar.mjs +8 -4
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/input/Input.mjs +8 -4
- package/es/link/Link.mjs +8 -4
- package/es/list/List.mjs +8 -4
- package/es/loading/Loading.mjs +8 -4
- package/es/menu/Menu.mjs +8 -4
- package/es/option/Option.mjs +8 -4
- package/es/pagination/Pagination.mjs +8 -4
- package/es/picker/Picker.mjs +8 -4
- package/es/progress/Progress.mjs +8 -4
- package/es/pull-refresh/PullRefresh.mjs +8 -4
- package/es/radio/Radio.mjs +8 -4
- package/es/radio-group/RadioGroup.mjs +8 -4
- package/es/rate/Rate.mjs +8 -4
- package/es/result/Empty.mjs +7 -4
- package/es/result/Error.mjs +7 -4
- package/es/result/Info.mjs +7 -4
- package/es/result/Question.mjs +7 -4
- package/es/result/Result.mjs +8 -4
- package/es/result/Success.mjs +8 -4
- package/es/result/Warning.mjs +7 -4
- package/es/row/Row.mjs +8 -4
- package/es/select/Select.mjs +8 -4
- package/es/skeleton/Skeleton.mjs +8 -4
- package/es/slider/Slider.mjs +8 -4
- package/es/snackbar/Snackbar.mjs +8 -4
- package/es/snackbar/core.mjs +8 -4
- package/es/step/Step.mjs +8 -4
- package/es/steps/Steps.mjs +8 -4
- package/es/sticky/Sticky.mjs +8 -4
- package/es/style-provider/StyleProvider.mjs +5 -2
- package/es/swipe/Swipe.mjs +8 -4
- package/es/swipe-item/SwipeItem.mjs +8 -4
- package/es/switch/Switch.mjs +8 -4
- package/es/tab/Tab.mjs +8 -4
- package/es/tab-item/TabItem.mjs +8 -4
- package/es/table/Table.mjs +8 -4
- package/es/tabs/Tabs.mjs +8 -4
- package/es/tabs-items/TabsItems.mjs +8 -4
- package/es/time-picker/TimePicker.mjs +8 -4
- package/es/time-picker/clock.mjs +8 -4
- package/es/tooltip/Tooltip.mjs +8 -4
- package/es/uploader/Uploader.mjs +8 -4
- package/es/varlet.esm.js +3252 -3183
- package/highlight/web-types.json +1 -1
- package/lib/varlet.cjs.js +340 -271
- package/package.json +5 -5
- package/umd/varlet.js +6 -6
package/es/table/Table.mjs
CHANGED
|
@@ -7,7 +7,8 @@ var {
|
|
|
7
7
|
classes
|
|
8
8
|
} = createNamespace('table');
|
|
9
9
|
import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode } from "vue";
|
|
10
|
-
|
|
10
|
+
|
|
11
|
+
function __render__(_ctx, _cache) {
|
|
11
12
|
return _openBlock(), _createElementBlock("div", {
|
|
12
13
|
class: _normalizeClass(_ctx.classes(_ctx.n(), _ctx.n('$-elevation--1'), _ctx.n('$--box')))
|
|
13
14
|
}, [_createElementVNode("div", {
|
|
@@ -30,8 +31,8 @@ export function render(_ctx, _cache) {
|
|
|
30
31
|
/* CLASS */
|
|
31
32
|
);
|
|
32
33
|
}
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
|
|
35
|
+
var __sfc__ = defineComponent({
|
|
35
36
|
name: 'VarTable',
|
|
36
37
|
props,
|
|
37
38
|
|
|
@@ -43,4 +44,7 @@ export default defineComponent({
|
|
|
43
44
|
};
|
|
44
45
|
}
|
|
45
46
|
|
|
46
|
-
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
__sfc__.render = __render__;
|
|
50
|
+
export default __sfc__;
|
package/es/tabs/Tabs.mjs
CHANGED
|
@@ -15,7 +15,8 @@ var {
|
|
|
15
15
|
classes
|
|
16
16
|
} = createNamespace('tabs');
|
|
17
17
|
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
|
-
|
|
18
|
+
|
|
19
|
+
function __render__(_ctx, _cache) {
|
|
19
20
|
return _openBlock(), _createBlock(_resolveDynamicComponent(_ctx.sticky ? _ctx.n('$-sticky') : _ctx.Transition), {
|
|
20
21
|
ref: _ctx.sticky ? 'stickyComponent' : undefined,
|
|
21
22
|
"css-mode": _ctx.sticky ? _ctx.stickyCssMode : undefined,
|
|
@@ -52,8 +53,8 @@ export function render(_ctx, _cache) {
|
|
|
52
53
|
/* PROPS */
|
|
53
54
|
, ["css-mode", "offset-top", "z-index"]);
|
|
54
55
|
}
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
|
|
57
|
+
var __sfc__ = defineComponent({
|
|
57
58
|
name: 'VarTabs',
|
|
58
59
|
components: {
|
|
59
60
|
VarSticky
|
|
@@ -234,4 +235,7 @@ export default defineComponent({
|
|
|
234
235
|
};
|
|
235
236
|
}
|
|
236
237
|
|
|
237
|
-
});
|
|
238
|
+
});
|
|
239
|
+
|
|
240
|
+
__sfc__.render = __render__;
|
|
241
|
+
export default __sfc__;
|
|
@@ -12,7 +12,8 @@ var {
|
|
|
12
12
|
n
|
|
13
13
|
} = createNamespace('tabs-items');
|
|
14
14
|
import { renderSlot as _renderSlot, resolveComponent as _resolveComponent, normalizeClass as _normalizeClass, withCtx as _withCtx, openBlock as _openBlock, createBlock as _createBlock } from "vue";
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
function __render__(_ctx, _cache) {
|
|
16
17
|
var _component_var_swipe = _resolveComponent("var-swipe");
|
|
17
18
|
|
|
18
19
|
return _openBlock(), _createBlock(_component_var_swipe, {
|
|
@@ -31,8 +32,8 @@ export function render(_ctx, _cache) {
|
|
|
31
32
|
/* PROPS */
|
|
32
33
|
, ["class", "loop", "touchable", "onChange"]);
|
|
33
34
|
}
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
|
|
36
|
+
var __sfc__ = defineComponent({
|
|
36
37
|
name: 'VarTabsItems',
|
|
37
38
|
components: {
|
|
38
39
|
VarSwipe
|
|
@@ -121,4 +122,7 @@ export default defineComponent({
|
|
|
121
122
|
};
|
|
122
123
|
}
|
|
123
124
|
|
|
124
|
-
});
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
__sfc__.render = __render__;
|
|
128
|
+
export default __sfc__;
|
|
@@ -21,7 +21,8 @@ var _hoisted_1 = /*#__PURE__*/_withScopeId(() => /*#__PURE__*/_createElementVNod
|
|
|
21
21
|
var _hoisted_2 = {
|
|
22
22
|
key: 0
|
|
23
23
|
};
|
|
24
|
-
|
|
24
|
+
|
|
25
|
+
function __render__(_ctx, _cache) {
|
|
25
26
|
var _component_clock = _resolveComponent("clock");
|
|
26
27
|
|
|
27
28
|
return _openBlock(), _createElementBlock("div", {
|
|
@@ -119,8 +120,8 @@ export function render(_ctx, _cache) {
|
|
|
119
120
|
/* CLASS */
|
|
120
121
|
);
|
|
121
122
|
}
|
|
122
|
-
|
|
123
|
-
|
|
123
|
+
|
|
124
|
+
var __sfc__ = defineComponent({
|
|
124
125
|
name: 'VarTimePicker',
|
|
125
126
|
components: {
|
|
126
127
|
Clock
|
|
@@ -404,4 +405,7 @@ export default defineComponent({
|
|
|
404
405
|
};
|
|
405
406
|
}
|
|
406
407
|
|
|
407
|
-
});
|
|
408
|
+
});
|
|
409
|
+
|
|
410
|
+
__sfc__.render = __render__;
|
|
411
|
+
export default __sfc__;
|
package/es/time-picker/clock.mjs
CHANGED
|
@@ -10,7 +10,8 @@ var {
|
|
|
10
10
|
classes
|
|
11
11
|
} = createNamespace('time-picker');
|
|
12
12
|
import { normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, toDisplayString as _toDisplayString, createCommentVNode as _createCommentVNode } from "vue";
|
|
13
|
-
|
|
13
|
+
|
|
14
|
+
function __render__(_ctx, _cache) {
|
|
14
15
|
return _openBlock(), _createElementBlock("div", {
|
|
15
16
|
class: _normalizeClass(_ctx.n('clock'))
|
|
16
17
|
}, [_createElementVNode("div", {
|
|
@@ -48,8 +49,8 @@ export function render(_ctx, _cache) {
|
|
|
48
49
|
/* CLASS */
|
|
49
50
|
);
|
|
50
51
|
}
|
|
51
|
-
|
|
52
|
-
|
|
52
|
+
|
|
53
|
+
var __sfc__ = defineComponent({
|
|
53
54
|
name: 'Clock',
|
|
54
55
|
props: {
|
|
55
56
|
isInner: {
|
|
@@ -331,4 +332,7 @@ export default defineComponent({
|
|
|
331
332
|
};
|
|
332
333
|
}
|
|
333
334
|
|
|
334
|
-
});
|
|
335
|
+
});
|
|
336
|
+
|
|
337
|
+
__sfc__.render = __render__;
|
|
338
|
+
export default __sfc__;
|
package/es/tooltip/Tooltip.mjs
CHANGED
|
@@ -7,7 +7,8 @@ var {
|
|
|
7
7
|
classes
|
|
8
8
|
} = createNamespace('tooltip');
|
|
9
9
|
import { renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, vShow as _vShow, withModifiers as _withModifiers, withDirectives as _withDirectives, Transition as _Transition, withCtx as _withCtx, createVNode as _createVNode, Teleport as _Teleport, openBlock as _openBlock, createBlock as _createBlock, createElementBlock as _createElementBlock } from "vue";
|
|
10
|
-
|
|
10
|
+
|
|
11
|
+
function __render__(_ctx, _cache) {
|
|
11
12
|
return _openBlock(), _createElementBlock("div", {
|
|
12
13
|
ref: "host",
|
|
13
14
|
class: _normalizeClass(_ctx.n()),
|
|
@@ -63,8 +64,8 @@ export function render(_ctx, _cache) {
|
|
|
63
64
|
/* CLASS, HYDRATE_EVENTS */
|
|
64
65
|
);
|
|
65
66
|
}
|
|
66
|
-
|
|
67
|
-
|
|
67
|
+
|
|
68
|
+
var __sfc__ = defineComponent({
|
|
68
69
|
name: 'VarTooltip',
|
|
69
70
|
props,
|
|
70
71
|
|
|
@@ -106,4 +107,7 @@ export default defineComponent({
|
|
|
106
107
|
};
|
|
107
108
|
}
|
|
108
109
|
|
|
109
|
-
});
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
__sfc__.render = __render__;
|
|
113
|
+
export default __sfc__;
|
package/es/uploader/Uploader.mjs
CHANGED
|
@@ -27,7 +27,8 @@ var _hoisted_2 = ["onClick"];
|
|
|
27
27
|
var _hoisted_3 = ["src", "alt"];
|
|
28
28
|
var _hoisted_4 = ["multiple", "accept", "capture", "disabled"];
|
|
29
29
|
var _hoisted_5 = ["src"];
|
|
30
|
-
|
|
30
|
+
|
|
31
|
+
function __render__(_ctx, _cache) {
|
|
31
32
|
var _component_var_icon = _resolveComponent("var-icon");
|
|
32
33
|
|
|
33
34
|
var _component_var_form_details = _resolveComponent("var-form-details");
|
|
@@ -152,8 +153,8 @@ export function render(_ctx, _cache) {
|
|
|
152
153
|
/* CLASS */
|
|
153
154
|
);
|
|
154
155
|
}
|
|
155
|
-
|
|
156
|
-
|
|
156
|
+
|
|
157
|
+
var __sfc__ = defineComponent({
|
|
157
158
|
name: 'VarUploader',
|
|
158
159
|
directives: {
|
|
159
160
|
Ripple
|
|
@@ -462,4 +463,7 @@ export default defineComponent({
|
|
|
462
463
|
};
|
|
463
464
|
}
|
|
464
465
|
|
|
465
|
-
});
|
|
466
|
+
});
|
|
467
|
+
|
|
468
|
+
__sfc__.render = __render__;
|
|
469
|
+
export default __sfc__;
|