Skip to content

Commit

Permalink
Native Mobile Resources: Updating changelogs (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
UrazAkgultan authored Oct 11, 2023
2 parents ff40e4a + 880558c commit 28eac0b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
8 changes: 8 additions & 0 deletions packages/jsActions/mobile-resources-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [5.1.0] Native Mobile Resources - 2023-10-11


## [1.1.0] Image
### Added

- Added accessibility.

## [5.0.2] Native Mobile Resources - 2023-8-22
### Fixed

Expand Down
4 changes: 2 additions & 2 deletions packages/jsActions/mobile-resources-native/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mobile-resources-native",
"moduleName": "Native Mobile Resources",
"version": "5.0.2",
"version": "5.1.0",
"license": "Apache-2.0",
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
"repository": {
Expand Down Expand Up @@ -52,4 +52,4 @@
"rimraf": "^2.7.1",
"rollup": "^2.68.0"
}
}
}
2 changes: 2 additions & 0 deletions packages/pluggableWidgets/image-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [1.1.0] - 2023-10-11

### Added

- Added accessibility.
Expand Down
10 changes: 3 additions & 7 deletions packages/pluggableWidgets/image-native/typings/ImageProps.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,10 @@ export interface ImagePreviewProps {
styleObject?: CSSProperties;
readOnly: boolean;
datasource: DatasourceEnum;
imageObject: { type: "static"; imageUrl: string } | { type: "dynamic"; entity: string } | null;
defaultImageDynamic: { type: "static"; imageUrl: string } | { type: "dynamic"; entity: string } | null;
imageObject: { type: "static"; imageUrl: string; } | { type: "dynamic"; entity: string; } | null;
defaultImageDynamic: { type: "static"; imageUrl: string; } | { type: "dynamic"; entity: string; } | null;
imageUrl: string;
imageIcon:
| { type: "glyph"; iconClass: string }
| { type: "image"; imageUrl: string; iconUrl: string }
| { type: "icon"; iconClass: string }
| undefined;
imageIcon: { type: "glyph"; iconClass: string; } | { type: "image"; imageUrl: string; iconUrl: string; } | { type: "icon"; iconClass: string; } | undefined;
isBackgroundImage: boolean;
children: { widgetCount: number; renderer: ComponentType<{ children: ReactNode; caption?: string }> };
resizeMode: ResizeModeEnum;
Expand Down

0 comments on commit 28eac0b

Please sign in to comment.