@tant/icons 1.21.77 → 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/{progress-bar.js → progress-bar-cl.js} +9 -6
- package/dist/es/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/lib/icons/{progress-bar.js → progress-bar-cl.js} +9 -6
- package/dist/lib/index.js +3 -3
- package/dist/tant-icons.cjs.js +9 -6
- package/dist/tant-icons.esm.js +9 -6
- 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 ProgressBarCl = function ProgressBarCl(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -43,24 +43,27 @@ var ProgressBar = function ProgressBar(props) {
|
|
|
43
43
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
44
|
width: "24",
|
|
45
45
|
height: "24",
|
|
46
|
+
fill: "none",
|
|
46
47
|
xmlns: "http://www.w3.org/2000/svg"
|
|
47
48
|
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
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"
|
|
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"
|
|
49
51
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
52
|
opacity: ".5",
|
|
51
|
-
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"
|
|
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"
|
|
52
55
|
}))));
|
|
53
56
|
};
|
|
54
|
-
|
|
57
|
+
ProgressBarCl.propTypes = {
|
|
55
58
|
iconClassName: PropTypes.string,
|
|
56
59
|
spin: PropTypes.bool,
|
|
57
60
|
color: PropTypes.string,
|
|
58
61
|
testid: PropTypes.string,
|
|
59
62
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
60
63
|
};
|
|
61
|
-
|
|
64
|
+
ProgressBarCl.defaultProps = {
|
|
62
65
|
spin: false,
|
|
63
66
|
color: 'currentColor',
|
|
64
67
|
size: '1em'
|
|
65
68
|
};
|
|
66
|
-
export default
|
|
69
|
+
export default ProgressBarCl;
|
package/dist/es/index.js
CHANGED
|
@@ -204,7 +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
|
|
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
|
@@ -216,7 +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
|
|
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 ProgressBarCl = function ProgressBarCl(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -50,24 +50,27 @@ var ProgressBar = function ProgressBar(props) {
|
|
|
50
50
|
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
51
|
width: "24",
|
|
52
52
|
height: "24",
|
|
53
|
+
fill: "none",
|
|
53
54
|
xmlns: "http://www.w3.org/2000/svg"
|
|
54
55
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
-
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"
|
|
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"
|
|
56
58
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
59
|
opacity: ".5",
|
|
58
|
-
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"
|
|
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"
|
|
59
62
|
}))));
|
|
60
63
|
};
|
|
61
|
-
|
|
64
|
+
ProgressBarCl.propTypes = {
|
|
62
65
|
iconClassName: _propTypes["default"].string,
|
|
63
66
|
spin: _propTypes["default"].bool,
|
|
64
67
|
color: _propTypes["default"].string,
|
|
65
68
|
testid: _propTypes["default"].string,
|
|
66
69
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
67
70
|
};
|
|
68
|
-
|
|
71
|
+
ProgressBarCl.defaultProps = {
|
|
69
72
|
spin: false,
|
|
70
73
|
color: 'currentColor',
|
|
71
74
|
size: '1em'
|
|
72
75
|
};
|
|
73
|
-
var _default = exports["default"] =
|
|
76
|
+
var _default = exports["default"] = ProgressBarCl;
|
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, "TaProgressBarCl", {
|
|
2419
2419
|
enumerable: true,
|
|
2420
2420
|
get: function get() {
|
|
2421
|
-
return
|
|
2421
|
+
return _progressBarCl["default"];
|
|
2422
2422
|
}
|
|
2423
2423
|
});
|
|
2424
2424
|
Object.defineProperty(exports, "TaProject", {
|
|
@@ -3533,7 +3533,7 @@ var _mSql = _interopRequireDefault(require("./icons/m-sql"));
|
|
|
3533
3533
|
var _uTag = _interopRequireDefault(require("./icons/u-tag"));
|
|
3534
3534
|
var _mProperty = _interopRequireDefault(require("./icons/m-property"));
|
|
3535
3535
|
var _uGroup = _interopRequireDefault(require("./icons/u-group"));
|
|
3536
|
-
var
|
|
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
|
@@ -13757,7 +13757,7 @@ UGroup.defaultProps = {
|
|
|
13757
13757
|
|
|
13758
13758
|
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13759
13759
|
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13760
|
-
var
|
|
13760
|
+
var ProgressBarCl = function ProgressBarCl(props) {
|
|
13761
13761
|
var color = props.color,
|
|
13762
13762
|
size = props.size,
|
|
13763
13763
|
spin = props.spin,
|
|
@@ -13789,22 +13789,25 @@ var ProgressBar = function ProgressBar(props) {
|
|
|
13789
13789
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
13790
13790
|
width: "24",
|
|
13791
13791
|
height: "24",
|
|
13792
|
+
fill: "none",
|
|
13792
13793
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13793
13794
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13794
|
-
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"
|
|
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"
|
|
13795
13797
|
}), /*#__PURE__*/React.createElement("path", {
|
|
13796
13798
|
opacity: ".5",
|
|
13797
|
-
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"
|
|
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"
|
|
13798
13801
|
}))));
|
|
13799
13802
|
};
|
|
13800
|
-
|
|
13803
|
+
ProgressBarCl.propTypes = {
|
|
13801
13804
|
iconClassName: PropTypes.string,
|
|
13802
13805
|
spin: PropTypes.bool,
|
|
13803
13806
|
color: PropTypes.string,
|
|
13804
13807
|
testid: PropTypes.string,
|
|
13805
13808
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13806
13809
|
};
|
|
13807
|
-
|
|
13810
|
+
ProgressBarCl.defaultProps = {
|
|
13808
13811
|
spin: false,
|
|
13809
13812
|
color: 'currentColor',
|
|
13810
13813
|
size: '1em'
|
|
@@ -32875,7 +32878,7 @@ exports.TaPrivate = Private;
|
|
|
32875
32878
|
exports.TaProcessing = Processing;
|
|
32876
32879
|
exports.TaProcessing2 = Processing2;
|
|
32877
32880
|
exports.TaProgress = Progress;
|
|
32878
|
-
exports.
|
|
32881
|
+
exports.TaProgressBarCl = ProgressBarCl;
|
|
32879
32882
|
exports.TaProject = Project;
|
|
32880
32883
|
exports.TaProjectMgr = ProjectMgr;
|
|
32881
32884
|
exports.TaProperty = Property;
|
package/dist/tant-icons.esm.js
CHANGED
|
@@ -13751,7 +13751,7 @@ UGroup.defaultProps = {
|
|
|
13751
13751
|
|
|
13752
13752
|
var _excluded$3e = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
13753
13753
|
var loadingCircleStyle$3e = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
13754
|
-
var
|
|
13754
|
+
var ProgressBarCl = function ProgressBarCl(props) {
|
|
13755
13755
|
var color = props.color,
|
|
13756
13756
|
size = props.size,
|
|
13757
13757
|
spin = props.spin,
|
|
@@ -13783,22 +13783,25 @@ var ProgressBar = function ProgressBar(props) {
|
|
|
13783
13783
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
13784
13784
|
width: "24",
|
|
13785
13785
|
height: "24",
|
|
13786
|
+
fill: "none",
|
|
13786
13787
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13787
13788
|
}, /*#__PURE__*/React.createElement("path", {
|
|
13788
|
-
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"
|
|
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"
|
|
13789
13791
|
}), /*#__PURE__*/React.createElement("path", {
|
|
13790
13792
|
opacity: ".5",
|
|
13791
|
-
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"
|
|
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"
|
|
13792
13795
|
}))));
|
|
13793
13796
|
};
|
|
13794
|
-
|
|
13797
|
+
ProgressBarCl.propTypes = {
|
|
13795
13798
|
iconClassName: PropTypes.string,
|
|
13796
13799
|
spin: PropTypes.bool,
|
|
13797
13800
|
color: PropTypes.string,
|
|
13798
13801
|
testid: PropTypes.string,
|
|
13799
13802
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
13800
13803
|
};
|
|
13801
|
-
|
|
13804
|
+
ProgressBarCl.defaultProps = {
|
|
13802
13805
|
spin: false,
|
|
13803
13806
|
color: 'currentColor',
|
|
13804
13807
|
size: '1em'
|
|
@@ -32467,4 +32470,4 @@ CalendarCheck.defaultProps = {
|
|
|
32467
32470
|
size: '1em'
|
|
32468
32471
|
};
|
|
32469
32472
|
|
|
32470
|
-
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 };
|
|
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 };
|