Skip to content

Commit

Permalink
Bump the all group with 4 updates (#27)
Browse files Browse the repository at this point in the history
* Bump the all group with 4 updates

Bumps the all group with 4 updates: [ronin](https://github.com/ronin-co/client), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun) and [typescript](https://github.com/Microsoft/TypeScript).


Updates `ronin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/ronin-co/client/releases)
- [Commits](ronin-co/client@4.0.10...4.0.11)

Updates `@biomejs/biome` from 1.8.1 to 1.8.2
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.8.2/packages/@biomejs/biome)

Updates `@types/bun` from 1.1.4 to 1.1.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/bun)

Updates `typescript` from 5.4.5 to 5.5.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.5.2)

---
updated-dependencies:
- dependency-name: ronin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/bun"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump `bun.lockb`

* Ensure working linting

* Added code comment

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ronin-app[bot] <135042755+ronin-app[bot]@users.noreply.github.com>
Co-authored-by: Leo Lamprecht <[email protected]>
Co-authored-by: Leo Lamprecht <[email protected]>
  • Loading branch information
4 people committed Jun 21, 2024
1 parent 1f3090d commit 720e02d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
Binary file modified bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,18 @@
}
},
"dependencies": {
"ronin": "4.0.10"
"ronin": "4.0.11"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@types/bun": "1.1.4",
"@biomejs/biome": "1.8.2",
"@types/bun": "1.1.5",
"@types/react": "18.3.3",
"@types/web": "0.0.149",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"msw": "2.3.1",
"react": "18.3.1",
"typescript": "5.4.5"
"typescript": "5.5.2"
},
"peerDependencies": {
"react": ">=18.3.1"
Expand Down
13 changes: 5 additions & 8 deletions src/components/image.client.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
"use client";

import React, {
useCallback,
useRef,
forwardRef,
type CSSProperties,
} from "react";
// We are purposefully importing `React` here, as the build output contains
// references to it, and those would fail if we don't import it explicitly.
import React, { useCallback, useRef, forwardRef } from "react";
import type { StoredObject } from "ronin/types";

const supportedFitValues = ["fill", "contain", "cover"];
Expand Down Expand Up @@ -55,7 +52,7 @@ export interface ImageProps {
*
* @default "cover"
*/
fit?: CSSProperties["objectFit"];
fit?: React.CSSProperties["objectFit"];
/**
* The aspect ratio of the image. Can be "square", "video", or a custom string.
*/
Expand All @@ -79,7 +76,7 @@ export interface ImageProps {
/**
* The inline style for the image container (not the image itself).
*/
style?: CSSProperties;
style?: React.CSSProperties;
}

const Image = forwardRef<HTMLDivElement, ImageProps>(
Expand Down

0 comments on commit 720e02d

Please sign in to comment.