Skip to content

Commit ed72835

Browse files
authored
Release 3.36.0
2 parents 75ce0cc + 30b0463 commit ed72835

File tree

228 files changed

+3470
-2810
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+3470
-2810
lines changed

.eslintrc.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,26 @@
4040
"*.html"
4141
],
4242
"extends": [
43-
"plugin:@angular-eslint/template/recommended"
43+
"plugin:@angular-eslint/template/recommended",
44+
"plugin:prettier/recommended"
4445
],
4546
"rules": {}
46-
}, {
47-
"files": ["*.stories.@(ts|tsx|js|jsx|mjs|cjs)"],
47+
},
48+
{
49+
"files": [
50+
"*.stories.@(ts|tsx|js|jsx|mjs|cjs)"
51+
],
4852
"rules": {
4953
"storybook/story-exports": "off"
5054
}
5155
}
5256
],
5357
"rules": {
54-
"prettier/prettier": "error"
58+
"prettier/prettier": "error"
5559
},
56-
"plugins": ["prettier"],
60+
"plugins": [
61+
"prettier"
62+
],
5763
"extends": [
5864
"plugin:storybook/recommended",
5965
"prettier"
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
name: Bug report
33
about: Report a problem
4-
title: ''
5-
labels: 'Type: Bug'
6-
assignees: ''
7-
4+
title: ""
5+
labels: "Type: Bug"
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,9 +24,10 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
3031

3132
**Additional context**
3233
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/empty.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
name: Blank issue
33
about: Any other issue not fitting the specific templates
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
9-

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: 'Priority: Idea, Type: Feature'
6-
assignees: ''
7-
4+
title: ""
5+
labels: "Priority: Idea, Type: Feature"
6+
assignees: ""
87
---
98

10-
*As a [type of user] I want to [...] in order to [achieve XY goal].*
9+
_As a [type of user] I want to [...] in order to [achieve XY goal]._
1110
A short summary of the feature: Who would use this new feature? And what is the objective or use case in real life?
1211

1312
**Objective**

.github/pull_request_template.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
closes: #XX
22

33
### Visible/Frontend Changes
4-
- [x]
5-
- [ ]
4+
5+
- [x]
6+
- [ ]
67

78
### Architectural/Backend Changes
8-
- [x]
9-
- [ ]
9+
10+
- [x]
11+
- [ ]

.github/workflows/percy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Percy
22
on:
33
pull_request:
4-
types: [ opened, synchronize, reopened, ready_for_review ]
4+
types: [opened, synchronize, reopened, ready_for_review]
55
push:
66
branches:
77
- master
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: '16'
18+
node-version: "16"
1919
cache: npm
2020
- run: npm ci
2121
- run: npm run percy-storybook

.github/workflows/pull-request-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CleanUp
22
on:
33
pull_request_target:
4-
types: [ closed ]
4+
types: [closed]
55

66
jobs:
77
remove-deployment:

.github/workflows/pull-request-opened.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
pull_request:
8-
types: [ opened, reopened ]
8+
types: [opened, reopened]
99

1010
jobs:
1111
create-deployment:

.github/workflows/tagged-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: New Tag
22
on:
33
push:
44
tags:
5-
- '*'
5+
- "*"
66

77
jobs:
88
publish-image:

.prettierrc.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,19 @@
33
{
44
"files": "*.html",
55
"options": {
6-
"parser": "html"
6+
"parser": "angular"
77
}
88
},
99
{
10-
"files": "*.component.html",
10+
"files": "*.scss",
1111
"options": {
12-
"parser": "angular"
12+
"parser": "scss"
13+
}
14+
},
15+
{
16+
"files": "*.json",
17+
"options": {
18+
"parser": "json-stringify"
1319
}
1420
}
1521
]

0 commit comments

Comments
 (0)