|
| 1 | +// Project: https://github.com/vueComponent/ant-design-vue |
| 2 | +// Definitions by: akki-jat <https://github.com/akki-jat> |
| 3 | +// Definitions: https://github.com/vueComponent/ant-design-vue/types |
| 4 | + |
| 5 | +import Vue from "vue"; |
| 6 | + |
| 7 | +import { Affix } from "./affix"; |
| 8 | +import { Anchor } from "./anchor/anchor"; |
| 9 | +import { AutoComplete } from "./auto-complete"; |
| 10 | +import { Alert } from "./alert"; |
| 11 | +import { Avatar } from "./avatar"; |
| 12 | +import { BackTop } from "./back-top"; |
| 13 | +import { Badge } from "./badge"; |
| 14 | +import { Breadcrumb } from "./breadcrumb"; |
| 15 | +import { Button } from "./button/button"; |
| 16 | +import { Calendar } from "./calendar"; |
| 17 | +import { Card } from "./card"; |
| 18 | +import { Collapse } from "./collapse/collapse"; |
| 19 | +import { Carousel } from "./carousel"; |
| 20 | +import { Cascader } from "./cascader"; |
| 21 | +import { Checkbox } from "./checkbox/checkbox"; |
| 22 | +import { Col } from "./grid/col"; |
| 23 | +import { DatePicker } from "./date-picker/date-picker"; |
| 24 | +import { Divider } from "./divider"; |
| 25 | +import { Dropdown } from "./dropdown/dropdown"; |
| 26 | +import { Form } from "./form/form"; |
| 27 | +import { Icon } from "./icon"; |
| 28 | +import { Input } from "./input/input"; |
| 29 | +import { InputNumber } from "./input-number"; |
| 30 | +import { Layout } from "./layout/layout"; |
| 31 | +import { List } from "./list/list"; |
| 32 | +import { LocaleProvider } from "./locale-provider"; |
| 33 | +import { Message } from "./message"; |
| 34 | +import { Menu } from "./menu/menu"; |
| 35 | +import { Modal } from "./modal"; |
| 36 | +import { Notification } from "./notification"; |
| 37 | +import { Pagination } from "./pagination"; |
| 38 | +import { Popconfirm } from "./popconfirm"; |
| 39 | +import { Popover } from "./popover"; |
| 40 | +import { Progress } from "./progress"; |
| 41 | +import { Radio } from "./radio/radio"; |
| 42 | +import { Rate } from "./rate"; |
| 43 | +import { Row } from "./grid/row"; |
| 44 | +import { Select } from "./select/select"; |
| 45 | +import { Slider } from "./slider"; |
| 46 | +import { Spin } from "./spin"; |
| 47 | +import { Steps } from "./steps/steps"; |
| 48 | +import { Switch } from "./switch"; |
| 49 | +import { Table } from "./table/table"; |
| 50 | +import { Transfer } from "./transfer"; |
| 51 | +import { Tree } from "./tree/tree"; |
| 52 | +import { TreeSelect } from "./tree-select"; |
| 53 | +import { Tabs } from "./tabs/tabs"; |
| 54 | +import { Tag } from "./tag/tag"; |
| 55 | +import { TimePicker } from "./time-picker"; |
| 56 | +import { Timeline } from "./timeline/timeline"; |
| 57 | +import { Tooltip } from "./tootip/tooltip"; |
| 58 | +import { Upload } from "./upload"; |
| 59 | +import { Drawer } from "./drawer"; |
| 60 | +import { Skeleton } from "./skeleton"; |
| 61 | + |
| 62 | +/** |
| 63 | + * Install all ant-design-vue components into Vue. |
| 64 | + * Please do not invoke this method directly. |
| 65 | + * Call `Vue.use(Antd)` to install. |
| 66 | + */ |
| 67 | +export function install(vue: typeof Vue): void; |
| 68 | + |
| 69 | +declare const message: Message; |
| 70 | +declare const notification: Notification; |
| 71 | + |
| 72 | +export { |
| 73 | + Affix, |
| 74 | + Anchor, |
| 75 | + AutoComplete, |
| 76 | + Alert, |
| 77 | + Avatar, |
| 78 | + BackTop, |
| 79 | + Badge, |
| 80 | + Breadcrumb, |
| 81 | + Button, |
| 82 | + Calendar, |
| 83 | + Card, |
| 84 | + Collapse, |
| 85 | + Carousel, |
| 86 | + Cascader, |
| 87 | + Checkbox, |
| 88 | + Col, |
| 89 | + DatePicker, |
| 90 | + Divider, |
| 91 | + Dropdown, |
| 92 | + Form, |
| 93 | + Icon, |
| 94 | + Input, |
| 95 | + InputNumber, |
| 96 | + Layout, |
| 97 | + List, |
| 98 | + LocaleProvider, |
| 99 | + message, |
| 100 | + Menu, |
| 101 | + Modal, |
| 102 | + notification, |
| 103 | + Pagination, |
| 104 | + Popconfirm, |
| 105 | + Popover, |
| 106 | + Progress, |
| 107 | + Radio, |
| 108 | + Rate, |
| 109 | + Row, |
| 110 | + Select, |
| 111 | + Slider, |
| 112 | + Spin, |
| 113 | + Steps, |
| 114 | + Switch, |
| 115 | + Table, |
| 116 | + Transfer, |
| 117 | + Tree, |
| 118 | + TreeSelect, |
| 119 | + Tabs, |
| 120 | + Tag, |
| 121 | + TimePicker, |
| 122 | + Timeline, |
| 123 | + Tooltip, |
| 124 | + Upload, |
| 125 | + Drawer, |
| 126 | + Skeleton |
| 127 | +}; |
0 commit comments