@zealicsolutions/web-ui 0.4.94 → 0.4.96

Sign up to get free protection for your applications and to get access to all the features.
@@ -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;
@@ -8,6 +8,11 @@ export declare type ConfigurationItemInfo = {
8
8
  isConfigurationMode?: boolean;
9
9
  onClick?: (e: MouseEvent) => void;
10
10
  };
11
+ export declare const getConfigurationWrapperStyle: ({ $selected, isConfigurationMode, theme: { colors }, }: {
12
+ $selected?: boolean | undefined;
13
+ isConfigurationMode?: boolean | undefined;
14
+ theme: DefaultTheme;
15
+ }) => import("styled-components").FlattenSimpleInterpolation;
11
16
  export declare const ContainerWrapper: import("styled-components").StyledComponent<"div", DefaultTheme, Pick<ContainerProps, "type"> & {
12
17
  containerProps?: Partial<{
13
18
  position: import("containers/types/types").ContainerPositionType;
@@ -31,8 +36,3 @@ export declare const ContainerWrapper: import("styled-components").StyledCompone
31
36
  }> | undefined;
32
37
  metadata?: AnyObject | undefined;
33
38
  }, never>;
34
- export declare const getConfigurationWrapperStyle: ({ $selected, isConfigurationMode, theme: { colors }, }: {
35
- $selected?: boolean | undefined;
36
- isConfigurationMode?: boolean | undefined;
37
- theme: DefaultTheme;
38
- }) => import("styled-components").FlattenSimpleInterpolation;
@@ -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;