Skip to content

Commit 3b3d0be

Browse files
committed
Merge branch 'beta' into feat/25-config
2 parents 4f84238 + fcd1077 commit 3b3d0be

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.0.0-beta.18](https://github.com/cloudinary-community/svelte-cloudinary/compare/v1.0.0-beta.17...v1.0.0-beta.18) (2023-06-23)
2+
3+
4+
### Bug Fixes
5+
6+
* preserveTransformations Type Def ([#31](https://github.com/cloudinary-community/svelte-cloudinary/issues/31)) ([91a3736](https://github.com/cloudinary-community/svelte-cloudinary/commit/91a3736caa9f3d309f4a654240eab86e0cc6a510)), closes [#28](https://github.com/cloudinary-community/svelte-cloudinary/issues/28)
7+
18
# [1.0.0-beta.17](https://github.com/cloudinary-community/svelte-cloudinary/compare/v1.0.0-beta.16...v1.0.0-beta.17) (2023-06-23)
29

310

svelte-cloudinary/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-cloudinary",
33
"author": "Matias Hernandez <hola@matiashernandez.dev>",
4-
"version": "1.0.0-beta.17",
4+
"version": "1.0.0-beta.18",
55
"license": "MIT",
66
"scripts": {
77
"dev": "node scripts/gen-metadata.js && vite dev",

svelte-cloudinary/src/lib/components/CldImageTypes.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ type ImageProps = UnpicImageProps<HTMLImgAttributes, string | null>;
77
import type { ImageOptions, ConfigOptions } from '@cloudinary-util/url-loader';
88
export type CldImageProps = ImageOptions &
99
ImageProps & {
10-
layout?: ImageProps['layout'];
1110
config?: ConfigOptions;
11+
layout?: ImageProps['layout'];
12+
preserveTransformations?: boolean;
13+
tint?: string;
1214
};

0 commit comments

Comments
 (0)