@tant/icons 1.3.23 → 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.
@@ -0,0 +1,62 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ 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); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ 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; }
10
+ 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; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var Disable = function Disable(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ xmlns: "http://www.w3.org/2000/svg"
45
+ }, /*#__PURE__*/React.createElement("path", {
46
+ fillRule: "evenodd",
47
+ clipRule: "evenodd",
48
+ d: "M16.906 18.32A8 8 0 015.68 7.094L16.905 18.32zm1.414-1.414L7.094 5.68A8 8 0 0118.32 16.905zM22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10z"
49
+ }))));
50
+ };
51
+ Disable.propTypes = {
52
+ iconClassName: PropTypes.string,
53
+ spin: PropTypes.bool,
54
+ color: PropTypes.string,
55
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
56
+ };
57
+ Disable.defaultProps = {
58
+ spin: false,
59
+ color: 'currentColor',
60
+ size: '1em'
61
+ };
62
+ export default Disable;
@@ -0,0 +1,79 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ 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); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ 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; }
10
+ 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; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var EChartsCl = function EChartsCl(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "24",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg"
46
+ }, /*#__PURE__*/React.createElement("rect", {
47
+ x: "2",
48
+ y: "2",
49
+ width: "13",
50
+ height: "20",
51
+ fill: "#B3CFF8"
52
+ }), /*#__PURE__*/React.createElement("g", {
53
+ style: {
54
+ mixBlendMode: 'multiply'
55
+ }
56
+ }, /*#__PURE__*/React.createElement("path", {
57
+ d: "M22.39 10.53h-6.18V4c3.412 0 6.179 2.924 6.18 6.53z",
58
+ fill: "#1E76F0"
59
+ })), /*#__PURE__*/React.createElement("g", {
60
+ style: {
61
+ mixBlendMode: 'multiply'
62
+ }
63
+ }, /*#__PURE__*/React.createElement("path", {
64
+ d: "M15.18 5.088C11.767 5.088 9 8.012 9 11.62c0 3.607 2.767 6.531 6.18 6.531s6.18-2.924 6.18-6.53h-6.18V5.088z",
65
+ fill: "#1E76F0"
66
+ })))));
67
+ };
68
+ EChartsCl.propTypes = {
69
+ iconClassName: PropTypes.string,
70
+ spin: PropTypes.bool,
71
+ color: PropTypes.string,
72
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
73
+ };
74
+ EChartsCl.defaultProps = {
75
+ spin: false,
76
+ color: 'currentColor',
77
+ size: '1em'
78
+ };
79
+ export default EChartsCl;
@@ -62,7 +62,7 @@ var ESettingCl = function ESettingCl(props) {
62
62
  }, /*#__PURE__*/React.createElement("path", {
63
63
  fillRule: "evenodd",
64
64
  clipRule: "evenodd",
65
- d: "M11 16.392l3-5.196L11 6H5l-3 5.196 3 5.196h6zM8 12.91a1.714 1.714 0 100-3.428 1.714 1.714 0 000 3.428z",
65
+ d: "M12.5 22l3.5-6-3.5-6h-7L2 16l3.5 6h7zM9 17.98c1.104 0 2-.887 2-1.98a1.99 1.99 0 00-2-1.98c-1.105 0-2 .887-2 1.98a1.99 1.99 0 002 1.98z",
66
66
  fill: "#1E76F0"
67
67
  })))));
68
68
  };
