@zealicsolutions/web-ui 0.4.65 → 0.4.67
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +10 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -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;
|