@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
1,636 lines (1,635 loc) • 144 kB
JSON
{
"a-alert/close": {
"description": "Triggered when the close button is clicked"
},
"a-alert/after-close": {
"description": "Triggered after the close animation ends"
},
"a-alert/type": {
"description": "Type of the alert. 2.41.0 Added `normal` type"
},
"a-alert/show-icon": {
"description": "Whether to show the icon",
"type": "boolean"
},
"a-alert/closable": {
"description": "Whether to show the close button",
"type": "boolean"
},
"a-alert/title": {
"description": "The title of the alert",
"type": "string"
},
"a-alert/banner": {
"description": "Whether to use as the top announcement (remove the border and rounded corners)",
"type": "boolean"
},
"a-alert/center": {
"description": "Whether the content is displayed in the center",
"type": "boolean"
},
"a-anchor/select": {
"description": "Triggered when the user clicks on the link"
},
"a-anchor/change": {
"description": "Triggered when the link changes"
},
"a-anchor/boundary": {
"description": "Scrolling boundary value. After setting the value to a number, it will stop scrolling when the distance is `boundary` from the scrolling container."
},
"a-anchor/line-less": {
"description": "Whether to show the left axis",
"type": "boolean"
},
"a-anchor/scroll-container": {
"description": "Scroll container"
},
"a-anchor/change-hash": {
"description": "Whether to change the hash. When set to `false`, clicking on the anchor will not change the hash of the page",
"type": "boolean"
},
"a-anchor/smooth": {
"description": "Whether to use smooth scrolling",
"type": "boolean"
},
"a-anchor-link/title": {
"description": "The text content of the anchor link",
"type": "string"
},
"a-anchor-link/href": {
"description": "The address of the anchor link",
"type": "string"
},
"a-avatar/click": {
"description": "Callback when clicked"
},
"a-avatar/error": {
"description": "image load error"
},
"a-avatar/load": {
"description": "image load success"
},
"a-avatar/shape": {
"description": "The shape of the avatar, there are two kinds of circle (circle) and square (square)"
},
"a-avatar/image-url": {
"description": "Custom avatar image address. If this attribute is passed in, the img tag will be rendered by default",
"type": "string"
},
"a-avatar/size": {
"description": "The size of the avatar, the unit is `px`. Use size `40px` in styles when not filled",
"type": "number"
},
"a-avatar/auto-fix-font-size": {
"description": "Whether to automatically adjust the font size according to the size of the avatar.",
"type": "boolean"
},
"a-avatar/trigger-type": {
"description": "Clickable avatar interaction type"
},
"a-avatar/trigger-icon-style": {
"description": "Interactive icon style"
},
"a-avatar/object-fit": {
"description": "Object-fit type of the image in the container"
},
"a-avatar-group/shape": {
"description": "The shape of the avatar in the group, there are two kinds of circle (circle) and square (square)"
},
"a-avatar-group/size": {
"description": "The size of the avatar in the group, the unit is `px`",
"type": "number"
},
"a-avatar-group/auto-fix-font-size": {
"description": "Whether to automatically adjust the font size according to the size of the avatar.",
"type": "boolean"
},
"a-avatar-group/max-count": {
"description": "The maximum number of avatars displayed in the avatar group. The excess avatars will be displayed in the form of `+x`.",
"type": "number"
},
"a-avatar-group/z-index-ascend": {
"description": "The avatar `z-index` in the avatar group increases, and the default is decreasing.",
"type": "boolean"
},
"a-avatar-group/max-style": {
"description": "Style for +x."
},
"a-avatar-group/max-popover-trigger-props": {
"description": "TriggerProps for popover around +x."
},
"a-breadcrumb/max-count": {
"description": "Maximum number of breadcrumbs displayed (0 means no limit)",
"type": "number"
},
"a-breadcrumb/routes": {
"description": "Set routes"
},
"a-breadcrumb/separator": {
"description": "Delimiter text",
"type": "string|number"
},
"a-breadcrumb/custom-url": {
"description": "Custom link address"
},
"a-breadcrumb-item/separator": {
"description": "Delimiter text",
"type": "string|number"
},
"a-breadcrumb-item/droplist": {
"description": "Dropdown content"
},
"a-breadcrumb-item/dropdown-props": {
"description": "Dropdown props"
},
"a-affix/change": {
"description": "Triggered when the fixed state changes"
},
"a-affix/offset-top": {
"description": "Triggered when the specified offset is reached from the top of the window",
"type": "number"
},
"a-affix/offset-bottom": {
"description": "Triggered when the specified offset is reached from the bottom of the window",
"type": "number"
},
"a-affix/target": {
"description": "Scroll container, default is `window`"
},
"a-affix/target-container": {
"description": "The outer scroll element of `target`, the default is `window`. `Affix` will monitor the scroll event of the element and update the position of the anchor in real time. The main purpose is to solve the problem that if the outer element scrolls when the target attribute is specified as a non-window element, it may cause the nail to escape from the container."
},
"a-button/click": {
"description": "Emitted when the button is clicked"
},
"a-button/type": {
"description": "Button types are divided into five types: secondary, primary, dashed, outline and text."
},
"a-button/shape": {
"description": "Button shape"
},
"a-button/status": {
"description": "Button state"
},
"a-button/size": {
"description": "Button size"
},
"a-button/long": {
"description": "Whether the width of the button adapts to the container.",
"type": "boolean"
},
"a-button/loading": {
"description": "Whether the button is in the loading state",
"type": "boolean"
},
"a-button/disabled": {
"description": "Whether the button is disabled",
"type": "boolean"
},
"a-button/html-type": {
"description": "Set the native `type` attribute of `button`, optional values refer to [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-type \"_blank\")",
"type": "string"
},
"a-button/autofocus": {
"description": "Set the native `autofocus` attribute of `button`, optional values refer to [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-type \"_blank\")",
"type": "boolean"
},
"a-button/href": {
"description": "Set up a jump link. When this property is set, the button is rendered as `<a>`",
"type": "string"
},
"a-button-group/type": {
"description": "Children button types are divided into five types: secondary, primary, dashed, outline and text."
},
"a-button-group/status": {
"description": "Children button state"
},
"a-button-group/shape": {
"description": "Button shape"
},
"a-button-group/size": {
"description": "Children button size"
},
"a-button-group/disabled": {
"description": "All children whether the button is disabled",
"type": "boolean"
},
"a-back-top/visible-height": {
"description": "Display the trigger scroll height of the back to top button",
"type": "number"
},
"a-back-top/target-container": {
"description": "Scroll event listener container"
},
"a-back-top/easing": {
"description": "Easing mode of scrolling animation, refer to [BTween](https://github.com/PengJiyuan/b-tween) for optional values",
"type": "string"
},
"a-back-top/duration": {
"description": "Duration of scroll animation",
"type": "number"
},
"a-badge/text": {
"description": "Set the display text of the status dot",
"type": "string"
},
"a-badge/dot": {
"description": "Whether to display a red dot instead of `count`",
"type": "boolean"
},
"a-badge/dot-style": {
"description": "Customize badge dot style",
"type": "object"
},
"a-badge/max-count": {
"description": "Max count to show. If count is larger than this value, it will be displayed as `${maxCount}+`",
"type": "number"
},
"a-badge/offset": {
"description": "Set offset of the badge dot"
},
"a-badge/color": {
"description": "Customize dot color"
},
"a-badge/status": {
"description": "Badge status"
},
"a-badge/count": {
"description": "Number to show in badge",
"type": "number"
},
"a-calendar/change": {
"description": "Emitted when the button is clicked"
},
"a-calendar/panel-change": {
"description": "Emitted when the button is clicked"
},
"a-calendar/model-value": {
"description": "Value"
},
"a-calendar/default-value": {
"description": "Default value (uncontrolled state)"
},
"a-calendar/mode": {
"description": "Mode",
"type": "string"
},
"a-calendar/default-mode": {
"description": "Default Mode",
"type": "string"
},
"a-calendar/modes": {
"description": "Displayed mode"
},
"a-carousel/change": {
"description": "Callback when slide changes"
},
"a-carousel/current": {
"description": "The index of current slide which starts from 1",
"type": "number"
},
"a-carousel/default-current": {
"description": "Default index of current slide",
"type": "number"
},
"a-carousel/move-speed": {
"description": "The duration of the slide movement(ms)",
"type": "number"
},
"a-carousel/animation-name": {
"description": "The animation of the slide movement",
"type": "string"
},
"a-carousel/trigger": {
"description": "How to trigger the slide switch, click/hover the indicator"
},
"a-carousel/direction": {
"description": "The direction of the slide movement"
},
"a-carousel/show-arrow": {
"description": "When to show the arrow used to switch"
},
"a-carousel/arrow-class": {
"description": "The additional css class to arrow used to switch",
"type": "string"
},
"a-carousel/indicator-type": {
"description": "Type of indicator"
},
"a-carousel/indicator-position": {
"description": "Position of indication"
},
"a-carousel/indicator-class": {
"description": "The additional css class to indicator",
"type": "string"
},
"a-carousel/transition-timing-function": {
"description": "How intermediate values are calculated for CSS properties being affected by a transition effect.\n[transition-timing-function](https://developer.mozilla.org/zh-CN/docs/Web/CSS/transition-timing-function)",
"type": "string"
},
"a-cascader/change": {
"description": "Triggered when the selected value changes"
},
"a-cascader/input-value-change": {
"description": "Triggered when the input value changes"
},
"a-cascader/clear": {
"description": "Triggered when the clear button is clicked"
},
"a-cascader/search": {
"description": "Triggered when the user searches"
},
"a-cascader/popup-visible-change": {
"description": "Triggered when the display state of the dropdown changes"
},
"a-cascader/focus": {
"description": "Triggered when focus"
},
"a-cascader/blur": {
"description": "Triggered when blur"
},
"a-cascader/path-mode": {
"description": "Whether the value is a path",
"type": "boolean"
},
"a-cascader/multiple": {
"description": "Whether it is a multi-selection state (The search is turned on by default in the multi-select mode)",
"type": "boolean"
},
"a-cascader/model-value": {
"description": "Value"
},
"a-cascader/default-value": {
"description": "Default value (uncontrolled state)"
},
"a-cascader/options": {
"description": "Options for cascader"
},
"a-cascader/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-cascader/error": {
"description": "Whether it is an error state",
"type": "boolean"
},
"a-cascader/size": {
"description": "The size of the select"
},
"a-cascader/allow-search": {
"description": "Whether to allow searching",
"type": "boolean"
},
"a-cascader/allow-clear": {
"description": "Whether to allow clear",
"type": "boolean"
},
"a-cascader/input-value": {
"description": "The value of the input",
"type": "string"
},
"a-cascader/default-input-value": {
"description": "The default value of the input (uncontrolled state)",
"type": "string"
},
"a-cascader/popup-visible": {
"description": "Whether to show the dropdown",
"type": "boolean"
},
"a-cascader/expand-trigger": {
"description": "Expand the trigger method of the next level",
"type": "string"
},
"a-cascader/default-popup-visible": {
"description": "Whether to display the dropdown by default (uncontrolled state)",
"type": "boolean"
},
"a-cascader/placeholder": {
"description": "Placeholder",
"type": "string"
},
"a-cascader/filter-option": {
"description": "Custom options filter method"
},
"a-cascader/popup-container": {
"description": "Mount container for popup"
},
"a-cascader/max-tag-count": {
"description": "In multi-select mode, the maximum number of labels displayed. 0 means unlimited",
"type": "number"
},
"a-cascader/format-label": {
"description": "Format display content"
},
"a-cascader/trigger-props": {
"description": "Trigger props of the drop-down menu"
},
"a-cascader/check-strictly": {
"description": "Whether to enable strict selection mode",
"type": "boolean"
},
"a-cascader/load-more": {
"description": "Data lazy loading function, open the lazy loading function when it is passed in"
},
"a-cascader/loading": {
"description": "Whether it is loading state",
"type": "boolean"
},
"a-cascader/search-option-only-label": {
"description": "Whether the options in the search dropdown show only label",
"type": "boolean"
},
"a-cascader/search-delay": {
"description": "Delay time to trigger search event",
"type": "number"
},
"a-cascader/field-names": {
"description": "Customize fields in `CascaderOption`"
},
"a-cascader/value-key": {
"description": "Used to determine the option key value attribute name",
"type": "string"
},
"a-cascader/fallback": {
"description": "Options that do not exist in custom values"
},
"a-cascader/expand-child": {
"description": "whether to expand the submenu",
"type": "boolean"
},
"a-cascader/virtual-list-props": {
"description": "Pass the virtual list attribute, pass in this parameter to turn on virtual scrolling [VirtualListProps](#VirtualListProps)"
},
"a-cascader/tag-nowrap": {
"description": "Tag content does not wrap",
"type": "boolean"
},
"a-cascader-panel/change": {
"description": "Triggered when the selected value changes"
},
"a-cascader-panel/path-mode": {
"description": "Whether the value is a path",
"type": "boolean"
},
"a-cascader-panel/multiple": {
"description": "Whether it is a multi-selection state (The search is turned on by default in the multi-select mode)",
"type": "boolean"
},
"a-cascader-panel/model-value": {
"description": "Value"
},
"a-cascader-panel/default-value": {
"description": "Default value (uncontrolled state)"
},
"a-cascader-panel/options": {
"description": "Options for cascader"
},
"a-cascader-panel/expand-trigger": {
"description": "Expand the trigger method of the next level",
"type": "string"
},
"a-cascader-panel/check-strictly": {
"description": "Whether to enable strict selection mode",
"type": "boolean"
},
"a-cascader-panel/load-more": {
"description": "Data lazy loading function, open the lazy loading function when it is passed in"
},
"a-cascader-panel/field-names": {
"description": "Customize fields in `CascaderOption`"
},
"a-cascader-panel/value-key": {
"description": "Used to determine the option key value attribute name",
"type": "string"
},
"a-cascader-panel/expand-child": {
"description": "whether to expand the submenu",
"type": "boolean"
},
"a-card/bordered": {
"description": "Whether to render the border",
"type": "boolean"
},
"a-card/loading": {
"description": "Loading status",
"type": "boolean"
},
"a-card/hoverable": {
"description": "Can be hovered",
"type": "boolean"
},
"a-card/size": {
"description": "Size of card",
"type": "string"
},
"a-card/header-style": {
"description": "The additional css style to apply to card head"
},
"a-card/body-style": {
"description": "The additional css style to apply to card content"
},
"a-card/title": {
"description": "Title of card",
"type": "string"
},
"a-card/extra": {
"description": "Content to render in the top-right corner of the card",
"type": "string"
},
"a-card-meta/title": {
"description": "Title of card",
"type": "string"
},
"a-card-meta/description": {
"description": "Description of card",
"type": "string"
},
"a-card-grid/hoverable": {
"description": "Whether to hover",
"type": "boolean"
},
"a-checkbox/change": {
"description": "Trigger when the value changes"
},
"a-checkbox/model-value": {
"description": "Value"
},
"a-checkbox/default-checked": {
"description": "Whether checked by default (uncontrolled state)",
"type": "boolean"
},
"a-checkbox/value": {
"description": "The `value` of the option",
"type": "string|number|boolean"
},
"a-checkbox/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-checkbox/indeterminate": {
"description": "Whether it is half-selected",
"type": "boolean"
},
"a-checkbox-group/change": {
"description": "Trigger when the value changes"
},
"a-checkbox-group/model-value": {
"description": "Value"
},
"a-checkbox-group/default-value": {
"description": "Default value (uncontrolled state)"
},
"a-checkbox-group/max": {
"description": "Support the maximum number of selections",
"type": "number"
},
"a-checkbox-group/options": {
"description": "Options"
},
"a-checkbox-group/direction": {
"description": "Arrangement direction of checkboxes"
},
"a-checkbox-group/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-color-picker/change": {
"description": "Triggered when the color value changes"
},
"a-color-picker/popup-visible-change": {
"description": "Triggered when the color panel is expanded and collapsed"
},
"a-color-picker/model-value": {
"description": "Value",
"type": "string"
},
"a-color-picker/default-value": {
"description": "Default value (uncontrolled state)",
"type": "string"
},
"a-color-picker/format": {
"description": "Color value format",
"type": "string"
},
"a-color-picker/size": {
"description": "Size"
},
"a-color-picker/show-text": {
"description": "Show color value",
"type": "boolean"
},
"a-color-picker/show-history": {
"description": "Show history colors",
"type": "boolean"
},
"a-color-picker/show-preset": {
"description": "Show preset colors",
"type": "boolean"
},
"a-color-picker/disabled": {
"description": "disabled",
"type": "boolean"
},
"a-color-picker/disabled-alpha": {
"description": "Disable transparency channel",
"type": "boolean"
},
"a-color-picker/hide-trigger": {
"description": "There is no trigger element, only the color panel is displayed",
"type": "boolean"
},
"a-color-picker/trigger-props": {
"description": "Can accept Props of all [Trigger](/vue/component/trigger) components"
},
"a-color-picker/history-colors": {
"description": "Color array of historical colors"
},
"a-color-picker/preset-colors": {
"description": "Color array of preset colors"
},
"a-collapse/change": {
"description": "Emitted when the expanded panel changes"
},
"a-collapse/active-key": {
"description": "The `key` of the currently expanded panel"
},
"a-collapse/default-active-key": {
"description": "The `key` of the panel expanded by default (uncontrolled mode)"
},
"a-collapse/accordion": {
"description": "Whether to enable accordion mode",
"type": "boolean"
},
"a-collapse/show-expand-icon": {
"description": "Whether to show the expand icon",
"type": "boolean"
},
"a-collapse/expand-icon-position": {
"description": "The location where the expand icon is displayed"
},
"a-collapse/bordered": {
"description": "Whether to show the border",
"type": "boolean"
},
"a-collapse/destroy-on-hide": {
"description": "Whether to destroy content when hidden",
"type": "boolean"
},
"a-collapse-item/header": {
"description": "The title of the panel",
"type": "string"
},
"a-collapse-item/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-collapse-item/show-expand-icon": {
"description": "Whether to show the expand icon",
"type": "boolean"
},
"a-collapse-item/destroy-on-hide": {
"description": "Whether to destroy content when hidden",
"type": "boolean"
},
"a-comment/author": {
"description": "Display as the comment author",
"type": "string"
},
"a-comment/avatar": {
"description": "Display as the comment avatar",
"type": "string"
},
"a-comment/content": {
"description": "The content of the comment",
"type": "string"
},
"a-comment/datetime": {
"description": "Display as the comment datetime",
"type": "string"
},
"a-comment/align": {
"description": "Alignment of `datetime` and `actions`",
"type": "string|object"
},
"a-auto-complete/change": {
"description": "Emitted when the value changes"
},
"a-auto-complete/search": {
"description": "Emitted when the user searches"
},
"a-auto-complete/select": {
"description": "Emitted when an option is selected"
},
"a-auto-complete/clear": {
"description": "Triggered when the user clicks the clear button"
},
"a-auto-complete/dropdown-scroll": {
"description": "Triggered when the drop-down scrolls"
},
"a-auto-complete/dropdown-reach-bottom": {
"description": "Triggered when the drop-down menu is scrolled to the bottom"
},
"a-auto-complete/model-value": {
"description": "Value",
"type": "string"
},
"a-auto-complete/default-value": {
"description": "Default value (uncontrolled mode)",
"type": "string"
},
"a-auto-complete/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-auto-complete/data": {
"description": "Data used for auto-complete"
},
"a-auto-complete/popup-container": {
"description": "Mount container for popup"
},
"a-auto-complete/strict": {
"description": "Whether it is strict verification mode",
"type": "boolean"
},
"a-auto-complete/filter-option": {
"description": "Custom option filtering method"
},
"a-auto-complete/trigger-props": {
"description": "trigger props"
},
"a-auto-complete/allow-clear": {
"description": "Whether to allow the input to be cleared",
"type": "boolean"
},
"a-auto-complete/virtual-list-props": {
"description": "Pass the virtual list attribute, pass in this parameter to turn on virtual scrolling [VirtualListProps](#VirtualListProps)"
},
"a-range-picker/change": {
"description": "The component value changes"
},
"a-range-picker/select": {
"description": "The selected date has changed but the component value has not changed"
},
"a-range-picker/popup-visible-change": {
"description": "Open or close the pop-up box"
},
"a-range-picker/ok": {
"description": "Click the confirm button"
},
"a-range-picker/clear": {
"description": "Click the clear button"
},
"a-range-picker/select-shortcut": {
"description": "Click on the shortcut option"
},
"a-range-picker/picker-value-change": {
"description": "Panel date change"
},
"a-range-picker/mode": {
"description": "Type of range selector",
"type": "string"
},
"a-range-picker/model-value": {
"description": "Value"
},
"a-range-picker/default-value": {
"description": "Default value"
},
"a-range-picker/picker-value": {
"description": "The date displayed in the default panel"
},
"a-range-picker/default-picker-value": {
"description": "Date displayed on the panel"
},
"a-range-picker/disabled": {
"description": "Whether to disable"
},
"a-range-picker/day-start-of-week": {
"description": "The first day of the week starts on the day of the week, 0-Sunday, 1-Monday, and so on."
},
"a-range-picker/format": {
"description": "Display the format of the date, refer to [String Parsing Format](#string-parsing-format)",
"type": "string"
},
"a-range-picker/value-format": {
"description": "The format of the value, valid for `value` `defaultValue` `pickerValue` `defaultPickerValue` and the return value in the event, supports setting as timestamp, Date and string (refer to [String parsing format](#string-parsing-format) ). If not specified, it will be formatted as a string, in the same format as `format`."
},
"a-range-picker/show-time": {
"description": "Whether to increase time selection",
"type": "boolean"
},
"a-range-picker/time-picker-props": {
"description": "Time display parameters, refer to [TimePickerProps](/vue/component/time-picker)"
},
"a-range-picker/placeholder": {
"description": "Prompt copy"
},
"a-range-picker/disabled-date": {
"description": "Non-selectable date"
},
"a-range-picker/disabled-time": {
"description": "Unselectable time"
},
"a-range-picker/separator": {
"description": "The segmentation symbol in the input box of the range selector",
"type": "string"
},
"a-range-picker/exchange-time": {
"description": "Whether the time will be exchanged, by default time will affect and participate in the ordering of start and end values, if you want to fix the time order, you can turn it off.",
"type": "boolean"
},
"a-range-picker/disabled-input": {
"description": "Whether input is disabled with the keyboard.",
"type": "boolean"
},
"a-range-picker/abbreviation": {
"description": "Whether to enable abbreviation",
"type": "boolean"
},
"a-config-provider/prefix-cls": {
"description": "Component classname prefix",
"type": "string"
},
"a-config-provider/locale": {
"description": "Configure language pack"
},
"a-config-provider/size": {
"description": "Size"
},
"a-config-provider/global": {
"description": "Is global effect",
"type": "boolean"
},
"a-config-provider/scroll-to-close": {
"description": "Whether to close the popover when scrolling",
"type": "boolean"
},
"a-config-provider/exchange-time": {
"description": "Whether to exchange time",
"type": "boolean"
},
"a-divider/direction": {
"description": "The direction of the dividing line. Can be horizontal or vertical"
},
"a-divider/orientation": {
"description": "The position of the dividing line text",
"type": "string"
},
"a-divider/type": {
"description": "Dividing line style type",
"type": "string"
},
"a-divider/size": {
"description": "The wide/height of the dividing line",
"type": "number"
},
"a-divider/margin": {
"description": "Margin up and down the split line (left and right margin in vertical direction)",
"type": "number | string"
},
"a-dropdown/popup-visible-change": {
"description": "Triggered when the display status of the drop-down box changes"
},
"a-dropdown/select": {
"description": "Triggered when the user selects"
},
"a-dropdown/popup-visible": {
"description": "Whether the popup is visible",
"type": "boolean"
},
"a-dropdown/default-popup-visible": {
"description": "Whether the popup is visible by default (uncontrolled mode)",
"type": "boolean"
},
"a-dropdown/trigger": {
"description": "Trigger method"
},
"a-dropdown/position": {
"description": "Popup position"
},
"a-dropdown/popup-container": {
"description": "Mount container for popup"
},
"a-dropdown/popup-max-height": {
"description": "Maximum height of the popup",
"type": "boolean|number"
},
"a-dropdown/hide-on-select": {
"description": "Whether to hide popup when the user selects",
"type": "boolean"
},
"a-doption/click": {
"description": "Emitted when the button is clicked"
},
"a-doption/value": {
"description": "Value",
"type": "string|number|object"
},
"a-doption/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-dgroup/title": {
"description": "Group title",
"type": "string"
},
"a-dsubmenu/popup-visible-change": {
"description": "Triggered when the display status of the drop-down box changes"
},
"a-dsubmenu/value": {
"description": "Value (Not useful after version 2.16.0)",
"type": "string|number"
},
"a-dsubmenu/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-dsubmenu/trigger": {
"description": "Trigger method"
},
"a-dsubmenu/position": {
"description": "Popup position",
"type": "string"
},
"a-dsubmenu/popup-visible": {
"description": "Whether the popup is visible",
"type": "boolean"
},
"a-dsubmenu/default-popup-visible": {
"description": "Whether the popup is visible by default (uncontrolled mode)",
"type": "boolean"
},
"a-dsubmenu/option-props": {
"description": "Custom option properties",
"type": "object"
},
"a-dropdown-button/popup-visible-change": {
"description": "Triggered when the display status of the drop-down box changes"
},
"a-dropdown-button/click": {
"description": "Emitted when the button is clicked"
},
"a-dropdown-button/select": {
"description": "Triggered when the user selects"
},
"a-dropdown-button/popup-visible": {
"description": "Whether the popup is visible",
"type": "boolean"
},
"a-dropdown-button/default-popup-visible": {
"description": "Whether the popup is visible by default (uncontrolled mode)",
"type": "boolean"
},
"a-dropdown-button/trigger": {
"description": "Trigger method"
},
"a-dropdown-button/position": {
"description": "Popup position"
},
"a-dropdown-button/popup-container": {
"description": "Mount container for popup"
},
"a-dropdown-button/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-dropdown-button/type": {
"description": "Button type",
"type": "string"
},
"a-dropdown-button/size": {
"description": "Button size",
"type": "string"
},
"a-dropdown-button/button-props": {
"description": "Button props"
},
"a-dropdown-button/hide-on-select": {
"description": "Whether to hide popup when the user selects",
"type": "boolean"
},
"a-row/gutter": {
"description": "Grid interval in `px`. Pass in the responsive object like {xs: 4, sm: 6, md: 12}. Pass in the array [horizontal spacing, vertical spacing] to set two directions."
},
"a-row/justify": {
"description": "Horizontal alignment (`justify-content`)",
"type": "string"
},
"a-row/align": {
"description": "Vertical alignment (`align-items`)",
"type": "string"
},
"a-row/div": {
"description": "Enabling this option `Row` and `Col` will be treated as divs without any Grid-related classes and styles",
"type": "boolean"
},
"a-row/wrap": {
"description": "Whether `Col` can wrap onto multiple lines",
"type": "boolean"
},
"a-col/span": {
"description": "Number of grid space",
"type": "number"
},
"a-col/offset": {
"description": "The number of grids on the left side of the grid. There can be no grids in the grid.",
"type": "number"
},
"a-col/order": {
"description": "Sort elements",
"type": "number"
},
"a-col/xs": {
"description": "<576px responsive grid"
},
"a-col/sm": {
"description": ">= 576px responsive grid"
},
"a-col/md": {
"description": ">= 768px responsive grid"
},
"a-col/lg": {
"description": ">= 992px responsive grid"
},
"a-col/xl": {
"description": ">= 1200px responsive grid"
},
"a-col/xxl": {
"description": ">= 1600px responsive grid"
},
"a-col/flex": {
"description": "Set flex layout properties"
},
"a-grid/cols": {
"description": "Number of columns displayed in each row"
},
"a-grid/row-gap": {
"description": "The space in row-to-row"
},
"a-grid/col-gap": {
"description": "The space in column-to-column"
},
"a-grid/collapsed": {
"description": "Whether to collapsed",
"type": "boolean"
},
"a-grid/collapsed-rows": {
"description": "Number of rows displayed when collapsed",
"type": "number"
},
"a-grid-item/span": {
"description": "Number of grids spanned"
},
"a-grid-item/offset": {
"description": "Number of grids on the left"
},
"a-grid-item/suffix": {
"description": "Is it a suffix element",
"type": "boolean"
},
"a-input/input": {
"description": "Triggered when the user enters"
},
"a-input/change": {
"description": "Only triggered when the input box is out of focus or when you press Enter"
},
"a-input/press-enter": {
"description": "Triggered when the user presses enter"
},
"a-input/clear": {
"description": "Triggered when the user clicks the clear button"
},
"a-input/focus": {
"description": "Triggered when the input box gets focus"
},
"a-input/blur": {
"description": "Triggered when the input box loses focus"
},
"a-input/model-value": {
"description": "Value",
"type": "string"
},
"a-input/default-value": {
"description": "Default value (uncontrolled state)",
"type": "string"
},
"a-input/size": {
"description": "Input size"
},
"a-input/allow-clear": {
"description": "Whether to allow the input to be cleared",
"type": "boolean"
},
"a-input/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-input/readonly": {
"description": "Whether it is read-only",
"type": "boolean"
},
"a-input/error": {
"description": "Whether it is an error state",
"type": "boolean"
},
"a-input/placeholder": {
"description": "Prompt text",
"type": "string"
},
"a-input/max-length": {
"description": "Enter the maximum length of the value, the errorOnly attribute was added in version 2.12.0"
},
"a-input/show-word-limit": {
"description": "Whether to display word count",
"type": "boolean"
},
"a-input/word-length": {
"description": "Calculation method of word length"
},
"a-input/word-slice": {
"description": "Character interception method, used together with wordLength"
},
"a-input/input-attrs": {
"description": "Attributes of inner input elements",
"type": "object"
},
"a-input/prepend": {
"description": "Prepend",
"type": "string"
},
"a-input/append": {
"description": "Append",
"type": "string"
},
"a-input-password/visibility-change": {
"description": "Callback when visibility changes"
},
"a-input-password/visibility": {
"description": "Whether is visible",
"type": "boolean"
},
"a-input-password/default-visibility": {
"description": "Default visibility",
"type": "boolean"
},
"a-input-password/invisible-button": {
"description": "Whether to show visible buttons",
"type": "boolean"
},
"a-input-search/search": {
"description": "Triggered when the search button is clicked"
},
"a-input-search/search-button": {
"description": "Whether it is the rear button mode",
"type": "boolean"
},
"a-input-search/loading": {
"description": "Whether it is loading state",
"type": "boolean"
},
"a-input-search/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-input-search/size": {
"description": "Input size"
},
"a-input-search/button-text": {
"description": "The text of the search button will replace the original icon after use",
"type": "string"
},
"a-input-search/button-props": {
"description": "Button props"
},
"a-drawer/ok": {
"description": "Triggered when the OK button is clicked"
},
"a-drawer/cancel": {
"description": "Triggered when the cancel or close button is clicked"
},
"a-drawer/open": {
"description": "Triggered after the drawer is opened (the animation ends)"
},
"a-drawer/close": {
"description": "Triggered when the drawer is closed (the animation ends)"
},
"a-drawer/before-open": {
"description": "Triggered before drawer is opened"
},
"a-drawer/before-close": {
"description": "Triggered before drawer is closed"
},
"a-drawer/visible": {
"description": "Whether the drawer is visible",
"type": "boolean"
},
"a-drawer/default-visible": {
"description": "Whether the drawer is visible by default (uncontrolled mode)",
"type": "boolean"
},
"a-drawer/placement": {
"description": "Where the drawer is placed"
},
"a-drawer/title": {
"description": "Title",
"type": "string"
},
"a-drawer/mask": {
"description": "Whether to show the mask",
"type": "boolean"
},
"a-drawer/mask-closable": {
"description": "Click on the mask layer to be able to close",
"type": "boolean"
},
"a-drawer/closable": {
"description": "Whether to show the close button",
"type": "boolean"
},
"a-drawer/ok-text": {
"description": "The content of the ok button",
"type": "string"
},
"a-drawer/cancel-text": {
"description": "The content of the cancel button",
"type": "string"
},
"a-drawer/ok-loading": {
"description": "Whether the ok button is in the loading state",
"type": "boolean"
},
"a-drawer/ok-button-props": {
"description": "Props of confirm button"
},
"a-drawer/cancel-button-props": {
"description": "Props of cancel button"
},
"a-drawer/unmount-on-close": {
"description": "Whether to uninstall the node when close",
"type": "boolean"
},
"a-drawer/width": {
"description": "The width of the drawer (only available when placement is right, left)",
"type": "number|string"
},
"a-drawer/height": {
"description": "The height of the drawer (only available when placement is top, bottom)",
"type": "number|string"
},
"a-drawer/popup-container": {
"description": "Mount container for popup"
},
"a-drawer/drawer-style": {
"description": "Drawer style"
},
"a-drawer/body-class": {
"description": "The classname of the drawer body"
},
"a-drawer/body-style": {
"description": "Drawer body style"
},
"a-drawer/before-ok": {
"description": "The callback function before the ok event is triggered. If false is returned, subsequent events will not be triggered, and done can also be used to close asynchronously."
},
"a-drawer/before-cancel": {
"description": "The callback function before the cancel event is triggered. If it returns false, no subsequent events will be triggered."
},
"a-drawer/esc-to-close": {
"description": "Whether to support the ESC key to close the dialog",
"type": "boolean"
},
"a-drawer/render-to-body": {
"description": "Whether the drawer is mounted under the `body` element",
"type": "boolean"
},
"a-drawer/header": {
"description": "Whether to display high-quality content",
"type": "boolean"
},
"a-drawer/footer": {
"description": "Whether to display the bottom content",
"type": "boolean"
},
"a-drawer/hide-cancel": {
"description": "Whether to hide the cancel button",
"type": "boolean"
},
"a-form/submit": {
"description": "Triggered when the form is submitted"
},
"a-form/submit-success": {
"description": "Triggered when verification is successful"
},
"a-form/submit-failed": {
"description": "Triggered when verification failed"
},
"a-form/model": {
"description": "Form data object",
"type": "object"
},
"a-form/layout": {
"description": "The layout of the form, including horizontal, vertical, and multi-column"
},
"a-form/size": {
"description": "The size of the form"
},
"a-form/label-col-props": {
"description": "Label element layout options. The parameters are the same as the `<col>` component",
"type": "object"
},
"a-form/wrapper-col-props": {
"description": "Form control layout options. The parameters are the same as the `<col>` component",
"type": "object"
},
"a-form/label-align": {
"description": "Alignment direction of the label"
},
"a-form/disabled": {
"description": "Whether to disable the form",
"type": "boolean"
},
"a-form/rules": {
"description": "Form item validation rules"
},
"a-form/auto-label-width": {
"description": "Whether to enable automatic label width, it only takes effect under `layout=\"horizontal\"`.",
"type": "boolean"
},
"a-form/id": {
"description": "Form `id` attribute and form control `id` prefix",
"type": "string"
},
"a-form/scroll-to-first-error": {
"description": "Scroll to the first error field after verification fails",
"type": "boolean"
},
"a-form-item/field": {
"description": "The path of the form element in the data object (required for the data item)",
"type": "string"
},
"a-form-item/label": {
"description": "Label text",
"type": "string"
},
"a-form-item/tooltip": {
"description": "Tooltip text",
"type": "string"
},
"a-form-item/show-colon": {
"description": "Whether to show a colon",
"type": "boolean"
},
"a-form-item/no-style": {
"description": "Whether to remove the style",
"type": "boolean"
},
"a-form-item/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-form-item/help": {
"description": "Help copywriting",
"type": "string"
},
"a-form-item/extra": {
"description": "Additional display copy",
"type": "string"
},
"a-form-item/required": {
"description": "Is it required",
"type": "boolean"
},
"a-form-item/asterisk-position": {
"description": "Optionally place an asterisk before/after the label",
"type": "string"
},
"a-form-item/rules": {
"description": "Form item validation rules (The priority is higher than the rules of form)"
},
"a-form-item/validate-status": {
"description": "Validate status"
},
"a-form-item/validate-trigger": {
"description": "The event that triggers the verification"
},
"a-form-item/label-col-props": {
"description": "Label element layout options. The parameters are the same as the `<col>` component",
"type": "object"
},
"a-form-item/wrapper-col-props": {
"description": "Form control layout options. The parameters are the same as the `<col>` component",
"type": "object"
},
"a-form-item/hide-label": {
"description": "Whether to hide the label",
"type": "boolean"
},
"a-form-item/hide-asterisk": {
"description": "Whether to hide the asterisk",
"type": "boolean"
},
"a-form-item/label-col-style": {
"description": "The style of the label element layout component",
"type": "object"
},
"a-form-item/wrapper-col-style": {
"description": "The style of the form control layout component",
"type": "object"
},
"a-form-item/row-props": {
"description": "Form item layout options. The parameters are the same as the `<row>` component",
"type": "object"
},
"a-form-item/row-class": {
"description": "The class of the form item layout component",
"type": "string|array|object"
},
"a-form-item/content-class": {
"description": "The class of the form control wrapping layer",
"type": "string|array|object"
},
"a-form-item/content-flex": {
"description": "Whether to enable flex layout in the content layer",
"type": "boolean"
},
"a-form-item/merge-props": {
"description": "(Repealed) Control the Props passed to the child element. The default includes disabled, error, size, events and additional attributes on FormItem. Version 2.18.0 deprecated"
},
"a-form-item/label-col-flex": {
"description": "Set the flex property of the label `Col` component. When set, the flex property of the form `Col` component will be set to `auto`.",
"type": "number|string"
},
"a-form-item/feedback": {
"description": "Whether to show the feedback icon for the form control",
"type": "boolean"
},
"a-form-item/label-component": {
"description": "The element that the form item label renders",
"type": "string"
},
"a-form-item/label-attrs": {
"description": "Attributes of the form item element",
"type": "object"
},
"a-empty/description": {
"description": "Description",
"type": "string"
},
"a-empty/img-src": {
"description": "The src of the Custom Image",
"type": "string"
},
"a-empty/in-config-provider": {
"description": "Whether to use in ConfigProvider",
"type": "boolean"
},
"a-descriptions/data": {
"description": "Data for descriptions"
},
"a-descriptions/column": {
"description": "The number of data placed in each row. Version 2.20.0 supports reactive configuration, the configuration can refer to Grid"
},
"a-descriptions/title": {
"description": "Title of descriptions",
"type": "string"
},
"a-descriptions/layout": {
"description": "Arrangement of descriptions",
"type": "string"
},
"a-descriptions/align": {
"description": "Alignment position of text"
},
"a-descriptions/size": {
"description": "The size of the descriptions"
},
"a-descriptions/bordered": {
"description": "Whether to show the border",
"type": "boolean"
},
"a-descriptions/label-style": {
"description": "Data label style"
},
"a-descriptions/value-style": {
"description": "Data content style"
},
"a-descriptions/table-layout": {
"description": "The `layout-fixed` of the table style in the description. The width will be evenly distributed when it's set to `fixed`.",
"type": "string"
},
"a-descriptions-item/span": {
"description": "number of columns",
"type": "number"
},
"a-descriptions-item/label": {
"description": "Label",
"type": "string"
},
"a-input-number/change": {
"description": "Triggered when the value changes"
},
"a-input-number/focus": {
"description": "Triggered when the input gets focus"
},
"a-input-number/blur": {
"description": "Triggered when the input box loses focus"
},
"a-input-number/clear": {
"description": "Triggered when the user clicks the clear button"
},
"a-input-number/input": {
"description": "Triggered on input"
},
"a-input-number/keydown": {
"description": "Triggered on keydown"
},
"a-input-number/model-value": {
"description": "Value",
"type": "number"
},
"a-input-number/default-value": {
"description": "Default value (uncontrolled mode)",
"type": "number"
},
"a-input-number/mode": {
"description": "Mode (`embed`: button embedded mode, `button`: left and right button mode)",
"type": "string"
},
"a-input-number/precision": {
"description": "Precision",
"type": "number"
},
"a-input-number/step": {
"description": "Number change step",
"type": "number"
},
"a-input-number/disabled": {
"description": "Whether to disable",
"type": "boolean"
},
"a-input-number/error": {
"description": "Whether it is an error state",
"type": "boolean"
},
"a-input-number/max": {
"description": "Max",
"type": "number"
},
"a-input-number/min": {
"description": "Min",
"type": "number"
},
"a-input-number/formatter": {
"description": "Define the display value of the input"
},
"a-input-number/parser": {
"description": "Convert from `formatter` to number, and use with `formatter`"
},
"a-input-number/placeholder": {
"description": "Input prompt text",
"type": "string"
},
"a-input-number/hide-button": {
"description": "Whether to hide the button",
"type": "boolean"
},
"a-input-number/size": {
"description": "Input size"
},
"a-input-number/allow-clear": {
"description": "Whether to allow the input to be cleared",
"type": "boolean"
},
"a-input-number/model-event": {
"description": "Trigger event for `v-model`",
"type": "string"
},
"a-input-number/read-only": {
"description": "Readonly",
"type": "boolean"
},
"a-input-number/input-attrs": {
"description": "Attributes of inner input elements",
"type": "object"
},
"a-list/scroll": {
"description": "Triggered when the list scrolls"
},
"a-list/reach-bottom": {
"description": "Triggered when the list reaches the bottom"
},
"a-list/page-change": {
"description": "Triggered when the table pagination changes"
},
"a-list/page-size-change": {
"description": "Triggered when the number of data per page of the table changes"
},
"a-list/data": {
"description": "List data, need to be used with `item` slot at the same time"
},
"a-list/size": {
"description": "List size",
"type": "string"
},
"a-list/bordered": {
"description": "Whether to show the border",