You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
775 B
36 lines
775 B
import '../../../utils/index.mjs';
|
|
import '../../../hooks/index.mjs';
|
|
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
|
import { useSizeProp } from '../../../hooks/use-size/index.mjs';
|
|
|
|
const configProviderProps = buildProps({
|
|
a11y: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
locale: {
|
|
type: definePropType(Object)
|
|
},
|
|
size: useSizeProp,
|
|
button: {
|
|
type: definePropType(Object)
|
|
},
|
|
experimentalFeatures: {
|
|
type: definePropType(Object)
|
|
},
|
|
keyboardNavigation: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
message: {
|
|
type: definePropType(Object)
|
|
},
|
|
zIndex: Number,
|
|
namespace: {
|
|
type: String,
|
|
default: "el"
|
|
}
|
|
});
|
|
|
|
export { configProviderProps };
|
|
//# sourceMappingURL=config-provider-props.mjs.map
|
|
|