diff --git a/lib/kanban/src/component/kanban-lane.tsx b/lib/kanban/src/component/kanban-lane.tsx index 12f887bf7c..865e570c03 100644 --- a/lib/kanban/src/component/kanban-lane.tsx +++ b/lib/kanban/src/component/kanban-lane.tsx @@ -3,7 +3,7 @@ import {Toolbar} from '@zui/toolbar/src/component'; import type {ComponentChild, ComponentChildren, RenderableProps} from 'preact'; import type {ClassNameLike} from '@zui/core'; -import type {KanbanColOptions, KanbanColProps, KanbanLaneName, KanbanLaneProps} from '../types'; +import type {KanbanColOptions, KanbanColProps, KanbanLaneProps} from '../types'; import {KanbanLaneCol} from './kanban-lane-col'; export class KanbanLane extends HElement { @@ -47,7 +47,6 @@ export class KanbanLane extends HElement { protected _getChildren(props: RenderableProps): ComponentChildren { const { - name, title, titleClass, actions, diff --git a/lib/kanban/src/component/kanban.tsx b/lib/kanban/src/component/kanban.tsx index a12a115589..fd5868e414 100644 --- a/lib/kanban/src/component/kanban.tsx +++ b/lib/kanban/src/component/kanban.tsx @@ -1,4 +1,4 @@ -import {$, Computed, HElement, createRef, fetchData, isFetchSetting, mergeProps, parseSize, toCssSize, Sticky} from '@zui/core'; +import {$, Computed, HElement, createRef, fetchData, isFetchSetting, mergeProps, parseSize, toCssSize} from '@zui/core'; import {Draggable, DraggableOptions} from '@zui/dnd'; import {KanbanHeader} from './kanban-header'; import {KanbanBody} from './kanban-body';