@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;
|
package/dist/index.d.ts
CHANGED
|
@@ -381,6 +381,16 @@ interface VideoMolecule extends BaseMolecule {
|
|
|
381
381
|
}
|
|
382
382
|
interface TabGroupMolecule extends BaseMolecule {
|
|
383
383
|
type: 'header_tab_group';
|
|
384
|
+
attributes: Partial<{
|
|
385
|
+
tabs: {
|
|
386
|
+
tabKey: string;
|
|
387
|
+
text: string;
|
|
388
|
+
disabled: boolean;
|
|
389
|
+
divider: boolean;
|
|
390
|
+
}[];
|
|
391
|
+
activeTabKey: string;
|
|
392
|
+
attributeType: 'tab_group';
|
|
393
|
+
}>;
|
|
384
394
|
config: {
|
|
385
395
|
props: TabGroupProps$1;
|
|
386
396
|
wide: AdditionalTabContainerProps$1;
|