mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
581d62b233
# By afc163 (55) and others # Via afc163 (21) and others * 'master' of github.com:ant-design/ant-design: (96 commits) arrow size and rotate input focus style update update site style fix color variable sort params 修复清空的问题 prepare npm update table document fix sort table logic, only allow one column to be sorted at a time chore: change collapse color optimize deploy update table row-selection style update table demos fix markdown table in chrome fix table loading style feat: collapse style review and change fix table loading style fix table loading style update table document update filter dropdown function and style ... Conflicts: index.js style/components/index.less
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
require('./style/index.less');
|
|
|
|
var antd = {
|
|
Datepicker: require('./components/datepicker'),
|
|
Tooltip: require('./components/tooltip'),
|
|
Tabs: require('./components/tabs'),
|
|
Modal: require('./components/modal'),
|
|
Menu: require('rc-menu'),
|
|
Dropdown: require('./components/dropdown'),
|
|
Progress: require('./components/progress'),
|
|
Popover: require('./components/popover'),
|
|
Select: require('./components/select'),
|
|
Breadcrumb: require('./components/breadcrumb'),
|
|
Popconfirm: require('./components/popconfirm'),
|
|
Pagination: require('./components/pagination'),
|
|
confirm: require('./components/modal/confirm'),
|
|
Steps: require('./components/steps'),
|
|
InputNumber: require('./components/input-number'),
|
|
Switch: require('./components/switch'),
|
|
Checkbox: require('./components/checkbox'),
|
|
Table: require('./components/table'),
|
|
Collapse: require('./components/Collapse'),
|
|
message: require('./components/message'),
|
|
Slider: require('./components/slider')
|
|
};
|
|
|
|
module.exports = antd;
|
|
|
|
antd.version = require('./package.json').version;
|
|
|
|
if (typeof window !== undefined) {
|
|
window.antd = antd;
|
|
}
|