mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
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:
@@ -12,3 +12,4 @@ export const ElDescriptionsItem = withNoopInstall(DescriptionsItem)
|
||||
export default ElDescriptions
|
||||
|
||||
export * from './src/description'
|
||||
export * from './src/description-item'
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user