vft 0.0.365 → 0.0.367
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/index.js +17 -17
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +4 -4
- package/web-types.json +1 -1
package/es/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export { VftColorPicker } from "./components/color-picker/index.js";
|
|
|
18
18
|
export { VftConfigProvider } from "./components/config-provider/index.js";
|
|
19
19
|
export { VftAside, VftContainer, VftFooter, VftHeader, VftMain } from "./components/container/index.js";
|
|
20
20
|
export { createContextMenu, destroyContextMenu } from "./components/context-menu/createContextMenu.js";
|
|
21
|
-
export { VftIcon
|
|
21
|
+
export { VftIcon } from "./components/icon/index.js";
|
|
22
22
|
export { useContextMenu } from "./components/context-menu/useContextMenu.js";
|
|
23
23
|
export { VftDatePicker } from "./components/date-picker/index.js";
|
|
24
24
|
export { VftDateTimeSelect } from "./components/date-time-select/index.js";
|
|
@@ -42,7 +42,7 @@ export { VftInputNumber } from "./components/input-number/index.js";
|
|
|
42
42
|
export { VftLink } from "./components/link/index.js";
|
|
43
43
|
export { VftListCell } from "./components/list-cell/index.js";
|
|
44
44
|
export { VftLogo } from "./components/logo/index.js";
|
|
45
|
-
export { VftMenu, VftMenuItem, VftMenuItemGroup
|
|
45
|
+
export { VftMenu, VftMenuItem, VftMenuItemGroup, VftSubMenu } from "./components/menu/index.js";
|
|
46
46
|
export { VftMultipleTabs } from "./components/multiple-tabs/index.js";
|
|
47
47
|
export { VftNotification } from "./components/notification/index.js";
|
|
48
48
|
export { VftOverlay } from "./components/overlay/index.js";
|
|
@@ -66,16 +66,16 @@ export { VftSpace } from "./components/space/index.js";
|
|
|
66
66
|
export { VftStep, VftSteps } from "./components/steps/index.js";
|
|
67
67
|
export { VftSwitch } from "./components/switch/index.js";
|
|
68
68
|
export { VftTable } from "./components/table/index.js";
|
|
69
|
-
export { VftTabPane
|
|
69
|
+
export { VftTabPane, VftTabs } from "./components/tabs/index.js";
|
|
70
70
|
export { VftTag } from "./components/tag/index.js";
|
|
71
71
|
export { VftTimePicker } from "./components/time-picker/index.js";
|
|
72
72
|
export { VftTooltip } from "./components/tooltip/index.js";
|
|
73
73
|
export { VftTree } from "./components/tree/index.js";
|
|
74
74
|
export { VftVerifyCode } from "./components/verify-code/index.js";
|
|
75
|
-
export { default as
|
|
76
|
-
export { default as
|
|
77
|
-
export { default as
|
|
78
|
-
export { default as
|
|
75
|
+
export { default as FixedSizeList } from "./components/virtual-list/components/fixed-size-list.js";
|
|
76
|
+
export { default as DynamicSizeList } from "./components/virtual-list/components/dynamic-size-list.js";
|
|
77
|
+
export { default as FixedSizeGrid } from "./components/virtual-list/components/fixed-size-grid.js";
|
|
78
|
+
export { default as DynamicSizeGrid } from "./components/virtual-list/components/dynamic-size-grid.js";
|
|
79
79
|
export { virtualizedGridProps, virtualizedListProps, virtualizedProps, virtualizedScrollbarProps } from "./components/virtual-list/props.js";
|
|
80
80
|
export { VftAutocomplete } from "./components/autocomplete/index.js";
|
|
81
81
|
export { VftBreadcrumb, VftBreadcrumbItem } from "./components/breadcrumb/index.js";
|
|
@@ -89,7 +89,7 @@ export { VftSegmented } from "./components/segmented/index.js";
|
|
|
89
89
|
export { VftStatistic } from "./components/statistic/index.js";
|
|
90
90
|
export { VftSuperForm } from "./components/super-form/index.js";
|
|
91
91
|
export { VftTimeline, VftTimelineItem } from "./components/timeline/index.js";
|
|
92
|
-
export { VftTransfer
|
|
92
|
+
export { VftTransfer } from "./components/transfer/index.js";
|
|
93
93
|
export { VftUpload } from "./components/upload/index.js";
|
|
94
94
|
export { VftWatermark } from "./components/watermark/index.js";
|
|
95
95
|
export { VftMdCodeDemo } from "./components/md-code-demo/index.js";
|
|
@@ -128,7 +128,7 @@ export { useComposition } from "./hooks/use-composition/index.js";
|
|
|
128
128
|
export { useFocusController } from "./hooks/use-focus-controller/index.js";
|
|
129
129
|
export { attemptFocus, focusNode, getSibling, isFocusable, isLeaf, isVisible, obtainAllFocusableElements, triggerEvent } from "./utils/dom/aria.js";
|
|
130
130
|
export { getClientXY, getOffsetTop, getOffsetTopDistance, isInContainer } from "./utils/dom/position.js";
|
|
131
|
-
export { getScrollBarWidth
|
|
131
|
+
export { getScrollBarWidth, getScrollContainer, isScroll, scrollIntoView } from "./utils/dom/scroll.js";
|
|
132
132
|
export { debugWarn, throwError } from "./utils/error.js";
|
|
133
133
|
export { composeEventHandlers, whenMouse } from "./utils/event.js";
|
|
134
134
|
export { addUnit, castArray, getComponentSize, getSizeType, isValidComponentSize, unique } from "./utils/helper.js";
|
|
@@ -139,14 +139,14 @@ export { withInstall, withInstallDirective, withInstallFunction, withNoopInstall
|
|
|
139
139
|
export { buildProp, buildProps, definePropType, epPropKey, isEpProp } from "./utils/vue/props/runtime.js";
|
|
140
140
|
export { cAF, rAF } from "./utils/vue/raf.js";
|
|
141
141
|
export { composeRefs } from "./utils/vue/refs.js";
|
|
142
|
-
export { PatchFlags, ensureOnlyChild, flattedChildren, getFirstValidNode, getNormalizedProps, isComment, isFragment, isTemplate, isText, isValidElementNode, renderBlock
|
|
142
|
+
export { PatchFlags, ensureOnlyChild, flattedChildren, getFirstValidNode, getNormalizedProps, isComment, isFragment, isTemplate, isText, isValidElementNode, renderBlock, renderIf } from "./utils/vue/vnode.js";
|
|
143
143
|
export { CompResolver } from "./comp-resolver.js";
|
|
144
144
|
export { makeInstaller } from "./make-installer.js";
|
|
145
|
-
export { default as
|
|
146
|
-
export { default as
|
|
147
|
-
export { default as
|
|
148
|
-
export { default as
|
|
149
|
-
export { default as
|
|
145
|
+
export { default as VftPopperArrow } from "./components/popper/arrow.vue2.js";
|
|
146
|
+
export { default as VftPopperContent } from "./components/popper/content.vue2.js";
|
|
147
|
+
export { default as VftPopperTrigger } from "./components/popper/trigger.vue2.js";
|
|
148
|
+
export { default as CommonPicker } from "./components/time-picker/common/picker.vue2.js";
|
|
149
|
+
export { default as TimePickPanel } from "./components/time-picker/time-picker-com/panel-time-pick.vue2.js";
|
|
150
150
|
export { buttonGroupContextKey } from "./components/button/constants.js";
|
|
151
151
|
export { cascaderEmits, cascaderProps } from "./components/cascader/cascader.js";
|
|
152
152
|
export { CASCADER_PANEL_INJECTION_KEY } from "./components/cascader-panel/types.js";
|
|
@@ -178,7 +178,7 @@ export { sliderEmits } from "./components/slider/slider.js";
|
|
|
178
178
|
export { spaceProps } from "./components/space/space.js";
|
|
179
179
|
export { useSpace } from "./components/space/use-space.js";
|
|
180
180
|
export { ACTION_FIELD, CHECKED_FIELD, CREATE_TIME_FIELD, DATE_FIELD, DATE_TIME_FIELD, ID_FIELD, NAME_FIELD, SEQ_FIELD, STATUS_FIELD, UPDATE_TIME_FIELD } from "./components/table/field.js";
|
|
181
|
-
export { useTable
|
|
181
|
+
export { useTable } from "./components/table/use/use-table.js";
|
|
182
182
|
export { addRequire, removeRequire, selectMapping } from "./components/table/utils.js";
|
|
183
183
|
export { TabsRootContextKey } from "./components/tabs/types.js";
|
|
184
184
|
export { timePickerDefaultProps, timePickerRangeTriggerProps, timePickerRngeTriggerProps } from "./components/time-picker/common/props.js";
|
|
@@ -193,7 +193,7 @@ export { collapseEmits, collapseProps, emitChangeFn } from "./components/collaps
|
|
|
193
193
|
export { collapseItemProps } from "./components/collapse/collapse-item.js";
|
|
194
194
|
export { collapseContextKey } from "./components/collapse/constants.js";
|
|
195
195
|
export { countdownEmits, countdownProps } from "./components/countdown/countdown.js";
|
|
196
|
-
export { inputTagEmits, inputTagProps
|
|
196
|
+
export { inputTagEmits, inputTagProps } from "./components/input-tag/input-tag.js";
|
|
197
197
|
export { useModal, useModalInner } from "./components/modal/use/use-modal.js";
|
|
198
198
|
export { defaultProps, segmentedEmits, segmentedProps } from "./components/segmented/segmented.js";
|
|
199
199
|
export { FormCompEnum, add, componentMap, del, isDatePicker, isInput, isRangePicker } from "./components/super-form/component-map.js";
|
package/es/package.json.d.ts
CHANGED
package/es/package.json.js
CHANGED
package/lib/package.json.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="0.0.
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="0.0.367";exports.version=e;
|
package/lib/package.json.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vft",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.367",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"sortablejs": "1.15.0",
|
|
57
57
|
"photoswipe": "5.4.4",
|
|
58
58
|
"@vft/constants": "0.0.72",
|
|
59
|
-
"@vft/utils": "0.0.131",
|
|
60
59
|
"@vft/router": "0.0.65",
|
|
61
|
-
"@vft/
|
|
60
|
+
"@vft/store": "0.0.54",
|
|
62
61
|
"@vft/use": "0.0.77",
|
|
63
|
-
"@vft/
|
|
62
|
+
"@vft/utils": "0.0.131",
|
|
63
|
+
"@vft/directives": "0.0.33"
|
|
64
64
|
},
|
|
65
65
|
"vetur": {
|
|
66
66
|
"tags": "tags.json",
|
package/web-types.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"http://json.schemastore.org/web-types","framework":"vue","name":"vft","version":"0.0.
|
|
1
|
+
{"$schema":"http://json.schemastore.org/web-types","framework":"vue","name":"vft","version":"0.0.367","js-types-syntax":"typescript","description-markup":"markdown","contributions":{"html":{}}}
|