@@ -0,0 +1,72 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
3
+ 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); }
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
8
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
9
+ 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; }
10
+ 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; }
11
+ import React from 'react';
12
+ import PropTypes from 'prop-types';
13
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
14
+ var LogoIggCl = function LogoIggCl(props) {
15
+ var color = props.color,
16
+ size = props.size,
17
+ spin = props.spin,
18
+ style = props.style,
19
+ className = props.className,
20
+ iconClassName = props.iconClassName,
21
+ otherProps = _objectWithoutProperties(props, _excluded);
22
+ return /*#__PURE__*/React.createElement("span", {
23
+ role: "img",
24
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
25
+ }, /*#__PURE__*/React.createElement("style", {
26
+ children: loadingCircleStyle
27
+ }), /*#__PURE__*/React.createElement("svg", _extends({
28
+ xmlns: "http://www.w3.org/2000/svg",
29
+ width: size,
30
+ height: size,
31
+ viewBox: "0 0 24 24",
32
+ fill: color
33
+ }, otherProps, {
34
+ className: iconClassName,
35
+ style: _objectSpread(_objectSpread({}, style), spin ? {
36
+ animationDuration: '1s',
37
+ animationIterationCount: 'infinite',
38
+ animationName: 'loadingCircle',
39
+ animationTimingFunction: 'linear'
40
+ } : {})
41
+ }), /*#__PURE__*/React.createElement("svg", {
42
+ width: "24",
43
+ height: "25",
44
+ fill: "none",
45
+ xmlns: "http://www.w3.org/2000/svg"
46
+ }, /*#__PURE__*/React.createElement("rect", {
47
+ width: "24",
48
+ height: "24",
49
+ fill: "#fff"
50
+ }), /*#__PURE__*/React.createElement("path", {
51
+ d: "M4 16.121V5.411L12.5 2 21 5.41v10.711c0 .15-.08.494-.327.977a6.28 6.28 0 01-.968 1.37c-1.093 1.049-2.191 1.757-3.428 2.45-.398.222-.821.448-1.266.686-.777.416-1.62.867-2.511 1.396-.89-.529-1.734-.98-2.511-1.396-.445-.238-.868-.464-1.266-.687-1.237-.692-2.335-1.4-3.428-2.449a6.282 6.282 0 01-.968-1.37C4.08 16.615 4 16.272 4 16.12z",
52
+ stroke: "#EBAD39",
53
+ strokeWidth: "2"
54
+ }), /*#__PURE__*/React.createElement("path", {
55
+ fillRule: "evenodd",
56
+ clipRule: "evenodd",
57
+ d: "M16 7.26s-2.873-.705-5.175.207c-2.353.912-2.857 3.668-2.823 4.6.016.622.184 4.353 3.747 4.933h3.881l.32-5.326h-3.075l.134 1.492h.672v2.404s-2.084-.974-2.084-4.207V9.25s0-.704.706-.704h1.378v1.533h1.933L16 7.26z",
58
+ fill: "#EBAD39"
59
+ }))));
60
+ };
61
+ LogoIggCl.propTypes = {
62
+ iconClassName: PropTypes.string,
63
+ spin: PropTypes.bool,
64
+ color: PropTypes.string,
65
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
66
+ };
67
+ LogoIggCl.defaultProps = {
68
+ spin: false,
69
+ color: 'currentColor',
70
+ size: '1em'
71
+ };
72
+ export default LogoIggCl;
package/dist/es/index.js CHANGED
@@ -159,6 +159,7 @@ export { default as TaLogoXiaomiCl } from './icons/logo-xiaomi -cl';
159
159
  export { default as TaLogoFutuCl } from './icons/logo-futu-cl';
160
160
  export { default as TaLogoHappyelementCl } from './icons/logo-happyelement-cl';
161
161
  export { default as TaLogoWepieCl } from './icons/logo-wepie-cl';
162
+ export { default as TaLogoIggCl } from './icons/logo-igg-cl';
162
163
  export { default as TaDashboardCl } from './icons/dashboard-cl';
163
164
  export { default as TaReportCl } from './icons/report-cl';
164
165
  export { default as TaUserTagCl } from './icons/user-tag-cl';
@@ -176,6 +177,7 @@ export { default as TaUTagCl } from './icons/u-tag-cl';
176
177
  export { default as TaUCohortCl } from './icons/u-cohort-cl';
177
178
  export { default as TaUSearchCl } from './icons/u-search-cl';
178
179
  export { default as TaETaskCl } from './icons/e-task-cl';
180
+ export { default as TaEChartsCl } from './icons/e-charts-cl';
179
181
  export { default as TaESettingCl } from './icons/e-setting-cl';
180
182
  export { default as TaDManageCl } from './icons/d-manage-cl';
181
183
  export { default as TaDTrackingCl } from './icons/d-tracking-cl';
@@ -289,6 +291,7 @@ export { default as TaBoxOpen } from './icons/box-open';
289
291
  export { default as TaInterval } from './icons/interval';
290
292
  export { default as TaRevert } from './icons/revert';
291
293
  export { default as TaInsert } from './icons/insert';
294
+ export { default as TaDisable } from './icons/disable';
292
295
  export { default as TaReport } from './icons/report';
293
296
  export { default as TaReportRemoval } from './icons/report-removal';
294
297
  export { default as TaFileAdd } from './icons/file-add';
package/dist/index.d.ts CHANGED
@@ -170,6 +170,7 @@ export const TaLogoXiaomiCl: Icon;
170
170
  export const TaLogoFutuCl: Icon;
171
171
  export const TaLogoHappyelementCl: Icon;
172
172
  export const TaLogoWepieCl: Icon;
173
+ export const TaLogoIggCl: Icon;
173
174
  export const TaDashboardCl: Icon;
174
175
  export const TaReportCl: Icon;
175
176
  export const TaUserTagCl: Icon;
@@ -187,6 +188,7 @@ export const TaUTagCl: Icon;
187
188
  export const TaUCohortCl: Icon;
188
189
  export const TaUSearchCl: Icon;
189
190
  export const TaETaskCl: Icon;
191
+ export const TaEChartsCl: Icon;
190
192
  export const TaESettingCl: Icon;
191
193
  export const TaDManageCl: Icon;
192
194
  export const TaDTrackingCl: Icon;
@@ -300,6 +302,7 @@ export const TaBoxOpen: Icon;
300
302
  export const TaInterval: Icon;
301
303
  export const TaRevert: Icon;
302
304
  export const TaInsert: Icon;
305
+ export const TaDisable: Icon;
303
306
  export const TaReport: Icon;
304
307
  export const TaReportRemoval: Icon;
