@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.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { StoryFn } from '@storybook/react';
2
+ import type { StoryFn } from '@storybook/react';
3
3
  import { ContainerComponentProps } from 'containers';
4
4
  declare const _default: {
5
5
  title: string;
@@ -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' | 'header-tab-group';
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: 'header-tab-group';
99
+ type: 'header_tab_group';
100
100
  config: {
101
101
  props: TabGroupProps;
102
102
  wide: {