@tachybase/plugin-block-kanban 0.23.18 → 0.23.22
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/dist/client/CreateAndSelectSort/index.d.ts +1 -2
- package/dist/client/Kanban.Card.Designer.d.ts +1 -2
- package/dist/client/Kanban.Designer.d.ts +1 -2
- package/dist/client/KanbanBlockInitializer.d.ts +1 -2
- package/dist/client/KanbanBlockProvider.d.ts +1 -1
- package/dist/client/board/Card.d.ts +1 -2
- package/dist/client/board/CardAdder.d.ts +1 -2
- package/dist/client/board/CardForm.d.ts +1 -2
- package/dist/client/board/Column.d.ts +2 -3
- package/dist/client/board/ColumnAdder.d.ts +1 -2
- package/dist/client/board/ColumnForm.d.ts +1 -2
- package/dist/client/board/DefaultCard.d.ts +1 -2
- package/dist/client/board/DefaultColumnHeader.d.ts +1 -2
- package/dist/client/board/Kanban.d.ts +1 -2
- package/dist/client/board/withDroppable.d.ts +1 -2
- package/dist/externalVersion.js +5 -5
- package/package.json +6 -6
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const CreateAndSelectSort: (props: any) => React.JSX.Element;
|
|
1
|
+
export declare const CreateAndSelectSort: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import { SchemaInitializer } from '@tachybase/client';
|
|
3
|
-
export declare const KanbanCardDesigner: () =>
|
|
2
|
+
export declare const KanbanCardDesigner: () => import("react/jsx-runtime").JSX.Element;
|
|
4
3
|
export declare const kanbanCardInitializers: SchemaInitializer<any, {}>;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const KanbanDesigner: () => React.JSX.Element;
|
|
1
|
+
export declare const KanbanDesigner: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const KanbanBlockInitializer: () => React.JSX.Element;
|
|
1
|
+
export declare const KanbanBlockInitializer: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const KanbanBlockContext: React.Context<any>;
|
|
3
|
-
export declare const KanbanBlockProvider: (props: any) =>
|
|
3
|
+
export declare const KanbanBlockProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare const useKanbanBlockContext: () => any;
|
|
5
5
|
export declare const useKanbanBlockProps: () => {
|
|
6
6
|
setDataSource: React.Dispatch<React.SetStateAction<any[]>>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
declare function Card({ children, index, renderCard, disableCardDrag }: {
|
|
3
2
|
children: any;
|
|
4
3
|
index: any;
|
|
5
4
|
renderCard: any;
|
|
6
5
|
disableCardDrag: any;
|
|
7
|
-
}):
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
export default Card;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
declare function Column({ children, index: columnIndex, renderCard, renderCardAdder, renderColumnHeader, disableColumnDrag, disableCardDrag, onCardNew, allowAddCard, cardAdderPosition, }: {
|
|
3
2
|
children: any;
|
|
4
3
|
index: any;
|
|
@@ -6,12 +5,12 @@ declare function Column({ children, index: columnIndex, renderCard, renderCardAd
|
|
|
6
5
|
renderCardAdder?: ({ column, onConfirm }: {
|
|
7
6
|
column: any;
|
|
8
7
|
onConfirm: any;
|
|
9
|
-
}) =>
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
10
9
|
renderColumnHeader: any;
|
|
11
10
|
disableColumnDrag: any;
|
|
12
11
|
disableCardDrag: any;
|
|
13
12
|
onCardNew: any;
|
|
14
13
|
allowAddCard: any;
|
|
15
14
|
cardAdderPosition?: string;
|
|
16
|
-
}):
|
|
15
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
17
16
|
export default Column;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
declare function DefaultCard({ children: card, dragging, allowRemoveCard, onCardRemove }: {
|
|
3
2
|
children: any;
|
|
4
3
|
dragging: any;
|
|
5
4
|
allowRemoveCard: any;
|
|
6
5
|
onCardRemove: any;
|
|
7
|
-
}):
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
export default DefaultCard;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
declare function DefaultColumnHeader({ children: column, allowRemoveColumn, onColumnRemove, allowRenameColumn, onColumnRename, }: {
|
|
3
2
|
children: any;
|
|
4
3
|
allowRemoveColumn: any;
|
|
5
4
|
onColumnRemove: any;
|
|
6
5
|
allowRenameColumn: any;
|
|
7
6
|
onColumnRename: any;
|
|
8
|
-
}):
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
export default DefaultColumnHeader;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
declare function withDroppable(Component: any): {
|
|
3
2
|
({ children, ...droppableProps }: {
|
|
4
3
|
[x: string]: any;
|
|
5
4
|
children: any;
|
|
6
|
-
}):
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
displayName: string;
|
|
8
7
|
};
|
|
9
8
|
export default withDroppable;
|
package/dist/externalVersion.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"react": "18.3.1",
|
|
3
|
-
"@tachybase/client": "0.23.
|
|
4
|
-
"@tachybase/schema": "0.23.
|
|
3
|
+
"@tachybase/client": "0.23.22",
|
|
4
|
+
"@tachybase/schema": "0.23.22",
|
|
5
5
|
"@ant-design/icons": "5.5.2",
|
|
6
6
|
"antd": "5.22.5",
|
|
7
7
|
"react-i18next": "15.2.0",
|
|
8
|
-
"@tachybase/components": "0.23.
|
|
8
|
+
"@tachybase/components": "0.23.22",
|
|
9
9
|
"lodash": "4.17.21",
|
|
10
|
-
"@tachybase/server": "0.23.
|
|
11
|
-
"@tachybase/test": "0.23.
|
|
10
|
+
"@tachybase/server": "0.23.22",
|
|
11
|
+
"@tachybase/test": "0.23.22"
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tachybase/plugin-block-kanban",
|
|
3
3
|
"displayName": "Block: Kanban",
|
|
4
|
-
"version": "0.23.
|
|
4
|
+
"version": "0.23.22",
|
|
5
5
|
"description": "Provides kanban block.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"Blocks"
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"lodash": "4.17.21",
|
|
16
16
|
"react-beautiful-dnd": "^13.1.1",
|
|
17
17
|
"react-i18next": "^15.2.0",
|
|
18
|
-
"@tachybase/
|
|
19
|
-
"@tachybase/
|
|
18
|
+
"@tachybase/components": "0.23.22",
|
|
19
|
+
"@tachybase/schema": "0.23.22"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tachybase/client": "0.23.
|
|
23
|
-
"@tachybase/server": "0.23.
|
|
24
|
-
"@tachybase/test": "0.23.
|
|
22
|
+
"@tachybase/client": "0.23.22",
|
|
23
|
+
"@tachybase/server": "0.23.22",
|
|
24
|
+
"@tachybase/test": "0.23.22"
|
|
25
25
|
},
|
|
26
26
|
"description.zh-CN": "提供看板卡片。",
|
|
27
27
|
"displayName.zh-CN": "卡片:看板",
|