@careevolution/mydatahelps-ui 1.10.0 → 1.10.2-FixImportOrder.0
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/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/presentational/Action/Action.d.ts +1 -1
- package/dist/cjs/types/components/presentational/Layout/index.d.ts +1 -0
- package/dist/cjs/types/components/presentational/index.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/presentational/Action/Action.d.ts +1 -1
- package/dist/esm/types/components/presentational/Layout/index.d.ts +1 -0
- package/dist/esm/types/components/presentational/index.d.ts +1 -1
- package/dist/index.d.ts +6 -1
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import "./Action.css";
|
|
3
2
|
import '@fortawesome/fontawesome-svg-core/styles.css';
|
|
4
3
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
4
|
+
import "./Action.css";
|
|
5
5
|
export interface ActionProps {
|
|
6
6
|
title?: string;
|
|
7
7
|
subtitle?: string;
|
|
@@ -8,7 +8,7 @@ export { default as DateRangeNavigator } from "./DateRangeNavigator";
|
|
|
8
8
|
export { default as DayTrackerSymbol } from "./DayTrackerSymbol";
|
|
9
9
|
export { default as Face } from "./Face";
|
|
10
10
|
export { default as Histogram } from "./Histogram";
|
|
11
|
-
export { default as Layout } from "./Layout";
|
|
11
|
+
export { default as Layout, LayoutContext } from "./Layout";
|
|
12
12
|
export { default as LoadingIndicator } from "./LoadingIndicator";
|
|
13
13
|
export { default as NavigationBar } from "./NavigationBar";
|
|
14
14
|
export { default as Section } from "./Section";
|