@koi-design/uxd-ui 14.0.4 → 14.0.6
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/es/components/Calendar/Calendar.vue.d.ts +15 -0
- package/es/components/Calendar/Header.vue.d.ts +15 -0
- package/es/components/Calendar/index.d.ts +30 -0
- package/es/components/Radio/Radio.mjs +5 -4
- package/es/components/Radio/Radio.mjs.map +1 -1
- package/es/components/Radio/Radio.type.d.ts +4 -0
- package/es/components/Radio/Radio.type.mjs +4 -0
- package/es/components/Radio/Radio.type.mjs.map +1 -1
- package/es/components/Radio/Radio.vue.d.ts +9 -0
- package/es/components/Radio/index.d.ts +15 -0
- package/es/components/Table/BaseTable.mjs +20 -6
- package/es/components/Table/BaseTable.mjs.map +1 -1
- package/es/components/Table/BaseTable.vue.d.ts +44 -9
- package/es/components/Table/BodyTable.vue.d.ts +44 -9
- package/es/components/Table/HeadTable.vue.d.ts +44 -9
- package/es/components/Table/Table.mjs +8 -9
- package/es/components/Table/Table.mjs.map +1 -1
- package/es/components/Table/Table.type.d.ts +7 -5
- package/es/components/Table/Table.type.mjs.map +1 -1
- package/es/components/Table/Table.vue.d.ts +88 -18
- package/es/components/Table/TableBox.vue.d.ts +88 -18
- package/es/components/Table/hooks/useTableResize.d.ts +1 -1
- package/es/components/Table/hooks/useTableResize.mjs +13 -71
- package/es/components/Table/hooks/useTableResize.mjs.map +1 -1
- package/es/components/Table/tableUnits/ColGroup.mjs +8 -5
- package/es/components/Table/tableUnits/ColGroup.mjs.map +1 -1
- package/es/components/Table/tableUnits/ExpandIcon.mjs +2 -2
- package/es/components/Table/tableUnits/ExpandIcon.mjs.map +1 -1
- package/es/components/Table/tableUnits/ExpandIcon.vue.d.ts +3 -3
- package/es/components/Table/tableUnits/ExpandRows.mjs.map +1 -1
- package/es/components/Table/tableUnits/ExpandRows.vue.d.ts +21 -3
- package/es/components/Table/tableUnits/SelectionBox.vue.d.ts +15 -0
- package/es/components/Table/tableUnits/TableBody.vue.d.ts +42 -6
- package/es/components/Table/tableUnits/TableCell.mjs +108 -95
- package/es/components/Table/tableUnits/TableCell.mjs.map +1 -1
- package/es/components/Table/tableUnits/TableCell.vue.d.ts +21 -3
- package/es/components/Table/tableUnits/TableRow.vue.d.ts +21 -3
- package/es/components/Tabs/TabNav.mjs +4 -5
- package/es/components/Tabs/TabNav.mjs.map +1 -1
- package/es/components/Tabs/TabNav.vue.d.ts +1 -1
- package/es/components/Tabs/Tabs.d.ts +1 -1
- package/es/components/Tabs/index.d.ts +3 -3
- package/es/components/base/ResizeObserver.mjs +1 -1
- package/es/components/base/ResizeObserver.mjs.map +1 -1
- package/lib/components/Calendar/Calendar.vue.d.ts +15 -0
- package/lib/components/Calendar/Header.vue.d.ts +15 -0
- package/lib/components/Calendar/index.d.ts +30 -0
- package/lib/components/Radio/Radio.js +4 -3
- package/lib/components/Radio/Radio.js.map +1 -1
- package/lib/components/Radio/Radio.type.d.ts +4 -0
- package/lib/components/Radio/Radio.type.js +4 -0
- package/lib/components/Radio/Radio.type.js.map +1 -1
- package/lib/components/Radio/Radio.vue.d.ts +9 -0
- package/lib/components/Radio/index.d.ts +15 -0
- package/lib/components/Table/BaseTable.js +20 -6
- package/lib/components/Table/BaseTable.js.map +1 -1
- package/lib/components/Table/BaseTable.vue.d.ts +44 -9
- package/lib/components/Table/BodyTable.vue.d.ts +44 -9
- package/lib/components/Table/HeadTable.vue.d.ts +44 -9
- package/lib/components/Table/Table.js +7 -8
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Table.type.d.ts +7 -5
- package/lib/components/Table/Table.type.js.map +1 -1
- package/lib/components/Table/Table.vue.d.ts +88 -18
- package/lib/components/Table/TableBox.vue.d.ts +88 -18
- package/lib/components/Table/hooks/useTableResize.d.ts +1 -1
- package/lib/components/Table/hooks/useTableResize.js +11 -69
- package/lib/components/Table/hooks/useTableResize.js.map +1 -1
- package/lib/components/Table/tableUnits/ColGroup.js +8 -5
- package/lib/components/Table/tableUnits/ColGroup.js.map +1 -1
- package/lib/components/Table/tableUnits/ExpandIcon.js +1 -1
- package/lib/components/Table/tableUnits/ExpandIcon.js.map +1 -1
- package/lib/components/Table/tableUnits/ExpandIcon.vue.d.ts +3 -3
- package/lib/components/Table/tableUnits/ExpandRows.js.map +1 -1
- package/lib/components/Table/tableUnits/ExpandRows.vue.d.ts +21 -3
- package/lib/components/Table/tableUnits/SelectionBox.vue.d.ts +15 -0
- package/lib/components/Table/tableUnits/TableBody.vue.d.ts +42 -6
- package/lib/components/Table/tableUnits/TableCell.js +107 -94
- package/lib/components/Table/tableUnits/TableCell.js.map +1 -1
- package/lib/components/Table/tableUnits/TableCell.vue.d.ts +21 -3
- package/lib/components/Table/tableUnits/TableRow.vue.d.ts +21 -3
- package/lib/components/Tabs/TabNav.js +3 -4
- package/lib/components/Tabs/TabNav.js.map +1 -1
- package/lib/components/Tabs/TabNav.vue.d.ts +1 -1
- package/lib/components/Tabs/Tabs.d.ts +1 -1
- package/lib/components/Tabs/index.d.ts +3 -3
- package/lib/components/base/ResizeObserver.js +1 -1
- package/lib/components/base/ResizeObserver.js.map +1 -1
- package/package.json +1 -1
- package/styles/components/alert/index.css +1 -1
- package/styles/components/autoComplete/index.css +1 -1
- package/styles/components/avatar/index.css +1 -1
- package/styles/components/button/index.css +1 -1
- package/styles/components/carousel/index.css +1 -1
- package/styles/components/cascader/index.css +1 -1
- package/styles/components/datePicker/index.css +1 -1
- package/styles/components/dropdown/index.css +1 -1
- package/styles/components/dropdown/index.less +2 -3
- package/styles/components/form/index.css +1 -1
- package/styles/components/icon/index.css +1 -1
- package/styles/components/input/index.css +1 -1
- package/styles/components/inputNumber/index.css +1 -1
- package/styles/components/link/index.css +1 -1
- package/styles/components/mentions/index.css +1 -1
- package/styles/components/modal/index.css +1 -1
- package/styles/components/select/index.css +1 -1
- package/styles/components/spin/index.css +1 -1
- package/styles/components/table/index.css +1 -1
- package/styles/components/table/index.less +106 -242
- package/styles/components/table/var.less +16 -31
- package/styles/components/tabs/borderCard.less +23 -27
- package/styles/components/tabs/card.less +18 -37
- package/styles/components/tabs/index.css +1 -1
- package/styles/components/tabs/index.less +103 -72
- package/styles/components/tabs/var.less +16 -71
- package/styles/components/timePicker/index.css +1 -1
- package/styles/cssVariable.css +1 -1
- package/styles/cssVariable.less +1 -1
- package/styles/index.css +1 -1
- package/types/components/Calendar/Calendar.vue.d.ts +15 -0
- package/types/components/Calendar/Header.vue.d.ts +15 -0
- package/types/components/Calendar/index.d.ts +30 -0
- package/types/components/Radio/Radio.type.d.ts +4 -0
- package/types/components/Radio/Radio.vue.d.ts +9 -0
- package/types/components/Radio/index.d.ts +15 -0
- package/types/components/Table/BaseTable.vue.d.ts +44 -9
- package/types/components/Table/BodyTable.vue.d.ts +44 -9
- package/types/components/Table/HeadTable.vue.d.ts +44 -9
- package/types/components/Table/Table.type.d.ts +7 -5
- package/types/components/Table/Table.vue.d.ts +88 -18
- package/types/components/Table/TableBox.vue.d.ts +88 -18
- package/types/components/Table/hooks/useTableResize.d.ts +1 -1
- package/types/components/Table/tableUnits/ExpandIcon.vue.d.ts +3 -3
- package/types/components/Table/tableUnits/ExpandRows.vue.d.ts +21 -3
- package/types/components/Table/tableUnits/SelectionBox.vue.d.ts +15 -0
- package/types/components/Table/tableUnits/TableBody.vue.d.ts +42 -6
- package/types/components/Table/tableUnits/TableCell.vue.d.ts +21 -3
- package/types/components/Table/tableUnits/TableRow.vue.d.ts +21 -3
- package/types/components/Tabs/TabNav.vue.d.ts +1 -1
- package/types/components/Tabs/Tabs.d.ts +1 -1
- package/types/components/Tabs/index.d.ts +3 -3
- package/uxd-ui.css +1 -1
- package/uxd-ui.esm.min.mjs +6 -6
- package/uxd-ui.esm.mjs +164 -191
- package/uxd-ui.umd.js +164 -191
- package/uxd-ui.umd.min.js +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Table.type.js","sources":["../../../../src/components/Table/Table.type.ts"],"sourcesContent":["import type { ComputedRef, CSSProperties, ExtractPropTypes, PropType, Ref, Slot, Slots, VNodeChild } from 'vue';\nimport type { JSX } from 'vue/jsx-runtime';\nimport { normalSizeMap } from '../../utils/globalType';\nimport { oneOf } from '../../utils/propsValidators';\nimport type { EmitFn, NormalSizeMap } from '../../utils/globalType';\nimport type { TableLocal } from '../locale/default';\nimport type { PaginationProps } from '../Pagination/Pagination.type';\nimport type Table from './Table.vue';\nimport type { RowData } from './hooks/useDraggable';\n\nexport type ColumnFixed = boolean | 'left' | 'right';\nexport type ColumnAlign = 'left' | 'right' | 'center';\nexport type ColumnSortOrder = 'ascend' | 'descend';\nexport type ColumnSortFn = (a: any, b: any) => number;\nexport interface ColumnFilter {\n label: string;\n value: string | number;\n}\nexport type ColumnFilterFn = (value: string | number, row: any) => boolean;\nexport interface ColumnSlotParams {\n row: any;\n index: number;\n rowKey: string | number;\n pagination: Partial<PaginationProps>;\n column: InnerColumn;\n}\n\nexport interface TableColProps {\n width: string;\n key: string;\n fixed: boolean;\n}\n\nexport interface ColumnFilterSlotParams {\n selectedKeys: (string | number)[];\n setSelectedKeys: (keys: (string | number)[]) => void;\n confirm: () => void;\n column: InnerColumn;\n}\n\nexport interface TableColumnSkeleton {\n type: 'circle' | 'rect' | 'text' | 'p' | 'image';\n style: CSSProperties;\n}\nexport interface TableColumn {\n key: string;\n title?: string;\n dataIndex?: string;\n width?: number | string;\n minWidth?: number | string;\n maxWidth?: number | string;\n children?: TableColumn[];\n fixed?: ColumnFixed;\n align?: ColumnAlign;\n ellipsis?: boolean;\n sortable?: boolean | 'custom';\n sortOrder?: ColumnSortOrder;\n sortDirections?: ColumnSortOrder[];\n sortFn?: ColumnSortFn;\n filterable?: boolean;\n filters?: ColumnFilter[];\n filterFn?: ColumnFilterFn;\n filterIcon?: string;\n filterIconStyle?: CSSProperties;\n filterMultiple?: boolean;\n filteredValue?: (string | number)[];\n onFilterDropdownVisibleChange?: (visible: boolean) => void;\n slot?: string;\n titleSlot?: string;\n filterSlot?: string;\n render?: (param: ColumnSlotParams) => VNodeChild | JSX.Element;\n titleRender?: (column: TableColumn) => VNodeChild | JSX.Element;\n filterRender?: (param: ColumnFilterSlotParams) => VNodeChild | JSX.Element;\n resizable?: boolean;\n customCell?: (row: any, index: number) => Record<string, any>;\n className?: string;\n hideSummary?: boolean;\n summarySlot?: string;\n summaryRender?: (sum?: number) => VNodeChild | JSX.Element;\n customSummaryCell?: () => Record<string, any>;\n autoSummary?: boolean;\n tips?: string;\n skeleton?: TableColumnSkeleton[];\n\n // draggable?: boolean;\n // handleDragStart?: (event: MouseEvent, param: ColumnSlotParams) => void;\n // render?: (param: ColumnSlotParams, handleDragStart?: (event: MouseEvent, DragParam: ColumnSlotParams) => void) => VNodeChild | JSX.Element;\n}\n\nexport interface InnerColumn extends TableColumn {\n _index?: number;\n rowSpan?: number;\n colSpan?: number;\n children?: InnerColumn[];\n type?: string;\n summaryRender?: (sum?: number) => VNodeChild | JSX.Element;\n left?: number;\n right?: number;\n lastLeft?: boolean;\n firstRight?: boolean;\n _isRightEdge?: boolean;\n}\n\nexport type SelectionType = 'checkbox' | 'radio';\nexport interface SelectionMenu {\n key: string;\n text: string;\n onSelect?: (rows: any[]) => void;\n}\nexport interface SelectionConfig {\n selectedKeys: (string | number)[] | undefined;\n type?: SelectionType;\n setSelectionProps?: (row: any, index: any) => Record<string, any>;\n selectionMenus?: SelectionMenu[];\n hideDefaultMenus?: boolean;\n onChange?: (keys: (string | number)[], selectedRows: any[]) => void;\n onSelect?: (data: any, checked: boolean, selectedRows: any[], event: any) => void;\n onSelectMultiple?: (checked: boolean, selectedRows: any[], changeRows: any[]) => void;\n onSelectAll?: (checked: boolean, selectedRows: any[], changeRows: any[]) => void;\n onSelectInvert?: (keys: (string | number)[]) => void;\n columnWidth?: number;\n fixed?: ColumnFixed;\n showCheckAll?: boolean;\n}\n\nexport interface DraggableConfig {\n fixed?: ColumnFixed;\n onDragDrop: (sourceRowKey: string | number, targetRowKey: string | number) => void;\n}\n\nexport type PaginationPosition = 'top' | 'bottom' | 'both' | undefined;\nexport type PaginationAlign = 'left' | 'right' | undefined;\nexport interface PaginationConfig extends Partial<PaginationProps> {\n position: PaginationPosition;\n align: PaginationAlign;\n}\n\nexport interface InnerDataItem {\n _index: number;\n _key: string | number;\n _isSkeleton?: boolean;\n dataRef: Record<string, any>;\n children?: InnerColumn[];\n}\n\nexport type RowClassName = (row: Record<string, any>, index: number) => string;\nexport type GetRowKey = (row: Record<string, any>, index: number) => string | number;\n\nexport const tableProps = {\n data: {\n type: Array as PropType<Record<string, any>[]>,\n default: () => [] as Record<string, any>[]\n },\n columns: {\n type: Array as PropType<TableColumn[]>,\n default: () => [] as TableColumn[]\n },\n border: {\n type: Boolean,\n default: false\n },\n showHeader: {\n type: Boolean,\n default: true\n },\n width: {\n type: [Number, String]\n },\n maxHeight: {\n type: [Number, String]\n },\n loading: {\n type: Boolean,\n default: false\n },\n size: {\n type: String as PropType<NormalSizeMap>,\n default: 'default',\n validator: oneOf(normalSizeMap)\n },\n disabledHover: {\n type: Boolean,\n default: false\n },\n rowKey: {\n type: [Function, String] as PropType<string | GetRowKey>,\n default: 'key'\n },\n rowClassName: {\n type: Function as PropType<RowClassName>\n },\n expandIcon: {\n type: String\n },\n defaultExpandAllRows: {\n type: Boolean,\n default: false\n },\n expandedRowKeys: {\n type: Array as PropType<string[]>\n },\n treeIconColumnIndex: {\n type: Number\n },\n defaultShowAllChildren: {\n type: Boolean,\n default: false\n },\n showChildrenRowKeys: {\n type: Array as PropType<string[]>\n },\n indentSize: {\n type: Number,\n default: 20\n },\n selection: {\n type: Object as PropType<SelectionConfig>\n },\n locale: {\n type: Object as PropType<TableLocal>\n },\n stripe: {\n type: Boolean,\n default: false\n },\n showPagination: {\n type: Boolean,\n default: false\n },\n pagination: {\n type: Object as PropType<PaginationConfig>\n },\n showSummary: {\n type: Boolean,\n default: false\n },\n expandFix: {\n type: Boolean,\n default: false\n },\n expandIndent: {\n type: Boolean,\n default: true\n },\n draggable: {\n type: Object as PropType<DraggableConfig>\n },\n headerSticky: {\n type: Number,\n default: undefined as undefined\n },\n variant: {\n type: String as PropType<'surface' | 'ghost' | 'border'>,\n default: 'ghost'\n },\n radius: {\n type: Boolean,\n default: false\n },\n loadingType: {\n type: String as PropType<'spinner' | 'skeleton'>,\n default: 'spinner'\n },\n skeletonRows: {\n type: Number,\n default: 3\n }\n};\nexport type TableProps = ExtractPropTypes<typeof tableProps>;\n\nexport type SaveRef = (key: string) => (el: any) => void;\nexport type TableRefs = Record<string, any>;\nexport interface ExpandParams {\n row: any;\n rowKey: string | number;\n async?: boolean;\n done?: () => void;\n tree?: boolean;\n}\nexport interface TableContext {\n prefixCls: ComputedRef<string>;\n locale: ComputedRef<TableLocal>;\n data: ComputedRef<InnerDataItem[]>;\n saveRef: SaveRef;\n tableRefs: TableRefs;\n showResizeLine: Ref<boolean>;\n props: {\n showHeader: Ref<boolean>;\n maxHeight: Ref<string | number | undefined>;\n expandIcon: Ref<string | undefined>;\n rowClassName: Ref<RowClassName>;\n indentSize: Ref<number>;\n emptyText: ComputedRef<string>;\n showSummary: Ref<boolean>;\n disabledHover: Ref<boolean>;\n expandIndent: Ref<boolean>;\n headerSticky: Ref<number | undefined>;\n loading: Ref<boolean>;\n };\n slots: Slots;\n expand: {\n expandedRowRender: ComputedRef<Slot | undefined>;\n expandedRowKeys: Ref<(string | number)[]>;\n showChildrenRowKeys: Ref<(string | number)[]>;\n isRowExpanded: (rowKey: string | number, tree: boolean) => boolean;\n expandIconColumnIndex: ComputedRef<number>;\n handleExpandChange: ({ row, rowKey, async, done, tree }: ExpandParams, e: Event) => void;\n isTreeTable: ComputedRef<boolean>;\n };\n size: {\n tableWidth: Ref<number>;\n sizesMap: Record<string, number>;\n isScrollX: ComputedRef<boolean>;\n setResizeWidth: (column: InnerColumn, width: number) => void;\n handleColumnResize: (columnWidth: number, changeWidth: number, column: InnerColumn, event: Event) => void;\n debouncedHandleResize: any;\n };\n fixed: {\n isColumnFixed: ComputedRef<boolean>;\n currentHoverKey: Ref<string | number | null>;\n };\n draggable: {\n setRowRefs: (val: RowData) => void;\n };\n rowEvents: {\n onRowMouseEnter: (data: Record<string, any>, index: number, e: Event) => void;\n onRowMouseLeave: (data: Record<string, any>, index: number, e: Event) => void;\n onRowClick: (data: Record<string, any>, index: number, e: Event) => void;\n onRowDoubleClick: (data: Record<string, any>, index: number, e: Event) => void;\n onRowContextMenu: (data: Record<string, any>, index: number, e: Event) => void;\n };\n headerEvents: {\n onHeaderCellClick: (column: InnerColumn, e: any) => void;\n };\n filterAndSorter: {\n hasAction: (column: InnerColumn) => boolean;\n hasSorters: (column: InnerColumn) => boolean;\n hasFilters: (column: InnerColumn) => boolean;\n isSortColumn: (column: InnerColumn) => boolean;\n isAscend: (column: InnerColumn) => boolean;\n isDescend: (column: InnerColumn) => boolean;\n hasAscend: (column: InnerColumn) => boolean;\n hasDescend: (column: InnerColumn) => boolean;\n toggleSortOrder: (column: InnerColumn) => void;\n setColumnFilter: (column: InnerColumn, selectedKeys: (string | number)[]) => void;\n };\n isSummary: boolean;\n pagination: PaginationProps;\n}\n\nconst rowEmitFn = (data: Record<string, any>, index: number, e: Event) => typeof data === 'object' && typeof index === 'number' && e instanceof Event;\nexport const tableEmits = {\n 'row-mouseenter': rowEmitFn,\n 'row-mouseleave': rowEmitFn,\n 'row-click': rowEmitFn,\n 'row-doubleclick': rowEmitFn,\n 'row-contextmenu': rowEmitFn,\n 'header-click': (column: TableColumn, e: Event) => typeof column === 'object' && e instanceof Event,\n 'column-resize': (columnWidth: number, changeWidth: number, column: InnerColumn, event: Event) =>\n typeof columnWidth === 'number' && typeof changeWidth === 'number' && typeof column === 'object' && event instanceof Event,\n expand: (expanded: boolean, row: Record<string, any>, type: string) =>\n typeof expanded === 'boolean' && typeof row === 'object' && typeof type === 'string',\n 'async-expand': (row: any, done: (() => void) | undefined, keys: (string | number)[]) =>\n typeof row === 'object' && Array.isArray(keys) && typeof done === 'function',\n change: (\n pagination: PaginationProps,\n sort: { column: TableColumn | null; order: ColumnSortOrder | null },\n filter: Record<string, (string | number)[]> | null\n ) => !(pagination === null && sort === null && filter === null)\n};\n\nexport type TableEmits = typeof tableEmits;\nexport type TableEmit = EmitFn<TableEmits>;\nexport type TableInstanceType = InstanceType<typeof Table>;\n"],"names":["oneOf","normalSizeMap"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"Table.type.js","sources":["../../../../src/components/Table/Table.type.ts"],"sourcesContent":["import type { Component, ComputedRef, CSSProperties, ExtractPropTypes, PropType, Ref, Slot, Slots, VNodeChild } from 'vue';\nimport type { JSX } from 'vue/jsx-runtime';\nimport { normalSizeMap } from '../../utils/globalType';\nimport { oneOf } from '../../utils/propsValidators';\nimport type { EmitFn, NormalSizeMap } from '../../utils/globalType';\nimport type { TableLocal } from '../locale/default';\nimport type { PaginationProps } from '../Pagination/Pagination.type';\nimport type Table from './Table.vue';\nimport type { RowData } from './hooks/useDraggable';\n\nexport type ColumnFixed = boolean | 'left' | 'right';\nexport type ColumnAlign = 'left' | 'right' | 'center';\nexport type ColumnSortOrder = 'ascend' | 'descend';\nexport type ColumnSortFn = (a: any, b: any) => number;\nexport interface ColumnFilter {\n label: string;\n value: string | number;\n}\nexport type ColumnFilterFn = (value: string | number, row: any) => boolean;\nexport interface ColumnSlotParams {\n row: any;\n index: number;\n rowKey: string | number;\n pagination: Partial<PaginationProps>;\n column: InnerColumn;\n}\n\nexport interface TableColProps {\n width: string;\n key: string;\n fixed: boolean;\n minWidth: string;\n resizeWidth: string;\n}\n\nexport interface ColumnFilterSlotParams {\n selectedKeys: (string | number)[];\n setSelectedKeys: (keys: (string | number)[]) => void;\n confirm: () => void;\n column: InnerColumn;\n}\n\nexport interface TableColumnSkeleton {\n type: 'circle' | 'rect' | 'text' | 'p' | 'image';\n style: CSSProperties;\n}\nexport interface TableColumn {\n key: string;\n title?: string;\n dataIndex?: string;\n width?: number | string;\n minWidth?: number;\n children?: TableColumn[];\n fixed?: ColumnFixed;\n align?: ColumnAlign;\n ellipsis?: boolean;\n sortable?: boolean | 'custom';\n sortOrder?: ColumnSortOrder;\n sortDirections?: ColumnSortOrder[];\n sortFn?: ColumnSortFn;\n filterable?: boolean;\n filters?: ColumnFilter[];\n filterFn?: ColumnFilterFn;\n filterIcon?: string | Component;\n filterIconStyle?: CSSProperties;\n filterMultiple?: boolean;\n filteredValue?: (string | number)[];\n onFilterDropdownVisibleChange?: (visible: boolean) => void;\n slot?: string;\n titleSlot?: string;\n filterSlot?: string;\n render?: (param: ColumnSlotParams) => VNodeChild | JSX.Element;\n titleRender?: (column: TableColumn) => VNodeChild | JSX.Element;\n filterRender?: (param: ColumnFilterSlotParams) => VNodeChild | JSX.Element;\n resizable?: boolean;\n customCell?: (row: any, index: number) => Record<string, any>;\n className?: string;\n hideSummary?: boolean;\n summarySlot?: string;\n summaryRender?: (sum?: number) => VNodeChild | JSX.Element;\n customSummaryCell?: () => Record<string, any>;\n autoSummary?: boolean;\n tips?: string;\n skeleton?: TableColumnSkeleton[];\n\n // draggable?: boolean;\n // handleDragStart?: (event: MouseEvent, param: ColumnSlotParams) => void;\n // render?: (param: ColumnSlotParams, handleDragStart?: (event: MouseEvent, DragParam: ColumnSlotParams) => void) => VNodeChild | JSX.Element;\n}\n\nexport interface InnerColumn extends TableColumn {\n _index?: number;\n rowSpan?: number;\n colSpan?: number;\n children?: InnerColumn[];\n type?: string;\n summaryRender?: (sum?: number) => VNodeChild | JSX.Element;\n left?: number;\n right?: number;\n lastLeft?: boolean;\n firstRight?: boolean;\n _isRightEdge?: boolean;\n}\n\nexport type SelectionType = 'checkbox' | 'radio';\nexport interface SelectionMenu {\n key: string;\n text: string;\n onSelect?: (rows: any[]) => void;\n}\nexport interface SelectionConfig {\n selectedKeys: (string | number)[] | undefined;\n type?: SelectionType;\n setSelectionProps?: (row: any, index: any) => Record<string, any>;\n selectionMenus?: SelectionMenu[];\n hideDefaultMenus?: boolean;\n onChange?: (keys: (string | number)[], selectedRows: any[]) => void;\n onSelect?: (data: any, checked: boolean, selectedRows: any[], event: any) => void;\n onSelectMultiple?: (checked: boolean, selectedRows: any[], changeRows: any[]) => void;\n onSelectAll?: (checked: boolean, selectedRows: any[], changeRows: any[]) => void;\n onSelectInvert?: (keys: (string | number)[]) => void;\n columnWidth?: number;\n fixed?: ColumnFixed;\n showCheckAll?: boolean;\n}\n\nexport interface DraggableConfig {\n fixed?: ColumnFixed;\n onDragDrop: (sourceRowKey: string | number, targetRowKey: string | number) => void;\n}\n\nexport type PaginationPosition = 'top' | 'bottom' | 'both' | undefined;\nexport type PaginationAlign = 'left' | 'right' | undefined;\nexport interface PaginationConfig extends Partial<PaginationProps> {\n position: PaginationPosition;\n align: PaginationAlign;\n}\n\nexport interface InnerDataItem {\n _index: number;\n _key: string | number;\n _isSkeleton?: boolean;\n dataRef: Record<string, any>;\n children?: InnerColumn[];\n}\n\nexport type RowClassName = (row: Record<string, any>, index: number) => string;\nexport type GetRowKey = (row: Record<string, any>, index: number) => string | number;\n\nexport const tableProps = {\n data: {\n type: Array as PropType<Record<string, any>[]>,\n default: () => [] as Record<string, any>[]\n },\n columns: {\n type: Array as PropType<TableColumn[]>,\n default: () => [] as TableColumn[]\n },\n border: {\n type: Boolean,\n default: false\n },\n showHeader: {\n type: Boolean,\n default: true\n },\n width: {\n type: [Number, String]\n },\n maxHeight: {\n type: [Number, String]\n },\n loading: {\n type: Boolean,\n default: false\n },\n size: {\n type: String as PropType<NormalSizeMap>,\n default: 'default',\n validator: oneOf(normalSizeMap)\n },\n disabledHover: {\n type: Boolean,\n default: false\n },\n rowKey: {\n type: [Function, String] as PropType<string | GetRowKey>,\n default: 'key'\n },\n rowClassName: {\n type: Function as PropType<RowClassName>\n },\n expandIcon: {\n type: String\n },\n defaultExpandAllRows: {\n type: Boolean,\n default: false\n },\n expandedRowKeys: {\n type: Array as PropType<string[]>\n },\n treeIconColumnIndex: {\n type: Number\n },\n defaultShowAllChildren: {\n type: Boolean,\n default: false\n },\n showChildrenRowKeys: {\n type: Array as PropType<string[]>\n },\n indentSize: {\n type: Number,\n default: 20\n },\n selection: {\n type: Object as PropType<SelectionConfig>\n },\n locale: {\n type: Object as PropType<TableLocal>\n },\n stripe: {\n type: Boolean,\n default: false\n },\n showPagination: {\n type: Boolean,\n default: false\n },\n pagination: {\n type: Object as PropType<PaginationConfig>\n },\n showSummary: {\n type: Boolean,\n default: false\n },\n expandFix: {\n type: Boolean,\n default: false\n },\n expandIndent: {\n type: Boolean,\n default: true\n },\n draggable: {\n type: Object as PropType<DraggableConfig>\n },\n headerSticky: {\n type: Number,\n default: undefined as undefined\n },\n variant: {\n type: String as PropType<'surface' | 'ghost' | 'border'>,\n default: 'ghost'\n },\n radius: {\n type: Boolean,\n default: false\n },\n loadingType: {\n type: String as PropType<'spinner' | 'skeleton'>,\n default: 'spinner'\n },\n skeletonRows: {\n type: Number,\n default: 3\n }\n};\nexport type TableProps = ExtractPropTypes<typeof tableProps>;\n\nexport type SaveRef = (key: string) => (el: any) => void;\nexport type TableRefs = Record<string, any>;\nexport interface ExpandParams {\n row: any;\n rowKey: string | number;\n async?: boolean;\n done?: () => void;\n tree?: boolean;\n}\nexport interface TableContext {\n prefixCls: ComputedRef<string>;\n locale: ComputedRef<TableLocal>;\n data: ComputedRef<InnerDataItem[]>;\n saveRef: SaveRef;\n tableRefs: TableRefs;\n showResizeLine: Ref<boolean>;\n props: {\n showHeader: Ref<boolean>;\n maxHeight: Ref<string | number | undefined>;\n expandIcon: Ref<string | undefined>;\n rowClassName: Ref<RowClassName>;\n indentSize: Ref<number>;\n emptyText: ComputedRef<string>;\n showSummary: Ref<boolean>;\n disabledHover: Ref<boolean>;\n expandIndent: Ref<boolean>;\n headerSticky: Ref<number | undefined>;\n loading: Ref<boolean>;\n width: Ref<string | number | undefined>;\n };\n slots: Slots;\n expand: {\n expandedRowRender: ComputedRef<Slot | undefined>;\n expandedRowKeys: Ref<(string | number)[]>;\n showChildrenRowKeys: Ref<(string | number)[]>;\n isRowExpanded: (rowKey: string | number, tree: boolean) => boolean;\n expandIconColumnIndex: ComputedRef<number>;\n handleExpandChange: ({ row, rowKey, async, done, tree }: ExpandParams, e: Event) => void;\n isTreeTable: ComputedRef<boolean>;\n };\n size: {\n tableWidth: Ref<number>;\n resizeColumns: Ref<InnerColumn[]>;\n // sizesMap: Record<string, number>;\n isScrollX: ComputedRef<boolean>;\n setResizeWidth: (column: InnerColumn, width: number) => void;\n handleColumnResize: (columnWidth: number, changeWidth: number, column: InnerColumn, event: Event) => void;\n debouncedHandleResize: any;\n };\n fixed: {\n isColumnFixed: ComputedRef<boolean>;\n currentHoverKey: Ref<string | number | null>;\n };\n draggable: {\n setRowRefs: (val: RowData) => void;\n };\n rowEvents: {\n onRowMouseEnter: (data: Record<string, any>, index: number, e: Event) => void;\n onRowMouseLeave: (data: Record<string, any>, index: number, e: Event) => void;\n onRowClick: (data: Record<string, any>, index: number, e: Event) => void;\n onRowDoubleClick: (data: Record<string, any>, index: number, e: Event) => void;\n onRowContextMenu: (data: Record<string, any>, index: number, e: Event) => void;\n };\n headerEvents: {\n onHeaderCellClick: (column: InnerColumn, e: any) => void;\n };\n filterAndSorter: {\n hasAction: (column: InnerColumn) => boolean;\n hasSorters: (column: InnerColumn) => boolean;\n hasFilters: (column: InnerColumn) => boolean;\n isSortColumn: (column: InnerColumn) => boolean;\n isAscend: (column: InnerColumn) => boolean;\n isDescend: (column: InnerColumn) => boolean;\n hasAscend: (column: InnerColumn) => boolean;\n hasDescend: (column: InnerColumn) => boolean;\n toggleSortOrder: (column: InnerColumn) => void;\n setColumnFilter: (column: InnerColumn, selectedKeys: (string | number)[]) => void;\n };\n isSummary: boolean;\n pagination: PaginationProps;\n}\n\nconst rowEmitFn = (data: Record<string, any>, index: number, e: Event) => typeof data === 'object' && typeof index === 'number' && e instanceof Event;\nexport const tableEmits = {\n 'row-mouseenter': rowEmitFn,\n 'row-mouseleave': rowEmitFn,\n 'row-click': rowEmitFn,\n 'row-doubleclick': rowEmitFn,\n 'row-contextmenu': rowEmitFn,\n 'header-click': (column: TableColumn, e: Event) => typeof column === 'object' && e instanceof Event,\n 'column-resize': (columnWidth: number, changeWidth: number, column: InnerColumn, event: Event) =>\n typeof columnWidth === 'number' && typeof changeWidth === 'number' && typeof column === 'object' && event instanceof Event,\n expand: (expanded: boolean, row: Record<string, any>, type: string) =>\n typeof expanded === 'boolean' && typeof row === 'object' && typeof type === 'string',\n 'async-expand': (row: any, done: (() => void) | undefined, keys: (string | number)[]) =>\n typeof row === 'object' && Array.isArray(keys) && typeof done === 'function',\n change: (\n pagination: PaginationProps,\n sort: { column: TableColumn | null; order: ColumnSortOrder | null },\n filter: Record<string, (string | number)[]> | null\n ) => !(pagination === null && sort === null && filter === null)\n};\n\nexport type TableEmits = typeof tableEmits;\nexport type TableEmit = EmitFn<TableEmits>;\nexport type TableInstanceType = InstanceType<typeof Table>;\n"],"names":["oneOf","normalSizeMap"],"mappings":"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"}
|
|
@@ -404,8 +404,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
404
404
|
title?: string;
|
|
405
405
|
dataIndex?: string;
|
|
406
406
|
width?: string | number;
|
|
407
|
-
minWidth?:
|
|
408
|
-
maxWidth?: string | number;
|
|
407
|
+
minWidth?: number;
|
|
409
408
|
fixed?: import("./Table.type").ColumnFixed;
|
|
410
409
|
align?: import("./Table.type").ColumnAlign;
|
|
411
410
|
ellipsis?: boolean;
|
|
@@ -416,7 +415,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
416
415
|
filterable?: boolean;
|
|
417
416
|
filters?: import("./Table.type").ColumnFilter[];
|
|
418
417
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
419
|
-
filterIcon?: string
|
|
418
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
420
419
|
filterIconStyle?: import("vue").CSSProperties;
|
|
421
420
|
filterMultiple?: boolean;
|
|
422
421
|
filteredValue?: (string | number)[];
|
|
@@ -4800,6 +4799,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4800
4799
|
cellRef: import("vue").Ref<any, any>;
|
|
4801
4800
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
4802
4801
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
4802
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
4803
4803
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4804
4804
|
prefixCls: {
|
|
4805
4805
|
type: StringConstructor;
|
|
@@ -4856,7 +4856,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4856
4856
|
};
|
|
4857
4857
|
expandIcon: {
|
|
4858
4858
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
4859
|
-
default:
|
|
4859
|
+
default: any;
|
|
4860
4860
|
};
|
|
4861
4861
|
needIndentSpaced: {
|
|
4862
4862
|
type: BooleanConstructor;
|
|
@@ -4882,7 +4882,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4882
4882
|
};
|
|
4883
4883
|
expandIcon: {
|
|
4884
4884
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
4885
|
-
default:
|
|
4885
|
+
default: any;
|
|
4886
4886
|
};
|
|
4887
4887
|
needIndentSpaced: {
|
|
4888
4888
|
type: BooleanConstructor;
|
|
@@ -4897,7 +4897,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4897
4897
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
4898
4898
|
}>, {
|
|
4899
4899
|
expanded: boolean;
|
|
4900
|
-
expandIcon:
|
|
4900
|
+
expandIcon: any;
|
|
4901
4901
|
expandable: boolean;
|
|
4902
4902
|
needIndentSpaced: boolean;
|
|
4903
4903
|
needLoading: boolean;
|
|
@@ -5874,6 +5874,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5874
5874
|
}, {}, {
|
|
5875
5875
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
5876
5876
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5877
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5878
|
+
disabled: {
|
|
5879
|
+
type: BooleanConstructor;
|
|
5880
|
+
default: boolean;
|
|
5881
|
+
};
|
|
5882
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5883
|
+
[key: string]: any;
|
|
5884
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5885
|
+
disabled: {
|
|
5886
|
+
type: BooleanConstructor;
|
|
5887
|
+
default: boolean;
|
|
5888
|
+
};
|
|
5889
|
+
}>> & Readonly<{
|
|
5890
|
+
onResize?: (...args: any[]) => any;
|
|
5891
|
+
}>, {
|
|
5892
|
+
disabled: boolean;
|
|
5893
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5877
5894
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5878
5895
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5879
5896
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -6081,6 +6098,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6081
6098
|
cellRef: import("vue").Ref<any, any>;
|
|
6082
6099
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
6083
6100
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
6101
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
6084
6102
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6085
6103
|
prefixCls: {
|
|
6086
6104
|
type: StringConstructor;
|
|
@@ -6137,7 +6155,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6137
6155
|
};
|
|
6138
6156
|
expandIcon: {
|
|
6139
6157
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
6140
|
-
default:
|
|
6158
|
+
default: any;
|
|
6141
6159
|
};
|
|
6142
6160
|
needIndentSpaced: {
|
|
6143
6161
|
type: BooleanConstructor;
|
|
@@ -6163,7 +6181,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6163
6181
|
};
|
|
6164
6182
|
expandIcon: {
|
|
6165
6183
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
6166
|
-
default:
|
|
6184
|
+
default: any;
|
|
6167
6185
|
};
|
|
6168
6186
|
needIndentSpaced: {
|
|
6169
6187
|
type: BooleanConstructor;
|
|
@@ -6178,7 +6196,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6178
6196
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
6179
6197
|
}>, {
|
|
6180
6198
|
expanded: boolean;
|
|
6181
|
-
expandIcon:
|
|
6199
|
+
expandIcon: any;
|
|
6182
6200
|
expandable: boolean;
|
|
6183
6201
|
needIndentSpaced: boolean;
|
|
6184
6202
|
needLoading: boolean;
|
|
@@ -7155,6 +7173,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7155
7173
|
}, {}, {
|
|
7156
7174
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
7157
7175
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7176
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7177
|
+
disabled: {
|
|
7178
|
+
type: BooleanConstructor;
|
|
7179
|
+
default: boolean;
|
|
7180
|
+
};
|
|
7181
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7182
|
+
[key: string]: any;
|
|
7183
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7184
|
+
disabled: {
|
|
7185
|
+
type: BooleanConstructor;
|
|
7186
|
+
default: boolean;
|
|
7187
|
+
};
|
|
7188
|
+
}>> & Readonly<{
|
|
7189
|
+
onResize?: (...args: any[]) => any;
|
|
7190
|
+
}>, {
|
|
7191
|
+
disabled: boolean;
|
|
7192
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7158
7193
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7159
7194
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7160
7195
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -7326,8 +7361,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7326
7361
|
title?: string;
|
|
7327
7362
|
dataIndex?: string;
|
|
7328
7363
|
width?: string | number;
|
|
7329
|
-
minWidth?:
|
|
7330
|
-
maxWidth?: string | number;
|
|
7364
|
+
minWidth?: number;
|
|
7331
7365
|
fixed?: import("./Table.type").ColumnFixed;
|
|
7332
7366
|
align?: import("./Table.type").ColumnAlign;
|
|
7333
7367
|
ellipsis?: boolean;
|
|
@@ -7338,7 +7372,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7338
7372
|
filterable?: boolean;
|
|
7339
7373
|
filters?: import("./Table.type").ColumnFilter[];
|
|
7340
7374
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
7341
|
-
filterIcon?: string
|
|
7375
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
7342
7376
|
filterIconStyle?: import("vue").CSSProperties;
|
|
7343
7377
|
filterMultiple?: boolean;
|
|
7344
7378
|
filteredValue?: (string | number)[];
|
|
@@ -11722,6 +11756,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11722
11756
|
cellRef: import("vue").Ref<any, any>;
|
|
11723
11757
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
11724
11758
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
11759
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
11725
11760
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11726
11761
|
prefixCls: {
|
|
11727
11762
|
type: StringConstructor;
|
|
@@ -11778,7 +11813,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11778
11813
|
};
|
|
11779
11814
|
expandIcon: {
|
|
11780
11815
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
11781
|
-
default:
|
|
11816
|
+
default: any;
|
|
11782
11817
|
};
|
|
11783
11818
|
needIndentSpaced: {
|
|
11784
11819
|
type: BooleanConstructor;
|
|
@@ -11804,7 +11839,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11804
11839
|
};
|
|
11805
11840
|
expandIcon: {
|
|
11806
11841
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
11807
|
-
default:
|
|
11842
|
+
default: any;
|
|
11808
11843
|
};
|
|
11809
11844
|
needIndentSpaced: {
|
|
11810
11845
|
type: BooleanConstructor;
|
|
@@ -11819,7 +11854,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11819
11854
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
11820
11855
|
}>, {
|
|
11821
11856
|
expanded: boolean;
|
|
11822
|
-
expandIcon:
|
|
11857
|
+
expandIcon: any;
|
|
11823
11858
|
expandable: boolean;
|
|
11824
11859
|
needIndentSpaced: boolean;
|
|
11825
11860
|
needLoading: boolean;
|
|
@@ -12796,6 +12831,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12796
12831
|
}, {}, {
|
|
12797
12832
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
12798
12833
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12834
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12835
|
+
disabled: {
|
|
12836
|
+
type: BooleanConstructor;
|
|
12837
|
+
default: boolean;
|
|
12838
|
+
};
|
|
12839
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
12840
|
+
[key: string]: any;
|
|
12841
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12842
|
+
disabled: {
|
|
12843
|
+
type: BooleanConstructor;
|
|
12844
|
+
default: boolean;
|
|
12845
|
+
};
|
|
12846
|
+
}>> & Readonly<{
|
|
12847
|
+
onResize?: (...args: any[]) => any;
|
|
12848
|
+
}>, {
|
|
12849
|
+
disabled: boolean;
|
|
12850
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12799
12851
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12800
12852
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12801
12853
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -13003,6 +13055,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13003
13055
|
cellRef: import("vue").Ref<any, any>;
|
|
13004
13056
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
13005
13057
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
13058
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
13006
13059
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13007
13060
|
prefixCls: {
|
|
13008
13061
|
type: StringConstructor;
|
|
@@ -13059,7 +13112,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13059
13112
|
};
|
|
13060
13113
|
expandIcon: {
|
|
13061
13114
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
13062
|
-
default:
|
|
13115
|
+
default: any;
|
|
13063
13116
|
};
|
|
13064
13117
|
needIndentSpaced: {
|
|
13065
13118
|
type: BooleanConstructor;
|
|
@@ -13085,7 +13138,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13085
13138
|
};
|
|
13086
13139
|
expandIcon: {
|
|
13087
13140
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
13088
|
-
default:
|
|
13141
|
+
default: any;
|
|
13089
13142
|
};
|
|
13090
13143
|
needIndentSpaced: {
|
|
13091
13144
|
type: BooleanConstructor;
|
|
@@ -13100,7 +13153,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13100
13153
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
13101
13154
|
}>, {
|
|
13102
13155
|
expanded: boolean;
|
|
13103
|
-
expandIcon:
|
|
13156
|
+
expandIcon: any;
|
|
13104
13157
|
expandable: boolean;
|
|
13105
13158
|
needIndentSpaced: boolean;
|
|
13106
13159
|
needLoading: boolean;
|
|
@@ -14077,6 +14130,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14077
14130
|
}, {}, {
|
|
14078
14131
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
14079
14132
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14133
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
14134
|
+
disabled: {
|
|
14135
|
+
type: BooleanConstructor;
|
|
14136
|
+
default: boolean;
|
|
14137
|
+
};
|
|
14138
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14139
|
+
[key: string]: any;
|
|
14140
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14141
|
+
disabled: {
|
|
14142
|
+
type: BooleanConstructor;
|
|
14143
|
+
default: boolean;
|
|
14144
|
+
};
|
|
14145
|
+
}>> & Readonly<{
|
|
14146
|
+
onResize?: (...args: any[]) => any;
|
|
14147
|
+
}>, {
|
|
14148
|
+
disabled: boolean;
|
|
14149
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14080
14150
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14081
14151
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14082
14152
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -67,8 +67,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
67
67
|
title?: string;
|
|
68
68
|
dataIndex?: string;
|
|
69
69
|
width?: string | number;
|
|
70
|
-
minWidth?:
|
|
71
|
-
maxWidth?: string | number;
|
|
70
|
+
minWidth?: number;
|
|
72
71
|
fixed?: import("./Table.type").ColumnFixed;
|
|
73
72
|
align?: import("./Table.type").ColumnAlign;
|
|
74
73
|
ellipsis?: boolean;
|
|
@@ -79,7 +78,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
79
78
|
filterable?: boolean;
|
|
80
79
|
filters?: import("./Table.type").ColumnFilter[];
|
|
81
80
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
82
|
-
filterIcon?: string
|
|
81
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
83
82
|
filterIconStyle?: import("vue").CSSProperties;
|
|
84
83
|
filterMultiple?: boolean;
|
|
85
84
|
filteredValue?: (string | number)[];
|
|
@@ -4463,6 +4462,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4463
4462
|
cellRef: import("vue").Ref<any, any>;
|
|
4464
4463
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
4465
4464
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
4465
|
+
debouncedHandleResize: import("../../utils").DebounceReturn;
|
|
4466
4466
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4467
4467
|
prefixCls: {
|
|
4468
4468
|
type: StringConstructor;
|
|
@@ -4519,7 +4519,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4519
4519
|
};
|
|
4520
4520
|
expandIcon: {
|
|
4521
4521
|
type: PropType<import("../..").IconPropType>;
|
|
4522
|
-
default:
|
|
4522
|
+
default: any;
|
|
4523
4523
|
};
|
|
4524
4524
|
needIndentSpaced: {
|
|
4525
4525
|
type: BooleanConstructor;
|
|
@@ -4545,7 +4545,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4545
4545
|
};
|
|
4546
4546
|
expandIcon: {
|
|
4547
4547
|
type: PropType<import("../..").IconPropType>;
|
|
4548
|
-
default:
|
|
4548
|
+
default: any;
|
|
4549
4549
|
};
|
|
4550
4550
|
needIndentSpaced: {
|
|
4551
4551
|
type: BooleanConstructor;
|
|
@@ -4560,7 +4560,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4560
4560
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
4561
4561
|
}>, {
|
|
4562
4562
|
expanded: boolean;
|
|
4563
|
-
expandIcon:
|
|
4563
|
+
expandIcon: any;
|
|
4564
4564
|
expandable: boolean;
|
|
4565
4565
|
needIndentSpaced: boolean;
|
|
4566
4566
|
needLoading: boolean;
|
|
@@ -5537,6 +5537,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5537
5537
|
}, {}, {
|
|
5538
5538
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
5539
5539
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5540
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5541
|
+
disabled: {
|
|
5542
|
+
type: BooleanConstructor;
|
|
5543
|
+
default: boolean;
|
|
5544
|
+
};
|
|
5545
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5546
|
+
[key: string]: any;
|
|
5547
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5548
|
+
disabled: {
|
|
5549
|
+
type: BooleanConstructor;
|
|
5550
|
+
default: boolean;
|
|
5551
|
+
};
|
|
5552
|
+
}>> & Readonly<{
|
|
5553
|
+
onResize?: (...args: any[]) => any;
|
|
5554
|
+
}>, {
|
|
5555
|
+
disabled: boolean;
|
|
5556
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5540
5557
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5541
5558
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5542
5559
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -5744,6 +5761,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5744
5761
|
cellRef: import("vue").Ref<any, any>;
|
|
5745
5762
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
5746
5763
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
5764
|
+
debouncedHandleResize: import("../../utils").DebounceReturn;
|
|
5747
5765
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5748
5766
|
prefixCls: {
|
|
5749
5767
|
type: StringConstructor;
|
|
@@ -5800,7 +5818,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5800
5818
|
};
|
|
5801
5819
|
expandIcon: {
|
|
5802
5820
|
type: PropType<import("../..").IconPropType>;
|
|
5803
|
-
default:
|
|
5821
|
+
default: any;
|
|
5804
5822
|
};
|
|
5805
5823
|
needIndentSpaced: {
|
|
5806
5824
|
type: BooleanConstructor;
|
|
@@ -5826,7 +5844,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5826
5844
|
};
|
|
5827
5845
|
expandIcon: {
|
|
5828
5846
|
type: PropType<import("../..").IconPropType>;
|
|
5829
|
-
default:
|
|
5847
|
+
default: any;
|
|
5830
5848
|
};
|
|
5831
5849
|
needIndentSpaced: {
|
|
5832
5850
|
type: BooleanConstructor;
|
|
@@ -5841,7 +5859,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5841
5859
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
5842
5860
|
}>, {
|
|
5843
5861
|
expanded: boolean;
|
|
5844
|
-
expandIcon:
|
|
5862
|
+
expandIcon: any;
|
|
5845
5863
|
expandable: boolean;
|
|
5846
5864
|
needIndentSpaced: boolean;
|
|
5847
5865
|
needLoading: boolean;
|
|
@@ -6818,6 +6836,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6818
6836
|
}, {}, {
|
|
6819
6837
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
6820
6838
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6839
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6840
|
+
disabled: {
|
|
6841
|
+
type: BooleanConstructor;
|
|
6842
|
+
default: boolean;
|
|
6843
|
+
};
|
|
6844
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6845
|
+
[key: string]: any;
|
|
6846
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6847
|
+
disabled: {
|
|
6848
|
+
type: BooleanConstructor;
|
|
6849
|
+
default: boolean;
|
|
6850
|
+
};
|
|
6851
|
+
}>> & Readonly<{
|
|
6852
|
+
onResize?: (...args: any[]) => any;
|
|
6853
|
+
}>, {
|
|
6854
|
+
disabled: boolean;
|
|
6855
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6821
6856
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6822
6857
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6823
6858
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -6989,8 +7024,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6989
7024
|
title?: string;
|
|
6990
7025
|
dataIndex?: string;
|
|
6991
7026
|
width?: string | number;
|
|
6992
|
-
minWidth?:
|
|
6993
|
-
maxWidth?: string | number;
|
|
7027
|
+
minWidth?: number;
|
|
6994
7028
|
fixed?: import("./Table.type").ColumnFixed;
|
|
6995
7029
|
align?: import("./Table.type").ColumnAlign;
|
|
6996
7030
|
ellipsis?: boolean;
|
|
@@ -7001,7 +7035,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7001
7035
|
filterable?: boolean;
|
|
7002
7036
|
filters?: import("./Table.type").ColumnFilter[];
|
|
7003
7037
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
7004
|
-
filterIcon?: string
|
|
7038
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
7005
7039
|
filterIconStyle?: import("vue").CSSProperties;
|
|
7006
7040
|
filterMultiple?: boolean;
|
|
7007
7041
|
filteredValue?: (string | number)[];
|
|
@@ -11385,6 +11419,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11385
11419
|
cellRef: import("vue").Ref<any, any>;
|
|
11386
11420
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
11387
11421
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
11422
|
+
debouncedHandleResize: import("../../utils").DebounceReturn;
|
|
11388
11423
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11389
11424
|
prefixCls: {
|
|
11390
11425
|
type: StringConstructor;
|
|
@@ -11441,7 +11476,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11441
11476
|
};
|
|
11442
11477
|
expandIcon: {
|
|
11443
11478
|
type: PropType<import("../..").IconPropType>;
|
|
11444
|
-
default:
|
|
11479
|
+
default: any;
|
|
11445
11480
|
};
|
|
11446
11481
|
needIndentSpaced: {
|
|
11447
11482
|
type: BooleanConstructor;
|
|
@@ -11467,7 +11502,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11467
11502
|
};
|
|
11468
11503
|
expandIcon: {
|
|
11469
11504
|
type: PropType<import("../..").IconPropType>;
|
|
11470
|
-
default:
|
|
11505
|
+
default: any;
|
|
11471
11506
|
};
|
|
11472
11507
|
needIndentSpaced: {
|
|
11473
11508
|
type: BooleanConstructor;
|
|
@@ -11482,7 +11517,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11482
11517
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
11483
11518
|
}>, {
|
|
11484
11519
|
expanded: boolean;
|
|
11485
|
-
expandIcon:
|
|
11520
|
+
expandIcon: any;
|
|
11486
11521
|
expandable: boolean;
|
|
11487
11522
|
needIndentSpaced: boolean;
|
|
11488
11523
|
needLoading: boolean;
|
|
@@ -12459,6 +12494,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12459
12494
|
}, {}, {
|
|
12460
12495
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
12461
12496
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12497
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12498
|
+
disabled: {
|
|
12499
|
+
type: BooleanConstructor;
|
|
12500
|
+
default: boolean;
|
|
12501
|
+
};
|
|
12502
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
12503
|
+
[key: string]: any;
|
|
12504
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12505
|
+
disabled: {
|
|
12506
|
+
type: BooleanConstructor;
|
|
12507
|
+
default: boolean;
|
|
12508
|
+
};
|
|
12509
|
+
}>> & Readonly<{
|
|
12510
|
+
onResize?: (...args: any[]) => any;
|
|
12511
|
+
}>, {
|
|
12512
|
+
disabled: boolean;
|
|
12513
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12462
12514
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12463
12515
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12464
12516
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -12666,6 +12718,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12666
12718
|
cellRef: import("vue").Ref<any, any>;
|
|
12667
12719
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
12668
12720
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
12721
|
+
debouncedHandleResize: import("../../utils").DebounceReturn;
|
|
12669
12722
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12670
12723
|
prefixCls: {
|
|
12671
12724
|
type: StringConstructor;
|
|
@@ -12722,7 +12775,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12722
12775
|
};
|
|
12723
12776
|
expandIcon: {
|
|
12724
12777
|
type: PropType<import("../..").IconPropType>;
|
|
12725
|
-
default:
|
|
12778
|
+
default: any;
|
|
12726
12779
|
};
|
|
12727
12780
|
needIndentSpaced: {
|
|
12728
12781
|
type: BooleanConstructor;
|
|
@@ -12748,7 +12801,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12748
12801
|
};
|
|
12749
12802
|
expandIcon: {
|
|
12750
12803
|
type: PropType<import("../..").IconPropType>;
|
|
12751
|
-
default:
|
|
12804
|
+
default: any;
|
|
12752
12805
|
};
|
|
12753
12806
|
needIndentSpaced: {
|
|
12754
12807
|
type: BooleanConstructor;
|
|
@@ -12763,7 +12816,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12763
12816
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
12764
12817
|
}>, {
|
|
12765
12818
|
expanded: boolean;
|
|
12766
|
-
expandIcon:
|
|
12819
|
+
expandIcon: any;
|
|
12767
12820
|
expandable: boolean;
|
|
12768
12821
|
needIndentSpaced: boolean;
|
|
12769
12822
|
needLoading: boolean;
|
|
@@ -13740,6 +13793,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13740
13793
|
}, {}, {
|
|
13741
13794
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
13742
13795
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13796
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13797
|
+
disabled: {
|
|
13798
|
+
type: BooleanConstructor;
|
|
13799
|
+
default: boolean;
|
|
13800
|
+
};
|
|
13801
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13802
|
+
[key: string]: any;
|
|
13803
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13804
|
+
disabled: {
|
|
13805
|
+
type: BooleanConstructor;
|
|
13806
|
+
default: boolean;
|
|
13807
|
+
};
|
|
13808
|
+
}>> & Readonly<{
|
|
13809
|
+
onResize?: (...args: any[]) => any;
|
|
13810
|
+
}>, {
|
|
13811
|
+
disabled: boolean;
|
|
13812
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13743
13813
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13744
13814
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13745
13815
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|