@zealicsolutions/web-ui 0.3.271 → 0.3.273

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
- import { ContainerComponentProps } from '../../containers';
1
+ import { ContainerComponentProps } from 'containers';
2
2
  import { ContainerDTO } from '../types';
3
3
  export declare const toOrganismItem: ({ children, ...restContainer }: ContainerDTO) => ContainerComponentProps;
@@ -1,2 +1,2 @@
1
- export { OrganismItem } from './OrganismItem/OrganismItem';
1
+ export { OrganismItem } from '../containers/OrganismItem';
2
2
  export { Organism } from './Organism/Organism';
@@ -1,7 +1,7 @@
1
1
  import { Dispatch, SetStateAction } from 'react';
2
- import { ContainerComponentProps, Molecule } from '../../containers';
3
- import { TabGroupProps } from '../../molecules';
4
- import type { AnyObject } from '../../typescript';
2
+ import { TabGroupProps } from 'molecules';
3
+ import { ContainerComponentProps, Molecule } from './index';
4
+ import type { AnyObject } from '../typescript';
5
5
  export declare type OrganismItemProps = {
6
6
  item: ContainerComponentProps | Molecule;
7
7
  tabsProps?: Pick<TabGroupProps, 'tabs' | 'activeTabKey' | 'onTabChange'>;