305
308
  export const TaFileAdd: Icon;
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _react = _interopRequireDefault(require("react"));
9
+ var _propTypes = _interopRequireDefault(require("prop-types"));
10
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
+ 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); }
13
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
14
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
15
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
16
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
17
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
18
+ 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; }
19
+ 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; }
20
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
21
+ var Disable = function Disable(props) {
22
+ var color = props.color,
23
+ size = props.size,
24
+ spin = props.spin,
25
+ style = props.style,
26
+ className = props.className,
27
+ iconClassName = props.iconClassName,
28
+ otherProps = _objectWithoutProperties(props, _excluded);
29
+ return /*#__PURE__*/_react["default"].createElement("span", {
30
+ role: "img",
31
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
32
+ }, /*#__PURE__*/_react["default"].createElement("style", {
33
+ children: loadingCircleStyle
34
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ viewBox: "0 0 24 24",
39
+ fill: color
40
+ }, otherProps, {
41
+ className: iconClassName,
42
+ style: _objectSpread(_objectSpread({}, style), spin ? {
43
+ animationDuration: '1s',
44
+ animationIterationCount: 'infinite',
45
+ animationName: 'loadingCircle',
46
+ animationTimingFunction: 'linear'
47
+ } : {})
48
+ }), /*#__PURE__*/_react["default"].createElement("svg", {
49
+ width: "24",
50
+ height: "24",
51
+ xmlns: "http://www.w3.org/2000/svg"
52
+ }, /*#__PURE__*/_react["default"].createElement("path", {
53
+ fillRule: "evenodd",
54
+ clipRule: "evenodd",
55
+ d: "M16.906 18.32A8 8 0 015.68 7.094L16.905 18.32zm1.414-1.414L7.094 5.68A8 8 0 0118.32 16.905zM22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10z"
56
+ }))));
57
+ };
58
+ Disable.propTypes = {
59
+ iconClassName: _propTypes["default"].string,
60
+ spin: _propTypes["default"].bool,
61
+ color: _propTypes["default"].string,
62
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
63
+ };
64
+ Disable.defaultProps = {
65
+ spin: false,
66
+ color: 'currentColor',
67
+ size: '1em'
68
+ };
69
+ var _default = Disable;
70
+ exports["default"] = _default;
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _react = _interopRequireDefault(require("react"));
9
+ var _propTypes = _interopRequireDefault(require("prop-types"));
10
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
+ 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); }
13
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
14
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
15
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
16
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
17
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
18
+ 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; }
19
+ 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; }
20
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
21
+ var EChartsCl = function EChartsCl(props) {
22
+ var color = props.color,
23
+ size = props.size,
24
+ spin = props.spin,
25
+ style = props.style,
26
+ className = props.className,
27
+ iconClassName = props.iconClassName,
28
+ otherProps = _objectWithoutProperties(props, _excluded);
29
+ return /*#__PURE__*/_react["default"].createElement("span", {
30
+ role: "img",
31
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
32
+ }, /*#__PURE__*/_react["default"].createElement("style", {
33
+ children: loadingCircleStyle
34
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ viewBox: "0 0 24 24",
39
+ fill: color
40
+ }, otherProps, {
41
+ className: iconClassName,
42
+ style: _objectSpread(_objectSpread({}, style), spin ? {
43
+ animationDuration: '1s',
44
+ animationIterationCount: 'infinite',
45
+ animationName: 'loadingCircle',
46
+ animationTimingFunction: 'linear'
47
+ } : {})
48
+ }), /*#__PURE__*/_react["default"].createElement("svg", {
49
+ width: "24",
50
+ height: "24",
51
+ fill: "none",
52
+ xmlns: "http://www.w3.org/2000/svg"
53
+ }, /*#__PURE__*/_react["default"].createElement("rect", {
54
+ x: "2",
55
+ y: "2",
56
+ width: "13",
57
+ height: "20",
58
+ fill: "#B3CFF8"
59
+ }), /*#__PURE__*/_react["default"].createElement("g", {
60
+ style: {
61
+ mixBlendMode: 'multiply'
62
+ }
63
+ }, /*#__PURE__*/_react["default"].createElement("path", {
64
+ d: "M22.39 10.53h-6.18V4c3.412 0 6.179 2.924 6.18 6.53z",
65
+ fill: "#1E76F0"
66
+ })), /*#__PURE__*/_react["default"].createElement("g", {
67
+ style: {
68
+ mixBlendMode: 'multiply'
69
+ }
70
+ }, /*#__PURE__*/_react["default"].createElement("path", {
71
+ d: "M15.18 5.088C11.767 5.088 9 8.012 9 11.62c0 3.607 2.767 6.531 6.18 6.531s6.18-2.924 6.18-6.53h-6.18V5.088z",
72
+ fill: "#1E76F0"
73
+ })))));
74
+ };
75
+ EChartsCl.propTypes = {
76
+ iconClassName: _propTypes["default"].string,
77
+ spin: _propTypes["default"].bool,
78
+ color: _propTypes["default"].string,
79
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
80
+ };
81
+ EChartsCl.defaultProps = {
82
+ spin: false,
83
+ color: 'currentColor',
84
+ size: '1em'
85
+ };
86
+ var _default = EChartsCl;
87
+ exports["default"] = _default;
@@ -69,7 +69,7 @@ var ESettingCl = function ESettingCl(props) {
69
69
  }, /*#__PURE__*/_react["default"].createElement("path", {
70
70
  fillRule: "evenodd",
71
71
  clipRule: "evenodd",
72
- d: "M11 16.392l3-5.196L11 6H5l-3 5.196 3 5.196h6zM8 12.91a1.714 1.714 0 100-3.428 1.714 1.714 0 000 3.428z",
72
+ d: "M12.5 22l3.5-6-3.5-6h-7L2 16l3.5 6h7zM9 17.98c1.104 0 2-.887 2-1.98a1.99 1.99 0 00-2-1.98c-1.105 0-2 .887-2 1.98a1.99 1.99 0 002 1.98z",
73
73
  fill: "#1E76F0"
74
74
  })))));
