@dust-tt/sparkle 0.2.94 → 0.2.97

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.
@@ -6,4 +6,3 @@ declare const meta: {
6
6
  };
7
7
  export default meta;
8
8
  export declare const BasicBanner: () => React.JSX.Element;
9
- export declare const IncidentBanner: () => React.JSX.Element;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { ElementModal } from "../index_with_tw_base";
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof ElementModal;
6
+ };
7
+ export default meta;
8
+ export declare const ElementModalExample: () => React.JSX.Element;
@@ -1,4 +1,3 @@
1
- import type { StoryObj } from "@storybook/react";
2
1
  import React from "react";
3
2
  import { Tab } from "../index_with_tw_base";
4
3
  declare const meta: {
@@ -6,6 +5,4 @@ declare const meta: {
6
5
  component: typeof Tab;
7
6
  };
8
7
  export default meta;
9
- type Story = StoryObj<typeof meta>;
10
- export declare const ButtonExamples: () => React.JSX.Element;
11
- export declare const TabNavigation: Story;
8
+ export declare const TabExample: () => React.JSX.Element;