hale-commenting-system 2.2.91 → 2.2.92
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hale-commenting-system",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.92",
|
|
4
4
|
"description": "A commenting system for PatternFly React applications that allows designers and developers to add comments directly on design pages, sync with GitHub Issues, and link Jira tickets.",
|
|
5
5
|
"repository": "https://github.com/patternfly/patternfly-react-seed.git",
|
|
6
6
|
"homepage": "https://www.npmjs.com/package/hale-commenting-system",
|
|
@@ -6,6 +6,12 @@ export { GitHubAuthProvider, useGitHubAuth } from './contexts/GitHubAuthContext'
|
|
|
6
6
|
export { CommentOverlay } from './components/CommentOverlay';
|
|
7
7
|
export { CommentPin } from './components/CommentPin';
|
|
8
8
|
export { CommentPanel } from './components/CommentPanel';
|
|
9
|
+
export { DetailsTab } from './components/DetailsTab';
|
|
10
|
+
export { JiraTab } from './components/JiraTab';
|
|
11
|
+
export { FloatingWidget } from './components/FloatingWidget';
|
|
12
|
+
|
|
13
|
+
// Services
|
|
14
|
+
export { githubAdapter, isGitHubConfigured } from './services/githubAdapter';
|
|
9
15
|
|
|
10
16
|
// Types
|
|
11
17
|
export type { Comment, Thread, SyncStatus, ThreadStatus } from './types';
|