Socket
Socket
Sign inDemoInstall

storybook-addon-discussion

Package Overview
Dependencies
288
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.5 to 0.1.6

2

package.json
{
"name": "storybook-addon-discussion",
"version": "0.1.5",
"version": "0.1.6",
"description": "Leave comments for components and documentations",

@@ -5,0 +5,0 @@ "keywords": [

@@ -48,1 +48,15 @@ # Storybook Addon Storybook Discussion

```sql
-- Create Query for comments table (comments_v1)
-- Execute this query on Supabase SQL Editor
create table
comments_v1 (
id bigint generated by default as identity primary key,
author varchar(50) not null,
comment text not null,
storyId varchar(150) not null,
createdAt timestamp not null
);
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc