fhir-react 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  <!-- Add a link to the related issue here, e.g. #1234 -->
2
- Issue:
2
+ Issue:
3
3
 
4
4
  ---
5
5
 
@@ -7,11 +7,8 @@ Issue:
7
7
  ##### PR Checklist
8
8
  - [ ] Give this PR a meaningful title
9
9
  - [ ] Add a link to the related issue at the top of this description (above)
10
- - [ ] Connect this PR with the related issue via ZenHub with the button below this text box (or at the bottom of the page after the PR is created)
11
10
  - [ ] Ensure your branch is up to date with the target branch and resolve any conflicts
12
11
  - [ ] Answer the below questions to describe your PR for reviewers
13
- - [ ] Request at least two reviewers using the "Reviewers" section on the right, usually including at least one reviewer from your team
14
- - [ ] Notify the requested reviewers in the #code-review Slack channel once the PR is ready for review
15
12
 
16
13
  ---
17
14
 
package/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Changelog
2
2
 
3
3
  Changelog format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
+ ## 1.0.1
5
+
6
+ ### Changed
7
+ - The package/lock files to match the license of MIT in the license file
8
+ - Removed references to storybook S3 bucket that no longer exists
4
9
 
5
10
  ## 1.0.0
6
11
 
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 1upHealth
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,3 @@
1
- [![CircleCI](https://circleci.com/gh/1uphealth/fhir-react/tree/master.svg?style=svg)](https://circleci.com/gh/1uphealth/fhir-react/tree/master)
2
- [![Storybook](https://github.com/storybookjs/brand/raw/master/badge/badge-storybook.svg?sanitize=true)](https://fhir-react-lib-test-storybook.s3.amazonaws.com/branch/release-0-3-13/index.html)
3
-
4
1
  # fhir-react
5
2
 
6
3
  A React component library for displaying [FHIR](https://1up.health/dev/doc/introduction-to-fhir) data.
@@ -237,7 +234,6 @@ const MyComponent = () => {
237
234
 
238
235
  The 0.3 version of the FHIR React Component library introduces the bootstrap Accordion component as the base of each available resource which provides any data. The RWD support is provided for each component.
239
236
 
240
- All of the changes can be tracked by viewing the current version of the [storybook](https://fhir-react-lib-test-storybook.s3.amazonaws.com/branch/fhir-react-next/index.html?path=/story/condition--default-visualization-dstu-2).
241
237
 
242
238
  ### Available resources `v0.3`
243
239
 
@@ -283,8 +279,6 @@ npm run storybook
283
279
 
284
280
  Now you can check how a component graphically presents information based on raw data at http://localhost:63653 .
285
281
 
286
- There's also an online version available at http://storybook-fhir-react-lib.s3-website-us-east-1.amazonaws.com .
287
-
288
282
  ## Development
289
283
 
290
284
  1. run `npm link` in this folder to create the npm package locally
@@ -315,7 +309,3 @@ npm run build
315
309
 
316
310
  To publish, [create a new release in GitHub](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository).
317
311
 
318
- ### Storybook for the changes
319
-
320
- When creating a new PR, changes will be available in the storybook at: <br>
321
- http://storybook-fhir-react-lib.s3-website-us-east-1.amazonaws.com/dev/{branch-name}/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fhir-react",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "React component library for displaying FHIR Resources ",
5
5
  "main": "build/index.js",
6
6
  "peerDependencies": {
@@ -58,7 +58,7 @@
58
58
  "material",
59
59
  "ui"
60
60
  ],
61
- "license": "CC-BY-NC-SA-4.0",
61
+ "license": "MIT",
62
62
  "devDependencies": {
63
63
  "@babel/cli": "^7.17.6",
64
64
  "@babel/core": "^7.17.5",