@tant/icons 1.21.78 → 1.21.81
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/{progress-bar-cl.js → progress-bar.js} +6 -10
- package/dist/es/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/lib/icons/{progress-bar-cl.js → progress-bar.js} +6 -10
- package/dist/lib/index.js +3 -3
- package/dist/tant-icons.cjs.js +92 -96
- package/dist/tant-icons.esm.js +92 -96
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t =
|
|
|
11
11
|
import React from 'react';
|
|
12
12
|
import PropTypes from 'prop-types';
|
|
13
13
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
-
var
|
|
14
|
+
var ProgressBar = function ProgressBar(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -43,27 +43,23 @@ var ProgressBarCl = function ProgressBarCl(props) {
|
|
|
43
43
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
44
|
width: "24",
|
|
45
45
|
height: "24",
|
|
46
|
-
fill: "none",
|
|
47
46
|
xmlns: "http://www.w3.org/2000/svg"
|
|
48
47
|
}, /*#__PURE__*/React.createElement("path", {
|
|
49
|
-
d: "
|
|
50
|
-
fill: "#7E7F80"
|
|
48
|
+
d: "M1.5 12c0 5.816 4.684 10.5 10.5 10.5 5.762 0 10.5-4.738 10.5-10.5 0-5.761-4.738-10.5-10.5-10.5v1.615A8.894 8.894 0 0120.884 12 8.894 8.894 0 0112 20.884 8.894 8.894 0 013.116 12H1.5z"
|
|
51
49
|
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
-
|
|
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"
|
|
50
|
+
d: "M9.43 12a1.926 1.926 0 110-3.855 1.926 1.926 0 010 3.857V12zm0-2.57a.642.642 0 100 1.284.642.642 0 000-1.283zm5.14 6.428a1.925 1.925 0 01-1.363-3.293 1.929 1.929 0 013.281 1.553 1.928 1.928 0 01-1.919 1.739v.001zm0-2.571a.642.642 0 100 1.284.642.642 0 000-1.284zM8.145 16.5a.643.643 0 01-.456-1.1L15.4 7.69a.646.646 0 11.912.912L8.6 16.314a.64.64 0 01-.455.186z"
|
|
55
51
|
}))));
|
|
56
52
|
};
|
|
57
|
-
|
|
53
|
+
ProgressBar.propTypes = {
|
|
58
54
|
iconClassName: PropTypes.string,
|
|
59
55
|
spin: PropTypes.bool,
|
|
60
56
|
color: PropTypes.string,
|
|
61
57
|
testid: PropTypes.string,
|
|
62
58
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
63
59
|
};
|
|
64
|
-
|
|
60
|
+
ProgressBar.defaultProps = {
|
|
65
61
|
spin: false,
|
|
66
62
|
color: 'currentColor',
|
|
67
63
|
size: '1em'
|
|
68
64
|
};
|
|
69
|
-
export default
|
|
65
|
+
export default ProgressBar;
|
package/dist/es/index.js
CHANGED
|
@@ -194,6 +194,7 @@ export { default as TaProgress } from './icons/progress';
|
|
|
194
194
|
export { default as TaDashboardPlan } from './icons/dashboard-plan';
|
|
195
195
|
export { default as TaRipple } from './icons/ripple';
|
|
196
196
|
export { default as TaChartView } from './icons/chart-view';
|
|
197
|
+
export { default as TaProgressBar } from './icons/progress-bar';
|
|
197
198
|
export { default as TaMEvent } from './icons/m-event';
|
|
198
199
|
export { default as TaMRetention } from './icons/m-retention';
|
|
199
200
|
export { default as TaMFunnel } from './icons/m-funnel';
|
|
@@ -204,7 +205,6 @@ export { default as TaMSql } from './icons/m-sql';
|
|
|
204
205
|
export { default as TaUTag } from './icons/u-tag';
|
|
205
206
|
export { default as TaMProperty } from './icons/m-property';
|
|
206
207
|
export { default as TaUGroup } from './icons/u-group';
|
|
207
|
-
export { default as TaProgressBarCl } from './icons/progress-bar-cl';
|
|
208
208
|
export { default as TaSSpace } from './icons/s-space';
|
|
209
209
|
export { default as TaProject } from './icons/project';
|
|
210
210
|
export { default as TaSpace } from './icons/space';
|
package/dist/index.d.ts
CHANGED
|
@@ -206,6 +206,7 @@ export const TaProgress: Icon;
|
|
|
206
206
|
export const TaDashboardPlan: Icon;
|
|
207
207
|
export const TaRipple: Icon;
|
|
208
208
|
export const TaChartView: Icon;
|
|
209
|
+
export const TaProgressBar: Icon;
|
|
209
210
|
export const TaMEvent: Icon;
|
|
210
211
|
export const TaMRetention: Icon;
|
|
211
212
|
export const TaMFunnel: Icon;
|
|
@@ -216,7 +217,6 @@ export const TaMSql: Icon;
|
|
|
216
217
|
export const TaUTag: Icon;
|
|
217
218
|
export const TaMProperty: Icon;
|
|
218
219
|
export const TaUGroup: Icon;
|
|
219
|
-
export const TaProgressBarCl: Icon;
|
|
220
220
|
export const TaSSpace: Icon;
|
|
221
221
|
export const TaProject: Icon;
|
|
222
222
|
export const TaSpace: Icon;
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
18
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
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
20
|
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
-
var
|
|
21
|
+
var ProgressBar = function ProgressBar(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -50,27 +50,23 @@ var ProgressBarCl = function ProgressBarCl(props) {
|
|
|
50
50
|
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
51
|
width: "24",
|
|
52
52
|
height: "24",
|
|
53
|
-
fill: "none",
|
|
54
53
|
xmlns: "http://www.w3.org/2000/svg"
|
|
55
54
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
56
|
-
d: "
|
|
57
|
-
fill: "#7E7F80"
|
|
55
|
+
d: "M1.5 12c0 5.816 4.684 10.5 10.5 10.5 5.762 0 10.5-4.738 10.5-10.5 0-5.761-4.738-10.5-10.5-10.5v1.615A8.894 8.894 0 0120.884 12 8.894 8.894 0 0112 20.884 8.894 8.894 0 013.116 12H1.5z"
|
|
58
56
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
-
|
|
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"
|
|
57
|
+
d: "M9.43 12a1.926 1.926 0 110-3.855 1.926 1.926 0 010 3.857V12zm0-2.57a.642.642 0 100 1.284.642.642 0 000-1.283zm5.14 6.428a1.925 1.925 0 01-1.363-3.293 1.929 1.929 0 013.281 1.553 1.928 1.928 0 01-1.919 1.739v.001zm0-2.571a.642.642 0 100 1.284.642.642 0 000-1.284zM8.145 16.5a.643.643 0 01-.456-1.1L15.4 7.69a.646.646 0 11.912.912L8.6 16.314a.64.64 0 01-.455.186z"
|
|
62
58
|
}))));
|
|
63
59
|
};
|
|
64
|
-
|
|
60
|
+
ProgressBar.propTypes = {
|
|
65
61
|
iconClassName: _propTypes["default"].string,
|
|
66
62
|
spin: _propTypes["default"].bool,
|
|
67
63
|
color: _propTypes["default"].string,
|
|
68
64
|
testid: _propTypes["default"].string,
|
|
69
65
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
70
66
|
};
|
|
71
|
-
|
|
67
|
+
ProgressBar.defaultProps = {
|
|
72
68
|
spin: false,
|
|
73
69
|
color: 'currentColor',
|
|
74
70
|
size: '1em'
|
|
75
71
|
};
|
|
76
|
-
var _default = exports["default"] =
|
|
72
|
+
var _default = exports["default"] = ProgressBar;
|
package/dist/lib/index.js
CHANGED
|
@@ -2415,10 +2415,10 @@ Object.defineProperty(exports, "TaProgress", {
|
|
|
2415
2415
|
return _progress["default"];
|
|
2416
2416
|
}
|
|
2417
2417
|
});
|
|
2418
|
-
Object.defineProperty(exports, "
|
|
2418
|
+
Object.defineProperty(exports, "TaProgressBar", {
|
|
2419
2419
|
enumerable: true,
|
|
2420
2420
|
get: function get() {
|
|
2421
|
-
return
|
|
2421
|
+
return _progressBar["default"];
|
|
2422
2422
|
}
|
|
2423
2423
|
});
|
|
2424
2424
|
Object.defineProperty(exports, "TaProject", {
|
|
@@ -3523,6 +3523,7 @@ var _progress = _interopRequireDefault(require("./icons/progress"));
|
|
|
3523
3523
|
var _dashboardPlan = _interopRequireDefault(require("./icons/dashboard-plan"));
|
|
3524
3524
|
var _ripple = _interopRequireDefault(require("./icons/ripple"));
|
|
3525
3525
|
var _chartView = _interopRequireDefault(require("./icons/chart-view"));
|
|
3526
|
+
var _progressBar = _interopRequireDefault(require("./icons/progress-bar"));
|
|
3526
3527
|
var _mEvent = _interopRequireDefault(require("./icons/m-event"));
|
|
3527
3528
|
var _mRetention = _interopRequireDefault(require("./icons/m-retention"));
|
|
3528
3529
|
var _mFunnel = _interopRequireDefault(require("./icons/m-funnel"));
|
|
@@ -3533,7 +3534,6 @@ var _mSql = _interopRequireDefault(require("./icons/m-sql"));
|
|
|
3533
3534
|
var _uTag = _interopRequireDefault(require("./icons/u-tag"));
|
|
3534
3535
|
var _mProperty = _interopRequireDefault(require("./icons/m-property"));
|
|
3535
3536
|
var _uGroup = _interopRequireDefault(require("./icons/u-group"));
|
|
3536
|
-
var _progressBarCl = _interopRequireDefault(require("./icons/progress-bar-cl"));
|
|
3537
3537
|
var _sSpace = _interopRequireDefault(require("./icons/s-space"));
|
|
3538
3538
|
var _project = _interopRequireDefault(require("./icons/project"));
|
|
3539
3539
|
var _space = _interopRequireDefault(require("./icons/space"));
|
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -13163,7 +13163,7 @@ ChartView.defaultProps = {
|
|
|
13163
13163
|
|
|
13164
13164
|
var _excluded$34 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13165
13165
|
var loadingCircleStyle$34 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13166
|
-
var
|
|
13166
|
+
var ProgressBar = function ProgressBar(props) {
|
|
13167
13167
|
var color = props.color,
|
|
13168
13168
|
size = props.size,
|
|
13169
13169
|
spin = props.spin,
|
|
@@ -13196,6 +13196,60 @@ var MEvent = function MEvent(props) {
|
|
|
13196
13196
|
width: "24",
|
|
13197
13197
|
height: "24",
|
|
13198
13198
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13199
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13200
|
+
d: "M1.5 12c0 5.816 4.684 10.5 10.5 10.5 5.762 0 10.5-4.738 10.5-10.5 0-5.761-4.738-10.5-10.5-10.5v1.615A8.894 8.894 0 0120.884 12 8.894 8.894 0 0112 20.884 8.894 8.894 0 013.116 12H1.5z"
|
|
13201
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
13202
|
+
d: "M9.43 12a1.926 1.926 0 110-3.855 1.926 1.926 0 010 3.857V12zm0-2.57a.642.642 0 100 1.284.642.642 0 000-1.283zm5.14 6.428a1.925 1.925 0 01-1.363-3.293 1.929 1.929 0 013.281 1.553 1.928 1.928 0 01-1.919 1.739v.001zm0-2.571a.642.642 0 100 1.284.642.642 0 000-1.284zM8.145 16.5a.643.643 0 01-.456-1.1L15.4 7.69a.646.646 0 11.912.912L8.6 16.314a.64.64 0 01-.455.186z"
|
|
13203
|
+
}))));
|
|
13204
|
+
};
|
|
13205
|
+
ProgressBar.propTypes = {
|
|
13206
|
+
iconClassName: PropTypes.string,
|
|
13207
|
+
spin: PropTypes.bool,
|
|
13208
|
+
color: PropTypes.string,
|
|
13209
|
+
testid: PropTypes.string,
|
|
13210
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13211
|
+
};
|
|
13212
|
+
ProgressBar.defaultProps = {
|
|
13213
|
+
spin: false,
|
|
13214
|
+
color: 'currentColor',
|
|
13215
|
+
size: '1em'
|
|
13216
|
+
};
|
|
13217
|
+
|
|
13218
|
+
var _excluded$35 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13219
|
+
var loadingCircleStyle$35 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13220
|
+
var MEvent = function MEvent(props) {
|
|
13221
|
+
var color = props.color,
|
|
13222
|
+
size = props.size,
|
|
13223
|
+
spin = props.spin,
|
|
13224
|
+
style = props.style,
|
|
13225
|
+
className = props.className,
|
|
13226
|
+
iconClassName = props.iconClassName,
|
|
13227
|
+
testid = props.testid,
|
|
13228
|
+
otherProps = _objectWithoutProperties(props, _excluded$35);
|
|
13229
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
13230
|
+
role: "img",
|
|
13231
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13232
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
13233
|
+
children: loadingCircleStyle$35
|
|
13234
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13235
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13236
|
+
width: size,
|
|
13237
|
+
height: size,
|
|
13238
|
+
viewBox: "0 0 24 24",
|
|
13239
|
+
fill: color
|
|
13240
|
+
}, otherProps, {
|
|
13241
|
+
className: iconClassName,
|
|
13242
|
+
"data-testid": testid,
|
|
13243
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13244
|
+
animationDuration: '1s',
|
|
13245
|
+
animationIterationCount: 'infinite',
|
|
13246
|
+
animationName: 'loadingCircle',
|
|
13247
|
+
animationTimingFunction: 'linear'
|
|
13248
|
+
} : {})
|
|
13249
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
13250
|
+
width: "24",
|
|
13251
|
+
height: "24",
|
|
13252
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13199
13253
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13200
13254
|
d: "M21 12a9 9 0 01-12.25 8.395 4.009 4.009 0 01-1.185 1.674C8.922 22.668 10.422 23 12 23c6.075 0 11-4.925 11-11 0-1.578-.332-3.078-.93-4.435a4.009 4.009 0 01-1.675 1.185A8.979 8.979 0 0121 12z"
|
|
13201
13255
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -13221,8 +13275,8 @@ MEvent.defaultProps = {
|
|
|
13221
13275
|
size: '1em'
|
|
13222
13276
|
};
|
|
13223
13277
|
|
|
13224
|
-
var _excluded$
|
|
13225
|
-
var loadingCircleStyle$
|
|
13278
|
+
var _excluded$36 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13279
|
+
var loadingCircleStyle$36 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13226
13280
|
var MRetention = function MRetention(props) {
|
|
13227
13281
|
var color = props.color,
|
|
13228
13282
|
size = props.size,
|
|
@@ -13231,12 +13285,12 @@ var MRetention = function MRetention(props) {
|
|
|
13231
13285
|
className = props.className,
|
|
13232
13286
|
iconClassName = props.iconClassName,
|
|
13233
13287
|
testid = props.testid,
|
|
13234
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13288
|
+
otherProps = _objectWithoutProperties(props, _excluded$36);
|
|
13235
13289
|
return /*#__PURE__*/React.createElement("span", {
|
|
13236
13290
|
role: "img",
|
|
13237
13291
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13238
13292
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13239
|
-
children: loadingCircleStyle$
|
|
13293
|
+
children: loadingCircleStyle$36
|
|
13240
13294
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13241
13295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13242
13296
|
width: size,
|
|
@@ -13283,8 +13337,8 @@ MRetention.defaultProps = {
|
|
|
13283
13337
|
size: '1em'
|
|
13284
13338
|
};
|
|
13285
13339
|
|
|
13286
|
-
var _excluded$
|
|
13287
|
-
var loadingCircleStyle$
|
|
13340
|
+
var _excluded$37 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13341
|
+
var loadingCircleStyle$37 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13288
13342
|
var MFunnel = function MFunnel(props) {
|
|
13289
13343
|
var color = props.color,
|
|
13290
13344
|
size = props.size,
|
|
@@ -13293,12 +13347,12 @@ var MFunnel = function MFunnel(props) {
|
|
|
13293
13347
|
className = props.className,
|
|
13294
13348
|
iconClassName = props.iconClassName,
|
|
13295
13349
|
testid = props.testid,
|
|
13296
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13350
|
+
otherProps = _objectWithoutProperties(props, _excluded$37);
|
|
13297
13351
|
return /*#__PURE__*/React.createElement("span", {
|
|
13298
13352
|
role: "img",
|
|
13299
13353
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13300
13354
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13301
|
-
children: loadingCircleStyle$
|
|
13355
|
+
children: loadingCircleStyle$37
|
|
13302
13356
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13303
13357
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13304
13358
|
width: size,
|
|
@@ -13339,8 +13393,8 @@ MFunnel.defaultProps = {
|
|
|
13339
13393
|
size: '1em'
|
|
13340
13394
|
};
|
|
13341
13395
|
|
|
13342
|
-
var _excluded$
|
|
13343
|
-
var loadingCircleStyle$
|
|
13396
|
+
var _excluded$38 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13397
|
+
var loadingCircleStyle$38 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13344
13398
|
var MDistribution = function MDistribution(props) {
|
|
13345
13399
|
var color = props.color,
|
|
13346
13400
|
size = props.size,
|
|
@@ -13349,12 +13403,12 @@ var MDistribution = function MDistribution(props) {
|
|
|
13349
13403
|
className = props.className,
|
|
13350
13404
|
iconClassName = props.iconClassName,
|
|
13351
13405
|
testid = props.testid,
|
|
13352
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13406
|
+
otherProps = _objectWithoutProperties(props, _excluded$38);
|
|
13353
13407
|
return /*#__PURE__*/React.createElement("span", {
|
|
13354
13408
|
role: "img",
|
|
13355
13409
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13356
13410
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13357
|
-
children: loadingCircleStyle$
|
|
13411
|
+
children: loadingCircleStyle$38
|
|
13358
13412
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13359
13413
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13360
13414
|
width: size,
|
|
@@ -13401,8 +13455,8 @@ MDistribution.defaultProps = {
|
|
|
13401
13455
|
size: '1em'
|
|
13402
13456
|
};
|
|
13403
13457
|
|
|
13404
|
-
var _excluded$
|
|
13405
|
-
var loadingCircleStyle$
|
|
13458
|
+
var _excluded$39 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13459
|
+
var loadingCircleStyle$39 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13406
13460
|
var MInterval = function MInterval(props) {
|
|
13407
13461
|
var color = props.color,
|
|
13408
13462
|
size = props.size,
|
|
@@ -13411,12 +13465,12 @@ var MInterval = function MInterval(props) {
|
|
|
13411
13465
|
className = props.className,
|
|
13412
13466
|
iconClassName = props.iconClassName,
|
|
13413
13467
|
testid = props.testid,
|
|
13414
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13468
|
+
otherProps = _objectWithoutProperties(props, _excluded$39);
|
|
13415
13469
|
return /*#__PURE__*/React.createElement("span", {
|
|
13416
13470
|
role: "img",
|
|
13417
13471
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13418
13472
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13419
|
-
children: loadingCircleStyle$
|
|
13473
|
+
children: loadingCircleStyle$39
|
|
13420
13474
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13421
13475
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13422
13476
|
width: size,
|
|
@@ -13459,8 +13513,8 @@ MInterval.defaultProps = {
|
|
|
13459
13513
|
size: '1em'
|
|
13460
13514
|
};
|
|
13461
13515
|
|
|
13462
|
-
var _excluded$
|
|
13463
|
-
var loadingCircleStyle$
|
|
13516
|
+
var _excluded$3a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13517
|
+
var loadingCircleStyle$3a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13464
13518
|
var MFlow = function MFlow(props) {
|
|
13465
13519
|
var color = props.color,
|
|
13466
13520
|
size = props.size,
|
|
@@ -13469,12 +13523,12 @@ var MFlow = function MFlow(props) {
|
|
|
13469
13523
|
className = props.className,
|
|
13470
13524
|
iconClassName = props.iconClassName,
|
|
13471
13525
|
testid = props.testid,
|
|
13472
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13526
|
+
otherProps = _objectWithoutProperties(props, _excluded$3a);
|
|
13473
13527
|
return /*#__PURE__*/React.createElement("span", {
|
|
13474
13528
|
role: "img",
|
|
13475
13529
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13476
13530
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13477
|
-
children: loadingCircleStyle$
|
|
13531
|
+
children: loadingCircleStyle$3a
|
|
13478
13532
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13479
13533
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13480
13534
|
width: size,
|
|
@@ -13515,8 +13569,8 @@ MFlow.defaultProps = {
|
|
|
13515
13569
|
size: '1em'
|
|
13516
13570
|
};
|
|
13517
13571
|
|
|
13518
|
-
var _excluded$
|
|
13519
|
-
var loadingCircleStyle$
|
|
13572
|
+
var _excluded$3b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13573
|
+
var loadingCircleStyle$3b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13520
13574
|
var MSql = function MSql(props) {
|
|
13521
13575
|
var color = props.color,
|
|
13522
13576
|
size = props.size,
|
|
@@ -13525,12 +13579,12 @@ var MSql = function MSql(props) {
|
|
|
13525
13579
|
className = props.className,
|
|
13526
13580
|
iconClassName = props.iconClassName,
|
|
13527
13581
|
testid = props.testid,
|
|
13528
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13582
|
+
otherProps = _objectWithoutProperties(props, _excluded$3b);
|
|
13529
13583
|
return /*#__PURE__*/React.createElement("span", {
|
|
13530
13584
|
role: "img",
|
|
13531
13585
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13532
13586
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13533
|
-
children: loadingCircleStyle$
|
|
13587
|
+
children: loadingCircleStyle$3b
|
|
13534
13588
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13535
13589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13536
13590
|
width: size,
|
|
@@ -13577,8 +13631,8 @@ MSql.defaultProps = {
|
|
|
13577
13631
|
size: '1em'
|
|
13578
13632
|
};
|
|
13579
13633
|
|
|
13580
|
-
var _excluded$
|
|
13581
|
-
var loadingCircleStyle$
|
|
13634
|
+
var _excluded$3c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13635
|
+
var loadingCircleStyle$3c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13582
13636
|
var UTag = function UTag(props) {
|
|
13583
13637
|
var color = props.color,
|
|
13584
13638
|
size = props.size,
|
|
@@ -13587,12 +13641,12 @@ var UTag = function UTag(props) {
|
|
|
13587
13641
|
className = props.className,
|
|
13588
13642
|
iconClassName = props.iconClassName,
|
|
13589
13643
|
testid = props.testid,
|
|
13590
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13644
|
+
otherProps = _objectWithoutProperties(props, _excluded$3c);
|
|
13591
13645
|
return /*#__PURE__*/React.createElement("span", {
|
|
13592
13646
|
role: "img",
|
|
13593
13647
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13594
13648
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13595
|
-
children: loadingCircleStyle$
|
|
13649
|
+
children: loadingCircleStyle$3c
|
|
13596
13650
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13597
13651
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13598
13652
|
width: size,
|
|
@@ -13635,8 +13689,8 @@ UTag.defaultProps = {
|
|
|
13635
13689
|
size: '1em'
|
|
13636
13690
|
};
|
|
13637
13691
|
|
|
13638
|
-
var _excluded$
|
|
13639
|
-
var loadingCircleStyle$
|
|
13692
|
+
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13693
|
+
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13640
13694
|
var MProperty = function MProperty(props) {
|
|
13641
13695
|
var color = props.color,
|
|
13642
13696
|
size = props.size,
|
|
@@ -13645,12 +13699,12 @@ var MProperty = function MProperty(props) {
|
|
|
13645
13699
|
className = props.className,
|
|
13646
13700
|
iconClassName = props.iconClassName,
|
|
13647
13701
|
testid = props.testid,
|
|
13648
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13702
|
+
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
13649
13703
|
return /*#__PURE__*/React.createElement("span", {
|
|
13650
13704
|
role: "img",
|
|
13651
13705
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13652
13706
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13653
|
-
children: loadingCircleStyle$
|
|
13707
|
+
children: loadingCircleStyle$3d
|
|
13654
13708
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13655
13709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13656
13710
|
width: size,
|
|
@@ -13695,8 +13749,8 @@ MProperty.defaultProps = {
|
|
|
13695
13749
|
size: '1em'
|
|
13696
13750
|
};
|
|
13697
13751
|
|
|
13698
|
-
var _excluded$
|
|
13699
|
-
var loadingCircleStyle$
|
|
13752
|
+
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13753
|
+
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13700
13754
|
var UGroup = function UGroup(props) {
|
|
13701
13755
|
var color = props.color,
|
|
13702
13756
|
size = props.size,
|
|
@@ -13705,12 +13759,12 @@ var UGroup = function UGroup(props) {
|
|
|
13705
13759
|
className = props.className,
|
|
13706
13760
|
iconClassName = props.iconClassName,
|
|
13707
13761
|
testid = props.testid,
|
|
13708
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13762
|
+
otherProps = _objectWithoutProperties(props, _excluded$3e);
|
|
13709
13763
|
return /*#__PURE__*/React.createElement("span", {
|
|
13710
13764
|
role: "img",
|
|
13711
13765
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13712
13766
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13713
|
-
children: loadingCircleStyle$
|
|
13767
|
+
children: loadingCircleStyle$3e
|
|
13714
13768
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13715
13769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13716
13770
|
width: size,
|
|
@@ -13755,64 +13809,6 @@ UGroup.defaultProps = {
|
|
|
13755
13809
|
size: '1em'
|
|
13756
13810
|
};
|
|
13757
13811
|
|
|
13758
|
-
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13759
|
-
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13760
|
-
var ProgressBarCl = function ProgressBarCl(props) {
|
|
13761
|
-
var color = props.color,
|
|
13762
|
-
size = props.size,
|
|
13763
|
-
spin = props.spin,
|
|
13764
|
-
style = props.style,
|
|
13765
|
-
className = props.className,
|
|
13766
|
-
iconClassName = props.iconClassName,
|
|
13767
|
-
testid = props.testid,
|
|
13768
|
-
otherProps = _objectWithoutProperties(props, _excluded$3e);
|
|
13769
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
13770
|
-
role: "img",
|
|
13771
|
-
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13772
|
-
}, /*#__PURE__*/React.createElement("style", {
|
|
13773
|
-
children: loadingCircleStyle$3e
|
|
13774
|
-
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13775
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
13776
|
-
width: size,
|
|
13777
|
-
height: size,
|
|
13778
|
-
viewBox: "0 0 24 24",
|
|
13779
|
-
fill: color
|
|
13780
|
-
}, otherProps, {
|
|
13781
|
-
className: iconClassName,
|
|
13782
|
-
"data-testid": testid,
|
|
13783
|
-
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13784
|
-
animationDuration: '1s',
|
|
13785
|
-
animationIterationCount: 'infinite',
|
|
13786
|
-
animationName: 'loadingCircle',
|
|
13787
|
-
animationTimingFunction: 'linear'
|
|
13788
|
-
} : {})
|
|
13789
|
-
}), /*#__PURE__*/React.createElement("svg", {
|
|
13790
|
-
width: "24",
|
|
13791
|
-
height: "24",
|
|
13792
|
-
fill: "none",
|
|
13793
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
13794
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
13795
|
-
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",
|
|
13796
|
-
fill: "#7E7F80"
|
|
13797
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
13798
|
-
opacity: ".5",
|
|
13799
|
-
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",
|
|
13800
|
-
fill: "#BDBEBF"
|
|
13801
|
-
}))));
|
|
13802
|
-
};
|
|
13803
|
-
ProgressBarCl.propTypes = {
|
|
13804
|
-
iconClassName: PropTypes.string,
|
|
13805
|
-
spin: PropTypes.bool,
|
|
13806
|
-
color: PropTypes.string,
|
|
13807
|
-
testid: PropTypes.string,
|
|
13808
|
-
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13809
|
-
};
|
|
13810
|
-
ProgressBarCl.defaultProps = {
|
|
13811
|
-
spin: false,
|
|
13812
|
-
color: 'currentColor',
|
|
13813
|
-
size: '1em'
|
|
13814
|
-
};
|
|
13815
|
-
|
|
13816
13812
|
var _excluded$3f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13817
13813
|
var loadingCircleStyle$3f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13818
13814
|
var SSpace = function SSpace(props) {
|
|
@@ -32878,7 +32874,7 @@ exports.TaPrivate = Private;
|
|
|
32878
32874
|
exports.TaProcessing = Processing;
|
|
32879
32875
|
exports.TaProcessing2 = Processing2;
|
|
32880
32876
|
exports.TaProgress = Progress;
|
|
32881
|
-
exports.
|
|
32877
|
+
exports.TaProgressBar = ProgressBar;
|
|
32882
32878
|
exports.TaProject = Project;
|
|
32883
32879
|
exports.TaProjectMgr = ProjectMgr;
|
|
32884
32880
|
exports.TaProperty = Property;
|
package/dist/tant-icons.esm.js
CHANGED
|
@@ -13157,7 +13157,7 @@ ChartView.defaultProps = {
|
|
|
13157
13157
|
|
|
13158
13158
|
var _excluded$34 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13159
13159
|
var loadingCircleStyle$34 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13160
|
-
var
|
|
13160
|
+
var ProgressBar = function ProgressBar(props) {
|
|
13161
13161
|
var color = props.color,
|
|
13162
13162
|
size = props.size,
|
|
13163
13163
|
spin = props.spin,
|
|
@@ -13190,6 +13190,60 @@ var MEvent = function MEvent(props) {
|
|
|
13190
13190
|
width: "24",
|
|
13191
13191
|
height: "24",
|
|
13192
13192
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13193
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
13194
|
+
d: "M1.5 12c0 5.816 4.684 10.5 10.5 10.5 5.762 0 10.5-4.738 10.5-10.5 0-5.761-4.738-10.5-10.5-10.5v1.615A8.894 8.894 0 0120.884 12 8.894 8.894 0 0112 20.884 8.894 8.894 0 013.116 12H1.5z"
|
|
13195
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
13196
|
+
d: "M9.43 12a1.926 1.926 0 110-3.855 1.926 1.926 0 010 3.857V12zm0-2.57a.642.642 0 100 1.284.642.642 0 000-1.283zm5.14 6.428a1.925 1.925 0 01-1.363-3.293 1.929 1.929 0 013.281 1.553 1.928 1.928 0 01-1.919 1.739v.001zm0-2.571a.642.642 0 100 1.284.642.642 0 000-1.284zM8.145 16.5a.643.643 0 01-.456-1.1L15.4 7.69a.646.646 0 11.912.912L8.6 16.314a.64.64 0 01-.455.186z"
|
|
13197
|
+
}))));
|
|
13198
|
+
};
|
|
13199
|
+
ProgressBar.propTypes = {
|
|
13200
|
+
iconClassName: PropTypes.string,
|
|
13201
|
+
spin: PropTypes.bool,
|
|
13202
|
+
color: PropTypes.string,
|
|
13203
|
+
testid: PropTypes.string,
|
|
13204
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13205
|
+
};
|
|
13206
|
+
ProgressBar.defaultProps = {
|
|
13207
|
+
spin: false,
|
|
13208
|
+
color: 'currentColor',
|
|
13209
|
+
size: '1em'
|
|
13210
|
+
};
|
|
13211
|
+
|
|
13212
|
+
var _excluded$35 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13213
|
+
var loadingCircleStyle$35 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13214
|
+
var MEvent = function MEvent(props) {
|
|
13215
|
+
var color = props.color,
|
|
13216
|
+
size = props.size,
|
|
13217
|
+
spin = props.spin,
|
|
13218
|
+
style = props.style,
|
|
13219
|
+
className = props.className,
|
|
13220
|
+
iconClassName = props.iconClassName,
|
|
13221
|
+
testid = props.testid,
|
|
13222
|
+
otherProps = _objectWithoutProperties(props, _excluded$35);
|
|
13223
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
13224
|
+
role: "img",
|
|
13225
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13226
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
13227
|
+
children: loadingCircleStyle$35
|
|
13228
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13229
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13230
|
+
width: size,
|
|
13231
|
+
height: size,
|
|
13232
|
+
viewBox: "0 0 24 24",
|
|
13233
|
+
fill: color
|
|
13234
|
+
}, otherProps, {
|
|
13235
|
+
className: iconClassName,
|
|
13236
|
+
"data-testid": testid,
|
|
13237
|
+
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13238
|
+
animationDuration: '1s',
|
|
13239
|
+
animationIterationCount: 'infinite',
|
|
13240
|
+
animationName: 'loadingCircle',
|
|
13241
|
+
animationTimingFunction: 'linear'
|
|
13242
|
+
} : {})
|
|
13243
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
13244
|
+
width: "24",
|
|
13245
|
+
height: "24",
|
|
13246
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13193
13247
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13194
13248
|
d: "M21 12a9 9 0 01-12.25 8.395 4.009 4.009 0 01-1.185 1.674C8.922 22.668 10.422 23 12 23c6.075 0 11-4.925 11-11 0-1.578-.332-3.078-.93-4.435a4.009 4.009 0 01-1.675 1.185A8.979 8.979 0 0121 12z"
|
|
13195
13249
|
}), /*#__PURE__*/React.createElement("path", {
|
|
@@ -13215,8 +13269,8 @@ MEvent.defaultProps = {
|
|
|
13215
13269
|
size: '1em'
|
|
13216
13270
|
};
|
|
13217
13271
|
|
|
13218
|
-
var _excluded$
|
|
13219
|
-
var loadingCircleStyle$
|
|
13272
|
+
var _excluded$36 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13273
|
+
var loadingCircleStyle$36 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13220
13274
|
var MRetention = function MRetention(props) {
|
|
13221
13275
|
var color = props.color,
|
|
13222
13276
|
size = props.size,
|
|
@@ -13225,12 +13279,12 @@ var MRetention = function MRetention(props) {
|
|
|
13225
13279
|
className = props.className,
|
|
13226
13280
|
iconClassName = props.iconClassName,
|
|
13227
13281
|
testid = props.testid,
|
|
13228
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13282
|
+
otherProps = _objectWithoutProperties(props, _excluded$36);
|
|
13229
13283
|
return /*#__PURE__*/React.createElement("span", {
|
|
13230
13284
|
role: "img",
|
|
13231
13285
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13232
13286
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13233
|
-
children: loadingCircleStyle$
|
|
13287
|
+
children: loadingCircleStyle$36
|
|
13234
13288
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13235
13289
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13236
13290
|
width: size,
|
|
@@ -13277,8 +13331,8 @@ MRetention.defaultProps = {
|
|
|
13277
13331
|
size: '1em'
|
|
13278
13332
|
};
|
|
13279
13333
|
|
|
13280
|
-
var _excluded$
|
|
13281
|
-
var loadingCircleStyle$
|
|
13334
|
+
var _excluded$37 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13335
|
+
var loadingCircleStyle$37 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13282
13336
|
var MFunnel = function MFunnel(props) {
|
|
13283
13337
|
var color = props.color,
|
|
13284
13338
|
size = props.size,
|
|
@@ -13287,12 +13341,12 @@ var MFunnel = function MFunnel(props) {
|
|
|
13287
13341
|
className = props.className,
|
|
13288
13342
|
iconClassName = props.iconClassName,
|
|
13289
13343
|
testid = props.testid,
|
|
13290
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13344
|
+
otherProps = _objectWithoutProperties(props, _excluded$37);
|
|
13291
13345
|
return /*#__PURE__*/React.createElement("span", {
|
|
13292
13346
|
role: "img",
|
|
13293
13347
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13294
13348
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13295
|
-
children: loadingCircleStyle$
|
|
13349
|
+
children: loadingCircleStyle$37
|
|
13296
13350
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13297
13351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13298
13352
|
width: size,
|
|
@@ -13333,8 +13387,8 @@ MFunnel.defaultProps = {
|
|
|
13333
13387
|
size: '1em'
|
|
13334
13388
|
};
|
|
13335
13389
|
|
|
13336
|
-
var _excluded$
|
|
13337
|
-
var loadingCircleStyle$
|
|
13390
|
+
var _excluded$38 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13391
|
+
var loadingCircleStyle$38 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13338
13392
|
var MDistribution = function MDistribution(props) {
|
|
13339
13393
|
var color = props.color,
|
|
13340
13394
|
size = props.size,
|
|
@@ -13343,12 +13397,12 @@ var MDistribution = function MDistribution(props) {
|
|
|
13343
13397
|
className = props.className,
|
|
13344
13398
|
iconClassName = props.iconClassName,
|
|
13345
13399
|
testid = props.testid,
|
|
13346
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13400
|
+
otherProps = _objectWithoutProperties(props, _excluded$38);
|
|
13347
13401
|
return /*#__PURE__*/React.createElement("span", {
|
|
13348
13402
|
role: "img",
|
|
13349
13403
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13350
13404
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13351
|
-
children: loadingCircleStyle$
|
|
13405
|
+
children: loadingCircleStyle$38
|
|
13352
13406
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13353
13407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13354
13408
|
width: size,
|
|
@@ -13395,8 +13449,8 @@ MDistribution.defaultProps = {
|
|
|
13395
13449
|
size: '1em'
|
|
13396
13450
|
};
|
|
13397
13451
|
|
|
13398
|
-
var _excluded$
|
|
13399
|
-
var loadingCircleStyle$
|
|
13452
|
+
var _excluded$39 = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13453
|
+
var loadingCircleStyle$39 = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13400
13454
|
var MInterval = function MInterval(props) {
|
|
13401
13455
|
var color = props.color,
|
|
13402
13456
|
size = props.size,
|
|
@@ -13405,12 +13459,12 @@ var MInterval = function MInterval(props) {
|
|
|
13405
13459
|
className = props.className,
|
|
13406
13460
|
iconClassName = props.iconClassName,
|
|
13407
13461
|
testid = props.testid,
|
|
13408
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13462
|
+
otherProps = _objectWithoutProperties(props, _excluded$39);
|
|
13409
13463
|
return /*#__PURE__*/React.createElement("span", {
|
|
13410
13464
|
role: "img",
|
|
13411
13465
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13412
13466
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13413
|
-
children: loadingCircleStyle$
|
|
13467
|
+
children: loadingCircleStyle$39
|
|
13414
13468
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13415
13469
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13416
13470
|
width: size,
|
|
@@ -13453,8 +13507,8 @@ MInterval.defaultProps = {
|
|
|
13453
13507
|
size: '1em'
|
|
13454
13508
|
};
|
|
13455
13509
|
|
|
13456
|
-
var _excluded$
|
|
13457
|
-
var loadingCircleStyle$
|
|
13510
|
+
var _excluded$3a = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13511
|
+
var loadingCircleStyle$3a = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13458
13512
|
var MFlow = function MFlow(props) {
|
|
13459
13513
|
var color = props.color,
|
|
13460
13514
|
size = props.size,
|
|
@@ -13463,12 +13517,12 @@ var MFlow = function MFlow(props) {
|
|
|
13463
13517
|
className = props.className,
|
|
13464
13518
|
iconClassName = props.iconClassName,
|
|
13465
13519
|
testid = props.testid,
|
|
13466
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13520
|
+
otherProps = _objectWithoutProperties(props, _excluded$3a);
|
|
13467
13521
|
return /*#__PURE__*/React.createElement("span", {
|
|
13468
13522
|
role: "img",
|
|
13469
13523
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13470
13524
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13471
|
-
children: loadingCircleStyle$
|
|
13525
|
+
children: loadingCircleStyle$3a
|
|
13472
13526
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13473
13527
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13474
13528
|
width: size,
|
|
@@ -13509,8 +13563,8 @@ MFlow.defaultProps = {
|
|
|
13509
13563
|
size: '1em'
|
|
13510
13564
|
};
|
|
13511
13565
|
|
|
13512
|
-
var _excluded$
|
|
13513
|
-
var loadingCircleStyle$
|
|
13566
|
+
var _excluded$3b = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13567
|
+
var loadingCircleStyle$3b = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13514
13568
|
var MSql = function MSql(props) {
|
|
13515
13569
|
var color = props.color,
|
|
13516
13570
|
size = props.size,
|
|
@@ -13519,12 +13573,12 @@ var MSql = function MSql(props) {
|
|
|
13519
13573
|
className = props.className,
|
|
13520
13574
|
iconClassName = props.iconClassName,
|
|
13521
13575
|
testid = props.testid,
|
|
13522
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13576
|
+
otherProps = _objectWithoutProperties(props, _excluded$3b);
|
|
13523
13577
|
return /*#__PURE__*/React.createElement("span", {
|
|
13524
13578
|
role: "img",
|
|
13525
13579
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13526
13580
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13527
|
-
children: loadingCircleStyle$
|
|
13581
|
+
children: loadingCircleStyle$3b
|
|
13528
13582
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13529
13583
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13530
13584
|
width: size,
|
|
@@ -13571,8 +13625,8 @@ MSql.defaultProps = {
|
|
|
13571
13625
|
size: '1em'
|
|
13572
13626
|
};
|
|
13573
13627
|
|
|
13574
|
-
var _excluded$
|
|
13575
|
-
var loadingCircleStyle$
|
|
13628
|
+
var _excluded$3c = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13629
|
+
var loadingCircleStyle$3c = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13576
13630
|
var UTag = function UTag(props) {
|
|
13577
13631
|
var color = props.color,
|
|
13578
13632
|
size = props.size,
|
|
@@ -13581,12 +13635,12 @@ var UTag = function UTag(props) {
|
|
|
13581
13635
|
className = props.className,
|
|
13582
13636
|
iconClassName = props.iconClassName,
|
|
13583
13637
|
testid = props.testid,
|
|
13584
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13638
|
+
otherProps = _objectWithoutProperties(props, _excluded$3c);
|
|
13585
13639
|
return /*#__PURE__*/React.createElement("span", {
|
|
13586
13640
|
role: "img",
|
|
13587
13641
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13588
13642
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13589
|
-
children: loadingCircleStyle$
|
|
13643
|
+
children: loadingCircleStyle$3c
|
|
13590
13644
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13591
13645
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13592
13646
|
width: size,
|
|
@@ -13629,8 +13683,8 @@ UTag.defaultProps = {
|
|
|
13629
13683
|
size: '1em'
|
|
13630
13684
|
};
|
|
13631
13685
|
|
|
13632
|
-
var _excluded$
|
|
13633
|
-
var loadingCircleStyle$
|
|
13686
|
+
var _excluded$3d = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13687
|
+
var loadingCircleStyle$3d = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13634
13688
|
var MProperty = function MProperty(props) {
|
|
13635
13689
|
var color = props.color,
|
|
13636
13690
|
size = props.size,
|
|
@@ -13639,12 +13693,12 @@ var MProperty = function MProperty(props) {
|
|
|
13639
13693
|
className = props.className,
|
|
13640
13694
|
iconClassName = props.iconClassName,
|
|
13641
13695
|
testid = props.testid,
|
|
13642
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13696
|
+
otherProps = _objectWithoutProperties(props, _excluded$3d);
|
|
13643
13697
|
return /*#__PURE__*/React.createElement("span", {
|
|
13644
13698
|
role: "img",
|
|
13645
13699
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13646
13700
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13647
|
-
children: loadingCircleStyle$
|
|
13701
|
+
children: loadingCircleStyle$3d
|
|
13648
13702
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13649
13703
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13650
13704
|
width: size,
|
|
@@ -13689,8 +13743,8 @@ MProperty.defaultProps = {
|
|
|
13689
13743
|
size: '1em'
|
|
13690
13744
|
};
|
|
13691
13745
|
|
|
13692
|
-
var _excluded$
|
|
13693
|
-
var loadingCircleStyle$
|
|
13746
|
+
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13747
|
+
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13694
13748
|
var UGroup = function UGroup(props) {
|
|
13695
13749
|
var color = props.color,
|
|
13696
13750
|
size = props.size,
|
|
@@ -13699,12 +13753,12 @@ var UGroup = function UGroup(props) {
|
|
|
13699
13753
|
className = props.className,
|
|
13700
13754
|
iconClassName = props.iconClassName,
|
|
13701
13755
|
testid = props.testid,
|
|
13702
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
13756
|
+
otherProps = _objectWithoutProperties(props, _excluded$3e);
|
|
13703
13757
|
return /*#__PURE__*/React.createElement("span", {
|
|
13704
13758
|
role: "img",
|
|
13705
13759
|
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13706
13760
|
}, /*#__PURE__*/React.createElement("style", {
|
|
13707
|
-
children: loadingCircleStyle$
|
|
13761
|
+
children: loadingCircleStyle$3e
|
|
13708
13762
|
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13709
13763
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13710
13764
|
width: size,
|
|
@@ -13749,64 +13803,6 @@ UGroup.defaultProps = {
|
|
|
13749
13803
|
size: '1em'
|
|
13750
13804
|
};
|
|
13751
13805
|
|
|
13752
|
-
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13753
|
-
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13754
|
-
var ProgressBarCl = function ProgressBarCl(props) {
|
|
13755
|
-
var color = props.color,
|
|
13756
|
-
size = props.size,
|
|
13757
|
-
spin = props.spin,
|
|
13758
|
-
style = props.style,
|
|
13759
|
-
className = props.className,
|
|
13760
|
-
iconClassName = props.iconClassName,
|
|
13761
|
-
testid = props.testid,
|
|
13762
|
-
otherProps = _objectWithoutProperties(props, _excluded$3e);
|
|
13763
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
13764
|
-
role: "img",
|
|
13765
|
-
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
13766
|
-
}, /*#__PURE__*/React.createElement("style", {
|
|
13767
|
-
children: loadingCircleStyle$3e
|
|
13768
|
-
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
13769
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
13770
|
-
width: size,
|
|
13771
|
-
height: size,
|
|
13772
|
-
viewBox: "0 0 24 24",
|
|
13773
|
-
fill: color
|
|
13774
|
-
}, otherProps, {
|
|
13775
|
-
className: iconClassName,
|
|
13776
|
-
"data-testid": testid,
|
|
13777
|
-
style: _objectSpread2(_objectSpread2({}, style), spin ? {
|
|
13778
|
-
animationDuration: '1s',
|
|
13779
|
-
animationIterationCount: 'infinite',
|
|
13780
|
-
animationName: 'loadingCircle',
|
|
13781
|
-
animationTimingFunction: 'linear'
|
|
13782
|
-
} : {})
|
|
13783
|
-
}), /*#__PURE__*/React.createElement("svg", {
|
|
13784
|
-
width: "24",
|
|
13785
|
-
height: "24",
|
|
13786
|
-
fill: "none",
|
|
13787
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
13788
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
13789
|
-
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",
|
|
13790
|
-
fill: "#7E7F80"
|
|
13791
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
13792
|
-
opacity: ".5",
|
|
13793
|
-
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",
|
|
13794
|
-
fill: "#BDBEBF"
|
|
13795
|
-
}))));
|
|
13796
|
-
};
|
|
13797
|
-
ProgressBarCl.propTypes = {
|
|
13798
|
-
iconClassName: PropTypes.string,
|
|
13799
|
-
spin: PropTypes.bool,
|
|
13800
|
-
color: PropTypes.string,
|
|
13801
|
-
testid: PropTypes.string,
|
|
13802
|
-
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13803
|
-
};
|
|
13804
|
-
ProgressBarCl.defaultProps = {
|
|
13805
|
-
spin: false,
|
|
13806
|
-
color: 'currentColor',
|
|
13807
|
-
size: '1em'
|
|
13808
|
-
};
|
|
13809
|
-
|
|
13810
13806
|
var _excluded$3f = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13811
13807
|
var loadingCircleStyle$3f = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13812
13808
|
var SSpace = function SSpace(props) {
|
|
@@ -32470,4 +32466,4 @@ CalendarCheck.defaultProps = {
|
|
|
32470
32466
|
size: '1em'
|
|
32471
32467
|
};
|
|
32472
32468
|
|
|
32473
|
-
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignLegendBottom as TaAlignLegendBottom, AlignLegendLeft as TaAlignLegendLeft, AlignLegendRight as TaAlignLegendRight, AlignLegendTop as TaAlignLegendTop, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowClose as TaArrowClose, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowExpand as TaArrowExpand, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowRightup as TaArrowRightup, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, BiPage as TaBiPage, BiVendor as TaBiVendor, BiVendorFillCl as TaBiVendorFillCl, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, Certified as TaCertified, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, ChartTrophy as TaChartTrophy, ChartView as TaChartView, ChartWordcloud as TaChartWordcloud, Clean as TaClean, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, CollectCl as TaCollectCl, Comment as TaComment, Compass as TaCompass, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, CopywritingAiCl as TaCopywritingAiCl, Cost as TaCost, Currency as TaCurrency, Custom as TaCustom, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Danmaku as TaDanmaku, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardGenerateCl as TaDashboardGenerateCl, DashboardMgr as TaDashboardMgr, DashboardPlan as TaDashboardPlan, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, DataOpsAiCl as TaDataOpsAiCl, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DrillDown as TaDrillDown, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, EFlowCl as TaEFlowCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, EngageAiCl as TaEngageAiCl, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventShunt as TaEventShunt, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, GoalFill as TaGoalFill, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, Hashtag as TaHashtag, Heart as TaHeart, Heat as TaHeat, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, IndexFill as TaIndexFill, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, LineCircle as TaLineCircle, LineDiamond as TaLineDiamond, LineSquare as TaLineSquare, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFlinkCl as TaLogoFlinkCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoSparkCl as TaLogoSparkCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, ManualVerification as TaManualVerification, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, Neutral as TaNeutral, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, Null as TaNull, NumSm as TaNumSm, Official as TaOfficial, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, ParameterControl as TaParameterControl, Partition as TaPartition, Password as TaPassword, Paste as TaPaste, Paste2 as TaPaste2, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pending as TaPending, Phrase as TaPhrase, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Progress as TaProgress, ProgressBarCl as TaProgressBarCl, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportReadingCl as TaReportReadingCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, Ripple as TaRipple, Robot as TaRobot, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, Sad as TaSad, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, SimpleAggregation as TaSimpleAggregation, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, Stream as TaStream, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, Switch as TaSwitch, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, Translation as TaTranslation, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertyShunt as TaUPropertyShunt, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Uncertified as TaUncertified, Undo as TaUndo, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VDashboardCl as TaVDashboardCl, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, Video as TaVideo, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|
|
32469
|
+
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, Alert as TaAlert, AlertCl as TaAlertCl, AlignCenter as TaAlignCenter, AlignLeft as TaAlignLeft, AlignLegendBottom as TaAlignLegendBottom, AlignLegendLeft as TaAlignLegendLeft, AlignLegendRight as TaAlignLegendRight, AlignLegendTop as TaAlignLegendTop, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowClose as TaArrowClose, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowExpand as TaArrowExpand, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, ArrowRightup as TaArrowRightup, ArrowUp as TaArrowUp, ArrowUp2 as TaArrowUp2, Ascent as TaAscent, Attachment as TaAttachment, Attribution as TaAttribution, AutoLayout as TaAutoLayout, AvatarGroupCl as TaAvatarGroupCl, AvatarProjectCl as TaAvatarProjectCl, Backup as TaBackup, Bell as TaBell, Bell2Fill as TaBell2Fill, BiPage as TaBiPage, BiVendor as TaBiVendor, BiVendorFillCl as TaBiVendorFillCl, Book as TaBook, Book2 as TaBook2, Bookmark as TaBookmark, Bookmark2 as TaBookmark2, BooleanSm as TaBooleanSm, Box as TaBox, BoxOpen as TaBoxOpen, Branch as TaBranch, Bring as TaBring, BuildMode as TaBuildMode, BuiltIn as TaBuiltIn, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cellphone as TaCellphone, Certified as TaCertified, ChartBar as TaChartBar, ChartBarTable as TaChartBarTable, ChartCombinedTable as TaChartCombinedTable, ChartComplex as TaChartComplex, ChartCum as TaChartCum, ChartDNRe as TaChartDNRe, ChartDRe as TaChartDRe, ChartDistTable as TaChartDistTable, ChartFieldlist as TaChartFieldlist, ChartFunnel as TaChartFunnel, ChartGantt as TaChartGantt, ChartHistogram as TaChartHistogram, ChartInterval as TaChartInterval, ChartLine as TaChartLine, ChartLineTable as TaChartLineTable, ChartPercentageBar as TaChartPercentageBar, ChartPie as TaChartPie, ChartScatter as TaChartScatter, ChartScorecard as TaChartScorecard, ChartSqltable as TaChartSqltable, ChartStack as TaChartStack, ChartStackPerc as TaChartStackPerc, ChartStackedBar as TaChartStackedBar, ChartStackn as TaChartStackn, ChartTable as TaChartTable, ChartTrophy as TaChartTrophy, ChartView as TaChartView, ChartWordcloud as TaChartWordcloud, Clean as TaClean, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, CollectCl as TaCollectCl, Comment as TaComment, Compass as TaCompass, Config as TaConfig, Consent as TaConsent, Contrast as TaContrast, Copy as TaCopy, Copy2 as TaCopy2, CopyDdl as TaCopyDdl, CopyQuery as TaCopyQuery, CopywritingAiCl as TaCopywritingAiCl, Cost as TaCost, Currency as TaCurrency, Custom as TaCustom, CustomPartition as TaCustomPartition, DArrowB as TaDArrowB, DArrowL as TaDArrowL, DArrowR as TaDArrowR, DArrowT as TaDArrowT, DAssetsCl as TaDAssetsCl, DIntegrationCl as TaDIntegrationCl, DManageCl as TaDManageCl, DTrackingCl as TaDTrackingCl, Dag as TaDag, Danmaku as TaDanmaku, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardGenerateCl as TaDashboardGenerateCl, DashboardMgr as TaDashboardMgr, DashboardPlan as TaDashboardPlan, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, DataOpsAiCl as TaDataOpsAiCl, DataOutput as TaDataOutput, Database as TaDatabase, DateMarkCl as TaDateMarkCl, Debug as TaDebug, DebugPlay as TaDebugPlay, Delete1 as TaDelete1, Delete2 as TaDelete2, Delete2Fill as TaDelete2Fill, Demo as TaDemo, Descent as TaDescent, Desktop as TaDesktop, Detail as TaDetail, DirectConnect as TaDirectConnect, Disable as TaDisable, DisplayS as TaDisplayS, Done as TaDone, Dot as TaDot, DoubleList as TaDoubleList, Download as TaDownload, Drag as TaDrag, Drag2 as TaDrag2, DrillDown as TaDrillDown, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, EFlowCl as TaEFlowCl, EPropertySm as TaEPropertySm, ESettingCl as TaESettingCl, ETaskCl as TaETaskCl, Earth as TaEarth, Edit as TaEdit, EditFill as TaEditFill, Education as TaEducation, EducationFill as TaEducationFill, Email as TaEmail, EndTask as TaEndTask, EngageAiCl as TaEngageAiCl, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, EventShunt as TaEventShunt, EventSm as TaEventSm, EventTree as TaEventTree, Exchange as TaExchange, Expand as TaExpand, Export as TaExport, Exposure as TaExposure, Expression as TaExpression, Expression2 as TaExpression2, External as TaExternal, EyeOff as TaEyeOff, EyeOffFill as TaEyeOffFill, EyeOn as TaEyeOn, EyeOnFill as TaEyeOnFill, FileAdd as TaFileAdd, FileConvert as TaFileConvert, FileExport as TaFileExport, FileImport as TaFileImport, FileInfo as TaFileInfo, FileLock as TaFileLock, FileMove as TaFileMove, FilePdf as TaFilePdf, FileRemove as TaFileRemove, FileSqlFill as TaFileSqlFill, Filter as TaFilter, Filter2 as TaFilter2, Find as TaFind, FirstLast as TaFirstLast, FlagCn as TaFlagCn, FlagJp as TaFlagJp, FlagKr as TaFlagKr, FlagUs as TaFlagUs, Flash as TaFlash, Folder as TaFolder, FolderLine as TaFolderLine, FolderOpen as TaFolderOpen, FolderOpenLine as TaFolderOpenLine, FontBgColor as TaFontBgColor, FontBold as TaFontBold, FontColor as TaFontColor, FontItalic as TaFontItalic, FontSize as TaFontSize, Forewarning as TaForewarning, Format as TaFormat, FullDownload as TaFullDownload, Fullscreen as TaFullscreen, Function as TaFunction, Game as TaGame, GameFill as TaGameFill, Gift as TaGift, Goal as TaGoal, GoalFill as TaGoalFill, Grid as TaGrid, Group as TaGroup, GroupA2b as TaGroupA2b, GroupAddFill as TaGroupAddFill, GroupAddSm as TaGroupAddSm, GroupCl as TaGroupCl, GroupFill as TaGroupFill, GroupFill2 as TaGroupFill2, Groups as TaGroups, Hand as TaHand, Hashtag as TaHashtag, Heart as TaHeart, Heat as TaHeat, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, IndexFill as TaIndexFill, Indicator as TaIndicator, IndicatorSm as TaIndicatorSm, Info as TaInfo, InfoFill as TaInfoFill, Insert as TaInsert, Install as TaInstall, Interval as TaInterval, JsonSm as TaJsonSm, Lab as TaLab, Landscape as TaLandscape, Language as TaLanguage, LayoutFocus as TaLayoutFocus, LayoutSide as TaLayoutSide, LineCircle as TaLineCircle, LineDiamond as TaLineDiamond, LineSquare as TaLineSquare, Link as TaLink, Link2 as TaLink2, List as TaList, ListNested as TaListNested, ListOrdered as TaListOrdered, ListSm as TaListSm, ListUnordered as TaListUnordered, Live as TaLive, Location as TaLocation, LockClose as TaLockClose, LockCloseFill as TaLockCloseFill, LockOpen as TaLockOpen, LockOpenFill as TaLockOpenFill, LogoAndroidGray as TaLogoAndroidGray, LogoApiGray as TaLogoApiGray, LogoAppPushGray as TaLogoAppPushGray, LogoAppleGray as TaLogoAppleGray, LogoBitkeepCl as TaLogoBitkeepCl, LogoClientsideGray as TaLogoClientsideGray, LogoCurrencylayerCl as TaLogoCurrencylayerCl, LogoDingdingCl as TaLogoDingdingCl, LogoDingdingGray as TaLogoDingdingGray, LogoDouyinGray as TaLogoDouyinGray, LogoFcmCl as TaLogoFcmCl, LogoFeishuCl as TaLogoFeishuCl, LogoFlinkCl as TaLogoFlinkCl, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, LogoSparkCl as TaLogoSparkCl, LogoStarrocksCl as TaLogoStarrocksCl, LogoTrinoCl as TaLogoTrinoCl, LogoWebhookGray as TaLogoWebhookGray, LogoWechatCl as TaLogoWechatCl, LogoWechatGray as TaLogoWechatGray, LogoWecomCl as TaLogoWecomCl, LogoWecomGray as TaLogoWecomGray, LogoWepieCl as TaLogoWepieCl, LogoXiaomiCl as TaLogoXiaomiCl, LogoYaojiCl as TaLogoYaojiCl, Logout as TaLogout, MAttributionCl as TaMAttributionCl, MDistribution as TaMDistribution, MDistributionCl as TaMDistributionCl, MEvent as TaMEvent, MEventCl as TaMEventCl, MFlow as TaMFlow, MFlowCl as TaMFlowCl, MFunnel as TaMFunnel, MFunnelCl as TaMFunnelCl, MHeatmapCl as TaMHeatmapCl, MInterval as TaMInterval, MIntervalCl as TaMIntervalCl, MPropCl as TaMPropCl, MProperty as TaMProperty, MRetention as TaMRetention, MRetentionCl as TaMRetentionCl, MSql as TaMSql, MSqlCl as TaMSqlCl, MTrophyCl as TaMTrophyCl, MagicWand as TaMagicWand, ManageQuery as TaManageQuery, Manual as TaManual, ManualVerification as TaManualVerification, Map as TaMap, MenuFold as TaMenuFold, MenuUnfold as TaMenuUnfold, MessageCenter as TaMessageCenter, Mfa as TaMfa, More1 as TaMore1, More2 as TaMore2, Mute as TaMute, Name as TaName, Neutral as TaNeutral, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, Null as TaNull, NumSm as TaNumSm, Official as TaOfficial, Offline as TaOffline, OfflineSync as TaOfflineSync, OneTime as TaOneTime, Online as TaOnline, OperatorBigger as TaOperatorBigger, OperatorDivide as TaOperatorDivide, OperatorEqual as TaOperatorEqual, OperatorFalse as TaOperatorFalse, OperatorHasValue as TaOperatorHasValue, OperatorInclude as TaOperatorInclude, OperatorInside as TaOperatorInside, OperatorLess as TaOperatorLess, OperatorNoBigger as TaOperatorNoBigger, OperatorNoLess as TaOperatorNoLess, OperatorNoRegex as TaOperatorNoRegex, OperatorNoValue as TaOperatorNoValue, OperatorNotInclude as TaOperatorNotInclude, OperatorRegex as TaOperatorRegex, OperatorTrue as TaOperatorTrue, OperatorUnequal as TaOperatorUnequal, PageLine as TaPageLine, PageOpenCl as TaPageOpenCl, Palette as TaPalette, ParallelFilter as TaParallelFilter, Parameter as TaParameter, ParameterControl as TaParameterControl, Partition as TaPartition, Password as TaPassword, Paste as TaPaste, Paste2 as TaPaste2, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pending as TaPending, Phrase as TaPhrase, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, Progress as TaProgress, ProgressBar as TaProgressBar, Project as TaProject, ProjectMgr as TaProjectMgr, Property as TaProperty, Pulse as TaPulse, Recurring as TaRecurring, Recycle as TaRecycle, Reject as TaReject, RelatedProp as TaRelatedProp, Rename as TaRename, Renew as TaRenew, Report as TaReport, ReportCl as TaReportCl, ReportReadingCl as TaReportReadingCl, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, Ripple as TaRipple, Robot as TaRobot, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, Sad as TaSad, SatelliteDish as TaSatelliteDish, Save as TaSave, Schedule as TaSchedule, Search as TaSearch, Send as TaSend, Server as TaServer, Setting as TaSetting, Share as TaShare, ShieldCheck as TaShieldCheck, ShieldCross as TaShieldCross, ShieldKeyhole as TaShieldKeyhole, Shop as TaShop, ShopFill as TaShopFill, ShutDown as TaShutDown, SimpleAggregation as TaSimpleAggregation, Smile as TaSmile, Sort as TaSort, SortA2z as TaSortA2z, SortDown as TaSortDown, SortDrop as TaSortDrop, SortResult as TaSortResult, SortRise as TaSortRise, SortUp as TaSortUp, SortZ2a as TaSortZ2a, Space as TaSpace, SpaceLine as TaSpaceLine, SpaceOpen as TaSpaceOpen, SpaceOpenLine as TaSpaceOpenLine, Speed as TaSpeed, Split as TaSplit, Sql1 as TaSql1, Sql2 as TaSql2, Sql3 as TaSql3, SqlTableView as TaSqlTableView, StarFill as TaStarFill, StarOutline as TaStarOutline, Sticker as TaSticker, StickerFill as TaStickerFill, Sticky as TaSticky, StopCircle as TaStopCircle, Stream as TaStream, StringSm as TaStringSm, Submit as TaSubmit, Subtract as TaSubtract, Subtract2 as TaSubtract2, Subtract3 as TaSubtract3, Success as TaSuccess, SuccessFill as TaSuccessFill, SvipFill as TaSvipFill, SwapFill as TaSwapFill, Switch as TaSwitch, SystemBuild as TaSystemBuild, SystemMgr as TaSystemMgr, SystemMsg as TaSystemMsg, TA2b as TaTA2b, TX2y as TaTX2y, Table1dtable as TaTable1dtable, TableClassic as TaTableClassic, TableCol as TaTableCol, TableKey as TaTableKey, TableRow as TaTableRow, TableSimple as TaTableSimple, TableStriped as TaTableStriped, Task as TaTask, TaskFlow as TaTaskFlow, TdLogo as TaTdLogo, TemplateCl as TaTemplateCl, Terminal as TaTerminal, TestRace as TaTestRace, TestSplit as TaTestSplit, TextCase as TaTextCase, TextWholeMatch as TaTextWholeMatch, ThumbDown as TaThumbDown, ThumbDownOutline as TaThumbDownOutline, ThumbUp as TaThumbUp, ThumbUpOutline as TaThumbUpOutline, TimeLock as TaTimeLock, TimeSm as TaTimeSm, Tips as TaTips, Tracking as TaTracking, TransferOwnership as TaTransferOwnership, Translation as TaTranslation, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, UPropertyShunt as TaUPropertyShunt, UPropertySm as TaUPropertySm, USearchCl as TaUSearchCl, UTag as TaUTag, UTagCl as TaUTagCl, UTagSm as TaUTagSm, Uncertified as TaUncertified, Undo as TaUndo, UndoApproval as TaUndoApproval, Unlink as TaUnlink, Unpin as TaUnpin, Unsave as TaUnsave, Update as TaUpdate, UpdateData as TaUpdateData, Upload as TaUpload, UploadId as TaUploadId, Usb as TaUsb, User1 as TaUser1, User1Fill as TaUser1Fill, User2 as TaUser2, UserAddFill as TaUserAddFill, UserSettings as TaUserSettings, UserTagCl as TaUserTagCl, Usertag as TaUsertag, VDashboardCl as TaVDashboardCl, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, Video as TaVideo, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|