@apexcura/ui-components 0.0.16-Beta266 → 0.0.16-Beta268

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.
@@ -104,7 +104,6 @@ export type ElementType = {
104
104
  listItemClassName?: string;
105
105
  img?: string;
106
106
  items?: {
107
- _id?: string;
108
107
  id?: number;
109
108
  key?: number | string;
110
109
  element?: string;
@@ -116,6 +115,8 @@ export type ElementType = {
116
115
  name?: string;
117
116
  y?: number;
118
117
  color?: string;
118
+ isCount?: boolean;
119
+ count?: number;
119
120
  }[];
120
121
  primaryText?: string;
121
122
  secondaryText?: string;
@@ -163,7 +164,7 @@ export type ElementType = {
163
164
  allowClear?: boolean;
164
165
  isBack?: boolean;
165
166
  isNewMenuItem?: boolean;
166
- isCount?: boolean;
167
167
  showCount?: boolean;
168
+ avatarClassName?: string;
168
169
  };
169
170
  export {};