vft 0.0.135 → 0.0.136
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/components/backtop/backtop.vue2.js +3 -2
- package/es/components/button/use-button.js +3 -3
- package/es/components/context-menu/context-menu.vue2.js +3 -2
- package/es/components/footer-layout/footer-layout.vue2.js +3 -2
- package/es/components/header-layout/header-layout.vue2.js +3 -2
- package/es/components/index.d.ts +1 -0
- package/es/components/index.js +164 -162
- package/es/components/infinite-scroll/index.d.ts +26 -0
- package/es/components/infinite-scroll/index.js +10 -0
- package/es/components/infinite-scroll/infinite-scroll.d.ts +20 -0
- package/es/components/infinite-scroll/infinite-scroll.js +92 -0
- package/es/components/infinite-scroll/style/css.d.ts +0 -0
- package/es/components/infinite-scroll/style/css.js +2 -0
- package/es/components/infinite-scroll/style/index.d.ts +0 -0
- package/es/components/infinite-scroll/style/index.js +2 -0
- package/es/components/md-container/md-container.vue2.js +3 -2
- package/es/components/menu/menu-item.vue2.js +21 -20
- package/es/components/menu/sub-menu.vue2.js +3 -2
- package/es/components/modal/modal-footer-action.vue2.js +3 -2
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +3 -2
- package/es/components/result/result.vue2.js +3 -2
- package/es/components/side-menu/side-menu.vue2.js +3 -2
- package/es/components/super-form/component-map.js +11 -10
- package/es/components/super-form/super-form-action.vue2.js +3 -2
- package/es/components/super-form/super-form-item.vue2.js +35 -34
- package/es/components/super-form/super-form.vue2.js +14 -13
- package/es/components/table/field.js +19 -18
- package/es/components/tabs/tab-nav.vue2.js +3 -2
- package/es/index.js +279 -277
- package/es/package.json.js +1 -1
- package/es/plugin.js +5 -3
- package/lib/components/backtop/backtop.vue2.cjs +1 -1
- package/lib/components/button/use-button.cjs +1 -1
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/infinite-scroll/index.cjs +1 -0
- package/lib/components/infinite-scroll/index.d.ts +26 -0
- package/lib/components/infinite-scroll/infinite-scroll.cjs +1 -0
- package/lib/components/infinite-scroll/infinite-scroll.d.ts +20 -0
- package/lib/components/infinite-scroll/style/css.cjs +1 -0
- package/lib/components/infinite-scroll/style/css.d.ts +0 -0
- package/lib/components/infinite-scroll/style/index.cjs +1 -0
- package/lib/components/infinite-scroll/style/index.d.ts +0 -0
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/menu/menu-item.vue2.cjs +1 -1
- package/lib/components/menu/sub-menu.vue2.cjs +1 -1
- package/lib/components/modal/modal-footer-action.vue2.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/super-form/component-map.cjs +1 -1
- package/lib/components/super-form/super-form-action.vue2.cjs +1 -1
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/super-form/super-form.vue2.cjs +1 -1
- package/lib/components/table/field.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/plugin.cjs +1 -1
- package/package.json +3 -3
- package/web-types.json +1 -1
|
@@ -91,13 +91,14 @@ import { useNamespace as w } from "../../hooks/use-namespace/index.js";
|
|
|
91
91
|
import "@popperjs/core";
|
|
92
92
|
import "../../hooks/use-z-index/index.js";
|
|
93
93
|
import "../message/index.js";
|
|
94
|
+
import "../infinite-scroll/index.js";
|
|
94
95
|
import { useBackTop as I } from "./use-backtop.js";
|
|
95
96
|
const m = (
|
|
96
97
|
/* hoist-static*/
|
|
97
98
|
w("backtop")
|
|
98
99
|
), N = s({
|
|
99
100
|
name: "vft-backtop"
|
|
100
|
-
}),
|
|
101
|
+
}), Co = /* @__PURE__ */ s({
|
|
101
102
|
...N,
|
|
102
103
|
props: {
|
|
103
104
|
visibilityHeight: { default: 200 },
|
|
@@ -140,5 +141,5 @@ const m = (
|
|
|
140
141
|
}
|
|
141
142
|
});
|
|
142
143
|
export {
|
|
143
|
-
|
|
144
|
+
Co as default
|
|
144
145
|
};
|
|
@@ -3,11 +3,11 @@ import "../form/index.js";
|
|
|
3
3
|
import { useThrottleFn as b } from "@vueuse/core";
|
|
4
4
|
import { inject as _, computed as i, ref as F, useSlots as I, Text as S } from "vue";
|
|
5
5
|
import { buttonGroupContextKey as k } from "./constants.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { useFormItem as T } from "../form/hooks/use-form-item.js";
|
|
7
|
+
import { useGlobalConfig as z } from "../config-provider/hooks/use-global-config.js";
|
|
8
8
|
import { useFormSize as C, useFormDisabled as D } from "../form/hooks/use-form-common-props.js";
|
|
9
9
|
const E = (t, l) => {
|
|
10
|
-
const o = _(k, void 0), u =
|
|
10
|
+
const o = _(k, void 0), u = z("button"), { form: s } = T(), d = C(i(() => o == null ? void 0 : o.size)), r = D(), m = F(), a = I(), f = i(() => t.type || (o == null ? void 0 : o.type) || ""), p = i(
|
|
11
11
|
() => {
|
|
12
12
|
var e;
|
|
13
13
|
return t.autoInsertSpace ?? ((e = u.value) == null ? void 0 : e.autoInsertSpace) ?? !1;
|
|
@@ -91,12 +91,13 @@ import { useNamespace as I } from "../../hooks/use-namespace/index.js";
|
|
|
91
91
|
import "@popperjs/core";
|
|
92
92
|
import "../../hooks/use-z-index/index.js";
|
|
93
93
|
import "../message/index.js";
|
|
94
|
+
import "../infinite-scroll/index.js";
|
|
94
95
|
const L = { class: "vft-sub-menu" }, N = (
|
|
95
96
|
/* hoist-static*/
|
|
96
97
|
I("context-menu")
|
|
97
98
|
), R = f({
|
|
98
99
|
name: "vft-context-menu"
|
|
99
|
-
}),
|
|
100
|
+
}), zo = /* @__PURE__ */ f({
|
|
100
101
|
...R,
|
|
101
102
|
props: {
|
|
102
103
|
axis: {},
|
|
@@ -170,5 +171,5 @@ const L = { class: "vft-sub-menu" }, N = (
|
|
|
170
171
|
}
|
|
171
172
|
});
|
|
172
173
|
export {
|
|
173
|
-
|
|
174
|
+
zo as default
|
|
174
175
|
};
|
|
@@ -91,12 +91,13 @@ import { useNamespace as f } from "../../hooks/use-namespace/index.js";
|
|
|
91
91
|
import "@popperjs/core";
|
|
92
92
|
import "../../hooks/use-z-index/index.js";
|
|
93
93
|
import "../message/index.js";
|
|
94
|
+
import "../infinite-scroll/index.js";
|
|
94
95
|
const r = (
|
|
95
96
|
/* hoist-static*/
|
|
96
97
|
f("footer-layout")
|
|
97
98
|
), c = e({
|
|
98
99
|
name: "vft-footer-layout"
|
|
99
|
-
}),
|
|
100
|
+
}), oo = /* @__PURE__ */ e({
|
|
100
101
|
...c,
|
|
101
102
|
setup(u) {
|
|
102
103
|
return (i, d) => (s(), l(t(n), {
|
|
@@ -124,5 +125,5 @@ const r = (
|
|
|
124
125
|
}
|
|
125
126
|
});
|
|
126
127
|
export {
|
|
127
|
-
|
|
128
|
+
oo as default
|
|
128
129
|
};
|
|
@@ -91,6 +91,7 @@ import { useNamespace as k } from "../../hooks/use-namespace/index.js";
|
|
|
91
91
|
import "@popperjs/core";
|
|
92
92
|
import "../../hooks/use-z-index/index.js";
|
|
93
93
|
import "../message/index.js";
|
|
94
|
+
import "../infinite-scroll/index.js";
|
|
94
95
|
const y = { class: "content" }, $ = {
|
|
95
96
|
key: 0,
|
|
96
97
|
class: "left"
|
|
@@ -102,7 +103,7 @@ const y = { class: "content" }, $ = {
|
|
|
102
103
|
k("header-layout")
|
|
103
104
|
), N = f({
|
|
104
105
|
name: "vft-header-layout"
|
|
105
|
-
}),
|
|
106
|
+
}), ut = /* @__PURE__ */ f({
|
|
106
107
|
...N,
|
|
107
108
|
props: {
|
|
108
109
|
logoCfg: {}
|
|
@@ -148,5 +149,5 @@ const y = { class: "content" }, $ = {
|
|
|
148
149
|
}
|
|
149
150
|
});
|
|
150
151
|
export {
|
|
151
|
-
|
|
152
|
+
ut as default
|
|
152
153
|
};
|
package/es/components/index.d.ts
CHANGED
package/es/components/index.js
CHANGED
|
@@ -4,12 +4,12 @@ import { VftBacktop as p } from "./backtop/index.js";
|
|
|
4
4
|
import { VftButton as a, VftButtonGroup as i } from "./button/index.js";
|
|
5
5
|
import { VftCard as V } from "./card/index.js";
|
|
6
6
|
import { VftCheckTag as u } from "./check-tag/index.js";
|
|
7
|
-
import { VftCheckbox as
|
|
7
|
+
import { VftCheckbox as d, VftCheckboxButton as c, VftCheckboxGroup as C } from "./checkbox/index.js";
|
|
8
8
|
import { VftClamp as T } from "./clamp/index.js";
|
|
9
9
|
import { VftClampToggle as g } from "./clamp-toggle/index.js";
|
|
10
10
|
import { VftCol as P } from "./col/index.js";
|
|
11
11
|
import { VftCollapseTransition as F } from "./collapse-transition/index.js";
|
|
12
|
-
import { VftColorPicker as
|
|
12
|
+
import { VftColorPicker as L } from "./color-picker/index.js";
|
|
13
13
|
import { VftConfigProvider as b } from "./config-provider/index.js";
|
|
14
14
|
import { VftAside as A, VftContainer as K, VftFooter as k, VftHeader as v, VftMain as R } from "./container/index.js";
|
|
15
15
|
import { createContextMenu as O, destroyContextMenu as w } from "./context-menu/createContextMenu.js";
|
|
@@ -30,7 +30,7 @@ import { VftHeaderLayout as Co } from "./header-layout/index.js";
|
|
|
30
30
|
import { VftHorizontalMenu as To } from "./horizontal-menu/index.js";
|
|
31
31
|
import { VftIcon as go, VftIcon as Eo } from "./icon/index.js";
|
|
32
32
|
import { VftIconText as Mo } from "./icon-text/index.js";
|
|
33
|
-
import { VftIframeLayout as
|
|
33
|
+
import { VftIframeLayout as So } from "./iframe-layout/index.js";
|
|
34
34
|
import { VftImage as yo } from "./image/index.js";
|
|
35
35
|
import { VftImageViewer as _o } from "./image-viewer/index.js";
|
|
36
36
|
import { VftInput as Ko } from "./input/index.js";
|
|
@@ -49,13 +49,13 @@ import { VftPopper as mr } from "./popper/index.js";
|
|
|
49
49
|
import { VftQrcode as xr } from "./qrcode/index.js";
|
|
50
50
|
import { VftRadio as ir, VftRadioButton as nr, VftRadioGroup as Vr } from "./radio/index.js";
|
|
51
51
|
import { VftResult as ur } from "./result/index.js";
|
|
52
|
-
import { VftRouterViewContent as
|
|
52
|
+
import { VftRouterViewContent as dr } from "./router-view-content/index.js";
|
|
53
53
|
import { VftRow as Cr } from "./row/index.js";
|
|
54
54
|
import { VftScrollbar as Tr } from "./scrollbar/index.js";
|
|
55
55
|
import { VftSearch as gr } from "./search/index.js";
|
|
56
56
|
import { VftSelect as Pr } from "./select/index.js";
|
|
57
57
|
import { VftSideMenu as Fr } from "./side-menu/index.js";
|
|
58
|
-
import { VftSkeleton as
|
|
58
|
+
import { VftSkeleton as Lr, VftSkeletonItem as yr } from "./skeleton/index.js";
|
|
59
59
|
import { VftSlider as _r } from "./slider/index.js";
|
|
60
60
|
import { VftSpace as Kr } from "./space/index.js";
|
|
61
61
|
import { VftSwitch as vr } from "./switch/index.js";
|
|
@@ -73,99 +73,100 @@ import { default as te } from "./virtual-list/components/fixed-size-list.js";
|
|
|
73
73
|
import { virtualizedGridProps as me, virtualizedListProps as pe, virtualizedProps as xe, virtualizedScrollbarProps as ae } from "./virtual-list/props.js";
|
|
74
74
|
import { VftAutocomplete as ne } from "./autocomplete/index.js";
|
|
75
75
|
import { VftModal as se } from "./modal/index.js";
|
|
76
|
-
import { VftProgress as
|
|
76
|
+
import { VftProgress as le } from "./progress/index.js";
|
|
77
77
|
import { VftSuperForm as ce } from "./super-form/index.js";
|
|
78
78
|
import { VftUpload as Ie } from "./upload/index.js";
|
|
79
79
|
import { VftCarousel as De, VftCarouselItem as ge } from "./carousel/index.js";
|
|
80
80
|
import { VftMdCodeDemo as Pe } from "./md-code-demo/index.js";
|
|
81
81
|
import { VftMdCodeTabs as Fe } from "./md-code-tabs/index.js";
|
|
82
|
-
import { VftMdComment as
|
|
82
|
+
import { VftMdComment as Le } from "./md-comment/index.js";
|
|
83
83
|
import { VftMdContainer as be } from "./md-container/index.js";
|
|
84
84
|
import { VftMdTabs as Ae } from "./md-tabs/index.js";
|
|
85
85
|
import { VftMdVuePlayground as ke } from "./md-vue-playground/index.js";
|
|
86
86
|
import { VftLoading as Re } from "./loading/index.js";
|
|
87
87
|
import { VftMessage as Oe, VftMessage as we } from "./message/index.js";
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
88
|
+
import { VftInfiniteScroll as Ne } from "./infinite-scroll/index.js";
|
|
89
|
+
import { default as Ue } from "./time-picker/common/picker.vue2.js";
|
|
90
|
+
import { default as He } from "./time-picker/time-picker-com/panel-time-pick.vue2.js";
|
|
91
|
+
import { buttonGroupContextKey as Je } from "./button/constants.js";
|
|
92
|
+
import { checkboxGroupContextKey as je } from "./checkbox/constants.js";
|
|
93
|
+
import { configProviderContextKey as We, messageConfig as Xe } from "./config-provider/constants.js";
|
|
94
|
+
import { provideGlobalConfig as $e, useGlobalComponentSettings as ot, useGlobalConfig as rt } from "./config-provider/hooks/use-global-config.js";
|
|
95
|
+
import { ROOT_PICKER_INJECTION_KEY as tt, datePickerConfig as ft } from "./date-picker/constants.js";
|
|
96
|
+
import { datePickerProps as pt } from "./date-picker/props/date-picker.js";
|
|
97
|
+
import { dialogInjectionKey as at } from "./dialog/constants.js";
|
|
98
|
+
import { useDialog as nt } from "./dialog/hooks/use-dialog.js";
|
|
99
|
+
import { DROPDOWN_INJECTION_KEY as st } from "./dropdown/tokens.js";
|
|
100
|
+
import { EmptyEnum as lt } from "./empty/constants.js";
|
|
101
|
+
import { formContextKey as ct, formItemContextKey as Ct } from "./form/constants.js";
|
|
102
|
+
import { useDisabled as Tt, useFormDisabled as Dt, useFormSize as gt, useSize as Et } from "./form/hooks/use-form-common-props.js";
|
|
103
|
+
import { useFormItem as Mt, useFormItemInputId as Ft } from "./form/hooks/use-form-item.js";
|
|
104
|
+
import { formItemValidateStates as Lt } from "./form/types.js";
|
|
105
|
+
import { MenuTypeEnum as bt } from "./horizontal-menu/constants.js";
|
|
106
|
+
import { initAffixTabs as At, useTabsDrag as Kt } from "./multiple-tabs/use/use-multiple-tabs.js";
|
|
107
|
+
import { useTabDropdown as vt } from "./multiple-tabs/use/use-tab-dropdown.js";
|
|
108
|
+
import { usePagination as Gt, vftPaginationKey as Ot } from "./pagination/usePagination.js";
|
|
109
|
+
import { default as zt } from "./popper/arrow.vue2.js";
|
|
110
|
+
import { default as ht } from "./popper/content.vue2.js";
|
|
111
|
+
import { default as Bt } from "./popper/trigger.vue2.js";
|
|
112
|
+
import { radioGroupKey as qt } from "./radio/constants.js";
|
|
113
|
+
import { rowContextKey as Yt } from "./row/constants.js";
|
|
114
|
+
import { scrollbarContextKey as Qt } from "./scrollbar/constants.js";
|
|
115
|
+
import { BAR_MAP as Xt, GAP as Zt, renderThumbStyle as $t } from "./scrollbar/util.js";
|
|
116
|
+
import { selectInjectionKey as rf } from "./select/token.js";
|
|
117
|
+
import { sliderContextKey as tf } from "./slider/constants.js";
|
|
118
|
+
import { sliderEmits as mf } from "./slider/slider.js";
|
|
119
|
+
import { spaceProps as xf } from "./space/space.js";
|
|
120
|
+
import { useSpace as nf } from "./space/use-space.js";
|
|
121
|
+
import { ACTION_FIELD as sf, CHECKED_FIELD as uf, CREATE_TIME_FIELD as lf, DATE_FIELD as df, DATE_TIME_FIELD as cf, ID_FIELD as Cf, NAME_FIELD as If, SEQ_FIELD as Tf, STATUS_FIELD as Df, UPDATE_TIME_FIELD as gf } from "./table/field.js";
|
|
122
|
+
import { useTable as Pf } from "./table/use/use-table.js";
|
|
123
|
+
import { addRequire as Ff, removeRequire as Sf, selectMapping as Lf } from "./table/utils.js";
|
|
124
|
+
import { TabsRootContextKey as bf } from "./tabs/types.js";
|
|
125
|
+
import { timePickerDefaultProps as Af } from "./time-picker/common/props.js";
|
|
126
|
+
import { DEFAULT_FORMATS_DATE as kf, DEFAULT_FORMATS_DATEPICKER as vf, DEFAULT_FORMATS_TIME as Rf, timeUnits as Gf } from "./time-picker/constants.js";
|
|
127
|
+
import { buildTimeList as wf, dateEquals as zf, extractDateFormat as Nf, extractTimeFormat as hf, formatter as Uf, makeList as Bf, parseDate as Hf, rangeArr as qf, valueEquals as Jf } from "./time-picker/utils.js";
|
|
128
|
+
import { TOOLTIP_INJECTION_KEY as jf } from "./tooltip/constants.js";
|
|
129
|
+
import { getChildState as Wf } from "./tree/model/node.js";
|
|
130
|
+
import { dragEventsKey as Zf, useDragNodeHandler as $f } from "./tree/model/useDragNode.js";
|
|
131
|
+
import { useModal as rm, useModalInner as em } from "./modal/use/use-modal.js";
|
|
132
|
+
import { FormCompEnum as fm, add as mm, componentMap as pm, del as xm, isDatePicker as am, isInput as im, isRangePicker as nm } from "./super-form/component-map.js";
|
|
133
|
+
import { getDynamicProps as sm, useForm as um } from "./super-form/use/use-form.js";
|
|
134
|
+
import { genFileId as dm, uploadContextKey as cm } from "./upload/constants.js";
|
|
135
|
+
import { carouselContextKey as Im } from "./carousel/constants.js";
|
|
136
|
+
import { vLoading as Dm, createLoadingDirective as gm, vLoading as Em } from "./loading/directive.js";
|
|
137
|
+
import { Loading as Mm } from "./loading/service.js";
|
|
138
|
+
import { messageDefaults as Sm, messageTypes as Lm } from "./message/types.js";
|
|
138
139
|
export {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
140
|
+
sf as ACTION_FIELD,
|
|
141
|
+
Xt as BAR_MAP,
|
|
142
|
+
uf as CHECKED_FIELD,
|
|
143
|
+
lf as CREATE_TIME_FIELD,
|
|
144
|
+
Ue as CommonPicker,
|
|
145
|
+
df as DATE_FIELD,
|
|
146
|
+
cf as DATE_TIME_FIELD,
|
|
147
|
+
kf as DEFAULT_FORMATS_DATE,
|
|
148
|
+
vf as DEFAULT_FORMATS_DATEPICKER,
|
|
149
|
+
Rf as DEFAULT_FORMATS_TIME,
|
|
150
|
+
st as DROPDOWN_INJECTION_KEY,
|
|
150
151
|
Xr as DynamicSizeGrid,
|
|
151
152
|
$r as DynamicSizeList,
|
|
152
|
-
|
|
153
|
+
lt as EmptyEnum,
|
|
153
154
|
re as FixedSizeGrid,
|
|
154
155
|
te as FixedSizeList,
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
fm as FormCompEnum,
|
|
157
|
+
Zt as GAP,
|
|
158
|
+
Cf as ID_FIELD,
|
|
158
159
|
go as Icon,
|
|
159
|
-
|
|
160
|
+
bt as MenuTypeEnum,
|
|
160
161
|
Oe as Message,
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
162
|
+
If as NAME_FIELD,
|
|
163
|
+
tt as ROOT_PICKER_INJECTION_KEY,
|
|
164
|
+
Tf as SEQ_FIELD,
|
|
165
|
+
Df as STATUS_FIELD,
|
|
166
|
+
jf as TOOLTIP_INJECTION_KEY,
|
|
167
|
+
bf as TabsRootContextKey,
|
|
168
|
+
He as TimePickPanel,
|
|
169
|
+
gf as UPDATE_TIME_FIELD,
|
|
169
170
|
e as VftAlert,
|
|
170
171
|
A as VftAside,
|
|
171
172
|
ne as VftAutocomplete,
|
|
@@ -177,14 +178,14 @@ export {
|
|
|
177
178
|
De as VftCarousel,
|
|
178
179
|
ge as VftCarouselItem,
|
|
179
180
|
u as VftCheckTag,
|
|
180
|
-
|
|
181
|
+
d as VftCheckbox,
|
|
181
182
|
c as VftCheckboxButton,
|
|
182
183
|
C as VftCheckboxGroup,
|
|
183
184
|
T as VftClamp,
|
|
184
185
|
g as VftClampToggle,
|
|
185
186
|
P as VftCol,
|
|
186
187
|
F as VftCollapseTransition,
|
|
187
|
-
|
|
188
|
+
L as VftColorPicker,
|
|
188
189
|
b as VftConfigProvider,
|
|
189
190
|
K as VftContainer,
|
|
190
191
|
U as VftDatePicker,
|
|
@@ -209,21 +210,22 @@ export {
|
|
|
209
210
|
To as VftHorizontalMenu,
|
|
210
211
|
Eo as VftIcon,
|
|
211
212
|
Mo as VftIconText,
|
|
212
|
-
|
|
213
|
+
So as VftIframeLayout,
|
|
213
214
|
yo as VftImage,
|
|
214
215
|
_o as VftImageViewer,
|
|
216
|
+
Ne as VftInfiniteScroll,
|
|
215
217
|
Ko as VftInput,
|
|
216
218
|
vo as VftInputNumber,
|
|
217
219
|
Go as VftLink,
|
|
218
220
|
wo as VftListCell,
|
|
219
221
|
Re as VftLoading,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
+
Dm as VftLoadingDirective,
|
|
223
|
+
Mm as VftLoadingService,
|
|
222
224
|
No as VftLogo,
|
|
223
225
|
R as VftMain,
|
|
224
226
|
Pe as VftMdCodeDemo,
|
|
225
227
|
Fe as VftMdCodeTabs,
|
|
226
|
-
|
|
228
|
+
Le as VftMdComment,
|
|
227
229
|
be as VftMdContainer,
|
|
228
230
|
Ae as VftMdTabs,
|
|
229
231
|
ke as VftMdVuePlayground,
|
|
@@ -239,22 +241,22 @@ export {
|
|
|
239
241
|
rr as VftPopconfirm,
|
|
240
242
|
tr as VftPopover,
|
|
241
243
|
mr as VftPopper,
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
zt as VftPopperArrow,
|
|
245
|
+
ht as VftPopperContent,
|
|
246
|
+
Bt as VftPopperTrigger,
|
|
247
|
+
le as VftProgress,
|
|
246
248
|
xr as VftQrcode,
|
|
247
249
|
ir as VftRadio,
|
|
248
250
|
nr as VftRadioButton,
|
|
249
251
|
Vr as VftRadioGroup,
|
|
250
252
|
ur as VftResult,
|
|
251
|
-
|
|
253
|
+
dr as VftRouterViewContent,
|
|
252
254
|
Cr as VftRow,
|
|
253
255
|
Tr as VftScrollbar,
|
|
254
256
|
gr as VftSearch,
|
|
255
257
|
Pr as VftSelect,
|
|
256
258
|
Fr as VftSideMenu,
|
|
257
|
-
|
|
259
|
+
Lr as VftSkeleton,
|
|
258
260
|
yr as VftSkeletonItem,
|
|
259
261
|
_r as VftSlider,
|
|
260
262
|
Kr as VftSpace,
|
|
@@ -270,78 +272,78 @@ export {
|
|
|
270
272
|
Yr as VftTree,
|
|
271
273
|
Ie as VftUpload,
|
|
272
274
|
Qr as VftVerifyCode,
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
275
|
+
mm as add,
|
|
276
|
+
Ff as addRequire,
|
|
277
|
+
wf as buildTimeList,
|
|
278
|
+
Je as buttonGroupContextKey,
|
|
279
|
+
Im as carouselContextKey,
|
|
280
|
+
je as checkboxGroupContextKey,
|
|
281
|
+
pm as componentMap,
|
|
282
|
+
We as configProviderContextKey,
|
|
281
283
|
O as createContextMenu,
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
284
|
+
gm as createLoadingDirective,
|
|
285
|
+
zf as dateEquals,
|
|
286
|
+
ft as datePickerConfig,
|
|
287
|
+
pt as datePickerProps,
|
|
288
|
+
xm as del,
|
|
287
289
|
w as destroyContextMenu,
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
290
|
+
at as dialogInjectionKey,
|
|
291
|
+
Zf as dragEventsKey,
|
|
292
|
+
Nf as extractDateFormat,
|
|
293
|
+
hf as extractTimeFormat,
|
|
294
|
+
ct as formContextKey,
|
|
295
|
+
Ct as formItemContextKey,
|
|
296
|
+
Lt as formItemValidateStates,
|
|
297
|
+
Uf as formatter,
|
|
298
|
+
dm as genFileId,
|
|
299
|
+
Wf as getChildState,
|
|
300
|
+
sm as getDynamicProps,
|
|
301
|
+
At as initAffixTabs,
|
|
302
|
+
am as isDatePicker,
|
|
303
|
+
im as isInput,
|
|
304
|
+
nm as isRangePicker,
|
|
305
|
+
Bf as makeList,
|
|
306
|
+
Xe as messageConfig,
|
|
307
|
+
Sm as messageDefaults,
|
|
308
|
+
Lm as messageTypes,
|
|
309
|
+
Hf as parseDate,
|
|
310
|
+
$e as provideGlobalConfig,
|
|
311
|
+
qt as radioGroupKey,
|
|
312
|
+
qf as rangeArr,
|
|
313
|
+
Sf as removeRequire,
|
|
314
|
+
$t as renderThumbStyle,
|
|
315
|
+
Yt as rowContextKey,
|
|
316
|
+
Qt as scrollbarContextKey,
|
|
317
|
+
rf as selectInjectionKey,
|
|
318
|
+
Lf as selectMapping,
|
|
319
|
+
tf as sliderContextKey,
|
|
320
|
+
mf as sliderEmits,
|
|
321
|
+
xf as spaceProps,
|
|
322
|
+
Af as timePickerDefaultProps,
|
|
323
|
+
Gf as timeUnits,
|
|
324
|
+
cm as uploadContextKey,
|
|
323
325
|
N as useContextMenu,
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
326
|
+
nt as useDialog,
|
|
327
|
+
Tt as useDisabled,
|
|
328
|
+
$f as useDragNodeHandler,
|
|
329
|
+
um as useForm,
|
|
330
|
+
Dt as useFormDisabled,
|
|
331
|
+
Mt as useFormItem,
|
|
332
|
+
Ft as useFormItemInputId,
|
|
333
|
+
gt as useFormSize,
|
|
334
|
+
ot as useGlobalComponentSettings,
|
|
335
|
+
rt as useGlobalConfig,
|
|
336
|
+
rm as useModal,
|
|
337
|
+
em as useModalInner,
|
|
338
|
+
Gt as usePagination,
|
|
339
|
+
Et as useSize,
|
|
340
|
+
nf as useSpace,
|
|
341
|
+
vt as useTabDropdown,
|
|
342
|
+
Pf as useTable,
|
|
343
|
+
Kt as useTabsDrag,
|
|
344
|
+
Em as vLoading,
|
|
345
|
+
Jf as valueEquals,
|
|
346
|
+
Ot as vftPaginationKey,
|
|
345
347
|
me as virtualizedGridProps,
|
|
346
348
|
pe as virtualizedListProps,
|
|
347
349
|
xe as virtualizedProps,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { SFCWithInstall } from 'vft/es/utils';
|
|
2
|
+
declare const _InfiniteScroll: SFCWithInstall<import("vue").ObjectDirective<HTMLElement & {
|
|
3
|
+
VftInfiniteScroll: {
|
|
4
|
+
container: Window | HTMLElement;
|
|
5
|
+
containerEl: HTMLElement;
|
|
6
|
+
instance: import("vue").ComponentPublicInstance;
|
|
7
|
+
delay: number;
|
|
8
|
+
lastScrollTop: number;
|
|
9
|
+
cb: () => void;
|
|
10
|
+
onScroll: () => void;
|
|
11
|
+
observer?: MutationObserver | undefined;
|
|
12
|
+
};
|
|
13
|
+
}, () => void>>;
|
|
14
|
+
export default _InfiniteScroll;
|
|
15
|
+
export declare const VftInfiniteScroll: SFCWithInstall<import("vue").ObjectDirective<HTMLElement & {
|
|
16
|
+
VftInfiniteScroll: {
|
|
17
|
+
container: Window | HTMLElement;
|
|
18
|
+
containerEl: HTMLElement;
|
|
19
|
+
instance: import("vue").ComponentPublicInstance;
|
|
20
|
+
delay: number;
|
|
21
|
+
lastScrollTop: number;
|
|
22
|
+
cb: () => void;
|
|
23
|
+
onScroll: () => void;
|
|
24
|
+
observer?: MutationObserver | undefined;
|
|
25
|
+
};
|
|
26
|
+
}, () => void>>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { ComponentPublicInstance, ObjectDirective } from 'vue';
|
|
2
|
+
export declare const SCOPE = "VftInfiniteScroll";
|
|
3
|
+
export declare const CHECK_INTERVAL = 50;
|
|
4
|
+
export declare const DEFAULT_DELAY = 200;
|
|
5
|
+
export declare const DEFAULT_DISTANCE = 0;
|
|
6
|
+
type InfiniteScrollCallback = () => void;
|
|
7
|
+
type InfiniteScrollEl = HTMLElement & {
|
|
8
|
+
[SCOPE]: {
|
|
9
|
+
container: HTMLElement | Window;
|
|
10
|
+
containerEl: HTMLElement;
|
|
11
|
+
instance: ComponentPublicInstance;
|
|
12
|
+
delay: number;
|
|
13
|
+
lastScrollTop: number;
|
|
14
|
+
cb: InfiniteScrollCallback;
|
|
15
|
+
onScroll: () => void;
|
|
16
|
+
observer?: MutationObserver;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
declare const InfiniteScroll: ObjectDirective<InfiniteScrollEl, InfiniteScrollCallback>;
|
|
20
|
+
export default InfiniteScroll;
|