Skip to content

Commit af44ed1

Browse files
authored
Merge pull request #9 from schubergphilis/bugfix/badge
fix: small fixes badge
2 parents e54a8a8 + ca9ff09 commit af44ed1

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

sbp-frontend-style/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@schubergphilis/sbp-frontend-style",
3-
"version": "1.9.0",
3+
"version": "1.9.1-0",
44
"license": "MIT",
55
"type": "module",
66
"types": "./dist/index.d.ts",
@@ -38,7 +38,7 @@
3838
"react-dom": "^19.2.3"
3939
},
4040
"dependencies": {
41-
"styled-components": "^6.3.5"
41+
"styled-components": "6.3.5"
4242
},
4343
"devDependencies": {
4444
"@eslint/compat": "^2.0.1",

sbp-frontend-style/pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sbp-frontend-style/src/components/CloudStyle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const CloudStyle = ({
7171
? customLargeLightTheme
7272
: customLightTheme
7373
}>
74-
<GlobalStyles />
74+
<GlobalStyles key="frontend-style-global" />
7575
{children}
7676
{isDebug ? <PageSize /> : null}
7777
</ThemeProvider>

sbp-frontend-style/src/components/atoms/badges/ChipBadge.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ const ChipBadge = ({
3131
wrapper={(xchildren) => (
3232
<Button
3333
onClick={(e: MouseEvent<HTMLButtonElement>) => handleOnClick(e)}
34-
disabled={disabled}>
34+
disabled={disabled}
35+
{...props}>
3536
{xchildren}
3637
</Button>
3738
)}>

sbp-frontend-style/src/components/atoms/forms/TextInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ const TextInput = styled.input`
2020
pointer-events: none;
2121
}
2222
`
23+
2324
export default TextInput

0 commit comments

Comments
 (0)