Skip to content

Commit e43a064

Browse files
Merge pull request #42 from syncfusion/Template
Added new issues and feature report template
2 parents 048780e + 8cf363d commit e43a064

File tree

2 files changed

+152
-0
lines changed

2 files changed

+152
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
name: Bug Report
2+
description: Create a bug report
3+
labels: ["t/bug"]
4+
assignees: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for submitting the bug report! Please provide as much detail as possible to help us diagnose and resolve the issue faster.
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: Please provide a detailed description of the issue you're experiencing, including any relevant screenshots or videos.
15+
placeholder: Please describe what you're seeing!
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: repro-steps
20+
attributes:
21+
label: Steps to Reproduce
22+
description: Please describe the steps to reproduce the behavior you've observed, along with what you expected to happen and what actually occurred.
23+
placeholder: |
24+
1. Add a `SfSegmentedControl` and add `ItemsSource`, and 'FlowDirection' to `RightToLeft`
25+
like so: `<segmentedControl:SfSegmentedControl FlowDirection="RightToLeft">
26+
<segmentedControl:SfSegmentedControl.ItemsSource>
27+
<x:Array Type="{x:Type x:String}">
28+
<x:String>Day</x:String>
29+
<x:String>Week</x:String>
30+
<x:String>Month</x:String>
31+
<x:String>Year</x:String>
32+
</x:Array>
33+
</segmentedControl:SfSegmentedControl.ItemsSource>
34+
</segmentedControl:SfSegmentedControl>`
35+
2. If the `FlowDirection` is set to `RightToLeft` and observe the layout issue 🐞
36+
37+
Expected outcome: a bug was added
38+
Actual outcome: a ladybug appeared
39+
validations:
40+
required: false
41+
- type: dropdown
42+
id: version-with-bug
43+
attributes:
44+
label: Version with bug
45+
description: In which version are you encountering this issue?
46+
options:
47+
- 1.0.2
48+
- 1.0.1
49+
validations:
50+
required: true
51+
- type: dropdown
52+
id: is-regression
53+
attributes:
54+
label: Is this a regression from previous behavior?
55+
description: Did this work prior to an update or migration and now no longer functions as expected?
56+
multiple: true
57+
options:
58+
- Yes, this used to work
59+
- No, this is a new issue
60+
- Not sure, haven't tested other versions
61+
validations:
62+
required: true
63+
- type: dropdown
64+
id: version-that-worked
65+
attributes:
66+
label: Last Known Working Version
67+
description: If you answered "Yes," please specify the version where this functionality previously worked.
68+
options:
69+
- 1.0.2
70+
- 1.0.1
71+
validations:
72+
required: true
73+
- type: dropdown
74+
id: platforms-affected
75+
attributes:
76+
label: Affected platforms
77+
description: Select all platforms where you see the issue. If tested on only one platform, choose the last option.
78+
multiple: true
79+
options:
80+
- iOS
81+
- Android
82+
- Windows
83+
- macOS
84+
- I was *not* able test on other platforms
85+
validations:
86+
required: true
87+
- type: input
88+
id: platform-versions
89+
attributes:
90+
label: Affected Platform Versions
91+
description: Specify the platform versions where this issue occurs.
92+
placeholder: E.g. iOS 15, Android 11 and up, Windows SDK 10.0.17134.0, etc.
93+
validations:
94+
required: false
95+
- type: textarea
96+
id: workaround
97+
attributes:
98+
label: Have you found a workaround?
99+
description: Have you found a workaround? It could help others and assist in resolving the issue.
100+
- type: textarea
101+
id: logs
102+
attributes:
103+
label: Relevant log output
104+
description: Include a stack trace for further analysis.
105+
render: shell
106+
- type: markdown
107+
attributes:
108+
value: |
109+
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Feature Request
2+
description: Provide a suggestion for a Syncfusion Toolkit for .NET MAUI open source controls.
3+
labels: ["proposal/open", "t/enhancement"]
4+
assignees: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for your interest in Syncfsuion Toolkit for .NET MAUI open source controls! We welcome all ideas. Please provide a detailed description, including screenshots, mockups, and pseudo-code, and consider the platform feasibility across .NET MAUI to expedite review.
10+
11+
If you're unsure about a request, feel free to [start a discussion(https://github.com/syncfusion/maui-toolkit/discussions/new?category=ideas) to collaborate with the team and community before proceeding.
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Description
16+
description: Please describe the feature, focusing on what it does and the end result. Feel free to include diagrams, mockups, or screenshots to support your idea.
17+
placeholder: Provide support for vertical orientation in SfSegmentedControl to modify the arrangement of items.
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: api-changes
22+
attributes:
23+
label: Public API Changes
24+
description: Include a list of all API changes, additions, subtractions as would be required by your proposal. These APIs should be considered placeholders, so the naming is not as important as getting the concepts correct. If possible you should include some example (pseudo-)code of usage of your new API. This will not only help us understand better, but also help you think about how you want to use this feature as a developer.
25+
placeholder: |
26+
```csharp
27+
var SfSegmentedControl = new SfSegmentedControl();
28+
SfSegmentedControl.Orientation = SegmentOrientation.Vertical; // new API
29+
```
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: use-case
34+
attributes:
35+
label: Intended Use-Case
36+
description: Provide a detailed example of how and why this feature would be used, emphasizing the purpose behind implementing this feature, rather than simply describing its functionality.
37+
placeholder: In my app, I want to change the SfSegmentedControl from horizontal to vertical orientation to better organize items and enhance the user experience.
38+
validations:
39+
required: true
40+
- type: markdown
41+
attributes:
42+
value: |
43+

0 commit comments

Comments
 (0)