@spteck/fluentui-react-charts 1.0.0 → 1.0.1

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,4 +1,4 @@
1
- import { ICardChartContainer } from './ICardChartContainer';
1
+ import { ICardChartContainer } from '../../models/ICardChartContainer';
2
2
  import { Theme } from '@fluentui/react-components';
3
3
  export interface IDashboardProps {
4
4
  cardCharts: ICardChartContainer[];
@@ -1,3 +1 @@
1
1
  export * from './DashBoard';
2
- export * from './ICardChartContainer';
3
- export * from './IDashboardProps';
@@ -1,5 +1,5 @@
1
- import { ChartDatum } from '../../models/ChartDatum';
2
- import { IChart } from '../../models';
1
+ import { ChartDatum } from './ChartDatum';
2
+ import { IChart } from '.';
3
3
  export interface ICardChartContainer {
4
4
  chart: IChart;
5
5
  cardTitle: string;
@@ -1,2 +1,3 @@
1
- export * from './IChart';
2
1
  export * from './ChartDatum';
2
+ export * from './ICardChartContainer';
3
+ export * from './IChart';
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0",
2
+ "version": "1.0.1",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -9,7 +9,7 @@ import React, {
9
9
  useState,
10
10
  } from 'react';
11
11
 
12
- import { ICardChartContainer } from './ICardChartContainer';
12
+ import { ICardChartContainer } from '../../models/ICardChartContainer';
13
13
  import { IDashboardProps } from './IDashboardProps';
14
14
  import { NoDashboards } from './NoDashboards';
15
15
  import { SelectZoom } from './selectZoom/SelectZoom';
@@ -1,7 +1,7 @@
1
1
  import { Text, Theme, webLightTheme } from '@fluentui/react-components';
2
2
 
3
3
  import DashBoard from './DashBoard';
4
- import { ICardChartContainer } from './ICardChartContainer';
4
+ import { ICardChartContainer } from '../../models/ICardChartContainer';
5
5
  import React from 'react';
6
6
  import { Stack } from '../stack/Stack';
7
7
 
@@ -1,6 +1,6 @@
1
1
  'use client';
2
2
 
3
- import { ICardChartContainer } from './ICardChartContainer';
3
+ import { ICardChartContainer } from '../../models/ICardChartContainer';
4
4
  import { Theme } from '@fluentui/react-components';
5
5
 
6
6
  export interface IDashboardProps {
@@ -1,4 +1,3 @@
1
1
  export * from './DashBoard';
2
- export * from './ICardChartContainer';
3
- export * from './IDashboardProps';
2
+
4
3
 
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
- import { ChartDatum } from '../../models/ChartDatum';
4
- import { IChart } from '../../models';
3
+ import { ChartDatum } from './ChartDatum';
4
+ import { IChart } from '.';
5
5
 
6
6
  export interface ICardChartContainer {
7
7
  chart: IChart;
@@ -1,2 +1,3 @@
1
- export * from './IChart';
2
1
  export * from './ChartDatum';
2
+ export * from './ICardChartContainer';
3
+ export * from './IChart';