75
75
  };
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _react = _interopRequireDefault(require("react"));
9
+ var _propTypes = _interopRequireDefault(require("prop-types"));
10
+ var _excluded = ["color", "size", "spin", "style", "className", "iconClassName"];
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
12
+ 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); }
13
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
14
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
15
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
16
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
17
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
18
+ 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; }
19
+ 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; }
20
+ var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
21
+ var LogoIggCl = function LogoIggCl(props) {
22
+ var color = props.color,
23
+ size = props.size,
24
+ spin = props.spin,
25
+ style = props.style,
26
+ className = props.className,
27
+ iconClassName = props.iconClassName,
28
+ otherProps = _objectWithoutProperties(props, _excluded);
29
+ return /*#__PURE__*/_react["default"].createElement("span", {
30
+ role: "img",
31
+ className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
32
+ }, /*#__PURE__*/_react["default"].createElement("style", {
33
+ children: loadingCircleStyle
34
+ }), /*#__PURE__*/_react["default"].createElement("svg", _extends({
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: size,
37
+ height: size,
38
+ viewBox: "0 0 24 24",
39
+ fill: color
40
+ }, otherProps, {
41
+ className: iconClassName,
42
+ style: _objectSpread(_objectSpread({}, style), spin ? {
43
+ animationDuration: '1s',
44
+ animationIterationCount: 'infinite',
45
+ animationName: 'loadingCircle',
46
+ animationTimingFunction: 'linear'
47
+ } : {})
48
+ }), /*#__PURE__*/_react["default"].createElement("svg", {
49
+ width: "24",
50
+ height: "25",
51
+ fill: "none",
52
+ xmlns: "http://www.w3.org/2000/svg"
53
+ }, /*#__PURE__*/_react["default"].createElement("rect", {
54
+ width: "24",
55
+ height: "24",
56
+ fill: "#fff"
57
+ }), /*#__PURE__*/_react["default"].createElement("path", {
58
+ d: "M4 16.121V5.411L12.5 2 21 5.41v10.711c0 .15-.08.494-.327.977a6.28 6.28 0 01-.968 1.37c-1.093 1.049-2.191 1.757-3.428 2.45-.398.222-.821.448-1.266.686-.777.416-1.62.867-2.511 1.396-.89-.529-1.734-.98-2.511-1.396-.445-.238-.868-.464-1.266-.687-1.237-.692-2.335-1.4-3.428-2.449a6.282 6.282 0 01-.968-1.37C4.08 16.615 4 16.272 4 16.12z",
59
+ stroke: "#EBAD39",
60
+ strokeWidth: "2"
61
+ }), /*#__PURE__*/_react["default"].createElement("path", {
62
+ fillRule: "evenodd",
63
+ clipRule: "evenodd",
64
+ d: "M16 7.26s-2.873-.705-5.175.207c-2.353.912-2.857 3.668-2.823 4.6.016.622.184 4.353 3.747 4.933h3.881l.32-5.326h-3.075l.134 1.492h.672v2.404s-2.084-.974-2.084-4.207V9.25s0-.704.706-.704h1.378v1.533h1.933L16 7.26z",
65
+ fill: "#EBAD39"
66
+ }))));
67
+ };
68
+ LogoIggCl.propTypes = {
69
+ iconClassName: _propTypes["default"].string,
70
+ spin: _propTypes["default"].bool,
71
+ color: _propTypes["default"].string,
72
+ size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
73
+ };
74
+ LogoIggCl.defaultProps = {
75
+ spin: false,
76
+ color: 'currentColor',
77
+ size: '1em'
78
+ };
79
+ var _default = LogoIggCl;
80
+ exports["default"] = _default;
package/dist/lib/index.js CHANGED
@@ -561,6 +561,12 @@ Object.defineProperty(exports, "TaDetail", {
561
561
  return _detail["default"];
562
562
  }
563
563
  });
