mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-18 10:59:10 +08:00
refactor(utils-v2): refactor utils (#5699)
This commit is contained in:
parent
b80e5c69e9
commit
c1e5d724d8
@ -53,6 +53,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/components": "workspace:*",
|
||||
"@element-plus/constants": "workspace:*",
|
||||
"@element-plus/directives": "workspace:*",
|
||||
"@element-plus/hooks": "workspace:*",
|
||||
"@element-plus/icons-vue": "^0.2.6",
|
||||
@ -61,6 +62,7 @@
|
||||
"@element-plus/theme-chalk": "workspace:*",
|
||||
"@element-plus/tokens": "workspace:*",
|
||||
"@element-plus/utils": "workspace:*",
|
||||
"@element-plus/utils-v2": "workspace:*",
|
||||
"@popperjs/core": "^2.11.2",
|
||||
"@vueuse/core": "^7.5.5",
|
||||
"async-validator": "^4.0.7",
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Affix from './src/affix.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type { ZIndexProperty } from 'csstype'
|
||||
import type Affix from './affix.vue'
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { mount } from '@vue/test-utils'
|
||||
import { TypeComponentsMap } from '@element-plus/utils/icon'
|
||||
import { TypeComponentsMap } from '@element-plus/utils-v2'
|
||||
import Alert from '../src/alert.vue'
|
||||
|
||||
const AXIOM = 'Rem is the best girl'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Alert from './src/alert.vue'
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
import { TypeComponentsMap } from '@element-plus/utils/icon'
|
||||
import { buildProps, keyOf } from '@element-plus/utils/props'
|
||||
import { TypeComponentsMap, buildProps, keyOf } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type Alert from './alert.vue'
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
<script lang="ts">
|
||||
import { defineComponent, computed, ref } from 'vue'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import { TypeComponents, TypeComponentsMap } from '@element-plus/utils/icon'
|
||||
import { TypeComponents, TypeComponentsMap } from '@element-plus/utils-v2'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import { alertProps, alertEmits } from './alert'
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import Autocomplete from './src/index.vue'
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
Autocomplete.install = (app: App): void => {
|
||||
app.component(Autocomplete.name, Autocomplete)
|
||||
|
@ -94,9 +94,8 @@ import { NOOP } from '@vue/shared'
|
||||
import { debounce } from 'lodash-unified'
|
||||
import { useAttrs, useNamespace } from '@element-plus/hooks'
|
||||
import { ClickOutside } from '@element-plus/directives'
|
||||
import { generateId, isArray } from '@element-plus/utils/util'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { throwError } from '@element-plus/utils/error'
|
||||
import { generateId, isArray, throwError } from '@element-plus/utils-v2'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import ElInput from '@element-plus/components/input'
|
||||
import ElScrollbar from '@element-plus/components/scrollbar'
|
||||
import ElTooltip, {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
import Avatar from './src/avatar.vue'
|
||||
|
||||
export const ElAvatar = withInstall(Avatar)
|
||||
|
@ -1,5 +1,9 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import type { ExtractPropTypes, Component } from 'vue'
|
||||
import {
|
||||
buildProps,
|
||||
definePropType,
|
||||
iconPropType,
|
||||
} from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type { ObjectFitProperty } from 'csstype'
|
||||
import type Avatar from './avatar.vue'
|
||||
|
||||
@ -16,7 +20,7 @@ export const avatarProps = buildProps({
|
||||
default: 'circle',
|
||||
},
|
||||
icon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
},
|
||||
src: {
|
||||
type: String,
|
||||
|
@ -19,7 +19,7 @@
|
||||
import { defineComponent, computed, ref, watch } from 'vue'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import { addUnit, isNumber, isString } from '@element-plus/utils/util'
|
||||
import { isNumber, isString, addUnit } from '@element-plus/utils-v2'
|
||||
import { avatarEmits, avatarProps } from './avatar'
|
||||
|
||||
import type { CSSProperties } from 'vue'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Backtop from './src/backtop.vue'
|
||||
|
||||
|
@ -21,7 +21,7 @@ import { defineComponent, ref, computed, onMounted, shallowRef } from 'vue'
|
||||
import { useEventListener, useThrottleFn } from '@vueuse/core'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import { easeInOutCubic } from '@element-plus/utils/animation'
|
||||
import { throwError } from '@element-plus/utils/error'
|
||||
import { throwError } from '@element-plus/utils-v2'
|
||||
import { CaretTop } from '@element-plus/icons-vue'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Badge from './src/badge.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { buildProps } from '@element-plus/utils/props'
|
||||
import { buildProps } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type Badge from './badge.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Breadcrumb from './src/breadcrumb.vue'
|
||||
import BreadcrumbItem from './src/breadcrumb-item.vue'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type { RouteLocationRaw } from 'vue-router'
|
||||
import type BreadcrumbItem from './breadcrumb-item.vue'
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import type { ExtractPropTypes, Component } from 'vue'
|
||||
import { buildProps, iconPropType } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type Breadcrumb from './breadcrumb.vue'
|
||||
|
||||
export const breadcrumbProps = buildProps({
|
||||
@ -8,7 +8,7 @@ export const breadcrumbProps = buildProps({
|
||||
default: '/',
|
||||
},
|
||||
separatorIcon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: '',
|
||||
},
|
||||
} as const)
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
import Button from './src/button.vue'
|
||||
import ButtonGroup from './src/button-group.vue'
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { useSizeProp } from '@element-plus/hooks'
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, iconPropType } from '@element-plus/utils-v2'
|
||||
import { Loading } from '@element-plus/icons-vue'
|
||||
import type { ExtractPropTypes, Component } from 'vue'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type button from './button.vue'
|
||||
|
||||
export const buttonType = [
|
||||
@ -25,7 +25,7 @@ export const buttonProps = buildProps({
|
||||
default: '',
|
||||
},
|
||||
icon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: '',
|
||||
},
|
||||
nativeType: {
|
||||
@ -35,7 +35,7 @@ export const buttonProps = buildProps({
|
||||
},
|
||||
loading: Boolean,
|
||||
loadingIcon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: () => Loading,
|
||||
},
|
||||
plain: Boolean,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
import Calendar from './src/calendar.vue'
|
||||
|
||||
export const ElCalendar = withInstall(Calendar)
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
export const calendarProps = buildProps({
|
||||
|
@ -48,7 +48,7 @@ import { ref, computed, defineComponent } from 'vue'
|
||||
import dayjs from 'dayjs'
|
||||
import { ElButton, ElButtonGroup } from '@element-plus/components/button'
|
||||
import { useLocale, useNamespace } from '@element-plus/hooks'
|
||||
import { debugWarn } from '@element-plus/utils/error'
|
||||
import { debugWarn } from '@element-plus/utils-v2'
|
||||
import DateTable from './date-table.vue'
|
||||
import { calendarProps, calendarEmits } from './calendar'
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { isObject } from '@element-plus/utils/util'
|
||||
import { buildProps, definePropType, isObject } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type { Dayjs } from 'dayjs'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Card from './src/card.vue'
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import type Card from './card.vue'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type { StyleValue } from '@element-plus/utils/types'
|
||||
import type { ExtractPropTypes, StyleValue } from 'vue'
|
||||
|
||||
export const cardProps = buildProps({
|
||||
header: {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
import Carousel from './src/main.vue'
|
||||
import CarouselItem from './src/item.vue'
|
||||
|
||||
|
@ -32,7 +32,7 @@ import {
|
||||
onUnmounted,
|
||||
} from 'vue'
|
||||
import { autoprefixer } from '@element-plus/utils/util'
|
||||
import { debugWarn } from '@element-plus/utils/error'
|
||||
import { debugWarn } from '@element-plus/utils-v2'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import type { CSSProperties } from 'vue'
|
||||
import type { InjectCarouselScope, ICarouselItemProps } from './carousel'
|
||||
|
@ -83,7 +83,7 @@ import { ElIcon } from '@element-plus/components/icon'
|
||||
import { ArrowLeft, ArrowRight } from '@element-plus/icons-vue'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
|
||||
import { debugWarn } from '@element-plus/utils/error'
|
||||
import { debugWarn } from '@element-plus/utils-v2'
|
||||
import type {
|
||||
ICarouselProps,
|
||||
CarouselItem,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import CascaderPanel from './src/index.vue'
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
CascaderPanel.install = (app: App): void => {
|
||||
app.component(CascaderPanel.name, CascaderPanel)
|
||||
|
@ -28,14 +28,10 @@ import {
|
||||
import { isEqual } from 'lodash-unified'
|
||||
import { isClient } from '@vueuse/core'
|
||||
import { EVENT_CODE, focusNode, getSibling } from '@element-plus/utils/aria'
|
||||
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/utils/constants'
|
||||
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/constants'
|
||||
import scrollIntoView from '@element-plus/utils/scroll-into-view'
|
||||
import {
|
||||
arrayFlat,
|
||||
coerceTruthyValueToArray,
|
||||
deduplicate,
|
||||
isEmpty,
|
||||
} from '@element-plus/utils/util'
|
||||
import { arrayFlat, coerceTruthyValueToArray } from '@element-plus/utils/util'
|
||||
import { isEmpty, unique } from '@element-plus/utils-v2'
|
||||
|
||||
import ElCascaderMenu from './menu.vue'
|
||||
import Store from './store'
|
||||
@ -213,7 +209,7 @@ export default defineComponent({
|
||||
return
|
||||
|
||||
if (lazy && !loaded) {
|
||||
const values: CascaderNodeValue[] = deduplicate(
|
||||
const values: CascaderNodeValue[] = unique(
|
||||
arrayFlat(coerceTruthyValueToArray(modelValue))
|
||||
)
|
||||
const nodes = values
|
||||
@ -231,7 +227,7 @@ export default defineComponent({
|
||||
const values = multiple
|
||||
? coerceTruthyValueToArray(modelValue)
|
||||
: [modelValue]
|
||||
const nodes = deduplicate(
|
||||
const nodes = unique(
|
||||
values.map((val) => store?.getNodeByValue(val, leafOnly))
|
||||
) as Node[]
|
||||
syncMenuState(nodes, false)
|
||||
|
@ -37,7 +37,7 @@
|
||||
import { computed, defineComponent, getCurrentInstance, inject, ref } from 'vue'
|
||||
import ElScrollbar from '@element-plus/components/scrollbar'
|
||||
import { useLocale } from '@element-plus/hooks'
|
||||
import { generateId } from '@element-plus/utils/util'
|
||||
import { generateId } from '@element-plus/utils-v2'
|
||||
import { Loading } from '@element-plus/icons-vue'
|
||||
import ElIcon from '@element-plus/components/icon'
|
||||
import ElCascaderNode from './node.vue'
|
||||
@ -45,7 +45,7 @@ import { CASCADER_PANEL_INJECTION_KEY } from './types'
|
||||
|
||||
import type { default as CascaderNode } from './node'
|
||||
import type { PropType } from 'vue'
|
||||
import type { TimeoutHandle, Nullable } from '@element-plus/utils/types'
|
||||
import type { Nullable } from '@element-plus/utils/types'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ElCascaderMenu',
|
||||
@ -73,7 +73,7 @@ export default defineComponent({
|
||||
const { t } = useLocale()
|
||||
const id = generateId()
|
||||
let activeNode: Nullable<HTMLElement> = null
|
||||
let hoverTimer: Nullable<TimeoutHandle> = null
|
||||
let hoverTimer: Nullable<number> = null
|
||||
|
||||
const panel = inject(CASCADER_PANEL_INJECTION_KEY)!
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { isFunction } from '@vue/shared'
|
||||
import { capitalize, isUndefined, isEmpty } from '@element-plus/utils/util'
|
||||
import { capitalize, isUndefined, isEmpty } from '@element-plus/utils-v2'
|
||||
import type { VNode } from 'vue'
|
||||
|
||||
export type CascaderNodeValue = string | number
|
||||
|
@ -1,6 +1,6 @@
|
||||
import Cascader from './src/index.vue'
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
Cascader.install = (app: App): void => {
|
||||
app.component(Cascader.name, Cascader)
|
||||
|
@ -185,13 +185,12 @@ import { ClickOutside as Clickoutside } from '@element-plus/directives'
|
||||
import { useLocale, useSize } from '@element-plus/hooks'
|
||||
|
||||
import { EVENT_CODE, focusNode, getSibling } from '@element-plus/utils/aria'
|
||||
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/utils/constants'
|
||||
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/constants'
|
||||
import {
|
||||
addResizeListener,
|
||||
removeResizeListener,
|
||||
} from '@element-plus/utils/resize-event'
|
||||
import { isValidComponentSize } from '@element-plus/utils/validators'
|
||||
import { isKorean } from '@element-plus/utils/isDef'
|
||||
import { isValidComponentSize, isKorean } from '@element-plus/utils-v2'
|
||||
import { CircleClose, Check, ArrowDown } from '@element-plus/icons-vue'
|
||||
|
||||
import type { Options } from '@element-plus/components/popper'
|
||||
@ -202,7 +201,7 @@ import type {
|
||||
CascaderNode,
|
||||
Tag,
|
||||
} from '@element-plus/components/cascader-panel'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
|
||||
type cascaderPanelType = InstanceType<typeof ElCascaderPanel>
|
||||
type tooltipType = InstanceType<typeof ElTooltip>
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
import CheckTag from './src/check-tag.vue'
|
||||
|
||||
export const ElCheckTag = withInstall(CheckTag)
|
||||
|
@ -1,5 +1,4 @@
|
||||
import { isBool } from '@element-plus/utils/util'
|
||||
import { buildProps } from '@element-plus/utils/props'
|
||||
import { isBoolean, buildProps } from '@element-plus/utils-v2'
|
||||
import type CheckTag from './check-tag.vue'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
@ -12,8 +11,8 @@ export const checkTagProps = buildProps({
|
||||
export type CheckTagProps = ExtractPropTypes<typeof checkTagProps>
|
||||
|
||||
export const checkTagEmits = {
|
||||
'update:checked': (value: boolean) => isBool(value),
|
||||
change: (value: boolean) => isBool(value),
|
||||
'update:checked': (value: boolean) => isBoolean(value),
|
||||
change: (value: boolean) => isBoolean(value),
|
||||
}
|
||||
export type CheckTagEmits = typeof checkTagEmits
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Checkbox from './src/checkbox.vue'
|
||||
import CheckboxButton from './src/checkbox-button.vue'
|
||||
|
@ -50,7 +50,7 @@
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent, computed } from 'vue'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import { useCheckbox, useCheckboxGroup, useCheckboxProps } from './useCheckbox'
|
||||
|
||||
|
@ -9,13 +9,13 @@ import {
|
||||
h,
|
||||
renderSlot,
|
||||
} from 'vue'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { isValidComponentSize } from '@element-plus/utils/validators'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { isValidComponentSize } from '@element-plus/utils-v2'
|
||||
import { useSize, useNamespace } from '@element-plus/hooks'
|
||||
import { useCheckboxGroup } from './useCheckbox'
|
||||
|
||||
import type { PropType } from 'vue'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ElCheckboxGroup',
|
||||
|
@ -1,5 +1,6 @@
|
||||
import type { ComputedRef } from 'vue'
|
||||
import type { AnyFunction, ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
import type { AnyFunction } from '@element-plus/utils/types'
|
||||
export interface ICheckboxGroupInstance {
|
||||
name?: string
|
||||
modelValue?: ComputedRef
|
||||
|
@ -61,13 +61,13 @@
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { isValidComponentSize } from '@element-plus/utils/validators'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { isValidComponentSize } from '@element-plus/utils-v2'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import { useCheckbox } from './useCheckbox'
|
||||
|
||||
import type { PropType } from 'vue'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ElCheckbox',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { ref, computed, inject, getCurrentInstance, watch } from 'vue'
|
||||
import { toTypeString } from '@vue/shared'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { elFormKey, elFormItemKey } from '@element-plus/tokens'
|
||||
|
||||
import { useSize } from '@element-plus/hooks'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Col from './src/col'
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { defineComponent, computed, inject, h, renderSlot } from 'vue'
|
||||
import { buildProps, definePropType, mutable } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType, mutable } from '@element-plus/utils-v2'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import type { ExtractPropTypes, CSSProperties } from 'vue'
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import CollapseTransition from './src/collapse-transition.vue'
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
CollapseTransition.install = (app: App): void => {
|
||||
app.component(CollapseTransition.name, CollapseTransition)
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Collapse from './src/collapse.vue'
|
||||
import CollapseItem from './src/collapse-item.vue'
|
||||
|
@ -50,7 +50,7 @@
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent, inject, computed, ref } from 'vue'
|
||||
import { generateId } from '@element-plus/utils/util'
|
||||
import { generateId } from '@element-plus/utils-v2'
|
||||
import ElCollapseTransition from '@element-plus/components/collapse-transition'
|
||||
import ElIcon from '@element-plus/components/icon'
|
||||
import { ArrowRight } from '@element-plus/icons-vue'
|
||||
|
@ -6,9 +6,8 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref, watch, provide } from 'vue'
|
||||
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/utils/constants'
|
||||
import { UPDATE_MODEL_EVENT, CHANGE_EVENT } from '@element-plus/constants'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import type { PropType } from 'vue'
|
||||
import type { CollapseProvider } from './collapse.type'
|
||||
|
||||
export default defineComponent({
|
||||
|
@ -1,7 +1,7 @@
|
||||
import ColorPicker from './src/index.vue'
|
||||
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
ColorPicker.install = (app: App): void => {
|
||||
app.component(ColorPicker.name, ColorPicker)
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { hasOwn } from '@vue/shared'
|
||||
import { hasOwn } from '@element-plus/utils-v2'
|
||||
|
||||
const hsv2hsl = function (hue: number, sat: number, val: number) {
|
||||
return [
|
||||
|
@ -112,8 +112,8 @@ import { elFormItemKey, elFormKey } from '@element-plus/tokens'
|
||||
import { useLocale, useSize, useNamespace } from '@element-plus/hooks'
|
||||
import ElTooltip from '@element-plus/components/tooltip'
|
||||
import ElInput from '@element-plus/components/input'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { isValidComponentSize } from '@element-plus/utils/validators'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { isValidComponentSize } from '@element-plus/utils-v2'
|
||||
import { Close, ArrowDown } from '@element-plus/icons-vue'
|
||||
import AlphaSlider from './components/alpha-slider.vue'
|
||||
import HueSlider from './components/hue-slider.vue'
|
||||
@ -124,7 +124,7 @@ import { OPTIONS_KEY } from './useOption'
|
||||
|
||||
import type { PropType } from 'vue'
|
||||
import type { ElFormContext, ElFormItemContext } from '@element-plus/tokens'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
import type { IUseOptions } from './useOption'
|
||||
|
||||
export default defineComponent({
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import ConfigProvider from './src/config-provider'
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { defineComponent, renderSlot, watch } from 'vue'
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import { provideGlobalConfig } from '@element-plus/hooks'
|
||||
import type { Language } from '@element-plus/locale'
|
||||
import type { ButtonConfigContext } from '@element-plus/components/button'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Container from './src/container.vue'
|
||||
import Aside from './src/aside.vue'
|
||||
|
@ -1,7 +1,7 @@
|
||||
import DatePicker from './src/date-picker'
|
||||
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
const _DatePicker = DatePicker as SFCWithInstall<typeof DatePicker>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { h, defineComponent, inject } from 'vue'
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import { ROOT_PICKER_INJECTION_KEY } from '../date-picker.type'
|
||||
import type { DateCell } from '../date-picker.type'
|
||||
|
||||
|
@ -175,7 +175,7 @@ import {
|
||||
} from '@element-plus/components/time-picker'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import { EVENT_CODE } from '@element-plus/utils/aria'
|
||||
import { isValidDatePickType } from '@element-plus/utils/validators'
|
||||
import { isValidDatePickType } from '@element-plus/utils-v2'
|
||||
import {
|
||||
DArrowLeft,
|
||||
ArrowLeft,
|
||||
|
@ -245,7 +245,7 @@ import {
|
||||
TimePickPanel,
|
||||
} from '@element-plus/components/time-picker'
|
||||
import ElIcon from '@element-plus/components/icon'
|
||||
import { isValidDatePickType } from '@element-plus/utils/validators'
|
||||
import { isValidDatePickType } from '@element-plus/utils-v2'
|
||||
import {
|
||||
DArrowLeft,
|
||||
ArrowLeft,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Descriptions from './src/index.vue'
|
||||
import DescriptionsItem from './src/description-item'
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { defineComponent, h, inject } from 'vue'
|
||||
import { addUnit } from '@element-plus/utils/util'
|
||||
import { getNormalizedProps } from '@element-plus/utils/vnode'
|
||||
import { addUnit, getNormalizedProps } from '@element-plus/utils-v2'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import { elDescriptionsKey } from './token'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
|
||||
export interface IDescriptionsInject {
|
||||
border: boolean
|
||||
|
@ -26,13 +26,13 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, provide } from 'vue'
|
||||
import { isValidComponentSize } from '@element-plus/utils/validators'
|
||||
import { isValidComponentSize } from '@element-plus/utils-v2'
|
||||
import { useSize, useNamespace } from '@element-plus/hooks'
|
||||
import DescriptionsRow from './descriptions-row.vue'
|
||||
import { elDescriptionsKey } from './token'
|
||||
|
||||
import type { PropType } from 'vue'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ElDescriptions',
|
||||
|
@ -7,7 +7,7 @@ import Dialog from '../'
|
||||
|
||||
const AXIOM = 'Rem is the best girl'
|
||||
|
||||
const _mount = ({ slots, ...rest }: Indexable<any>) => {
|
||||
const _mount = ({ slots, ...rest }: Record<string, any>) => {
|
||||
return mount(Dialog, {
|
||||
slots: {
|
||||
default: AXIOM,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
import Dialog from './src/dialog.vue'
|
||||
|
||||
export const ElDialog = withInstall(Dialog)
|
||||
|
@ -1,7 +1,10 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
|
||||
import type { ExtractPropTypes, Component } from 'vue'
|
||||
import {
|
||||
buildProps,
|
||||
definePropType,
|
||||
iconPropType,
|
||||
} from '@element-plus/utils-v2'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
export const dialogProps = buildProps({
|
||||
appendToBody: {
|
||||
@ -24,7 +27,7 @@ export const dialogProps = buildProps({
|
||||
default: '',
|
||||
},
|
||||
closeIcon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: '',
|
||||
},
|
||||
closeOnClickModal: {
|
||||
|
@ -73,7 +73,7 @@ import { computed, defineComponent, ref } from 'vue'
|
||||
import { TrapFocus } from '@element-plus/directives'
|
||||
import { ElOverlay } from '@element-plus/components/overlay'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import { CloseComponents } from '@element-plus/utils/icon'
|
||||
import { CloseComponents } from '@element-plus/utils-v2'
|
||||
import { useNamespace, useDraggable, useSameTarget } from '@element-plus/hooks'
|
||||
import { dialogProps, dialogEmits } from './dialog'
|
||||
import { useDialog } from './use-dialog'
|
||||
|
@ -7,8 +7,8 @@ import {
|
||||
useModal,
|
||||
useZIndex,
|
||||
} from '@element-plus/hooks'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { isNumber } from '@element-plus/utils/util'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { isNumber } from '@element-plus/utils-v2'
|
||||
|
||||
import type { CSSProperties, Ref, SetupContext } from 'vue'
|
||||
import type { DialogEmits, DialogProps } from './dialog'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Divider from './src/divider.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type Divider from './divider.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
import Drawer from './src/drawer.vue'
|
||||
|
||||
export const ElDrawer = withInstall(Drawer)
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { buildProps } from '@element-plus/utils/props'
|
||||
import { buildProps } from '@element-plus/utils-v2'
|
||||
import { dialogProps, dialogEmits } from '@element-plus/components/dialog'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Dropdown from './src/dropdown.vue'
|
||||
import DropdownItem from './src/dropdown-item.vue'
|
||||
|
@ -1,5 +1,9 @@
|
||||
import { EVENT_CODE } from '@element-plus/utils/aria'
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import {
|
||||
buildProps,
|
||||
definePropType,
|
||||
iconPropType,
|
||||
} from '@element-plus/utils-v2'
|
||||
import { createCollectionWithScope } from '@element-plus/components/collection'
|
||||
import {
|
||||
useTooltipTriggerProps,
|
||||
@ -9,7 +13,7 @@ import type { Options } from '@popperjs/core'
|
||||
|
||||
import type { ButtonType } from '@element-plus/components/button'
|
||||
import type { Placement } from '@element-plus/components/popper'
|
||||
import type { ComponentInternalInstance, Component, ComputedRef } from 'vue'
|
||||
import type { ComponentInternalInstance, ComputedRef } from 'vue'
|
||||
import type { Nullable } from '@element-plus/utils/types'
|
||||
|
||||
export interface IElDropdownInstance {
|
||||
@ -87,7 +91,7 @@ export const dropdownItemProps = buildProps({
|
||||
divided: Boolean,
|
||||
textValue: String,
|
||||
icon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
},
|
||||
} as const)
|
||||
|
||||
|
@ -89,7 +89,7 @@ import ElScrollbar from '@element-plus/components/scrollbar'
|
||||
import ElIcon from '@element-plus/components/icon'
|
||||
import ElFocusTrap from '@element-plus/components/focus-trap'
|
||||
import ElRovingFocusGroup from '@element-plus/components/roving-focus-group'
|
||||
import { addUnit } from '@element-plus/utils/util'
|
||||
import { addUnit } from '@element-plus/utils-v2'
|
||||
import { ArrowDown } from '@element-plus/icons-vue'
|
||||
import { useSize } from '@element-plus/hooks'
|
||||
import { ElCollection as ElDropdownCollection, dropdownProps } from './dropdown'
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { inject, computed, ref } from 'vue'
|
||||
import { generateId } from '@element-plus/utils/util'
|
||||
import { generateId } from '@element-plus/utils-v2'
|
||||
import { EVENT_CODE } from '@element-plus/utils/aria'
|
||||
import { on, addClass } from '@element-plus/utils/dom'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Empty from './src/empty.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall, withNoopInstall } from '@element-plus/utils-v2'
|
||||
import Form from './src/form.vue'
|
||||
import FormItem from './src/form-item.vue'
|
||||
|
||||
|
@ -53,14 +53,14 @@ import {
|
||||
} from 'vue'
|
||||
import { NOOP } from '@vue/shared'
|
||||
import AsyncValidator from 'async-validator'
|
||||
import { addUnit, getPropByPath } from '@element-plus/utils/util'
|
||||
import { isValidComponentSize } from '@element-plus/utils/validators'
|
||||
import { addUnit, isValidComponentSize } from '@element-plus/utils-v2'
|
||||
import { getPropByPath } from '@element-plus/utils/util'
|
||||
import { elFormItemKey, elFormKey } from '@element-plus/tokens'
|
||||
import { useSize } from '@element-plus/hooks'
|
||||
import LabelWrap from './label-wrap'
|
||||
|
||||
import type { PropType, CSSProperties } from 'vue'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
import type { ElFormContext, ValidateFieldCallback } from '@element-plus/tokens'
|
||||
import type { FormItemRule } from './form.type'
|
||||
|
||||
|
@ -15,12 +15,12 @@ import {
|
||||
watch,
|
||||
} from 'vue'
|
||||
import { elFormKey } from '@element-plus/tokens'
|
||||
import { debugWarn } from '@element-plus/utils/error'
|
||||
import { debugWarn } from '@element-plus/utils-v2'
|
||||
import { useSize } from '@element-plus/hooks'
|
||||
import type { ValidateFieldsError } from 'async-validator'
|
||||
|
||||
import type { PropType } from 'vue'
|
||||
import type { ComponentSize } from '@element-plus/utils/types'
|
||||
import type { ComponentSize } from '@element-plus/constants'
|
||||
import type { FormRulesMap } from './form.type'
|
||||
import type {
|
||||
ElFormItemContext as FormItemCtx,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Icon from './src/icon.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { definePropType, buildProps } from '@element-plus/utils/props'
|
||||
import { definePropType, buildProps } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type Icon from './icon.vue'
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent, computed } from 'vue'
|
||||
import { addUnit, isUndefined } from '@element-plus/utils/util'
|
||||
import { isUndefined, addUnit } from '@element-plus/utils-v2'
|
||||
import { useNamespace } from '@element-plus/hooks'
|
||||
import { iconProps } from './icon'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import ImageViewer from './src/image-viewer.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { buildProps, definePropType, mutable } from '@element-plus/utils/props'
|
||||
import { buildProps, definePropType, mutable } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
export const imageViewerProps = buildProps({
|
||||
|
@ -93,7 +93,8 @@ import { useEventListener } from '@vueuse/core'
|
||||
import ElIcon from '@element-plus/components/icon'
|
||||
import { useLocale, useNamespace } from '@element-plus/hooks'
|
||||
import { EVENT_CODE } from '@element-plus/utils/aria'
|
||||
import { rafThrottle, isFirefox } from '@element-plus/utils/util'
|
||||
import { isFirefox } from '@element-plus/utils-v2'
|
||||
import { rafThrottle } from '@element-plus/utils/util'
|
||||
import {
|
||||
Close,
|
||||
ArrowLeft,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Image from './src/image.vue'
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
import { buildProps, definePropType, mutable } from '@element-plus/utils/props'
|
||||
import { isNumber } from '@element-plus/utils/util'
|
||||
import {
|
||||
buildProps,
|
||||
definePropType,
|
||||
mutable,
|
||||
isNumber,
|
||||
} from '@element-plus/utils-v2'
|
||||
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import InfiniteScroll from './src/index'
|
||||
|
||||
import type { App } from 'vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||||
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
||||
|
||||
const _InfiniteScroll = InfiniteScroll as SFCWithInstall<typeof InfiniteScroll>
|
||||
|
||||
|
@ -5,7 +5,7 @@ import {
|
||||
getScrollContainer,
|
||||
getOffsetTopDistance,
|
||||
} from '@element-plus/utils/dom'
|
||||
import { throwError } from '@element-plus/utils/error'
|
||||
import { throwError } from '@element-plus/utils-v2'
|
||||
|
||||
import type { ObjectDirective, ComponentPublicInstance } from 'vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
import InputNumber from './src/input-number.vue'
|
||||
|
||||
export const ElInputNumber = withInstall(InputNumber)
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { buildProps, componentSize } from '@element-plus/utils/props'
|
||||
import { isNumber } from '@element-plus/utils/util'
|
||||
import { buildProps, isNumber } from '@element-plus/utils-v2'
|
||||
import { componentSizes } from '@element-plus/constants'
|
||||
|
||||
export const inputNumberProps = buildProps({
|
||||
step: {
|
||||
@ -27,7 +27,7 @@ export const inputNumberProps = buildProps({
|
||||
},
|
||||
size: {
|
||||
type: String,
|
||||
values: componentSize,
|
||||
values: componentSizes,
|
||||
},
|
||||
controls: {
|
||||
type: Boolean,
|
||||
|
@ -75,8 +75,7 @@ import {
|
||||
useNamespace,
|
||||
} from '@element-plus/hooks'
|
||||
import ElInput from '@element-plus/components/input'
|
||||
import { isNumber } from '@element-plus/utils/util'
|
||||
import { debugWarn } from '@element-plus/utils/error'
|
||||
import { isNumber, debugWarn } from '@element-plus/utils-v2'
|
||||
import { ArrowUp, ArrowDown, Plus, Minus } from '@element-plus/icons-vue'
|
||||
import { inputNumberProps, inputNumberEmits } from './input-number'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Input from './src/input.vue'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { isNumber } from '@element-plus/utils/util'
|
||||
import { isNumber } from '@element-plus/utils-v2'
|
||||
|
||||
let hiddenTextarea: HTMLTextAreaElement | undefined = undefined
|
||||
|
||||
|
@ -1,9 +1,13 @@
|
||||
import { isString } from '@vue/shared'
|
||||
import { buildProps, definePropType, mutable } from '@element-plus/utils/props'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import {
|
||||
buildProps,
|
||||
definePropType,
|
||||
iconPropType,
|
||||
mutable,
|
||||
} from '@element-plus/utils-v2'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { useSizeProp } from '@element-plus/hooks'
|
||||
import type { StyleValue } from '@element-plus/utils/types'
|
||||
import type { ExtractPropTypes, Component } from 'vue'
|
||||
import type { StyleValue, ExtractPropTypes } from 'vue'
|
||||
|
||||
type AutoSize = { minRows?: number; maxRows?: number } | boolean
|
||||
|
||||
@ -54,11 +58,11 @@ export const inputProps = buildProps({
|
||||
default: false,
|
||||
},
|
||||
suffixIcon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: '',
|
||||
},
|
||||
prefixIcon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: '',
|
||||
},
|
||||
label: {
|
||||
|
@ -148,7 +148,11 @@ import {
|
||||
import { isClient } from '@vueuse/core'
|
||||
import { ElIcon } from '@element-plus/components/icon'
|
||||
import { CircleClose, View as IconView } from '@element-plus/icons-vue'
|
||||
import { ValidateComponentsMap } from '@element-plus/utils/icon'
|
||||
import {
|
||||
ValidateComponentsMap,
|
||||
isObject,
|
||||
isKorean,
|
||||
} from '@element-plus/utils-v2'
|
||||
import {
|
||||
useAttrs,
|
||||
useDisabled,
|
||||
@ -156,13 +160,11 @@ import {
|
||||
useSize,
|
||||
useNamespace,
|
||||
} from '@element-plus/hooks'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/utils/constants'
|
||||
import { isObject } from '@element-plus/utils/util'
|
||||
import { isKorean } from '@element-plus/utils/isDef'
|
||||
import { UPDATE_MODEL_EVENT } from '@element-plus/constants'
|
||||
import { calcTextareaHeight } from './calc-textarea-height'
|
||||
import { inputProps, inputEmits } from './input'
|
||||
|
||||
import type { StyleValue } from '@element-plus/utils/types'
|
||||
import type { StyleValue } from 'vue'
|
||||
|
||||
type TargetElement = HTMLInputElement | HTMLTextAreaElement
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@element-plus/utils/with-install'
|
||||
import { withInstall } from '@element-plus/utils-v2'
|
||||
|
||||
import Link from './src/link.vue'
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { buildProps, definePropType } from '@element-plus/utils/props'
|
||||
import type { Component, ExtractPropTypes } from 'vue'
|
||||
import { buildProps, iconPropType } from '@element-plus/utils-v2'
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
import type Link from './link.vue'
|
||||
|
||||
export const linkProps = buildProps({
|
||||
@ -15,7 +15,7 @@ export const linkProps = buildProps({
|
||||
disabled: { type: Boolean, default: false },
|
||||
href: { type: String, default: '' },
|
||||
icon: {
|
||||
type: definePropType<string | Component>([String, Object]),
|
||||
type: iconPropType,
|
||||
default: '',
|
||||
},
|
||||
} as const)
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user