@box/activity-feed 1.16.2 → 1.17.0

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/esm/index.js CHANGED
@@ -1,9 +1,10 @@
1
1
  import { t as e } from "../chunks/activity-feed.js";
2
2
  import { t } from "../chunks/app-activity-item.js";
3
3
  import "./lib/components/app-activity-item/index.js";
4
- import { TaskItem as n } from "./lib/components/task-item/TaskItem.js";
4
+ import { n, r, t as i } from "../chunks/types.js";
5
+ import { TaskItem as a } from "./lib/components/task-item/TaskItem.js";
5
6
  import "./lib/components/task-item/index.js";
6
- import { VersionItem as r } from "./lib/components/version-item/version-item.js";
7
+ import { VersionItem as o } from "./lib/components/version-item/version-item.js";
7
8
  import "./lib/components/version-item/index.js";
8
- import { useActivityFeedScroll as i } from "./lib/scroll/use-activity-feed-scroll.js";
9
- export { e as ActivityFeed, t as AppActivityItem, n as TaskItem, r as VersionItem, i as useActivityFeedScroll };
9
+ import { useActivityFeedScroll as s } from "./lib/scroll/use-activity-feed-scroll.js";
10
+ export { e as ActivityFeed, t as AppActivityItem, i as TaskCompletionRule, a as TaskItem, n as TaskItemStatus, r as TaskType, o as VersionItem, s as useActivityFeedScroll };
@@ -1,6 +1,6 @@
1
- import { n as e, r as t } from "../../../../chunks/types.js";
2
- import n from "./messages.js";
3
- import { t as r } from "../../../../chunks/AssigneeList.js";
4
- import { t as i } from "../../../../chunks/TaskDueDate.js";
5
- import { TaskItem as a } from "./TaskItem.js";
6
- export { r as AssigneeList, i as TaskDueDate, a as TaskItem, e as TaskItemStatus, t as TaskType, n as messages };
1
+ import { n as e, r as t, t as n } from "../../../../chunks/types.js";
2
+ import r from "./messages.js";
3
+ import { t as i } from "../../../../chunks/AssigneeList.js";
4
+ import { t as a } from "../../../../chunks/TaskDueDate.js";
5
+ import { TaskItem as o } from "./TaskItem.js";
6
+ export { i as AssigneeList, n as TaskCompletionRule, a as TaskDueDate, o as TaskItem, e as TaskItemStatus, t as TaskType, r as messages };
@@ -2,5 +2,8 @@ export { ActivityFeed, useActivityFeedScroll } from './lib/activity-feed';
2
2
  export type { ActivityFeedScrollHandle } from './lib/activity-feed';
3
3
  export type * from './lib/types';
4
4
  export { AppActivityItem } from './lib/components/app-activity-item';
5
- export { TaskItem } from './lib/components/task-item';
5
+ export type { AppActivityItemProps } from './lib/components/app-activity-item';
6
+ export { TaskCompletionRule, TaskItem, TaskItemStatus, TaskType } from './lib/components/task-item';
7
+ export type { TaskAssignee as TaskItemAssignee, TaskAuthor, TaskItemPermissions, TaskItemProps, TaskStatusType, } from './lib/components/task-item';
6
8
  export { VersionItem } from './lib/components/version-item';
9
+ export type { VersionActionType, VersionItemProps } from './lib/components/version-item';
@@ -4,7 +4,9 @@
4
4
  export { TaskItem } from './TaskItem';
5
5
  export { TaskDueDate } from './components/task-due-date';
6
6
  export { AssigneeList } from './components/assignee-list';
7
- export type { TaskItemProps, TaskItemPermissions, TaskStatus as TaskStatusType, TaskCompletionRule, TaskAssignee, TaskAuthor, } from './types';
7
+ export type { TaskAssignee, TaskAuthor, TaskItemPermissions, TaskItemProps, TaskStatus as TaskStatusType, } from './types';
8
+ /** All-assignees vs any-assignee completion rule. */
9
+ export { TaskCompletionRule } from './types';
8
10
  /** General vs approval task kind. */
9
11
  export { TaskType } from './types';
10
12
  /** String enum for task / assignee row status. */
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@box/activity-feed",
3
- "version": "1.16.2",
3
+ "version": "1.17.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@box/blueprint-web": "^14.18.0",
7
7
  "@box/blueprint-web-assets": "^4.115.4",
8
8
  "@box/collaboration-popover": "^1.61.5",
9
9
  "@box/readable-time": "^1.40.5",
10
- "@box/threaded-annotations": "^1.83.5",
10
+ "@box/threaded-annotations": "^1.83.6",
11
11
  "@box/user-selector": "^1.75.5",
12
12
  "clsx": "^1.2.1",
13
13
  "react": "^18.0.0",
@@ -24,7 +24,7 @@
24
24
  "@box/eslint-plugin-blueprint": "1.1.18",
25
25
  "@box/readable-time": "^1.40.5",
26
26
  "@box/storybook-utils": "0.18.4",
27
- "@box/threaded-annotations": "^1.83.5",
27
+ "@box/threaded-annotations": "^1.83.6",
28
28
  "@box/user-selector": "^1.75.5",
29
29
  "react-intl": "^6.4.2"
30
30
  },