@tant/icons 1.21.76 → 1.21.78
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/custom.js +63 -0
- package/dist/es/icons/progress-bar-cl.js +69 -0
- package/dist/es/icons/simple-aggregation.js +63 -0
- package/dist/es/index.js +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/lib/icons/custom.js +70 -0
- package/dist/lib/icons/progress-bar-cl.js +76 -0
- package/dist/lib/icons/simple-aggregation.js +70 -0
- package/dist/lib/index.js +21 -0
- package/dist/tant-icons.cjs.js +1542 -1377
- package/dist/tant-icons.esm.js +1540 -1378
- package/package.json +1 -1
|
@@ -0,0 +1,63 @@
|
|
|
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 n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(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 (-1 !== e.indexOf(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 Custom = function Custom(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: "M5 18l7.68-6L5 6V4h14v2H8.263L16 12l-7.737 6H19v2H5v-2z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
Custom.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
testid: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
Custom.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Custom;
|
|
@@ -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 n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(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 (-1 !== e.indexOf(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 ProgressBarCl = function ProgressBarCl(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
|
+
fill: "none",
|
|
47
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
48
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
49
|
+
d: "M12 1.09C6 1.09 1.09 6 1.09 12S6 22.91 12 22.91 22.909 18 22.909 12s-4.91-10.91-10.91-10.91zm0 17.456c-3.6 0-6.546-2.946-6.546-6.546S8.4 5.455 12 5.455 18.545 8.4 18.545 12 15.6 18.546 12 18.546z",
|
|
50
|
+
fill: "#7E7F80"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
opacity: ".5",
|
|
53
|
+
d: "M20.727 14.618c-1.2 0-2.182-.982-2.182-2.182V12c0-3.6-2.945-6.545-6.545-6.545-1.2 0-2.182-.982-2.182-2.182S10.8 1.09 12 1.09C18 1.09 22.909 6 22.909 12v.436c0 1.2-.982 2.182-2.182 2.182z",
|
|
54
|
+
fill: "#BDBEBF"
|
|
55
|
+
}))));
|
|
56
|
+
};
|
|
57
|
+
ProgressBarCl.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
|
+
ProgressBarCl.defaultProps = {
|
|
65
|
+
spin: false,
|
|
66
|
+
color: 'currentColor',
|
|
67
|
+
size: '1em'
|
|
68
|
+
};
|
|
69
|
+
export default ProgressBarCl;
|
|
@@ -0,0 +1,63 @@
|
|
|
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 n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(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 (-1 !== e.indexOf(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 SimpleAggregation = function SimpleAggregation(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: "M13.059 3.693c0 .042-.005.107-.015.2-.01.091-.023.195-.04.31a5.403 5.403 0 01-.064.357c-.025.116-.056.23-.095.342a1.01 1.01 0 01-.124.255c-.046.065-.096.097-.149.097-.04 0-.09-.01-.153-.031a9.93 9.93 0 00-.214-.066 2.98 2.98 0 00-.272-.067c-.11-.02-.221-.03-.333-.03a1.5 1.5 0 00-.55.092.995.995 0 00-.402.29 1.734 1.734 0 00-.288.515 4.374 4.374 0 00-.198.756l-.149.774h1.607c.1 0 .169.032.209.097.04.065.06.169.06.311a3.07 3.07 0 01-.07.617 3.625 3.625 0 01-.229.709.868.868 0 01-.163.25.281.281 0 01-.204.097H9.597l-1.558 7.995a6.8 6.8 0 01-.461 1.489 3.501 3.501 0 01-.74 1.076 2.908 2.908 0 01-1.056.652c-.406.147-.868.22-1.384.22-.343 0-.631-.027-.863-.081-.231-.055-.38-.11-.446-.164a.364.364 0 01-.07-.133.804.804 0 01-.02-.203 4.743 4.743 0 01.134-.867c.03-.122.063-.235.1-.337.03-.088.071-.172.124-.25.046-.064.1-.096.159-.096a.74.74 0 01.119.01c.04.006.082.015.129.025.046.01.1.019.163.026a2.3 2.3 0 00.243.01c.212 0 .395-.033.55-.097.156-.065.29-.165.403-.301.112-.136.208-.311.287-.525.09-.254.16-.515.209-.78l1.498-7.67H6.005a.215.215 0 01-.184-.086c-.043-.058-.064-.168-.064-.332.004-.205.026-.41.064-.611.024-.123.052-.247.085-.373.03-.116.073-.23.129-.336a1.11 1.11 0 01.173-.245.301.301 0 01.224-.096h1.09l.19-1.01a6.183 6.183 0 01.465-1.51c.205-.434.458-.798.76-1.091a2.922 2.922 0 011.06-.657c.408-.147.87-.22 1.385-.22.172 0 .344.009.516.026.172.017.327.04.466.071.14.03.261.066.367.107a.627.627 0 01.218.122c.04.034.068.082.085.143a.875.875 0 01.025.224zm4.636 8.68l1.629 4.353a.494.494 0 01.02.274c-.02.072-.083.13-.188.177a1.485 1.485 0 01-.453.093 9.486 9.486 0 01-.763.024 8.9 8.9 0 01-.672-.02 1.95 1.95 0 01-.377-.059c-.088-.026-.147-.061-.178-.107a.473.473 0 01-.066-.157l-1.1-3.088-2.3 3.098a.759.759 0 01-.137.152.609.609 0 01-.254.102 3.227 3.227 0 01-.468.06c-.194.013-.453.02-.779.02a7.956 7.956 0 01-.702-.026 1.095 1.095 0 01-.387-.087c-.081-.043-.117-.098-.107-.167a.723.723 0 01.127-.27l3.45-4.353-1.516-4.039c-.04-.117-.054-.214-.04-.29.013-.075.066-.135.157-.18.092-.046.234-.077.428-.094.256-.018.512-.027.768-.024.278 0 .497.005.657.014.16.01.281.025.366.045.085.02.143.05.173.093.03.042.056.096.076.162L16.118 11l2.188-2.921a.873.873 0 01.132-.138.597.597 0 01.224-.098c.102-.026.234-.045.397-.058.163-.014.384-.02.662-.02.312 0 .561.006.748.02.187.013.324.038.412.077.088.04.127.094.117.162-.01.069-.06.163-.147.28l-3.155 4.069z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
SimpleAggregation.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
testid: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
SimpleAggregation.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default SimpleAggregation;
|
package/dist/es/index.js
CHANGED
|
@@ -204,6 +204,7 @@ export { default as TaMSql } from './icons/m-sql';
|
|
|
204
204
|
export { default as TaUTag } from './icons/u-tag';
|
|
205
205
|
export { default as TaMProperty } from './icons/m-property';
|
|
206
206
|
export { default as TaUGroup } from './icons/u-group';
|
|
207
|
+
export { default as TaProgressBarCl } from './icons/progress-bar-cl';
|
|
207
208
|
export { default as TaSSpace } from './icons/s-space';
|
|
208
209
|
export { default as TaProject } from './icons/project';
|
|
209
210
|
export { default as TaSpace } from './icons/space';
|
|
@@ -225,6 +226,8 @@ export { default as TaSql3 } from './icons/sql-3';
|
|
|
225
226
|
export { default as TaBiVendor } from './icons/bi-vendor';
|
|
226
227
|
export { default as TaBiPage } from './icons/bi-page';
|
|
227
228
|
export { default as TaParameterControl } from './icons/parameter-control';
|
|
229
|
+
export { default as TaCustom } from './icons/custom';
|
|
230
|
+
export { default as TaSimpleAggregation } from './icons/simple-aggregation';
|
|
228
231
|
export { default as TaAnalysis } from './icons/analysis';
|
|
229
232
|
export { default as TaFilter } from './icons/filter';
|
|
230
233
|
export { default as TaFilter2 } from './icons/filter-2';
|
package/dist/index.d.ts
CHANGED
|
@@ -216,6 +216,7 @@ export const TaMSql: Icon;
|
|
|
216
216
|
export const TaUTag: Icon;
|
|
217
217
|
export const TaMProperty: Icon;
|
|
218
218
|
export const TaUGroup: Icon;
|
|
219
|
+
export const TaProgressBarCl: Icon;
|
|
219
220
|
export const TaSSpace: Icon;
|
|
220
221
|
export const TaProject: Icon;
|
|
221
222
|
export const TaSpace: Icon;
|
|
@@ -237,6 +238,8 @@ export const TaSql3: Icon;
|
|
|
237
238
|
export const TaBiVendor: Icon;
|
|
238
239
|
export const TaBiPage: Icon;
|
|
239
240
|
export const TaParameterControl: Icon;
|
|
241
|
+
export const TaCustom: Icon;
|
|
242
|
+
export const TaSimpleAggregation: Icon;
|
|
240
243
|
export const TaAnalysis: Icon;
|
|
241
244
|
export const TaFilter: Icon;
|
|
242
245
|
export const TaFilter2: Icon;
|
|
@@ -0,0 +1,70 @@
|
|
|
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 n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(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 (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var Custom = function Custom(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: "M5 18l7.68-6L5 6V4h14v2H8.263L16 12l-7.737 6H19v2H5v-2z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
Custom.propTypes = {
|
|
59
|
+
iconClassName: _propTypes["default"].string,
|
|
60
|
+
spin: _propTypes["default"].bool,
|
|
61
|
+
color: _propTypes["default"].string,
|
|
62
|
+
testid: _propTypes["default"].string,
|
|
63
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
|
+
};
|
|
65
|
+
Custom.defaultProps = {
|
|
66
|
+
spin: false,
|
|
67
|
+
color: 'currentColor',
|
|
68
|
+
size: '1em'
|
|
69
|
+
};
|
|
70
|
+
var _default = exports["default"] = Custom;
|
|
@@ -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 n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(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 (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var ProgressBarCl = function ProgressBarCl(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
|
+
fill: "none",
|
|
54
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
55
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
56
|
+
d: "M12 1.09C6 1.09 1.09 6 1.09 12S6 22.91 12 22.91 22.909 18 22.909 12s-4.91-10.91-10.91-10.91zm0 17.456c-3.6 0-6.546-2.946-6.546-6.546S8.4 5.455 12 5.455 18.545 8.4 18.545 12 15.6 18.546 12 18.546z",
|
|
57
|
+
fill: "#7E7F80"
|
|
58
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
+
opacity: ".5",
|
|
60
|
+
d: "M20.727 14.618c-1.2 0-2.182-.982-2.182-2.182V12c0-3.6-2.945-6.545-6.545-6.545-1.2 0-2.182-.982-2.182-2.182S10.8 1.09 12 1.09C18 1.09 22.909 6 22.909 12v.436c0 1.2-.982 2.182-2.182 2.182z",
|
|
61
|
+
fill: "#BDBEBF"
|
|
62
|
+
}))));
|
|
63
|
+
};
|
|
64
|
+
ProgressBarCl.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
|
+
ProgressBarCl.defaultProps = {
|
|
72
|
+
spin: false,
|
|
73
|
+
color: 'currentColor',
|
|
74
|
+
size: '1em'
|
|
75
|
+
};
|
|
76
|
+
var _default = exports["default"] = ProgressBarCl;
|
|
@@ -0,0 +1,70 @@
|
|
|
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 n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(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 (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var SimpleAggregation = function SimpleAggregation(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: "M13.059 3.693c0 .042-.005.107-.015.2-.01.091-.023.195-.04.31a5.403 5.403 0 01-.064.357c-.025.116-.056.23-.095.342a1.01 1.01 0 01-.124.255c-.046.065-.096.097-.149.097-.04 0-.09-.01-.153-.031a9.93 9.93 0 00-.214-.066 2.98 2.98 0 00-.272-.067c-.11-.02-.221-.03-.333-.03a1.5 1.5 0 00-.55.092.995.995 0 00-.402.29 1.734 1.734 0 00-.288.515 4.374 4.374 0 00-.198.756l-.149.774h1.607c.1 0 .169.032.209.097.04.065.06.169.06.311a3.07 3.07 0 01-.07.617 3.625 3.625 0 01-.229.709.868.868 0 01-.163.25.281.281 0 01-.204.097H9.597l-1.558 7.995a6.8 6.8 0 01-.461 1.489 3.501 3.501 0 01-.74 1.076 2.908 2.908 0 01-1.056.652c-.406.147-.868.22-1.384.22-.343 0-.631-.027-.863-.081-.231-.055-.38-.11-.446-.164a.364.364 0 01-.07-.133.804.804 0 01-.02-.203 4.743 4.743 0 01.134-.867c.03-.122.063-.235.1-.337.03-.088.071-.172.124-.25.046-.064.1-.096.159-.096a.74.74 0 01.119.01c.04.006.082.015.129.025.046.01.1.019.163.026a2.3 2.3 0 00.243.01c.212 0 .395-.033.55-.097.156-.065.29-.165.403-.301.112-.136.208-.311.287-.525.09-.254.16-.515.209-.78l1.498-7.67H6.005a.215.215 0 01-.184-.086c-.043-.058-.064-.168-.064-.332.004-.205.026-.41.064-.611.024-.123.052-.247.085-.373.03-.116.073-.23.129-.336a1.11 1.11 0 01.173-.245.301.301 0 01.224-.096h1.09l.19-1.01a6.183 6.183 0 01.465-1.51c.205-.434.458-.798.76-1.091a2.922 2.922 0 011.06-.657c.408-.147.87-.22 1.385-.22.172 0 .344.009.516.026.172.017.327.04.466.071.14.03.261.066.367.107a.627.627 0 01.218.122c.04.034.068.082.085.143a.875.875 0 01.025.224zm4.636 8.68l1.629 4.353a.494.494 0 01.02.274c-.02.072-.083.13-.188.177a1.485 1.485 0 01-.453.093 9.486 9.486 0 01-.763.024 8.9 8.9 0 01-.672-.02 1.95 1.95 0 01-.377-.059c-.088-.026-.147-.061-.178-.107a.473.473 0 01-.066-.157l-1.1-3.088-2.3 3.098a.759.759 0 01-.137.152.609.609 0 01-.254.102 3.227 3.227 0 01-.468.06c-.194.013-.453.02-.779.02a7.956 7.956 0 01-.702-.026 1.095 1.095 0 01-.387-.087c-.081-.043-.117-.098-.107-.167a.723.723 0 01.127-.27l3.45-4.353-1.516-4.039c-.04-.117-.054-.214-.04-.29.013-.075.066-.135.157-.18.092-.046.234-.077.428-.094.256-.018.512-.027.768-.024.278 0 .497.005.657.014.16.01.281.025.366.045.085.02.143.05.173.093.03.042.056.096.076.162L16.118 11l2.188-2.921a.873.873 0 01.132-.138.597.597 0 01.224-.098c.102-.026.234-.045.397-.058.163-.014.384-.02.662-.02.312 0 .561.006.748.02.187.013.324.038.412.077.088.04.127.094.117.162-.01.069-.06.163-.147.28l-3.155 4.069z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
SimpleAggregation.propTypes = {
|
|
59
|
+
iconClassName: _propTypes["default"].string,
|
|
60
|
+
spin: _propTypes["default"].bool,
|
|
61
|
+
color: _propTypes["default"].string,
|
|
62
|
+
testid: _propTypes["default"].string,
|
|
63
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
|
+
};
|
|
65
|
+
SimpleAggregation.defaultProps = {
|
|
66
|
+
spin: false,
|
|
67
|
+
color: 'currentColor',
|
|
68
|
+
size: '1em'
|
|
69
|
+
};
|
|
70
|
+
var _default = exports["default"] = SimpleAggregation;
|
package/dist/lib/index.js
CHANGED
|
@@ -669,6 +669,12 @@ Object.defineProperty(exports, "TaCurrency", {
|
|
|
669
669
|
return _currency["default"];
|
|
670
670
|
}
|
|
671
671
|
});
|
|
672
|
+
Object.defineProperty(exports, "TaCustom", {
|
|
673
|
+
enumerable: true,
|
|
674
|
+
get: function get() {
|
|
675
|
+
return _custom["default"];
|
|
676
|
+
}
|
|
677
|
+
});
|
|
672
678
|
Object.defineProperty(exports, "TaCustomPartition", {
|
|
673
679
|
enumerable: true,
|
|
674
680
|
get: function get() {
|
|
@@ -2409,6 +2415,12 @@ Object.defineProperty(exports, "TaProgress", {
|
|
|
2409
2415
|
return _progress["default"];
|
|
2410
2416
|
}
|
|
2411
2417
|
});
|
|
2418
|
+
Object.defineProperty(exports, "TaProgressBarCl", {
|
|
2419
|
+
enumerable: true,
|
|
2420
|
+
get: function get() {
|
|
2421
|
+
return _progressBarCl["default"];
|
|
2422
|
+
}
|
|
2423
|
+
});
|
|
2412
2424
|
Object.defineProperty(exports, "TaProject", {
|
|
2413
2425
|
enumerable: true,
|
|
2414
2426
|
get: function get() {
|
|
@@ -2649,6 +2661,12 @@ Object.defineProperty(exports, "TaShutDown", {
|
|
|
2649
2661
|
return _shutDown["default"];
|
|
2650
2662
|
}
|
|
2651
2663
|
});
|
|
2664
|
+
Object.defineProperty(exports, "TaSimpleAggregation", {
|
|
2665
|
+
enumerable: true,
|
|
2666
|
+
get: function get() {
|
|
2667
|
+
return _simpleAggregation["default"];
|
|
2668
|
+
}
|
|
2669
|
+
});
|
|
2652
2670
|
Object.defineProperty(exports, "TaSmile", {
|
|
2653
2671
|
enumerable: true,
|
|
2654
2672
|
get: function get() {
|
|
@@ -3515,6 +3533,7 @@ var _mSql = _interopRequireDefault(require("./icons/m-sql"));
|
|
|
3515
3533
|
var _uTag = _interopRequireDefault(require("./icons/u-tag"));
|
|
3516
3534
|
var _mProperty = _interopRequireDefault(require("./icons/m-property"));
|
|
3517
3535
|
var _uGroup = _interopRequireDefault(require("./icons/u-group"));
|
|
3536
|
+
var _progressBarCl = _interopRequireDefault(require("./icons/progress-bar-cl"));
|
|
3518
3537
|
var _sSpace = _interopRequireDefault(require("./icons/s-space"));
|
|
3519
3538
|
var _project = _interopRequireDefault(require("./icons/project"));
|
|
3520
3539
|
var _space = _interopRequireDefault(require("./icons/space"));
|
|
@@ -3536,6 +3555,8 @@ var _sql3 = _interopRequireDefault(require("./icons/sql-3"));
|
|
|
3536
3555
|
var _biVendor = _interopRequireDefault(require("./icons/bi-vendor"));
|
|
3537
3556
|
var _biPage = _interopRequireDefault(require("./icons/bi-page"));
|
|
3538
3557
|
var _parameterControl = _interopRequireDefault(require("./icons/parameter-control"));
|
|
3558
|
+
var _custom = _interopRequireDefault(require("./icons/custom"));
|
|
3559
|
+
var _simpleAggregation = _interopRequireDefault(require("./icons/simple-aggregation"));
|
|
3539
3560
|
var _analysis = _interopRequireDefault(require("./icons/analysis"));
|
|
3540
3561
|
var _filter = _interopRequireDefault(require("./icons/filter"));
|
|
3541
3562
|
var _filter2 = _interopRequireDefault(require("./icons/filter-2"));
|