564
+ Object.defineProperty(exports, "TaDisable", {
565
+ enumerable: true,
566
+ get: function get() {
567
+ return _disable["default"];
568
+ }
569
+ });
564
570
  Object.defineProperty(exports, "TaDisplayS", {
565
571
  enumerable: true,
566
572
  get: function get() {
@@ -615,6 +621,12 @@ Object.defineProperty(exports, "TaDropUp", {
615
621
  return _dropUp["default"];
616
622
  }
617
623
  });
624
+ Object.defineProperty(exports, "TaEChartsCl", {
625
+ enumerable: true,
626
+ get: function get() {
627
+ return _eChartsCl["default"];
628
+ }
629
+ });
618
630
  Object.defineProperty(exports, "TaEPropertySm", {
619
631
  enumerable: true,
620
632
  get: function get() {
@@ -1203,6 +1215,12 @@ Object.defineProperty(exports, "TaLogoHappyelementCl", {
1203
1215
  return _logoHappyelementCl["default"];
1204
1216
  }
1205
1217
  });
1218
+ Object.defineProperty(exports, "TaLogoIggCl", {
1219
+ enumerable: true,
1220
+ get: function get() {
1221
+ return _logoIggCl["default"];
1222
+ }
1223
+ });
1206
1224
  Object.defineProperty(exports, "TaLogoKingCl", {
1207
1225
  enumerable: true,
1208
1226
  get: function get() {
@@ -2336,6 +2354,7 @@ var _logoXiaomiCl = _interopRequireDefault(require("./icons/logo-xiaomi -cl"));
2336
2354
  var _logoFutuCl = _interopRequireDefault(require("./icons/logo-futu-cl"));
2337
2355
  var _logoHappyelementCl = _interopRequireDefault(require("./icons/logo-happyelement-cl"));
2338
2356
  var _logoWepieCl = _interopRequireDefault(require("./icons/logo-wepie-cl"));
2357
+ var _logoIggCl = _interopRequireDefault(require("./icons/logo-igg-cl"));
2339
2358
  var _dashboardCl = _interopRequireDefault(require("./icons/dashboard-cl"));
2340
2359
  var _reportCl = _interopRequireDefault(require("./icons/report-cl"));
2341
2360
  var _userTagCl = _interopRequireDefault(require("./icons/user-tag-cl"));
@@ -2353,6 +2372,7 @@ var _uTagCl = _interopRequireDefault(require("./icons/u-tag-cl"));
2353
2372
  var _uCohortCl = _interopRequireDefault(require("./icons/u-cohort-cl"));
2354
2373
  var _uSearchCl = _interopRequireDefault(require("./icons/u-search-cl"));
2355
2374
  var _eTaskCl = _interopRequireDefault(require("./icons/e-task-cl"));
2375
+ var _eChartsCl = _interopRequireDefault(require("./icons/e-charts-cl"));
2356
2376
  var _eSettingCl = _interopRequireDefault(require("./icons/e-setting-cl"));
2357
2377
  var _dManageCl = _interopRequireDefault(require("./icons/d-manage-cl"));
2358
2378
  var _dTrackingCl = _interopRequireDefault(require("./icons/d-tracking-cl"));
@@ -2466,6 +2486,7 @@ var _boxOpen = _interopRequireDefault(require("./icons/box-open"));
2466
2486
  var _interval = _interopRequireDefault(require("./icons/interval"));
2467
2487
  var _revert = _interopRequireDefault(require("./icons/revert"));
2468
2488
  var _insert = _interopRequireDefault(require("./icons/insert"));
2489
+ var _disable = _interopRequireDefault(require("./icons/disable"));
2469
2490
  var _report = _interopRequireDefault(require("./icons/report"));
2470
2491
  var _reportRemoval = _interopRequireDefault(require("./icons/report-removal"));
2471
2492
  var _fileAdd = _interopRequireDefault(require("./icons/file-add"));