@zuoyo/viteui 0.0.2
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/README.md +227 -0
- package/dist/components/accordion/Accordion.d.ts +18 -0
- package/dist/components/accordion/Accordion.d.ts.map +1 -0
- package/dist/components/accordion/AccordionPanel.d.ts +63 -0
- package/dist/components/accordion/AccordionPanel.d.ts.map +1 -0
- package/dist/components/accordion/index.d.ts +14 -0
- package/dist/components/accordion/index.d.ts.map +1 -0
- package/dist/components/accordion/types.d.ts +159 -0
- package/dist/components/accordion/types.d.ts.map +1 -0
- package/dist/components/base/Addon.d.ts +11 -0
- package/dist/components/base/Addon.d.ts.map +1 -0
- package/dist/components/base/ComboBase.d.ts +85 -0
- package/dist/components/base/ComboBase.d.ts.map +1 -0
- package/dist/components/base/DateHelper.d.ts +17 -0
- package/dist/components/base/DateHelper.d.ts.map +1 -0
- package/dist/components/base/DomHelper.d.ts +42 -0
- package/dist/components/base/DomHelper.d.ts.map +1 -0
- package/dist/components/base/EventHub.d.ts +19 -0
- package/dist/components/base/EventHub.d.ts.map +1 -0
- package/dist/components/base/Label.d.ts +11 -0
- package/dist/components/base/Label.d.ts.map +1 -0
- package/dist/components/base/SlideUpDown.d.ts +37 -0
- package/dist/components/base/SlideUpDown.d.ts.map +1 -0
- package/dist/components/base/SpinnerBase.d.ts +69 -0
- package/dist/components/base/SpinnerBase.d.ts.map +1 -0
- package/dist/components/base/TreeHelper.d.ts +28 -0
- package/dist/components/base/TreeHelper.d.ts.map +1 -0
- package/dist/components/base/VirtualScroll.d.ts +36 -0
- package/dist/components/base/VirtualScroll.d.ts.map +1 -0
- package/dist/components/base/index.d.ts +23 -0
- package/dist/components/base/index.d.ts.map +1 -0
- package/dist/components/base/listBaseProps.d.ts +111 -0
- package/dist/components/base/listBaseProps.d.ts.map +1 -0
- package/dist/components/base/types.d.ts +1091 -0
- package/dist/components/base/types.d.ts.map +1 -0
- package/dist/components/base/useComboBase.d.ts +49 -0
- package/dist/components/base/useComboBase.d.ts.map +1 -0
- package/dist/components/base/useFieldBase.d.ts +24 -0
- package/dist/components/base/useFieldBase.d.ts.map +1 -0
- package/dist/components/base/useInputBase.d.ts +96 -0
- package/dist/components/base/useInputBase.d.ts.map +1 -0
- package/dist/components/base/useListBase.d.ts +71 -0
- package/dist/components/base/useListBase.d.ts.map +1 -0
- package/dist/components/base/useSpinnerBase.d.ts +45 -0
- package/dist/components/base/useSpinnerBase.d.ts.map +1 -0
- package/dist/components/calendar/Calendar.d.ts +35 -0
- package/dist/components/calendar/Calendar.d.ts.map +1 -0
- package/dist/components/calendar/index.d.ts +13 -0
- package/dist/components/calendar/index.d.ts.map +1 -0
- package/dist/components/calendar/types.d.ts +132 -0
- package/dist/components/calendar/types.d.ts.map +1 -0
- package/dist/components/checkbox/CheckBox.d.ts +35 -0
- package/dist/components/checkbox/CheckBox.d.ts.map +1 -0
- package/dist/components/checkbox/index.d.ts +13 -0
- package/dist/components/checkbox/index.d.ts.map +1 -0
- package/dist/components/checkbox/types.d.ts +64 -0
- package/dist/components/checkbox/types.d.ts.map +1 -0
- package/dist/components/combobox/ComboBox.d.ts +379 -0
- package/dist/components/combobox/ComboBox.d.ts.map +1 -0
- package/dist/components/combobox/index.d.ts +13 -0
- package/dist/components/combobox/index.d.ts.map +1 -0
- package/dist/components/combobox/types.d.ts +163 -0
- package/dist/components/combobox/types.d.ts.map +1 -0
- package/dist/components/combogrid/ComboGrid.d.ts +220 -0
- package/dist/components/combogrid/ComboGrid.d.ts.map +1 -0
- package/dist/components/combogrid/index.d.ts +13 -0
- package/dist/components/combogrid/index.d.ts.map +1 -0
- package/dist/components/combogrid/types.d.ts +105 -0
- package/dist/components/combogrid/types.d.ts.map +1 -0
- package/dist/components/combotree/ComboTree.d.ts +219 -0
- package/dist/components/combotree/ComboTree.d.ts.map +1 -0
- package/dist/components/combotree/index.d.ts +13 -0
- package/dist/components/combotree/index.d.ts.map +1 -0
- package/dist/components/combotree/types.d.ts +113 -0
- package/dist/components/combotree/types.d.ts.map +1 -0
- package/dist/components/datagrid/DataGrid.d.ts +135 -0
- package/dist/components/datagrid/DataGrid.d.ts.map +1 -0
- package/dist/components/datagrid/DataGridBody.d.ts +14 -0
- package/dist/components/datagrid/DataGridBody.d.ts.map +1 -0
- package/dist/components/datagrid/DataGridRowDetail.d.ts +11 -0
- package/dist/components/datagrid/DataGridRowDetail.d.ts.map +1 -0
- package/dist/components/datagrid/DataGridRowGroup.d.ts +13 -0
- package/dist/components/datagrid/DataGridRowGroup.d.ts.map +1 -0
- package/dist/components/datagrid/DataGridTable.d.ts +15 -0
- package/dist/components/datagrid/DataGridTable.d.ts.map +1 -0
- package/dist/components/datagrid/DataGridView.d.ts +25 -0
- package/dist/components/datagrid/DataGridView.d.ts.map +1 -0
- package/dist/components/datagrid/index.d.ts +21 -0
- package/dist/components/datagrid/index.d.ts.map +1 -0
- package/dist/components/datagrid/types.d.ts +507 -0
- package/dist/components/datagrid/types.d.ts.map +1 -0
- package/dist/components/datalist/DataList.d.ts +104 -0
- package/dist/components/datalist/DataList.d.ts.map +1 -0
- package/dist/components/datalist/index.d.ts +13 -0
- package/dist/components/datalist/index.d.ts.map +1 -0
- package/dist/components/datalist/types.d.ts +77 -0
- package/dist/components/datalist/types.d.ts.map +1 -0
- package/dist/components/datebox/DateBox.d.ts +310 -0
- package/dist/components/datebox/DateBox.d.ts.map +1 -0
- package/dist/components/datebox/index.d.ts +13 -0
- package/dist/components/datebox/index.d.ts.map +1 -0
- package/dist/components/datebox/types.d.ts +124 -0
- package/dist/components/datebox/types.d.ts.map +1 -0
- package/dist/components/datetimebox/DateTimeBox.d.ts +502 -0
- package/dist/components/datetimebox/DateTimeBox.d.ts.map +1 -0
- package/dist/components/datetimebox/index.d.ts +13 -0
- package/dist/components/datetimebox/index.d.ts.map +1 -0
- package/dist/components/datetimebox/types.d.ts +38 -0
- package/dist/components/datetimebox/types.d.ts.map +1 -0
- package/dist/components/datetimespinner/DateTimeSpinner.d.ts +17 -0
- package/dist/components/datetimespinner/DateTimeSpinner.d.ts.map +1 -0
- package/dist/components/datetimespinner/index.d.ts +13 -0
- package/dist/components/datetimespinner/index.d.ts.map +1 -0
- package/dist/components/datetimespinner/types.d.ts +34 -0
- package/dist/components/datetimespinner/types.d.ts.map +1 -0
- package/dist/components/dialog/Dialog.d.ts +102 -0
- package/dist/components/dialog/Dialog.d.ts.map +1 -0
- package/dist/components/dialog/dialogProps.d.ts +87 -0
- package/dist/components/dialog/dialogProps.d.ts.map +1 -0
- package/dist/components/dialog/index.d.ts +13 -0
- package/dist/components/dialog/index.d.ts.map +1 -0
- package/dist/components/dialog/types.d.ts +137 -0
- package/dist/components/dialog/types.d.ts.map +1 -0
- package/dist/components/draggable/Draggable.d.ts +28 -0
- package/dist/components/draggable/Draggable.d.ts.map +1 -0
- package/dist/components/draggable/DraggableClass.d.ts +48 -0
- package/dist/components/draggable/DraggableClass.d.ts.map +1 -0
- package/dist/components/draggable/DraggableProxy.d.ts +19 -0
- package/dist/components/draggable/DraggableProxy.d.ts.map +1 -0
- package/dist/components/draggable/index.d.ts +15 -0
- package/dist/components/draggable/index.d.ts.map +1 -0
- package/dist/components/draggable/types.d.ts +404 -0
- package/dist/components/draggable/types.d.ts.map +1 -0
- package/dist/components/drawer/Drawer.d.ts +113 -0
- package/dist/components/drawer/Drawer.d.ts.map +1 -0
- package/dist/components/drawer/index.d.ts +13 -0
- package/dist/components/drawer/index.d.ts.map +1 -0
- package/dist/components/drawer/types.d.ts +97 -0
- package/dist/components/drawer/types.d.ts.map +1 -0
- package/dist/components/droppable/Droppable.d.ts +21 -0
- package/dist/components/droppable/Droppable.d.ts.map +1 -0
- package/dist/components/droppable/DroppableClass.d.ts +27 -0
- package/dist/components/droppable/DroppableClass.d.ts.map +1 -0
- package/dist/components/droppable/index.d.ts +14 -0
- package/dist/components/droppable/index.d.ts.map +1 -0
- package/dist/components/droppable/types.d.ts +99 -0
- package/dist/components/droppable/types.d.ts.map +1 -0
- package/dist/components/filebutton/FileButton.d.ts +59 -0
- package/dist/components/filebutton/FileButton.d.ts.map +1 -0
- package/dist/components/filebutton/index.d.ts +13 -0
- package/dist/components/filebutton/index.d.ts.map +1 -0
- package/dist/components/filebutton/types.d.ts +86 -0
- package/dist/components/filebutton/types.d.ts.map +1 -0
- package/dist/components/form/Form.d.ts +30 -0
- package/dist/components/form/Form.d.ts.map +1 -0
- package/dist/components/form/FormField.d.ts +19 -0
- package/dist/components/form/FormField.d.ts.map +1 -0
- package/dist/components/form/index.d.ts +14 -0
- package/dist/components/form/index.d.ts.map +1 -0
- package/dist/components/form/rules.d.ts +57 -0
- package/dist/components/form/rules.d.ts.map +1 -0
- package/dist/components/form/types.d.ts +179 -0
- package/dist/components/form/types.d.ts.map +1 -0
- package/dist/components/gridbase/GridBase.d.ts +203 -0
- package/dist/components/gridbase/GridBase.d.ts.map +1 -0
- package/dist/components/gridbase/GridBody.d.ts +73 -0
- package/dist/components/gridbase/GridBody.d.ts.map +1 -0
- package/dist/components/gridbase/GridBodyCell.d.ts +55 -0
- package/dist/components/gridbase/GridBodyCell.d.ts.map +1 -0
- package/dist/components/gridbase/GridColumn.d.ts +333 -0
- package/dist/components/gridbase/GridColumn.d.ts.map +1 -0
- package/dist/components/gridbase/GridColumnGroup.d.ts +73 -0
- package/dist/components/gridbase/GridColumnGroup.d.ts.map +1 -0
- package/dist/components/gridbase/GridEmpty.d.ts +7 -0
- package/dist/components/gridbase/GridEmpty.d.ts.map +1 -0
- package/dist/components/gridbase/GridFilterButton.d.ts +28 -0
- package/dist/components/gridbase/GridFilterButton.d.ts.map +1 -0
- package/dist/components/gridbase/GridFilterCell.d.ts +11 -0
- package/dist/components/gridbase/GridFilterCell.d.ts.map +1 -0
- package/dist/components/gridbase/GridFilterRow.d.ts +9 -0
- package/dist/components/gridbase/GridFilterRow.d.ts.map +1 -0
- package/dist/components/gridbase/GridFooter.d.ts +82 -0
- package/dist/components/gridbase/GridFooter.d.ts.map +1 -0
- package/dist/components/gridbase/GridFooterCell.d.ts +11 -0
- package/dist/components/gridbase/GridFooterCell.d.ts.map +1 -0
- package/dist/components/gridbase/GridHeader.d.ts +51 -0
- package/dist/components/gridbase/GridHeader.d.ts.map +1 -0
- package/dist/components/gridbase/GridHeaderCell.d.ts +9 -0
- package/dist/components/gridbase/GridHeaderCell.d.ts.map +1 -0
- package/dist/components/gridbase/GridHeaderRow.d.ts +12 -0
- package/dist/components/gridbase/GridHeaderRow.d.ts.map +1 -0
- package/dist/components/gridbase/GridView.d.ts +130 -0
- package/dist/components/gridbase/GridView.d.ts.map +1 -0
- package/dist/components/gridbase/gridBaseProps.d.ts +172 -0
- package/dist/components/gridbase/gridBaseProps.d.ts.map +1 -0
- package/dist/components/gridbase/gridBodyProps.d.ts +17 -0
- package/dist/components/gridbase/gridBodyProps.d.ts.map +1 -0
- package/dist/components/gridbase/gridViewProps.d.ts +26 -0
- package/dist/components/gridbase/gridViewProps.d.ts.map +1 -0
- package/dist/components/gridbase/index.d.ts +19 -0
- package/dist/components/gridbase/index.d.ts.map +1 -0
- package/dist/components/gridbase/types.d.ts +823 -0
- package/dist/components/gridbase/types.d.ts.map +1 -0
- package/dist/components/gridbase/useGridBase.d.ts +58 -0
- package/dist/components/gridbase/useGridBase.d.ts.map +1 -0
- package/dist/components/gridbase/useGridBodyBase.d.ts +11 -0
- package/dist/components/gridbase/useGridBodyBase.d.ts.map +1 -0
- package/dist/components/gridbase/useGridViewBase.d.ts +19 -0
- package/dist/components/gridbase/useGridViewBase.d.ts.map +1 -0
- package/dist/components/layout/CollapsedPanel.d.ts +138 -0
- package/dist/components/layout/CollapsedPanel.d.ts.map +1 -0
- package/dist/components/layout/Layout.d.ts +19 -0
- package/dist/components/layout/Layout.d.ts.map +1 -0
- package/dist/components/layout/LayoutPanel.d.ts +83 -0
- package/dist/components/layout/LayoutPanel.d.ts.map +1 -0
- package/dist/components/layout/index.d.ts +15 -0
- package/dist/components/layout/index.d.ts.map +1 -0
- package/dist/components/layout/types.d.ts +210 -0
- package/dist/components/layout/types.d.ts.map +1 -0
- package/dist/components/linkbutton/ButtonGroup.d.ts +47 -0
- package/dist/components/linkbutton/ButtonGroup.d.ts.map +1 -0
- package/dist/components/linkbutton/LinkButton.d.ts +37 -0
- package/dist/components/linkbutton/LinkButton.d.ts.map +1 -0
- package/dist/components/linkbutton/index.d.ts +14 -0
- package/dist/components/linkbutton/index.d.ts.map +1 -0
- package/dist/components/linkbutton/linkButtonProps.d.ts +38 -0
- package/dist/components/linkbutton/linkButtonProps.d.ts.map +1 -0
- package/dist/components/linkbutton/types.d.ts +129 -0
- package/dist/components/linkbutton/types.d.ts.map +1 -0
- package/dist/components/linkbutton/useLinkButtonBase.d.ts +41 -0
- package/dist/components/linkbutton/useLinkButtonBase.d.ts.map +1 -0
- package/dist/components/locale/index.d.ts +18 -0
- package/dist/components/locale/index.d.ts.map +1 -0
- package/dist/components/menu/Menu.d.ts +31 -0
- package/dist/components/menu/Menu.d.ts.map +1 -0
- package/dist/components/menu/MenuItem.d.ts +15 -0
- package/dist/components/menu/MenuItem.d.ts.map +1 -0
- package/dist/components/menu/MenuSep.d.ts +3 -0
- package/dist/components/menu/MenuSep.d.ts.map +1 -0
- package/dist/components/menu/SubMenu.d.ts +21 -0
- package/dist/components/menu/SubMenu.d.ts.map +1 -0
- package/dist/components/menu/index.d.ts +16 -0
- package/dist/components/menu/index.d.ts.map +1 -0
- package/dist/components/menu/types.d.ts +202 -0
- package/dist/components/menu/types.d.ts.map +1 -0
- package/dist/components/menubutton/MenuButton.d.ts +43 -0
- package/dist/components/menubutton/MenuButton.d.ts.map +1 -0
- package/dist/components/menubutton/index.d.ts +13 -0
- package/dist/components/menubutton/index.d.ts.map +1 -0
- package/dist/components/menubutton/types.d.ts +56 -0
- package/dist/components/menubutton/types.d.ts.map +1 -0
- package/dist/components/messager/Messager.d.ts +16 -0
- package/dist/components/messager/Messager.d.ts.map +1 -0
- package/dist/components/messager/MessagerContent.d.ts +18 -0
- package/dist/components/messager/MessagerContent.d.ts.map +1 -0
- package/dist/components/messager/MessagerDialog.d.ts +114 -0
- package/dist/components/messager/MessagerDialog.d.ts.map +1 -0
- package/dist/components/messager/index.d.ts +15 -0
- package/dist/components/messager/index.d.ts.map +1 -0
- package/dist/components/messager/types.d.ts +238 -0
- package/dist/components/messager/types.d.ts.map +1 -0
- package/dist/components/numberbox/NumberBox.d.ts +210 -0
- package/dist/components/numberbox/NumberBox.d.ts.map +1 -0
- package/dist/components/numberbox/index.d.ts +13 -0
- package/dist/components/numberbox/index.d.ts.map +1 -0
- package/dist/components/numberbox/types.d.ts +130 -0
- package/dist/components/numberbox/types.d.ts.map +1 -0
- package/dist/components/pagination/Pagination.d.ts +45 -0
- package/dist/components/pagination/Pagination.d.ts.map +1 -0
- package/dist/components/pagination/PaginationButton.d.ts +39 -0
- package/dist/components/pagination/PaginationButton.d.ts.map +1 -0
- package/dist/components/pagination/PaginationLink.d.ts +3 -0
- package/dist/components/pagination/PaginationLink.d.ts.map +1 -0
- package/dist/components/pagination/PaginationList.d.ts +3 -0
- package/dist/components/pagination/PaginationList.d.ts.map +1 -0
- package/dist/components/pagination/PaginationManual.d.ts +7 -0
- package/dist/components/pagination/PaginationManual.d.ts.map +1 -0
- package/dist/components/pagination/index.d.ts +17 -0
- package/dist/components/pagination/index.d.ts.map +1 -0
- package/dist/components/pagination/types.d.ts +284 -0
- package/dist/components/pagination/types.d.ts.map +1 -0
- package/dist/components/panel/Panel.d.ts +63 -0
- package/dist/components/panel/Panel.d.ts.map +1 -0
- package/dist/components/panel/index.d.ts +13 -0
- package/dist/components/panel/index.d.ts.map +1 -0
- package/dist/components/panel/panelProps.d.ts +63 -0
- package/dist/components/panel/panelProps.d.ts.map +1 -0
- package/dist/components/panel/types.d.ts +139 -0
- package/dist/components/panel/types.d.ts.map +1 -0
- package/dist/components/panel/usePanelBase.d.ts +60 -0
- package/dist/components/panel/usePanelBase.d.ts.map +1 -0
- package/dist/components/passwordbox/PasswordBox.d.ts +78 -0
- package/dist/components/passwordbox/PasswordBox.d.ts.map +1 -0
- package/dist/components/passwordbox/index.d.ts +13 -0
- package/dist/components/passwordbox/index.d.ts.map +1 -0
- package/dist/components/passwordbox/types.d.ts +57 -0
- package/dist/components/passwordbox/types.d.ts.map +1 -0
- package/dist/components/progressbar/ProgressBar.d.ts +16 -0
- package/dist/components/progressbar/ProgressBar.d.ts.map +1 -0
- package/dist/components/progressbar/index.d.ts +13 -0
- package/dist/components/progressbar/index.d.ts.map +1 -0
- package/dist/components/progressbar/types.d.ts +33 -0
- package/dist/components/progressbar/types.d.ts.map +1 -0
- package/dist/components/radiobutton/RadioButton.d.ts +31 -0
- package/dist/components/radiobutton/RadioButton.d.ts.map +1 -0
- package/dist/components/radiobutton/index.d.ts +13 -0
- package/dist/components/radiobutton/index.d.ts.map +1 -0
- package/dist/components/radiobutton/types.d.ts +66 -0
- package/dist/components/radiobutton/types.d.ts.map +1 -0
- package/dist/components/rate/Rate.d.ts +64 -0
- package/dist/components/rate/Rate.d.ts.map +1 -0
- package/dist/components/rate/index.d.ts +13 -0
- package/dist/components/rate/index.d.ts.map +1 -0
- package/dist/components/rate/types.d.ts +61 -0
- package/dist/components/rate/types.d.ts.map +1 -0
- package/dist/components/resizable/Resizable.d.ts +27 -0
- package/dist/components/resizable/Resizable.d.ts.map +1 -0
- package/dist/components/resizable/ResizableClass.d.ts +33 -0
- package/dist/components/resizable/ResizableClass.d.ts.map +1 -0
- package/dist/components/resizable/index.d.ts +14 -0
- package/dist/components/resizable/index.d.ts.map +1 -0
- package/dist/components/resizable/types.d.ts +222 -0
- package/dist/components/resizable/types.d.ts.map +1 -0
- package/dist/components/searchbox/SearchBox.d.ts +72 -0
- package/dist/components/searchbox/SearchBox.d.ts.map +1 -0
- package/dist/components/searchbox/index.d.ts +13 -0
- package/dist/components/searchbox/index.d.ts.map +1 -0
- package/dist/components/searchbox/types.d.ts +77 -0
- package/dist/components/searchbox/types.d.ts.map +1 -0
- package/dist/components/sidemenu/SideMenu.d.ts +29 -0
- package/dist/components/sidemenu/SideMenu.d.ts.map +1 -0
- package/dist/components/sidemenu/SideMenuIcon.d.ts +13 -0
- package/dist/components/sidemenu/SideMenuIcon.d.ts.map +1 -0
- package/dist/components/sidemenu/SideMenuItems.d.ts +74 -0
- package/dist/components/sidemenu/SideMenuItems.d.ts.map +1 -0
- package/dist/components/sidemenu/index.d.ts +15 -0
- package/dist/components/sidemenu/index.d.ts.map +1 -0
- package/dist/components/sidemenu/types.d.ts +213 -0
- package/dist/components/sidemenu/types.d.ts.map +1 -0
- package/dist/components/slider/Slider.d.ts +210 -0
- package/dist/components/slider/Slider.d.ts.map +1 -0
- package/dist/components/slider/index.d.ts +13 -0
- package/dist/components/slider/index.d.ts.map +1 -0
- package/dist/components/slider/types.d.ts +92 -0
- package/dist/components/slider/types.d.ts.map +1 -0
- package/dist/components/splitbutton/SplitButton.d.ts +43 -0
- package/dist/components/splitbutton/SplitButton.d.ts.map +1 -0
- package/dist/components/splitbutton/index.d.ts +13 -0
- package/dist/components/splitbutton/index.d.ts.map +1 -0
- package/dist/components/splitbutton/types.d.ts +21 -0
- package/dist/components/splitbutton/types.d.ts.map +1 -0
- package/dist/components/swiper/Swiper.d.ts +21 -0
- package/dist/components/swiper/Swiper.d.ts.map +1 -0
- package/dist/components/swiper/SwiperPanel.d.ts +142 -0
- package/dist/components/swiper/SwiperPanel.d.ts.map +1 -0
- package/dist/components/swiper/index.d.ts +14 -0
- package/dist/components/swiper/index.d.ts.map +1 -0
- package/dist/components/swiper/types.d.ts +120 -0
- package/dist/components/swiper/types.d.ts.map +1 -0
- package/dist/components/switchbutton/SwitchButton.d.ts +44 -0
- package/dist/components/switchbutton/SwitchButton.d.ts.map +1 -0
- package/dist/components/switchbutton/index.d.ts +13 -0
- package/dist/components/switchbutton/index.d.ts.map +1 -0
- package/dist/components/switchbutton/types.d.ts +64 -0
- package/dist/components/switchbutton/types.d.ts.map +1 -0
- package/dist/components/tabs/TabPanel.d.ts +153 -0
- package/dist/components/tabs/TabPanel.d.ts.map +1 -0
- package/dist/components/tabs/TabPanelHeader.d.ts +24 -0
- package/dist/components/tabs/TabPanelHeader.d.ts.map +1 -0
- package/dist/components/tabs/Tabs.d.ts +41 -0
- package/dist/components/tabs/Tabs.d.ts.map +1 -0
- package/dist/components/tabs/index.d.ts +14 -0
- package/dist/components/tabs/index.d.ts.map +1 -0
- package/dist/components/tabs/types.d.ts +185 -0
- package/dist/components/tabs/types.d.ts.map +1 -0
- package/dist/components/tagbox/TagBox.d.ts +288 -0
- package/dist/components/tagbox/TagBox.d.ts.map +1 -0
- package/dist/components/tagbox/index.d.ts +13 -0
- package/dist/components/tagbox/index.d.ts.map +1 -0
- package/dist/components/tagbox/types.d.ts +110 -0
- package/dist/components/tagbox/types.d.ts.map +1 -0
- package/dist/components/textbox/TextBox.d.ts +57 -0
- package/dist/components/textbox/TextBox.d.ts.map +1 -0
- package/dist/components/textbox/index.d.ts +13 -0
- package/dist/components/textbox/index.d.ts.map +1 -0
- package/dist/components/textbox/types.d.ts +22 -0
- package/dist/components/textbox/types.d.ts.map +1 -0
- package/dist/components/timepicker/TimeClock.d.ts +12 -0
- package/dist/components/timepicker/TimeClock.d.ts.map +1 -0
- package/dist/components/timepicker/TimePanel.d.ts +11 -0
- package/dist/components/timepicker/TimePanel.d.ts.map +1 -0
- package/dist/components/timepicker/TimePicker.d.ts +236 -0
- package/dist/components/timepicker/TimePicker.d.ts.map +1 -0
- package/dist/components/timepicker/index.d.ts +15 -0
- package/dist/components/timepicker/index.d.ts.map +1 -0
- package/dist/components/timepicker/types.d.ts +224 -0
- package/dist/components/timepicker/types.d.ts.map +1 -0
- package/dist/components/timespinner/TimeSpinner.d.ts +196 -0
- package/dist/components/timespinner/TimeSpinner.d.ts.map +1 -0
- package/dist/components/timespinner/index.d.ts +13 -0
- package/dist/components/timespinner/index.d.ts.map +1 -0
- package/dist/components/timespinner/types.d.ts +130 -0
- package/dist/components/timespinner/types.d.ts.map +1 -0
- package/dist/components/tooltip/Tooltip.d.ts +27 -0
- package/dist/components/tooltip/Tooltip.d.ts.map +1 -0
- package/dist/components/tooltip/TooltipContent.d.ts +72 -0
- package/dist/components/tooltip/TooltipContent.d.ts.map +1 -0
- package/dist/components/tooltip/index.d.ts +14 -0
- package/dist/components/tooltip/index.d.ts.map +1 -0
- package/dist/components/tooltip/types.d.ts +263 -0
- package/dist/components/tooltip/types.d.ts.map +1 -0
- package/dist/components/tree/Tree.d.ts +315 -0
- package/dist/components/tree/Tree.d.ts.map +1 -0
- package/dist/components/tree/TreeNode.d.ts +28 -0
- package/dist/components/tree/TreeNode.d.ts.map +1 -0
- package/dist/components/tree/TreeNodeEditor.d.ts +17 -0
- package/dist/components/tree/TreeNodeEditor.d.ts.map +1 -0
- package/dist/components/tree/TreeNodeIcon.d.ts +10 -0
- package/dist/components/tree/TreeNodeIcon.d.ts.map +1 -0
- package/dist/components/tree/TreeNodeTitle.d.ts +10 -0
- package/dist/components/tree/TreeNodeTitle.d.ts.map +1 -0
- package/dist/components/tree/index.d.ts +17 -0
- package/dist/components/tree/index.d.ts.map +1 -0
- package/dist/components/tree/types.d.ts +511 -0
- package/dist/components/tree/types.d.ts.map +1 -0
- package/dist/components/treegrid/TreeGrid.d.ts +57 -0
- package/dist/components/treegrid/TreeGrid.d.ts.map +1 -0
- package/dist/components/treegrid/TreeGridBody.d.ts +14 -0
- package/dist/components/treegrid/TreeGridBody.d.ts.map +1 -0
- package/dist/components/treegrid/TreeGridChildren.d.ts +23 -0
- package/dist/components/treegrid/TreeGridChildren.d.ts.map +1 -0
- package/dist/components/treegrid/TreeGridRow.d.ts +20 -0
- package/dist/components/treegrid/TreeGridRow.d.ts.map +1 -0
- package/dist/components/treegrid/TreeGridTitle.d.ts +11 -0
- package/dist/components/treegrid/TreeGridTitle.d.ts.map +1 -0
- package/dist/components/treegrid/TreeGridView.d.ts +23 -0
- package/dist/components/treegrid/TreeGridView.d.ts.map +1 -0
- package/dist/components/treegrid/index.d.ts +18 -0
- package/dist/components/treegrid/index.d.ts.map +1 -0
- package/dist/components/treegrid/types.d.ts +407 -0
- package/dist/components/treegrid/types.d.ts.map +1 -0
- package/dist/index.d.ts +66 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/locale/lang-af.d.ts +4 -0
- package/dist/locale/lang-af.d.ts.map +1 -0
- package/dist/locale/lang-af.ts +33 -0
- package/dist/locale/lang-am.d.ts +4 -0
- package/dist/locale/lang-am.d.ts.map +1 -0
- package/dist/locale/lang-am.ts +33 -0
- package/dist/locale/lang-ar.d.ts +4 -0
- package/dist/locale/lang-ar.d.ts.map +1 -0
- package/dist/locale/lang-ar.ts +33 -0
- package/dist/locale/lang-bg.d.ts +4 -0
- package/dist/locale/lang-bg.d.ts.map +1 -0
- package/dist/locale/lang-bg.ts +33 -0
- package/dist/locale/lang-ca.d.ts +4 -0
- package/dist/locale/lang-ca.d.ts.map +1 -0
- package/dist/locale/lang-ca.ts +33 -0
- package/dist/locale/lang-cs.d.ts +4 -0
- package/dist/locale/lang-cs.d.ts.map +1 -0
- package/dist/locale/lang-cs.ts +33 -0
- package/dist/locale/lang-cz.d.ts +4 -0
- package/dist/locale/lang-cz.d.ts.map +1 -0
- package/dist/locale/lang-cz.ts +33 -0
- package/dist/locale/lang-da.d.ts +4 -0
- package/dist/locale/lang-da.d.ts.map +1 -0
- package/dist/locale/lang-da.ts +33 -0
- package/dist/locale/lang-de.d.ts +4 -0
- package/dist/locale/lang-de.d.ts.map +1 -0
- package/dist/locale/lang-de.ts +33 -0
- package/dist/locale/lang-el.d.ts +4 -0
- package/dist/locale/lang-el.d.ts.map +1 -0
- package/dist/locale/lang-el.ts +33 -0
- package/dist/locale/lang-en.d.ts +4 -0
- package/dist/locale/lang-en.d.ts.map +1 -0
- package/dist/locale/lang-en.ts +33 -0
- package/dist/locale/lang-es.d.ts +4 -0
- package/dist/locale/lang-es.d.ts.map +1 -0
- package/dist/locale/lang-es.ts +33 -0
- package/dist/locale/lang-fa.d.ts +4 -0
- package/dist/locale/lang-fa.d.ts.map +1 -0
- package/dist/locale/lang-fa.ts +33 -0
- package/dist/locale/lang-fr.d.ts +4 -0
- package/dist/locale/lang-fr.d.ts.map +1 -0
- package/dist/locale/lang-fr.ts +33 -0
- package/dist/locale/lang-it.d.ts +4 -0
- package/dist/locale/lang-it.d.ts.map +1 -0
- package/dist/locale/lang-it.ts +33 -0
- package/dist/locale/lang-jp.d.ts +4 -0
- package/dist/locale/lang-jp.d.ts.map +1 -0
- package/dist/locale/lang-jp.ts +33 -0
- package/dist/locale/lang-ko.d.ts +4 -0
- package/dist/locale/lang-ko.d.ts.map +1 -0
- package/dist/locale/lang-ko.ts +33 -0
- package/dist/locale/lang-nl.d.ts +4 -0
- package/dist/locale/lang-nl.d.ts.map +1 -0
- package/dist/locale/lang-nl.ts +33 -0
- package/dist/locale/lang-pl.d.ts +4 -0
- package/dist/locale/lang-pl.d.ts.map +1 -0
- package/dist/locale/lang-pl.ts +33 -0
- package/dist/locale/lang-pt_BR.d.ts +4 -0
- package/dist/locale/lang-pt_BR.d.ts.map +1 -0
- package/dist/locale/lang-pt_BR.ts +33 -0
- package/dist/locale/lang-ru.d.ts +4 -0
- package/dist/locale/lang-ru.d.ts.map +1 -0
- package/dist/locale/lang-ru.ts +33 -0
- package/dist/locale/lang-sv_SE.d.ts +4 -0
- package/dist/locale/lang-sv_SE.d.ts.map +1 -0
- package/dist/locale/lang-sv_SE.ts +33 -0
- package/dist/locale/lang-tr.d.ts +4 -0
- package/dist/locale/lang-tr.d.ts.map +1 -0
- package/dist/locale/lang-tr.ts +33 -0
- package/dist/locale/lang-ua.d.ts +4 -0
- package/dist/locale/lang-ua.d.ts.map +1 -0
- package/dist/locale/lang-ua.ts +33 -0
- package/dist/locale/lang-zh_CN.d.ts +4 -0
- package/dist/locale/lang-zh_CN.d.ts.map +1 -0
- package/dist/locale/lang-zh_CN.ts +33 -0
- package/dist/locale/lang-zh_TW.d.ts +4 -0
- package/dist/locale/lang-zh_TW.d.ts.map +1 -0
- package/dist/locale/lang-zh_TW.ts +33 -0
- package/dist/locale/types.d.ts +33 -0
- package/dist/locale/types.d.ts.map +1 -0
- package/dist/locale/types.ts +32 -0
- package/dist/themes/black/accordion.css +89 -0
- package/dist/themes/black/calendar.css +213 -0
- package/dist/themes/black/checkbox.css +31 -0
- package/dist/themes/black/combo.css +35 -0
- package/dist/themes/black/combobox.css +40 -0
- package/dist/themes/black/datagrid.css +305 -0
- package/dist/themes/black/datalist.css +95 -0
- package/dist/themes/black/datebox.css +36 -0
- package/dist/themes/black/dialog.css +47 -0
- package/dist/themes/black/drawer.css +15 -0
- package/dist/themes/black/filebox.css +20 -0
- package/dist/themes/black/flex.css +52 -0
- package/dist/themes/black/images/accordion_arrows.png +0 -0
- package/dist/themes/black/images/blank.gif +0 -0
- package/dist/themes/black/images/calendar_arrows.png +0 -0
- package/dist/themes/black/images/combo_arrow.png +0 -0
- package/dist/themes/black/images/datagrid_icons.png +0 -0
- package/dist/themes/black/images/datebox_arrow.png +0 -0
- package/dist/themes/black/images/layout_arrows.png +0 -0
- package/dist/themes/black/images/linkbutton_bg.png +0 -0
- package/dist/themes/black/images/loading.gif +0 -0
- package/dist/themes/black/images/menu_arrows.png +0 -0
- package/dist/themes/black/images/messager_icons.png +0 -0
- package/dist/themes/black/images/messager_icons16.png +0 -0
- package/dist/themes/black/images/pagination_icons.png +0 -0
- package/dist/themes/black/images/panel_tools.png +0 -0
- package/dist/themes/black/images/passwordbox_close.png +0 -0
- package/dist/themes/black/images/passwordbox_open.png +0 -0
- package/dist/themes/black/images/searchbox_button.png +0 -0
- package/dist/themes/black/images/slider_handle.png +0 -0
- package/dist/themes/black/images/spinner_arrows.png +0 -0
- package/dist/themes/black/images/tabs_icons.png +0 -0
- package/dist/themes/black/images/tagbox_icons.png +0 -0
- package/dist/themes/black/images/tree_icons.png +0 -0
- package/dist/themes/black/images/validatebox_warning.png +0 -0
- package/dist/themes/black/index.css +3814 -0
- package/dist/themes/black/layout.css +150 -0
- package/dist/themes/black/linkbutton.css +203 -0
- package/dist/themes/black/menu.css +119 -0
- package/dist/themes/black/menubutton.css +94 -0
- package/dist/themes/black/messager.css +74 -0
- package/dist/themes/black/numberbox.css +0 -0
- package/dist/themes/black/pagination.css +77 -0
- package/dist/themes/black/panel.css +276 -0
- package/dist/themes/black/passwordbox.css +6 -0
- package/dist/themes/black/progressbar.css +33 -0
- package/dist/themes/black/propertygrid.css +27 -0
- package/dist/themes/black/radiobutton.css +25 -0
- package/dist/themes/black/rate.css +34 -0
- package/dist/themes/black/searchbox.css +61 -0
- package/dist/themes/black/sidemenu.css +78 -0
- package/dist/themes/black/slider.css +101 -0
- package/dist/themes/black/spinner.css +114 -0
- package/dist/themes/black/splitbutton.css +12 -0
- package/dist/themes/black/swiper.css +33 -0
- package/dist/themes/black/switchbutton.css +83 -0
- package/dist/themes/black/tabs.css +415 -0
- package/dist/themes/black/tagbox.css +44 -0
- package/dist/themes/black/textbox.css +173 -0
- package/dist/themes/black/timeline.css +41 -0
- package/dist/themes/black/timepicker.css +93 -0
- package/dist/themes/black/tooltip.css +101 -0
- package/dist/themes/black/tree.css +168 -0
- package/dist/themes/black/validatebox.css +13 -0
- package/dist/themes/black/window.css +188 -0
- package/dist/themes/bootstrap/accordion.css +89 -0
- package/dist/themes/bootstrap/calendar.css +213 -0
- package/dist/themes/bootstrap/checkbox.css +31 -0
- package/dist/themes/bootstrap/combo.css +35 -0
- package/dist/themes/bootstrap/combobox.css +40 -0
- package/dist/themes/bootstrap/datagrid.css +305 -0
- package/dist/themes/bootstrap/datalist.css +95 -0
- package/dist/themes/bootstrap/datebox.css +36 -0
- package/dist/themes/bootstrap/dialog.css +47 -0
- package/dist/themes/bootstrap/drawer.css +15 -0
- package/dist/themes/bootstrap/filebox.css +20 -0
- package/dist/themes/bootstrap/flex.css +52 -0
- package/dist/themes/bootstrap/images/accordion_arrows.png +0 -0
- package/dist/themes/bootstrap/images/blank.gif +0 -0
- package/dist/themes/bootstrap/images/calendar_arrows.png +0 -0
- package/dist/themes/bootstrap/images/combo_arrow.png +0 -0
- package/dist/themes/bootstrap/images/datagrid_icons.png +0 -0
- package/dist/themes/bootstrap/images/datebox_arrow.png +0 -0
- package/dist/themes/bootstrap/images/layout_arrows.png +0 -0
- package/dist/themes/bootstrap/images/linkbutton_bg.png +0 -0
- package/dist/themes/bootstrap/images/loading.gif +0 -0
- package/dist/themes/bootstrap/images/menu_arrows.png +0 -0
- package/dist/themes/bootstrap/images/messager_icons.png +0 -0
- package/dist/themes/bootstrap/images/messager_icons16.png +0 -0
- package/dist/themes/bootstrap/images/pagination_icons.png +0 -0
- package/dist/themes/bootstrap/images/panel_tools.png +0 -0
- package/dist/themes/bootstrap/images/passwordbox_close.png +0 -0
- package/dist/themes/bootstrap/images/passwordbox_open.png +0 -0
- package/dist/themes/bootstrap/images/searchbox_button.png +0 -0
- package/dist/themes/bootstrap/images/slider_handle.png +0 -0
- package/dist/themes/bootstrap/images/spinner_arrows.png +0 -0
- package/dist/themes/bootstrap/images/tabs_icons.png +0 -0
- package/dist/themes/bootstrap/images/tagbox_icons.png +0 -0
- package/dist/themes/bootstrap/images/tree_icons.png +0 -0
- package/dist/themes/bootstrap/images/validatebox_warning.png +0 -0
- package/dist/themes/bootstrap/index.css +3833 -0
- package/dist/themes/bootstrap/layout.css +150 -0
- package/dist/themes/bootstrap/linkbutton.css +203 -0
- package/dist/themes/bootstrap/menu.css +119 -0
- package/dist/themes/bootstrap/menubutton.css +94 -0
- package/dist/themes/bootstrap/messager.css +74 -0
- package/dist/themes/bootstrap/numberbox.css +0 -0
- package/dist/themes/bootstrap/pagination.css +77 -0
- package/dist/themes/bootstrap/panel.css +276 -0
- package/dist/themes/bootstrap/passwordbox.css +6 -0
- package/dist/themes/bootstrap/progressbar.css +33 -0
- package/dist/themes/bootstrap/propertygrid.css +27 -0
- package/dist/themes/bootstrap/radiobutton.css +25 -0
- package/dist/themes/bootstrap/rate.css +34 -0
- package/dist/themes/bootstrap/searchbox.css +61 -0
- package/dist/themes/bootstrap/sidemenu.css +78 -0
- package/dist/themes/bootstrap/slider.css +101 -0
- package/dist/themes/bootstrap/spinner.css +114 -0
- package/dist/themes/bootstrap/splitbutton.css +12 -0
- package/dist/themes/bootstrap/swiper.css +33 -0
- package/dist/themes/bootstrap/switchbutton.css +83 -0
- package/dist/themes/bootstrap/tabs.css +415 -0
- package/dist/themes/bootstrap/tagbox.css +44 -0
- package/dist/themes/bootstrap/textbox.css +173 -0
- package/dist/themes/bootstrap/timeline.css +41 -0
- package/dist/themes/bootstrap/timepicker.css +93 -0
- package/dist/themes/bootstrap/tooltip.css +101 -0
- package/dist/themes/bootstrap/tree.css +168 -0
- package/dist/themes/bootstrap/validatebox.css +13 -0
- package/dist/themes/bootstrap/window.css +188 -0
- package/dist/themes/color.css +210 -0
- package/dist/themes/default/accordion.css +89 -0
- package/dist/themes/default/calendar.css +213 -0
- package/dist/themes/default/checkbox.css +31 -0
- package/dist/themes/default/combo.css +35 -0
- package/dist/themes/default/combobox.css +40 -0
- package/dist/themes/default/datagrid.css +305 -0
- package/dist/themes/default/datalist.css +95 -0
- package/dist/themes/default/datebox.css +36 -0
- package/dist/themes/default/dialog.css +47 -0
- package/dist/themes/default/drawer.css +15 -0
- package/dist/themes/default/filebox.css +20 -0
- package/dist/themes/default/flex.css +52 -0
- package/dist/themes/default/images/accordion_arrows.png +0 -0
- package/dist/themes/default/images/blank.gif +0 -0
- package/dist/themes/default/images/calendar_arrows.png +0 -0
- package/dist/themes/default/images/combo_arrow.png +0 -0
- package/dist/themes/default/images/datagrid_icons.png +0 -0
- package/dist/themes/default/images/datebox_arrow.png +0 -0
- package/dist/themes/default/images/layout_arrows.png +0 -0
- package/dist/themes/default/images/linkbutton_bg.png +0 -0
- package/dist/themes/default/images/loading.gif +0 -0
- package/dist/themes/default/images/menu_arrows.png +0 -0
- package/dist/themes/default/images/messager_icons.png +0 -0
- package/dist/themes/default/images/messager_icons16.png +0 -0
- package/dist/themes/default/images/pagination_icons.png +0 -0
- package/dist/themes/default/images/panel_tools.png +0 -0
- package/dist/themes/default/images/passwordbox_close.png +0 -0
- package/dist/themes/default/images/passwordbox_open.png +0 -0
- package/dist/themes/default/images/searchbox_button.png +0 -0
- package/dist/themes/default/images/slider_handle.png +0 -0
- package/dist/themes/default/images/spinner_arrows.png +0 -0
- package/dist/themes/default/images/tabs_icons.png +0 -0
- package/dist/themes/default/images/tagbox_icons.png +0 -0
- package/dist/themes/default/images/tree_icons.png +0 -0
- package/dist/themes/default/images/validatebox_warning.png +0 -0
- package/dist/themes/default/index.css +3814 -0
- package/dist/themes/default/layout.css +150 -0
- package/dist/themes/default/linkbutton.css +203 -0
- package/dist/themes/default/menu.css +119 -0
- package/dist/themes/default/menubutton.css +94 -0
- package/dist/themes/default/messager.css +74 -0
- package/dist/themes/default/numberbox.css +0 -0
- package/dist/themes/default/pagination.css +77 -0
- package/dist/themes/default/panel.css +276 -0
- package/dist/themes/default/passwordbox.css +6 -0
- package/dist/themes/default/progressbar.css +33 -0
- package/dist/themes/default/propertygrid.css +27 -0
- package/dist/themes/default/radiobutton.css +25 -0
- package/dist/themes/default/rate.css +34 -0
- package/dist/themes/default/searchbox.css +61 -0
- package/dist/themes/default/sidemenu.css +78 -0
- package/dist/themes/default/slider.css +101 -0
- package/dist/themes/default/spinner.css +114 -0
- package/dist/themes/default/splitbutton.css +12 -0
- package/dist/themes/default/swiper.css +33 -0
- package/dist/themes/default/switchbutton.css +83 -0
- package/dist/themes/default/tabs.css +415 -0
- package/dist/themes/default/tagbox.css +44 -0
- package/dist/themes/default/textbox.css +173 -0
- package/dist/themes/default/timeline.css +41 -0
- package/dist/themes/default/timepicker.css +93 -0
- package/dist/themes/default/tooltip.css +101 -0
- package/dist/themes/default/tree.css +168 -0
- package/dist/themes/default/validatebox.css +13 -0
- package/dist/themes/default/window.css +188 -0
- package/dist/themes/gray/accordion.css +89 -0
- package/dist/themes/gray/calendar.css +213 -0
- package/dist/themes/gray/checkbox.css +31 -0
- package/dist/themes/gray/combo.css +35 -0
- package/dist/themes/gray/combobox.css +40 -0
- package/dist/themes/gray/datagrid.css +305 -0
- package/dist/themes/gray/datalist.css +95 -0
- package/dist/themes/gray/datebox.css +36 -0
- package/dist/themes/gray/dialog.css +47 -0
- package/dist/themes/gray/drawer.css +15 -0
- package/dist/themes/gray/filebox.css +20 -0
- package/dist/themes/gray/flex.css +52 -0
- package/dist/themes/gray/images/accordion_arrows.png +0 -0
- package/dist/themes/gray/images/blank.gif +0 -0
- package/dist/themes/gray/images/calendar_arrows.png +0 -0
- package/dist/themes/gray/images/combo_arrow.png +0 -0
- package/dist/themes/gray/images/datagrid_icons.png +0 -0
- package/dist/themes/gray/images/datebox_arrow.png +0 -0
- package/dist/themes/gray/images/layout_arrows.png +0 -0
- package/dist/themes/gray/images/linkbutton_bg.png +0 -0
- package/dist/themes/gray/images/loading.gif +0 -0
- package/dist/themes/gray/images/menu_arrows.png +0 -0
- package/dist/themes/gray/images/messager_icons.png +0 -0
- package/dist/themes/gray/images/messager_icons16.png +0 -0
- package/dist/themes/gray/images/pagination_icons.png +0 -0
- package/dist/themes/gray/images/panel_tools.png +0 -0
- package/dist/themes/gray/images/passwordbox_close.png +0 -0
- package/dist/themes/gray/images/passwordbox_open.png +0 -0
- package/dist/themes/gray/images/searchbox_button.png +0 -0
- package/dist/themes/gray/images/slider_handle.png +0 -0
- package/dist/themes/gray/images/spinner_arrows.png +0 -0
- package/dist/themes/gray/images/tabs_icons.png +0 -0
- package/dist/themes/gray/images/tagbox_icons.png +0 -0
- package/dist/themes/gray/images/tree_icons.png +0 -0
- package/dist/themes/gray/images/validatebox_warning.png +0 -0
- package/dist/themes/gray/index.css +3814 -0
- package/dist/themes/gray/layout.css +150 -0
- package/dist/themes/gray/linkbutton.css +203 -0
- package/dist/themes/gray/menu.css +119 -0
- package/dist/themes/gray/menubutton.css +94 -0
- package/dist/themes/gray/messager.css +74 -0
- package/dist/themes/gray/numberbox.css +0 -0
- package/dist/themes/gray/pagination.css +77 -0
- package/dist/themes/gray/panel.css +276 -0
- package/dist/themes/gray/passwordbox.css +6 -0
- package/dist/themes/gray/progressbar.css +33 -0
- package/dist/themes/gray/propertygrid.css +27 -0
- package/dist/themes/gray/radiobutton.css +25 -0
- package/dist/themes/gray/rate.css +34 -0
- package/dist/themes/gray/searchbox.css +61 -0
- package/dist/themes/gray/sidemenu.css +78 -0
- package/dist/themes/gray/slider.css +101 -0
- package/dist/themes/gray/spinner.css +114 -0
- package/dist/themes/gray/splitbutton.css +12 -0
- package/dist/themes/gray/swiper.css +33 -0
- package/dist/themes/gray/switchbutton.css +83 -0
- package/dist/themes/gray/tabs.css +415 -0
- package/dist/themes/gray/tagbox.css +44 -0
- package/dist/themes/gray/textbox.css +173 -0
- package/dist/themes/gray/timeline.css +41 -0
- package/dist/themes/gray/timepicker.css +93 -0
- package/dist/themes/gray/tooltip.css +101 -0
- package/dist/themes/gray/tree.css +168 -0
- package/dist/themes/gray/validatebox.css +13 -0
- package/dist/themes/gray/window.css +188 -0
- package/dist/themes/icon.css +96 -0
- package/dist/themes/icons/back.png +0 -0
- package/dist/themes/icons/blank.gif +0 -0
- package/dist/themes/icons/cancel.png +0 -0
- package/dist/themes/icons/clear.png +0 -0
- package/dist/themes/icons/cut.png +0 -0
- package/dist/themes/icons/edit_add.png +0 -0
- package/dist/themes/icons/edit_remove.png +0 -0
- package/dist/themes/icons/filesave.png +0 -0
- package/dist/themes/icons/filter.png +0 -0
- package/dist/themes/icons/help.png +0 -0
- package/dist/themes/icons/large_chart.png +0 -0
- package/dist/themes/icons/large_clipart.png +0 -0
- package/dist/themes/icons/large_picture.png +0 -0
- package/dist/themes/icons/large_shapes.png +0 -0
- package/dist/themes/icons/large_smartart.png +0 -0
- package/dist/themes/icons/lock.png +0 -0
- package/dist/themes/icons/man.png +0 -0
- package/dist/themes/icons/mini_add.png +0 -0
- package/dist/themes/icons/mini_edit.png +0 -0
- package/dist/themes/icons/mini_refresh.png +0 -0
- package/dist/themes/icons/more.png +0 -0
- package/dist/themes/icons/no.png +0 -0
- package/dist/themes/icons/ok.png +0 -0
- package/dist/themes/icons/pencil.png +0 -0
- package/dist/themes/icons/print.png +0 -0
- package/dist/themes/icons/redo.png +0 -0
- package/dist/themes/icons/reload.png +0 -0
- package/dist/themes/icons/search.png +0 -0
- package/dist/themes/icons/sum.png +0 -0
- package/dist/themes/icons/tip.png +0 -0
- package/dist/themes/icons/undo.png +0 -0
- package/dist/themes/material/accordion.css +89 -0
- package/dist/themes/material/calendar.css +213 -0
- package/dist/themes/material/checkbox.css +31 -0
- package/dist/themes/material/combo.css +35 -0
- package/dist/themes/material/combobox.css +40 -0
- package/dist/themes/material/datagrid.css +299 -0
- package/dist/themes/material/datalist.css +95 -0
- package/dist/themes/material/datebox.css +36 -0
- package/dist/themes/material/dialog.css +47 -0
- package/dist/themes/material/drawer.css +15 -0
- package/dist/themes/material/filebox.css +20 -0
- package/dist/themes/material/flex.css +52 -0
- package/dist/themes/material/images/Thumbs.db +0 -0
- package/dist/themes/material/images/accordion_arrows.png +0 -0
- package/dist/themes/material/images/blank.gif +0 -0
- package/dist/themes/material/images/calendar_arrows.png +0 -0
- package/dist/themes/material/images/combo_arrow.png +0 -0
- package/dist/themes/material/images/datagrid_icons.png +0 -0
- package/dist/themes/material/images/datebox_arrow.png +0 -0
- package/dist/themes/material/images/layout_arrows.png +0 -0
- package/dist/themes/material/images/linkbutton_bg.png +0 -0
- package/dist/themes/material/images/loading.gif +0 -0
- package/dist/themes/material/images/menu_arrows.png +0 -0
- package/dist/themes/material/images/messager_icons.png +0 -0
- package/dist/themes/material/images/messager_icons16.png +0 -0
- package/dist/themes/material/images/pagination_icons.png +0 -0
- package/dist/themes/material/images/panel_tools.png +0 -0
- package/dist/themes/material/images/passwordbox_close.png +0 -0
- package/dist/themes/material/images/passwordbox_open.png +0 -0
- package/dist/themes/material/images/searchbox_button.png +0 -0
- package/dist/themes/material/images/slider_handle.png +0 -0
- package/dist/themes/material/images/spinner_arrows.png +0 -0
- package/dist/themes/material/images/tabs_icons.png +0 -0
- package/dist/themes/material/images/tagbox_icons.png +0 -0
- package/dist/themes/material/images/tree_icons.png +0 -0
- package/dist/themes/material/images/validatebox_warning.png +0 -0
- package/dist/themes/material/index.css +3823 -0
- package/dist/themes/material/layout.css +150 -0
- package/dist/themes/material/linkbutton.css +191 -0
- package/dist/themes/material/menu.css +119 -0
- package/dist/themes/material/menubutton.css +94 -0
- package/dist/themes/material/messager.css +74 -0
- package/dist/themes/material/numberbox.css +0 -0
- package/dist/themes/material/pagination.css +77 -0
- package/dist/themes/material/panel.css +270 -0
- package/dist/themes/material/passwordbox.css +6 -0
- package/dist/themes/material/progressbar.css +33 -0
- package/dist/themes/material/propertygrid.css +27 -0
- package/dist/themes/material/radiobutton.css +25 -0
- package/dist/themes/material/rate.css +34 -0
- package/dist/themes/material/searchbox.css +61 -0
- package/dist/themes/material/sidemenu.css +78 -0
- package/dist/themes/material/slider.css +101 -0
- package/dist/themes/material/spinner.css +114 -0
- package/dist/themes/material/splitbutton.css +12 -0
- package/dist/themes/material/swiper.css +33 -0
- package/dist/themes/material/switchbutton.css +83 -0
- package/dist/themes/material/tabs.css +379 -0
- package/dist/themes/material/tagbox.css +44 -0
- package/dist/themes/material/textbox.css +173 -0
- package/dist/themes/material/timeline.css +41 -0
- package/dist/themes/material/timepicker.css +93 -0
- package/dist/themes/material/tooltip.css +101 -0
- package/dist/themes/material/tree.css +168 -0
- package/dist/themes/material/validatebox.css +13 -0
- package/dist/themes/material/window.css +182 -0
- package/dist/themes/material-blue/accordion.css +89 -0
- package/dist/themes/material-blue/calendar.css +213 -0
- package/dist/themes/material-blue/checkbox.css +31 -0
- package/dist/themes/material-blue/combo.css +35 -0
- package/dist/themes/material-blue/combobox.css +40 -0
- package/dist/themes/material-blue/datagrid.css +299 -0
- package/dist/themes/material-blue/datalist.css +95 -0
- package/dist/themes/material-blue/datebox.css +36 -0
- package/dist/themes/material-blue/dialog.css +47 -0
- package/dist/themes/material-blue/drawer.css +15 -0
- package/dist/themes/material-blue/filebox.css +20 -0
- package/dist/themes/material-blue/flex.css +52 -0
- package/dist/themes/material-blue/images/accordion_arrows.png +0 -0
- package/dist/themes/material-blue/images/blank.gif +0 -0
- package/dist/themes/material-blue/images/calendar_arrows.png +0 -0
- package/dist/themes/material-blue/images/combo_arrow.png +0 -0
- package/dist/themes/material-blue/images/datagrid_icons.png +0 -0
- package/dist/themes/material-blue/images/datebox_arrow.png +0 -0
- package/dist/themes/material-blue/images/layout_arrows.png +0 -0
- package/dist/themes/material-blue/images/linkbutton_bg.png +0 -0
- package/dist/themes/material-blue/images/loading.gif +0 -0
- package/dist/themes/material-blue/images/menu_arrows.png +0 -0
- package/dist/themes/material-blue/images/menu_arrows1.png +0 -0
- package/dist/themes/material-blue/images/menu_arrows2.png +0 -0
- package/dist/themes/material-blue/images/messager_icons.png +0 -0
- package/dist/themes/material-blue/images/messager_icons16.png +0 -0
- package/dist/themes/material-blue/images/pagination_icons.png +0 -0
- package/dist/themes/material-blue/images/panel_tools.png +0 -0
- package/dist/themes/material-blue/images/passwordbox_close.png +0 -0
- package/dist/themes/material-blue/images/passwordbox_open.png +0 -0
- package/dist/themes/material-blue/images/searchbox_button.png +0 -0
- package/dist/themes/material-blue/images/slider_handle.png +0 -0
- package/dist/themes/material-blue/images/spinner_arrows.png +0 -0
- package/dist/themes/material-blue/images/tabs_icons.png +0 -0
- package/dist/themes/material-blue/images/tagbox_icons.png +0 -0
- package/dist/themes/material-blue/images/tree_icons.png +0 -0
- package/dist/themes/material-blue/images/validatebox_warning.png +0 -0
- package/dist/themes/material-blue/index.css +4081 -0
- package/dist/themes/material-blue/layout.css +150 -0
- package/dist/themes/material-blue/linkbutton.css +191 -0
- package/dist/themes/material-blue/menu.css +119 -0
- package/dist/themes/material-blue/menubutton.css +94 -0
- package/dist/themes/material-blue/messager.css +74 -0
- package/dist/themes/material-blue/numberbox.css +0 -0
- package/dist/themes/material-blue/pagination.css +77 -0
- package/dist/themes/material-blue/panel.css +270 -0
- package/dist/themes/material-blue/passwordbox.css +6 -0
- package/dist/themes/material-blue/progressbar.css +33 -0
- package/dist/themes/material-blue/propertygrid.css +27 -0
- package/dist/themes/material-blue/radiobutton.css +25 -0
- package/dist/themes/material-blue/rate.css +34 -0
- package/dist/themes/material-blue/searchbox.css +61 -0
- package/dist/themes/material-blue/sidemenu.css +78 -0
- package/dist/themes/material-blue/slider.css +101 -0
- package/dist/themes/material-blue/spinner.css +114 -0
- package/dist/themes/material-blue/splitbutton.css +12 -0
- package/dist/themes/material-blue/swiper.css +33 -0
- package/dist/themes/material-blue/switchbutton.css +83 -0
- package/dist/themes/material-blue/tabs.css +379 -0
- package/dist/themes/material-blue/tagbox.css +44 -0
- package/dist/themes/material-blue/textbox.css +173 -0
- package/dist/themes/material-blue/timeline.css +41 -0
- package/dist/themes/material-blue/timepicker.css +93 -0
- package/dist/themes/material-blue/tooltip.css +101 -0
- package/dist/themes/material-blue/tree.css +168 -0
- package/dist/themes/material-blue/validatebox.css +13 -0
- package/dist/themes/material-blue/window.css +182 -0
- package/dist/themes/material-teal/accordion.css +89 -0
- package/dist/themes/material-teal/calendar.css +213 -0
- package/dist/themes/material-teal/checkbox.css +31 -0
- package/dist/themes/material-teal/combo.css +35 -0
- package/dist/themes/material-teal/combobox.css +40 -0
- package/dist/themes/material-teal/datagrid.css +299 -0
- package/dist/themes/material-teal/datalist.css +95 -0
- package/dist/themes/material-teal/datebox.css +36 -0
- package/dist/themes/material-teal/dialog.css +47 -0
- package/dist/themes/material-teal/drawer.css +15 -0
- package/dist/themes/material-teal/filebox.css +20 -0
- package/dist/themes/material-teal/flex.css +52 -0
- package/dist/themes/material-teal/images/Thumbs.db +0 -0
- package/dist/themes/material-teal/images/accordion_arrows.png +0 -0
- package/dist/themes/material-teal/images/blank.gif +0 -0
- package/dist/themes/material-teal/images/calendar_arrows.png +0 -0
- package/dist/themes/material-teal/images/combo_arrow.png +0 -0
- package/dist/themes/material-teal/images/datagrid_icons.png +0 -0
- package/dist/themes/material-teal/images/datebox_arrow.png +0 -0
- package/dist/themes/material-teal/images/layout_arrows.png +0 -0
- package/dist/themes/material-teal/images/linkbutton_bg.png +0 -0
- package/dist/themes/material-teal/images/loading.gif +0 -0
- package/dist/themes/material-teal/images/menu_arrows.png +0 -0
- package/dist/themes/material-teal/images/messager_icons.png +0 -0
- package/dist/themes/material-teal/images/messager_icons16.png +0 -0
- package/dist/themes/material-teal/images/pagination_icons.png +0 -0
- package/dist/themes/material-teal/images/panel_tools.png +0 -0
- package/dist/themes/material-teal/images/passwordbox_close.png +0 -0
- package/dist/themes/material-teal/images/passwordbox_open.png +0 -0
- package/dist/themes/material-teal/images/searchbox_button.png +0 -0
- package/dist/themes/material-teal/images/slider_handle.png +0 -0
- package/dist/themes/material-teal/images/spinner_arrows.png +0 -0
- package/dist/themes/material-teal/images/tabs_icons.png +0 -0
- package/dist/themes/material-teal/images/tagbox_icons.png +0 -0
- package/dist/themes/material-teal/images/tree_icons.png +0 -0
- package/dist/themes/material-teal/images/validatebox_warning.png +0 -0
- package/dist/themes/material-teal/index.css +3965 -0
- package/dist/themes/material-teal/layout.css +150 -0
- package/dist/themes/material-teal/linkbutton.css +191 -0
- package/dist/themes/material-teal/menu.css +119 -0
- package/dist/themes/material-teal/menubutton.css +94 -0
- package/dist/themes/material-teal/messager.css +74 -0
- package/dist/themes/material-teal/numberbox.css +0 -0
- package/dist/themes/material-teal/pagination.css +77 -0
- package/dist/themes/material-teal/panel.css +270 -0
- package/dist/themes/material-teal/passwordbox.css +6 -0
- package/dist/themes/material-teal/progressbar.css +33 -0
- package/dist/themes/material-teal/propertygrid.css +27 -0
- package/dist/themes/material-teal/radiobutton.css +25 -0
- package/dist/themes/material-teal/rate.css +34 -0
- package/dist/themes/material-teal/searchbox.css +61 -0
- package/dist/themes/material-teal/sidemenu.css +78 -0
- package/dist/themes/material-teal/slider.css +101 -0
- package/dist/themes/material-teal/spinner.css +114 -0
- package/dist/themes/material-teal/splitbutton.css +12 -0
- package/dist/themes/material-teal/swiper.css +33 -0
- package/dist/themes/material-teal/switchbutton.css +83 -0
- package/dist/themes/material-teal/tabs.css +379 -0
- package/dist/themes/material-teal/tagbox.css +44 -0
- package/dist/themes/material-teal/textbox.css +173 -0
- package/dist/themes/material-teal/timeline.css +41 -0
- package/dist/themes/material-teal/timepicker.css +93 -0
- package/dist/themes/material-teal/tooltip.css +101 -0
- package/dist/themes/material-teal/tree.css +168 -0
- package/dist/themes/material-teal/validatebox.css +13 -0
- package/dist/themes/material-teal/window.css +182 -0
- package/dist/themes/metro/accordion.css +89 -0
- package/dist/themes/metro/calendar.css +213 -0
- package/dist/themes/metro/checkbox.css +31 -0
- package/dist/themes/metro/combo.css +35 -0
- package/dist/themes/metro/combobox.css +40 -0
- package/dist/themes/metro/datagrid.css +299 -0
- package/dist/themes/metro/datalist.css +95 -0
- package/dist/themes/metro/datebox.css +36 -0
- package/dist/themes/metro/dialog.css +47 -0
- package/dist/themes/metro/drawer.css +15 -0
- package/dist/themes/metro/filebox.css +20 -0
- package/dist/themes/metro/flex.css +52 -0
- package/dist/themes/metro/images/accordion_arrows.png +0 -0
- package/dist/themes/metro/images/blank.gif +0 -0
- package/dist/themes/metro/images/calendar_arrows.png +0 -0
- package/dist/themes/metro/images/combo_arrow.png +0 -0
- package/dist/themes/metro/images/datagrid_icons.png +0 -0
- package/dist/themes/metro/images/datebox_arrow.png +0 -0
- package/dist/themes/metro/images/layout_arrows.png +0 -0
- package/dist/themes/metro/images/linkbutton_bg.png +0 -0
- package/dist/themes/metro/images/loading.gif +0 -0
- package/dist/themes/metro/images/menu_arrows.png +0 -0
- package/dist/themes/metro/images/messager_icons.png +0 -0
- package/dist/themes/metro/images/messager_icons16.png +0 -0
- package/dist/themes/metro/images/pagination_icons.png +0 -0
- package/dist/themes/metro/images/panel_tools.png +0 -0
- package/dist/themes/metro/images/passwordbox_close.png +0 -0
- package/dist/themes/metro/images/passwordbox_open.png +0 -0
- package/dist/themes/metro/images/searchbox_button.png +0 -0
- package/dist/themes/metro/images/slider_handle.png +0 -0
- package/dist/themes/metro/images/spinner_arrows.png +0 -0
- package/dist/themes/metro/images/tabs_icons.png +0 -0
- package/dist/themes/metro/images/tagbox_icons.png +0 -0
- package/dist/themes/metro/images/tree_icons.png +0 -0
- package/dist/themes/metro/images/validatebox_warning.png +0 -0
- package/dist/themes/metro/index.css +3760 -0
- package/dist/themes/metro/layout.css +150 -0
- package/dist/themes/metro/linkbutton.css +203 -0
- package/dist/themes/metro/menu.css +119 -0
- package/dist/themes/metro/menubutton.css +94 -0
- package/dist/themes/metro/messager.css +74 -0
- package/dist/themes/metro/numberbox.css +0 -0
- package/dist/themes/metro/pagination.css +77 -0
- package/dist/themes/metro/panel.css +270 -0
- package/dist/themes/metro/passwordbox.css +6 -0
- package/dist/themes/metro/progressbar.css +33 -0
- package/dist/themes/metro/propertygrid.css +27 -0
- package/dist/themes/metro/radiobutton.css +25 -0
- package/dist/themes/metro/rate.css +34 -0
- package/dist/themes/metro/searchbox.css +61 -0
- package/dist/themes/metro/sidemenu.css +78 -0
- package/dist/themes/metro/slider.css +101 -0
- package/dist/themes/metro/spinner.css +114 -0
- package/dist/themes/metro/splitbutton.css +12 -0
- package/dist/themes/metro/swiper.css +33 -0
- package/dist/themes/metro/switchbutton.css +83 -0
- package/dist/themes/metro/tabs.css +379 -0
- package/dist/themes/metro/tagbox.css +44 -0
- package/dist/themes/metro/textbox.css +173 -0
- package/dist/themes/metro/timeline.css +41 -0
- package/dist/themes/metro/timepicker.css +93 -0
- package/dist/themes/metro/tooltip.css +101 -0
- package/dist/themes/metro/tree.css +168 -0
- package/dist/themes/metro/validatebox.css +13 -0
- package/dist/themes/metro/window.css +182 -0
- package/dist/themes/mobile.css +352 -0
- package/dist/themes/vue.css +736 -0
- package/dist/utils/exposeMethods.d.ts +47 -0
- package/dist/utils/exposeMethods.d.ts.map +1 -0
- package/dist/viteui.js +13944 -0
- package/dist/viteui.js.map +1 -0
- package/dist/viteui.umd.cjs +2 -0
- package/dist/viteui.umd.cjs.map +1 -0
- package/package.json +39 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DroppableClass.d.ts","sourceRoot":"","sources":["../../../src/components/droppable/DroppableClass.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,KAAK,EAAE,gBAAgB,EAAE,cAAc,IAAI,eAAe,EAAE,MAAM,SAAS,CAAC;AAEnF,qBAAa,cAAe,YAAW,eAAe;IACpD,GAAG,EAAE,WAAW,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAQ;IACvC,QAAQ,EAAE,OAAO,CAAS;IAC1B,SAAS,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAY;IAC3C,QAAQ,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAY;IAC1C,SAAS,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAY;IAC3C,IAAI,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAY;IACtC,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,KAAK,CAAC,EAAE,QAAQ,GAAG,KAAK,GAAG,QAAQ,CAAC;IACpC,KAAK,CAAC,EAAE,GAAG,CAAC;gBAEA,EAAE,EAAE,WAAW,EAAE,KAAK,GAAE,gBAAgB,GAAG,IAAW;IAKlE,aAAa,CAAC,KAAK,GAAE,gBAAgB,GAAG,IAAW,GAAG,IAAI;IAY1D,SAAS,CAAC,KAAK,GAAE,GAAU,GAAG,OAAO;CAetC;AAED,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EasyUI for Vue 3.0.15
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2009-2024 www.jeasyui.com. All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the commercial license: https://www.jeasyui.com/license_commercial4.php
|
|
7
|
+
* To use it on other terms please contact us: info@jeasyui.com
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
import Droppable from './Droppable';
|
|
11
|
+
import DroppableClass from './DroppableClass';
|
|
12
|
+
export { Droppable, DroppableClass };
|
|
13
|
+
export type { DroppableOptions, DroppableClass as IDroppableClass } from './types';
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/droppable/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAE9C,OAAO,EACL,SAAS,EACT,cAAc,EACf,CAAC;AAEF,YAAY,EACV,gBAAgB,EAChB,cAAc,IAAI,eAAe,EAClC,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Droppable 组件类型定义
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Droppable 选项接口
|
|
6
|
+
*/
|
|
7
|
+
export interface DroppableOptions {
|
|
8
|
+
/**
|
|
9
|
+
* 作用域
|
|
10
|
+
*/
|
|
11
|
+
scope?: string | string[] | null;
|
|
12
|
+
/**
|
|
13
|
+
* 是否禁用
|
|
14
|
+
* @default false
|
|
15
|
+
*/
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* 拖拽进入回调
|
|
19
|
+
*/
|
|
20
|
+
dragEnter?: (scope: any) => void;
|
|
21
|
+
/**
|
|
22
|
+
* 拖拽悬停回调
|
|
23
|
+
*/
|
|
24
|
+
dragOver?: (scope: any) => void;
|
|
25
|
+
/**
|
|
26
|
+
* 拖拽离开回调
|
|
27
|
+
*/
|
|
28
|
+
dragLeave?: (scope: any) => void;
|
|
29
|
+
/**
|
|
30
|
+
* 放置回调
|
|
31
|
+
*/
|
|
32
|
+
drop?: (scope: any) => void;
|
|
33
|
+
/**
|
|
34
|
+
* 节点(用于 Tree 等组件)
|
|
35
|
+
*/
|
|
36
|
+
node?: any;
|
|
37
|
+
/**
|
|
38
|
+
* 点(用于拖拽位置)
|
|
39
|
+
*/
|
|
40
|
+
point?: 'append' | 'top' | 'bottom';
|
|
41
|
+
/**
|
|
42
|
+
* 事件
|
|
43
|
+
*/
|
|
44
|
+
event?: any;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* DroppableClass 类接口
|
|
48
|
+
*/
|
|
49
|
+
export interface DroppableClass {
|
|
50
|
+
/**
|
|
51
|
+
* 元素
|
|
52
|
+
*/
|
|
53
|
+
$el: HTMLElement;
|
|
54
|
+
/**
|
|
55
|
+
* 作用域
|
|
56
|
+
*/
|
|
57
|
+
scope: string | string[] | null;
|
|
58
|
+
/**
|
|
59
|
+
* 是否禁用
|
|
60
|
+
*/
|
|
61
|
+
disabled: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* 拖拽进入回调
|
|
64
|
+
*/
|
|
65
|
+
dragEnter: (scope: any) => void;
|
|
66
|
+
/**
|
|
67
|
+
* 拖拽悬停回调
|
|
68
|
+
*/
|
|
69
|
+
dragOver: (scope: any) => void;
|
|
70
|
+
/**
|
|
71
|
+
* 拖拽离开回调
|
|
72
|
+
*/
|
|
73
|
+
dragLeave: (scope: any) => void;
|
|
74
|
+
/**
|
|
75
|
+
* 放置回调
|
|
76
|
+
*/
|
|
77
|
+
drop: (scope: any) => void;
|
|
78
|
+
/**
|
|
79
|
+
* 节点(用于 Tree 等组件)
|
|
80
|
+
*/
|
|
81
|
+
node?: any;
|
|
82
|
+
/**
|
|
83
|
+
* 点(用于拖拽位置)
|
|
84
|
+
*/
|
|
85
|
+
point?: 'append' | 'top' | 'bottom';
|
|
86
|
+
/**
|
|
87
|
+
* 事件
|
|
88
|
+
*/
|
|
89
|
+
event?: any;
|
|
90
|
+
/**
|
|
91
|
+
* 更新选项
|
|
92
|
+
*/
|
|
93
|
+
updateOptions(value?: DroppableOptions | null): void;
|
|
94
|
+
/**
|
|
95
|
+
* 检查是否可以放置
|
|
96
|
+
*/
|
|
97
|
+
checkDrop(scope?: any): boolean;
|
|
98
|
+
}
|
|
99
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/droppable/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC;IAEjC;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAEjC;;OAEG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAEhC;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAEjC;;OAEG;IACH,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAE5B;;OAEG;IACH,IAAI,CAAC,EAAE,GAAG,CAAC;IAEX;;OAEG;IACH,KAAK,CAAC,EAAE,QAAQ,GAAG,KAAK,GAAG,QAAQ,CAAC;IAEpC;;OAEG;IACH,KAAK,CAAC,EAAE,GAAG,CAAC;CACb;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,GAAG,EAAE,WAAW,CAAC;IAEjB;;OAEG;IACH,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC;IAEhC;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAEhC;;OAEG;IACH,QAAQ,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAE/B;;OAEG;IACH,SAAS,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAEhC;;OAEG;IACH,IAAI,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAE3B;;OAEG;IACH,IAAI,CAAC,EAAE,GAAG,CAAC;IAEX;;OAEG;IACH,KAAK,CAAC,EAAE,QAAQ,GAAG,KAAK,GAAG,QAAQ,CAAC;IAEpC;;OAEG;IACH,KAAK,CAAC,EAAE,GAAG,CAAC;IAEZ;;OAEG;IACH,aAAa,CAAC,KAAK,CAAC,EAAE,gBAAgB,GAAG,IAAI,GAAG,IAAI,CAAC;IAErD;;OAEG;IACH,SAAS,CAAC,KAAK,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC;CACjC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
href?: string | undefined;
|
|
3
|
+
name?: string | undefined;
|
|
4
|
+
accept?: string | undefined;
|
|
5
|
+
capture?: string | undefined;
|
|
6
|
+
multiple?: boolean | undefined;
|
|
7
|
+
url?: string | undefined;
|
|
8
|
+
method?: string | undefined;
|
|
9
|
+
autoUpload?: boolean | undefined;
|
|
10
|
+
withCredentials?: boolean | undefined;
|
|
11
|
+
disabled?: boolean | undefined;
|
|
12
|
+
toggle?: boolean | undefined;
|
|
13
|
+
selected?: boolean | undefined;
|
|
14
|
+
outline?: boolean | undefined;
|
|
15
|
+
plain?: boolean | undefined;
|
|
16
|
+
text?: string | undefined;
|
|
17
|
+
iconCls?: string | undefined;
|
|
18
|
+
iconAlign?: "left" | "right" | undefined;
|
|
19
|
+
size?: "small" | "large" | undefined;
|
|
20
|
+
btnCls?: string | undefined;
|
|
21
|
+
btnStyle?: Record<string, any> | undefined;
|
|
22
|
+
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
23
|
+
href?: string | undefined;
|
|
24
|
+
name?: string | undefined;
|
|
25
|
+
accept?: string | undefined;
|
|
26
|
+
capture?: string | undefined;
|
|
27
|
+
multiple?: boolean | undefined;
|
|
28
|
+
url?: string | undefined;
|
|
29
|
+
method?: string | undefined;
|
|
30
|
+
autoUpload?: boolean | undefined;
|
|
31
|
+
withCredentials?: boolean | undefined;
|
|
32
|
+
disabled?: boolean | undefined;
|
|
33
|
+
toggle?: boolean | undefined;
|
|
34
|
+
selected?: boolean | undefined;
|
|
35
|
+
outline?: boolean | undefined;
|
|
36
|
+
plain?: boolean | undefined;
|
|
37
|
+
text?: string | undefined;
|
|
38
|
+
iconCls?: string | undefined;
|
|
39
|
+
iconAlign?: "left" | "right" | undefined;
|
|
40
|
+
size?: "small" | "large" | undefined;
|
|
41
|
+
btnCls?: string | undefined;
|
|
42
|
+
btnStyle?: Record<string, any> | undefined;
|
|
43
|
+
}> & Readonly<{}>, {
|
|
44
|
+
toggle: boolean | undefined;
|
|
45
|
+
name: string | undefined;
|
|
46
|
+
size: "small" | "large" | undefined;
|
|
47
|
+
multiple: boolean | undefined;
|
|
48
|
+
disabled: boolean | undefined;
|
|
49
|
+
href: string | undefined;
|
|
50
|
+
selected: boolean | undefined;
|
|
51
|
+
outline: boolean | undefined;
|
|
52
|
+
plain: boolean | undefined;
|
|
53
|
+
iconAlign: "left" | "right" | undefined;
|
|
54
|
+
method: string | undefined;
|
|
55
|
+
autoUpload: boolean | undefined;
|
|
56
|
+
withCredentials: boolean | undefined;
|
|
57
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
58
|
+
export default _default;
|
|
59
|
+
//# sourceMappingURL=FileButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileButton.d.ts","sourceRoot":"","sources":["../../../src/components/filebutton/FileButton.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiBA,wBA4GG"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EasyUI for Vue 3.0.15
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2009-2024 www.jeasyui.com. All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the commercial license: https://www.jeasyui.com/license_commercial4.php
|
|
7
|
+
* To use it on other terms please contact us: info@jeasyui.com
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
import FileButton from './FileButton';
|
|
11
|
+
export { FileButton };
|
|
12
|
+
export type { FileButtonProps, FileButtonInstance } from './types';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/filebutton/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,UAAU,MAAM,cAAc,CAAC;AAEtC,OAAO,EACH,UAAU,EACb,CAAC;AAEF,YAAY,EACR,eAAe,EACf,kBAAkB,EACrB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FileButton 组件类型定义
|
|
3
|
+
*/
|
|
4
|
+
import type { LinkButtonInstance } from '../linkbutton/types';
|
|
5
|
+
import type { LinkButtonProps } from '../linkbutton/types';
|
|
6
|
+
/**
|
|
7
|
+
* FileButton Props 接口
|
|
8
|
+
*/
|
|
9
|
+
export interface FileButtonProps extends LinkButtonProps {
|
|
10
|
+
/**
|
|
11
|
+
* 链接地址
|
|
12
|
+
* @default 'javascript:;'
|
|
13
|
+
*/
|
|
14
|
+
href?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 文件字段名
|
|
17
|
+
* @default 'file'
|
|
18
|
+
*/
|
|
19
|
+
name?: string;
|
|
20
|
+
/**
|
|
21
|
+
* 接受的文件类型
|
|
22
|
+
*/
|
|
23
|
+
accept?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 捕获模式
|
|
26
|
+
*/
|
|
27
|
+
capture?: string;
|
|
28
|
+
/**
|
|
29
|
+
* 是否多选
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
multiple?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* 上传地址
|
|
35
|
+
*/
|
|
36
|
+
url?: string;
|
|
37
|
+
/**
|
|
38
|
+
* 请求方法
|
|
39
|
+
* @default 'POST'
|
|
40
|
+
*/
|
|
41
|
+
method?: string;
|
|
42
|
+
/**
|
|
43
|
+
* 是否自动上传
|
|
44
|
+
* @default true
|
|
45
|
+
*/
|
|
46
|
+
autoUpload?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* 是否携带凭证
|
|
49
|
+
* @default true
|
|
50
|
+
*/
|
|
51
|
+
withCredentials?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* 是否禁用(继承自 LinkButton)
|
|
54
|
+
*/
|
|
55
|
+
disabled?: boolean;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* FileButton 组件实例接口
|
|
59
|
+
* 继承自 LinkButton
|
|
60
|
+
*/
|
|
61
|
+
export interface FileButtonInstance extends LinkButtonInstance {
|
|
62
|
+
/**
|
|
63
|
+
* 上传文件
|
|
64
|
+
*/
|
|
65
|
+
upload(): void;
|
|
66
|
+
/**
|
|
67
|
+
* 清空文件
|
|
68
|
+
*/
|
|
69
|
+
clear(): void;
|
|
70
|
+
/**
|
|
71
|
+
* 文件 ID
|
|
72
|
+
*/
|
|
73
|
+
fileId: string;
|
|
74
|
+
/**
|
|
75
|
+
* 文件数组
|
|
76
|
+
*/
|
|
77
|
+
files: File[];
|
|
78
|
+
/**
|
|
79
|
+
* 文件引用
|
|
80
|
+
*/
|
|
81
|
+
$refs: {
|
|
82
|
+
btnRef?: HTMLAnchorElement;
|
|
83
|
+
fileRef?: HTMLInputElement;
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/filebutton/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAE3D;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,eAAe;IACtD;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;;GAGG;AACH,MAAM,WAAW,kBAAmB,SAAQ,kBAAkB;IAC5D;;OAEG;IACH,MAAM,IAAI,IAAI,CAAC;IAEf;;OAEG;IACH,KAAK,IAAI,IAAI,CAAC;IAEd;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,KAAK,EAAE,IAAI,EAAE,CAAC;IAEd;;OAEG;IACH,KAAK,EAAE;QACL,MAAM,CAAC,EAAE,iBAAiB,CAAC;QAC3B,OAAO,CAAC,EAAE,gBAAgB,CAAC;KAC5B,CAAC;CACH"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
model?: Record<string, any> | undefined;
|
|
3
|
+
rules?: Record<string, any> | undefined;
|
|
4
|
+
messages?: Record<string, any> | undefined;
|
|
5
|
+
labelPosition?: "before" | "after" | "top" | undefined;
|
|
6
|
+
labelAlign?: "left" | "right" | "center" | undefined;
|
|
7
|
+
labelWidth?: number | string | undefined;
|
|
8
|
+
floatingLabel?: boolean | undefined;
|
|
9
|
+
errorType?: "label" | "tooltip" | undefined;
|
|
10
|
+
tooltipPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
11
|
+
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
12
|
+
model?: Record<string, any> | undefined;
|
|
13
|
+
rules?: Record<string, any> | undefined;
|
|
14
|
+
messages?: Record<string, any> | undefined;
|
|
15
|
+
labelPosition?: "before" | "after" | "top" | undefined;
|
|
16
|
+
labelAlign?: "left" | "right" | "center" | undefined;
|
|
17
|
+
labelWidth?: number | string | undefined;
|
|
18
|
+
floatingLabel?: boolean | undefined;
|
|
19
|
+
errorType?: "label" | "tooltip" | undefined;
|
|
20
|
+
tooltipPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
21
|
+
}> & Readonly<{}>, {
|
|
22
|
+
labelPosition: "top" | "after" | "before" | undefined;
|
|
23
|
+
labelAlign: "center" | "left" | "right" | undefined;
|
|
24
|
+
labelWidth: string | number | undefined;
|
|
25
|
+
floatingLabel: boolean | undefined;
|
|
26
|
+
errorType: "label" | "tooltip" | undefined;
|
|
27
|
+
tooltipPosition: "left" | "right" | "bottom" | "top" | undefined;
|
|
28
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
export default _default;
|
|
30
|
+
//# sourceMappingURL=Form.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../src/components/form/Form.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAYA,wBA6QG"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
name?: string | undefined;
|
|
3
|
+
label?: string | undefined;
|
|
4
|
+
labelPosition?: "before" | "after" | "top" | undefined;
|
|
5
|
+
labelAlign?: "left" | "right" | "center" | undefined;
|
|
6
|
+
labelFor?: string | undefined;
|
|
7
|
+
labelWidth?: number | string | undefined;
|
|
8
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
11
|
+
name?: string | undefined;
|
|
12
|
+
label?: string | undefined;
|
|
13
|
+
labelPosition?: "before" | "after" | "top" | undefined;
|
|
14
|
+
labelAlign?: "left" | "right" | "center" | undefined;
|
|
15
|
+
labelFor?: string | undefined;
|
|
16
|
+
labelWidth?: number | string | undefined;
|
|
17
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
19
|
+
//# sourceMappingURL=FormField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FormField.d.ts","sourceRoot":"","sources":["../../../src/components/form/FormField.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAgBA,wBAiLG"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EasyUI for Vue 3.0.15
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2009-2024 www.jeasyui.com. All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the commercial license: https://www.jeasyui.com/license_commercial4.php
|
|
7
|
+
* To use it on other terms please contact us: info@jeasyui.com
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
import Form from './Form';
|
|
11
|
+
import FormField from './FormField';
|
|
12
|
+
export { Form, FormField };
|
|
13
|
+
export type { FormProps, FormInstance, FormFieldProps, Field } from './types';
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,OAAO,EACH,IAAI,EACJ,SAAS,EACZ,CAAC;AAEF,YAAY,EACR,SAAS,EACT,YAAY,EACZ,cAAc,EACd,KAAK,EACR,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EasyUI for Vue 3.0.15
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2009-2024 www.jeasyui.com. All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the commercial license: https://www.jeasyui.com/license_commercial4.php
|
|
7
|
+
* To use it on other terms please contact us: info@jeasyui.com
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* 验证规则参数类型
|
|
12
|
+
*/
|
|
13
|
+
export type ValidationParam = any[] | any;
|
|
14
|
+
/**
|
|
15
|
+
* 验证器函数类型
|
|
16
|
+
*/
|
|
17
|
+
export type ValidatorFunction = (value: any, param?: ValidationParam) => boolean | Promise<boolean>;
|
|
18
|
+
/**
|
|
19
|
+
* 验证规则接口
|
|
20
|
+
*/
|
|
21
|
+
export interface ValidationRule {
|
|
22
|
+
/**
|
|
23
|
+
* 验证器函数
|
|
24
|
+
*/
|
|
25
|
+
validator: ValidatorFunction;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
*/
|
|
29
|
+
message: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* 验证规则集合
|
|
33
|
+
*/
|
|
34
|
+
export interface ValidationRules {
|
|
35
|
+
/**
|
|
36
|
+
* 必填验证
|
|
37
|
+
*/
|
|
38
|
+
required: ValidationRule;
|
|
39
|
+
/**
|
|
40
|
+
* 长度验证
|
|
41
|
+
*/
|
|
42
|
+
length: ValidationRule;
|
|
43
|
+
/**
|
|
44
|
+
* 邮箱验证
|
|
45
|
+
*/
|
|
46
|
+
email: ValidationRule;
|
|
47
|
+
/**
|
|
48
|
+
* URL验证
|
|
49
|
+
*/
|
|
50
|
+
url: ValidationRule;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* 默认验证规则
|
|
54
|
+
*/
|
|
55
|
+
declare const rules: ValidationRules;
|
|
56
|
+
export default rules;
|
|
57
|
+
//# sourceMappingURL=rules.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rules.d.ts","sourceRoot":"","sources":["../../../src/components/form/rules.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,GAAG,EAAE,GAAG,GAAG,CAAC;AAE1C;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,CAAC,EAAE,eAAe,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;AAEpG;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,SAAS,EAAE,iBAAiB,CAAC;IAE7B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,QAAQ,EAAE,cAAc,CAAC;IAEzB;;OAEG;IACH,MAAM,EAAE,cAAc,CAAC;IAEvB;;OAEG;IACH,KAAK,EAAE,cAAc,CAAC;IAEtB;;OAEG;IACH,GAAG,EAAE,cAAc,CAAC;CACvB;AAED;;GAEG;AACH,QAAA,MAAM,KAAK,EAAE,eAuCZ,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form 组件类型定义
|
|
3
|
+
*/
|
|
4
|
+
import type { ComponentPublicInstance } from 'vue';
|
|
5
|
+
/**
|
|
6
|
+
* FormField 组件实例接口
|
|
7
|
+
*/
|
|
8
|
+
export interface Field extends ComponentPublicInstance {
|
|
9
|
+
/**
|
|
10
|
+
* 字段名称
|
|
11
|
+
*/
|
|
12
|
+
fieldName: string;
|
|
13
|
+
/**
|
|
14
|
+
* 是否聚焦
|
|
15
|
+
*/
|
|
16
|
+
focused: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* 是否在创建时验证
|
|
19
|
+
*/
|
|
20
|
+
validateOnCreate?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* 是否在失焦时验证
|
|
23
|
+
*/
|
|
24
|
+
validateOnBlur?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* 是否在改变时验证
|
|
27
|
+
*/
|
|
28
|
+
validateOnChange?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* 设置有效状态
|
|
31
|
+
*/
|
|
32
|
+
setValid(valid: boolean): void;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Form Props 接口
|
|
36
|
+
*/
|
|
37
|
+
export interface FormProps {
|
|
38
|
+
/**
|
|
39
|
+
* 模型
|
|
40
|
+
*/
|
|
41
|
+
model?: Record<string, any>;
|
|
42
|
+
/**
|
|
43
|
+
* 规则
|
|
44
|
+
*/
|
|
45
|
+
rules?: Record<string, any>;
|
|
46
|
+
/**
|
|
47
|
+
* 消息
|
|
48
|
+
*/
|
|
49
|
+
messages?: Record<string, any>;
|
|
50
|
+
/**
|
|
51
|
+
* 标签位置
|
|
52
|
+
* @default 'before'
|
|
53
|
+
*/
|
|
54
|
+
labelPosition?: 'before' | 'after' | 'top';
|
|
55
|
+
/**
|
|
56
|
+
* 标签对齐
|
|
57
|
+
* @default 'left'
|
|
58
|
+
*/
|
|
59
|
+
labelAlign?: 'left' | 'right' | 'center';
|
|
60
|
+
/**
|
|
61
|
+
* 标签宽度
|
|
62
|
+
* @default 80
|
|
63
|
+
*/
|
|
64
|
+
labelWidth?: number | string;
|
|
65
|
+
/**
|
|
66
|
+
* 是否浮动标签
|
|
67
|
+
* @default false
|
|
68
|
+
*/
|
|
69
|
+
floatingLabel?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* 错误类型
|
|
72
|
+
* @default 'label'
|
|
73
|
+
*/
|
|
74
|
+
errorType?: 'label' | 'tooltip';
|
|
75
|
+
/**
|
|
76
|
+
* 工具提示位置
|
|
77
|
+
* @default 'right'
|
|
78
|
+
*/
|
|
79
|
+
tooltipPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Form 组件实例接口
|
|
83
|
+
*/
|
|
84
|
+
export interface FormInstance extends ComponentPublicInstance {
|
|
85
|
+
/**
|
|
86
|
+
* 字段列表
|
|
87
|
+
*/
|
|
88
|
+
fields: Field[];
|
|
89
|
+
/**
|
|
90
|
+
* 错误对象
|
|
91
|
+
*/
|
|
92
|
+
errors: Record<string, string[]>;
|
|
93
|
+
/**
|
|
94
|
+
* 是否有效
|
|
95
|
+
*/
|
|
96
|
+
valid: boolean;
|
|
97
|
+
/**
|
|
98
|
+
* 是否无效
|
|
99
|
+
*/
|
|
100
|
+
invalid: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* 验证
|
|
103
|
+
*/
|
|
104
|
+
validate(callback?: (errors: Record<string, string[]> | null) => void): void;
|
|
105
|
+
/**
|
|
106
|
+
* 验证字段
|
|
107
|
+
*/
|
|
108
|
+
validateField(field: Field, callback?: () => void): void;
|
|
109
|
+
/**
|
|
110
|
+
* 是否有错误
|
|
111
|
+
*/
|
|
112
|
+
hasError(name: string): boolean;
|
|
113
|
+
/**
|
|
114
|
+
* 获取错误
|
|
115
|
+
*/
|
|
116
|
+
getError(name: string): string | null;
|
|
117
|
+
/**
|
|
118
|
+
* 获取所有错误
|
|
119
|
+
*/
|
|
120
|
+
getErrors(name?: string): Record<string, string[]> | string[] | null;
|
|
121
|
+
/**
|
|
122
|
+
* 获取值
|
|
123
|
+
*/
|
|
124
|
+
getValue(name: string): any;
|
|
125
|
+
/**
|
|
126
|
+
* 是否聚焦
|
|
127
|
+
*/
|
|
128
|
+
isFocused(name: string): boolean;
|
|
129
|
+
/**
|
|
130
|
+
* 添加字段
|
|
131
|
+
*/
|
|
132
|
+
fieldAdd(field: Field): void;
|
|
133
|
+
/**
|
|
134
|
+
* 移除字段
|
|
135
|
+
*/
|
|
136
|
+
fieldRemove(field: Field): void;
|
|
137
|
+
/**
|
|
138
|
+
* 字段聚焦
|
|
139
|
+
*/
|
|
140
|
+
fieldFocus(): void;
|
|
141
|
+
/**
|
|
142
|
+
* 字段失焦
|
|
143
|
+
*/
|
|
144
|
+
fieldBlur(field: Field): void;
|
|
145
|
+
/**
|
|
146
|
+
* 字段改变
|
|
147
|
+
*/
|
|
148
|
+
fieldChange(field: Field): void;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* FormField Props 接口
|
|
152
|
+
*/
|
|
153
|
+
export interface FormFieldProps {
|
|
154
|
+
/**
|
|
155
|
+
* 字段名称
|
|
156
|
+
*/
|
|
157
|
+
name?: string;
|
|
158
|
+
/**
|
|
159
|
+
* 标签
|
|
160
|
+
*/
|
|
161
|
+
label?: string;
|
|
162
|
+
/**
|
|
163
|
+
* 标签位置
|
|
164
|
+
*/
|
|
165
|
+
labelPosition?: 'before' | 'after' | 'top';
|
|
166
|
+
/**
|
|
167
|
+
* 标签对齐
|
|
168
|
+
*/
|
|
169
|
+
labelAlign?: 'left' | 'right' | 'center';
|
|
170
|
+
/**
|
|
171
|
+
* 标签关联
|
|
172
|
+
*/
|
|
173
|
+
labelFor?: string;
|
|
174
|
+
/**
|
|
175
|
+
* 标签宽度
|
|
176
|
+
*/
|
|
177
|
+
labelWidth?: number | string;
|
|
178
|
+
}
|
|
179
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/form/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,KAAK,CAAC;AAEnD;;GAEG;AACH,MAAM,WAAW,KAAM,SAAQ,uBAAuB;IACpD;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAE5B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAE/B;;;OAGG;IACH,aAAa,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,KAAK,CAAC;IAE3C;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IAEzC;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAE7B;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAEhC;;;OAGG;IACH,eAAe,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;CACvD;AAED;;GAEG;AACH,MAAM,WAAW,YAAa,SAAQ,uBAAuB;IAC3D;;OAEG;IACH,MAAM,EAAE,KAAK,EAAE,CAAC;IAEhB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IAEjC;;OAEG;IACH,KAAK,EAAE,OAAO,CAAC;IAEf;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI,CAAC;IAE7E;;OAEG;IACH,aAAa,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI,CAAC;IAEzD;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAEhC;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAEtC;;OAEG;IACH,SAAS,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC;IAErE;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,GAAG,CAAC;IAE5B;;OAEG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAEjC;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;IAE7B;;OAEG;IACH,WAAW,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;IAEhC;;OAEG;IACH,UAAU,IAAI,IAAI,CAAC;IAEnB;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;IAE9B;;OAEG;IACH,WAAW,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,aAAa,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,KAAK,CAAC;IAE3C;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IAEzC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9B"}
|