@dartech/arsenal-ui 1.3.24 → 1.3.25
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/index.js +7 -4
- package/package.json +1 -1
package/index.js
CHANGED
@@ -13,7 +13,7 @@ import { useController, useWatch, useFormContext, useFieldArray } from 'react-ho
|
|
13
13
|
import TextField from '@mui/material/TextField';
|
14
14
|
import React, { useRef, useEffect, useState, useCallback, useMemo, createElement, forwardRef, createContext, useContext, memo, Suspense } from 'react';
|
15
15
|
import MenuItem from '@mui/material/MenuItem';
|
16
|
-
import
|
16
|
+
import SvgIcon from '@mui/material/SvgIcon';
|
17
17
|
import IconButton from '@mui/material/IconButton';
|
18
18
|
import InputAdornment from '@mui/material/InputAdornment';
|
19
19
|
import FormControl from '@mui/material/FormControl';
|
@@ -27,7 +27,6 @@ import Autocomplete from '@mui/material/Autocomplete';
|
|
27
27
|
import { useQuery } from '@tanstack/react-query';
|
28
28
|
import qs from 'qs';
|
29
29
|
import Tooltip from '@mui/material/Tooltip';
|
30
|
-
import SvgIcon from '@mui/material/SvgIcon';
|
31
30
|
import { useNavigate, useLocation, Link, useSearchParams, Outlet } from 'react-router-dom';
|
32
31
|
import CodeMirror from '@uiw/react-codemirror';
|
33
32
|
import { langs } from '@uiw/codemirror-extensions-langs';
|
@@ -463,9 +462,13 @@ const ControlSelect = _a => {
|
|
463
462
|
onClick: handleClear,
|
464
463
|
size: "small"
|
465
464
|
}, {
|
466
|
-
children: jsx(
|
465
|
+
children: jsx(SvgIcon, Object.assign({
|
467
466
|
fontSize: "small"
|
468
|
-
}
|
467
|
+
}, {
|
468
|
+
children: jsx("path", {
|
469
|
+
d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
470
|
+
})
|
471
|
+
}))
|
469
472
|
}))
|
470
473
|
})) : null
|
471
474
|
}, textFieldProps === null || textFieldProps === void 0 ? void 0 : textFieldProps.InputProps)
|