Skip to content

Commit ce6d8e7

Browse files
Merge branch 'master' into Enhance-design-card
2 parents 04e7ecc + 48dc923 commit ce6d8e7

File tree

6 files changed

+62
-43
lines changed

6 files changed

+62
-43
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ labels: 'kind/bug'
66
assignees: ''
77
---
88

9-
#### Current Behavior
9+
### Current Behavior
1010

1111
<!-- A brief description of the issue. -->
1212

13-
#### Expected Behavior
13+
### Expected Behavior
1414

1515
<!-- A brief description of what you expected to happen. -->
1616

17-
#### Screenshots/Logs
17+
### Screenshots/Logs
1818

1919
<!-- Add screenshots, if applicable, to help explain your problem. -->
2020

21-
#### Environment
21+
### Environment
2222

2323
<!-- Please mention the environment where you encountered the issue (e.g., browser, OS, etc.). -->
2424

.github/ISSUE_TEMPLATE/ci.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ labels: 'area/ci'
66
assignees: ''
77
---
88

9-
#### Current Behavior
9+
### Current Behavior
1010

1111
<!-- A brief description of what the problem is. (e.g. I need to be able to...) -->
1212

13-
#### Desired Behavior
13+
### Desired Behavior
1414

1515
<!-- A brief description of what you expected to happen. -->
1616

17-
#### Implementation
17+
### Implementation
1818

1919
<!-- Specifics on the approach to fulfilling the feature request. -->
2020

21-
#### Acceptance Tests
21+
### Acceptance Tests
2222

2323
<!-- Stipulations of functional behavior or non-functional items that must be in-place in order for the issue to be closed. -->
2424

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ labels: 'kind/enhancement'
66
assignees: ''
77
---
88

9-
#### Current Behavior
9+
### Current Behavior
1010

1111
<!-- A brief description of what the problem is. (e.g. I need to be able to...) -->
1212

13-
#### Desired Behavior
13+
### Desired Behavior
1414

1515
<!-- A brief description of the enhancement. -->
1616

17-
#### Implementation
17+
### Implementation
1818

1919
<!-- [Optional] Specifics on the approach to fulfilling the feature request. -->
2020

21-
#### Acceptance Tests
21+
### Acceptance Tests
2222

2323
<!-- [Optional] Stipulations of functional behavior or non-functional items that must be in-place in order for the issue to be closed. -->
2424

25-
#### Mockups
25+
### Mockups
2626

2727
<!-- [Optional] Any visual diagrams of the desired user interface. -->
2828

package-lock.json

Lines changed: 44 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@eslint/compat": "^1.3.2",
4747
"@eslint/eslintrc": "^3.3.1",
4848
"@eslint/js": "^9.39.2",
49+
"@meshery/schemas": "^0.8.118",
4950
"@mui/icons-material": "^6.4.8",
5051
"@reduxjs/toolkit": "^2.2.5",
5152
"@testing-library/react": "^16.2.0",
@@ -80,14 +81,15 @@
8081
"rollup": "^4.38.0",
8182
"ts-jest": "^29.3.0",
8283
"tsup": "^8.4.0",
83-
"typescript": "^5.8.2"
84+
"typescript": "^5.8.2",
85+
"xstate": "^5.25.0"
8486
},
8587
"peerDependencies": {
86-
"@meshery/schemas": "^0.8.107",
88+
"@meshery/schemas": "^0.8.118",
8789
"@xstate/react": "^5.0.3",
8890
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
8991
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
90-
"xstate": "^5.19.2"
92+
"xstate": "^5.25.0"
9193
},
9294
"overrides": {
9395
"@mui/icons-material": "^6.4.8",

src/icons/Google/GoogleIcon.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const GoogleIcon: React.FC<GoogleIconProps> = ({ height, width, style }) => {
2121
fontFamily="none"
2222
fontSize="none"
2323
fontWeight="none"
24-
textAnchor="none"
2524
style={{ mixBlendMode: 'normal' }}
2625
>
2726
<path d="M0 256V0h256v256z"></path>
@@ -32,7 +31,6 @@ const GoogleIcon: React.FC<GoogleIconProps> = ({ height, width, style }) => {
3231
fontFamily="none"
3332
fontSize="none"
3433
fontWeight="none"
35-
textAnchor="none"
3634
style={{ mixBlendMode: 'normal' }}
3735
>
3836
<path

0 commit comments

Comments
 (0)