antd-management-fast-component 2.6.3 → 2.6.4

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.
@@ -178,13 +178,44 @@ export function buildListViewItemExtra({ align, imageUrl, emptyImageUrl, width,
178
178
  emptyImageUrl: any;
179
179
  width?: string | undefined;
180
180
  }): React.JSX.Element;
181
- export function buildListViewItemActionSelect({ confirm, selectData, selectCallback, }: {
182
- confirm?: boolean | undefined;
183
- selectData: any;
184
- selectCallback: any;
185
- }): React.JSX.Element;
186
- export function buildJsonView({ value, theme }: {
187
- value?: string | undefined;
188
- theme?: string | undefined;
189
- }): React.JSX.Element;
181
+ /**
182
+ *
183
+ * @param {Object} options
184
+ * @param {Object} option.title title config like { label:'',text:'' }.
185
+ * @param {Array} option.descriptionList description config like { label:'',text:'',textStyle: null }.
186
+ * @param {Array} option.actionList action config like { label:'',text:'',emptyText:'',extra: null,canCopy: false }.
187
+ * @param {Object} option.extra StatusBar extra component.
188
+ */
189
+ export function buildListViewItemInner({ title, descriptionList, actionList, extra, }: Object): React.JSX.Element;
190
+ /**
191
+ * @param {Object} options
192
+ * @param {Object} option.title title config like { label:'',text:'' }.
193
+ * @param {Array} option.descriptionList description config like { label:'',text:'',textStyle: null }.
194
+ * @param {Array} option.actionList action config like { label:'',text:'',emptyText:'',extra: null,canCopy: false }.
195
+ * @param {Object} option.extra the params for buildDropdownButton.
196
+ */
197
+ export function buildListViewItemInnerWithDropdownButton({ title, descriptionList, actionList, extra, }: Object): React.JSX.Element;
198
+ /**
199
+ * @param {Object} options
200
+ * @param {Object} option.title title config like { label:'',text:'' }.
201
+ * @param {Array} option.descriptionList description config like { label:'',text:'',textStyle: null }.
202
+ * @param {Array} option.actionList action config like { label:'',text:'',emptyText:'',extra: null,canCopy: false }.
203
+ * @param {Boolean} option.confirm whether confirm select.
204
+ * @param {Object} option.selectData the data selected .
205
+ * @param {Function} option.selectCallback the callback after selected, like (data)=>{}.
206
+ */
207
+ export function buildListViewItemInnerWithSelectButton({ title, descriptionList, actionList, confirm, selectData, selectCallback, }: Object): React.JSX.Element;
208
+ /**
209
+ * @param {Object} options
210
+ * @param {Boolean} option.confirm whether confirm select.
211
+ * @param {Object} option.selectData the data selected .
212
+ * @param {Function} option.selectCallback the callback after selected, like (data)=>{}.
213
+ */
214
+ export function buildListViewItemActionSelect({ confirm, selectData, selectCallback, }: Object): React.JSX.Element;
215
+ /**
216
+ * @param {Object} options
217
+ * @param {string} option.value the value will display.
218
+ * @param {string} option.theme theme, default value is "monokai".
219
+ */
220
+ export function buildJsonView({ value, theme }: Object): React.JSX.Element;
190
221
  import React from 'react';