@capillarytech/creatives-library 7.4.1 → 7.4.2
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/package.json +1 -1
- package/v2Containers/FTP/index.js +21 -23
package/package.json
CHANGED
|
@@ -315,29 +315,27 @@ export class FTP extends React.Component {
|
|
|
315
315
|
const headerTagElements = headerTagList.map((item, index) => (
|
|
316
316
|
index !== 0 && <div className="column-selection-container">
|
|
317
317
|
<CapTooltip title={item.header}>
|
|
318
|
-
<
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
<
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
/>
|
|
340
|
-
</CapSpin>
|
|
318
|
+
<CapTreeSelect
|
|
319
|
+
dropdownClassName="select-csv-col-dropdown"
|
|
320
|
+
treeData={tagsWithoutOptout}
|
|
321
|
+
className="select-csv-column"
|
|
322
|
+
value={item.header}
|
|
323
|
+
onChange={(option, label) => this.selectCsvColumn(option, label, index)}
|
|
324
|
+
showSearch
|
|
325
|
+
searchPlaceholder={
|
|
326
|
+
<span className="search-placeholder-container">
|
|
327
|
+
<StyledCapIcon type="search" className="csv-column-search-icon"/>
|
|
328
|
+
{formatMessage(messages.search)}
|
|
329
|
+
</span>
|
|
330
|
+
}
|
|
331
|
+
placeholder={formatMessage(messages.selectTag)}
|
|
332
|
+
/>
|
|
333
|
+
<CapIcon
|
|
334
|
+
type="close"
|
|
335
|
+
size="m"
|
|
336
|
+
onClick={() => this.removeCsvColumn(item)}
|
|
337
|
+
className="remove-csv-column"
|
|
338
|
+
/>
|
|
341
339
|
</CapTooltip>
|
|
342
340
|
</div>
|
|
343
341
|
));
|