@aws/mynah-ui 4.30.0 → 4.30.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.
@@ -1,7 +1,7 @@
1
1
  import { ChatItemButton, DetailedList, DetailedListItem } from '../../static';
2
2
  import { DetailedListWrapper } from './detailed-list';
3
3
  export interface DetailedListSheetProps {
4
- tabId: string;
4
+ tabId?: string;
5
5
  detailedList: DetailedList;
6
6
  events?: {
7
7
  onFilterValueChange?: (filterValues: Record<string, any>, isValid: boolean) => void;
@@ -9,7 +9,7 @@ export interface TabBarButtonsWrapperProps {
9
9
  export declare class TabBarButtonsWrapper {
10
10
  render: ExtendedHTMLElement;
11
11
  private selectedTabId;
12
- private tabBarButtonsSubscriptionId;
12
+ private tabBarButtonsSubscription;
13
13
  private readonly props;
14
14
  constructor(props?: TabBarButtonsWrapperProps);
15
15
  private readonly handleTabBarButtonsChange;
@@ -5,7 +5,6 @@
5
5
  import { DomBuilderObject, ExtendedHTMLElement } from '../main';
6
6
  import '../styles/components/_sheet.scss';
7
7
  export interface SheetProps {
8
- tabId: string;
9
8
  title?: string;
10
9
  children?: Array<ExtendedHTMLElement | HTMLElement | string | DomBuilderObject>;
11
10
  fullScreen?: boolean;