@overmap-ai/blocks 0.0.1-alpha.27 → 0.0.1-alpha.28
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/dist/Buttons/IconButton.d.ts +1 -0
- package/dist/Dialogs/AlertDialog/AlertDialog.d.ts +1 -1
- package/dist/Dialogs/AlertDialog/context.d.ts +1 -1
- package/dist/Dialogs/Dialog/Dialog.d.ts +1 -1
- package/dist/Dialogs/Dialog/DialogContent.d.ts +1 -1
- package/dist/Theme/index.d.ts +2 -0
- package/dist/blocks.js +350 -310
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +2 -2
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/constants.d.ts +1 -6
- package/dist/index.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/utils.d.ts +5 -0
- package/package.json +7 -10
|
@@ -3,5 +3,6 @@ import { ButtonProps } from "./typings.ts";
|
|
|
3
3
|
interface IconButtonProps extends Omit<ButtonProps, "fluid"> {
|
|
4
4
|
"aria-label": string;
|
|
5
5
|
}
|
|
6
|
+
/** The `IconButton` is a `Button` variant specifically designed for single icons. */
|
|
6
7
|
declare const IconButton: FC<IconButtonProps>;
|
|
7
8
|
export default IconButton;
|
|
@@ -8,4 +8,4 @@ import { AlertDialogProps } from "./typings";
|
|
|
8
8
|
*
|
|
9
9
|
* To set the content of the dialog, use the `content` prop or pass values for the `title`, `description`, and `onAction` props.
|
|
10
10
|
*/
|
|
11
|
-
export declare const AlertDialog: import("react").
|
|
11
|
+
export declare const AlertDialog: import("react").NamedExoticComponent<AlertDialogProps>;
|
|
@@ -4,5 +4,5 @@ interface AlertDialogProviderProps {
|
|
|
4
4
|
children: React.ReactNode;
|
|
5
5
|
}
|
|
6
6
|
export declare const AlertDialogContent: import("react").Context<AlertDialogContextType>;
|
|
7
|
-
export declare const AlertDialogProvider: import("react").
|
|
7
|
+
export declare const AlertDialogProvider: import("react").NamedExoticComponent<AlertDialogProviderProps>;
|
|
8
8
|
export {};
|
|
@@ -4,4 +4,4 @@ import { DialogProps } from "./typings";
|
|
|
4
4
|
* Display or collect information in a modal. Unlike the `AlertDialog`, the `Dialog`'s can be nested
|
|
5
5
|
* and close when clicking outside of the dialog content.
|
|
6
6
|
*/
|
|
7
|
-
export declare const Dialog: import("react").
|
|
7
|
+
export declare const Dialog: import("react").NamedExoticComponent<DialogProps>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { DialogContentProps } from "./typings";
|
|
3
|
-
export declare const DialogContent: import("react").
|
|
3
|
+
export declare const DialogContent: import("react").NamedExoticComponent<DialogContentProps>;
|