1+ name : Bug Report
2+ description : Report a bug or unexpected behavior in Streamdown
3+ title : " [Bug]: "
4+ labels : ["bug", "needs-triage"]
5+ body :
6+ - type : markdown
7+ attributes :
8+ value : |
9+ Thanks for taking the time to report this bug! Please fill out the information below to help us understand and fix the issue.
10+
11+ - type : textarea
12+ id : description
13+ attributes :
14+ label : Bug Description
15+ description : A clear and concise description of what the bug is.
16+ placeholder : Describe the bug...
17+ validations :
18+ required : true
19+
20+ - type : textarea
21+ id : reproduction
22+ attributes :
23+ label : Steps to Reproduce
24+ description : Steps to reproduce the behavior
25+ placeholder : |
26+ 1. Import Streamdown with '...'
27+ 2. Pass markdown content '...'
28+ 3. Render component with '...'
29+ 4. See error
30+ validations :
31+ required : true
32+
33+ - type : textarea
34+ id : expected
35+ attributes :
36+ label : Expected Behavior
37+ description : What you expected to happen
38+ placeholder : Describe what should happen...
39+ validations :
40+ required : true
41+
42+ - type : textarea
43+ id : actual
44+ attributes :
45+ label : Actual Behavior
46+ description : What actually happened
47+ placeholder : Describe what actually happened...
48+ validations :
49+ required : true
50+
51+ - type : textarea
52+ id : code-sample
53+ attributes :
54+ label : Code Sample
55+ description : If applicable, add a minimal code sample to help reproduce the issue
56+ render : tsx
57+ placeholder : |
58+ import { Streamdown } from 'streamdown';
59+
60+ // Your code here...
61+
62+ - type : input
63+ id : version
64+ attributes :
65+ label : Streamdown Version
66+ description : What version of Streamdown are you using?
67+ placeholder : e.g., 1.1.1
68+ validations :
69+ required : true
70+
71+ - type : input
72+ id : react-version
73+ attributes :
74+ label : React Version
75+ description : What version of React are you using?
76+ placeholder : e.g., 18.2.0 or 19.0.0
77+ validations :
78+ required : true
79+
80+ - type : input
81+ id : node-version
82+ attributes :
83+ label : Node.js Version
84+ description : What version of Node.js are you using?
85+ placeholder : e.g., 20.10.0
86+
87+ - type : dropdown
88+ id : browsers
89+ attributes :
90+ label : Browser(s)
91+ description : What browsers are you seeing the problem on?
92+ multiple : true
93+ options :
94+ - Chrome
95+ - Firefox
96+ - Safari
97+ - Edge
98+ - Other
99+ - Not applicable (Node.js)
100+
101+ - type : dropdown
102+ id : os
103+ attributes :
104+ label : Operating System
105+ options :
106+ - macOS
107+ - Windows
108+ - Linux
109+ - iOS
110+ - Android
111+ - Other
112+
113+ - type : textarea
114+ id : additional
115+ attributes :
116+ label : Additional Context
117+ description : Add any other context about the problem here (e.g., screenshots, error messages, console logs)
118+ placeholder : Any additional information...
0 commit comments