@nocobase/plugin-kanban 2.1.0-beta.13 → 2.1.0-beta.15
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/index.js +1 -1
- package/dist/client/models/KanbanBlockModel.d.ts +121 -0
- package/dist/client/models/KanbanCardItemModel.d.ts +20 -0
- package/dist/client/models/KanbanCollectionActionGroupModel.d.ts +13 -0
- package/dist/client/models/actions/KanbanPopupModels.d.ts +23 -0
- package/dist/client/models/components/KanbanBlock.d.ts +13 -0
- package/dist/client/models/components/KanbanCreateSortFieldSelect.d.ts +40 -0
- package/dist/client/models/components/KanbanGroupOptionsTable.d.ts +21 -0
- package/dist/client/models/components/KanbanGroupingSelector.d.ts +18 -0
- package/dist/client/models/components/kanban-block/CardRenderer.d.ts +31 -0
- package/dist/client/models/components/kanban-block/ColumnPanel.d.ts +26 -0
- package/dist/client/models/components/kanban-block/shared.d.ts +127 -0
- package/dist/client/models/index.d.ts +16 -0
- package/dist/client/models/popupSettings.d.ts +11 -0
- package/dist/client/models/utils.d.ts +229 -0
- package/dist/externalVersion.js +10 -7
- package/dist/locale/en-US.json +53 -1
- package/dist/locale/zh-CN.json +53 -1
- package/package.json +3 -2
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
export declare const KANBAN_UNKNOWN_COLUMN_KEY = "__unknown__";
|
|
10
|
+
export declare const DEFAULT_KANBAN_PAGE_SIZE = 10;
|
|
11
|
+
export declare const DEFAULT_KANBAN_COLUMN_WIDTH = 300;
|
|
12
|
+
export declare const KANBAN_COLOR_OPTIONS: string[];
|
|
13
|
+
export type KanbanGroupOption = {
|
|
14
|
+
value: string;
|
|
15
|
+
label: string;
|
|
16
|
+
color?: string;
|
|
17
|
+
enabled?: boolean;
|
|
18
|
+
isUnknown?: boolean;
|
|
19
|
+
};
|
|
20
|
+
export type KanbanGroupingValue = {
|
|
21
|
+
groupField?: string;
|
|
22
|
+
groupOptions?: KanbanGroupOption[];
|
|
23
|
+
groupTitleField?: string;
|
|
24
|
+
groupColorField?: string;
|
|
25
|
+
};
|
|
26
|
+
export type KanbanColumnRecord = {
|
|
27
|
+
id: string | number;
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
30
|
+
export type KanbanColumn = {
|
|
31
|
+
key: string;
|
|
32
|
+
value: string;
|
|
33
|
+
label: string;
|
|
34
|
+
color?: string;
|
|
35
|
+
isUnknown?: boolean;
|
|
36
|
+
records: KanbanColumnRecord[];
|
|
37
|
+
};
|
|
38
|
+
type KanbanCollectionIdentity = {
|
|
39
|
+
filterTargetKey?: string | string[];
|
|
40
|
+
getFilterByTK?: (record: any) => any;
|
|
41
|
+
};
|
|
42
|
+
export declare const KANBAN_GROUP_FIELD_INTERFACES: readonly ["select", "m2o"];
|
|
43
|
+
export declare const getDefaultKanbanColor: (index: number, fallback?: string) => string;
|
|
44
|
+
export declare const resolveKanbanColorValue: (color?: string) => string;
|
|
45
|
+
export declare const toKanbanAlphaColor: (color?: string, alpha?: number) => string;
|
|
46
|
+
export declare const normalizeKanbanCardOpenMode: (value?: string) => "dialog" | "embed" | "drawer";
|
|
47
|
+
export declare const normalizeKanbanPopupSize: (value?: string) => "large" | "medium" | "small";
|
|
48
|
+
export declare const isKanbanGroupField: (field: any) => boolean;
|
|
49
|
+
export declare const isAssociationGroupField: (field: any) => boolean;
|
|
50
|
+
export declare const isMultipleGroupField: (field: any) => boolean;
|
|
51
|
+
export declare const getKanbanCollectionFields: (collection: any) => any;
|
|
52
|
+
export declare const getKanbanCollectionFieldMetadata: (collection: any) => any;
|
|
53
|
+
export declare const getKanbanFieldScopeKey: (field: any) => any;
|
|
54
|
+
export declare const getKanbanGroupFieldSortScopeKeys: (field?: any) => any[];
|
|
55
|
+
export declare const getKanbanPreferredSortScopeKey: (field?: any) => any;
|
|
56
|
+
export declare const shouldMigrateKanbanSortFieldScope: (options: {
|
|
57
|
+
groupField?: any;
|
|
58
|
+
sortField?: any;
|
|
59
|
+
}) => boolean;
|
|
60
|
+
export declare const getKanbanDefaultSortFieldName: (groupFieldName?: string) => string;
|
|
61
|
+
export declare const getKanbanCollectionField: (collection: any, fieldName?: string) => any;
|
|
62
|
+
export declare const getKanbanCollectionFilterTargetKey: (collection: any) => any;
|
|
63
|
+
export declare const getKanbanFieldFilterPath: (field?: {
|
|
64
|
+
name?: string;
|
|
65
|
+
interface?: string;
|
|
66
|
+
targetKey?: string;
|
|
67
|
+
targetCollection?: {
|
|
68
|
+
filterTargetKey?: string | string[];
|
|
69
|
+
};
|
|
70
|
+
}) => string;
|
|
71
|
+
export declare const getKanbanCollectionTitleField: (collection: any) => any;
|
|
72
|
+
export declare const getKanbanCollectionSelectableFields: (collection: any) => any;
|
|
73
|
+
export declare const getKanbanCollectionFieldOptions: (collection: any) => any;
|
|
74
|
+
export declare const getKanbanFieldEnumColor: (field: any, value: any) => any;
|
|
75
|
+
export declare const resolveKanbanFieldColorValue: (field: any, value: any) => any;
|
|
76
|
+
export declare const getKanbanGroupFieldCandidates: (collection: any) => any;
|
|
77
|
+
export declare const getKanbanInlineGroupOptions: (field?: any, savedOptions?: Array<Partial<KanbanGroupOption>>) => KanbanGroupOption[] | {
|
|
78
|
+
value: string;
|
|
79
|
+
label: string;
|
|
80
|
+
color: string;
|
|
81
|
+
isUnknown: boolean;
|
|
82
|
+
}[];
|
|
83
|
+
export declare const areKanbanGroupOptionsEqual: (left?: Array<Partial<KanbanGroupOption>>, right?: Array<Partial<KanbanGroupOption>>) => boolean;
|
|
84
|
+
export declare const isSameKanbanGroupingValue: (left?: {
|
|
85
|
+
groupField?: string;
|
|
86
|
+
groupOptions?: KanbanGroupOption[];
|
|
87
|
+
}, right?: {
|
|
88
|
+
groupField?: string;
|
|
89
|
+
groupOptions?: KanbanGroupOption[];
|
|
90
|
+
}) => boolean;
|
|
91
|
+
export declare const normalizeKanbanGroupOptions: (sourceOptions: Array<Partial<KanbanGroupOption>>, savedOptions?: Array<Partial<KanbanGroupOption>>, options?: {
|
|
92
|
+
useDefaultColors?: boolean;
|
|
93
|
+
preserveSavedColors?: boolean;
|
|
94
|
+
}) => {
|
|
95
|
+
value: string;
|
|
96
|
+
label: string;
|
|
97
|
+
color: string;
|
|
98
|
+
isUnknown: boolean;
|
|
99
|
+
}[];
|
|
100
|
+
export declare const reorderKanbanGroupOptions: (options?: KanbanGroupOption[], activeValue?: string, overValue?: string) => KanbanGroupOption[];
|
|
101
|
+
export declare const orderKanbanGroupOptionsBySelection: (options?: KanbanGroupOption[], selectedValues?: Array<string | number>) => {
|
|
102
|
+
value: string;
|
|
103
|
+
label: string;
|
|
104
|
+
color?: string;
|
|
105
|
+
enabled?: boolean;
|
|
106
|
+
isUnknown?: boolean;
|
|
107
|
+
}[];
|
|
108
|
+
export declare const getEnabledKanbanGroupOptions: (options?: KanbanGroupOption[]) => KanbanGroupOption[];
|
|
109
|
+
export declare const getUnknownKanbanColumn: () => {
|
|
110
|
+
value: string;
|
|
111
|
+
key: string;
|
|
112
|
+
label: string;
|
|
113
|
+
color: string;
|
|
114
|
+
isUnknown: true;
|
|
115
|
+
records: KanbanColumnRecord[];
|
|
116
|
+
};
|
|
117
|
+
export declare const getRecordGroupValues: (record: any, field: {
|
|
118
|
+
name: string;
|
|
119
|
+
interface?: string;
|
|
120
|
+
}) => string[];
|
|
121
|
+
export declare const getRecordKanbanColumnKey: (options: {
|
|
122
|
+
record: any;
|
|
123
|
+
groupField?: {
|
|
124
|
+
name: string;
|
|
125
|
+
interface?: string;
|
|
126
|
+
};
|
|
127
|
+
groupOptions?: Array<Pick<KanbanGroupOption, 'value'>>;
|
|
128
|
+
}) => string;
|
|
129
|
+
export declare const getKanbanRecordKeyValue: (record: any, collection?: KanbanCollectionIdentity) => any;
|
|
130
|
+
export declare const stringifyKanbanRecordKey: (value: any) => string | undefined;
|
|
131
|
+
export declare const getKanbanRecordKey: (record: any, collection?: KanbanCollectionIdentity) => string;
|
|
132
|
+
export declare const getKanbanSameColumnColumnDropMoveParams: (options: {
|
|
133
|
+
items: any[];
|
|
134
|
+
sourceRecord: any;
|
|
135
|
+
collection?: KanbanCollectionIdentity;
|
|
136
|
+
}) => {
|
|
137
|
+
targetId: any;
|
|
138
|
+
method: "insertAfter";
|
|
139
|
+
};
|
|
140
|
+
export declare const shouldInsertAfterSameColumnCardMove: (sourceIndex?: number, targetIndex?: number) => boolean;
|
|
141
|
+
export declare const getKanbanPreviewInsertIndex: (options: {
|
|
142
|
+
sourceColumnKey: string;
|
|
143
|
+
currentSourceColumnKey: string;
|
|
144
|
+
targetColumnKey: string;
|
|
145
|
+
sourceIndex: number;
|
|
146
|
+
overIndex: number;
|
|
147
|
+
targetIndex: number;
|
|
148
|
+
overType?: string;
|
|
149
|
+
}) => number;
|
|
150
|
+
export declare const getKanbanMoveParamsFromPreviewOrder: (options: {
|
|
151
|
+
items: any[];
|
|
152
|
+
activeRecord: any;
|
|
153
|
+
collection?: KanbanCollectionIdentity;
|
|
154
|
+
}) => {
|
|
155
|
+
targetId?: undefined;
|
|
156
|
+
method?: undefined;
|
|
157
|
+
} | {
|
|
158
|
+
targetId: any;
|
|
159
|
+
method?: undefined;
|
|
160
|
+
} | {
|
|
161
|
+
targetId: any;
|
|
162
|
+
method: "insertAfter";
|
|
163
|
+
};
|
|
164
|
+
export declare const getKanbanCrossColumnMoveParams: (options: {
|
|
165
|
+
overType?: string;
|
|
166
|
+
overRecord?: any;
|
|
167
|
+
targetColumnKey: string;
|
|
168
|
+
groupFieldName?: string;
|
|
169
|
+
groupFieldScopeKey?: string;
|
|
170
|
+
collection?: KanbanCollectionIdentity;
|
|
171
|
+
insertAfter?: boolean;
|
|
172
|
+
}) => {
|
|
173
|
+
targetId: any;
|
|
174
|
+
method: "insertAfter";
|
|
175
|
+
targetScope?: undefined;
|
|
176
|
+
} | {
|
|
177
|
+
targetId: any;
|
|
178
|
+
method?: undefined;
|
|
179
|
+
targetScope?: undefined;
|
|
180
|
+
} | {
|
|
181
|
+
targetId?: undefined;
|
|
182
|
+
method?: undefined;
|
|
183
|
+
targetScope?: undefined;
|
|
184
|
+
} | {
|
|
185
|
+
targetScope: {
|
|
186
|
+
[x: string]: string;
|
|
187
|
+
};
|
|
188
|
+
targetId?: undefined;
|
|
189
|
+
method?: undefined;
|
|
190
|
+
};
|
|
191
|
+
export declare const buildKanbanBoardDisplayItems: (options: {
|
|
192
|
+
columnItems: Array<{
|
|
193
|
+
columnKey: string;
|
|
194
|
+
items: any[];
|
|
195
|
+
}>;
|
|
196
|
+
collection?: KanbanCollectionIdentity;
|
|
197
|
+
groupField?: {
|
|
198
|
+
name: string;
|
|
199
|
+
interface?: string;
|
|
200
|
+
};
|
|
201
|
+
groupOptions?: Array<Pick<KanbanGroupOption, 'value'>>;
|
|
202
|
+
}) => Record<string, any[]>;
|
|
203
|
+
export declare const buildKanbanColumns: (options: {
|
|
204
|
+
records: any[];
|
|
205
|
+
primaryKey: string;
|
|
206
|
+
groupField: {
|
|
207
|
+
name: string;
|
|
208
|
+
interface?: string;
|
|
209
|
+
};
|
|
210
|
+
groupOptions: KanbanGroupOption[];
|
|
211
|
+
}) => KanbanColumn[];
|
|
212
|
+
export declare const mergeKanbanFilters: (baseFilter?: Record<string, any>, nextFilter?: Record<string, any>) => any;
|
|
213
|
+
export declare const createKanbanColumnFilter: (options: {
|
|
214
|
+
field?: {
|
|
215
|
+
name?: string;
|
|
216
|
+
interface?: string;
|
|
217
|
+
targetKey?: string;
|
|
218
|
+
targetCollection?: {
|
|
219
|
+
filterTargetKey?: string | string[];
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
fieldName?: string;
|
|
223
|
+
columnValue?: string;
|
|
224
|
+
enabledValues?: string[];
|
|
225
|
+
isUnknown?: boolean;
|
|
226
|
+
}) => {
|
|
227
|
+
[x: string]: string;
|
|
228
|
+
};
|
|
229
|
+
export {};
|
package/dist/externalVersion.js
CHANGED
|
@@ -11,17 +11,20 @@ module.exports = {
|
|
|
11
11
|
"@ant-design/icons": "5.6.1",
|
|
12
12
|
"@formily/react": "2.3.7",
|
|
13
13
|
"@formily/shared": "2.3.7",
|
|
14
|
-
"@nocobase/client": "2.1.0-beta.
|
|
14
|
+
"@nocobase/client": "2.1.0-beta.15",
|
|
15
15
|
"antd": "5.24.2",
|
|
16
16
|
"react": "18.2.0",
|
|
17
17
|
"react-i18next": "11.18.6",
|
|
18
18
|
"@emotion/css": "11.13.0",
|
|
19
19
|
"@formily/antd-v5": "1.2.3",
|
|
20
20
|
"@formily/core": "2.3.7",
|
|
21
|
-
"@nocobase/utils": "2.1.0-beta.
|
|
22
|
-
"@nocobase/flow-engine": "2.1.0-beta.
|
|
23
|
-
"lodash": "4.
|
|
24
|
-
"@nocobase/server": "2.1.0-beta.
|
|
25
|
-
"@nocobase/test": "2.1.0-beta.
|
|
26
|
-
"antd-style": "3.7.1"
|
|
21
|
+
"@nocobase/utils": "2.1.0-beta.15",
|
|
22
|
+
"@nocobase/flow-engine": "2.1.0-beta.15",
|
|
23
|
+
"lodash": "4.18.1",
|
|
24
|
+
"@nocobase/server": "2.1.0-beta.15",
|
|
25
|
+
"@nocobase/test": "2.1.0-beta.15",
|
|
26
|
+
"antd-style": "3.7.1",
|
|
27
|
+
"@nocobase/plugin-ai": "2.1.0-beta.15",
|
|
28
|
+
"@dnd-kit/core": "6.1.0",
|
|
29
|
+
"@dnd-kit/sortable": "7.0.2"
|
|
27
30
|
};
|
package/dist/locale/en-US.json
CHANGED
|
@@ -1,10 +1,62 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Actions": "Actions",
|
|
3
|
+
"Add new": "Add new",
|
|
4
|
+
"At least one option is required": "At least one option is required",
|
|
5
|
+
"Card settings": "Card settings",
|
|
6
|
+
"Classic style": "Classic",
|
|
7
|
+
"Color": "Color",
|
|
8
|
+
"Color field": "Color field",
|
|
9
|
+
"Filled style": "Filled",
|
|
10
|
+
"Column width": "Column width",
|
|
2
11
|
"Convert the following integer fields to sorting fields": "Convert the following integer fields to sorting fields",
|
|
3
12
|
"Create sort field": "Create sort field",
|
|
13
|
+
"Default": "Default",
|
|
14
|
+
"Default sorting": "Default sorting",
|
|
15
|
+
"Dialog": "Dialog",
|
|
16
|
+
"Drag and drop sorting field": "Drag and drop sorting field",
|
|
17
|
+
"Drag settings": "Drag settings",
|
|
18
|
+
"Drawer": "Drawer",
|
|
19
|
+
"Enable click-to-open": "Enable click-to-open",
|
|
4
20
|
"Enable drag and drop sorting": "Enable drag and drop sorting",
|
|
21
|
+
"Enable dragging": "Enable dragging",
|
|
22
|
+
"Enabled": "Enabled",
|
|
23
|
+
"Failed to load data": "Failed to load data",
|
|
24
|
+
"Failed to load group options": "Failed to load group options",
|
|
25
|
+
"Failed to save drag sort": "Failed to save drag sort",
|
|
5
26
|
"Global sorting": "Global sorting",
|
|
6
27
|
"Grouped sorting based on": "Grouped sorting based on",
|
|
28
|
+
"Grouping field": "Grouping field",
|
|
29
|
+
"Grouping field is required": "Grouping field is required",
|
|
30
|
+
"Grouping settings": "Grouping settings",
|
|
31
|
+
"Kanban": "Kanban",
|
|
32
|
+
"Kanban action": "Kanban action",
|
|
33
|
+
"Kanban settings": "Kanban settings",
|
|
34
|
+
"Label": "Label",
|
|
35
|
+
"Large": "Large",
|
|
36
|
+
"Load more": "Load more",
|
|
37
|
+
"Medium": "Medium",
|
|
38
|
+
"Middle": "Middle",
|
|
39
|
+
"No data": "No data",
|
|
40
|
+
"No options": "No options",
|
|
41
|
+
"Open mode": "Open mode",
|
|
42
|
+
"Options": "Options",
|
|
43
|
+
"Page": "Page",
|
|
44
|
+
"Page size": "Page size",
|
|
45
|
+
"Popup settings": "Popup settings",
|
|
46
|
+
"Popup size": "Popup size",
|
|
47
|
+
"Quick create": "Quick create",
|
|
48
|
+
"Select a grouping field first": "Select a grouping field first",
|
|
49
|
+
"Select group values": "Select group values",
|
|
50
|
+
"The order of the selected values determines the kanban column order": "The order of the selected values determines the kanban column order",
|
|
7
51
|
"Set column width": "Set column width",
|
|
52
|
+
"Single select and many-to-one fields can be used as the grouping field": "Single select and many-to-one fields can be used as the grouping field",
|
|
53
|
+
"Small": "Small",
|
|
54
|
+
"Sort": "Sort",
|
|
8
55
|
"Sorting field": "Sorting field",
|
|
9
|
-
"
|
|
56
|
+
"Sorting settings": "Sorting settings",
|
|
57
|
+
"Style": "Style",
|
|
58
|
+
"Title field": "Title field",
|
|
59
|
+
"Unknown": "Unknown",
|
|
60
|
+
"Used for sorting kanban cards, only sorting fields corresponding to grouping fields can be selected": "Used for sorting kanban cards, only sorting fields corresponding to grouping fields can be selected",
|
|
61
|
+
"View record": "View record"
|
|
10
62
|
}
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -1,10 +1,62 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Actions": "操作",
|
|
3
|
+
"Add new": "新增",
|
|
4
|
+
"At least one option is required": "至少需要一个选项",
|
|
5
|
+
"Card settings": "卡片设置",
|
|
6
|
+
"Classic style": "经典",
|
|
7
|
+
"Filled style": "填充背景色",
|
|
8
|
+
"Color": "颜色",
|
|
9
|
+
"Color field": "颜色字段",
|
|
10
|
+
"Column width": "列宽",
|
|
2
11
|
"Convert the following integer fields to sorting fields": "将以下整数字段转为排序字段",
|
|
3
12
|
"Create sort field": "创建排序字段",
|
|
13
|
+
"Default": "默认",
|
|
14
|
+
"Default sorting": "默认排序",
|
|
15
|
+
"Dialog": "对话框",
|
|
16
|
+
"Drag and drop sorting field": "拖拽排序字段",
|
|
17
|
+
"Drag settings": "拖拽设置",
|
|
18
|
+
"Drawer": "抽屉",
|
|
19
|
+
"Enable click-to-open": "启用点击打开",
|
|
4
20
|
"Enable drag and drop sorting": "启用拖拽排序",
|
|
21
|
+
"Enable dragging": "启用拖拽",
|
|
22
|
+
"Enabled": "启用",
|
|
23
|
+
"Failed to load data": "加载数据失败",
|
|
24
|
+
"Failed to load group options": "加载分组选项失败",
|
|
25
|
+
"Failed to save drag sort": "保存拖拽排序失败",
|
|
5
26
|
"Global sorting": "全局排序",
|
|
6
27
|
"Grouped sorting based on": "基于分组字段",
|
|
28
|
+
"Grouping field": "分组字段",
|
|
29
|
+
"Grouping field is required": "分组字段为必填项",
|
|
30
|
+
"Grouping settings": "分组设置",
|
|
31
|
+
"Kanban": "看板",
|
|
32
|
+
"Kanban action": "看板操作",
|
|
33
|
+
"Kanban settings": "看板设置",
|
|
34
|
+
"Label": "标签",
|
|
35
|
+
"Large": "大",
|
|
36
|
+
"Load more": "加载更多",
|
|
37
|
+
"Medium": "中",
|
|
38
|
+
"Middle": "中",
|
|
39
|
+
"No data": "暂无数据",
|
|
40
|
+
"No options": "暂无选项",
|
|
41
|
+
"Open mode": "打开方式",
|
|
42
|
+
"Options": "选项",
|
|
43
|
+
"Page": "页面",
|
|
44
|
+
"Page size": "每页条数",
|
|
45
|
+
"Popup settings": "弹窗设置",
|
|
46
|
+
"Popup size": "弹窗尺寸",
|
|
47
|
+
"Quick create": "快捷新增",
|
|
48
|
+
"Select a grouping field first": "请先选择分组字段",
|
|
49
|
+
"Select group values": "选择分组值",
|
|
50
|
+
"The order of the selected values determines the kanban column order": "看板的列顺序基于值选择的顺序确定",
|
|
7
51
|
"Set column width": "设置列宽",
|
|
52
|
+
"Single select and many-to-one fields can be used as the grouping field": "单选和多对一字段可以用作分组字段",
|
|
53
|
+
"Small": "小",
|
|
54
|
+
"Sort": "排序",
|
|
8
55
|
"Sorting field": "排序字段",
|
|
9
|
-
"
|
|
56
|
+
"Sorting settings": "排序设置",
|
|
57
|
+
"Style": "样式",
|
|
58
|
+
"Title field": "标题字段",
|
|
59
|
+
"Unknown": "未知",
|
|
60
|
+
"Used for sorting kanban cards, only sorting fields corresponding to grouping fields can be selected": "用于看板卡片的排序,只能选择与分组字段相对应的排序字段",
|
|
61
|
+
"View record": "查看记录"
|
|
10
62
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-kanban",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.15",
|
|
4
4
|
"main": "dist/server/index.js",
|
|
5
5
|
"homepage": "https://docs.nocobase.com/handbook/block-kanban",
|
|
6
6
|
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/block-kanban",
|
|
@@ -13,13 +13,14 @@
|
|
|
13
13
|
"description.zh-CN": "提供看板区块。",
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@nocobase/client": "2.x",
|
|
16
|
+
"@nocobase/plugin-ai": "2.x",
|
|
16
17
|
"@nocobase/server": "2.x",
|
|
17
18
|
"@nocobase/test": "2.x"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
21
|
"react-intersection-observer": "^9.8.1"
|
|
21
22
|
},
|
|
22
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "dc1aceea6357e6ab149976c2a236fc4b6bee1370",
|
|
23
24
|
"keywords": [
|
|
24
25
|
"Blocks"
|
|
25
26
|
]
|