@libxai/board 1.5.32 → 1.5.34
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1607,8 +1607,10 @@ interface KanbanToolbarProps {
|
|
|
1607
1607
|
translations?: Partial<KanbanToolbarI18n>;
|
|
1608
1608
|
/** Render custom content on the right side of toolbar (e.g. lens toggle) */
|
|
1609
1609
|
toolbarRightContent?: React.ReactNode;
|
|
1610
|
+
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
1611
|
+
toolbarEndContent?: React.ReactNode;
|
|
1610
1612
|
}
|
|
1611
|
-
declare function KanbanToolbar({ columns, onCreateTask, createTaskLabel, theme, locale, useColumnSelector, onExportCSV, onExportJSON, onExportExcel, translations, toolbarRightContent, }: KanbanToolbarProps): react_jsx_runtime.JSX.Element;
|
|
1613
|
+
declare function KanbanToolbar({ columns, onCreateTask, createTaskLabel, theme, locale, useColumnSelector, onExportCSV, onExportJSON, onExportExcel, translations, toolbarRightContent, toolbarEndContent, }: KanbanToolbarProps): react_jsx_runtime.JSX.Element;
|
|
1612
1614
|
|
|
1613
1615
|
/**
|
|
1614
1616
|
* AddColumnButton Component
|
|
@@ -3969,6 +3971,8 @@ interface ListViewConfig {
|
|
|
3969
3971
|
rateMap?: Record<string, number>;
|
|
3970
3972
|
/** Show a sticky "TOTAL PROJECT" row at the bottom of the list */
|
|
3971
3973
|
showProjectTotals?: boolean;
|
|
3974
|
+
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
3975
|
+
toolbarEndContent?: ReactNode;
|
|
3972
3976
|
}
|
|
3973
3977
|
/**
|
|
3974
3978
|
* ListView translations
|
|
@@ -4137,6 +4141,8 @@ interface ListViewProps {
|
|
|
4137
4141
|
customFields?: CustomFieldDefinition[];
|
|
4138
4142
|
/** Render custom content on the right side of toolbar (before create button) */
|
|
4139
4143
|
toolbarRightContent?: ReactNode;
|
|
4144
|
+
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
4145
|
+
toolbarEndContent?: ReactNode;
|
|
4140
4146
|
}
|
|
4141
4147
|
/**
|
|
4142
4148
|
* Flattened task with hierarchy info
|
package/dist/index.d.ts
CHANGED
|
@@ -1607,8 +1607,10 @@ interface KanbanToolbarProps {
|
|
|
1607
1607
|
translations?: Partial<KanbanToolbarI18n>;
|
|
1608
1608
|
/** Render custom content on the right side of toolbar (e.g. lens toggle) */
|
|
1609
1609
|
toolbarRightContent?: React.ReactNode;
|
|
1610
|
+
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
1611
|
+
toolbarEndContent?: React.ReactNode;
|
|
1610
1612
|
}
|
|
1611
|
-
declare function KanbanToolbar({ columns, onCreateTask, createTaskLabel, theme, locale, useColumnSelector, onExportCSV, onExportJSON, onExportExcel, translations, toolbarRightContent, }: KanbanToolbarProps): react_jsx_runtime.JSX.Element;
|
|
1613
|
+
declare function KanbanToolbar({ columns, onCreateTask, createTaskLabel, theme, locale, useColumnSelector, onExportCSV, onExportJSON, onExportExcel, translations, toolbarRightContent, toolbarEndContent, }: KanbanToolbarProps): react_jsx_runtime.JSX.Element;
|
|
1612
1614
|
|
|
1613
1615
|
/**
|
|
1614
1616
|
* AddColumnButton Component
|
|
@@ -3969,6 +3971,8 @@ interface ListViewConfig {
|
|
|
3969
3971
|
rateMap?: Record<string, number>;
|
|
3970
3972
|
/** Show a sticky "TOTAL PROJECT" row at the bottom of the list */
|
|
3971
3973
|
showProjectTotals?: boolean;
|
|
3974
|
+
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
3975
|
+
toolbarEndContent?: ReactNode;
|
|
3972
3976
|
}
|
|
3973
3977
|
/**
|
|
3974
3978
|
* ListView translations
|
|
@@ -4137,6 +4141,8 @@ interface ListViewProps {
|
|
|
4137
4141
|
customFields?: CustomFieldDefinition[];
|
|
4138
4142
|
/** Render custom content on the right side of toolbar (before create button) */
|
|
4139
4143
|
toolbarRightContent?: ReactNode;
|
|
4144
|
+
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
4145
|
+
toolbarEndContent?: ReactNode;
|
|
4140
4146
|
}
|
|
4141
4147
|
/**
|
|
4142
4148
|
* Flattened task with hierarchy info
|