@libxai/board 1.5.21 → 1.5.23
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 +18 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/styles.css +22 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3704,7 +3704,7 @@ type SortDirection = 'asc' | 'desc';
|
|
|
3704
3704
|
* - v1.2.0: effortMinutes, timeLoggedMinutes, soldEffortMinutes
|
|
3705
3705
|
* - Custom: text, number, date, dropdown, checkbox
|
|
3706
3706
|
*/
|
|
3707
|
-
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'scheduleVariance' | 'hoursBar' | 'teamLoad' | 'blockers' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3707
|
+
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'scheduleVariance' | 'hoursBar' | 'teamLoad' | 'blockers' | 'weight' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3708
3708
|
/**
|
|
3709
3709
|
* Table column configuration for dynamic columns
|
|
3710
3710
|
*/
|
|
@@ -3966,6 +3966,7 @@ interface ListViewTranslations {
|
|
|
3966
3966
|
hoursBar?: string;
|
|
3967
3967
|
teamLoad?: string;
|
|
3968
3968
|
blockers?: string;
|
|
3969
|
+
weight?: string;
|
|
3969
3970
|
};
|
|
3970
3971
|
toolbar: {
|
|
3971
3972
|
search: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3704,7 +3704,7 @@ type SortDirection = 'asc' | 'desc';
|
|
|
3704
3704
|
* - v1.2.0: effortMinutes, timeLoggedMinutes, soldEffortMinutes
|
|
3705
3705
|
* - Custom: text, number, date, dropdown, checkbox
|
|
3706
3706
|
*/
|
|
3707
|
-
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'scheduleVariance' | 'hoursBar' | 'teamLoad' | 'blockers' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3707
|
+
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'scheduleVariance' | 'hoursBar' | 'teamLoad' | 'blockers' | 'weight' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3708
3708
|
/**
|
|
3709
3709
|
* Table column configuration for dynamic columns
|
|
3710
3710
|
*/
|
|
@@ -3966,6 +3966,7 @@ interface ListViewTranslations {
|
|
|
3966
3966
|
hoursBar?: string;
|
|
3967
3967
|
teamLoad?: string;
|
|
3968
3968
|
blockers?: string;
|
|
3969
|
+
weight?: string;
|
|
3969
3970
|
};
|
|
3970
3971
|
toolbar: {
|
|
3971
3972
|
search: string;
|