Skip to content

Commit

Permalink
yarn build
Browse files Browse the repository at this point in the history
  • Loading branch information
gaudyb committed Sep 9, 2023
1 parent bc6b06f commit f65f037
Show file tree
Hide file tree
Showing 220 changed files with 5,609 additions and 0 deletions.
20 changes: 20 additions & 0 deletions packages/charts-react/docs/markdown/charts-react.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md)

## charts-react package

## Interfaces

| Interface | Description |
| --- | --- |
| [SparkbarProps](./charts-react.sparkbarprops.md) | |
| [SparklineProps](./charts-react.sparklineprops.md) | |

## Variables

| Variable | Description |
| --- | --- |
| [Sparkbar](./charts-react.sparkbar.md) | Renders a basic Sparkbar. This is a Sparkline-style bar chart. |
| [Sparkline](./charts-react.sparkline.md) | Renders a basic Sparkline |

13 changes: 13 additions & 0 deletions packages/charts-react/docs/markdown/charts-react.sparkbar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [Sparkbar](./charts-react.sparkbar.md)

## Sparkbar variable

Renders a basic Sparkbar. This is a Sparkline-style bar chart.

<b>Signature:</b>

```typescript
Sparkbar: React.FC<SparkbarProps>
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [categorical](./charts-react.sparkbarprops.categorical.md)

## SparkbarProps.categorical property

<b>Signature:</b>

```typescript
categorical?: boolean;
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [color](./charts-react.sparkbarprops.color.md)

## SparkbarProps.color property

<b>Signature:</b>

```typescript
color?: string | string[];
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [data](./charts-react.sparkbarprops.data.md)

## SparkbarProps.data property

<b>Signature:</b>

```typescript
data: number[];
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [height](./charts-react.sparkbarprops.height.md)

## SparkbarProps.height property

<b>Signature:</b>

```typescript
height: number;
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [legend](./charts-react.sparkbarprops.legend.md)

## SparkbarProps.legend property

<b>Signature:</b>

```typescript
legend?: string[];
```
24 changes: 24 additions & 0 deletions packages/charts-react/docs/markdown/charts-react.sparkbarprops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md)

## SparkbarProps interface

<b>Signature:</b>

```typescript
export interface SparkbarProps
```

## Properties

| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [categorical?](./charts-react.sparkbarprops.categorical.md) | | boolean | <i>(Optional)</i> |
| [color?](./charts-react.sparkbarprops.color.md) | | string \| string\[\] | <i>(Optional)</i> |
| [data](./charts-react.sparkbarprops.data.md) | | number\[\] | |
| [height](./charts-react.sparkbarprops.height.md) | | number | |
| [legend?](./charts-react.sparkbarprops.legend.md) | | string\[\] | <i>(Optional)</i> |
| [onBarHover?](./charts-react.sparkbarprops.onbarhover.md) | | (event: MouseEvent) =&gt; void | <i>(Optional)</i> |
| [width](./charts-react.sparkbarprops.width.md) | | number | |

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [onBarHover](./charts-react.sparkbarprops.onbarhover.md)

## SparkbarProps.onBarHover property

<b>Signature:</b>

```typescript
onBarHover?: (event: MouseEvent) => void;
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparkbarProps](./charts-react.sparkbarprops.md) &gt; [width](./charts-react.sparkbarprops.width.md)

## SparkbarProps.width property

<b>Signature:</b>

```typescript
width: number;
```
13 changes: 13 additions & 0 deletions packages/charts-react/docs/markdown/charts-react.sparkline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [Sparkline](./charts-react.sparkline.md)

## Sparkline variable

Renders a basic Sparkline

<b>Signature:</b>

```typescript
Sparkline: React.FC<SparklineProps>
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparklineProps](./charts-react.sparklineprops.md) &gt; [color](./charts-react.sparklineprops.color.md)

## SparklineProps.color property

<b>Signature:</b>

```typescript
color?: string;
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparklineProps](./charts-react.sparklineprops.md) &gt; [data](./charts-react.sparklineprops.data.md)

## SparklineProps.data property

<b>Signature:</b>

```typescript
data: number[];
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparklineProps](./charts-react.sparklineprops.md) &gt; [height](./charts-react.sparklineprops.height.md)

## SparklineProps.height property

<b>Signature:</b>

```typescript
height: number;
```
21 changes: 21 additions & 0 deletions packages/charts-react/docs/markdown/charts-react.sparklineprops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparklineProps](./charts-react.sparklineprops.md)

## SparklineProps interface

<b>Signature:</b>

```typescript
export interface SparklineProps
```

## Properties

| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [color?](./charts-react.sparklineprops.color.md) | | string | <i>(Optional)</i> |
| [data](./charts-react.sparklineprops.data.md) | | number\[\] | |
| [height](./charts-react.sparklineprops.height.md) | | number | |
| [width](./charts-react.sparklineprops.width.md) | | number | |

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@essex/charts-react](./charts-react.md) &gt; [SparklineProps](./charts-react.sparklineprops.md) &gt; [width](./charts-react.sparklineprops.width.md)

## SparklineProps.width property

<b>Signature:</b>

```typescript
width: number;
```
12 changes: 12 additions & 0 deletions packages/charts-react/docs/markdown/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md)

## API Reference

## Packages

| Package | Description |
| --- | --- |
| [@essex/charts-react](./charts-react.md) | |

Loading

0 comments on commit f65f037

Please sign in to comment.