fix(components): Add missing export (#16323)

* fix(components): Add missing export

* fix(components): Add missing export

* fix(components): Add missing blank line.
This commit is contained in:
otto
2024-04-25 21:18:05 +08:00
committed by GitHub
parent 8ff556e658
commit 434c8d26df
6 changed files with 8 additions and 6 deletions

View File

@@ -12,3 +12,4 @@ export const ElDescriptionsItem = withNoopInstall(DescriptionsItem)
export default ElDescriptions
export * from './src/description'
export * from './src/description-item'

View File

@@ -3,7 +3,7 @@ import { buildProps } from '@element-plus/utils'
import type { ExtractPropTypes, Slot, VNode } from 'vue'
const descriptionItemProps = buildProps({
export const descriptionItemProps = buildProps({
/**
* @description label text
*/

View File

@@ -11,7 +11,7 @@ import type { ExtractPropTypes } from 'vue'
import type { FormItemProp } from './form-item'
import type { FormRules } from './types'
const formMetaProps = buildProps({
export const formMetaProps = buildProps({
/**
* @description Control the size of components in this form.
*/

View File

@@ -4,7 +4,7 @@ import { useNamespace } from '@element-plus/hooks'
import type { ExtractPropTypes } from 'vue'
const spaceItemProps = buildProps({
export const spaceItemProps = buildProps({
prefixCls: {
type: String,
},

View File

@@ -9,5 +9,6 @@ export const ElTourStep = withNoopInstall(TourStep)
export default ElTour
export * from './src/tour'
export * from './src/step'
export * from './src/content'
export type { TourMask, TourGap, TourBtnProps } from './src/types'

View File

@@ -2,9 +2,9 @@ import { buildProps, definePropType } from '@element-plus/utils'
import type { ExtractPropTypes } from 'vue'
import type { Placement, Strategy, VirtualElement } from '@floating-ui/dom'
const tourStrategies = ['absolute', 'fixed'] as const
export const tourStrategies = ['absolute', 'fixed'] as const
const tourPlacements = [
export const tourPlacements = [
'top-start',
'top-end',
'top',