Skip to content

Commit e1ef232

Browse files
committed
add TextBox
1 parent 73de363 commit e1ef232

21 files changed

+2700
-1797
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+55-55
Original file line numberDiff line numberDiff line change
@@ -2,61 +2,61 @@ name: Bug Report
22
description: Create a bug report to help improve the Fluent Svelte library
33
labels: [bug]
44
body:
5-
- type: checkboxes
6-
attributes:
7-
label: Before you start...
8-
options:
9-
- label: Have you updated your dependencies? You might be using an old version of the library.
5+
- type: checkboxes
6+
attributes:
7+
label: Before you start...
8+
options:
9+
- label: Have you updated your dependencies? You might be using an old version of the library.
10+
required: true
11+
- label: Have you checked for an existing issue on this topic? If there is one, post a comment on it instead.
12+
required: true
13+
- type: dropdown
14+
id: browsers
15+
attributes:
16+
label: What browsers are you seeing the problem on?
17+
multiple: true
18+
options:
19+
- Firefox
20+
- Chrome
21+
- Safari
22+
- Microsoft Edge
23+
- Firefox Beta/Dev/Nightly
24+
- Chrome Beta/Dev/Canary
25+
- Safari Beta
26+
- Microsoft Edge Beta/Dev/Canary
27+
- Other - list in description
28+
validations:
1029
required: true
11-
- label: Have you checked for an existing issue on this topic? If there is one, post a comment on it instead.
30+
- type: textarea
31+
attributes:
32+
label: Description
33+
description: A clear and concise description of what the bug is.
34+
validations:
1235
required: true
13-
- type: dropdown
14-
id: browsers
15-
attributes:
16-
label: What browsers are you seeing the problem on?
17-
multiple: true
18-
options:
19-
- Firefox
20-
- Chrome
21-
- Safari
22-
- Microsoft Edge
23-
- Firefox Beta/Dev/Nightly
24-
- Chrome Beta/Dev/Canary
25-
- Safari Beta
26-
- Microsoft Edge Beta/Dev/Canary
27-
- Other - list in description
28-
validations:
29-
required: true
30-
- type: textarea
31-
attributes:
32-
label: Description
33-
description: A clear and concise description of what the bug is.
34-
validations:
35-
required: true
36-
- type: textarea
37-
attributes:
38-
label: Steps To Reproduce
39-
description: Steps to reproduce the behavior.
40-
placeholder: |
41-
1. Go to '....'
42-
2. Click on '....'
43-
3. Scroll down to '....'
44-
4. See the error
45-
validations:
46-
required: false
47-
- type: textarea
48-
attributes:
49-
label: Expected behavior
50-
description: A clear and concise description of what you expected to happen.
51-
validations:
52-
required: true
53-
- type: textarea
54-
attributes:
55-
label: Relevant Assets
56-
description: |
57-
A list of assets (errors, screenshots) relevant to this bug.
36+
- type: textarea
37+
attributes:
38+
label: Steps To Reproduce
39+
description: Steps to reproduce the behavior.
40+
placeholder: |
41+
1. Go to '....'
42+
2. Click on '....'
43+
3. Scroll down to '....'
44+
4. See the error
45+
validations:
46+
required: false
47+
- type: textarea
48+
attributes:
49+
label: Expected behavior
50+
description: A clear and concise description of what you expected to happen.
51+
validations:
52+
required: true
53+
- type: textarea
54+
attributes:
55+
label: Relevant Assets
56+
description: |
57+
A list of assets (errors, screenshots) relevant to this bug.
5858
59-
Tip: You can attach images or log files by highlighting this area and dragging files into it.
60-
placeholder: |
61-
To access the site's log, press Ctrl + Shift + I and open the console tab.
62-
Errors will be highlighted in red.
59+
Tip: You can attach images or log files by highlighting this area and dragging files into it.
60+
placeholder: |
61+
To access the site's log, press Ctrl + Shift + I and open the console tab.
62+
Errors will be highlighted in red.

.github/ISSUE_TEMPLATE/feature_request.yml

+25-25
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@ name: Feature Request
22
description: Request a new feature in the Fluent Svelte library.
33
labels: [feature_request]
44
body:
5-
- type: checkboxes
6-
attributes:
7-
label: Before you start...
8-
options:
9-
- label: Have you updated your dependencies? You might be using an old version of the library.
5+
- type: checkboxes
6+
attributes:
7+
label: Before you start...
8+
options:
9+
- label: Have you updated your dependencies? You might be using an old version of the library.
10+
required: true
11+
- label: Have you checked if someone already requested this feature? If they have, post a comment with your use case instead.
12+
required: true
13+
- type: textarea
14+
attributes:
15+
label: Description
16+
description: A clear and concise description of what your idea is. Include things like possible use cases, drawbacks, etc.
17+
validations:
1018
required: true
11-
- label: Have you checked if someone already requested this feature? If they have, post a comment with your use case instead.
12-
required: true
13-
- type: textarea
14-
attributes:
15-
label: Description
16-
description: A clear and concise description of what your idea is. Include things like possible use cases, drawbacks, etc.
17-
validations:
18-
required: true
19-
- type: textarea
20-
attributes:
21-
label: Alternative solutions
22-
description: Describe more ways this problem could be solved.
23-
validations:
24-
required: false
25-
- type: textarea
26-
attributes:
27-
label: Relevant Assets
28-
description: |
29-
A list of assets (screenshots, mockups) relevant to this feature request.
19+
- type: textarea
20+
attributes:
21+
label: Alternative solutions
22+
description: Describe more ways this problem could be solved.
23+
validations:
24+
required: false
25+
- type: textarea
26+
attributes:
27+
label: Relevant Assets
28+
description: |
29+
A list of assets (screenshots, mockups) relevant to this feature request.
3030
31-
Tip: You can attach images by highlighting this area and dragging files into it.
31+
Tip: You can attach images by highlighting this area and dragging files into it.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fluent-svelte",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "A faithful implementation of Microsoft's Fluent Design System in Svelte.",
55
"homepage": "https://github.com/tropix126/fluent-svelte",
66
"author": {

0 commit comments

Comments
 (0)