@careevolution/mydatahelps-ui 2.2.1-VB3.1 → 2.2.1-VB3.10
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.
- package/README.md +4 -3
- package/dist/cjs/index.js +8 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/container/DailyDataChart/DailyDataChart.d.ts +28 -0
- package/dist/cjs/types/components/container/DailyDataChart/DailyDataChart.stories.d.ts +67 -0
- package/dist/cjs/types/components/container/DailyDataChart/index.d.ts +1 -0
- package/dist/cjs/types/components/container/index.d.ts +1 -0
- package/dist/cjs/types/components/presentational/DateRangeCoordinator/DateRangeCoordinator.d.ts +3 -1
- package/dist/cjs/types/components/presentational/DateRangeCoordinator/DateRangeCoordinator.stories.d.ts +19 -1
- package/dist/cjs/types/components/presentational/Layout/Layout.d.ts +2 -2
- package/dist/cjs/types/helpers/daily-data-providers/fitbit-activity-minutes.d.ts +3 -0
- package/dist/cjs/types/helpers/daily-data-providers/index.d.ts +1 -0
- package/dist/cjs/types/helpers/get-interval-start.d.ts +3 -0
- package/dist/cjs/types/helpers/language.d.ts +2 -4
- package/dist/cjs/types/helpers/query-daily-data.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +3 -0
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/container/DailyDataChart/DailyDataChart.d.ts +28 -0
- package/dist/esm/types/components/container/DailyDataChart/DailyDataChart.stories.d.ts +67 -0
- package/dist/esm/types/components/container/DailyDataChart/index.d.ts +1 -0
- package/dist/esm/types/components/container/index.d.ts +1 -0
- package/dist/esm/types/components/presentational/DateRangeCoordinator/DateRangeCoordinator.d.ts +3 -1
- package/dist/esm/types/components/presentational/DateRangeCoordinator/DateRangeCoordinator.stories.d.ts +19 -1
- package/dist/esm/types/components/presentational/Layout/Layout.d.ts +2 -2
- package/dist/esm/types/helpers/daily-data-providers/fitbit-activity-minutes.d.ts +3 -0
- package/dist/esm/types/helpers/daily-data-providers/index.d.ts +1 -0
- package/dist/esm/types/helpers/get-interval-start.d.ts +3 -0
- package/dist/esm/types/helpers/language.d.ts +2 -4
- package/dist/esm/types/helpers/query-daily-data.d.ts +1 -0
- package/dist/esm/types/index.d.ts +3 -0
- package/dist/index.d.ts +101 -66
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,9 +49,10 @@ To run Storybook previews with data from one of your test MyDataHelps participan
|
|
|
49
49
|
-----
|
|
50
50
|
PARTICIPANT_ACCESS_TOKEN=05e211e4df46ca7537e064bde44148a7
|
|
51
51
|
```
|
|
52
|
-
4. Run `npm
|
|
52
|
+
4. Run `npm ci` to install dependencies.
|
|
53
|
+
5. Run `npm run storybook` to view the storybook.
|
|
53
54
|
|
|
54
|
-
If you have issues getting storybook to run,
|
|
55
|
+
If you have issues getting storybook to run, particularly around the NODE_OPTIONS being used, try upgrading Node to the latest version.
|
|
55
56
|
|
|
56
57
|
## Components
|
|
57
58
|
|
|
@@ -63,7 +64,7 @@ Presentational components do NOT fetch data to populate themselves. They are th
|
|
|
63
64
|
|
|
64
65
|
### Container Components
|
|
65
66
|
|
|
66
|
-
Container components fetch data via the MyDataHelps.js SDK. These components will only function if used in a view inside MyDataHelps or via manually
|
|
67
|
+
Container components fetch data via the MyDataHelps.js SDK. These components will only function if used in a view inside MyDataHelps or via manually passing an access token to the SDK.
|
|
67
68
|
|
|
68
69
|
### Views
|
|
69
70
|
|