@tant/icons 1.18.16 → 1.18.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/es/icons/debug-play.js +69 -0
- package/dist/es/icons/offline-sync.js +65 -0
- package/dist/es/icons/satellite-dish.js +69 -0
- package/dist/es/index.js +5 -2
- package/dist/index.d.ts +4 -1
- package/dist/lib/icons/debug-play.js +76 -0
- package/dist/lib/icons/offline-sync.js +72 -0
- package/dist/lib/icons/satellite-dish.js +76 -0
- package/dist/lib/index.js +22 -1
- package/dist/tant-icons.cjs.js +977 -804
- package/dist/tant-icons.esm.js +975 -805
- package/package.json +1 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var DebugPlay = function DebugPlay(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
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fillRule: "evenodd",
|
|
49
|
+
clipRule: "evenodd",
|
|
50
|
+
d: "M16.707 1.293a1 1 0 010 1.414L15.45 3.965A4.003 4.003 0 0116 6.15v.266a4.997 4.997 0 011.914 1.47C19.057 7.514 19.97 6.38 19.97 5a1 1 0 112 0 5.057 5.057 0 01-3.146 4.684c.116.425.176.868.176 1.316a1 1 0 11-2 0 3 3 0 00-2.184-2.887.994.994 0 01-.133-.034A3 3 0 0014 8h-4a3 3 0 00-.684.079.993.993 0 01-.132.034A3 3 0 007 11v2.999a5.1 5.1 0 001.672 3.76 1 1 0 11-1.344 1.481c-.385-.349-.73-.739-1.028-1.161C4.996 18.4 4 19.617 4 21a1 1 0 11-2 0c0-2.152 1.417-4.046 3.378-4.732A7.1 7.1 0 015 14.003V14H2a1 1 0 110-2h3v-1c0-.447.06-.887.175-1.311A5.046 5.046 0 012 5a1 1 0 012 0 3.04 3.04 0 002.085 2.89A5 5 0 018 6.417v-.266a4.003 4.003 0 01.55-2.186L7.293 2.707a1 1 0 011.414-1.414l1.257 1.256A4.01 4.01 0 0112 1.993a4.003 4.003 0 012.036.556l1.257-1.256a1 1 0 011.414 0zM13.343 4.51a2.003 2.003 0 00-2.686 0 1.025 1.025 0 01-.146.146A2.002 2.002 0 009.997 6h4.006a2.003 2.003 0 00-.515-1.345 1.002 1.002 0 01-.144-.145z"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
fillRule: "evenodd",
|
|
53
|
+
clipRule: "evenodd",
|
|
54
|
+
d: "M11.773 11.59a1.5 1.5 0 011.522.04l5.878 3.674a2 2 0 010 3.392l-5.878 3.674A1.5 1.5 0 0111 21.098v-8.196a1.5 1.5 0 01.773-1.312zM13 13.804v6.392L18.113 17 13 13.804z"
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
DebugPlay.propTypes = {
|
|
58
|
+
iconClassName: PropTypes.string,
|
|
59
|
+
spin: PropTypes.bool,
|
|
60
|
+
color: PropTypes.string,
|
|
61
|
+
testid: PropTypes.string,
|
|
62
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
63
|
+
};
|
|
64
|
+
DebugPlay.defaultProps = {
|
|
65
|
+
spin: false,
|
|
66
|
+
color: 'currentColor',
|
|
67
|
+
size: '1em'
|
|
68
|
+
};
|
|
69
|
+
export default DebugPlay;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var OfflineSync = function OfflineSync(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
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
fillRule: "evenodd",
|
|
49
|
+
clipRule: "evenodd",
|
|
50
|
+
d: "M8.282 4.81a.913.913 0 01.768.407l.006.008.733 1.082a2.723 2.723 0 002.275 1.217h7.209a.903.903 0 01.91.905v.452c-.001.5.406.905.908.905S22 9.38 22 8.88v-.452c0-.72-.287-1.41-.799-1.92a2.734 2.734 0 00-1.928-.795h-7.21a.912.912 0 01-.758-.407l-.006-.008-.734-1.082A2.723 2.723 0 008.27 3H4.727c-.723 0-1.417.286-1.928.795A2.708 2.708 0 002 5.715v11.761c0 .72.287 1.41.799 1.92a2.734 2.734 0 001.928.794h4.546c.502 0 .909-.405.909-.904 0-.5-.407-.905-.91-.905H4.728a.911.911 0 01-.909-.905V5.714c0-.24.096-.47.266-.64a.911.911 0 01.643-.264H8.282zm9.172 11.761a.907.907 0 00-.909.905c0 .5.407.905.91.905h1.496a3.641 3.641 0 01-3.075.843 3.645 3.645 0 01-2.629-2.034.911.911 0 00-1.207-.44.903.903 0 00-.442 1.202c.366.784.914 1.47 1.6 2a5.468 5.468 0 004.908.916 5.46 5.46 0 002.076-1.155v1.382c0 .5.407.905.909.905s.909-.405.909-.905v-3.629a.898.898 0 00-.3-.661.908.908 0 00-.61-.234h-3.636zM12 9.333c.502 0 .91.405.91.905v1.68l.131-.138a5.46 5.46 0 012.246-1.315 5.48 5.48 0 014.909.916 5.433 5.433 0 011.6 2 .903.903 0 01-.442 1.202.91.91 0 01-1.207-.44 3.622 3.622 0 00-2.629-2.033 3.652 3.652 0 00-3.075.842h1.193c.502 0 .91.405.91.905s-.408.905-.91.905H12a.907.907 0 01-.91-.905v-3.619c0-.5.408-.905.91-.905z"
|
|
51
|
+
}))));
|
|
52
|
+
};
|
|
53
|
+
OfflineSync.propTypes = {
|
|
54
|
+
iconClassName: PropTypes.string,
|
|
55
|
+
spin: PropTypes.bool,
|
|
56
|
+
color: PropTypes.string,
|
|
57
|
+
testid: PropTypes.string,
|
|
58
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
59
|
+
};
|
|
60
|
+
OfflineSync.defaultProps = {
|
|
61
|
+
spin: false,
|
|
62
|
+
color: 'currentColor',
|
|
63
|
+
size: '1em'
|
|
64
|
+
};
|
|
65
|
+
export default OfflineSync;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var SatelliteDish = function SatelliteDish(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
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M11 2a1 1 0 000 2 9 9 0 019 9 1 1 0 002 0A11 11 0 0011 2z"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M10 7a1 1 0 011-1 7 7 0 017 7 1 1 0 11-2 0 5 5 0 00-5-5 1 1 0 01-1-1z"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
fillRule: "evenodd",
|
|
53
|
+
clipRule: "evenodd",
|
|
54
|
+
d: "M4.707 9.293a1 1 0 00-1.57.202 8.31 8.31 0 0011.368 11.368 1 1 0 00.202-1.57L10.414 15l2.293-2.293a1 1 0 00-1.414-1.414L9 13.586 4.707 9.293zm-.393 2.435a6.31 6.31 0 007.959 7.959l-7.96-7.96z"
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
SatelliteDish.propTypes = {
|
|
58
|
+
iconClassName: PropTypes.string,
|
|
59
|
+
spin: PropTypes.bool,
|
|
60
|
+
color: PropTypes.string,
|
|
61
|
+
testid: PropTypes.string,
|
|
62
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
63
|
+
};
|
|
64
|
+
SatelliteDish.defaultProps = {
|
|
65
|
+
spin: false,
|
|
66
|
+
color: 'currentColor',
|
|
67
|
+
size: '1em'
|
|
68
|
+
};
|
|
69
|
+
export default SatelliteDish;
|
package/dist/es/index.js
CHANGED
|
@@ -109,12 +109,12 @@ export { default as TaBook } from './icons/book';
|
|
|
109
109
|
export { default as TaBook2 } from './icons/book-2';
|
|
110
110
|
export { default as TaSticker } from './icons/sticker';
|
|
111
111
|
export { default as TaStickerFill } from './icons/sticker-fill';
|
|
112
|
-
export { default as TaAlignLeft } from './icons/align-left';
|
|
113
112
|
export { default as TaAlignCenter } from './icons/align-center';
|
|
114
113
|
export { default as TaAlignRight } from './icons/align-right';
|
|
115
114
|
export { default as TaTableClassic } from './icons/table-classic ';
|
|
116
115
|
export { default as TaTableStriped } from './icons/table-striped';
|
|
117
116
|
export { default as TaTableSimple } from './icons/table-simple ';
|
|
117
|
+
export { default as TaAlignLeft } from './icons/align-left';
|
|
118
118
|
export { default as TaOperatorEqual } from './icons/operator-equal';
|
|
119
119
|
export { default as TaOperatorUnequal } from './icons/operator-unequal';
|
|
120
120
|
export { default as TaOperatorDivide } from './icons/operator-divide';
|
|
@@ -282,6 +282,7 @@ export { default as TaTableCol } from './icons/table-col';
|
|
|
282
282
|
export { default as TaCopyQuery } from './icons/copy-query';
|
|
283
283
|
export { default as TaCopyDdl } from './icons/copy-ddl';
|
|
284
284
|
export { default as TaAutoLayout } from './icons/auto-layout';
|
|
285
|
+
export { default as TaDebugPlay } from './icons/debug-play';
|
|
285
286
|
export { default as TaUser1 } from './icons/user-1';
|
|
286
287
|
export { default as TaUser1Fill } from './icons/user-1-fill';
|
|
287
288
|
export { default as TaUser2 } from './icons/user-2';
|
|
@@ -393,6 +394,7 @@ export { default as TaFind } from './icons/find';
|
|
|
393
394
|
export { default as TaArrowGoBack } from './icons/arrow-go-back';
|
|
394
395
|
export { default as TaArrowGoForward } from './icons/arrow-go-forward';
|
|
395
396
|
export { default as TaRecycle } from './icons/recycle';
|
|
397
|
+
export { default as TaOfflineSync } from './icons/offline-sync';
|
|
396
398
|
export { default as TaInfo } from './icons/info';
|
|
397
399
|
export { default as TaInfoFill } from './icons/info-fill';
|
|
398
400
|
export { default as TaHelp } from './icons/help';
|
|
@@ -467,4 +469,5 @@ export { default as TaBell2Fill } from './icons/bell-2-fill';
|
|
|
467
469
|
export { default as TaBox } from './icons/box';
|
|
468
470
|
export { default as TaShutDown } from './icons/shut-down';
|
|
469
471
|
export { default as TaDatabase } from './icons/database';
|
|
470
|
-
export { default as TaTerminal } from './icons/terminal';
|
|
472
|
+
export { default as TaTerminal } from './icons/terminal';
|
|
473
|
+
export { default as TaSatelliteDish } from './icons/satellite-dish';
|
package/dist/index.d.ts
CHANGED
|
@@ -121,12 +121,12 @@ export const TaBook: Icon;
|
|
|
121
121
|
export const TaBook2: Icon;
|
|
122
122
|
export const TaSticker: Icon;
|
|
123
123
|
export const TaStickerFill: Icon;
|
|
124
|
-
export const TaAlignLeft: Icon;
|
|
125
124
|
export const TaAlignCenter: Icon;
|
|
126
125
|
export const TaAlignRight: Icon;
|
|
127
126
|
export const TaTableClassic: Icon;
|
|
128
127
|
export const TaTableStriped: Icon;
|
|
129
128
|
export const TaTableSimple: Icon;
|
|
129
|
+
export const TaAlignLeft: Icon;
|
|
130
130
|
export const TaOperatorEqual: Icon;
|
|
131
131
|
export const TaOperatorUnequal: Icon;
|
|
132
132
|
export const TaOperatorDivide: Icon;
|
|
@@ -294,6 +294,7 @@ export const TaTableCol: Icon;
|
|
|
294
294
|
export const TaCopyQuery: Icon;
|
|
295
295
|
export const TaCopyDdl: Icon;
|
|
296
296
|
export const TaAutoLayout: Icon;
|
|
297
|
+
export const TaDebugPlay: Icon;
|
|
297
298
|
export const TaUser1: Icon;
|
|
298
299
|
export const TaUser1Fill: Icon;
|
|
299
300
|
export const TaUser2: Icon;
|
|
@@ -405,6 +406,7 @@ export const TaFind: Icon;
|
|
|
405
406
|
export const TaArrowGoBack: Icon;
|
|
406
407
|
export const TaArrowGoForward: Icon;
|
|
407
408
|
export const TaRecycle: Icon;
|
|
409
|
+
export const TaOfflineSync: Icon;
|
|
408
410
|
export const TaInfo: Icon;
|
|
409
411
|
export const TaInfoFill: Icon;
|
|
410
412
|
export const TaHelp: Icon;
|
|
@@ -480,3 +482,4 @@ export const TaBox: Icon;
|
|
|
480
482
|
export const TaShutDown: Icon;
|
|
481
483
|
export const TaDatabase: Icon;
|
|
482
484
|
export const TaTerminal: Icon;
|
|
485
|
+
export const TaSatelliteDish: Icon;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
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", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var DebugPlay = function DebugPlay(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
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
fillRule: "evenodd",
|
|
56
|
+
clipRule: "evenodd",
|
|
57
|
+
d: "M16.707 1.293a1 1 0 010 1.414L15.45 3.965A4.003 4.003 0 0116 6.15v.266a4.997 4.997 0 011.914 1.47C19.057 7.514 19.97 6.38 19.97 5a1 1 0 112 0 5.057 5.057 0 01-3.146 4.684c.116.425.176.868.176 1.316a1 1 0 11-2 0 3 3 0 00-2.184-2.887.994.994 0 01-.133-.034A3 3 0 0014 8h-4a3 3 0 00-.684.079.993.993 0 01-.132.034A3 3 0 007 11v2.999a5.1 5.1 0 001.672 3.76 1 1 0 11-1.344 1.481c-.385-.349-.73-.739-1.028-1.161C4.996 18.4 4 19.617 4 21a1 1 0 11-2 0c0-2.152 1.417-4.046 3.378-4.732A7.1 7.1 0 015 14.003V14H2a1 1 0 110-2h3v-1c0-.447.06-.887.175-1.311A5.046 5.046 0 012 5a1 1 0 012 0 3.04 3.04 0 002.085 2.89A5 5 0 018 6.417v-.266a4.003 4.003 0 01.55-2.186L7.293 2.707a1 1 0 011.414-1.414l1.257 1.256A4.01 4.01 0 0112 1.993a4.003 4.003 0 012.036.556l1.257-1.256a1 1 0 011.414 0zM13.343 4.51a2.003 2.003 0 00-2.686 0 1.025 1.025 0 01-.146.146A2.002 2.002 0 009.997 6h4.006a2.003 2.003 0 00-.515-1.345 1.002 1.002 0 01-.144-.145z"
|
|
58
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
clipRule: "evenodd",
|
|
61
|
+
d: "M11.773 11.59a1.5 1.5 0 011.522.04l5.878 3.674a2 2 0 010 3.392l-5.878 3.674A1.5 1.5 0 0111 21.098v-8.196a1.5 1.5 0 01.773-1.312zM13 13.804v6.392L18.113 17 13 13.804z"
|
|
62
|
+
}))));
|
|
63
|
+
};
|
|
64
|
+
DebugPlay.propTypes = {
|
|
65
|
+
iconClassName: _propTypes["default"].string,
|
|
66
|
+
spin: _propTypes["default"].bool,
|
|
67
|
+
color: _propTypes["default"].string,
|
|
68
|
+
testid: _propTypes["default"].string,
|
|
69
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
70
|
+
};
|
|
71
|
+
DebugPlay.defaultProps = {
|
|
72
|
+
spin: false,
|
|
73
|
+
color: 'currentColor',
|
|
74
|
+
size: '1em'
|
|
75
|
+
};
|
|
76
|
+
var _default = exports["default"] = DebugPlay;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
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", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var OfflineSync = function OfflineSync(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
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
fillRule: "evenodd",
|
|
56
|
+
clipRule: "evenodd",
|
|
57
|
+
d: "M8.282 4.81a.913.913 0 01.768.407l.006.008.733 1.082a2.723 2.723 0 002.275 1.217h7.209a.903.903 0 01.91.905v.452c-.001.5.406.905.908.905S22 9.38 22 8.88v-.452c0-.72-.287-1.41-.799-1.92a2.734 2.734 0 00-1.928-.795h-7.21a.912.912 0 01-.758-.407l-.006-.008-.734-1.082A2.723 2.723 0 008.27 3H4.727c-.723 0-1.417.286-1.928.795A2.708 2.708 0 002 5.715v11.761c0 .72.287 1.41.799 1.92a2.734 2.734 0 001.928.794h4.546c.502 0 .909-.405.909-.904 0-.5-.407-.905-.91-.905H4.728a.911.911 0 01-.909-.905V5.714c0-.24.096-.47.266-.64a.911.911 0 01.643-.264H8.282zm9.172 11.761a.907.907 0 00-.909.905c0 .5.407.905.91.905h1.496a3.641 3.641 0 01-3.075.843 3.645 3.645 0 01-2.629-2.034.911.911 0 00-1.207-.44.903.903 0 00-.442 1.202c.366.784.914 1.47 1.6 2a5.468 5.468 0 004.908.916 5.46 5.46 0 002.076-1.155v1.382c0 .5.407.905.909.905s.909-.405.909-.905v-3.629a.898.898 0 00-.3-.661.908.908 0 00-.61-.234h-3.636zM12 9.333c.502 0 .91.405.91.905v1.68l.131-.138a5.46 5.46 0 012.246-1.315 5.48 5.48 0 014.909.916 5.433 5.433 0 011.6 2 .903.903 0 01-.442 1.202.91.91 0 01-1.207-.44 3.622 3.622 0 00-2.629-2.033 3.652 3.652 0 00-3.075.842h1.193c.502 0 .91.405.91.905s-.408.905-.91.905H12a.907.907 0 01-.91-.905v-3.619c0-.5.408-.905.91-.905z"
|
|
58
|
+
}))));
|
|
59
|
+
};
|
|
60
|
+
OfflineSync.propTypes = {
|
|
61
|
+
iconClassName: _propTypes["default"].string,
|
|
62
|
+
spin: _propTypes["default"].bool,
|
|
63
|
+
color: _propTypes["default"].string,
|
|
64
|
+
testid: _propTypes["default"].string,
|
|
65
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
66
|
+
};
|
|
67
|
+
OfflineSync.defaultProps = {
|
|
68
|
+
spin: false,
|
|
69
|
+
color: 'currentColor',
|
|
70
|
+
size: '1em'
|
|
71
|
+
};
|
|
72
|
+
var _default = exports["default"] = OfflineSync;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
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", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var SatelliteDish = function SatelliteDish(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
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
d: "M11 2a1 1 0 000 2 9 9 0 019 9 1 1 0 002 0A11 11 0 0011 2z"
|
|
56
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
+
d: "M10 7a1 1 0 011-1 7 7 0 017 7 1 1 0 11-2 0 5 5 0 00-5-5 1 1 0 01-1-1z"
|
|
58
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
clipRule: "evenodd",
|
|
61
|
+
d: "M4.707 9.293a1 1 0 00-1.57.202 8.31 8.31 0 0011.368 11.368 1 1 0 00.202-1.57L10.414 15l2.293-2.293a1 1 0 00-1.414-1.414L9 13.586 4.707 9.293zm-.393 2.435a6.31 6.31 0 007.959 7.959l-7.96-7.96z"
|
|
62
|
+
}))));
|
|
63
|
+
};
|
|
64
|
+
SatelliteDish.propTypes = {
|
|
65
|
+
iconClassName: _propTypes["default"].string,
|
|
66
|
+
spin: _propTypes["default"].bool,
|
|
67
|
+
color: _propTypes["default"].string,
|
|
68
|
+
testid: _propTypes["default"].string,
|
|
69
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
70
|
+
};
|
|
71
|
+
SatelliteDish.defaultProps = {
|
|
72
|
+
spin: false,
|
|
73
|
+
color: 'currentColor',
|
|
74
|
+
size: '1em'
|
|
75
|
+
};
|
|
76
|
+
var _default = exports["default"] = SatelliteDish;
|
package/dist/lib/index.js
CHANGED
|
@@ -639,6 +639,12 @@ Object.defineProperty(exports, "TaDebug", {
|
|
|
639
639
|
return _debug["default"];
|
|
640
640
|
}
|
|
641
641
|
});
|
|
642
|
+
Object.defineProperty(exports, "TaDebugPlay", {
|
|
643
|
+
enumerable: true,
|
|
644
|
+
get: function get() {
|
|
645
|
+
return _debugPlay["default"];
|
|
646
|
+
}
|
|
647
|
+
});
|
|
642
648
|
Object.defineProperty(exports, "TaDelete1", {
|
|
643
649
|
enumerable: true,
|
|
644
650
|
get: function get() {
|
|
@@ -1809,6 +1815,12 @@ Object.defineProperty(exports, "TaOffline", {
|
|
|
1809
1815
|
return _offline["default"];
|
|
1810
1816
|
}
|
|
1811
1817
|
});
|
|
1818
|
+
Object.defineProperty(exports, "TaOfflineSync", {
|
|
1819
|
+
enumerable: true,
|
|
1820
|
+
get: function get() {
|
|
1821
|
+
return _offlineSync["default"];
|
|
1822
|
+
}
|
|
1823
|
+
});
|
|
1812
1824
|
Object.defineProperty(exports, "TaOneTime", {
|
|
1813
1825
|
enumerable: true,
|
|
1814
1826
|
get: function get() {
|
|
@@ -2157,6 +2169,12 @@ Object.defineProperty(exports, "TaSWorkspace", {
|
|
|
2157
2169
|
return _sWorkspace["default"];
|
|
2158
2170
|
}
|
|
2159
2171
|
});
|
|
2172
|
+
Object.defineProperty(exports, "TaSatelliteDish", {
|
|
2173
|
+
enumerable: true,
|
|
2174
|
+
get: function get() {
|
|
2175
|
+
return _satelliteDish["default"];
|
|
2176
|
+
}
|
|
2177
|
+
});
|
|
2160
2178
|
Object.defineProperty(exports, "TaSave", {
|
|
2161
2179
|
enumerable: true,
|
|
2162
2180
|
get: function get() {
|
|
@@ -2934,12 +2952,12 @@ var _book = _interopRequireDefault(require("./icons/book"));
|
|
|
2934
2952
|
var _book2 = _interopRequireDefault(require("./icons/book-2"));
|
|
2935
2953
|
var _sticker = _interopRequireDefault(require("./icons/sticker"));
|
|
2936
2954
|
var _stickerFill = _interopRequireDefault(require("./icons/sticker-fill"));
|
|
2937
|
-
var _alignLeft = _interopRequireDefault(require("./icons/align-left"));
|
|
2938
2955
|
var _alignCenter = _interopRequireDefault(require("./icons/align-center"));
|
|
2939
2956
|
var _alignRight = _interopRequireDefault(require("./icons/align-right"));
|
|
2940
2957
|
var _tableClassic = _interopRequireDefault(require("./icons/table-classic "));
|
|
2941
2958
|
var _tableStriped = _interopRequireDefault(require("./icons/table-striped"));
|
|
2942
2959
|
var _tableSimple = _interopRequireDefault(require("./icons/table-simple "));
|
|
2960
|
+
var _alignLeft = _interopRequireDefault(require("./icons/align-left"));
|
|
2943
2961
|
var _operatorEqual = _interopRequireDefault(require("./icons/operator-equal"));
|
|
2944
2962
|
var _operatorUnequal = _interopRequireDefault(require("./icons/operator-unequal"));
|
|
2945
2963
|
var _operatorDivide = _interopRequireDefault(require("./icons/operator-divide"));
|
|
@@ -3107,6 +3125,7 @@ var _tableCol = _interopRequireDefault(require("./icons/table-col"));
|
|
|
3107
3125
|
var _copyQuery = _interopRequireDefault(require("./icons/copy-query"));
|
|
3108
3126
|
var _copyDdl = _interopRequireDefault(require("./icons/copy-ddl"));
|
|
3109
3127
|
var _autoLayout = _interopRequireDefault(require("./icons/auto-layout"));
|
|
3128
|
+
var _debugPlay = _interopRequireDefault(require("./icons/debug-play"));
|
|
3110
3129
|
var _user = _interopRequireDefault(require("./icons/user-1"));
|
|
3111
3130
|
var _user1Fill = _interopRequireDefault(require("./icons/user-1-fill"));
|
|
3112
3131
|
var _user2 = _interopRequireDefault(require("./icons/user-2"));
|
|
@@ -3218,6 +3237,7 @@ var _find = _interopRequireDefault(require("./icons/find"));
|
|
|
3218
3237
|
var _arrowGoBack = _interopRequireDefault(require("./icons/arrow-go-back"));
|
|
3219
3238
|
var _arrowGoForward = _interopRequireDefault(require("./icons/arrow-go-forward"));
|
|
3220
3239
|
var _recycle = _interopRequireDefault(require("./icons/recycle"));
|
|
3240
|
+
var _offlineSync = _interopRequireDefault(require("./icons/offline-sync"));
|
|
3221
3241
|
var _info = _interopRequireDefault(require("./icons/info"));
|
|
3222
3242
|
var _infoFill = _interopRequireDefault(require("./icons/info-fill"));
|
|
3223
3243
|
var _help = _interopRequireDefault(require("./icons/help"));
|
|
@@ -3293,4 +3313,5 @@ var _box = _interopRequireDefault(require("./icons/box"));
|
|
|
3293
3313
|
var _shutDown = _interopRequireDefault(require("./icons/shut-down"));
|
|
3294
3314
|
var _database = _interopRequireDefault(require("./icons/database"));
|
|
3295
3315
|
var _terminal = _interopRequireDefault(require("./icons/terminal"));
|
|
3316
|
+
var _satelliteDish = _interopRequireDefault(require("./icons/satellite-dish"));
|
|
3296
3317
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|