@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":"types.d.ts","sourceRoot":"","sources":["../../../src/components/gridbase/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { computed, CSSProperties, type Ref, type SetupContext } from 'vue';
|
|
2
|
+
import { UseListBaseOverrides } from '../base/useListBase';
|
|
3
|
+
import type { FilterRule } from '../base/types';
|
|
4
|
+
import type { GridBaseProps, SortItem } from './types';
|
|
5
|
+
export interface UseGridBaseReturn {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
leftGroup: Ref<any>;
|
|
8
|
+
rightGroup: Ref<any>;
|
|
9
|
+
centerGroup: Ref<any>;
|
|
10
|
+
leftColumns: Ref<any[]>;
|
|
11
|
+
rightColumns: Ref<any[]>;
|
|
12
|
+
centerColumns: Ref<any[]>;
|
|
13
|
+
columnRefs: Ref<any[]>;
|
|
14
|
+
groupRefs: Ref<any[]>;
|
|
15
|
+
sortsState: Ref<SortItem[]>;
|
|
16
|
+
editingItem: Ref<any>;
|
|
17
|
+
headerHeight: Ref<number>;
|
|
18
|
+
splitStyle: Ref<CSSProperties | null>;
|
|
19
|
+
hasDestroyed: Ref<boolean>;
|
|
20
|
+
columnTimer: Ref<ReturnType<typeof setTimeout> | null>;
|
|
21
|
+
allColumns: ReturnType<typeof computed<any[]>>;
|
|
22
|
+
footerRows: ReturnType<typeof computed<any[]>>;
|
|
23
|
+
leftFrozenWidth: ReturnType<typeof computed<number | string>>;
|
|
24
|
+
rightFrozenWidth: ReturnType<typeof computed<number | string>>;
|
|
25
|
+
addColumn: (column: any) => void;
|
|
26
|
+
removeColumn: (column: any) => void;
|
|
27
|
+
addColumnGroup: (group: any) => void;
|
|
28
|
+
removeColumnGroup: (group: any) => void;
|
|
29
|
+
changeColumns: () => void;
|
|
30
|
+
initColumns: () => void;
|
|
31
|
+
initHeaderHeight: () => void;
|
|
32
|
+
initFilterRules: () => void;
|
|
33
|
+
getColumnLayout: (group: any) => any[][];
|
|
34
|
+
getColumnCount: (group: any) => number;
|
|
35
|
+
getColumnIndex: (a: any[]) => number;
|
|
36
|
+
onBodyScroll: (event: any) => void;
|
|
37
|
+
addSort: (col: any) => void;
|
|
38
|
+
initColumnSort: () => void;
|
|
39
|
+
findColumn: (field: string) => any | null;
|
|
40
|
+
addFilterRule: (rule: FilterRule) => void;
|
|
41
|
+
resizeColumn: (field: string, width: number) => void;
|
|
42
|
+
moveColumn: (fromField: string, toField: string, point: 'before' | 'after') => void;
|
|
43
|
+
isEditing: (row: any, column?: any) => boolean;
|
|
44
|
+
beginEdit: (row: any, column?: any, rowEl?: HTMLElement | null) => void;
|
|
45
|
+
endEdit: () => void;
|
|
46
|
+
cancelEdit: () => void;
|
|
47
|
+
navRow: (step: number) => void;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* useGridBase:替代 `extends: GridBase`
|
|
51
|
+
*
|
|
52
|
+
* 说明:
|
|
53
|
+
* - 通过 refs 模拟旧的 data 字段(并保持字段名一致,确保 `this.xxx` 还能工作)
|
|
54
|
+
* - 内部组合 useListBase,并把部分方法挂到 proxy 上(兼容旧的 `_listBase_xxx` 调用点)
|
|
55
|
+
* - 仍然依赖组件实例(proxy.$refs / proxy.$el),因为现有 Grid 体系大量使用 `$refs` 链式访问
|
|
56
|
+
*/
|
|
57
|
+
export declare function useGridBase(props: GridBaseProps, ctx: Pick<SetupContext, 'emit'>, overrides?: UseListBaseOverrides): UseGridBaseReturn;
|
|
58
|
+
//# sourceMappingURL=useGridBase.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useGridBase.d.ts","sourceRoot":"","sources":["../../../src/components/gridbase/useGridBase.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* useGridBodyBase:提供 GridBody 的通用实现(替代 extends)
|
|
3
|
+
* - 注意:这里为了兼容现有大量 `$refs.bodyRef/$refs.innerRef` 访问方式,
|
|
4
|
+
* 不强行改成 setup ref,而是继续依赖组件实例上的 `$refs`。
|
|
5
|
+
*/
|
|
6
|
+
export declare function useGridBodyBase(proxy: any, emit: (evt: string, payload?: any) => void): {
|
|
7
|
+
onScroll: () => void;
|
|
8
|
+
scrollTop: (value?: number) => number | void;
|
|
9
|
+
scrollbarWidth: () => number;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=useGridBodyBase.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useGridBodyBase.d.ts","sourceRoot":"","sources":["../../../src/components/gridbase/useGridBodyBase.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,KAAK,IAAI;oBAC/D,IAAI;wBAME,MAAM,KAAG,MAAM,GAAG,IAAI;0BAUtB,MAAM;EAQlC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type ComputedRef, type Ref, type SetupContext } from 'vue';
|
|
2
|
+
import type { GridViewProps } from './types';
|
|
3
|
+
export interface UseGridViewBaseReturn {
|
|
4
|
+
headerPaddingWidth: Ref<number>;
|
|
5
|
+
viewCls: ComputedRef<string>;
|
|
6
|
+
scrollTop: (value?: number) => number | void;
|
|
7
|
+
headerHeight: (value?: number) => number | void;
|
|
8
|
+
getHeaderPaddingWidth: () => number | null;
|
|
9
|
+
onBodyScroll: (event: any) => void;
|
|
10
|
+
onResize: () => void;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* useGridViewBase:替代 `extends: GridView`
|
|
14
|
+
* - 用 ref 模拟旧 data: headerPaddingWidth
|
|
15
|
+
* - 用 computed 模拟旧 computed: viewCls
|
|
16
|
+
* - 用 getCurrentInstance().proxy.$refs 访问 header/body/footer(与旧 this.$refs 一致)
|
|
17
|
+
*/
|
|
18
|
+
export declare function useGridViewBase(props: GridViewProps, ctx: Pick<SetupContext, 'emit'>): UseGridViewBaseReturn;
|
|
19
|
+
//# sourceMappingURL=useGridViewBase.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useGridViewBase.d.ts","sourceRoot":"","sources":["../../../src/components/gridbase/useGridViewBase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsD,KAAK,WAAW,EAAE,KAAK,GAAG,EAAE,KAAK,YAAY,EAAE,MAAM,KAAK,CAAC;AACxH,OAAO,KAAK,EAAoB,aAAa,EAAE,MAAM,SAAS,CAAC;AAE/D,MAAM,WAAW,qBAAqB;IAEpC,kBAAkB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAGhC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAG7B,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,IAAI,CAAC;IAC7C,YAAY,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,IAAI,CAAC;IAChD,qBAAqB,EAAE,MAAM,MAAM,GAAG,IAAI,CAAC;IAC3C,YAAY,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACnC,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,aAAa,EAAE,GAAG,EAAE,IAAI,CAAC,YAAY,EAAE,MAAM,CAAC,GAAG,qBAAqB,CAwE5G"}
|
|
@@ -0,0 +1,138 @@
|
|
|
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 { CollapsedPanelProps } from './types';
|
|
12
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
|
+
region: PropType<CollapsedPanelProps["region"]>;
|
|
14
|
+
title: PropType<import("../panel").PanelProps["title"]>;
|
|
15
|
+
iconCls: PropType<import("../panel").PanelProps["iconCls"]>;
|
|
16
|
+
border: {
|
|
17
|
+
type: PropType<import("../panel").PanelProps["border"]>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
animate: {
|
|
21
|
+
type: PropType<import("../panel").PanelProps["animate"]>;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
closed: {
|
|
25
|
+
type: PropType<import("../panel").PanelProps["closed"]>;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
collapsed: {
|
|
29
|
+
type: PropType<import("../panel").PanelProps["collapsed"]>;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
collapsible: {
|
|
33
|
+
type: PropType<import("../panel").PanelProps["collapsible"]>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
closable: {
|
|
37
|
+
type: PropType<import("../panel").PanelProps["closable"]>;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
showHeader: {
|
|
41
|
+
type: PropType<import("../panel").PanelProps["showHeader"]>;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
showFooter: {
|
|
45
|
+
type: PropType<import("../panel").PanelProps["showFooter"]>;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
expandIconCls: {
|
|
49
|
+
type: PropType<import("../panel").PanelProps["expandIconCls"]>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
collapseIconCls: {
|
|
53
|
+
type: PropType<import("../panel").PanelProps["collapseIconCls"]>;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
closeIconCls: {
|
|
57
|
+
type: PropType<import("../panel").PanelProps["closeIconCls"]>;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
panelCls: PropType<import("../panel").PanelProps["panelCls"]>;
|
|
61
|
+
panelStyle: PropType<import("../panel").PanelProps["panelStyle"]>;
|
|
62
|
+
headerCls: PropType<import("../panel").PanelProps["headerCls"]>;
|
|
63
|
+
headerStyle: PropType<import("../panel").PanelProps["headerStyle"]>;
|
|
64
|
+
bodyCls: PropType<import("../panel").PanelProps["bodyCls"]>;
|
|
65
|
+
bodyStyle: PropType<import("../panel").PanelProps["bodyStyle"]>;
|
|
66
|
+
footerCls: PropType<import("../panel").PanelProps["footerCls"]>;
|
|
67
|
+
footerStyle: PropType<import("../panel").PanelProps["footerStyle"]>;
|
|
68
|
+
}>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
69
|
+
region: PropType<CollapsedPanelProps["region"]>;
|
|
70
|
+
title: PropType<import("../panel").PanelProps["title"]>;
|
|
71
|
+
iconCls: PropType<import("../panel").PanelProps["iconCls"]>;
|
|
72
|
+
border: {
|
|
73
|
+
type: PropType<import("../panel").PanelProps["border"]>;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
animate: {
|
|
77
|
+
type: PropType<import("../panel").PanelProps["animate"]>;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
closed: {
|
|
81
|
+
type: PropType<import("../panel").PanelProps["closed"]>;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
collapsed: {
|
|
85
|
+
type: PropType<import("../panel").PanelProps["collapsed"]>;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
collapsible: {
|
|
89
|
+
type: PropType<import("../panel").PanelProps["collapsible"]>;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
closable: {
|
|
93
|
+
type: PropType<import("../panel").PanelProps["closable"]>;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
96
|
+
showHeader: {
|
|
97
|
+
type: PropType<import("../panel").PanelProps["showHeader"]>;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
showFooter: {
|
|
101
|
+
type: PropType<import("../panel").PanelProps["showFooter"]>;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
expandIconCls: {
|
|
105
|
+
type: PropType<import("../panel").PanelProps["expandIconCls"]>;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
108
|
+
collapseIconCls: {
|
|
109
|
+
type: PropType<import("../panel").PanelProps["collapseIconCls"]>;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
closeIconCls: {
|
|
113
|
+
type: PropType<import("../panel").PanelProps["closeIconCls"]>;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
panelCls: PropType<import("../panel").PanelProps["panelCls"]>;
|
|
117
|
+
panelStyle: PropType<import("../panel").PanelProps["panelStyle"]>;
|
|
118
|
+
headerCls: PropType<import("../panel").PanelProps["headerCls"]>;
|
|
119
|
+
headerStyle: PropType<import("../panel").PanelProps["headerStyle"]>;
|
|
120
|
+
bodyCls: PropType<import("../panel").PanelProps["bodyCls"]>;
|
|
121
|
+
bodyStyle: PropType<import("../panel").PanelProps["bodyStyle"]>;
|
|
122
|
+
footerCls: PropType<import("../panel").PanelProps["footerCls"]>;
|
|
123
|
+
footerStyle: PropType<import("../panel").PanelProps["footerStyle"]>;
|
|
124
|
+
}>> & Readonly<{}>, {
|
|
125
|
+
animate: boolean | undefined;
|
|
126
|
+
border: boolean | undefined;
|
|
127
|
+
closed: boolean | undefined;
|
|
128
|
+
collapsed: boolean | undefined;
|
|
129
|
+
collapsible: boolean | undefined;
|
|
130
|
+
closable: boolean | undefined;
|
|
131
|
+
showHeader: boolean | undefined;
|
|
132
|
+
showFooter: boolean | undefined;
|
|
133
|
+
expandIconCls: string | undefined;
|
|
134
|
+
collapseIconCls: string | undefined;
|
|
135
|
+
closeIconCls: string | undefined;
|
|
136
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
137
|
+
export default _default;
|
|
138
|
+
//# sourceMappingURL=CollapsedPanel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollapsedPanel.d.ts","sourceRoot":"","sources":["../../../src/components/layout/CollapsedPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,EAAiD,QAAQ,EAAsB,MAAM,KAAK,CAAC;AAElG,OAAO,KAAK,EAAE,mBAAmB,EAAkB,MAAM,SAAS,CAAC;;YAQzC,QAAQ,CAAC,mBAAmB,CAAC,QAAQ,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAAvC,QAAQ,CAAC,mBAAmB,CAAC,QAAQ,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAJjE,wBAuFG"}
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { CSSProperties } from 'vue';
|
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
|
12
|
+
layoutCls?: string | undefined;
|
|
13
|
+
layoutStyle?: (CSSProperties | string) | undefined;
|
|
14
|
+
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
15
|
+
layoutCls?: string | undefined;
|
|
16
|
+
layoutStyle?: (CSSProperties | string) | undefined;
|
|
17
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
19
|
+
//# sourceMappingURL=Layout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Layout.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,EAA6B,aAAa,EAA8D,MAAM,KAAK,CAAC;;;;;;;;AAK3H,wBAkMG"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
title?: string | undefined;
|
|
3
|
+
region?: "north" | "south" | "east" | "west" | "center" | undefined;
|
|
4
|
+
float?: boolean | undefined;
|
|
5
|
+
split?: boolean | undefined;
|
|
6
|
+
edge?: number | undefined;
|
|
7
|
+
animate?: boolean | undefined;
|
|
8
|
+
collapsible?: boolean | undefined;
|
|
9
|
+
collapsedSize?: number | undefined;
|
|
10
|
+
expander?: boolean | undefined;
|
|
11
|
+
expandIconCls?: string | undefined;
|
|
12
|
+
collapseIconCls?: string | undefined;
|
|
13
|
+
collapsed?: boolean | undefined;
|
|
14
|
+
iconCls?: string | undefined;
|
|
15
|
+
border?: boolean | undefined;
|
|
16
|
+
closed?: boolean | undefined;
|
|
17
|
+
closable?: boolean | undefined;
|
|
18
|
+
showHeader?: boolean | undefined;
|
|
19
|
+
showFooter?: boolean | undefined;
|
|
20
|
+
closeIconCls?: string | undefined;
|
|
21
|
+
panelCls?: string | undefined;
|
|
22
|
+
panelStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
23
|
+
headerCls?: string | undefined;
|
|
24
|
+
headerStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
25
|
+
bodyCls?: string | undefined;
|
|
26
|
+
bodyStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
27
|
+
footerCls?: string | undefined;
|
|
28
|
+
footerStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
29
|
+
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("collapse" | "resizeStop" | "expand")[], "collapse" | "resizeStop" | "expand", import("vue").PublicProps, Readonly<{
|
|
30
|
+
title?: string | undefined;
|
|
31
|
+
region?: "north" | "south" | "east" | "west" | "center" | undefined;
|
|
32
|
+
float?: boolean | undefined;
|
|
33
|
+
split?: boolean | undefined;
|
|
34
|
+
edge?: number | undefined;
|
|
35
|
+
animate?: boolean | undefined;
|
|
36
|
+
collapsible?: boolean | undefined;
|
|
37
|
+
collapsedSize?: number | undefined;
|
|
38
|
+
expander?: boolean | undefined;
|
|
39
|
+
expandIconCls?: string | undefined;
|
|
40
|
+
collapseIconCls?: string | undefined;
|
|
41
|
+
collapsed?: boolean | undefined;
|
|
42
|
+
iconCls?: string | undefined;
|
|
43
|
+
border?: boolean | undefined;
|
|
44
|
+
closed?: boolean | undefined;
|
|
45
|
+
closable?: boolean | undefined;
|
|
46
|
+
showHeader?: boolean | undefined;
|
|
47
|
+
showFooter?: boolean | undefined;
|
|
48
|
+
closeIconCls?: string | undefined;
|
|
49
|
+
panelCls?: string | undefined;
|
|
50
|
+
panelStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
51
|
+
headerCls?: string | undefined;
|
|
52
|
+
headerStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
53
|
+
bodyCls?: string | undefined;
|
|
54
|
+
bodyStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
55
|
+
footerCls?: string | undefined;
|
|
56
|
+
footerStyle?: (import("vue").CSSProperties | string) | undefined;
|
|
57
|
+
}> & Readonly<{
|
|
58
|
+
onCollapse?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
onResizeStop?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
}>, {
|
|
62
|
+
animate: boolean | undefined;
|
|
63
|
+
border: boolean | undefined;
|
|
64
|
+
closed: boolean | undefined;
|
|
65
|
+
collapsed: boolean | undefined;
|
|
66
|
+
collapsible: boolean | undefined;
|
|
67
|
+
closable: boolean | undefined;
|
|
68
|
+
showHeader: boolean | undefined;
|
|
69
|
+
showFooter: boolean | undefined;
|
|
70
|
+
closeIconCls: string | undefined;
|
|
71
|
+
region: "center" | "north" | "south" | "east" | "west" | undefined;
|
|
72
|
+
split: boolean | undefined;
|
|
73
|
+
edge: number | undefined;
|
|
74
|
+
float: boolean | undefined;
|
|
75
|
+
expander: boolean | undefined;
|
|
76
|
+
collapsedSize: number | undefined;
|
|
77
|
+
}, {}, {}, {
|
|
78
|
+
Resizable: import("vue").ObjectDirective<import("../resizable/Resizable").HTMLElementWithResizeInstance, import("../resizable").ResizableOptions | undefined, string, any> & {
|
|
79
|
+
name: string;
|
|
80
|
+
};
|
|
81
|
+
}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
82
|
+
export default _default;
|
|
83
|
+
//# sourceMappingURL=LayoutPanel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LayoutPanel.d.ts","sourceRoot":"","sources":["../../../src/components/layout/LayoutPanel.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgBA,wBAyNG"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 Layout from './Layout';
|
|
11
|
+
import LayoutPanel from './LayoutPanel';
|
|
12
|
+
import CollapsedPanel from './CollapsedPanel';
|
|
13
|
+
export { Layout, LayoutPanel, CollapsedPanel };
|
|
14
|
+
export type { LayoutProps, LayoutInstance, LayoutPanelProps, LayoutPanelInstance, CollapsedPanelProps, CollapsedPanelInstance } from './types';
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/layout/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,OAAO,MAAM,MAAM,UAAU,CAAC;AAC9B,OAAO,WAAW,MAAM,eAAe,CAAC;AACxC,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAE9C,OAAO,EACH,MAAM,EACN,WAAW,EACX,cAAc,EACjB,CAAC;AAEF,YAAY,EACR,WAAW,EACX,cAAc,EACd,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,sBAAsB,EACzB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Layout 组件类型定义
|
|
3
|
+
*/
|
|
4
|
+
import type { ComponentPublicInstance, CSSProperties } from 'vue';
|
|
5
|
+
import type { PanelProps } from '../panel/types';
|
|
6
|
+
/**
|
|
7
|
+
* LayoutPanel Props 接口
|
|
8
|
+
*/
|
|
9
|
+
export interface LayoutPanelProps extends PanelProps {
|
|
10
|
+
/**
|
|
11
|
+
* 标题
|
|
12
|
+
*/
|
|
13
|
+
title?: string;
|
|
14
|
+
/**
|
|
15
|
+
* 区域
|
|
16
|
+
* @default 'center'
|
|
17
|
+
*/
|
|
18
|
+
region?: 'north' | 'south' | 'east' | 'west' | 'center';
|
|
19
|
+
/**
|
|
20
|
+
* 是否浮动
|
|
21
|
+
* @default false
|
|
22
|
+
*/
|
|
23
|
+
float?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* 是否可分割
|
|
26
|
+
* @default false
|
|
27
|
+
*/
|
|
28
|
+
split?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* 边缘大小
|
|
31
|
+
* @default 5
|
|
32
|
+
*/
|
|
33
|
+
edge?: number;
|
|
34
|
+
/**
|
|
35
|
+
* 是否启用动画
|
|
36
|
+
* @default true
|
|
37
|
+
*/
|
|
38
|
+
animate?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* 是否可折叠
|
|
41
|
+
* @default false
|
|
42
|
+
*/
|
|
43
|
+
collapsible?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* 折叠大小
|
|
46
|
+
* @default 32
|
|
47
|
+
*/
|
|
48
|
+
collapsedSize?: number;
|
|
49
|
+
/**
|
|
50
|
+
* 是否展开器
|
|
51
|
+
* @default false
|
|
52
|
+
*/
|
|
53
|
+
expander?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* 展开图标类名
|
|
56
|
+
*/
|
|
57
|
+
expandIconCls?: string;
|
|
58
|
+
/**
|
|
59
|
+
* 折叠图标类名
|
|
60
|
+
*/
|
|
61
|
+
collapseIconCls?: string;
|
|
62
|
+
/**
|
|
63
|
+
* 是否折叠
|
|
64
|
+
* @default false
|
|
65
|
+
*/
|
|
66
|
+
collapsed?: boolean;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Layout Props 接口
|
|
70
|
+
*/
|
|
71
|
+
export interface LayoutProps {
|
|
72
|
+
/**
|
|
73
|
+
* 布局类名
|
|
74
|
+
*/
|
|
75
|
+
layoutCls?: string;
|
|
76
|
+
/**
|
|
77
|
+
* 布局样式
|
|
78
|
+
*/
|
|
79
|
+
layoutStyle?: CSSProperties | string;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* CollapsedPanel Props 接口
|
|
83
|
+
*/
|
|
84
|
+
export interface CollapsedPanelProps {
|
|
85
|
+
/**
|
|
86
|
+
* 区域
|
|
87
|
+
*/
|
|
88
|
+
region?: 'north' | 'south' | 'east' | 'west';
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* LayoutPanel 组件实例接口
|
|
92
|
+
* 继承自 Panel
|
|
93
|
+
*/
|
|
94
|
+
export interface LayoutPanelInstance extends ComponentPublicInstance {
|
|
95
|
+
/**
|
|
96
|
+
* 是否正在展开
|
|
97
|
+
*/
|
|
98
|
+
isExpanding: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* 折叠时收缩主体
|
|
101
|
+
*/
|
|
102
|
+
collapseToShrinkBody: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* 调整大小选项
|
|
105
|
+
*/
|
|
106
|
+
resizeOpts: any | null;
|
|
107
|
+
/**
|
|
108
|
+
* 布局实例
|
|
109
|
+
*/
|
|
110
|
+
layout: LayoutInstance;
|
|
111
|
+
/**
|
|
112
|
+
* 设置调整大小选项
|
|
113
|
+
*/
|
|
114
|
+
setResizeOpts(): void;
|
|
115
|
+
/**
|
|
116
|
+
* 展开
|
|
117
|
+
*/
|
|
118
|
+
expand(): void;
|
|
119
|
+
/**
|
|
120
|
+
* 折叠
|
|
121
|
+
*/
|
|
122
|
+
collapse(): void;
|
|
123
|
+
/**
|
|
124
|
+
* 点击折叠工具
|
|
125
|
+
*/
|
|
126
|
+
clickCollapsibleTool(): void;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* Layout 组件实例接口
|
|
130
|
+
*/
|
|
131
|
+
export interface LayoutInstance extends ComponentPublicInstance {
|
|
132
|
+
/**
|
|
133
|
+
* 面板列表
|
|
134
|
+
*/
|
|
135
|
+
panels: LayoutPanelInstance[];
|
|
136
|
+
/**
|
|
137
|
+
* 内边距
|
|
138
|
+
*/
|
|
139
|
+
paddings: string | null;
|
|
140
|
+
/**
|
|
141
|
+
* 左内边距
|
|
142
|
+
*/
|
|
143
|
+
paddingLeft: number;
|
|
144
|
+
/**
|
|
145
|
+
* 右内边距
|
|
146
|
+
*/
|
|
147
|
+
paddingRight: number;
|
|
148
|
+
/**
|
|
149
|
+
* 上内边距
|
|
150
|
+
*/
|
|
151
|
+
paddingTop: number;
|
|
152
|
+
/**
|
|
153
|
+
* 下内边距
|
|
154
|
+
*/
|
|
155
|
+
paddingBottom: number;
|
|
156
|
+
/**
|
|
157
|
+
* 添加面板
|
|
158
|
+
*/
|
|
159
|
+
addPanel(panel: LayoutPanelInstance): void;
|
|
160
|
+
/**
|
|
161
|
+
* 移除面板
|
|
162
|
+
*/
|
|
163
|
+
removePanel(panel: LayoutPanelInstance): void;
|
|
164
|
+
/**
|
|
165
|
+
* 获取面板
|
|
166
|
+
*/
|
|
167
|
+
getPanel(region: string): LayoutPanelInstance | null;
|
|
168
|
+
/**
|
|
169
|
+
* 获取内边距值
|
|
170
|
+
*/
|
|
171
|
+
getPaddingValue(region: string): number;
|
|
172
|
+
/**
|
|
173
|
+
* 更新内边距
|
|
174
|
+
*/
|
|
175
|
+
updatePaddings(): void;
|
|
176
|
+
/**
|
|
177
|
+
* 获取折叠标题
|
|
178
|
+
*/
|
|
179
|
+
collapseTitle(region: string): string | null;
|
|
180
|
+
/**
|
|
181
|
+
* 获取折叠图标类名
|
|
182
|
+
*/
|
|
183
|
+
collapseIconCls(region: string): string;
|
|
184
|
+
/**
|
|
185
|
+
* 获取折叠大小
|
|
186
|
+
*/
|
|
187
|
+
collapsedSize(region: string): number | null;
|
|
188
|
+
$refs: {
|
|
189
|
+
layoutRef?: HTMLElement;
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* CollapsedPanel 组件实例接口
|
|
194
|
+
* 继承自 Panel
|
|
195
|
+
*/
|
|
196
|
+
export interface CollapsedPanelInstance extends ComponentPublicInstance {
|
|
197
|
+
/**
|
|
198
|
+
* 布局实例
|
|
199
|
+
*/
|
|
200
|
+
layout: LayoutInstance;
|
|
201
|
+
/**
|
|
202
|
+
* 是否可见
|
|
203
|
+
*/
|
|
204
|
+
visible: boolean;
|
|
205
|
+
/**
|
|
206
|
+
* 展开
|
|
207
|
+
*/
|
|
208
|
+
expand(): void;
|
|
209
|
+
}
|
|
210
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/layout/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
* ButtonGroup 组件
|
|
12
|
+
*
|
|
13
|
+
* 按钮组组件,用于将多个 LinkButton 组合在一起,支持单选或多选模式。
|
|
14
|
+
* 当 selectionMode 为 'single' 时,同一时间只能选中一个按钮;
|
|
15
|
+
* 当 selectionMode 为 'multiple' 时,可以同时选中多个按钮。
|
|
16
|
+
*
|
|
17
|
+
* @component
|
|
18
|
+
*/
|
|
19
|
+
import { PropType } from 'vue';
|
|
20
|
+
import type { ButtonGroupProps } from './types';
|
|
21
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
22
|
+
/**
|
|
23
|
+
* 选择模式
|
|
24
|
+
* - 'multiple': 多选模式,可以同时选中多个按钮
|
|
25
|
+
* - 'single': 单选模式,同一时间只能选中一个按钮
|
|
26
|
+
* @default 'multiple'
|
|
27
|
+
*/
|
|
28
|
+
selectionMode: {
|
|
29
|
+
type: PropType<ButtonGroupProps["selectionMode"]>;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
}>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
/**
|
|
34
|
+
* 选择模式
|
|
35
|
+
* - 'multiple': 多选模式,可以同时选中多个按钮
|
|
36
|
+
* - 'single': 单选模式,同一时间只能选中一个按钮
|
|
37
|
+
* @default 'multiple'
|
|
38
|
+
*/
|
|
39
|
+
selectionMode: {
|
|
40
|
+
type: PropType<ButtonGroupProps["selectionMode"]>;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
selectionMode: "multiple" | "single" | undefined;
|
|
45
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
46
|
+
export default _default;
|
|
47
|
+
//# sourceMappingURL=ButtonGroup.d.ts.map
|