@zealicsolutions/web-ui 0.4.95 → 0.4.97

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,16 +1,8 @@
1
- import { Molecule, MoleculeTypes } from 'containers';
1
+ import { Molecule } from 'containers';
2
2
  import { TabGroupProps } from 'molecules';
3
- import { ThemeColors } from 'theme';
4
3
  export declare type InternalLinkAliases = 'account-information' | 'forgot-password' | 'change-password' | 'login' | 'account-creation' | 'landing';
5
4
  export declare type RuntimeRoutes = '/account-info' | '/forgot-password' | '/change-password' | '/login' | '/account-creation' | '/landing';
6
5
  export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, organismLibraryMoleculeId, }: Molecule & {
7
6
  tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
8
7
  isMobile?: boolean | undefined;
9
8
  }) => JSX.Element | null;
10
- export declare const ConfigurationWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
11
- $color?: ThemeColors | undefined;
12
- $itemId?: string | undefined;
13
- $itemType?: "container" | "molecule" | undefined;
14
- $entityType?: MoleculeTypes | undefined;
15
- $selected?: boolean | undefined;
16
- }, never>;
@@ -1,6 +1,6 @@
1
1
  export * from './Container';
2
2
  export * from './types/types';
3
3
  export * from './types/moleculeTypes';
4
- export * from './styles';
4
+ export { ContainerWrapper, ConfigurationItemInfo } from './styles';
5
5
  export * from './OrganismItem';
6
6
  export { FormOrganismItem } from './FormOrganismItem';
@@ -871,6 +871,7 @@ export declare const accountCreationMock: {
871
871
  id: string;
872
872
  };
873
873
  export declare const stateObjectButton: ContainerComponentProps;
874
+ export declare const simpleHeader: ContainerComponentProps;
874
875
  export declare const stateObjectLink: ContainerComponentProps;
875
876
  export declare const popUP: {
876
877
  id: string;
@@ -1,6 +1,6 @@
1
1
  import { TextProps } from 'atoms';
2
2
  import { FontSizesTypes, ThemeColors } from 'theme';
3
- import { StylesType } from 'typescript';
3
+ import type { StylesType } from 'typescript';
4
4
  import { ConfigurationItemInfo } from 'containers';
5
5
  export declare type TextMoleculeProps = Partial<{
6
6
  text: string;
@@ -1,6 +1,6 @@
1
1
  import { FeedContentTemplateTypes } from 'organisms/FeedContent/types';
2
2
  import { CSSProperties } from 'styled-components';
3
- import { StylesType } from 'typescript';
3
+ import type { StylesType } from 'typescript';
4
4
  import { ConfigurationItemInfo } from 'containers';
5
5
  export declare type VideoProps = {
6
6
  src: string;