@zealicsolutions/web-ui 0.2.79 → 0.2.81
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/Container.stories.d.ts +1 -1
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/Container.stories.d.ts +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +3 -3
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import type { Nullable, StrictUnion } from 'typescript';
|
|
1
2
|
import { ButtonProps } from 'atoms';
|
|
2
3
|
import { SelectOption } from 'atoms/Select/types';
|
|
3
4
|
import { ImageProps, TabGroupProps } from 'molecules';
|
|
4
5
|
import { CSSProperties } from 'styled-components';
|
|
5
6
|
import { FontSizesTypes, ThemeColors } from 'theme';
|
|
6
|
-
import { Nullable, StrictUnion } from 'typescript';
|
|
7
7
|
export declare type ImageAttributes = {
|
|
8
8
|
attributeType: 'image';
|
|
9
9
|
imageSource: string;
|
|
@@ -34,7 +34,7 @@ export interface BooleanAttributes {
|
|
|
34
34
|
attributeType: 'boolean';
|
|
35
35
|
value: boolean;
|
|
36
36
|
}
|
|
37
|
-
export declare type MoleculeTypes = 'image' | 'text' | 'button' | 'video' | '
|
|
37
|
+
export declare type MoleculeTypes = 'image' | 'text' | 'button' | 'video' | 'header_tab_group';
|
|
38
38
|
export interface BaseMolecule {
|
|
39
39
|
id: string;
|
|
40
40
|
instance: 'molecule';
|
|
@@ -96,7 +96,7 @@ export interface VideoMolecule extends BaseMolecule {
|
|
|
96
96
|
};
|
|
97
97
|
}
|
|
98
98
|
export interface TabGroupMolecule extends BaseMolecule {
|
|
99
|
-
type: '
|
|
99
|
+
type: 'header_tab_group';
|
|
100
100
|
config: {
|
|
101
101
|
props: TabGroupProps;
|
|
102
102
|
wide: {
|