@muraldevkit/ui-toolkit 4.49.0 → 4.49.2-dev-4Pmc.1

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,3 +3,4 @@ export * from './MrlMenuItem';
3
3
  export * from './MrlMenuItemLink';
4
4
  export * from './MrlMenuGroup';
5
5
  export * from './constants';
6
+ export * from './utilities';
@@ -0,0 +1,2 @@
1
+ export * from './flip-position';
2
+ export * from './get-scrollable-parent';
@@ -80,7 +80,7 @@ export declare const colorPictoStoryData: {
80
80
  export declare const animateStoryData: {
81
81
  args: {
82
82
  delay: number;
83
- state: "play" | "stop";
83
+ state: "stop" | "play";
84
84
  };
85
85
  argTypes: {
86
86
  delay: {
@@ -1,5 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { MrlIconButtonProps, MrlMenuProps } from '../../../';
3
+ import { RovingPropTypes } from '../../rovingTabindex/MrlRovingTabindex/MrlRovingTabindex';
3
4
  /**
4
5
  * Props for the MrlToolbar component.
5
6
  */
@@ -23,6 +24,11 @@ export interface MrlToolbarProps extends React.ComponentPropsWithRef<'div'> {
23
24
  * A boolean prop that sets RovingTabindex in the MrlToolbar
24
25
  */
25
26
  shouldUseRti?: boolean;
27
+ /**
28
+ * Props to pass to MrlRovingTabindex when shouldUseRti is true.
29
+ * Only used when shouldUseRti is enabled.
30
+ */
31
+ rovingTabindexProps?: Omit<RovingPropTypes, 'children'>;
26
32
  /**
27
33
  * Sets the size of the toolbar - defaults to 'small'
28
34
  */