shineout 1.7.0 → 1.7.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/Alert/index.d.ts +63 -0
- package/css/AnimationList/AbsoluteList.js +89 -48
- package/css/Breadcrumb/index.d.ts +68 -0
- package/css/Button/index.d.ts +160 -0
- package/css/Card/index.d.ts +161 -0
- package/css/CardGroup/CardGroup.js +1 -1
- package/css/CardGroup/index.d.ts +119 -0
- package/css/Carousel/index.d.ts +59 -0
- package/css/Cascader/index.d.ts +185 -0
- package/css/Checkbox/index.d.ts +120 -0
- package/css/DataList/index.d.ts +197 -0
- package/css/DatePicker/Container.js +1 -1
- package/css/DatePicker/index.d.ts +262 -0
- package/css/DatePicker/utils.js +1 -1
- package/css/Datum/List.js +54 -17
- package/css/Divider/index.d.ts +40 -0
- package/css/Drawer/index.d.ts +165 -0
- package/css/Dropdown/index.d.ts +122 -0
- package/css/EditableArea/index.d.ts +99 -0
- package/css/Form/Item.js +6 -3
- package/css/Form/formContext.js +6 -3
- package/css/Form/index.d.ts +466 -0
- package/css/Form/index.js +1 -1
- package/css/Form/inputable.js +63 -52
- package/css/Form/styles/form.css +12 -0
- package/css/Gap/index.d.ts +28 -0
- package/css/Grid/index.d.ts +38 -0
- package/css/Icon/index.d.ts +69 -0
- package/css/Image/index.d.ts +194 -0
- package/css/Input/Number.js +3 -1
- package/css/Input/index.d.ts +258 -0
- package/css/Menu/index.d.ts +147 -0
- package/css/Message/index.d.ts +72 -0
- package/css/Modal/events.js +71 -13
- package/css/Modal/index.d.ts +330 -0
- package/css/Pagination/index.d.ts +129 -0
- package/css/Popover/index.d.ts +241 -0
- package/css/Popover/styles/popover.css +1 -1
- package/css/Progress/index.d.ts +108 -0
- package/css/Radio/index.d.ts +61 -0
- package/css/Rate/index.d.ts +65 -0
- package/css/Rule/index.d.ts +90 -0
- package/css/Select/BoxList.js +5 -3
- package/css/Select/OptionList.js +5 -3
- package/css/Select/OptionTree.js +5 -3
- package/css/Select/Select.js +28 -8
- package/css/Select/index.d.ts +366 -0
- package/css/Slider/index.d.ts +102 -0
- package/css/Spin/index.d.ts +74 -0
- package/css/Sticky/index.d.ts +56 -0
- package/css/Switch/index.d.ts +47 -0
- package/css/Table/SeperateTable.js +26 -18
- package/css/Table/Table.js +1 -2
- package/css/Table/index.d.ts +541 -0
- package/css/Tabs/index.d.ts +225 -0
- package/css/Tag/Tag.js +8 -2
- package/css/Tag/index.d.ts +79 -0
- package/css/Textarea/index.d.ts +104 -0
- package/css/Tooltip/index.d.ts +69 -0
- package/css/Transfer/Transfer.js +13 -8
- package/css/Transfer/btns.js +25 -14
- package/css/Transfer/index.d.ts +157 -0
- package/css/Tree/index.d.ts +225 -0
- package/css/Tree/styles/tree.css +1 -1
- package/css/TreeSelect/TreeSelect.js +1 -1
- package/css/TreeSelect/index.d.ts +297 -0
- package/css/TreeSelect/styles/treeSelect.css +2 -4
- package/css/Upload/ImageResult.js +14 -3
- package/css/Upload/index.d.ts +529 -0
- package/css/index.d.ts +58 -0
- package/css/index.js +1 -1
- package/css/styles/expose.css +4 -1
- package/css/utils/numbers.js +59 -0
- package/css/utils/vars-inject.js +13 -0
- package/dist/shineout.js +4110 -3763
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/theme.antd.css +1 -1
- package/dist/theme.antd2.css +1 -1
- package/dist/theme.default.css +1 -1
- package/dist/theme.shineout.css +1 -1
- package/es/@types/common.d.ts +1 -1
- package/es/Alert/index.js +127 -107
- package/es/Alert/styles/index.js +3 -4
- package/es/AnimationList/AbsoluteList.js +267 -178
- package/es/AnimationList/LazyList.js +120 -92
- package/es/AnimationList/List.js +43 -23
- package/es/AnimationList/index.js +19 -14
- package/es/AnimationList/styles/index.js +3 -4
- package/es/Breadcrumb/index.js +77 -69
- package/es/Breadcrumb/styles/index.js +3 -4
- package/es/Button/Button.js +91 -74
- package/es/Button/Group.js +42 -28
- package/es/Button/Once.js +39 -23
- package/es/Button/index.js +7 -10
- package/es/Button/styles/index.js +3 -4
- package/es/Card/Accordion.js +58 -45
- package/es/Card/Body.js +55 -42
- package/es/Card/Card.js +85 -79
- package/es/Card/Footer.js +38 -15
- package/es/Card/Header.js +52 -34
- package/es/Card/Submit.js +51 -33
- package/es/Card/context.js +22 -16
- package/es/Card/index.js +16 -19
- package/es/Card/styles/index.js +3 -4
- package/es/CardGroup/CardGroup.js +94 -70
- package/es/CardGroup/Item.js +61 -43
- package/es/CardGroup/context.js +12 -10
- package/es/CardGroup/index.js +7 -10
- package/es/CardGroup/styles/index.js +3 -4
- package/es/Carousel/Item.js +31 -17
- package/es/Carousel/index.js +156 -123
- package/es/Carousel/styles/index.js +3 -4
- package/es/Cascader/Cascader.js +397 -346
- package/es/Cascader/FilterList.js +185 -142
- package/es/Cascader/Input.js +102 -79
- package/es/Cascader/List.js +66 -41
- package/es/Cascader/Node.js +153 -110
- package/es/Cascader/Result.js +286 -230
- package/es/Cascader/filter.js +92 -61
- package/es/Cascader/index.js +13 -18
- package/es/Cascader/styles/index.js +3 -4
- package/es/Checkbox/CheckItem.js +168 -154
- package/es/Checkbox/Checkbox.js +2 -3
- package/es/Checkbox/Group.js +106 -85
- package/es/Checkbox/context.js +12 -10
- package/es/Checkbox/index.js +14 -21
- package/es/Checkbox/styles/index.js +3 -4
- package/es/DataList/BaseItem.js +39 -21
- package/es/DataList/Extra.js +33 -17
- package/es/DataList/List.js +166 -140
- package/es/DataList/Meta.js +109 -74
- package/es/DataList/Pagination.js +9 -10
- package/es/DataList/index.js +13 -19
- package/es/DataList/styles/index.js +3 -4
- package/es/DatePicker/Container.js +469 -450
- package/es/DatePicker/Day.js +265 -258
- package/es/DatePicker/Icon.js +34 -20
- package/es/DatePicker/Month.js +101 -79
- package/es/DatePicker/Picker.js +110 -83
- package/es/DatePicker/Quick.js +52 -39
- package/es/DatePicker/Range.js +241 -192
- package/es/DatePicker/Text.js +103 -91
- package/es/DatePicker/Time.js +165 -147
- package/es/DatePicker/TimeScroll.js +148 -116
- package/es/DatePicker/Year.js +74 -53
- package/es/DatePicker/index.d.ts +5 -13
- package/es/DatePicker/index.js +16 -18
- package/es/DatePicker/paramUtils.js +92 -58
- package/es/DatePicker/styles/index.js +3 -4
- package/es/DatePicker/utils.js +189 -198
- package/es/DatePicker/value.js +139 -98
- package/es/Datum/Form.js +333 -282
- package/es/Datum/List.js +329 -181
- package/es/Datum/Tree.js +298 -239
- package/es/Datum/hoc.js +104 -69
- package/es/Datum/index.js +7 -8
- package/es/Datum/types.js +20 -25
- package/es/Divider/index.js +50 -32
- package/es/Divider/styles/index.js +3 -4
- package/es/Drawer/index.d.ts +165 -0
- package/es/Drawer/index.js +14 -9
- package/es/Dropdown/Item.js +56 -43
- package/es/Dropdown/index.js +273 -259
- package/es/Dropdown/styles/index.js +3 -4
- package/es/EditableArea/EditableArea.js +157 -136
- package/es/EditableArea/index.js +8 -15
- package/es/EditableArea/styles/index.js +3 -4
- package/es/Form/Block.js +83 -57
- package/es/Form/BlockField.js +32 -17
- package/es/Form/Field.js +56 -36
- package/es/Form/FieldError.js +27 -21
- package/es/Form/FieldSet.js +214 -156
- package/es/Form/Flow.js +51 -32
- package/es/Form/Form.js +178 -144
- package/es/Form/Item.js +182 -154
- package/es/Form/Loop.js +202 -146
- package/es/Form/formButton.js +58 -42
- package/es/Form/formContext.js +104 -83
- package/es/Form/index.d.ts +40 -24
- package/es/Form/index.js +40 -45
- package/es/Form/inputable.js +369 -285
- package/es/Form/mode.js +15 -9
- package/es/Form/styles/form.less +12 -0
- package/es/Form/styles/index.js +4 -5
- package/es/Gap/index.js +71 -47
- package/es/Gap/styles/index.js +3 -4
- package/es/Gap/support.js +11 -14
- package/es/Grid/index.js +88 -58
- package/es/Grid/utils.js +57 -58
- package/es/Icon/Icon.js +43 -42
- package/es/Icon/index.d.ts +2 -3
- package/es/Icon/index.js +39 -22
- package/es/Icon/styles/index.js +3 -4
- package/es/Image/Gallery.js +128 -113
- package/es/Image/Group.js +60 -36
- package/es/Image/Image.js +227 -153
- package/es/Image/Magnify.js +123 -94
- package/es/Image/events.js +29 -26
- package/es/Image/index.js +6 -9
- package/es/Image/styles/index.js +3 -4
- package/es/Input/Group.js +17 -11
- package/es/Input/Input.js +158 -134
- package/es/Input/Number.js +199 -174
- package/es/Input/Password.js +54 -31
- package/es/Input/clear.js +41 -25
- package/es/Input/index.js +23 -35
- package/es/Input/styles/index.js +3 -4
- package/es/Lazyload/index.js +63 -42
- package/es/Lazyload/styles/index.js +3 -4
- package/es/Menu/Item.js +275 -236
- package/es/Menu/List.js +75 -67
- package/es/Menu/Root.js +372 -334
- package/es/Menu/context.js +18 -12
- package/es/Menu/index.js +3 -5
- package/es/Menu/styles/index.js +3 -4
- package/es/Message/Container.js +155 -119
- package/es/Message/index.js +42 -30
- package/es/Message/messager.js +29 -33
- package/es/Message/styles/index.js +3 -4
- package/es/Modal/Modal.js +80 -60
- package/es/Modal/Panel.js +258 -234
- package/es/Modal/context.js +15 -15
- package/es/Modal/events.js +220 -155
- package/es/Modal/index.js +12 -14
- package/es/Modal/styles/index.js +3 -4
- package/es/Pagination/Item.js +46 -32
- package/es/Pagination/Jumper.js +77 -67
- package/es/Pagination/Links.js +110 -82
- package/es/Pagination/Next.js +52 -31
- package/es/Pagination/PageSizeList.js +57 -40
- package/es/Pagination/Pagination.js +78 -54
- package/es/Pagination/Prev.js +49 -30
- package/es/Pagination/Simple.js +32 -18
- package/es/Pagination/index.js +68 -41
- package/es/Pagination/styles/index.js +3 -4
- package/es/Popover/Confirm.js +107 -64
- package/es/Popover/Panel.js +284 -231
- package/es/Popover/context.js +15 -12
- package/es/Popover/events.js +80 -86
- package/es/Popover/index.js +12 -14
- package/es/Popover/styles/index.js +3 -4
- package/es/Popover/styles/popover.less +3 -3
- package/es/Progress/Circle.js +70 -59
- package/es/Progress/Line.js +51 -39
- package/es/Progress/Popup.js +42 -24
- package/es/Progress/analyzeColor.js +18 -9
- package/es/Progress/index.js +13 -15
- package/es/Progress/styles/index.js +3 -4
- package/es/Radio/Group.js +105 -94
- package/es/Radio/Radio.js +2 -3
- package/es/Radio/index.js +15 -17
- package/es/Radio/styles/index.js +1 -1
- package/es/Rate/Rate.js +216 -167
- package/es/Rate/index.js +17 -10
- package/es/Rate/styles/index.js +3 -4
- package/es/Rule/convert.js +48 -57
- package/es/Rule/index.js +63 -40
- package/es/Rule/length.js +53 -38
- package/es/Rule/regExp.js +23 -14
- package/es/Rule/required.js +26 -18
- package/es/Rule/styles/index.js +1 -1
- package/es/Rule/type.js +26 -18
- package/es/Scroll/Bar.js +145 -117
- package/es/Scroll/Scroll.js +277 -217
- package/es/Scroll/context.js +20 -13
- package/es/Scroll/fixedLength.js +33 -24
- package/es/Scroll/index.js +89 -55
- package/es/Scroll/styles/index.js +3 -4
- package/es/Select/BoxList.js +218 -188
- package/es/Select/BoxOption.js +64 -38
- package/es/Select/FlexBox.js +107 -75
- package/es/Select/FlexResult.js +65 -49
- package/es/Select/Input.js +137 -113
- package/es/Select/More.js +119 -118
- package/es/Select/Option.js +73 -52
- package/es/Select/OptionList.js +236 -198
- package/es/Select/OptionTree.js +111 -94
- package/es/Select/Result.js +294 -269
- package/es/Select/Select.js +523 -480
- package/es/Select/filter.js +221 -148
- package/es/Select/group.js +74 -45
- package/es/Select/index.d.ts +28 -19
- package/es/Select/index.js +32 -31
- package/es/Select/styles/index.js +3 -4
- package/es/Select/styles/select.less +1 -1
- package/es/Slider/Container.js +145 -132
- package/es/Slider/Indicator.js +28 -13
- package/es/Slider/Slider.js +132 -103
- package/es/Slider/index.js +5 -8
- package/es/Slider/styles/index.js +3 -4
- package/es/Slider/utils.js +26 -30
- package/es/Spin/Multiple.js +153 -109
- package/es/Spin/Simple.js +33 -22
- package/es/Spin/Spin.js +29 -29
- package/es/Spin/index.js +66 -84
- package/es/Spin/styles/index.js +27 -30
- package/es/Sticky/context.js +12 -10
- package/es/Sticky/index.js +255 -194
- package/es/Sticky/styles/index.js +1 -1
- package/es/Switch/Switch.js +2 -3
- package/es/Switch/index.js +8 -14
- package/es/Table/Checkbox.js +68 -39
- package/es/Table/CheckboxAll.js +121 -64
- package/es/Table/Colgroup.js +72 -47
- package/es/Table/Expand.js +63 -43
- package/es/Table/SeperateTable.js +596 -436
- package/es/Table/SimpleTable.js +215 -136
- package/es/Table/Sorter.js +83 -62
- package/es/Table/Table.js +157 -157
- package/es/Table/Tbody.js +240 -176
- package/es/Table/Td.js +169 -130
- package/es/Table/Thead.js +206 -177
- package/es/Table/Tr.js +249 -205
- package/es/Table/TreeExpand.js +151 -116
- package/es/Table/context.js +15 -15
- package/es/Table/fixedAuto.js +82 -59
- package/es/Table/index.d.ts +1 -1
- package/es/Table/index.js +309 -228
- package/es/Table/resizable.js +89 -56
- package/es/Table/select.js +238 -215
- package/es/Table/styles/index.js +3 -4
- package/es/Tabs/Header.js +203 -160
- package/es/Tabs/Link.js +46 -28
- package/es/Tabs/Panel.js +49 -33
- package/es/Tabs/Tab.js +97 -79
- package/es/Tabs/Tabs.js +211 -177
- package/es/Tabs/Wrapper.js +37 -17
- package/es/Tabs/index.js +7 -10
- package/es/Tabs/styles/index.js +3 -4
- package/es/Tag/Input.js +70 -54
- package/es/Tag/Tag.js +198 -152
- package/es/Tag/index.js +5 -8
- package/es/Tag/styles/index.js +3 -4
- package/es/Textarea/Textarea.js +139 -118
- package/es/Textarea/index.js +10 -19
- package/es/Tooltip/Container.js +140 -127
- package/es/Tooltip/events.js +49 -55
- package/es/Tooltip/index.js +5 -8
- package/es/Tooltip/styles/index.js +3 -4
- package/es/Transfer/Card.js +212 -177
- package/es/Transfer/Transfer.js +165 -153
- package/es/Transfer/btns.js +100 -71
- package/es/Transfer/context.js +2 -3
- package/es/Transfer/filter.js +65 -35
- package/es/Transfer/index.js +9 -13
- package/es/Transfer/item.js +66 -41
- package/es/Transfer/select.js +15 -16
- package/es/Transfer/styles/index.js +3 -4
- package/es/Tree/Checkbox.js +72 -50
- package/es/Tree/Content.js +136 -95
- package/es/Tree/List.js +82 -53
- package/es/Tree/Node.js +237 -202
- package/es/Tree/Root.js +23 -19
- package/es/Tree/Tree.js +262 -197
- package/es/Tree/index.js +6 -9
- package/es/Tree/styles/index.js +3 -4
- package/es/Tree/styles/tree.less +1 -1
- package/es/Tree/toggle.js +89 -51
- package/es/TreeSelect/Input.js +73 -60
- package/es/TreeSelect/Result.js +210 -169
- package/es/TreeSelect/TreeSelect.js +328 -313
- package/es/TreeSelect/datum.js +56 -44
- package/es/TreeSelect/filter.js +134 -96
- package/es/TreeSelect/index.d.ts +5 -3
- package/es/TreeSelect/index.js +15 -23
- package/es/TreeSelect/styles/index.js +3 -4
- package/es/TreeSelect/styles/treeSelect.less +4 -5
- package/es/TreeSelect/tiled.js +143 -106
- package/es/Upload/Dragger.js +63 -39
- package/es/Upload/Drop.js +79 -57
- package/es/Upload/File.js +61 -48
- package/es/Upload/FileInput.js +53 -40
- package/es/Upload/Image.js +158 -115
- package/es/Upload/ImageFile.js +63 -43
- package/es/Upload/ImageResult.js +141 -109
- package/es/Upload/Progress.js +117 -105
- package/es/Upload/RemoveConfirm.js +58 -42
- package/es/Upload/Result.js +73 -58
- package/es/Upload/Upload.js +649 -490
- package/es/Upload/accept.js +33 -13
- package/es/Upload/context.js +12 -10
- package/es/Upload/index.d.ts +5 -5
- package/es/Upload/index.js +16 -20
- package/es/Upload/request.js +48 -46
- package/es/Upload/styles/index.js +3 -4
- package/es/component.js +45 -24
- package/es/config.js +27 -19
- package/es/context/implementation.js +132 -94
- package/es/context/index.js +3 -4
- package/es/hoc/coin.js +118 -81
- package/es/hoc/config.js +31 -17
- package/es/hoc/delay.js +99 -55
- package/es/hoc/draggable.js +90 -80
- package/es/hoc/fetch.js +56 -33
- package/es/hoc/hidable.js +119 -98
- package/es/hoc/inputBorder.js +158 -158
- package/es/hoc/moveable.js +124 -96
- package/es/hoc/pagable.js +74 -55
- package/es/hoc/resizable.js +132 -100
- package/es/hoc/styles/index.js +7 -8
- package/es/hoc/trim.js +54 -32
- package/es/icons/Caret.js +14 -15
- package/es/icons/index.js +31 -85
- package/es/index.d.ts +58 -0
- package/es/index.js +58 -57
- package/es/locale/en_US.js +9 -30
- package/es/locale/index.js +13 -14
- package/es/locale/zh-CN.js +9 -17
- package/es/styles/expose.js +3 -4
- package/es/styles/expose.less +3 -0
- package/es/styles/index.js +1 -1
- package/es/styles/themes/cssvar.less +4 -1
- package/es/utils/accept.js +15 -12
- package/es/utils/classname.js +23 -12
- package/es/utils/cleanProps.js +9 -21
- package/es/utils/clone.js +34 -27
- package/es/utils/color.js +310 -276
- package/es/utils/css-accessors.js +94 -45
- package/es/utils/dom/detect.js +29 -29
- package/es/utils/dom/document.js +23 -19
- package/es/utils/dom/element.js +139 -105
- package/es/utils/dom/getDataset.js +9 -9
- package/es/utils/dom/isDOMElement.js +3 -5
- package/es/utils/dom/normalizeWheel.js +32 -28
- package/es/utils/dom/popContainer.js +12 -13
- package/es/utils/dom/popover.js +79 -59
- package/es/utils/dom/ready.js +5 -6
- package/es/utils/dom/translate.js +10 -12
- package/es/utils/errors.js +47 -28
- package/es/utils/expose.js +97 -58
- package/es/utils/flat.js +122 -107
- package/es/utils/func.js +38 -20
- package/es/utils/hash.js +24 -20
- package/es/utils/index.js +24 -49
- package/es/utils/is.js +91 -70
- package/es/utils/lazyload.js +104 -86
- package/es/utils/notification.js +34 -20
- package/es/utils/numbers.js +86 -22
- package/es/utils/objects.js +221 -140
- package/es/utils/proptypes.js +21 -34
- package/es/utils/shallowEqual.js +46 -42
- package/es/utils/strings.js +50 -32
- package/es/utils/transform.js +24 -9
- package/es/utils/tree.js +78 -63
- package/es/utils/uid.js +14 -17
- package/es/utils/validate/index.js +71 -50
- package/es/utils/validate/isJson.js +7 -10
- package/es/utils/validate/nullable.js +10 -9
- package/es/utils/validate/range.js +22 -19
- package/es/utils/validate/rangeLength.js +19 -16
- package/es/utils/validate/regExp.js +10 -10
- package/es/utils/validate/required.js +11 -8
- package/es/utils/validate/type.js +56 -59
- package/es/utils/vars-inject.js +3421 -4233
- package/lib/@types/common.d.ts +1 -1
- package/lib/AnimationList/AbsoluteList.js +89 -48
- package/lib/CardGroup/CardGroup.js +1 -1
- package/lib/DatePicker/Container.js +1 -1
- package/lib/DatePicker/index.d.ts +5 -13
- package/lib/DatePicker/utils.js +1 -1
- package/lib/Datum/List.js +54 -17
- package/lib/Form/Item.js +6 -3
- package/lib/Form/formContext.js +6 -3
- package/lib/Form/index.d.ts +40 -24
- package/lib/Form/index.js +1 -1
- package/lib/Form/inputable.js +63 -52
- package/lib/Form/styles/form.less +12 -0
- package/lib/Icon/index.d.ts +2 -3
- package/lib/Input/Number.js +3 -1
- package/lib/Modal/events.js +71 -13
- package/lib/Popover/styles/popover.less +3 -3
- package/lib/Select/BoxList.js +5 -3
- package/lib/Select/OptionList.js +5 -3
- package/lib/Select/OptionTree.js +5 -3
- package/lib/Select/Select.js +28 -8
- package/lib/Select/index.d.ts +28 -19
- package/lib/Select/styles/select.less +1 -1
- package/lib/Table/SeperateTable.js +26 -18
- package/lib/Table/Table.js +1 -2
- package/lib/Table/index.d.ts +1 -1
- package/lib/Tag/Tag.js +8 -2
- package/lib/Transfer/Transfer.js +13 -8
- package/lib/Transfer/btns.js +25 -14
- package/lib/Tree/styles/tree.less +1 -1
- package/lib/TreeSelect/TreeSelect.js +1 -1
- package/lib/TreeSelect/index.d.ts +5 -3
- package/lib/TreeSelect/styles/treeSelect.less +4 -5
- package/lib/Upload/ImageResult.js +14 -3
- package/lib/Upload/index.d.ts +5 -5
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/styles/expose.less +3 -0
- package/lib/styles/themes/cssvar.less +4 -1
- package/lib/utils/numbers.js +59 -0
- package/lib/utils/vars-inject.js +13 -0
- package/package.json +3 -2
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import { StandardProps } from '../@types/common'
|
|
3
|
+
|
|
4
|
+
export interface AlertProps extends StandardProps {
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Content, text or react component
|
|
8
|
+
*
|
|
9
|
+
* 内容,文字或react组件
|
|
10
|
+
*
|
|
11
|
+
* default: -
|
|
12
|
+
*/
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* When the type is true, the status icon is displayed according to the type property. If you need to display a custom icon, pass in ReactElement.
|
|
17
|
+
*
|
|
18
|
+
* 为true时,根据type属性显示状态图标。如果需要显示自定义图标,传入ReactElement。
|
|
19
|
+
*
|
|
20
|
+
* default: -
|
|
21
|
+
*/
|
|
22
|
+
icon?: React.ReactElement | boolean;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* The size for icon
|
|
26
|
+
*
|
|
27
|
+
* icon 的尺寸
|
|
28
|
+
*
|
|
29
|
+
* default: 14
|
|
30
|
+
*/
|
|
31
|
+
iconSize?: number;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* When onClose is empty, no close is displayed. If you need to close and do not need to handle callbacks, set it true.
|
|
35
|
+
*
|
|
36
|
+
* 当 onClose 为空时,不显示关闭。如果需要关闭又不需要处理回调,设置为true即可
|
|
37
|
+
*
|
|
38
|
+
* default: -
|
|
39
|
+
*/
|
|
40
|
+
onClose?: (() => void) | boolean;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* types
|
|
44
|
+
*
|
|
45
|
+
* 类型
|
|
46
|
+
*
|
|
47
|
+
* default: *warning*
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
type?: 'success' | 'info' | 'warning' | 'danger' | 'error';
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* show close button
|
|
54
|
+
*
|
|
55
|
+
* 是否隐藏关闭按钮
|
|
56
|
+
*
|
|
57
|
+
* default: false
|
|
58
|
+
*/
|
|
59
|
+
hideClose?: boolean,
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
declare class Alert extends React.Component<AlertProps> {}
|
|
63
|
+
export default Alert
|
|
@@ -71,8 +71,9 @@ function _default(List) {
|
|
|
71
71
|
if (!props.absolute) return (0, _assertThisInitialized2.default)(_this);
|
|
72
72
|
_this.lastStyle = {};
|
|
73
73
|
if (!root) initRoot();
|
|
74
|
+
_this.container = typeof _this.props.absolute === 'function' ? _this.props.absolute() : root;
|
|
74
75
|
_this.element = document.createElement('div');
|
|
75
|
-
|
|
76
|
+
if (_this.container) _this.container.appendChild(_this.element);
|
|
76
77
|
|
|
77
78
|
if (props.getResetPosition) {
|
|
78
79
|
props.getResetPosition(_this.resetPosition.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this))));
|
|
@@ -83,6 +84,17 @@ function _default(List) {
|
|
|
83
84
|
|
|
84
85
|
var _proto = AbsoluteList.prototype;
|
|
85
86
|
|
|
87
|
+
_proto.componentDidMount = function componentDidMount() {
|
|
88
|
+
if (this.props.absolute && !this.container) {
|
|
89
|
+
this.container = typeof this.props.absolute === 'function' ? this.props.absolute() : root;
|
|
90
|
+
this.container.appendChild(this.element);
|
|
91
|
+
|
|
92
|
+
if (this.props.focus) {
|
|
93
|
+
this.forceUpdate();
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
|
|
86
98
|
_proto.componentDidUpdate = function componentDidUpdate(prevProps) {
|
|
87
99
|
var _this2 = this;
|
|
88
100
|
|
|
@@ -96,11 +108,16 @@ function _default(List) {
|
|
|
96
108
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
97
109
|
var absolute = this.props.absolute;
|
|
98
110
|
if (!absolute) return;
|
|
99
|
-
|
|
111
|
+
|
|
112
|
+
if (this.container) {
|
|
113
|
+
this.container.removeChild(this.element);
|
|
114
|
+
}
|
|
100
115
|
};
|
|
101
116
|
|
|
102
117
|
_proto.getPosition = function getPosition(rect) {
|
|
103
|
-
var
|
|
118
|
+
var _this$props = this.props,
|
|
119
|
+
fixed = _this$props.fixed,
|
|
120
|
+
absolute = _this$props.absolute;
|
|
104
121
|
var position = this.props.position;
|
|
105
122
|
var rtl = (0, _config.isRTL)();
|
|
106
123
|
var style = {
|
|
@@ -120,17 +137,36 @@ function _default(List) {
|
|
|
120
137
|
position = (0, _strings.getRTLPosition)(position);
|
|
121
138
|
}
|
|
122
139
|
|
|
140
|
+
var containerScroll = _document.docScroll;
|
|
141
|
+
var containerRect = {
|
|
142
|
+
left: 0,
|
|
143
|
+
top: 0,
|
|
144
|
+
right: 0,
|
|
145
|
+
bottom: 0
|
|
146
|
+
};
|
|
147
|
+
var container = this.container;
|
|
148
|
+
|
|
149
|
+
if (typeof absolute === 'function' && container) {
|
|
150
|
+
containerRect = container.getBoundingClientRect();
|
|
151
|
+
containerScroll = {
|
|
152
|
+
left: container.scrollLeft,
|
|
153
|
+
top: container.scrollTop
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
this.containerRect = containerRect;
|
|
158
|
+
|
|
123
159
|
if (listPosition.includes(position)) {
|
|
124
|
-
style.left = rect.left +
|
|
160
|
+
style.left = rect.left - containerRect.left + containerScroll.left;
|
|
125
161
|
|
|
126
162
|
if (rtl) {
|
|
127
163
|
style.left += rect.width;
|
|
128
164
|
}
|
|
129
165
|
|
|
130
166
|
if (position === 'drop-down') {
|
|
131
|
-
style.top = rect.top + rect.height +
|
|
167
|
+
style.top = rect.top - containerRect.top + rect.height + containerScroll.top;
|
|
132
168
|
} else {
|
|
133
|
-
style.bottom = -(rect.top +
|
|
169
|
+
style.bottom = -(rect.top - containerRect.top + containerScroll.top);
|
|
134
170
|
}
|
|
135
171
|
} else if (pickerPosition.includes(position)) {
|
|
136
172
|
var _position$split = position.split('-'),
|
|
@@ -138,16 +174,16 @@ function _default(List) {
|
|
|
138
174
|
v = _position$split[1];
|
|
139
175
|
|
|
140
176
|
if (h === 'left') {
|
|
141
|
-
style.left = rect.left +
|
|
177
|
+
style.left = rect.left - containerRect.left + containerScroll.left;
|
|
142
178
|
} else {
|
|
143
|
-
style.left = rect.right +
|
|
179
|
+
style.left = rect.right - containerRect.right + containerScroll.left;
|
|
144
180
|
style.transform = 'translateX(-100%)';
|
|
145
181
|
}
|
|
146
182
|
|
|
147
183
|
if (v === 'bottom') {
|
|
148
|
-
style.top = rect.bottom +
|
|
184
|
+
style.top = rect.bottom - containerRect.bottom + containerScroll.top + PICKER_V_MARGIN;
|
|
149
185
|
} else {
|
|
150
|
-
style.top = rect.top +
|
|
186
|
+
style.top = rect.top - containerRect.top + containerScroll.top - PICKER_V_MARGIN;
|
|
151
187
|
style.transform = style.transform ? 'translate(-100%, -100%)' : 'translateY(-100%)';
|
|
152
188
|
}
|
|
153
189
|
}
|
|
@@ -156,10 +192,10 @@ function _default(List) {
|
|
|
156
192
|
};
|
|
157
193
|
|
|
158
194
|
_proto.getStyle = function getStyle() {
|
|
159
|
-
var _this$
|
|
160
|
-
parentElement = _this$
|
|
161
|
-
scrollElement = _this$
|
|
162
|
-
focus = _this$
|
|
195
|
+
var _this$props2 = this.props,
|
|
196
|
+
parentElement = _this$props2.parentElement,
|
|
197
|
+
scrollElement = _this$props2.scrollElement,
|
|
198
|
+
focus = _this$props2.focus;
|
|
163
199
|
var lazyResult = {
|
|
164
200
|
focus: focus,
|
|
165
201
|
style: this.lastStyle
|
|
@@ -190,9 +226,9 @@ function _default(List) {
|
|
|
190
226
|
};
|
|
191
227
|
|
|
192
228
|
_proto.resetPosition = function resetPosition(clean) {
|
|
193
|
-
var _this$
|
|
194
|
-
focus = _this$
|
|
195
|
-
parentElement = _this$
|
|
229
|
+
var _this$props3 = this.props,
|
|
230
|
+
focus = _this$props3.focus,
|
|
231
|
+
parentElement = _this$props3.parentElement;
|
|
196
232
|
if (!this.el || !focus || this.ajustdoc && !clean) return;
|
|
197
233
|
var pos = this.el.getBoundingClientRect();
|
|
198
234
|
var left = pos.left;
|
|
@@ -203,7 +239,11 @@ function _default(List) {
|
|
|
203
239
|
left = parentElement.getBoundingClientRect().left;
|
|
204
240
|
}
|
|
205
241
|
|
|
206
|
-
var
|
|
242
|
+
var containerRect = this.containerRect || {
|
|
243
|
+
left: 0,
|
|
244
|
+
width: 0
|
|
245
|
+
};
|
|
246
|
+
var overdoc = left - containerRect.left + pos.width > (containerRect.width || _document.docSize.width);
|
|
207
247
|
if (this.state.overdoc === overdoc) return;
|
|
208
248
|
this.ajustdoc = true;
|
|
209
249
|
this.setState({
|
|
@@ -216,21 +256,21 @@ function _default(List) {
|
|
|
216
256
|
};
|
|
217
257
|
|
|
218
258
|
_proto.renderList = function renderList() {
|
|
219
|
-
var _this$
|
|
220
|
-
parentElement = _this$
|
|
221
|
-
absolute = _this$
|
|
222
|
-
focus = _this$
|
|
223
|
-
rootClass = _this$
|
|
224
|
-
position = _this$
|
|
225
|
-
scrollLeft = _this$
|
|
226
|
-
scrollTop = _this$
|
|
227
|
-
scrollElement = _this$
|
|
228
|
-
_this$
|
|
229
|
-
style = _this$
|
|
230
|
-
zIndex = _this$
|
|
231
|
-
getResetPosition = _this$
|
|
232
|
-
ignore = _this$
|
|
233
|
-
props = (0, _objectWithoutPropertiesLoose2.default)(_this$
|
|
259
|
+
var _this$props4 = this.props,
|
|
260
|
+
parentElement = _this$props4.parentElement,
|
|
261
|
+
absolute = _this$props4.absolute,
|
|
262
|
+
focus = _this$props4.focus,
|
|
263
|
+
rootClass = _this$props4.rootClass,
|
|
264
|
+
position = _this$props4.position,
|
|
265
|
+
scrollLeft = _this$props4.scrollLeft,
|
|
266
|
+
scrollTop = _this$props4.scrollTop,
|
|
267
|
+
scrollElement = _this$props4.scrollElement,
|
|
268
|
+
_this$props4$style = _this$props4.style,
|
|
269
|
+
style = _this$props4$style === void 0 ? {} : _this$props4$style,
|
|
270
|
+
zIndex = _this$props4.zIndex,
|
|
271
|
+
getResetPosition = _this$props4.getResetPosition,
|
|
272
|
+
ignore = _this$props4.autoAdapt,
|
|
273
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_this$props4, ["parentElement", "absolute", "focus", "rootClass", "position", "scrollLeft", "scrollTop", "scrollElement", "style", "zIndex", "getResetPosition", "autoAdapt"]);
|
|
234
274
|
var parsed = parseInt(zIndex, 10);
|
|
235
275
|
if (!Number.isNaN(parsed)) style.zIndex = parsed;
|
|
236
276
|
var mergeStyle = Object.assign({}, style, this.state.overdoc ? {
|
|
@@ -257,20 +297,21 @@ function _default(List) {
|
|
|
257
297
|
return this.renderList();
|
|
258
298
|
}
|
|
259
299
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
300
|
+
if (!this.container) return null;
|
|
301
|
+
var _this$props5 = this.props,
|
|
302
|
+
parentElement = _this$props5.parentElement,
|
|
303
|
+
rootClass = _this$props5.rootClass,
|
|
304
|
+
absolute = _this$props5.absolute,
|
|
305
|
+
position = _this$props5.position,
|
|
306
|
+
scrollLeft = _this$props5.scrollLeft,
|
|
307
|
+
scrollTop = _this$props5.scrollTop,
|
|
308
|
+
scrollElement = _this$props5.scrollElement,
|
|
309
|
+
autoClass = _this$props5.autoClass,
|
|
310
|
+
zIndex = _this$props5.zIndex,
|
|
311
|
+
getResetPosition = _this$props5.getResetPosition,
|
|
312
|
+
value = _this$props5.value,
|
|
313
|
+
ignore = _this$props5.autoAdapt,
|
|
314
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_this$props5, ["parentElement", "rootClass", "absolute", "position", "scrollLeft", "scrollTop", "scrollElement", "autoClass", "zIndex", "getResetPosition", "value", "autoAdapt"]);
|
|
274
315
|
var mergeClass = (0, _classnames.default)((0, _styles.listClass)('absolute-wrapper'), rootClass, autoClass);
|
|
275
316
|
|
|
276
317
|
var _ref = props.focus ? this.getStyle() : {
|
|
@@ -302,7 +343,7 @@ function _default(List) {
|
|
|
302
343
|
// same width with parentElement
|
|
303
344
|
parentElement: _propTypes.default.object,
|
|
304
345
|
position: _propTypes.default.string,
|
|
305
|
-
absolute: _propTypes.default.bool,
|
|
346
|
+
absolute: _propTypes.default.oneOfType([_propTypes.default.bool, _propTypes.default.func]),
|
|
306
347
|
scrollElement: _propTypes.default.object,
|
|
307
348
|
scrollLeft: _propTypes.default.number,
|
|
308
349
|
scrollTop: _propTypes.default.number,
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import { StandardProps, ListItemStandardProps } from '../@types/common'
|
|
3
|
+
|
|
4
|
+
type ReactNode = React.ReactNode;
|
|
5
|
+
|
|
6
|
+
interface BreadcrumbData {
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* The click event
|
|
11
|
+
*
|
|
12
|
+
* 点击事件
|
|
13
|
+
*
|
|
14
|
+
* default: (event)=>void
|
|
15
|
+
*/
|
|
16
|
+
onClick?: (event: Event)=>void;
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Displayed content
|
|
21
|
+
*
|
|
22
|
+
* 显示内容
|
|
23
|
+
*
|
|
24
|
+
* default: null
|
|
25
|
+
*/
|
|
26
|
+
title?: string| ReactNode;
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Link address
|
|
31
|
+
*
|
|
32
|
+
* 链接地址,onClick 属性二选一
|
|
33
|
+
*
|
|
34
|
+
* default: null
|
|
35
|
+
*/
|
|
36
|
+
url?: string;
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
export interface BreadcrumbProps<Item> extends StandardProps, Pick<ListItemStandardProps<Item>, 'keygen'> {
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* The array of breadcrumb objects, see data
|
|
46
|
+
*
|
|
47
|
+
* 面包屑对象数组,见 data
|
|
48
|
+
*
|
|
49
|
+
* default: []
|
|
50
|
+
*/
|
|
51
|
+
data?: Array<Item>;
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* A breadcrumb separator which can be strings or custom elements
|
|
56
|
+
*
|
|
57
|
+
* 面包屑分隔符,可以是字符串或自定义的元素
|
|
58
|
+
*
|
|
59
|
+
* default: "/"
|
|
60
|
+
*/
|
|
61
|
+
separator?: string|ReactNode;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
declare class Breadcrumb<Item = BreadcrumbData> extends React.PureComponent<BreadcrumbProps<Item>, {}> {}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
export default Breadcrumb
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import { StandardProps, RegularAttributes } from '../@types/common'
|
|
3
|
+
|
|
4
|
+
export type ButtonType = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'link';
|
|
5
|
+
|
|
6
|
+
export interface ButtonProps extends StandardProps {
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* The content inside the button, can be a text icon, etc.
|
|
10
|
+
*
|
|
11
|
+
* 按钮里面的内容, 可以是文字图标等
|
|
12
|
+
*
|
|
13
|
+
* default: required
|
|
14
|
+
*/
|
|
15
|
+
children?: React.ReactNode;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Specifies the button should be disabled
|
|
19
|
+
*
|
|
20
|
+
* 禁用
|
|
21
|
+
*
|
|
22
|
+
* default: false
|
|
23
|
+
*/
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* If the href attribute is set, <a> will be used instead of <button>.
|
|
28
|
+
*
|
|
29
|
+
* 如果设置了 href 属性,将会用 <a> 代替 <button>
|
|
30
|
+
*
|
|
31
|
+
* default: -
|
|
32
|
+
*/
|
|
33
|
+
href?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* If present, target will be set onto <a> element.(Effective only when href is been set)
|
|
37
|
+
*
|
|
38
|
+
* 当设置了 href 属性时,target 会被设置到 <a> 元素上
|
|
39
|
+
*
|
|
40
|
+
* default: -
|
|
41
|
+
*/
|
|
42
|
+
target?: '_self' | '_blank' | '_parent' | '_top' | string;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* When outline is true, the background is transparent.
|
|
46
|
+
*
|
|
47
|
+
* outline 为 true 时,显示透明背景的按钮
|
|
48
|
+
*
|
|
49
|
+
* default: false
|
|
50
|
+
*/
|
|
51
|
+
outline?: boolean;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* size of button
|
|
55
|
+
*
|
|
56
|
+
* 按钮尺寸
|
|
57
|
+
*
|
|
58
|
+
* default: 'default'
|
|
59
|
+
*/
|
|
60
|
+
size?: RegularAttributes.Size;
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* type of button
|
|
65
|
+
*
|
|
66
|
+
* 按钮类型
|
|
67
|
+
*
|
|
68
|
+
* default: 'default'
|
|
69
|
+
*/
|
|
70
|
+
type?: ButtonType;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* text button
|
|
74
|
+
*
|
|
75
|
+
* 文字按钮,不展示边框和背景
|
|
76
|
+
*
|
|
77
|
+
* default: false
|
|
78
|
+
*/
|
|
79
|
+
text?: boolean;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* button click callback
|
|
83
|
+
*
|
|
84
|
+
* 按钮点击回调
|
|
85
|
+
*
|
|
86
|
+
* default: none
|
|
87
|
+
*/
|
|
88
|
+
onClick?: (e: MouseEvent) => void;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* For Button with only 2 Chinese characters, whether to insert a space between the two Chinese characters.
|
|
92
|
+
*
|
|
93
|
+
* 仅有2个汉字的按钮,是否在2个汉字中间插入空格
|
|
94
|
+
*
|
|
95
|
+
* default: false
|
|
96
|
+
*/
|
|
97
|
+
space?: boolean;
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* loading
|
|
101
|
+
*
|
|
102
|
+
* loading状态
|
|
103
|
+
*
|
|
104
|
+
* default: null
|
|
105
|
+
*/
|
|
106
|
+
loading?: boolean
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface ButtonGroupProps {
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* array of Button
|
|
113
|
+
*
|
|
114
|
+
* 由 Button 组成的 array
|
|
115
|
+
*
|
|
116
|
+
* default: required
|
|
117
|
+
*/
|
|
118
|
+
children?: React.ReactNode;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* same as Button
|
|
122
|
+
*
|
|
123
|
+
* 同 Button;如果 Button 和 Group 同时设置 size,以 Group 为准
|
|
124
|
+
*
|
|
125
|
+
* default: -
|
|
126
|
+
*/
|
|
127
|
+
size?: RegularAttributes.Size;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* same as Button
|
|
131
|
+
*
|
|
132
|
+
* 同 Button;如果 Button 未设置,使用此值
|
|
133
|
+
*
|
|
134
|
+
* default: -
|
|
135
|
+
*/
|
|
136
|
+
outline?: boolean;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* same as Button
|
|
140
|
+
*
|
|
141
|
+
* 同 Button;如果 Button 和 Group 同时设置 type,以 Group 为准
|
|
142
|
+
*
|
|
143
|
+
* default: -
|
|
144
|
+
*/
|
|
145
|
+
type?: ButtonType;
|
|
146
|
+
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
declare class ButtonGroup extends React.Component<ButtonGroupProps> {
|
|
151
|
+
render(): JSX.Element
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
declare class Button extends React.Component<ButtonProps> {
|
|
155
|
+
static Group: typeof ButtonGroup;
|
|
156
|
+
|
|
157
|
+
render(): JSX.Element
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export default Button
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import { ButtonProps } from '../Button/index'
|
|
3
|
+
import { RegularAttributes, StandardProps } from '../@types/common'
|
|
4
|
+
|
|
5
|
+
export interface CardProps extends StandardProps {
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Whether can be collapsed,'bottom' can collaps on bottom
|
|
9
|
+
*
|
|
10
|
+
* 是否可折叠,'bottom' 表示从下方点击折叠
|
|
11
|
+
*
|
|
12
|
+
* default: false
|
|
13
|
+
*/
|
|
14
|
+
collapsible?: boolean | 'bottom';
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Whether to be collapsed.
|
|
18
|
+
*
|
|
19
|
+
* 是否折叠,用于受控状态
|
|
20
|
+
*
|
|
21
|
+
* default: -
|
|
22
|
+
*/
|
|
23
|
+
collapsed?: boolean;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Initial collapsed state
|
|
27
|
+
*
|
|
28
|
+
* 初始折叠状态(仅在 collapsible 为 true 时有效)
|
|
29
|
+
*
|
|
30
|
+
* default: true
|
|
31
|
+
*/
|
|
32
|
+
defaultCollapsed?: boolean;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Callback when collapsed state changed
|
|
36
|
+
*
|
|
37
|
+
* 折叠状态改变时回调事件
|
|
38
|
+
*
|
|
39
|
+
* default: -
|
|
40
|
+
*/
|
|
41
|
+
onCollapse?: () => void;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Whether to show the shadow.'hover' - Display it when the mouse is over the element.true - Always show, false - Never show
|
|
45
|
+
*
|
|
46
|
+
* 是否显示阴影。'hover' - 鼠标移到元素上显示。true - 总是显示, false - 从不显示
|
|
47
|
+
*
|
|
48
|
+
* default: false
|
|
49
|
+
*/
|
|
50
|
+
shadow?: true | false | 'hover';
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Card.Accordion expand controlled key
|
|
54
|
+
*
|
|
55
|
+
* 手风琴下控制展开的值
|
|
56
|
+
*
|
|
57
|
+
* default: none
|
|
58
|
+
*/
|
|
59
|
+
id?: any;
|
|
60
|
+
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface CardHeaderProps extends StandardProps {
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* align
|
|
67
|
+
*
|
|
68
|
+
* 对齐方式
|
|
69
|
+
*
|
|
70
|
+
* default: none
|
|
71
|
+
*/
|
|
72
|
+
align?: RegularAttributes.Align;
|
|
73
|
+
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface CardBodyProps extends StandardProps {}
|
|
77
|
+
|
|
78
|
+
export interface CardFooterProps extends StandardProps {
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* align
|
|
82
|
+
*
|
|
83
|
+
* 对齐方式
|
|
84
|
+
*
|
|
85
|
+
* default: none
|
|
86
|
+
*/
|
|
87
|
+
align?: RegularAttributes.Align;
|
|
88
|
+
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface CardAccordionProps<T> {
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Active value. It is -1 when fully closed. Used in controlled state. be id while Card.id setted
|
|
95
|
+
*
|
|
96
|
+
* 打开的值,全关闭时为 null,用于受控状态。默认为索引,若Card设置id后则为id。
|
|
97
|
+
*
|
|
98
|
+
* default: none
|
|
99
|
+
*/
|
|
100
|
+
active?: T;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* The default active value for uncontrolled state, be id while Card.id setted
|
|
104
|
+
*
|
|
105
|
+
* 默认打开的值,用于非受控状态。默认为索引,若Card设置id后则为id。
|
|
106
|
+
*
|
|
107
|
+
* default: 0
|
|
108
|
+
*/
|
|
109
|
+
defaultActive?: T;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* The callback function when the panel is opened
|
|
113
|
+
*
|
|
114
|
+
* 面板打开回调
|
|
115
|
+
*
|
|
116
|
+
* default: none
|
|
117
|
+
*/
|
|
118
|
+
onChange?: () => void;
|
|
119
|
+
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface CardSubmitProps extends ButtonProps {
|
|
123
|
+
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
declare class CardSubmit extends React.Component<CardSubmitProps, {}> {
|
|
127
|
+
render(): JSX.Element;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
declare class CardAccordion<T> extends React.Component<CardAccordionProps<T>, {}> {
|
|
131
|
+
render(): JSX.Element;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
declare class CardFooter extends React.Component<CardFooterProps, {}> {
|
|
135
|
+
render(): JSX.Element;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
declare class CardBody extends React.Component<CardBodyProps, {}> {
|
|
139
|
+
render(): JSX.Element;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
declare class CardHeader extends React.Component<CardHeaderProps, {}> {
|
|
143
|
+
render(): JSX.Element;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
declare class Card extends React.Component<CardProps, {}> {
|
|
148
|
+
static Header: typeof CardHeader;
|
|
149
|
+
|
|
150
|
+
static Body: typeof CardBody;
|
|
151
|
+
|
|
152
|
+
static Footer: typeof CardFooter;
|
|
153
|
+
|
|
154
|
+
static Accordion: typeof CardAccordion;
|
|
155
|
+
|
|
156
|
+
static Submit: typeof CardSubmit;
|
|
157
|
+
|
|
158
|
+
render(): JSX.Element;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export default Card
|
|
@@ -112,7 +112,7 @@ CardGroup.defaultProps = {
|
|
|
112
112
|
};
|
|
113
113
|
CardGroup.propTypes = {
|
|
114
114
|
style: _propTypes.default.object,
|
|
115
|
-
children: _propTypes.default.array,
|
|
115
|
+
children: _propTypes.default.oneOfType([_propTypes.default.array, _propTypes.default.node]),
|
|
116
116
|
className: _propTypes.default.string,
|
|
117
117
|
height: _propTypes.default.number,
|
|
118
118
|
cardWidth: _propTypes.default.number,
|