nectiasw 0.0.265 → 0.0.267

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.
@@ -0,0 +1,19 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Chart } from '.';
3
+ declare const meta: Meta<typeof Chart>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const Closed: Story;
8
+ export declare const Disabled: Story;
9
+ export declare const WithInnerText: Story;
10
+ export declare const WithFlex: Story;
11
+ export declare const CustomSize: Story;
12
+ export declare const MultipleStages: Story;
13
+ export declare const SingleStage: Story;
14
+ export declare const CustomTextStyle: Story;
15
+ export declare const WithoutAspect: Story;
16
+ export declare const CustomTooltipContent: Story;
17
+ export declare const RegisteredWithMultipleLevels: Story;
18
+ export declare const ExecutionWithMultipleLevels: Story;
19
+ export declare const DeliverOCWithMultipleLevels: Story;
@@ -25,4 +25,5 @@ export type ChartProps = {
25
25
  textStyle?: string;
26
26
  fontStyle?: string;
27
27
  innerText?: string;
28
+ content?: string;
28
29
  };