@libxai/board 0.17.444 → 0.18.4
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 +36 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +36 -36
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3149,10 +3149,10 @@ declare function useGanttI18n(): GanttTranslations;
|
|
|
3149
3149
|
type SortDirection = 'asc' | 'desc';
|
|
3150
3150
|
/**
|
|
3151
3151
|
* Column types supported in ListView
|
|
3152
|
-
* - Standard: name, status, priority, assignees, startDate, endDate, progress, tags
|
|
3152
|
+
* - Standard: name, status, priority, assignees, startDate, endDate, progress, tags, estimatedTime, elapsedTime
|
|
3153
3153
|
* - Custom: text, number, date, dropdown, checkbox
|
|
3154
3154
|
*/
|
|
3155
|
-
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3155
|
+
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'elapsedTime' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3156
3156
|
/**
|
|
3157
3157
|
* Table column configuration for dynamic columns
|
|
3158
3158
|
*/
|
|
@@ -3354,6 +3354,9 @@ interface ListViewTranslations {
|
|
|
3354
3354
|
assignees: string;
|
|
3355
3355
|
priority: string;
|
|
3356
3356
|
actions: string;
|
|
3357
|
+
estimatedTime?: string;
|
|
3358
|
+
elapsedTime?: string;
|
|
3359
|
+
tags?: string;
|
|
3357
3360
|
};
|
|
3358
3361
|
toolbar: {
|
|
3359
3362
|
search: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3149,10 +3149,10 @@ declare function useGanttI18n(): GanttTranslations;
|
|
|
3149
3149
|
type SortDirection = 'asc' | 'desc';
|
|
3150
3150
|
/**
|
|
3151
3151
|
* Column types supported in ListView
|
|
3152
|
-
* - Standard: name, status, priority, assignees, startDate, endDate, progress, tags
|
|
3152
|
+
* - Standard: name, status, priority, assignees, startDate, endDate, progress, tags, estimatedTime, elapsedTime
|
|
3153
3153
|
* - Custom: text, number, date, dropdown, checkbox
|
|
3154
3154
|
*/
|
|
3155
|
-
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3155
|
+
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'elapsedTime' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3156
3156
|
/**
|
|
3157
3157
|
* Table column configuration for dynamic columns
|
|
3158
3158
|
*/
|
|
@@ -3354,6 +3354,9 @@ interface ListViewTranslations {
|
|
|
3354
3354
|
assignees: string;
|
|
3355
3355
|
priority: string;
|
|
3356
3356
|
actions: string;
|
|
3357
|
+
estimatedTime?: string;
|
|
3358
|
+
elapsedTime?: string;
|
|
3359
|
+
tags?: string;
|
|
3357
3360
|
};
|
|
3358
3361
|
toolbar: {
|
|
3359
3362
|
search: string;
|