@zealicsolutions/web-ui 0.4.65 → 0.4.67

Sign up to get free protection for your applications and to get access to all the features.
@@ -186,6 +186,16 @@ export interface VideoMolecule extends BaseMolecule {
186
186
  }
187
187
  export interface TabGroupMolecule extends BaseMolecule {
188
188
  type: 'header_tab_group';
189
+ attributes: Partial<{
190
+ tabs: {
191
+ tabKey: string;
192
+ text: string;
193
+ disabled: boolean;
194
+ divider: boolean;
195
+ }[];
196
+ activeTabKey: string;
197
+ attributeType: 'tab_group';
198
+ }>;
189
199
  config: {
190
200
  props: TabGroupProps;
191
201
  wide: AdditionalTabContainerProps;