doui-react 1.0.0
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/LICENSE +21 -0
- package/README.md +28 -0
- package/es/api/component/class-name.d.ts +3 -0
- package/es/api/component/class-name.js +15 -0
- package/es/api/component/common.d.ts +22 -0
- package/es/api/component/common.js +144 -0
- package/es/api/component/dom.d.ts +2 -0
- package/es/api/component/dom.js +7 -0
- package/es/api/component/global-style.d.ts +3 -0
- package/es/api/component/global-style.js +16 -0
- package/es/api/component/index.d.ts +9 -0
- package/es/api/component/index.js +9 -0
- package/es/api/component/react-dom.d.ts +3 -0
- package/es/api/component/react-dom.js +72 -0
- package/es/api/component/sort.d.ts +2 -0
- package/es/api/component/sort.js +20 -0
- package/es/api/component/style.d.ts +4 -0
- package/es/api/component/style.js +33 -0
- package/es/api/component/url.d.ts +33 -0
- package/es/api/component/url.js +126 -0
- package/es/api/component/validate-input.d.ts +8 -0
- package/es/api/component/validate-input.js +16 -0
- package/es/api/index.d.ts +2 -0
- package/es/api/index.js +2 -0
- package/es/api/type/common.d.ts +24 -0
- package/es/api/type/common.js +1 -0
- package/es/api/type/index.d.ts +5 -0
- package/es/api/type/index.js +2 -0
- package/es/button/component/index.d.ts +2 -0
- package/es/button/component/index.js +87 -0
- package/es/button/index.d.ts +2 -0
- package/es/button/index.js +2 -0
- package/es/button/type/index.d.ts +31 -0
- package/es/button/type/index.js +1 -0
- package/es/checkbox/component/checkbox-group.d.ts +2 -0
- package/es/checkbox/component/checkbox-group.js +66 -0
- package/es/checkbox/component/checkbox.d.ts +2 -0
- package/es/checkbox/component/checkbox.js +8 -0
- package/es/checkbox/component/index.d.ts +2 -0
- package/es/checkbox/component/index.js +10 -0
- package/es/checkbox/component/use-checkbox.d.ts +12 -0
- package/es/checkbox/component/use-checkbox.js +43 -0
- package/es/checkbox/component/utils.d.ts +13 -0
- package/es/checkbox/component/utils.js +40 -0
- package/es/checkbox/index.d.ts +2 -0
- package/es/checkbox/index.js +2 -0
- package/es/checkbox/style/index.d.ts +5 -0
- package/es/checkbox/style/index.js +11 -0
- package/es/checkbox/type/index.d.ts +18 -0
- package/es/checkbox/type/index.js +1 -0
- package/es/config/index.d.ts +0 -0
- package/es/config/index.js +0 -0
- package/es/date-picker/component/index.d.ts +3 -0
- package/es/date-picker/component/index.js +38 -0
- package/es/date-picker/index.d.ts +2 -0
- package/es/date-picker/index.js +2 -0
- package/es/date-picker/style/index.d.ts +4 -0
- package/es/date-picker/style/index.js +7 -0
- package/es/date-picker/type/index.d.ts +21 -0
- package/es/date-picker/type/index.js +1 -0
- package/es/empty/component/index.d.ts +2 -0
- package/es/empty/component/index.js +17 -0
- package/es/empty/index.d.ts +2 -0
- package/es/empty/index.js +2 -0
- package/es/empty/type/index.d.ts +9 -0
- package/es/empty/type/index.js +1 -0
- package/es/form/component/constant.d.ts +15 -0
- package/es/form/component/constant.js +15 -0
- package/es/form/component/form-content.d.ts +10 -0
- package/es/form/component/form-content.js +280 -0
- package/es/form/component/form-item-map.d.ts +40 -0
- package/es/form/component/form-item-map.js +120 -0
- package/es/form/component/form-item.d.ts +7 -0
- package/es/form/component/form-item.js +219 -0
- package/es/form/component/form-list.d.ts +36 -0
- package/es/form/component/form-list.js +190 -0
- package/es/form/component/form.d.ts +2 -0
- package/es/form/component/form.js +40 -0
- package/es/form/component/index.d.ts +15 -0
- package/es/form/component/index.js +14 -0
- package/es/form/component/submit-button.d.ts +2 -0
- package/es/form/component/submit-button.js +47 -0
- package/es/form/component/use-debug.d.ts +1 -0
- package/es/form/component/use-debug.js +16 -0
- package/es/form/component/utils.d.ts +95 -0
- package/es/form/component/utils.js +435 -0
- package/es/form/component/validator-item.d.ts +7 -0
- package/es/form/component/validator-item.js +53 -0
- package/es/form/hook/index.d.ts +16 -0
- package/es/form/hook/index.js +116 -0
- package/es/form/hook/list-provider.d.ts +6 -0
- package/es/form/hook/list-provider.js +16 -0
- package/es/form/hook/provider.d.ts +23 -0
- package/es/form/hook/provider.js +21 -0
- package/es/form/hook/use-form.d.ts +2 -0
- package/es/form/hook/use-form.js +335 -0
- package/es/form/index.d.ts +3 -0
- package/es/form/index.js +3 -0
- package/es/form/style/form-item.d.ts +3 -0
- package/es/form/style/form-item.js +38 -0
- package/es/form/style/index.d.ts +7 -0
- package/es/form/style/index.js +13 -0
- package/es/form/type/form-item.d.ts +141 -0
- package/es/form/type/form-item.js +1 -0
- package/es/form/type/form-list.d.ts +91 -0
- package/es/form/type/form-list.js +1 -0
- package/es/form/type/index.d.ts +134 -0
- package/es/form/type/index.js +3 -0
- package/es/grid/component/index.d.ts +2 -0
- package/es/grid/component/index.js +76 -0
- package/es/grid/component/pagination.d.ts +50 -0
- package/es/grid/component/pagination.js +54 -0
- package/es/grid/component/utils.d.ts +2 -0
- package/es/grid/component/utils.js +7 -0
- package/es/grid/index.d.ts +2 -0
- package/es/grid/index.js +2 -0
- package/es/grid/style/index.d.ts +11 -0
- package/es/grid/style/index.js +26 -0
- package/es/grid/type/index.d.ts +67 -0
- package/es/grid/type/index.js +1 -0
- package/es/highlight-text/component/index.d.ts +2 -0
- package/es/highlight-text/component/index.js +71 -0
- package/es/highlight-text/index.d.ts +2 -0
- package/es/highlight-text/index.js +2 -0
- package/es/highlight-text/style/index.d.ts +4 -0
- package/es/highlight-text/style/index.js +7 -0
- package/es/highlight-text/type/index.d.ts +18 -0
- package/es/highlight-text/type/index.js +1 -0
- package/es/hooks/hook/common.d.ts +1 -0
- package/es/hooks/hook/common.js +12 -0
- package/es/hooks/hook/index.d.ts +7 -0
- package/es/hooks/hook/index.js +7 -0
- package/es/hooks/hook/use-debounce.d.ts +4 -0
- package/es/hooks/hook/use-debounce.js +23 -0
- package/es/hooks/hook/use-deep.d.ts +9 -0
- package/es/hooks/hook/use-deep.js +64 -0
- package/es/hooks/hook/use-fetch.d.ts +8 -0
- package/es/hooks/hook/use-fetch.js +164 -0
- package/es/hooks/hook/use-list-operation.d.ts +5 -0
- package/es/hooks/hook/use-list-operation.js +70 -0
- package/es/hooks/hook/use-loading.d.ts +7 -0
- package/es/hooks/hook/use-loading.js +59 -0
- package/es/hooks/hook/use-window-resize.d.ts +5 -0
- package/es/hooks/hook/use-window-resize.js +16 -0
- package/es/hooks/index.d.ts +2 -0
- package/es/hooks/index.js +2 -0
- package/es/hooks/type/index.d.ts +2 -0
- package/es/hooks/type/index.js +2 -0
- package/es/hooks/type/use-fetch.d.ts +31 -0
- package/es/hooks/type/use-fetch.js +1 -0
- package/es/hooks/type/use-list-operation.d.ts +34 -0
- package/es/hooks/type/use-list-operation.js +1 -0
- package/es/icon/component/down.d.ts +2 -0
- package/es/icon/component/down.js +42 -0
- package/es/icon/component/index.d.ts +2 -0
- package/es/icon/component/index.js +5 -0
- package/es/icon/component/up.d.ts +2 -0
- package/es/icon/component/up.js +41 -0
- package/es/icon/hook/index.d.ts +477 -0
- package/es/icon/hook/index.js +60 -0
- package/es/icon/index.d.ts +2 -0
- package/es/icon/index.js +2 -0
- package/es/icon/style/index.d.ts +4 -0
- package/es/icon/style/index.js +10 -0
- package/es/icon/type/index.d.ts +14 -0
- package/es/icon/type/index.js +1 -0
- package/es/index.d.ts +25 -0
- package/es/index.js +25 -0
- package/es/input/component/index.d.ts +12 -0
- package/es/input/component/index.js +25 -0
- package/es/input/component/input.d.ts +2 -0
- package/es/input/component/input.js +8 -0
- package/es/input/component/number.d.ts +4 -0
- package/es/input/component/number.js +50 -0
- package/es/input/component/password.d.ts +2 -0
- package/es/input/component/password.js +8 -0
- package/es/input/component/text-area.d.ts +2 -0
- package/es/input/component/text-area.js +16 -0
- package/es/input/component/utils.d.ts +15 -0
- package/es/input/component/utils.js +102 -0
- package/es/input/index.d.ts +2 -0
- package/es/input/index.js +2 -0
- package/es/input/style/index.d.ts +6 -0
- package/es/input/style/index.js +11 -0
- package/es/input/type/index.d.ts +41 -0
- package/es/input/type/index.js +1 -0
- package/es/modal-prompt/component/index.d.ts +5 -0
- package/es/modal-prompt/component/index.js +60 -0
- package/es/modal-prompt/component/open-loading.d.ts +2 -0
- package/es/modal-prompt/component/open-loading.js +21 -0
- package/es/modal-prompt/component/utils.d.ts +4 -0
- package/es/modal-prompt/component/utils.js +49 -0
- package/es/modal-prompt/index.d.ts +2 -0
- package/es/modal-prompt/index.js +2 -0
- package/es/modal-prompt/style/index.d.ts +5 -0
- package/es/modal-prompt/style/index.js +9 -0
- package/es/modal-prompt/type/index.d.ts +36 -0
- package/es/modal-prompt/type/index.js +1 -0
- package/es/open-modal/component/constant.d.ts +1 -0
- package/es/open-modal/component/constant.js +3 -0
- package/es/open-modal/component/footer.d.ts +2 -0
- package/es/open-modal/component/footer.js +34 -0
- package/es/open-modal/component/index.d.ts +4 -0
- package/es/open-modal/component/index.js +9 -0
- package/es/open-modal/component/modal.d.ts +10 -0
- package/es/open-modal/component/modal.js +37 -0
- package/es/open-modal/component/title.d.ts +6 -0
- package/es/open-modal/component/title.js +12 -0
- package/es/open-modal/component/use-modal.d.ts +14 -0
- package/es/open-modal/component/use-modal.js +177 -0
- package/es/open-modal/component/utils.d.ts +11 -0
- package/es/open-modal/component/utils.js +109 -0
- package/es/open-modal/hook/index.d.ts +7 -0
- package/es/open-modal/hook/index.js +17 -0
- package/es/open-modal/hook/use-modal.d.ts +6 -0
- package/es/open-modal/hook/use-modal.js +27 -0
- package/es/open-modal/index.d.ts +3 -0
- package/es/open-modal/index.js +3 -0
- package/es/open-modal/style/index.d.ts +5 -0
- package/es/open-modal/style/index.js +18 -0
- package/es/open-modal/style/wrap.d.ts +2 -0
- package/es/open-modal/style/wrap.js +6 -0
- package/es/open-modal/type/index.d.ts +91 -0
- package/es/open-modal/type/index.js +1 -0
- package/es/portal/component/index.d.ts +2 -0
- package/es/portal/component/index.js +40 -0
- package/es/portal/index.d.ts +2 -0
- package/es/portal/index.js +2 -0
- package/es/portal/type/index.d.ts +13 -0
- package/es/portal/type/index.js +1 -0
- package/es/radio/component/abstract-box.d.ts +380 -0
- package/es/radio/component/abstract-box.js +90 -0
- package/es/radio/component/index.d.ts +2 -0
- package/es/radio/component/index.js +10 -0
- package/es/radio/component/radio.d.ts +2 -0
- package/es/radio/component/radio.js +10 -0
- package/es/radio/component/redio-group.d.ts +2 -0
- package/es/radio/component/redio-group.js +50 -0
- package/es/radio/component/use-box-options.d.ts +6 -0
- package/es/radio/component/use-box-options.js +20 -0
- package/es/radio/component/use-radio.d.ts +23 -0
- package/es/radio/component/use-radio.js +21 -0
- package/es/radio/component/utils.d.ts +7 -0
- package/es/radio/component/utils.js +25 -0
- package/es/radio/index.d.ts +2 -0
- package/es/radio/index.js +2 -0
- package/es/radio/style/index.d.ts +7 -0
- package/es/radio/style/index.js +15 -0
- package/es/radio/type/index.d.ts +32 -0
- package/es/radio/type/index.js +1 -0
- package/es/select/component/constant.d.ts +1 -0
- package/es/select/component/constant.js +1 -0
- package/es/select/component/index.d.ts +3 -0
- package/es/select/component/index.js +16 -0
- package/es/select/component/loading.d.ts +1 -0
- package/es/select/component/loading.js +13 -0
- package/es/select/component/use-select-options.d.ts +11 -0
- package/es/select/component/use-select-options.js +80 -0
- package/es/select/component/use-select.d.ts +2 -0
- package/es/select/component/use-select.js +136 -0
- package/es/select/component/utils.d.ts +14 -0
- package/es/select/component/utils.js +142 -0
- package/es/select/index.d.ts +2 -0
- package/es/select/index.js +2 -0
- package/es/select/style/index.d.ts +4 -0
- package/es/select/style/index.js +7 -0
- package/es/select/type/index.d.ts +105 -0
- package/es/select/type/index.js +1 -0
- package/es/stack/component/center-stack.d.ts +2 -0
- package/es/stack/component/center-stack.js +32 -0
- package/es/stack/component/h-stack.d.ts +2 -0
- package/es/stack/component/h-stack.js +39 -0
- package/es/stack/component/index.d.ts +3 -0
- package/es/stack/component/index.js +3 -0
- package/es/stack/component/v-stack.d.ts +2 -0
- package/es/stack/component/v-stack.js +36 -0
- package/es/stack/index.d.ts +2 -0
- package/es/stack/index.js +2 -0
- package/es/stack/style/index.d.ts +21 -0
- package/es/stack/style/index.js +49 -0
- package/es/stack/type/index.d.ts +54 -0
- package/es/stack/type/index.js +1 -0
- package/es/switch/component/index.d.ts +2 -0
- package/es/switch/component/index.js +60 -0
- package/es/switch/index.d.ts +2 -0
- package/es/switch/index.js +2 -0
- package/es/switch/style/index.d.ts +5 -0
- package/es/switch/style/index.js +13 -0
- package/es/switch/type/index.d.ts +27 -0
- package/es/switch/type/index.js +1 -0
- package/es/table/component/action-button.d.ts +2 -0
- package/es/table/component/action-button.js +95 -0
- package/es/table/component/actions.d.ts +2 -0
- package/es/table/component/actions.js +35 -0
- package/es/table/component/constant.d.ts +1 -0
- package/es/table/component/constant.js +5 -0
- package/es/table/component/editor.d.ts +2 -0
- package/es/table/component/editor.js +35 -0
- package/es/table/component/filter.d.ts +3 -0
- package/es/table/component/filter.js +55 -0
- package/es/table/component/index.d.ts +7 -0
- package/es/table/component/index.js +4 -0
- package/es/table/component/link.d.ts +2 -0
- package/es/table/component/link.js +20 -0
- package/es/table/component/sort.d.ts +6 -0
- package/es/table/component/sort.js +17 -0
- package/es/table/component/switch.d.ts +2 -0
- package/es/table/component/switch.js +27 -0
- package/es/table/component/table-body.d.ts +6 -0
- package/es/table/component/table-body.js +88 -0
- package/es/table/component/table.d.ts +10 -0
- package/es/table/component/table.js +235 -0
- package/es/table/component/time.d.ts +2 -0
- package/es/table/component/time.js +12 -0
- package/es/table/component/utils.d.ts +120 -0
- package/es/table/component/utils.js +222 -0
- package/es/table/component/wrapper.d.ts +6 -0
- package/es/table/component/wrapper.js +30 -0
- package/es/table/hook/index.d.ts +7 -0
- package/es/table/hook/index.js +17 -0
- package/es/table/hook/search.d.ts +5 -0
- package/es/table/hook/search.js +131 -0
- package/es/table/index.d.ts +3 -0
- package/es/table/index.js +3 -0
- package/es/table/style/index.d.ts +9 -0
- package/es/table/style/index.js +16 -0
- package/es/table/type/action.d.ts +48 -0
- package/es/table/type/action.js +1 -0
- package/es/table/type/column.d.ts +110 -0
- package/es/table/type/column.js +1 -0
- package/es/table/type/index.d.ts +113 -0
- package/es/table/type/index.js +11 -0
- package/es/tabs/component/constant.d.ts +2 -0
- package/es/tabs/component/constant.js +2 -0
- package/es/tabs/component/index.d.ts +2 -0
- package/es/tabs/component/index.js +18 -0
- package/es/tabs/component/utils.d.ts +24 -0
- package/es/tabs/component/utils.js +55 -0
- package/es/tabs/index.d.ts +2 -0
- package/es/tabs/index.js +2 -0
- package/es/tabs/style/index.d.ts +5 -0
- package/es/tabs/style/index.js +10 -0
- package/es/tabs/type/index.d.ts +20 -0
- package/es/tabs/type/index.js +1 -0
- package/es/text/component/index.d.ts +3 -0
- package/es/text/component/index.js +57 -0
- package/es/text/component/use-text.d.ts +4 -0
- package/es/text/component/use-text.js +24 -0
- package/es/text/component/utils.d.ts +3 -0
- package/es/text/component/utils.js +9 -0
- package/es/text/index.d.ts +2 -0
- package/es/text/index.js +2 -0
- package/es/text/style/index.d.ts +5 -0
- package/es/text/style/index.js +8 -0
- package/es/text/type/index.d.ts +19 -0
- package/es/text/type/index.js +1 -0
- package/es/tooltip/component/index.d.ts +48 -0
- package/es/tooltip/component/index.js +19 -0
- package/es/tooltip/index.d.ts +2 -0
- package/es/tooltip/index.js +2 -0
- package/es/tooltip/type/index.d.ts +8 -0
- package/es/tooltip/type/index.js +1 -0
- package/es/tree/component/index.d.ts +2 -0
- package/es/tree/component/index.js +23 -0
- package/es/tree/component/utils.d.ts +1 -0
- package/es/tree/component/utils.js +3 -0
- package/es/tree/index.d.ts +2 -0
- package/es/tree/index.js +2 -0
- package/es/tree/style/index.d.ts +4 -0
- package/es/tree/style/index.js +7 -0
- package/es/tree/type/index.d.ts +2 -0
- package/es/tree/type/index.js +1 -0
- package/es/tree-select/component/index.d.ts +2 -0
- package/es/tree-select/component/index.js +15 -0
- package/es/tree-select/component/use-tree-select.d.ts +2 -0
- package/es/tree-select/component/use-tree-select.js +59 -0
- package/es/tree-select/index.d.ts +2 -0
- package/es/tree-select/index.js +2 -0
- package/es/tree-select/style/index.d.ts +5 -0
- package/es/tree-select/style/index.js +15 -0
- package/es/tree-select/type/index.d.ts +23 -0
- package/es/tree-select/type/index.js +1 -0
- package/es/virtual-list/component/index.d.ts +2 -0
- package/es/virtual-list/component/index.js +28 -0
- package/es/virtual-list/index.d.ts +2 -0
- package/es/virtual-list/index.js +2 -0
- package/es/virtual-list/type/index.d.ts +17 -0
- package/es/virtual-list/type/index.js +1 -0
- package/lib/api/component/class-name.d.ts +3 -0
- package/lib/api/component/class-name.js +23 -0
- package/lib/api/component/common.d.ts +22 -0
- package/lib/api/component/common.js +163 -0
- package/lib/api/component/dom.d.ts +2 -0
- package/lib/api/component/dom.js +14 -0
- package/lib/api/component/global-style.d.ts +3 -0
- package/lib/api/component/global-style.js +23 -0
- package/lib/api/component/index.d.ts +9 -0
- package/lib/api/component/index.js +104 -0
- package/lib/api/component/react-dom.d.ts +3 -0
- package/lib/api/component/react-dom.js +80 -0
- package/lib/api/component/sort.d.ts +2 -0
- package/lib/api/component/sort.js +28 -0
- package/lib/api/component/style.d.ts +4 -0
- package/lib/api/component/style.js +43 -0
- package/lib/api/component/url.d.ts +33 -0
- package/lib/api/component/url.js +133 -0
- package/lib/api/component/validate-input.d.ts +8 -0
- package/lib/api/component/validate-input.js +24 -0
- package/lib/api/index.d.ts +2 -0
- package/lib/api/index.js +27 -0
- package/lib/api/type/common.d.ts +24 -0
- package/lib/api/type/common.js +5 -0
- package/lib/api/type/index.d.ts +5 -0
- package/lib/api/type/index.js +16 -0
- package/lib/button/component/index.d.ts +2 -0
- package/lib/button/component/index.js +94 -0
- package/lib/button/index.d.ts +2 -0
- package/lib/button/index.js +27 -0
- package/lib/button/type/index.d.ts +31 -0
- package/lib/button/type/index.js +5 -0
- package/lib/checkbox/component/checkbox-group.d.ts +2 -0
- package/lib/checkbox/component/checkbox-group.js +73 -0
- package/lib/checkbox/component/checkbox.d.ts +2 -0
- package/lib/checkbox/component/checkbox.js +15 -0
- package/lib/checkbox/component/index.d.ts +2 -0
- package/lib/checkbox/component/index.js +17 -0
- package/lib/checkbox/component/use-checkbox.d.ts +12 -0
- package/lib/checkbox/component/use-checkbox.js +50 -0
- package/lib/checkbox/component/utils.d.ts +13 -0
- package/lib/checkbox/component/utils.js +47 -0
- package/lib/checkbox/index.d.ts +2 -0
- package/lib/checkbox/index.js +27 -0
- package/lib/checkbox/style/index.d.ts +5 -0
- package/lib/checkbox/style/index.js +18 -0
- package/lib/checkbox/type/index.d.ts +18 -0
- package/lib/checkbox/type/index.js +5 -0
- package/lib/config/index.d.ts +0 -0
- package/lib/config/index.js +1 -0
- package/lib/date-picker/component/index.d.ts +3 -0
- package/lib/date-picker/component/index.js +46 -0
- package/lib/date-picker/index.d.ts +2 -0
- package/lib/date-picker/index.js +27 -0
- package/lib/date-picker/style/index.d.ts +4 -0
- package/lib/date-picker/style/index.js +14 -0
- package/lib/date-picker/type/index.d.ts +21 -0
- package/lib/date-picker/type/index.js +5 -0
- package/lib/empty/component/index.d.ts +2 -0
- package/lib/empty/component/index.js +24 -0
- package/lib/empty/index.d.ts +2 -0
- package/lib/empty/index.js +27 -0
- package/lib/empty/type/index.d.ts +9 -0
- package/lib/empty/type/index.js +5 -0
- package/lib/form/component/constant.d.ts +15 -0
- package/lib/form/component/constant.js +21 -0
- package/lib/form/component/form-content.d.ts +10 -0
- package/lib/form/component/form-content.js +288 -0
- package/lib/form/component/form-item-map.d.ts +40 -0
- package/lib/form/component/form-item-map.js +128 -0
- package/lib/form/component/form-item.d.ts +7 -0
- package/lib/form/component/form-item.js +227 -0
- package/lib/form/component/form-list.d.ts +36 -0
- package/lib/form/component/form-list.js +201 -0
- package/lib/form/component/form.d.ts +2 -0
- package/lib/form/component/form.js +47 -0
- package/lib/form/component/index.d.ts +15 -0
- package/lib/form/component/index.js +20 -0
- package/lib/form/component/submit-button.d.ts +2 -0
- package/lib/form/component/submit-button.js +54 -0
- package/lib/form/component/use-debug.d.ts +1 -0
- package/lib/form/component/use-debug.js +22 -0
- package/lib/form/component/utils.d.ts +95 -0
- package/lib/form/component/utils.js +467 -0
- package/lib/form/component/validator-item.d.ts +7 -0
- package/lib/form/component/validator-item.js +60 -0
- package/lib/form/hook/index.d.ts +16 -0
- package/lib/form/hook/index.js +163 -0
- package/lib/form/hook/list-provider.d.ts +6 -0
- package/lib/form/hook/list-provider.js +24 -0
- package/lib/form/hook/provider.d.ts +23 -0
- package/lib/form/hook/provider.js +30 -0
- package/lib/form/hook/use-form.d.ts +2 -0
- package/lib/form/hook/use-form.js +342 -0
- package/lib/form/index.d.ts +3 -0
- package/lib/form/index.js +38 -0
- package/lib/form/style/form-item.d.ts +3 -0
- package/lib/form/style/form-item.js +46 -0
- package/lib/form/style/index.d.ts +7 -0
- package/lib/form/style/index.js +32 -0
- package/lib/form/type/form-item.d.ts +141 -0
- package/lib/form/type/form-item.js +5 -0
- package/lib/form/type/form-list.d.ts +91 -0
- package/lib/form/type/form-list.js +5 -0
- package/lib/form/type/index.d.ts +134 -0
- package/lib/form/type/index.js +27 -0
- package/lib/grid/component/index.d.ts +2 -0
- package/lib/grid/component/index.js +83 -0
- package/lib/grid/component/pagination.d.ts +50 -0
- package/lib/grid/component/pagination.js +62 -0
- package/lib/grid/component/utils.d.ts +2 -0
- package/lib/grid/component/utils.js +14 -0
- package/lib/grid/index.d.ts +2 -0
- package/lib/grid/index.js +27 -0
- package/lib/grid/style/index.d.ts +11 -0
- package/lib/grid/style/index.js +33 -0
- package/lib/grid/type/index.d.ts +67 -0
- package/lib/grid/type/index.js +5 -0
- package/lib/highlight-text/component/index.d.ts +2 -0
- package/lib/highlight-text/component/index.js +78 -0
- package/lib/highlight-text/index.d.ts +2 -0
- package/lib/highlight-text/index.js +27 -0
- package/lib/highlight-text/style/index.d.ts +4 -0
- package/lib/highlight-text/style/index.js +14 -0
- package/lib/highlight-text/type/index.d.ts +18 -0
- package/lib/highlight-text/type/index.js +5 -0
- package/lib/hooks/hook/common.d.ts +1 -0
- package/lib/hooks/hook/common.js +18 -0
- package/lib/hooks/hook/index.d.ts +7 -0
- package/lib/hooks/hook/index.js +82 -0
- package/lib/hooks/hook/use-debounce.d.ts +4 -0
- package/lib/hooks/hook/use-debounce.js +32 -0
- package/lib/hooks/hook/use-deep.d.ts +9 -0
- package/lib/hooks/hook/use-deep.js +76 -0
- package/lib/hooks/hook/use-fetch.d.ts +8 -0
- package/lib/hooks/hook/use-fetch.js +171 -0
- package/lib/hooks/hook/use-list-operation.d.ts +5 -0
- package/lib/hooks/hook/use-list-operation.js +80 -0
- package/lib/hooks/hook/use-loading.d.ts +7 -0
- package/lib/hooks/hook/use-loading.js +66 -0
- package/lib/hooks/hook/use-window-resize.d.ts +5 -0
- package/lib/hooks/hook/use-window-resize.js +22 -0
- package/lib/hooks/index.d.ts +2 -0
- package/lib/hooks/index.js +27 -0
- package/lib/hooks/type/index.d.ts +2 -0
- package/lib/hooks/type/index.js +27 -0
- package/lib/hooks/type/use-fetch.d.ts +31 -0
- package/lib/hooks/type/use-fetch.js +5 -0
- package/lib/hooks/type/use-list-operation.d.ts +34 -0
- package/lib/hooks/type/use-list-operation.js +5 -0
- package/lib/icon/component/down.d.ts +2 -0
- package/lib/icon/component/down.js +50 -0
- package/lib/icon/component/index.d.ts +2 -0
- package/lib/icon/component/index.js +27 -0
- package/lib/icon/component/up.d.ts +2 -0
- package/lib/icon/component/up.js +49 -0
- package/lib/icon/hook/index.d.ts +477 -0
- package/lib/icon/hook/index.js +67 -0
- package/lib/icon/index.d.ts +2 -0
- package/lib/icon/index.js +27 -0
- package/lib/icon/style/index.d.ts +4 -0
- package/lib/icon/style/index.js +17 -0
- package/lib/icon/type/index.d.ts +14 -0
- package/lib/icon/type/index.js +5 -0
- package/lib/index.d.ts +25 -0
- package/lib/index.js +345 -0
- package/lib/input/component/index.d.ts +12 -0
- package/lib/input/component/index.js +33 -0
- package/lib/input/component/input.d.ts +2 -0
- package/lib/input/component/input.js +15 -0
- package/lib/input/component/number.d.ts +4 -0
- package/lib/input/component/number.js +57 -0
- package/lib/input/component/password.d.ts +2 -0
- package/lib/input/component/password.js +15 -0
- package/lib/input/component/text-area.d.ts +2 -0
- package/lib/input/component/text-area.js +23 -0
- package/lib/input/component/utils.d.ts +15 -0
- package/lib/input/component/utils.js +114 -0
- package/lib/input/index.d.ts +2 -0
- package/lib/input/index.js +27 -0
- package/lib/input/style/index.d.ts +6 -0
- package/lib/input/style/index.js +18 -0
- package/lib/input/type/index.d.ts +41 -0
- package/lib/input/type/index.js +5 -0
- package/lib/modal-prompt/component/index.d.ts +5 -0
- package/lib/modal-prompt/component/index.js +85 -0
- package/lib/modal-prompt/component/open-loading.d.ts +2 -0
- package/lib/modal-prompt/component/open-loading.js +28 -0
- package/lib/modal-prompt/component/utils.d.ts +4 -0
- package/lib/modal-prompt/component/utils.js +57 -0
- package/lib/modal-prompt/index.d.ts +2 -0
- package/lib/modal-prompt/index.js +27 -0
- package/lib/modal-prompt/style/index.d.ts +5 -0
- package/lib/modal-prompt/style/index.js +16 -0
- package/lib/modal-prompt/type/index.d.ts +36 -0
- package/lib/modal-prompt/type/index.js +5 -0
- package/lib/open-modal/component/constant.d.ts +1 -0
- package/lib/open-modal/component/constant.js +10 -0
- package/lib/open-modal/component/footer.d.ts +2 -0
- package/lib/open-modal/component/footer.js +41 -0
- package/lib/open-modal/component/index.d.ts +4 -0
- package/lib/open-modal/component/index.js +30 -0
- package/lib/open-modal/component/modal.d.ts +10 -0
- package/lib/open-modal/component/modal.js +44 -0
- package/lib/open-modal/component/title.d.ts +6 -0
- package/lib/open-modal/component/title.js +18 -0
- package/lib/open-modal/component/use-modal.d.ts +14 -0
- package/lib/open-modal/component/use-modal.js +184 -0
- package/lib/open-modal/component/utils.d.ts +11 -0
- package/lib/open-modal/component/utils.js +117 -0
- package/lib/open-modal/hook/index.d.ts +7 -0
- package/lib/open-modal/hook/index.js +40 -0
- package/lib/open-modal/hook/use-modal.d.ts +6 -0
- package/lib/open-modal/hook/use-modal.js +34 -0
- package/lib/open-modal/index.d.ts +3 -0
- package/lib/open-modal/index.js +38 -0
- package/lib/open-modal/style/index.d.ts +5 -0
- package/lib/open-modal/style/index.js +25 -0
- package/lib/open-modal/style/wrap.d.ts +2 -0
- package/lib/open-modal/style/wrap.js +13 -0
- package/lib/open-modal/type/index.d.ts +91 -0
- package/lib/open-modal/type/index.js +5 -0
- package/lib/portal/component/index.d.ts +2 -0
- package/lib/portal/component/index.js +47 -0
- package/lib/portal/index.d.ts +2 -0
- package/lib/portal/index.js +27 -0
- package/lib/portal/type/index.d.ts +13 -0
- package/lib/portal/type/index.js +5 -0
- package/lib/radio/component/abstract-box.d.ts +380 -0
- package/lib/radio/component/abstract-box.js +98 -0
- package/lib/radio/component/index.d.ts +2 -0
- package/lib/radio/component/index.js +17 -0
- package/lib/radio/component/radio.d.ts +2 -0
- package/lib/radio/component/radio.js +17 -0
- package/lib/radio/component/redio-group.d.ts +2 -0
- package/lib/radio/component/redio-group.js +57 -0
- package/lib/radio/component/use-box-options.d.ts +6 -0
- package/lib/radio/component/use-box-options.js +27 -0
- package/lib/radio/component/use-radio.d.ts +23 -0
- package/lib/radio/component/use-radio.js +28 -0
- package/lib/radio/component/utils.d.ts +7 -0
- package/lib/radio/component/utils.js +33 -0
- package/lib/radio/index.d.ts +2 -0
- package/lib/radio/index.js +27 -0
- package/lib/radio/style/index.d.ts +7 -0
- package/lib/radio/style/index.js +22 -0
- package/lib/radio/type/index.d.ts +32 -0
- package/lib/radio/type/index.js +5 -0
- package/lib/select/component/constant.d.ts +1 -0
- package/lib/select/component/constant.js +7 -0
- package/lib/select/component/index.d.ts +3 -0
- package/lib/select/component/index.js +29 -0
- package/lib/select/component/loading.d.ts +1 -0
- package/lib/select/component/loading.js +20 -0
- package/lib/select/component/use-select-options.d.ts +11 -0
- package/lib/select/component/use-select-options.js +88 -0
- package/lib/select/component/use-select.d.ts +2 -0
- package/lib/select/component/use-select.js +143 -0
- package/lib/select/component/utils.d.ts +14 -0
- package/lib/select/component/utils.js +152 -0
- package/lib/select/index.d.ts +2 -0
- package/lib/select/index.js +27 -0
- package/lib/select/style/index.d.ts +4 -0
- package/lib/select/style/index.js +14 -0
- package/lib/select/type/index.d.ts +105 -0
- package/lib/select/type/index.js +5 -0
- package/lib/stack/component/center-stack.d.ts +2 -0
- package/lib/stack/component/center-stack.js +39 -0
- package/lib/stack/component/h-stack.d.ts +2 -0
- package/lib/stack/component/h-stack.js +46 -0
- package/lib/stack/component/index.d.ts +3 -0
- package/lib/stack/component/index.js +38 -0
- package/lib/stack/component/v-stack.d.ts +2 -0
- package/lib/stack/component/v-stack.js +43 -0
- package/lib/stack/index.d.ts +2 -0
- package/lib/stack/index.js +27 -0
- package/lib/stack/style/index.d.ts +21 -0
- package/lib/stack/style/index.js +59 -0
- package/lib/stack/type/index.d.ts +54 -0
- package/lib/stack/type/index.js +5 -0
- package/lib/switch/component/index.d.ts +2 -0
- package/lib/switch/component/index.js +67 -0
- package/lib/switch/index.d.ts +2 -0
- package/lib/switch/index.js +27 -0
- package/lib/switch/style/index.d.ts +5 -0
- package/lib/switch/style/index.js +20 -0
- package/lib/switch/type/index.d.ts +27 -0
- package/lib/switch/type/index.js +5 -0
- package/lib/table/component/action-button.d.ts +2 -0
- package/lib/table/component/action-button.js +102 -0
- package/lib/table/component/actions.d.ts +2 -0
- package/lib/table/component/actions.js +42 -0
- package/lib/table/component/constant.d.ts +1 -0
- package/lib/table/component/constant.js +12 -0
- package/lib/table/component/editor.d.ts +2 -0
- package/lib/table/component/editor.js +42 -0
- package/lib/table/component/filter.d.ts +3 -0
- package/lib/table/component/filter.js +62 -0
- package/lib/table/component/index.d.ts +7 -0
- package/lib/table/component/index.js +10 -0
- package/lib/table/component/link.d.ts +2 -0
- package/lib/table/component/link.js +27 -0
- package/lib/table/component/sort.d.ts +6 -0
- package/lib/table/component/sort.js +24 -0
- package/lib/table/component/switch.d.ts +2 -0
- package/lib/table/component/switch.js +34 -0
- package/lib/table/component/table-body.d.ts +6 -0
- package/lib/table/component/table-body.js +95 -0
- package/lib/table/component/table.d.ts +10 -0
- package/lib/table/component/table.js +243 -0
- package/lib/table/component/time.d.ts +2 -0
- package/lib/table/component/time.js +19 -0
- package/lib/table/component/utils.d.ts +120 -0
- package/lib/table/component/utils.js +235 -0
- package/lib/table/component/wrapper.d.ts +6 -0
- package/lib/table/component/wrapper.js +37 -0
- package/lib/table/hook/index.d.ts +7 -0
- package/lib/table/hook/index.js +40 -0
- package/lib/table/hook/search.d.ts +5 -0
- package/lib/table/hook/search.js +138 -0
- package/lib/table/index.d.ts +3 -0
- package/lib/table/index.js +38 -0
- package/lib/table/style/index.d.ts +9 -0
- package/lib/table/style/index.js +23 -0
- package/lib/table/type/action.d.ts +48 -0
- package/lib/table/type/action.js +5 -0
- package/lib/table/type/column.d.ts +110 -0
- package/lib/table/type/column.js +5 -0
- package/lib/table/type/index.d.ts +113 -0
- package/lib/table/type/index.js +27 -0
- package/lib/tabs/component/constant.d.ts +2 -0
- package/lib/tabs/component/constant.js +8 -0
- package/lib/tabs/component/index.d.ts +2 -0
- package/lib/tabs/component/index.js +25 -0
- package/lib/tabs/component/utils.d.ts +24 -0
- package/lib/tabs/component/utils.js +63 -0
- package/lib/tabs/index.d.ts +2 -0
- package/lib/tabs/index.js +27 -0
- package/lib/tabs/style/index.d.ts +5 -0
- package/lib/tabs/style/index.js +17 -0
- package/lib/tabs/type/index.d.ts +20 -0
- package/lib/tabs/type/index.js +5 -0
- package/lib/text/component/index.d.ts +3 -0
- package/lib/text/component/index.js +78 -0
- package/lib/text/component/use-text.d.ts +4 -0
- package/lib/text/component/use-text.js +31 -0
- package/lib/text/component/utils.d.ts +3 -0
- package/lib/text/component/utils.js +15 -0
- package/lib/text/index.d.ts +2 -0
- package/lib/text/index.js +27 -0
- package/lib/text/style/index.d.ts +5 -0
- package/lib/text/style/index.js +15 -0
- package/lib/text/type/index.d.ts +19 -0
- package/lib/text/type/index.js +5 -0
- package/lib/tooltip/component/index.d.ts +48 -0
- package/lib/tooltip/component/index.js +28 -0
- package/lib/tooltip/index.d.ts +2 -0
- package/lib/tooltip/index.js +27 -0
- package/lib/tooltip/type/index.d.ts +8 -0
- package/lib/tooltip/type/index.js +5 -0
- package/lib/tree/component/index.d.ts +2 -0
- package/lib/tree/component/index.js +30 -0
- package/lib/tree/component/utils.d.ts +1 -0
- package/lib/tree/component/utils.js +9 -0
- package/lib/tree/index.d.ts +2 -0
- package/lib/tree/index.js +27 -0
- package/lib/tree/style/index.d.ts +4 -0
- package/lib/tree/style/index.js +14 -0
- package/lib/tree/type/index.d.ts +2 -0
- package/lib/tree/type/index.js +5 -0
- package/lib/tree-select/component/index.d.ts +2 -0
- package/lib/tree-select/component/index.js +22 -0
- package/lib/tree-select/component/use-tree-select.d.ts +2 -0
- package/lib/tree-select/component/use-tree-select.js +66 -0
- package/lib/tree-select/index.d.ts +2 -0
- package/lib/tree-select/index.js +27 -0
- package/lib/tree-select/style/index.d.ts +5 -0
- package/lib/tree-select/style/index.js +22 -0
- package/lib/tree-select/type/index.d.ts +23 -0
- package/lib/tree-select/type/index.js +5 -0
- package/lib/virtual-list/component/index.d.ts +2 -0
- package/lib/virtual-list/component/index.js +35 -0
- package/lib/virtual-list/index.d.ts +2 -0
- package/lib/virtual-list/index.js +27 -0
- package/lib/virtual-list/type/index.d.ts +17 -0
- package/lib/virtual-list/type/index.js +5 -0
- package/package.json +147 -0
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from "..";
|
|
3
|
+
export declare function useIcon(props: IconProps, defaultColors: Record<string, object>, componentName: string): {
|
|
4
|
+
className: string;
|
|
5
|
+
css: import("@emotion/utils").SerializedStyles;
|
|
6
|
+
style?: import("react").CSSProperties | undefined;
|
|
7
|
+
refs?: import("../../api").Refs | undefined;
|
|
8
|
+
string?: string | number | undefined;
|
|
9
|
+
clipPath?: string | undefined;
|
|
10
|
+
filter?: string | undefined;
|
|
11
|
+
mask?: string | undefined;
|
|
12
|
+
path?: string | undefined;
|
|
13
|
+
preserveAspectRatio?: string | undefined;
|
|
14
|
+
viewBox?: string | undefined;
|
|
15
|
+
children?: import("react").ReactNode;
|
|
16
|
+
x?: string | number | undefined;
|
|
17
|
+
fill?: string | undefined;
|
|
18
|
+
values?: string | undefined;
|
|
19
|
+
cursor?: string | number | undefined;
|
|
20
|
+
direction?: string | number | undefined;
|
|
21
|
+
display?: string | number | undefined;
|
|
22
|
+
fontFamily?: string | undefined;
|
|
23
|
+
fontSizeAdjust?: string | number | undefined;
|
|
24
|
+
fontStretch?: string | number | undefined;
|
|
25
|
+
fontStyle?: string | number | undefined;
|
|
26
|
+
fontVariant?: string | number | undefined;
|
|
27
|
+
fontWeight?: string | number | undefined;
|
|
28
|
+
height?: string | number | undefined;
|
|
29
|
+
imageRendering?: string | number | undefined;
|
|
30
|
+
letterSpacing?: string | number | undefined;
|
|
31
|
+
opacity?: string | number | undefined;
|
|
32
|
+
order?: string | number | undefined;
|
|
33
|
+
paintOrder?: string | number | undefined;
|
|
34
|
+
pointerEvents?: string | number | undefined;
|
|
35
|
+
rotate?: string | number | undefined;
|
|
36
|
+
scale?: string | number | undefined;
|
|
37
|
+
textRendering?: string | number | undefined;
|
|
38
|
+
transform?: string | undefined;
|
|
39
|
+
unicodeBidi?: string | number | undefined;
|
|
40
|
+
visibility?: string | number | undefined;
|
|
41
|
+
width?: string | number | undefined;
|
|
42
|
+
wordSpacing?: string | number | undefined;
|
|
43
|
+
writingMode?: string | number | undefined;
|
|
44
|
+
offset?: string | number | undefined;
|
|
45
|
+
overflow?: string | number | undefined;
|
|
46
|
+
textDecoration?: string | number | undefined;
|
|
47
|
+
azimuth?: string | number | undefined;
|
|
48
|
+
clip?: string | number | undefined;
|
|
49
|
+
alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined;
|
|
50
|
+
baselineShift?: string | number | undefined;
|
|
51
|
+
clipRule?: string | number | undefined;
|
|
52
|
+
colorInterpolation?: string | number | undefined;
|
|
53
|
+
colorRendering?: string | number | undefined;
|
|
54
|
+
dominantBaseline?: string | number | undefined;
|
|
55
|
+
fillOpacity?: string | number | undefined;
|
|
56
|
+
fillRule?: "inherit" | "nonzero" | "evenodd" | undefined;
|
|
57
|
+
floodColor?: string | number | undefined;
|
|
58
|
+
floodOpacity?: string | number | undefined;
|
|
59
|
+
glyphOrientationVertical?: string | number | undefined;
|
|
60
|
+
lightingColor?: string | number | undefined;
|
|
61
|
+
markerEnd?: string | undefined;
|
|
62
|
+
markerMid?: string | undefined;
|
|
63
|
+
markerStart?: string | undefined;
|
|
64
|
+
shapeRendering?: string | number | undefined;
|
|
65
|
+
stopColor?: string | undefined;
|
|
66
|
+
stopOpacity?: string | number | undefined;
|
|
67
|
+
stroke?: string | undefined;
|
|
68
|
+
strokeDasharray?: string | number | undefined;
|
|
69
|
+
strokeDashoffset?: string | number | undefined;
|
|
70
|
+
strokeLinecap?: "inherit" | "butt" | "round" | "square" | undefined;
|
|
71
|
+
strokeLinejoin?: "inherit" | "round" | "miter" | "bevel" | undefined;
|
|
72
|
+
strokeMiterlimit?: string | number | undefined;
|
|
73
|
+
strokeOpacity?: string | number | undefined;
|
|
74
|
+
strokeWidth?: string | number | undefined;
|
|
75
|
+
textAnchor?: string | undefined;
|
|
76
|
+
vectorEffect?: string | number | undefined;
|
|
77
|
+
type?: string | undefined;
|
|
78
|
+
key?: import("react").Key | null | undefined;
|
|
79
|
+
ref?: import("react").LegacyRef<SVGSVGElement> | undefined;
|
|
80
|
+
end?: string | number | undefined;
|
|
81
|
+
href?: string | undefined;
|
|
82
|
+
result?: string | undefined;
|
|
83
|
+
onChange?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
84
|
+
id?: string | undefined;
|
|
85
|
+
lang?: string | undefined;
|
|
86
|
+
tabIndex?: number | undefined;
|
|
87
|
+
role?: import("react").AriaRole | undefined;
|
|
88
|
+
"aria-activedescendant"?: string | undefined;
|
|
89
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
90
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
91
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
92
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
93
|
+
"aria-colcount"?: number | undefined;
|
|
94
|
+
"aria-colindex"?: number | undefined;
|
|
95
|
+
"aria-colspan"?: number | undefined;
|
|
96
|
+
"aria-controls"?: string | undefined;
|
|
97
|
+
"aria-current"?: boolean | "time" | "page" | "date" | "true" | "false" | "step" | "location" | undefined;
|
|
98
|
+
"aria-describedby"?: string | undefined;
|
|
99
|
+
"aria-details"?: string | undefined;
|
|
100
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
102
|
+
"aria-errormessage"?: string | undefined;
|
|
103
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
104
|
+
"aria-flowto"?: string | undefined;
|
|
105
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
106
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
107
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
108
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
109
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
110
|
+
"aria-label"?: string | undefined;
|
|
111
|
+
"aria-labelledby"?: string | undefined;
|
|
112
|
+
"aria-level"?: number | undefined;
|
|
113
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
114
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
115
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
116
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
117
|
+
"aria-orientation"?: "vertical" | "horizontal" | undefined;
|
|
118
|
+
"aria-owns"?: string | undefined;
|
|
119
|
+
"aria-placeholder"?: string | undefined;
|
|
120
|
+
"aria-posinset"?: number | undefined;
|
|
121
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
122
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
123
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
124
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
125
|
+
"aria-roledescription"?: string | undefined;
|
|
126
|
+
"aria-rowcount"?: number | undefined;
|
|
127
|
+
"aria-rowindex"?: number | undefined;
|
|
128
|
+
"aria-rowspan"?: number | undefined;
|
|
129
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
130
|
+
"aria-setsize"?: number | undefined;
|
|
131
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
132
|
+
"aria-valuemax"?: number | undefined;
|
|
133
|
+
"aria-valuemin"?: number | undefined;
|
|
134
|
+
"aria-valuenow"?: number | undefined;
|
|
135
|
+
"aria-valuetext"?: string | undefined;
|
|
136
|
+
dangerouslySetInnerHTML?: {
|
|
137
|
+
__html: string | TrustedHTML;
|
|
138
|
+
} | undefined;
|
|
139
|
+
onCopy?: import("react").ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
140
|
+
onCopyCapture?: import("react").ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
141
|
+
onCut?: import("react").ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
142
|
+
onCutCapture?: import("react").ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
143
|
+
onPaste?: import("react").ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
144
|
+
onPasteCapture?: import("react").ClipboardEventHandler<SVGSVGElement> | undefined;
|
|
145
|
+
onCompositionEnd?: import("react").CompositionEventHandler<SVGSVGElement> | undefined;
|
|
146
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<SVGSVGElement> | undefined;
|
|
147
|
+
onCompositionStart?: import("react").CompositionEventHandler<SVGSVGElement> | undefined;
|
|
148
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<SVGSVGElement> | undefined;
|
|
149
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<SVGSVGElement> | undefined;
|
|
150
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<SVGSVGElement> | undefined;
|
|
151
|
+
onFocus?: import("react").FocusEventHandler<SVGSVGElement> | undefined;
|
|
152
|
+
onFocusCapture?: import("react").FocusEventHandler<SVGSVGElement> | undefined;
|
|
153
|
+
onBlur?: import("react").FocusEventHandler<SVGSVGElement> | undefined;
|
|
154
|
+
onBlurCapture?: import("react").FocusEventHandler<SVGSVGElement> | undefined;
|
|
155
|
+
onChangeCapture?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
156
|
+
onBeforeInput?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
157
|
+
onBeforeInputCapture?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
158
|
+
onInput?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
159
|
+
onInputCapture?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
160
|
+
onReset?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
161
|
+
onResetCapture?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
162
|
+
onSubmit?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
163
|
+
onSubmitCapture?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
164
|
+
onInvalid?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
165
|
+
onInvalidCapture?: import("react").FormEventHandler<SVGSVGElement> | undefined;
|
|
166
|
+
onLoad?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
167
|
+
onLoadCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
168
|
+
onError?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
169
|
+
onErrorCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
170
|
+
onKeyDown?: import("react").KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
171
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
172
|
+
onKeyPress?: import("react").KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
173
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
174
|
+
onKeyUp?: import("react").KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
175
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<SVGSVGElement> | undefined;
|
|
176
|
+
onAbort?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
177
|
+
onAbortCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
178
|
+
onCanPlay?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
179
|
+
onCanPlayCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
180
|
+
onCanPlayThrough?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
181
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
182
|
+
onDurationChange?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
183
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
184
|
+
onEmptied?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
185
|
+
onEmptiedCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
186
|
+
onEncrypted?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
187
|
+
onEncryptedCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
188
|
+
onEnded?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
189
|
+
onEndedCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
190
|
+
onLoadedData?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
191
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
192
|
+
onLoadedMetadata?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
193
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
194
|
+
onLoadStart?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
195
|
+
onLoadStartCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
196
|
+
onPause?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
197
|
+
onPauseCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
198
|
+
onPlay?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
199
|
+
onPlayCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
200
|
+
onPlaying?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
201
|
+
onPlayingCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
202
|
+
onProgress?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
203
|
+
onProgressCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
204
|
+
onRateChange?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
205
|
+
onRateChangeCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
206
|
+
onSeeked?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
207
|
+
onSeekedCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
208
|
+
onSeeking?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
209
|
+
onSeekingCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
210
|
+
onStalled?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
211
|
+
onStalledCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
212
|
+
onSuspend?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
213
|
+
onSuspendCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
214
|
+
onTimeUpdate?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
215
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
216
|
+
onVolumeChange?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
217
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
218
|
+
onWaiting?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
219
|
+
onWaitingCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
220
|
+
onAuxClick?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
221
|
+
onAuxClickCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
222
|
+
onClick?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
223
|
+
onClickCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
224
|
+
onContextMenu?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
225
|
+
onContextMenuCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
226
|
+
onDoubleClick?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
227
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
228
|
+
onDrag?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
229
|
+
onDragCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
230
|
+
onDragEnd?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
231
|
+
onDragEndCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
232
|
+
onDragEnter?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
233
|
+
onDragEnterCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
234
|
+
onDragExit?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
235
|
+
onDragExitCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
236
|
+
onDragLeave?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
237
|
+
onDragLeaveCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
238
|
+
onDragOver?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
239
|
+
onDragOverCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
240
|
+
onDragStart?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
241
|
+
onDragStartCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
242
|
+
onDrop?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
243
|
+
onDropCapture?: import("react").DragEventHandler<SVGSVGElement> | undefined;
|
|
244
|
+
onMouseDown?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
245
|
+
onMouseDownCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
246
|
+
onMouseEnter?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
247
|
+
onMouseLeave?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
248
|
+
onMouseMove?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
249
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
250
|
+
onMouseOut?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
251
|
+
onMouseOutCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
252
|
+
onMouseOver?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
253
|
+
onMouseOverCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
254
|
+
onMouseUp?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
255
|
+
onMouseUpCapture?: import("react").MouseEventHandler<SVGSVGElement> | undefined;
|
|
256
|
+
onSelect?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
257
|
+
onSelectCapture?: import("react").ReactEventHandler<SVGSVGElement> | undefined;
|
|
258
|
+
onTouchCancel?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
259
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
260
|
+
onTouchEnd?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
261
|
+
onTouchEndCapture?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
262
|
+
onTouchMove?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
263
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
264
|
+
onTouchStart?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
265
|
+
onTouchStartCapture?: import("react").TouchEventHandler<SVGSVGElement> | undefined;
|
|
266
|
+
onPointerDown?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
267
|
+
onPointerDownCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
268
|
+
onPointerMove?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
269
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
270
|
+
onPointerUp?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
271
|
+
onPointerUpCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
272
|
+
onPointerCancel?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
273
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
274
|
+
onPointerEnter?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
275
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
276
|
+
onPointerLeave?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
277
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
278
|
+
onPointerOver?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
279
|
+
onPointerOverCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
280
|
+
onPointerOut?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
281
|
+
onPointerOutCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
282
|
+
onGotPointerCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
283
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
284
|
+
onLostPointerCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
285
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<SVGSVGElement> | undefined;
|
|
286
|
+
onScroll?: import("react").UIEventHandler<SVGSVGElement> | undefined;
|
|
287
|
+
onScrollCapture?: import("react").UIEventHandler<SVGSVGElement> | undefined;
|
|
288
|
+
onWheel?: import("react").WheelEventHandler<SVGSVGElement> | undefined;
|
|
289
|
+
onWheelCapture?: import("react").WheelEventHandler<SVGSVGElement> | undefined;
|
|
290
|
+
onAnimationStart?: import("react").AnimationEventHandler<SVGSVGElement> | undefined;
|
|
291
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<SVGSVGElement> | undefined;
|
|
292
|
+
onAnimationEnd?: import("react").AnimationEventHandler<SVGSVGElement> | undefined;
|
|
293
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<SVGSVGElement> | undefined;
|
|
294
|
+
onAnimationIteration?: import("react").AnimationEventHandler<SVGSVGElement> | undefined;
|
|
295
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<SVGSVGElement> | undefined;
|
|
296
|
+
onTransitionEnd?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
297
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<SVGSVGElement> | undefined;
|
|
298
|
+
ideographic?: string | number | undefined;
|
|
299
|
+
alphabetic?: string | number | undefined;
|
|
300
|
+
hanging?: string | number | undefined;
|
|
301
|
+
mathematical?: string | number | undefined;
|
|
302
|
+
origin?: string | number | undefined;
|
|
303
|
+
max?: string | number | undefined;
|
|
304
|
+
media?: string | undefined;
|
|
305
|
+
method?: string | undefined;
|
|
306
|
+
min?: string | number | undefined;
|
|
307
|
+
name?: string | undefined;
|
|
308
|
+
target?: string | undefined;
|
|
309
|
+
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
310
|
+
accentHeight?: string | number | undefined;
|
|
311
|
+
accumulate?: "none" | "sum" | undefined;
|
|
312
|
+
additive?: "replace" | "sum" | undefined;
|
|
313
|
+
allowReorder?: "no" | "yes" | undefined;
|
|
314
|
+
amplitude?: string | number | undefined;
|
|
315
|
+
arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
|
|
316
|
+
ascent?: string | number | undefined;
|
|
317
|
+
attributeName?: string | undefined;
|
|
318
|
+
attributeType?: string | undefined;
|
|
319
|
+
autoReverse?: (boolean | "true" | "false") | undefined;
|
|
320
|
+
baseFrequency?: string | number | undefined;
|
|
321
|
+
baseProfile?: string | number | undefined;
|
|
322
|
+
bbox?: string | number | undefined;
|
|
323
|
+
begin?: string | number | undefined;
|
|
324
|
+
bias?: string | number | undefined;
|
|
325
|
+
by?: string | number | undefined;
|
|
326
|
+
calcMode?: string | number | undefined;
|
|
327
|
+
capHeight?: string | number | undefined;
|
|
328
|
+
clipPathUnits?: string | number | undefined;
|
|
329
|
+
colorInterpolationFilters?: "auto" | "inherit" | "sRGB" | "linearRGB" | undefined;
|
|
330
|
+
colorProfile?: string | number | undefined;
|
|
331
|
+
contentScriptType?: string | number | undefined;
|
|
332
|
+
contentStyleType?: string | number | undefined;
|
|
333
|
+
cx?: string | number | undefined;
|
|
334
|
+
cy?: string | number | undefined;
|
|
335
|
+
d?: string | undefined;
|
|
336
|
+
decelerate?: string | number | undefined;
|
|
337
|
+
descent?: string | number | undefined;
|
|
338
|
+
diffuseConstant?: string | number | undefined;
|
|
339
|
+
divisor?: string | number | undefined;
|
|
340
|
+
dur?: string | number | undefined;
|
|
341
|
+
dx?: string | number | undefined;
|
|
342
|
+
dy?: string | number | undefined;
|
|
343
|
+
edgeMode?: string | number | undefined;
|
|
344
|
+
elevation?: string | number | undefined;
|
|
345
|
+
enableBackground?: string | number | undefined;
|
|
346
|
+
exponent?: string | number | undefined;
|
|
347
|
+
externalResourcesRequired?: (boolean | "true" | "false") | undefined;
|
|
348
|
+
filterRes?: string | number | undefined;
|
|
349
|
+
filterUnits?: string | number | undefined;
|
|
350
|
+
focusable?: "auto" | (boolean | "true" | "false") | undefined;
|
|
351
|
+
format?: string | number | undefined;
|
|
352
|
+
fr?: string | number | undefined;
|
|
353
|
+
from?: string | number | undefined;
|
|
354
|
+
fx?: string | number | undefined;
|
|
355
|
+
fy?: string | number | undefined;
|
|
356
|
+
g1?: string | number | undefined;
|
|
357
|
+
g2?: string | number | undefined;
|
|
358
|
+
glyphName?: string | number | undefined;
|
|
359
|
+
glyphOrientationHorizontal?: string | number | undefined;
|
|
360
|
+
glyphRef?: string | number | undefined;
|
|
361
|
+
gradientTransform?: string | undefined;
|
|
362
|
+
gradientUnits?: string | undefined;
|
|
363
|
+
horizAdvX?: string | number | undefined;
|
|
364
|
+
horizOriginX?: string | number | undefined;
|
|
365
|
+
in2?: string | number | undefined;
|
|
366
|
+
in?: string | undefined;
|
|
367
|
+
intercept?: string | number | undefined;
|
|
368
|
+
k1?: string | number | undefined;
|
|
369
|
+
k2?: string | number | undefined;
|
|
370
|
+
k3?: string | number | undefined;
|
|
371
|
+
k4?: string | number | undefined;
|
|
372
|
+
k?: string | number | undefined;
|
|
373
|
+
kernelMatrix?: string | number | undefined;
|
|
374
|
+
kernelUnitLength?: string | number | undefined;
|
|
375
|
+
kerning?: string | number | undefined;
|
|
376
|
+
keyPoints?: string | number | undefined;
|
|
377
|
+
keySplines?: string | number | undefined;
|
|
378
|
+
keyTimes?: string | number | undefined;
|
|
379
|
+
lengthAdjust?: string | number | undefined;
|
|
380
|
+
limitingConeAngle?: string | number | undefined;
|
|
381
|
+
local?: string | number | undefined;
|
|
382
|
+
markerHeight?: string | number | undefined;
|
|
383
|
+
markerUnits?: string | number | undefined;
|
|
384
|
+
markerWidth?: string | number | undefined;
|
|
385
|
+
maskContentUnits?: string | number | undefined;
|
|
386
|
+
maskUnits?: string | number | undefined;
|
|
387
|
+
mode?: string | number | undefined;
|
|
388
|
+
numOctaves?: string | number | undefined;
|
|
389
|
+
operator?: string | number | undefined;
|
|
390
|
+
orient?: string | number | undefined;
|
|
391
|
+
orientation?: string | number | undefined;
|
|
392
|
+
overlinePosition?: string | number | undefined;
|
|
393
|
+
overlineThickness?: string | number | undefined;
|
|
394
|
+
panose1?: string | number | undefined;
|
|
395
|
+
pathLength?: string | number | undefined;
|
|
396
|
+
patternContentUnits?: string | undefined;
|
|
397
|
+
patternTransform?: string | number | undefined;
|
|
398
|
+
patternUnits?: string | undefined;
|
|
399
|
+
points?: string | undefined;
|
|
400
|
+
pointsAtX?: string | number | undefined;
|
|
401
|
+
pointsAtY?: string | number | undefined;
|
|
402
|
+
pointsAtZ?: string | number | undefined;
|
|
403
|
+
preserveAlpha?: (boolean | "true" | "false") | undefined;
|
|
404
|
+
primitiveUnits?: string | number | undefined;
|
|
405
|
+
r?: string | number | undefined;
|
|
406
|
+
radius?: string | number | undefined;
|
|
407
|
+
refX?: string | number | undefined;
|
|
408
|
+
refY?: string | number | undefined;
|
|
409
|
+
renderingIntent?: string | number | undefined;
|
|
410
|
+
repeatCount?: string | number | undefined;
|
|
411
|
+
repeatDur?: string | number | undefined;
|
|
412
|
+
requiredExtensions?: string | number | undefined;
|
|
413
|
+
requiredFeatures?: string | number | undefined;
|
|
414
|
+
restart?: string | number | undefined;
|
|
415
|
+
rx?: string | number | undefined;
|
|
416
|
+
ry?: string | number | undefined;
|
|
417
|
+
seed?: string | number | undefined;
|
|
418
|
+
slope?: string | number | undefined;
|
|
419
|
+
spacing?: string | number | undefined;
|
|
420
|
+
specularConstant?: string | number | undefined;
|
|
421
|
+
specularExponent?: string | number | undefined;
|
|
422
|
+
speed?: string | number | undefined;
|
|
423
|
+
spreadMethod?: string | undefined;
|
|
424
|
+
startOffset?: string | number | undefined;
|
|
425
|
+
stdDeviation?: string | number | undefined;
|
|
426
|
+
stemh?: string | number | undefined;
|
|
427
|
+
stemv?: string | number | undefined;
|
|
428
|
+
stitchTiles?: string | number | undefined;
|
|
429
|
+
strikethroughPosition?: string | number | undefined;
|
|
430
|
+
strikethroughThickness?: string | number | undefined;
|
|
431
|
+
surfaceScale?: string | number | undefined;
|
|
432
|
+
systemLanguage?: string | number | undefined;
|
|
433
|
+
tableValues?: string | number | undefined;
|
|
434
|
+
targetX?: string | number | undefined;
|
|
435
|
+
targetY?: string | number | undefined;
|
|
436
|
+
textLength?: string | number | undefined;
|
|
437
|
+
to?: string | number | undefined;
|
|
438
|
+
u1?: string | number | undefined;
|
|
439
|
+
u2?: string | number | undefined;
|
|
440
|
+
underlinePosition?: string | number | undefined;
|
|
441
|
+
underlineThickness?: string | number | undefined;
|
|
442
|
+
unicode?: string | number | undefined;
|
|
443
|
+
unicodeRange?: string | number | undefined;
|
|
444
|
+
unitsPerEm?: string | number | undefined;
|
|
445
|
+
vAlphabetic?: string | number | undefined;
|
|
446
|
+
version?: string | undefined;
|
|
447
|
+
vertAdvY?: string | number | undefined;
|
|
448
|
+
vertOriginX?: string | number | undefined;
|
|
449
|
+
vertOriginY?: string | number | undefined;
|
|
450
|
+
vHanging?: string | number | undefined;
|
|
451
|
+
vIdeographic?: string | number | undefined;
|
|
452
|
+
viewTarget?: string | number | undefined;
|
|
453
|
+
vMathematical?: string | number | undefined;
|
|
454
|
+
widths?: string | number | undefined;
|
|
455
|
+
x1?: string | number | undefined;
|
|
456
|
+
x2?: string | number | undefined;
|
|
457
|
+
xChannelSelector?: string | undefined;
|
|
458
|
+
xHeight?: string | number | undefined;
|
|
459
|
+
xlinkActuate?: string | undefined;
|
|
460
|
+
xlinkArcrole?: string | undefined;
|
|
461
|
+
xlinkHref?: string | undefined;
|
|
462
|
+
xlinkRole?: string | undefined;
|
|
463
|
+
xlinkShow?: string | undefined;
|
|
464
|
+
xlinkTitle?: string | undefined;
|
|
465
|
+
xlinkType?: string | undefined;
|
|
466
|
+
xmlBase?: string | undefined;
|
|
467
|
+
xmlLang?: string | undefined;
|
|
468
|
+
xmlns?: string | undefined;
|
|
469
|
+
xmlnsXlink?: string | undefined;
|
|
470
|
+
xmlSpace?: string | undefined;
|
|
471
|
+
y1?: string | number | undefined;
|
|
472
|
+
y2?: string | number | undefined;
|
|
473
|
+
y?: string | number | undefined;
|
|
474
|
+
yChannelSelector?: string | undefined;
|
|
475
|
+
z?: string | number | undefined;
|
|
476
|
+
zoomAndPan?: string | undefined;
|
|
477
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["color", "fontSize"];
|
|
4
|
+
import { combineClassName, getClassName } from "../../api";
|
|
5
|
+
import _ from 'lodash';
|
|
6
|
+
import { useMemo } from 'react';
|
|
7
|
+
import style from "../style";
|
|
8
|
+
function getColorProps(color, defaultColors) {
|
|
9
|
+
if (!color) {
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// color: red
|
|
14
|
+
if (_.isString(color)) {
|
|
15
|
+
return _.mapValues(defaultColors, function () {
|
|
16
|
+
return {
|
|
17
|
+
fill: color
|
|
18
|
+
};
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
return _.mapValues(color, function (value) {
|
|
22
|
+
// color: { icon-id: red }
|
|
23
|
+
if (_.isString(value)) {
|
|
24
|
+
return {
|
|
25
|
+
fill: value
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// color: { icon-id: { fill: red } }
|
|
30
|
+
return value;
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
function getComponentClassName(props, componentName) {
|
|
34
|
+
var name = _.trim(_.kebabCase(componentName), 'icon-');
|
|
35
|
+
return combineClassName('icon', getClassName("icon-".concat(name)), props);
|
|
36
|
+
}
|
|
37
|
+
function getStyles(colorProps) {
|
|
38
|
+
var styles = {};
|
|
39
|
+
_.forEach(colorProps, function (item, className) {
|
|
40
|
+
_.forEach(item, function (color, type) {
|
|
41
|
+
_.set(styles, ["[data-id=\"".concat(className, "\"]"), _.camelCase(type)], color);
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
return styles;
|
|
45
|
+
}
|
|
46
|
+
export function useIcon(props, defaultColors, componentName) {
|
|
47
|
+
var color = props.color,
|
|
48
|
+
fontSize = props.fontSize,
|
|
49
|
+
restProps = _objectWithoutProperties(props, _excluded);
|
|
50
|
+
var className = getComponentClassName(props, componentName);
|
|
51
|
+
var css = useMemo(function () {
|
|
52
|
+
var colorProps = getColorProps(color, defaultColors);
|
|
53
|
+
var styles = getStyles(colorProps);
|
|
54
|
+
return style.wrapper(styles, fontSize);
|
|
55
|
+
}, [defaultColors, color, fontSize]);
|
|
56
|
+
return _objectSpread(_objectSpread({}, restProps), {}, {
|
|
57
|
+
className: className,
|
|
58
|
+
css: css
|
|
59
|
+
});
|
|
60
|
+
}
|
package/es/icon/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLiteral";
|
|
2
|
+
var _templateObject;
|
|
3
|
+
import { transformValueWithStyleUnit } from "../../api";
|
|
4
|
+
import { css } from '@emotion/react';
|
|
5
|
+
var style = {
|
|
6
|
+
wrapper: function wrapper(colors, fontSize) {
|
|
7
|
+
return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n ", ";\n\n font-size: ", ";\n "])), colors, transformValueWithStyleUnit(fontSize));
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
export default style;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BaseComponentProps } from "../../api";
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
export interface IconProps extends BaseComponentProps, Omit<SVGProps<SVGSVGElement>, 'color'> {
|
|
4
|
+
/**
|
|
5
|
+
* @description 图标颜色
|
|
6
|
+
* @replaceAll string | 'currentColor' | Record<string, any>
|
|
7
|
+
*/
|
|
8
|
+
color?: string | 'currentColor' | Record<string, any>;
|
|
9
|
+
/**
|
|
10
|
+
* @description 图标大小
|
|
11
|
+
* @default 1em
|
|
12
|
+
*/
|
|
13
|
+
fontSize?: string | number;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/es/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export * from './api';
|
|
2
|
+
export * from './hooks';
|
|
3
|
+
export * from './icon';
|
|
4
|
+
export { Button, type ButtonProps } from './button';
|
|
5
|
+
export { Checkbox, type CheckboxProps } from './checkbox';
|
|
6
|
+
export { DatePicker, RangePicker, type DatePickerProps, type RangePickerProps } from './date-picker';
|
|
7
|
+
export { Empty, type EmptyProps } from './empty';
|
|
8
|
+
export { Form, useForm, useFormContext, useFormListContext, useFormValue, useFormValueChange, useValidateForm, useValidateNotExistValue, type FormContext, type FormItemChildrenProps, type FormItemProps, type FormItemRenderProps, type FormProps, type FormValues, type SubmitButtonProps, } from './form';
|
|
9
|
+
export { Grid, type GridProps } from './grid';
|
|
10
|
+
export { HighlightText, type HighlightTextProps } from './highlight-text';
|
|
11
|
+
export { Input, type InputProps } from './input';
|
|
12
|
+
export { openConfirm, openError, openLoading, openSuccess, type ModalFuncProps } from './modal-prompt';
|
|
13
|
+
export { Modal, closeModal, openModal, useModal, type ModalContext, type OpenModalProps } from './open-modal';
|
|
14
|
+
export { Portal, type PortalProps } from './portal';
|
|
15
|
+
export { Radio, type RadioProps } from './radio';
|
|
16
|
+
export { Select, type SelectProps } from './select';
|
|
17
|
+
export { CenterStack, HStack, VStack, type CenterStackProps, type HStackProps, type VStackProps } from './stack';
|
|
18
|
+
export { Switch, type SwitchProps } from './switch';
|
|
19
|
+
export { Table, useSearchColumn, useTableContext, type ActionProps as TableActionProps, type Column as TableColumn, type RenderProps as TableColumnRenderProps, type TableContext, type TableProps, } from './table';
|
|
20
|
+
export { Tabs, type TabsProps } from './tabs';
|
|
21
|
+
export { Text, type TextProps } from './text';
|
|
22
|
+
export { Tooltip, type TooltipProps } from './tooltip';
|
|
23
|
+
export { Tree, type TreeProps } from './tree';
|
|
24
|
+
export { TreeSelect, type TreeSelectProps } from './tree-select';
|
|
25
|
+
export { VirtualList, type VirtualListProps } from './virtual-list';
|
package/es/index.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export * from "./api";
|
|
2
|
+
export * from "./hooks";
|
|
3
|
+
export * from "./icon";
|
|
4
|
+
export { Button } from "./button";
|
|
5
|
+
export { Checkbox } from "./checkbox";
|
|
6
|
+
export { DatePicker, RangePicker } from "./date-picker";
|
|
7
|
+
export { Empty } from "./empty";
|
|
8
|
+
export { Form, useForm, useFormContext, useFormListContext, useFormValue, useFormValueChange, useValidateForm, useValidateNotExistValue } from "./form";
|
|
9
|
+
export { Grid } from "./grid";
|
|
10
|
+
export { HighlightText } from "./highlight-text";
|
|
11
|
+
export { Input } from "./input";
|
|
12
|
+
export { openConfirm, openError, openLoading, openSuccess } from "./modal-prompt";
|
|
13
|
+
export { Modal, closeModal, openModal, useModal } from "./open-modal";
|
|
14
|
+
export { Portal } from "./portal";
|
|
15
|
+
export { Radio } from "./radio";
|
|
16
|
+
export { Select } from "./select";
|
|
17
|
+
export { CenterStack, HStack, VStack } from "./stack";
|
|
18
|
+
export { Switch } from "./switch";
|
|
19
|
+
export { Table, useSearchColumn, useTableContext } from "./table";
|
|
20
|
+
export { Tabs } from "./tabs";
|
|
21
|
+
export { Text } from "./text";
|
|
22
|
+
export { Tooltip } from "./tooltip";
|
|
23
|
+
export { Tree } from "./tree";
|
|
24
|
+
export { TreeSelect } from "./tree-select";
|
|
25
|
+
export { VirtualList } from "./virtual-list";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { InputProps } from '../type';
|
|
2
|
+
import { Input as EInput } from './input';
|
|
3
|
+
import { Number } from './number';
|
|
4
|
+
import { Password } from './password';
|
|
5
|
+
import { Textarea } from './text-area';
|
|
6
|
+
export declare const inputMap: {
|
|
7
|
+
input: typeof EInput;
|
|
8
|
+
textarea: typeof Textarea;
|
|
9
|
+
number: typeof Number;
|
|
10
|
+
password: typeof Password;
|
|
11
|
+
};
|
|
12
|
+
export declare function Input({ type, placeholder, ...props }: InputProps): import("@emotion/react/jsx-runtime").JSX.Element;
|