@zealicsolutions/web-ui 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,4 +5,5 @@ export declare type CircleBoxProps = {
5
5
  type: CircleType;
6
6
  };
7
7
  export declare const Circle: ({ index, type }: CircleBoxProps) => JSX.Element;
8
+ export declare const CirclesWrapper: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
8
9
  export {};
@@ -8,6 +8,7 @@ export declare type TextFormat = Partial<{
8
8
  variable: VariablePayload;
9
9
  tag: {
10
10
  id: string;
11
+ label: string;
11
12
  };
12
13
  'numbered-list': boolean;
13
14
  'bulleted-list': boolean;
@@ -6,6 +6,9 @@ import type { Nullable, StrictUnion } from 'typescript';
6
6
  export declare type ImageAttributes = {
7
7
  attributeType: 'image';
8
8
  imageSource: string;
9
+ tags: {
10
+ id: string;
11
+ }[];
9
12
  };
10
13
  export interface TextAttributes {
11
14
  attributeType: 'text';
@@ -2,6 +2,9 @@ export declare type AnnotationsList = {
2
2
  tags: {
3
3
  id: string;
4
4
  label: string;
5
+ entityIds: string[];
6
+ moleculeIds: string[];
7
+ referencedByIds: string[];
5
8
  }[];
6
9
  links: {
7
10
  referencedById: string;