@aloudata/aloudata-design 1.9.15 → 1.9.17
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/AldTable/index.js +6 -1
- package/dist/AldTable/style/index.less +1 -0
- package/dist/Button/style/type.less +1 -0
- package/dist/Icon/components/AlertTriangleDuotone.d.ts +3 -2
- package/dist/Icon/components/AlertTriangleDuotone.js +3 -3
- package/dist/Icon/components/CancelCircleDuotone.d.ts +3 -2
- package/dist/Icon/components/CancelCircleDuotone.js +4 -4
- package/dist/Icon/components/CheckCircleDuotone.d.ts +3 -2
- package/dist/Icon/components/CheckCircleDuotone.js +4 -4
- package/dist/Icon/components/ChevronDownLine.d.ts +3 -2
- package/dist/Icon/components/ChevronDownLine.js +3 -3
- package/dist/Icon/components/ChevronLeftLine.d.ts +3 -2
- package/dist/Icon/components/ChevronLeftLine.js +3 -3
- package/dist/Icon/components/ChevronRightLine.d.ts +3 -2
- package/dist/Icon/components/ChevronRightLine.js +3 -3
- package/dist/Icon/components/CloseLLine.d.ts +3 -2
- package/dist/Icon/components/CloseLLine.js +4 -4
- package/dist/Icon/components/CloseMLine.d.ts +3 -2
- package/dist/Icon/components/CloseMLine.js +3 -3
- package/dist/Icon/components/EyeOffLine.d.ts +3 -2
- package/dist/Icon/components/EyeOffLine.js +3 -3
- package/dist/Icon/components/EyeOnLine.d.ts +3 -2
- package/dist/Icon/components/EyeOnLine.js +3 -3
- package/dist/Icon/components/FoldDownFill.d.ts +3 -2
- package/dist/Icon/components/FoldDownFill.js +4 -4
- package/dist/Icon/components/FoldUpFill.d.ts +3 -2
- package/dist/Icon/components/FoldUpFill.js +4 -4
- package/dist/Icon/components/InfoCircleDuotone.d.ts +3 -2
- package/dist/Icon/components/InfoCircleDuotone.js +3 -3
- package/dist/Icon/components/InfoCircleLine.d.ts +3 -2
- package/dist/Icon/components/InfoCircleLine.js +3 -3
- package/dist/Icon/components/LoadingLine.d.ts +3 -2
- package/dist/Icon/components/LoadingLine.js +3 -3
- package/dist/Icon/components/MoreVerticalLine.d.ts +3 -2
- package/dist/Icon/components/MoreVerticalLine.js +3 -3
- package/dist/Icon/components/SearchLine.d.ts +3 -2
- package/dist/Icon/components/SearchLine.js +3 -3
- package/dist/Modal/index.js +1 -1
- package/dist/Select/style/multiple.less +1 -0
- package/dist/Select/style/single.less +1 -0
- package/package.json +1 -1
package/dist/AldTable/index.js
CHANGED
|
@@ -135,7 +135,12 @@ function AldTable(props) {
|
|
|
135
135
|
} : {}
|
|
136
136
|
}, /*#__PURE__*/React.createElement(ResizeObserver, {
|
|
137
137
|
onResize: function onResize(size) {
|
|
138
|
-
|
|
138
|
+
// 在 Modal 中使用表格组件,偶现 width 和 offsetWidth 不一致的情况,导致表格宽度不正确,具体原因未找到
|
|
139
|
+
// 实践发现 offsetWidth 一直是正确的宽度
|
|
140
|
+
setTotalSize({
|
|
141
|
+
width: size.offsetWidth,
|
|
142
|
+
height: size.offsetHeight
|
|
143
|
+
});
|
|
139
144
|
}
|
|
140
145
|
}, /*#__PURE__*/React.createElement("div", {
|
|
141
146
|
className: classnames(prefixCls('main'), _defineProperty({}, prefixCls('overflow-hidden'), !!y))
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var AlertTriangleDuotone = function AlertTriangleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var AlertTriangleDuotone = function AlertTriangleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m12 2 10 18H2L12 2Zm-.5 12V8h1v6h-1Zm1.5 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CancelCircleDuotone = function CancelCircleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,10 +24,10 @@ var CancelCircleDuotone = function CancelCircleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
d: "M12 2C6.429 2 2 6.429 2 12s4.429 10 10 10 10-4.429 10-10S17.571 2 12 2Z"
|
|
29
29
|
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
fill: props.fill ||
|
|
30
|
+
fill: props.fill || 'currentColor',
|
|
31
31
|
fillRule: "evenodd",
|
|
32
32
|
d: "m12 11.293 3.182-3.182.707.707L12.707 12l3.182 3.182-.707.707L12 12.707 8.818 15.89l-.707-.707L11.293 12 8.11 8.818l.707-.707L12 11.293Z",
|
|
33
33
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CheckCircleDuotone = function CheckCircleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,10 +24,10 @@ var CheckCircleDuotone = function CheckCircleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
d: "M12 2C6.429 2 2 6.429 2 12s4.429 10 10 10 10-4.429 10-10S17.571 2 12 2Z"
|
|
29
29
|
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
fill: props.fill ||
|
|
30
|
+
fill: props.fill || 'currentColor',
|
|
31
31
|
fillRule: "evenodd",
|
|
32
32
|
d: "m17.854 8.854-7 7a.5.5 0 0 1-.708 0l-4-4 .708-.708 3.646 3.647 6.646-6.647.708.708Z",
|
|
33
33
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var ChevronDownLine = function ChevronDownLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var ChevronDownLine = function ChevronDownLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M12 16a.5.5 0 0 0 .368-.162l5.5-6-.737-.676L12 14.76 6.869 9.162l-.738.676 5.5 6A.5.5 0 0 0 12 16Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var ChevronLeftLine = function ChevronLeftLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var ChevronLeftLine = function ChevronLeftLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M8 11.869a.5.5 0 0 0 .162.368l6 5.5.676-.737-5.598-5.131 5.598-5.132L14.162 6l-6 5.5a.5.5 0 0 0-.162.369Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var ChevronRightLine = function ChevronRightLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var ChevronRightLine = function ChevronRightLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M16 11.869a.5.5 0 0 1-.162.368l-6 5.5L9.162 17l5.598-5.131-5.598-5.132L9.838 6l6 5.5a.5.5 0 0 1 .162.369Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CloseLLine = function CloseLLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -26,14 +26,14 @@ var CloseLLine = function CloseLLine(_ref, ref) {
|
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
|
27
27
|
clipPath: "url(#a)"
|
|
28
28
|
}, /*#__PURE__*/React.createElement("path", {
|
|
29
|
-
fill: props.color ||
|
|
29
|
+
fill: props.color || 'currentColor',
|
|
30
30
|
fillRule: "evenodd",
|
|
31
31
|
d: "m12 11.293 6.01-6.01.707.707-6.01 6.01 6.01 6.01-.707.707-6.01-6.01-6.01 6.01-.708-.707 6.01-6.01-6.01-6.01.708-.708 6.01 6.01Z",
|
|
32
32
|
clipRule: "evenodd"
|
|
33
33
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
34
34
|
id: "a"
|
|
35
35
|
}, /*#__PURE__*/React.createElement("path", {
|
|
36
|
-
fill: props.fill ||
|
|
36
|
+
fill: props.fill || 'currentColor',
|
|
37
37
|
d: "M0 0h24v24H0z"
|
|
38
38
|
}))));
|
|
39
39
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CloseMLine = function CloseMLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var CloseMLine = function CloseMLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m12 11.293 3.182-3.182.707.707L12.707 12l3.182 3.182-.707.707L12 12.707 8.818 15.89l-.707-.707L11.293 12 8.11 8.818l.707-.707L12 11.293Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var EyeOffLine = function EyeOffLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var EyeOffLine = function EyeOffLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M4.542 13.662A9.97 9.97 0 0 1 2.2 9h1.023a9.003 9.003 0 0 0 17.554 0H21.8a9.969 9.969 0 0 1-2.342 4.662l1.713 2.905-.861.508-1.58-2.679a9.993 9.993 0 0 1-3.414 2.04l.675 3.468-.982.191-.656-3.373C13.598 16.903 12.81 17 12 17c-.81 0-1.599-.096-2.353-.278l-.656 3.373-.982-.19.674-3.468a9.995 9.995 0 0 1-3.413-2.04l-1.596 2.705-.861-.508 1.729-2.932Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var EyeOnLine = function EyeOnLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var EyeOnLine = function EyeOnLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor'
|
|
28
28
|
}, /*#__PURE__*/React.createElement("path", {
|
|
29
29
|
fillRule: "evenodd",
|
|
30
30
|
d: "M17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0Zm-1 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var FoldDownFill = function FoldDownFill(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,12 +24,12 @@ var FoldDownFill = function FoldDownFill(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m17 9-5 7-5-7h10Z",
|
|
30
30
|
clipRule: "evenodd",
|
|
31
31
|
style: {
|
|
32
|
-
mixBlendMode:
|
|
32
|
+
mixBlendMode: 'luminosity'
|
|
33
33
|
}
|
|
34
34
|
}));
|
|
35
35
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var FoldUpFill = function FoldUpFill(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,12 +24,12 @@ var FoldUpFill = function FoldUpFill(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m17 15-5-7-5 7h10Z",
|
|
30
30
|
clipRule: "evenodd",
|
|
31
31
|
style: {
|
|
32
|
-
mixBlendMode:
|
|
32
|
+
mixBlendMode: 'luminosity'
|
|
33
33
|
}
|
|
34
34
|
}));
|
|
35
35
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var InfoCircleDuotone = function InfoCircleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var InfoCircleDuotone = function InfoCircleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10ZM12 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2 2v-1h3v6h2v1h-5v-1h2v-5h-2Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var InfoCircleLine = function InfoCircleLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var InfoCircleLine = function InfoCircleLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M12 19a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0 1a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0-11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2 1v1h2v5h-2v1h5v-1h-2v-6h-3Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var LoadingLine = function LoadingLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var LoadingLine = function LoadingLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M7.286 3.18A10 10 0 0 1 22 12h-2a8 8 0 1 0-2.343 5.657l1.414 1.414A10 10 0 1 1 7.286 3.181Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var MoreVerticalLine = function MoreVerticalLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var MoreVerticalLine = function MoreVerticalLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M13 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm0 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1-5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var SearchLine = function SearchLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var SearchLine = function SearchLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M15.438 16.145a7.5 7.5 0 1 1 .707-.707l4.709 4.708-.707.708-4.709-4.709ZM17 10.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Z",
|
|
30
30
|
clipRule: "evenodd"
|
package/dist/Modal/index.js
CHANGED
|
@@ -18,10 +18,10 @@ import { Modal as AntdModal } from 'antd';
|
|
|
18
18
|
import { modalGlobalConfig } from 'antd/lib/modal/confirm';
|
|
19
19
|
import useModal from 'antd/lib/modal/useModal/index';
|
|
20
20
|
import classNames from 'classnames';
|
|
21
|
-
import { IconButton } from "../dist";
|
|
22
21
|
import React from 'react';
|
|
23
22
|
import { btnPrefix, getButtonSizeClass, getButtonType, getDangerStatus, getShape } from "../Button";
|
|
24
23
|
import { AlertTriangleDuotone, CancelCircleDuotone, CheckCircleDuotone, CloseLLine, InfoCircleDuotone } from "../Icon";
|
|
24
|
+
import IconButton from "../IconButton";
|
|
25
25
|
import ScrollArea from "../ScrollArea";
|
|
26
26
|
|
|
27
27
|
// export type { ModalProps, ModalFuncProps };
|