@conboai/storybook.components 0.2.41 → 0.2.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/storybook.components",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
4
4
  "main": "dist/storybook.components.mjs",
5
5
  "types": "dist/build/index.d.ts",
6
6
  "files": [
@@ -1,13 +0,0 @@
1
- import { default as React, FC } from 'react';
2
-
3
- interface IActionPopupProps {
4
- open: boolean;
5
- onClose: () => void;
6
- onDone: () => void;
7
- title?: string;
8
- children?: React.ReactNode;
9
- closeText?: string;
10
- doneText?: string;
11
- }
12
- declare const ActionPopup: FC<IActionPopupProps>;
13
- export default ActionPopup;
@@ -1 +0,0 @@
1
- export { default as ActionPopup } from './ActionPopup';
@@ -1,5 +0,0 @@
1
- import { SxProps } from '@mui/material';
2
-
3
- export declare const popupSx: SxProps;
4
- export declare const titleSx: SxProps;
5
- export declare const dialogActionSx: SxProps;