fastcomments-astro 1.0.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/LICENSE +21 -0
- package/README.md +59 -0
- package/package.json +30 -0
- package/src/FastComments.astro +43 -0
- package/src/FastCommentsCollabChat.astro +48 -0
- package/src/FastCommentsCommentCount.astro +43 -0
- package/src/FastCommentsImageChat.astro +48 -0
- package/src/FastCommentsLiveChat.astro +43 -0
- package/src/FastCommentsReviewsSummary.astro +48 -0
- package/src/FastCommentsUserActivityFeed.astro +51 -0
- package/src/env.d.ts +4 -0
- package/src/index.ts +8 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 FastComments
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# fastcomments-astro
|
|
2
|
+
|
|
3
|
+
A fast, full-featured live commenting widget for [Astro](https://astro.build), powered by [FastComments](https://fastcomments.com).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install fastcomments-astro
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```astro
|
|
14
|
+
---
|
|
15
|
+
import { FastComments } from 'fastcomments-astro';
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
<FastComments tenantId="demo" />
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Replace `"demo"` with your FastComments tenant ID.
|
|
22
|
+
|
|
23
|
+
## Components
|
|
24
|
+
|
|
25
|
+
| Component | Description |
|
|
26
|
+
| --- | --- |
|
|
27
|
+
| `FastComments` | Commenting widget with replies, voting, and more |
|
|
28
|
+
| `FastCommentsCommentCount` | Displays comment count for a page |
|
|
29
|
+
| `FastCommentsImageChat` | Image annotation comments |
|
|
30
|
+
| `FastCommentsLiveChat` | Live chat widget |
|
|
31
|
+
| `FastCommentsCollabChat` | Collaborative inline commenting |
|
|
32
|
+
| `FastCommentsReviewsSummary` | Star-rating reviews summary |
|
|
33
|
+
| `FastCommentsUserActivityFeed` | User activity feed |
|
|
34
|
+
|
|
35
|
+
All components are exported from the package root:
|
|
36
|
+
|
|
37
|
+
```astro
|
|
38
|
+
---
|
|
39
|
+
import { FastComments, FastCommentsLiveChat } from 'fastcomments-astro';
|
|
40
|
+
---
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Example Project
|
|
44
|
+
|
|
45
|
+
A working demo is included in the `example/` directory:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
cd example && npm install && npm run dev
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Links
|
|
52
|
+
|
|
53
|
+
- [FastComments Documentation](https://docs.fastcomments.com)
|
|
54
|
+
- [Customization & Configuration](https://docs.fastcomments.com/guide-customizations-and-configuration.html)
|
|
55
|
+
- [Astro Documentation](https://docs.astro.build)
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fastcomments-astro",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Astro components for FastComments",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./src/index.ts"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"src"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"astro",
|
|
14
|
+
"astro-component",
|
|
15
|
+
"fastcomments",
|
|
16
|
+
"comments",
|
|
17
|
+
"commenting"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/FastComments/fastcomments-astro"
|
|
22
|
+
},
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"astro": "^3.0.0 || ^4.0.0 || ^5.0.0"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"fastcomments-typescript": "^3.0.12"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
import type { FastCommentsCommentWidgetConfig } from 'fastcomments-typescript';
|
|
3
|
+
|
|
4
|
+
export interface Props extends FastCommentsCommentWidgetConfig {}
|
|
5
|
+
|
|
6
|
+
const config: Record<string, unknown> = {};
|
|
7
|
+
for (const [key, value] of Object.entries(Astro.props)) {
|
|
8
|
+
if (typeof value !== 'function') {
|
|
9
|
+
config[key] = value;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const containerId = `fc-${Math.random().toString(36).slice(2, 9)}`;
|
|
13
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
14
|
+
const scriptSrc = `${cdnBase}/js/embed-v2.min.js`;
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
<div id={containerId}></div>
|
|
18
|
+
|
|
19
|
+
<script define:vars={{ containerId, config, scriptSrc }}>
|
|
20
|
+
(function() {
|
|
21
|
+
var el = document.getElementById(containerId);
|
|
22
|
+
|
|
23
|
+
function init() {
|
|
24
|
+
if (window.FastCommentsUI) {
|
|
25
|
+
var instance = window.FastCommentsUI(el, config);
|
|
26
|
+
document.addEventListener('astro:before-swap', function() {
|
|
27
|
+
instance.destroy();
|
|
28
|
+
}, { once: true });
|
|
29
|
+
} else {
|
|
30
|
+
setTimeout(init, 50);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (!document.querySelector('script[data-fc-embed]')) {
|
|
35
|
+
var script = document.createElement('script');
|
|
36
|
+
script.src = scriptSrc;
|
|
37
|
+
script.setAttribute('data-fc-embed', '');
|
|
38
|
+
document.head.appendChild(script);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
init();
|
|
42
|
+
})();
|
|
43
|
+
</script>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
import type { FastCommentsCollabChatWidgetConfig } from 'fastcomments-typescript';
|
|
3
|
+
|
|
4
|
+
export interface Props extends FastCommentsCollabChatWidgetConfig {
|
|
5
|
+
/** CSS selector for the target element to enable collab chat on (e.g. "#my-content"). */
|
|
6
|
+
target: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const { target, ...rest } = Astro.props;
|
|
10
|
+
const config: Record<string, unknown> = {};
|
|
11
|
+
for (const [key, value] of Object.entries(rest)) {
|
|
12
|
+
if (typeof value !== 'function') {
|
|
13
|
+
config[key] = value;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
const containerId = `fc-collab-chat-${Math.random().toString(36).slice(2, 9)}`;
|
|
17
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
18
|
+
const scriptSrc = `${cdnBase}/js/embed-collab-chat.min.js`;
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<div id={containerId}></div>
|
|
22
|
+
|
|
23
|
+
<script define:vars={{ containerId, config, scriptSrc, target }}>
|
|
24
|
+
(function() {
|
|
25
|
+
function init() {
|
|
26
|
+
if (window.FastCommentsCollabChat) {
|
|
27
|
+
var targetEl = document.querySelector(target);
|
|
28
|
+
if (targetEl) {
|
|
29
|
+
var instance = window.FastCommentsCollabChat(targetEl, config);
|
|
30
|
+
document.addEventListener('astro:before-swap', function() {
|
|
31
|
+
instance.destroy();
|
|
32
|
+
}, { once: true });
|
|
33
|
+
}
|
|
34
|
+
} else {
|
|
35
|
+
setTimeout(init, 50);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (!document.querySelector('script[data-fc-collab-chat]')) {
|
|
40
|
+
var script = document.createElement('script');
|
|
41
|
+
script.src = scriptSrc;
|
|
42
|
+
script.setAttribute('data-fc-collab-chat', '');
|
|
43
|
+
document.head.appendChild(script);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
init();
|
|
47
|
+
})();
|
|
48
|
+
</script>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
import type { FastCommentsCommentCountConfig } from 'fastcomments-typescript';
|
|
3
|
+
|
|
4
|
+
export interface Props extends FastCommentsCommentCountConfig {}
|
|
5
|
+
|
|
6
|
+
const config: Record<string, unknown> = {};
|
|
7
|
+
for (const [key, value] of Object.entries(Astro.props)) {
|
|
8
|
+
if (typeof value !== 'function') {
|
|
9
|
+
config[key] = value;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const containerId = `fc-count-${Math.random().toString(36).slice(2, 9)}`;
|
|
13
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
14
|
+
const scriptSrc = `${cdnBase}/js/widget-comment-count.min.js`;
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
<span id={containerId}></span>
|
|
18
|
+
|
|
19
|
+
<script define:vars={{ containerId, config, scriptSrc }}>
|
|
20
|
+
(function() {
|
|
21
|
+
var el = document.getElementById(containerId);
|
|
22
|
+
|
|
23
|
+
function init() {
|
|
24
|
+
if (window.FastCommentsCommentCount) {
|
|
25
|
+
var instance = window.FastCommentsCommentCount(el, config);
|
|
26
|
+
document.addEventListener('astro:before-swap', function() {
|
|
27
|
+
instance.destroy();
|
|
28
|
+
}, { once: true });
|
|
29
|
+
} else {
|
|
30
|
+
setTimeout(init, 50);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (!document.querySelector('script[data-fc-count]')) {
|
|
35
|
+
var script = document.createElement('script');
|
|
36
|
+
script.src = scriptSrc;
|
|
37
|
+
script.setAttribute('data-fc-count', '');
|
|
38
|
+
document.head.appendChild(script);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
init();
|
|
42
|
+
})();
|
|
43
|
+
</script>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
import type { FastCommentsImageChatWidgetConfig } from 'fastcomments-typescript';
|
|
3
|
+
|
|
4
|
+
export interface Props extends FastCommentsImageChatWidgetConfig {
|
|
5
|
+
/** CSS selector for the target image element (e.g. "#my-image"). */
|
|
6
|
+
target: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const { target, ...rest } = Astro.props;
|
|
10
|
+
const config: Record<string, unknown> = {};
|
|
11
|
+
for (const [key, value] of Object.entries(rest)) {
|
|
12
|
+
if (typeof value !== 'function') {
|
|
13
|
+
config[key] = value;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
const containerId = `fc-image-chat-${Math.random().toString(36).slice(2, 9)}`;
|
|
17
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
18
|
+
const scriptSrc = `${cdnBase}/js/embed-image-chat.min.js`;
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
<div id={containerId}></div>
|
|
22
|
+
|
|
23
|
+
<script define:vars={{ containerId, config, scriptSrc, target }}>
|
|
24
|
+
(function() {
|
|
25
|
+
function init() {
|
|
26
|
+
if (window.FastCommentsImageChat) {
|
|
27
|
+
var targetEl = document.querySelector(target);
|
|
28
|
+
if (targetEl) {
|
|
29
|
+
var instance = window.FastCommentsImageChat(targetEl, config);
|
|
30
|
+
document.addEventListener('astro:before-swap', function() {
|
|
31
|
+
instance.destroy();
|
|
32
|
+
}, { once: true });
|
|
33
|
+
}
|
|
34
|
+
} else {
|
|
35
|
+
setTimeout(init, 50);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (!document.querySelector('script[data-fc-image-chat]')) {
|
|
40
|
+
var script = document.createElement('script');
|
|
41
|
+
script.src = scriptSrc;
|
|
42
|
+
script.setAttribute('data-fc-image-chat', '');
|
|
43
|
+
document.head.appendChild(script);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
init();
|
|
47
|
+
})();
|
|
48
|
+
</script>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
import type { FastCommentsLiveChatWidgetConfig } from 'fastcomments-typescript';
|
|
3
|
+
|
|
4
|
+
export interface Props extends FastCommentsLiveChatWidgetConfig {}
|
|
5
|
+
|
|
6
|
+
const config: Record<string, unknown> = {};
|
|
7
|
+
for (const [key, value] of Object.entries(Astro.props)) {
|
|
8
|
+
if (typeof value !== 'function') {
|
|
9
|
+
config[key] = value;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const containerId = `fc-live-chat-${Math.random().toString(36).slice(2, 9)}`;
|
|
13
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
14
|
+
const scriptSrc = `${cdnBase}/js/embed-live-chat.min.js`;
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
<div id={containerId}></div>
|
|
18
|
+
|
|
19
|
+
<script define:vars={{ containerId, config, scriptSrc }}>
|
|
20
|
+
(function() {
|
|
21
|
+
var el = document.getElementById(containerId);
|
|
22
|
+
|
|
23
|
+
function init() {
|
|
24
|
+
if (window.FastCommentsLiveChat) {
|
|
25
|
+
var instance = window.FastCommentsLiveChat(el, config);
|
|
26
|
+
document.addEventListener('astro:before-swap', function() {
|
|
27
|
+
instance.destroy();
|
|
28
|
+
}, { once: true });
|
|
29
|
+
} else {
|
|
30
|
+
setTimeout(init, 50);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (!document.querySelector('script[data-fc-live-chat]')) {
|
|
35
|
+
var script = document.createElement('script');
|
|
36
|
+
script.src = scriptSrc;
|
|
37
|
+
script.setAttribute('data-fc-live-chat', '');
|
|
38
|
+
document.head.appendChild(script);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
init();
|
|
42
|
+
})();
|
|
43
|
+
</script>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
export interface Props {
|
|
3
|
+
/** Id that represents you as a customer. */
|
|
4
|
+
tenantId: string;
|
|
5
|
+
/** Id that represents the page, if you don't want to tie comments to the page url. */
|
|
6
|
+
urlId?: string;
|
|
7
|
+
/** The region your account is in. EU customers should set to 'eu'. */
|
|
8
|
+
region?: 'eu';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const config = Astro.props;
|
|
12
|
+
const containerId = `fc-rs-${Math.random().toString(36).slice(2, 9)}`;
|
|
13
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
14
|
+
const scriptSrc = `${cdnBase}/js/embed-reviews-summary.min.js`;
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
<div id={containerId}></div>
|
|
18
|
+
|
|
19
|
+
<script define:vars={{ containerId, config, scriptSrc }}>
|
|
20
|
+
(function() {
|
|
21
|
+
var el = document.getElementById(containerId);
|
|
22
|
+
|
|
23
|
+
function init() {
|
|
24
|
+
if (window.FastCommentsReviewsSummaryWidget) {
|
|
25
|
+
window.FastCommentsReviewsSummaryWidget(el, config, function(error, instance) {
|
|
26
|
+
if (error) {
|
|
27
|
+
console.error('FastComments Reviews Summary Load Failure', error);
|
|
28
|
+
} else {
|
|
29
|
+
document.addEventListener('astro:before-swap', function() {
|
|
30
|
+
instance.destroy();
|
|
31
|
+
}, { once: true });
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
} else {
|
|
35
|
+
setTimeout(init, 50);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (!document.querySelector('script[data-fc-reviews-summary]')) {
|
|
40
|
+
var script = document.createElement('script');
|
|
41
|
+
script.src = scriptSrc;
|
|
42
|
+
script.setAttribute('data-fc-reviews-summary', '');
|
|
43
|
+
document.head.appendChild(script);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
init();
|
|
47
|
+
})();
|
|
48
|
+
</script>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
import type { FastCommentsCommentWidgetConfig } from 'fastcomments-typescript';
|
|
3
|
+
|
|
4
|
+
export interface Props extends FastCommentsCommentWidgetConfig {
|
|
5
|
+
/** With SSO: tenantId + ':' + userId. With Simple SSO: tenantId + ':' + userEmail. */
|
|
6
|
+
userId: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const config: Record<string, unknown> = {};
|
|
10
|
+
for (const [key, value] of Object.entries(Astro.props)) {
|
|
11
|
+
if (typeof value !== 'function') {
|
|
12
|
+
config[key] = value;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
const containerId = `fc-activity-${Math.random().toString(36).slice(2, 9)}`;
|
|
16
|
+
const cdnBase = config.region === 'eu' ? 'https://cdn-eu.fastcomments.com' : 'https://cdn.fastcomments.com';
|
|
17
|
+
const scriptSrc = `${cdnBase}/js/embed-user-activity.min.js`;
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
<div id={containerId}></div>
|
|
21
|
+
|
|
22
|
+
<script define:vars={{ containerId, config, scriptSrc }}>
|
|
23
|
+
(function() {
|
|
24
|
+
var el = document.getElementById(containerId);
|
|
25
|
+
|
|
26
|
+
function init() {
|
|
27
|
+
if (window.FastCommentsUserActivity) {
|
|
28
|
+
window.FastCommentsUserActivity(el, config, function(error, instance) {
|
|
29
|
+
if (error) {
|
|
30
|
+
console.error('FastComments User Activity Load Failure', error);
|
|
31
|
+
} else {
|
|
32
|
+
document.addEventListener('astro:before-swap', function() {
|
|
33
|
+
instance.destroy();
|
|
34
|
+
}, { once: true });
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
} else {
|
|
38
|
+
setTimeout(init, 50);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (!document.querySelector('script[data-fc-user-activity]')) {
|
|
43
|
+
var script = document.createElement('script');
|
|
44
|
+
script.src = scriptSrc;
|
|
45
|
+
script.setAttribute('data-fc-user-activity', '');
|
|
46
|
+
document.head.appendChild(script);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
init();
|
|
50
|
+
})();
|
|
51
|
+
</script>
|
package/src/env.d.ts
ADDED
package/src/index.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as FastComments } from './FastComments.astro';
|
|
2
|
+
export { default as FastCommentsCommentCount } from './FastCommentsCommentCount.astro';
|
|
3
|
+
export { default as FastCommentsCollabChat } from './FastCommentsCollabChat.astro';
|
|
4
|
+
export { default as FastCommentsImageChat } from './FastCommentsImageChat.astro';
|
|
5
|
+
export { default as FastCommentsLiveChat } from './FastCommentsLiveChat.astro';
|
|
6
|
+
export { default as FastCommentsReviewsSummary } from './FastCommentsReviewsSummary.astro';
|
|
7
|
+
export { default as FastCommentsUserActivityFeed } from './FastCommentsUserActivityFeed.astro';
|
|
8
|
+
export type * from 'fastcomments-typescript';
|