Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.2.0 #81

Merged
merged 3 commits into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.2.0 (2022-03-03)


### Bug Fixes

* attach ResourceExplorer react component onSelectionChange prop ([#81](https://github.com/awslabs/iot-app-kit/issues/81))


### Features

* export table react component ([#81](https://github.com/awslabs/iot-app-kit/issues/81))





# 1.1.0 (2022-03-01)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0",
"version": "1.2.0",
"packages": [
"packages/*"
],
Expand Down
16 changes: 16 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.2.0 (2022-03-03)


### Bug Fixes

* attach ResourceExplorer react component onSelectionChange prop ([#81](https://github.com/awslabs/iot-app-kit/issues/81))


### Features

* export table react component ([#81](https://github.com/awslabs/iot-app-kit/issues/81))





# 1.1.0 (2022-03-01)


Expand Down
8 changes: 4 additions & 4 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.2.0",
"description": "IoT App Kit Components",
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
Expand Down Expand Up @@ -41,9 +41,9 @@
"@awsui/collection-hooks": "^1.0.0",
"@awsui/components-react": "^3.0.0",
"@awsui/design-tokens": "^3.0.0",
"@iot-app-kit/core": "^1.1.0",
"@iot-app-kit/related-table": "^1.1.0",
"@iot-app-kit/source-iotsitewise": "^1.1.0",
"@iot-app-kit/core": "^1.2.0",
"@iot-app-kit/related-table": "^1.2.0",
"@iot-app-kit/source-iotsitewise": "^1.2.0",
"@stencil/core": "^2.7.0",
"@synchro-charts/core": "^2.0.0",
"styled-components": "^5.3.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.2.0 (2022-03-03)


### Bug Fixes

* attach ResourceExplorer react component onSelectionChange prop ([#81](https://github.com/awslabs/iot-app-kit/issues/81))


### Features

* export table react component ([#81](https://github.com/awslabs/iot-app-kit/issues/81))





# 1.1.0 (2022-03-01)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.2.0",
"description": "IoT Application Kit core",
"main": "./dist/index.cj.js",
"module": "./dist/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/react-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.2.0 (2022-03-03)


### Bug Fixes

* attach ResourceExplorer react component onSelectionChange prop ([#81](https://github.com/awslabs/iot-app-kit/issues/81))


### Features

* export table react component ([#81](https://github.com/awslabs/iot-app-kit/issues/81))





# 1.1.0 (2022-03-01)


Expand Down
4 changes: 2 additions & 2 deletions packages/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"access": "public"
},
"sideEffects": false,
"version": "1.1.0",
"version": "1.2.0",
"description": "React specific wrapper for IoT Application Kit",
"author": {
"name": "Amazon Web Services",
Expand Down Expand Up @@ -41,7 +41,7 @@
"typescript": "^3.3.4000"
},
"dependencies": {
"@iot-app-kit/components": "^1.1.0"
"@iot-app-kit/components": "^1.2.0"
},
"peerDependencies": {
"react": "^17.0.2",
Expand Down
1 change: 1 addition & 0 deletions packages/react-components/src/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ export const ResourceExplorer = /*@__PURE__*/createReactComponent<JSX.IotResourc
export const ScatterChart = /*@__PURE__*/createReactComponent<JSX.IotScatterChart, HTMLIotScatterChartElement>('iot-scatter-chart');
export const StatusGrid = /*@__PURE__*/createReactComponent<JSX.IotStatusGrid, HTMLIotStatusGridElement>('iot-status-grid');
export const StatusTimeline = /*@__PURE__*/createReactComponent<JSX.IotStatusTimeline, HTMLIotStatusTimelineElement>('iot-status-timeline');
export const Table = /*@__PURE__*/createReactComponent<JSX.IotTable, HTMLIotTableElement>('iot-table');
export const WebglContext = /*@__PURE__*/createReactComponent<JSX.IotWebglContext, HTMLIotWebglContextElement>('iot-webgl-context');
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const attachProps = (node: HTMLElement, newProps: any, oldProps: any = {}
const eventName = name.substring(2);
const eventNameLc = eventName[0].toLowerCase() + eventName.substring(1);

(node as any)[name] = newProps[name];
if (!isCoveredByReact(eventNameLc)) {
syncEvent(node, eventNameLc, newProps[name]);
}
Expand Down
16 changes: 16 additions & 0 deletions packages/related-table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.2.0 (2022-03-03)


### Bug Fixes

* attach ResourceExplorer react component onSelectionChange prop ([#81](https://github.com/awslabs/iot-app-kit/issues/81))


### Features

* export table react component ([#81](https://github.com/awslabs/iot-app-kit/issues/81))





# 1.1.0 (2022-03-01)


Expand Down
2 changes: 1 addition & 1 deletion packages/related-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.2.0",
"description": "IoT Application Kit - Related Table component",
"license": "Apache-2.0",
"main": "dist/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/source-iotsitewise/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.2.0 (2022-03-03)


### Bug Fixes

* attach ResourceExplorer react component onSelectionChange prop ([#81](https://github.com/awslabs/iot-app-kit/issues/81))


### Features

* export table react component ([#81](https://github.com/awslabs/iot-app-kit/issues/81))





# 1.1.0 (2022-03-01)


Expand Down
4 changes: 2 additions & 2 deletions packages/source-iotsitewise/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"version": "1.2.0",
"description": "AWS IoT SiteWise source for IoT Application Kit",
"homepage": "https://github.com/awslabs/iot-app-kit#readme",
"license": "Apache-2.0",
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@aws-sdk/client-iotsitewise": "^3.39.0",
"@iot-app-kit/core": "^1.1.0",
"@iot-app-kit/core": "^1.2.0",
"@rollup/plugin-typescript": "^8.3.0",
"@synchro-charts/core": "^1.1.1",
"flush-promises": "^1.0.2",
Expand Down