@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,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CheckBox 组件类型定义
|
|
3
|
+
*/
|
|
4
|
+
import type { ComponentPublicInstance } from 'vue';
|
|
5
|
+
import type { FieldBaseProps } from '../base/types';
|
|
6
|
+
/**
|
|
7
|
+
* CheckBox Props 接口
|
|
8
|
+
*/
|
|
9
|
+
export interface CheckBoxProps extends FieldBaseProps {
|
|
10
|
+
/**
|
|
11
|
+
* 值
|
|
12
|
+
*/
|
|
13
|
+
value?: string;
|
|
14
|
+
/**
|
|
15
|
+
* 名称
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
/**
|
|
19
|
+
* 是否禁用
|
|
20
|
+
* @default false
|
|
21
|
+
*/
|
|
22
|
+
disabled?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* 输入框 ID
|
|
25
|
+
*/
|
|
26
|
+
inputId?: string;
|
|
27
|
+
/**
|
|
28
|
+
* 是否多选
|
|
29
|
+
* @default false
|
|
30
|
+
*/
|
|
31
|
+
multiple?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* 绑定值(单选时为 boolean,多选时为数组)
|
|
34
|
+
*/
|
|
35
|
+
modelValue?: boolean | string[];
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* CheckBox 组件实例接口
|
|
39
|
+
*/
|
|
40
|
+
export interface CheckBoxInstance extends ComponentPublicInstance {
|
|
41
|
+
/**
|
|
42
|
+
* 设置选中状态
|
|
43
|
+
* @param value - 是否选中
|
|
44
|
+
*/
|
|
45
|
+
setChecked(value: boolean): void;
|
|
46
|
+
/**
|
|
47
|
+
* 是否选中
|
|
48
|
+
* @returns 是否选中
|
|
49
|
+
*/
|
|
50
|
+
isChecked(): boolean;
|
|
51
|
+
/**
|
|
52
|
+
* 更新值
|
|
53
|
+
*/
|
|
54
|
+
updateValues(): void;
|
|
55
|
+
/**
|
|
56
|
+
* 是否选中状态
|
|
57
|
+
*/
|
|
58
|
+
checked: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* 值数组(多选时使用)
|
|
61
|
+
*/
|
|
62
|
+
values: string[];
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/checkbox/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,KAAK,CAAC;AACnD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAEpD;;GAEG;AACH,MAAM,WAAW,aAAc,SAAQ,cAAc;IACnD;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,GAAG,MAAM,EAAE,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,gBAAiB,SAAQ,uBAAuB;IAC/D;;;OAGG;IACH,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;IAEjC;;;OAGG;IACH,SAAS,IAAI,OAAO,CAAC;IAErB;;OAEG;IACH,YAAY,IAAI,IAAI,CAAC;IAErB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB"}
|
|
@@ -0,0 +1,379 @@
|
|
|
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 { PropType } from "vue";
|
|
11
|
+
import type { ComboBoxProps } from "./types";
|
|
12
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
+
name: PropType<any>;
|
|
14
|
+
invalid: {
|
|
15
|
+
type: PropType<any>;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
validateOnCreate: {
|
|
19
|
+
type: PropType<any>;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
validateOnBlur: {
|
|
23
|
+
type: PropType<any>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
validateOnChange: {
|
|
27
|
+
type: PropType<any>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
disabled: {
|
|
31
|
+
type: PropType<any>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
readonly: {
|
|
35
|
+
type: PropType<any>;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
editable: {
|
|
39
|
+
type: PropType<any>;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
iconCls: PropType<any>;
|
|
43
|
+
iconAlign: {
|
|
44
|
+
type: PropType<any>;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
placeholder: PropType<any>;
|
|
48
|
+
multiline: {
|
|
49
|
+
type: PropType<any>;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
tabindex: PropType<any>;
|
|
53
|
+
cls: PropType<any>;
|
|
54
|
+
inputCls: PropType<any>;
|
|
55
|
+
inputStyle: PropType<any>;
|
|
56
|
+
inputId: PropType<any>;
|
|
57
|
+
textFormatter: PropType<any>;
|
|
58
|
+
hasDownArrow: {
|
|
59
|
+
type: PropType<any>;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
arrowIconCls: {
|
|
63
|
+
type: PropType<any>;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
arrowAlign: {
|
|
67
|
+
type: PropType<any>;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
panelAlign: {
|
|
71
|
+
type: PropType<any>;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
panelStyle: PropType<any>;
|
|
75
|
+
multiple: {
|
|
76
|
+
type: PropType<any>;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
separator: {
|
|
80
|
+
type: PropType<any>;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
delay: {
|
|
84
|
+
type: PropType<any>;
|
|
85
|
+
default: number;
|
|
86
|
+
};
|
|
87
|
+
value: PropType<ComboBoxProps["value"]>;
|
|
88
|
+
modelValue: PropType<ComboBoxProps["modelValue"]>;
|
|
89
|
+
valueField: {
|
|
90
|
+
type: PropType<ComboBoxProps["valueField"]>;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
textField: {
|
|
94
|
+
type: PropType<ComboBoxProps["textField"]>;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
groupField: PropType<ComboBoxProps["groupField"]>;
|
|
98
|
+
limitToList: {
|
|
99
|
+
type: PropType<ComboBoxProps["limitToList"]>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
102
|
+
lazy: {
|
|
103
|
+
type: PropType<ComboBoxProps["lazy"]>;
|
|
104
|
+
default: boolean;
|
|
105
|
+
};
|
|
106
|
+
virtualScroll: {
|
|
107
|
+
type: PropType<ComboBoxProps["virtualScroll"]>;
|
|
108
|
+
default: boolean;
|
|
109
|
+
};
|
|
110
|
+
rowHeight: {
|
|
111
|
+
type: PropType<ComboBoxProps["rowHeight"]>;
|
|
112
|
+
default: number;
|
|
113
|
+
};
|
|
114
|
+
pageNumber: {
|
|
115
|
+
type: PropType<ComboBoxProps["pageNumber"]>;
|
|
116
|
+
default: number;
|
|
117
|
+
};
|
|
118
|
+
pageSize: {
|
|
119
|
+
type: PropType<ComboBoxProps["pageSize"]>;
|
|
120
|
+
default: number;
|
|
121
|
+
};
|
|
122
|
+
total: {
|
|
123
|
+
type: PropType<ComboBoxProps["total"]>;
|
|
124
|
+
default: number;
|
|
125
|
+
};
|
|
126
|
+
data: {
|
|
127
|
+
type: PropType<ComboBoxProps["data"]>;
|
|
128
|
+
default: () => never[];
|
|
129
|
+
};
|
|
130
|
+
filter: PropType<ComboBoxProps["filter"]>;
|
|
131
|
+
}>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "focus" | "filterChange" | "selectionChange" | "update:modelValue" | "valueChange")[], "blur" | "focus" | "filterChange" | "selectionChange" | "update:modelValue" | "valueChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
132
|
+
name: PropType<any>;
|
|
133
|
+
invalid: {
|
|
134
|
+
type: PropType<any>;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
validateOnCreate: {
|
|
138
|
+
type: PropType<any>;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
validateOnBlur: {
|
|
142
|
+
type: PropType<any>;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
validateOnChange: {
|
|
146
|
+
type: PropType<any>;
|
|
147
|
+
default: boolean;
|
|
148
|
+
};
|
|
149
|
+
disabled: {
|
|
150
|
+
type: PropType<any>;
|
|
151
|
+
default: boolean;
|
|
152
|
+
};
|
|
153
|
+
readonly: {
|
|
154
|
+
type: PropType<any>;
|
|
155
|
+
default: boolean;
|
|
156
|
+
};
|
|
157
|
+
editable: {
|
|
158
|
+
type: PropType<any>;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
161
|
+
iconCls: PropType<any>;
|
|
162
|
+
iconAlign: {
|
|
163
|
+
type: PropType<any>;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
placeholder: PropType<any>;
|
|
167
|
+
multiline: {
|
|
168
|
+
type: PropType<any>;
|
|
169
|
+
default: boolean;
|
|
170
|
+
};
|
|
171
|
+
tabindex: PropType<any>;
|
|
172
|
+
cls: PropType<any>;
|
|
173
|
+
inputCls: PropType<any>;
|
|
174
|
+
inputStyle: PropType<any>;
|
|
175
|
+
inputId: PropType<any>;
|
|
176
|
+
textFormatter: PropType<any>;
|
|
177
|
+
hasDownArrow: {
|
|
178
|
+
type: PropType<any>;
|
|
179
|
+
default: boolean;
|
|
180
|
+
};
|
|
181
|
+
arrowIconCls: {
|
|
182
|
+
type: PropType<any>;
|
|
183
|
+
default: string;
|
|
184
|
+
};
|
|
185
|
+
arrowAlign: {
|
|
186
|
+
type: PropType<any>;
|
|
187
|
+
default: string;
|
|
188
|
+
};
|
|
189
|
+
panelAlign: {
|
|
190
|
+
type: PropType<any>;
|
|
191
|
+
default: string;
|
|
192
|
+
};
|
|
193
|
+
panelStyle: PropType<any>;
|
|
194
|
+
multiple: {
|
|
195
|
+
type: PropType<any>;
|
|
196
|
+
default: boolean;
|
|
197
|
+
};
|
|
198
|
+
separator: {
|
|
199
|
+
type: PropType<any>;
|
|
200
|
+
default: string;
|
|
201
|
+
};
|
|
202
|
+
delay: {
|
|
203
|
+
type: PropType<any>;
|
|
204
|
+
default: number;
|
|
205
|
+
};
|
|
206
|
+
value: PropType<ComboBoxProps["value"]>;
|
|
207
|
+
modelValue: PropType<ComboBoxProps["modelValue"]>;
|
|
208
|
+
valueField: {
|
|
209
|
+
type: PropType<ComboBoxProps["valueField"]>;
|
|
210
|
+
default: string;
|
|
211
|
+
};
|
|
212
|
+
textField: {
|
|
213
|
+
type: PropType<ComboBoxProps["textField"]>;
|
|
214
|
+
default: string;
|
|
215
|
+
};
|
|
216
|
+
groupField: PropType<ComboBoxProps["groupField"]>;
|
|
217
|
+
limitToList: {
|
|
218
|
+
type: PropType<ComboBoxProps["limitToList"]>;
|
|
219
|
+
default: boolean;
|
|
220
|
+
};
|
|
221
|
+
lazy: {
|
|
222
|
+
type: PropType<ComboBoxProps["lazy"]>;
|
|
223
|
+
default: boolean;
|
|
224
|
+
};
|
|
225
|
+
virtualScroll: {
|
|
226
|
+
type: PropType<ComboBoxProps["virtualScroll"]>;
|
|
227
|
+
default: boolean;
|
|
228
|
+
};
|
|
229
|
+
rowHeight: {
|
|
230
|
+
type: PropType<ComboBoxProps["rowHeight"]>;
|
|
231
|
+
default: number;
|
|
232
|
+
};
|
|
233
|
+
pageNumber: {
|
|
234
|
+
type: PropType<ComboBoxProps["pageNumber"]>;
|
|
235
|
+
default: number;
|
|
236
|
+
};
|
|
237
|
+
pageSize: {
|
|
238
|
+
type: PropType<ComboBoxProps["pageSize"]>;
|
|
239
|
+
default: number;
|
|
240
|
+
};
|
|
241
|
+
total: {
|
|
242
|
+
type: PropType<ComboBoxProps["total"]>;
|
|
243
|
+
default: number;
|
|
244
|
+
};
|
|
245
|
+
data: {
|
|
246
|
+
type: PropType<ComboBoxProps["data"]>;
|
|
247
|
+
default: () => never[];
|
|
248
|
+
};
|
|
249
|
+
filter: PropType<ComboBoxProps["filter"]>;
|
|
250
|
+
}>> & Readonly<{
|
|
251
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
252
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
253
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
254
|
+
onValueChange?: ((...args: any[]) => any) | undefined;
|
|
255
|
+
onFilterChange?: ((...args: any[]) => any) | undefined;
|
|
256
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
|
257
|
+
}>, {
|
|
258
|
+
data: Record<string, any>[] | undefined;
|
|
259
|
+
invalid: any;
|
|
260
|
+
separator: any;
|
|
261
|
+
multiple: any;
|
|
262
|
+
disabled: any;
|
|
263
|
+
iconAlign: any;
|
|
264
|
+
pageNumber: number | undefined;
|
|
265
|
+
total: number | undefined;
|
|
266
|
+
pageSize: number | undefined;
|
|
267
|
+
readonly: any;
|
|
268
|
+
editable: any;
|
|
269
|
+
multiline: any;
|
|
270
|
+
hasDownArrow: any;
|
|
271
|
+
arrowIconCls: any;
|
|
272
|
+
arrowAlign: any;
|
|
273
|
+
panelAlign: any;
|
|
274
|
+
delay: any;
|
|
275
|
+
lazy: boolean | undefined;
|
|
276
|
+
rowHeight: number | undefined;
|
|
277
|
+
virtualScroll: boolean | undefined;
|
|
278
|
+
validateOnCreate: any;
|
|
279
|
+
validateOnBlur: any;
|
|
280
|
+
validateOnChange: any;
|
|
281
|
+
valueField: string | undefined;
|
|
282
|
+
textField: string | undefined;
|
|
283
|
+
limitToList: boolean | undefined;
|
|
284
|
+
}, {}, {
|
|
285
|
+
DataList: import("vue").DefineComponent<{
|
|
286
|
+
itemStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
287
|
+
itemCls?: string | undefined;
|
|
288
|
+
hoverCls?: string | undefined;
|
|
289
|
+
selectedCls?: string | undefined;
|
|
290
|
+
scrollPosition?: number | object | undefined;
|
|
291
|
+
border?: boolean | undefined;
|
|
292
|
+
loading?: boolean | undefined;
|
|
293
|
+
loadMsg?: string | undefined;
|
|
294
|
+
emptyMsg?: string | undefined;
|
|
295
|
+
pagination?: boolean | undefined;
|
|
296
|
+
pagePosition?: "top" | "bottom" | undefined;
|
|
297
|
+
pageOptions?: any;
|
|
298
|
+
lazy?: boolean | undefined;
|
|
299
|
+
virtualScroll?: boolean | undefined;
|
|
300
|
+
rowHeight?: number | undefined;
|
|
301
|
+
pageNumber?: number | undefined;
|
|
302
|
+
pageSize?: number | undefined;
|
|
303
|
+
pageLayout?: string[] | undefined;
|
|
304
|
+
pageList?: number[] | undefined;
|
|
305
|
+
pageLinks?: number | undefined;
|
|
306
|
+
total?: number | undefined;
|
|
307
|
+
idField?: string | undefined;
|
|
308
|
+
selectionMode?: "single" | "multiple" | "cell" | "multicell" | undefined;
|
|
309
|
+
selection?: any | any[] | null;
|
|
310
|
+
filterable?: boolean | undefined;
|
|
311
|
+
filterRules?: import("../base").FilterRule[] | undefined;
|
|
312
|
+
filterDelay?: number | undefined;
|
|
313
|
+
filterMatchingType?: "all" | "any" | undefined;
|
|
314
|
+
filterPosition?: "top" | "bottom" | undefined;
|
|
315
|
+
filterBtnPosition?: "left" | "right" | undefined;
|
|
316
|
+
filterOperators?: import("../base").FilterOperators | undefined;
|
|
317
|
+
data?: any[] | undefined;
|
|
318
|
+
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
319
|
+
itemStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
320
|
+
itemCls?: string | undefined;
|
|
321
|
+
hoverCls?: string | undefined;
|
|
322
|
+
selectedCls?: string | undefined;
|
|
323
|
+
scrollPosition?: number | object | undefined;
|
|
324
|
+
border?: boolean | undefined;
|
|
325
|
+
loading?: boolean | undefined;
|
|
326
|
+
loadMsg?: string | undefined;
|
|
327
|
+
emptyMsg?: string | undefined;
|
|
328
|
+
pagination?: boolean | undefined;
|
|
329
|
+
pagePosition?: "top" | "bottom" | undefined;
|
|
330
|
+
pageOptions?: any;
|
|
331
|
+
lazy?: boolean | undefined;
|
|
332
|
+
virtualScroll?: boolean | undefined;
|
|
333
|
+
rowHeight?: number | undefined;
|
|
334
|
+
pageNumber?: number | undefined;
|
|
335
|
+
pageSize?: number | undefined;
|
|
336
|
+
pageLayout?: string[] | undefined;
|
|
337
|
+
pageList?: number[] | undefined;
|
|
338
|
+
pageLinks?: number | undefined;
|
|
339
|
+
total?: number | undefined;
|
|
340
|
+
idField?: string | undefined;
|
|
341
|
+
selectionMode?: "single" | "multiple" | "cell" | "multicell" | undefined;
|
|
342
|
+
selection?: any | any[] | null;
|
|
343
|
+
filterable?: boolean | undefined;
|
|
344
|
+
filterRules?: import("../base").FilterRule[] | undefined;
|
|
345
|
+
filterDelay?: number | undefined;
|
|
346
|
+
filterMatchingType?: "all" | "any" | undefined;
|
|
347
|
+
filterPosition?: "top" | "bottom" | undefined;
|
|
348
|
+
filterBtnPosition?: "left" | "right" | undefined;
|
|
349
|
+
filterOperators?: import("../base").FilterOperators | undefined;
|
|
350
|
+
data?: any[] | undefined;
|
|
351
|
+
}> & Readonly<{}>, {
|
|
352
|
+
data: any[] | undefined;
|
|
353
|
+
border: boolean | undefined;
|
|
354
|
+
pageNumber: number | undefined;
|
|
355
|
+
pageList: number[] | undefined;
|
|
356
|
+
loading: boolean | undefined;
|
|
357
|
+
total: number | undefined;
|
|
358
|
+
pageSize: number | undefined;
|
|
359
|
+
lazy: boolean | undefined;
|
|
360
|
+
rowHeight: number | undefined;
|
|
361
|
+
filterRules: import("../base").FilterRule[] | undefined;
|
|
362
|
+
loadMsg: string | undefined;
|
|
363
|
+
pagination: boolean | undefined;
|
|
364
|
+
pagePosition: "bottom" | "top" | undefined;
|
|
365
|
+
virtualScroll: boolean | undefined;
|
|
366
|
+
pageLayout: string[] | undefined;
|
|
367
|
+
pageLinks: number | undefined;
|
|
368
|
+
filterable: boolean | undefined;
|
|
369
|
+
filterDelay: number | undefined;
|
|
370
|
+
filterMatchingType: "all" | "any" | undefined;
|
|
371
|
+
filterPosition: "bottom" | "top" | undefined;
|
|
372
|
+
filterBtnPosition: "left" | "right" | undefined;
|
|
373
|
+
filterOperators: import("../base").FilterOperators | undefined;
|
|
374
|
+
hoverCls: string | undefined;
|
|
375
|
+
selectedCls: string | undefined;
|
|
376
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
377
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
378
|
+
export default _default;
|
|
379
|
+
//# sourceMappingURL=ComboBox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComboBox.d.ts","sourceRoot":"","sources":["../../../src/components/combobox/ComboBox.tsx"],"names":[],"mappings":"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"}
|
|
@@ -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 ComboBox from './ComboBox';
|
|
11
|
+
export { ComboBox };
|
|
12
|
+
export type { ComboBoxProps, ComboBoxInstance } from './types';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/combobox/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,OAAO,EACH,QAAQ,EACX,CAAC;AAEF,YAAY,EACR,aAAa,EACb,gBAAgB,EACnB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ComboBox 组件类型定义
|
|
3
|
+
*/
|
|
4
|
+
import type { ComponentPublicInstance } from 'vue';
|
|
5
|
+
import type { ComboBaseProps } from '../base/types';
|
|
6
|
+
/**
|
|
7
|
+
* ComboBox Props 接口
|
|
8
|
+
*/
|
|
9
|
+
export interface ComboBoxProps extends ComboBaseProps {
|
|
10
|
+
/**
|
|
11
|
+
* 值
|
|
12
|
+
*/
|
|
13
|
+
value?: string | number | unknown[];
|
|
14
|
+
/**
|
|
15
|
+
* 绑定值
|
|
16
|
+
*/
|
|
17
|
+
modelValue?: string | number | unknown[];
|
|
18
|
+
/**
|
|
19
|
+
* 值字段
|
|
20
|
+
* @default 'value'
|
|
21
|
+
*/
|
|
22
|
+
valueField?: string;
|
|
23
|
+
/**
|
|
24
|
+
* 文本字段
|
|
25
|
+
* @default 'text'
|
|
26
|
+
*/
|
|
27
|
+
textField?: string;
|
|
28
|
+
/**
|
|
29
|
+
* 分组字段
|
|
30
|
+
*/
|
|
31
|
+
groupField?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 是否限制在列表中
|
|
34
|
+
* @default true
|
|
35
|
+
*/
|
|
36
|
+
limitToList?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* 是否懒加载
|
|
39
|
+
* @default false
|
|
40
|
+
*/
|
|
41
|
+
lazy?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* 是否虚拟滚动
|
|
44
|
+
* @default false
|
|
45
|
+
*/
|
|
46
|
+
virtualScroll?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* 行高
|
|
49
|
+
* @default 30
|
|
50
|
+
*/
|
|
51
|
+
rowHeight?: number;
|
|
52
|
+
/**
|
|
53
|
+
* 页码
|
|
54
|
+
* @default 1
|
|
55
|
+
*/
|
|
56
|
+
pageNumber?: number;
|
|
57
|
+
/**
|
|
58
|
+
* 每页大小
|
|
59
|
+
* @default 10
|
|
60
|
+
*/
|
|
61
|
+
pageSize?: number;
|
|
62
|
+
/**
|
|
63
|
+
* 总数
|
|
64
|
+
* @default 0
|
|
65
|
+
*/
|
|
66
|
+
total?: number;
|
|
67
|
+
/**
|
|
68
|
+
* 数据
|
|
69
|
+
*/
|
|
70
|
+
data?: Record<string, any>[];
|
|
71
|
+
/**
|
|
72
|
+
* 过滤函数
|
|
73
|
+
*/
|
|
74
|
+
filter?: (q: string, item: Record<string, any>) => boolean;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* ComboBox 组件实例接口
|
|
78
|
+
* 继承自 ComboBase -> InputBase -> FieldBase
|
|
79
|
+
*/
|
|
80
|
+
export interface ComboBoxInstance extends ComponentPublicInstance {
|
|
81
|
+
panelClosed: boolean;
|
|
82
|
+
panelLeft: number;
|
|
83
|
+
panelTop: number;
|
|
84
|
+
scrollTop: number;
|
|
85
|
+
valueState: string | number | unknown[] | null;
|
|
86
|
+
textState: string;
|
|
87
|
+
focused: boolean;
|
|
88
|
+
text: string;
|
|
89
|
+
/**
|
|
90
|
+
* 映射文本
|
|
91
|
+
*/
|
|
92
|
+
mappingTexts: Record<string, string>;
|
|
93
|
+
/**
|
|
94
|
+
* 数据列表滚动位置
|
|
95
|
+
*/
|
|
96
|
+
datalistScrollTop: number;
|
|
97
|
+
/**
|
|
98
|
+
* 滚动位置
|
|
99
|
+
*/
|
|
100
|
+
scrollPosition: number | null;
|
|
101
|
+
/**
|
|
102
|
+
* 输入文本
|
|
103
|
+
*/
|
|
104
|
+
inputingText: string | null;
|
|
105
|
+
/**
|
|
106
|
+
* 显示文本
|
|
107
|
+
*/
|
|
108
|
+
displayingText: string | null;
|
|
109
|
+
/**
|
|
110
|
+
* 最后过滤值
|
|
111
|
+
*/
|
|
112
|
+
lastFilterValue: string | null;
|
|
113
|
+
/**
|
|
114
|
+
* 内部数据
|
|
115
|
+
*/
|
|
116
|
+
innerData: Record<string, any>[];
|
|
117
|
+
/**
|
|
118
|
+
* 项目列表
|
|
119
|
+
*/
|
|
120
|
+
items: Record<string, any>[];
|
|
121
|
+
/**
|
|
122
|
+
* 总数状态
|
|
123
|
+
*/
|
|
124
|
+
totalState: number;
|
|
125
|
+
/**
|
|
126
|
+
* 选中项
|
|
127
|
+
*/
|
|
128
|
+
selection: Record<string, any> | Record<string, any>[] | null;
|
|
129
|
+
/**
|
|
130
|
+
* 定时器
|
|
131
|
+
*/
|
|
132
|
+
timer: ReturnType<typeof setTimeout> | null;
|
|
133
|
+
/**
|
|
134
|
+
* 设置数据
|
|
135
|
+
*/
|
|
136
|
+
setData(value: Record<string, any>[]): void;
|
|
137
|
+
/**
|
|
138
|
+
* 设置文本
|
|
139
|
+
*/
|
|
140
|
+
setText(value: string): void;
|
|
141
|
+
/**
|
|
142
|
+
* 执行过滤
|
|
143
|
+
*/
|
|
144
|
+
doFilter(value: string): void;
|
|
145
|
+
/**
|
|
146
|
+
* 打开面板
|
|
147
|
+
*/
|
|
148
|
+
openPanel(): void;
|
|
149
|
+
/**
|
|
150
|
+
* 关闭面板
|
|
151
|
+
*/
|
|
152
|
+
closePanel(): void;
|
|
153
|
+
/**
|
|
154
|
+
* 切换面板
|
|
155
|
+
*/
|
|
156
|
+
togglePanel(): void;
|
|
157
|
+
$refs: {
|
|
158
|
+
inputRef?: HTMLInputElement;
|
|
159
|
+
panelRef?: HTMLElement;
|
|
160
|
+
datalist?: any;
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/combobox/types.ts"],"names":[],"mappings":"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"}
|