@apexcura/ui-components 0.0.16-Beta267 → 0.0.16-Beta269
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.
- package/dist/Types/types.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
package/dist/Types/types.d.ts
CHANGED
|
@@ -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,6 @@ export type ElementType = {
|
|
|
163
164
|
allowClear?: boolean;
|
|
164
165
|
isBack?: boolean;
|
|
165
166
|
isNewMenuItem?: boolean;
|
|
166
|
-
isCount?: boolean;
|
|
167
167
|
showCount?: boolean;
|
|
168
168
|
avatarClassName?: string;
|
|
169
169
|
};
|