@muraldevkit/ui-toolkit 2.68.0-dev.2 → 2.68.0-dev.4
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.
|
@@ -3,7 +3,7 @@ import { MrlIconButtonProps, MrlMenuProps } from '../../../';
|
|
|
3
3
|
/**
|
|
4
4
|
* Props for the MrlToolbar component.
|
|
5
5
|
*/
|
|
6
|
-
interface MrlToolbarProps extends ComponentPropsWithRef<'div'> {
|
|
6
|
+
export interface MrlToolbarProps extends ComponentPropsWithRef<'div'> {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
kind?: 'default' | 'inverse' | 'ghost' | 'skeleton';
|
|
9
9
|
/**
|
|
@@ -33,4 +33,3 @@ interface MrlToolbarProps extends ComponentPropsWithRef<'div'> {
|
|
|
33
33
|
* @returns The MrlToolbar component.
|
|
34
34
|
*/
|
|
35
35
|
export declare const MrlToolbar: (props: MrlToolbarProps) => JSX.Element;
|
|
36
|
-
export {};
|
|
@@ -3,7 +3,7 @@ import { MrlIconButtonProps, MrlMenuItemProps } from '../../../';
|
|
|
3
3
|
/**
|
|
4
4
|
* Props for the MrlToolbarButton component.
|
|
5
5
|
*/
|
|
6
|
-
interface MrlToolbarButtonProps {
|
|
6
|
+
export interface MrlToolbarButtonProps {
|
|
7
7
|
/**
|
|
8
8
|
* The icon that will be rendered.
|
|
9
9
|
*/
|
|
@@ -38,4 +38,3 @@ interface MrlToolbarButtonProps {
|
|
|
38
38
|
* @returns The MrlToolbarButton component.
|
|
39
39
|
*/
|
|
40
40
|
export declare const MrlToolbarButton: (props: MrlToolbarButtonProps) => JSX.Element;
|
|
41
|
-
export {};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Props for the MrlToolbarItem component.
|
|
4
4
|
*/
|
|
5
|
-
interface MrlToolbarItemProps {
|
|
5
|
+
export interface MrlToolbarItemProps {
|
|
6
6
|
/**
|
|
7
7
|
* A prop used to set a toolbar button to never move into the menu.
|
|
8
8
|
*/
|
|
@@ -28,4 +28,3 @@ interface MrlToolbarItemProps {
|
|
|
28
28
|
* @returns The MrlToolbarItem component.
|
|
29
29
|
*/
|
|
30
30
|
export declare const MrlToolbarItem: (props: MrlToolbarItemProps) => JSX.Element | null;
|
|
31
|
-
export {};
|