@tant/icons 1.22.4 → 1.22.5
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/{logo-airbridge.js → logo-airbridge-cl.js} +11 -7
- package/dist/es/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/lib/icons/{logo-airbridge.js → logo-airbridge-cl.js} +11 -7
- package/dist/lib/index.js +3 -3
- package/dist/tant-icons.cjs.js +11 -7
- package/dist/tant-icons.esm.js +11 -7
- 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 LogoAirbridgeCl = function LogoAirbridgeCl(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -43,29 +43,33 @@ var LogoAirbridge = function LogoAirbridge(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: "M13.875 13.25H10l2-5 1.875 5z"
|
|
49
|
+
d: "M13.875 13.25H10l2-5 1.875 5z",
|
|
50
|
+
fill: "#005DE5"
|
|
49
51
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
52
|
fillRule: "evenodd",
|
|
51
53
|
clipRule: "evenodd",
|
|
52
|
-
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z"
|
|
54
|
+
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z",
|
|
55
|
+
fill: "#005DE5"
|
|
53
56
|
}), /*#__PURE__*/React.createElement("path", {
|
|
54
57
|
fillRule: "evenodd",
|
|
55
58
|
clipRule: "evenodd",
|
|
56
|
-
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z"
|
|
59
|
+
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z",
|
|
60
|
+
fill: "#fff"
|
|
57
61
|
}))));
|
|
58
62
|
};
|
|
59
|
-
|
|
63
|
+
LogoAirbridgeCl.propTypes = {
|
|
60
64
|
iconClassName: PropTypes.string,
|
|
61
65
|
spin: PropTypes.bool,
|
|
62
66
|
color: PropTypes.string,
|
|
63
67
|
testid: PropTypes.string,
|
|
64
68
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
65
69
|
};
|
|
66
|
-
|
|
70
|
+
LogoAirbridgeCl.defaultProps = {
|
|
67
71
|
spin: false,
|
|
68
72
|
color: 'currentColor',
|
|
69
73
|
size: '1em'
|
|
70
74
|
};
|
|
71
|
-
export default
|
|
75
|
+
export default LogoAirbridgeCl;
|
package/dist/es/index.js
CHANGED
|
@@ -111,7 +111,7 @@ export { default as TaLogoStarrocksCl } from './icons/logo-starrocks-cl';
|
|
|
111
111
|
export { default as TaLogoFlinkCl } from './icons/logo-flink-cl';
|
|
112
112
|
export { default as TaLogoSparkCl } from './icons/logo-spark-cl';
|
|
113
113
|
export { default as TaLogoSamlCl } from './icons/logo-saml-cl';
|
|
114
|
-
export { default as
|
|
114
|
+
export { default as TaLogoAirbridgeCl } from './icons/logo-airbridge-cl';
|
|
115
115
|
export { default as TaAvatarGroupCl } from './icons/avatar-group-cl';
|
|
116
116
|
export { default as TaAvatarProjectCl } from './icons/avatar-project-cl';
|
|
117
117
|
export { default as TaReport } from './icons/report';
|
package/dist/index.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ export const TaLogoStarrocksCl: Icon;
|
|
|
123
123
|
export const TaLogoFlinkCl: Icon;
|
|
124
124
|
export const TaLogoSparkCl: Icon;
|
|
125
125
|
export const TaLogoSamlCl: Icon;
|
|
126
|
-
export const
|
|
126
|
+
export const TaLogoAirbridgeCl: Icon;
|
|
127
127
|
export const TaAvatarGroupCl: Icon;
|
|
128
128
|
export const TaAvatarProjectCl: Icon;
|
|
129
129
|
export const TaReport: 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 LogoAirbridgeCl = function LogoAirbridgeCl(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -50,29 +50,33 @@ var LogoAirbridge = function LogoAirbridge(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: "M13.875 13.25H10l2-5 1.875 5z"
|
|
56
|
+
d: "M13.875 13.25H10l2-5 1.875 5z",
|
|
57
|
+
fill: "#005DE5"
|
|
56
58
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
59
|
fillRule: "evenodd",
|
|
58
60
|
clipRule: "evenodd",
|
|
59
|
-
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z"
|
|
61
|
+
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z",
|
|
62
|
+
fill: "#005DE5"
|
|
60
63
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
61
64
|
fillRule: "evenodd",
|
|
62
65
|
clipRule: "evenodd",
|
|
63
|
-
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z"
|
|
66
|
+
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z",
|
|
67
|
+
fill: "#fff"
|
|
64
68
|
}))));
|
|
65
69
|
};
|
|
66
|
-
|
|
70
|
+
LogoAirbridgeCl.propTypes = {
|
|
67
71
|
iconClassName: _propTypes["default"].string,
|
|
68
72
|
spin: _propTypes["default"].bool,
|
|
69
73
|
color: _propTypes["default"].string,
|
|
70
74
|
testid: _propTypes["default"].string,
|
|
71
75
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
72
76
|
};
|
|
73
|
-
|
|
77
|
+
LogoAirbridgeCl.defaultProps = {
|
|
74
78
|
spin: false,
|
|
75
79
|
color: 'currentColor',
|
|
76
80
|
size: '1em'
|
|
77
81
|
};
|
|
78
|
-
var _default = exports["default"] =
|
|
82
|
+
var _default = exports["default"] = LogoAirbridgeCl;
|
package/dist/lib/index.js
CHANGED
|
@@ -1731,10 +1731,10 @@ Object.defineProperty(exports, "TaLockOpenFill", {
|
|
|
1731
1731
|
return _lockOpenFill["default"];
|
|
1732
1732
|
}
|
|
1733
1733
|
});
|
|
1734
|
-
Object.defineProperty(exports, "
|
|
1734
|
+
Object.defineProperty(exports, "TaLogoAirbridgeCl", {
|
|
1735
1735
|
enumerable: true,
|
|
1736
1736
|
get: function get() {
|
|
1737
|
-
return
|
|
1737
|
+
return _logoAirbridgeCl["default"];
|
|
1738
1738
|
}
|
|
1739
1739
|
});
|
|
1740
1740
|
Object.defineProperty(exports, "TaLogoAndroidGray", {
|
|
@@ -3572,7 +3572,7 @@ var _logoStarrocksCl = _interopRequireDefault(require("./icons/logo-starrocks-cl
|
|
|
3572
3572
|
var _logoFlinkCl = _interopRequireDefault(require("./icons/logo-flink-cl"));
|
|
3573
3573
|
var _logoSparkCl = _interopRequireDefault(require("./icons/logo-spark-cl"));
|
|
3574
3574
|
var _logoSamlCl = _interopRequireDefault(require("./icons/logo-saml-cl"));
|
|
3575
|
-
var
|
|
3575
|
+
var _logoAirbridgeCl = _interopRequireDefault(require("./icons/logo-airbridge-cl"));
|
|
3576
3576
|
var _avatarGroupCl = _interopRequireDefault(require("./icons/avatar-group-cl"));
|
|
3577
3577
|
var _avatarProjectCl = _interopRequireDefault(require("./icons/avatar-project-cl"));
|
|
3578
3578
|
var _report = _interopRequireDefault(require("./icons/report"));
|
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -8854,7 +8854,7 @@ LogoSamlCl.defaultProps = {
|
|
|
8854
8854
|
|
|
8855
8855
|
var _excluded$1N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
8856
8856
|
var loadingCircleStyle$1N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
8857
|
-
var
|
|
8857
|
+
var LogoAirbridgeCl = function LogoAirbridgeCl(props) {
|
|
8858
8858
|
var color = props.color,
|
|
8859
8859
|
size = props.size,
|
|
8860
8860
|
spin = props.spin,
|
|
@@ -8886,27 +8886,31 @@ var LogoAirbridge = function LogoAirbridge(props) {
|
|
|
8886
8886
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
8887
8887
|
width: "24",
|
|
8888
8888
|
height: "24",
|
|
8889
|
+
fill: "none",
|
|
8889
8890
|
xmlns: "http://www.w3.org/2000/svg"
|
|
8890
8891
|
}, /*#__PURE__*/React.createElement("path", {
|
|
8891
|
-
d: "M13.875 13.25H10l2-5 1.875 5z"
|
|
8892
|
+
d: "M13.875 13.25H10l2-5 1.875 5z",
|
|
8893
|
+
fill: "#005DE5"
|
|
8892
8894
|
}), /*#__PURE__*/React.createElement("path", {
|
|
8893
8895
|
fillRule: "evenodd",
|
|
8894
8896
|
clipRule: "evenodd",
|
|
8895
|
-
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z"
|
|
8897
|
+
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z",
|
|
8898
|
+
fill: "#005DE5"
|
|
8896
8899
|
}), /*#__PURE__*/React.createElement("path", {
|
|
8897
8900
|
fillRule: "evenodd",
|
|
8898
8901
|
clipRule: "evenodd",
|
|
8899
|
-
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z"
|
|
8902
|
+
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z",
|
|
8903
|
+
fill: "#fff"
|
|
8900
8904
|
}))));
|
|
8901
8905
|
};
|
|
8902
|
-
|
|
8906
|
+
LogoAirbridgeCl.propTypes = {
|
|
8903
8907
|
iconClassName: PropTypes.string,
|
|
8904
8908
|
spin: PropTypes.bool,
|
|
8905
8909
|
color: PropTypes.string,
|
|
8906
8910
|
testid: PropTypes.string,
|
|
8907
8911
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
8908
8912
|
};
|
|
8909
|
-
|
|
8913
|
+
LogoAirbridgeCl.defaultProps = {
|
|
8910
8914
|
spin: false,
|
|
8911
8915
|
color: 'currentColor',
|
|
8912
8916
|
size: '1em'
|
|
@@ -34244,7 +34248,7 @@ exports.TaLockClose = LockClose;
|
|
|
34244
34248
|
exports.TaLockCloseFill = LockCloseFill;
|
|
34245
34249
|
exports.TaLockOpen = LockOpen;
|
|
34246
34250
|
exports.TaLockOpenFill = LockOpenFill;
|
|
34247
|
-
exports.
|
|
34251
|
+
exports.TaLogoAirbridgeCl = LogoAirbridgeCl;
|
|
34248
34252
|
exports.TaLogoAndroidGray = LogoAndroidGray;
|
|
34249
34253
|
exports.TaLogoApiGray = LogoApiGray;
|
|
34250
34254
|
exports.TaLogoAppPushGray = LogoAppPushGray;
|
package/dist/tant-icons.esm.js
CHANGED
|
@@ -8848,7 +8848,7 @@ LogoSamlCl.defaultProps = {
|
|
|
8848
8848
|
|
|
8849
8849
|
var _excluded$1N = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
8850
8850
|
var loadingCircleStyle$1N = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
8851
|
-
var
|
|
8851
|
+
var LogoAirbridgeCl = function LogoAirbridgeCl(props) {
|
|
8852
8852
|
var color = props.color,
|
|
8853
8853
|
size = props.size,
|
|
8854
8854
|
spin = props.spin,
|
|
@@ -8880,27 +8880,31 @@ var LogoAirbridge = function LogoAirbridge(props) {
|
|
|
8880
8880
|
}), /*#__PURE__*/React.createElement("svg", {
|
|
8881
8881
|
width: "24",
|
|
8882
8882
|
height: "24",
|
|
8883
|
+
fill: "none",
|
|
8883
8884
|
xmlns: "http://www.w3.org/2000/svg"
|
|
8884
8885
|
}, /*#__PURE__*/React.createElement("path", {
|
|
8885
|
-
d: "M13.875 13.25H10l2-5 1.875 5z"
|
|
8886
|
+
d: "M13.875 13.25H10l2-5 1.875 5z",
|
|
8887
|
+
fill: "#005DE5"
|
|
8886
8888
|
}), /*#__PURE__*/React.createElement("path", {
|
|
8887
8889
|
fillRule: "evenodd",
|
|
8888
8890
|
clipRule: "evenodd",
|
|
8889
|
-
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z"
|
|
8891
|
+
d: "M20.5 2A1.5 1.5 0 0122 3.5v17a1.5 1.5 0 01-1.5 1.5h-17A1.5 1.5 0 012 20.5v-17A1.5 1.5 0 013.5 2h17zm-9.625 3.75l-5.25 12.375h2.5L9.25 15h5.5l1.125 3.125h2.5L13.125 5.75h-2.25z",
|
|
8892
|
+
fill: "#005DE5"
|
|
8890
8893
|
}), /*#__PURE__*/React.createElement("path", {
|
|
8891
8894
|
fillRule: "evenodd",
|
|
8892
8895
|
clipRule: "evenodd",
|
|
8893
|
-
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z"
|
|
8896
|
+
d: "M18.375 18.125h-2.5L14.75 15h-5.5l-1.125 3.125h-2.5l5.25-12.375h2.25l5.25 12.375zM10 13.25h3.875L12 8.25l-2 5z",
|
|
8897
|
+
fill: "#fff"
|
|
8894
8898
|
}))));
|
|
8895
8899
|
};
|
|
8896
|
-
|
|
8900
|
+
LogoAirbridgeCl.propTypes = {
|
|
8897
8901
|
iconClassName: PropTypes.string,
|
|
8898
8902
|
spin: PropTypes.bool,
|
|
8899
8903
|
color: PropTypes.string,
|
|
8900
8904
|
testid: PropTypes.string,
|
|
8901
8905
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
8902
8906
|
};
|
|
8903
|
-
|
|
8907
|
+
LogoAirbridgeCl.defaultProps = {
|
|
8904
8908
|
spin: false,
|
|
8905
8909
|
color: 'currentColor',
|
|
8906
8910
|
size: '1em'
|
|
@@ -33950,4 +33954,4 @@ CalendarCheck.defaultProps = {
|
|
|
33950
33954
|
size: '1em'
|
|
33951
33955
|
};
|
|
33952
33956
|
|
|
33953
|
-
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, AisqlCl as TaAisqlCl, 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, Calculate as TaCalculate, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cart as TaCart, 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, Cpu as TaCpu, Create as TaCreate, Currency as TaCurrency, Custom as TaCustom, CustomPartition as TaCustomPartition, Cyctime as TaCyctime, 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, DataProcessing as TaDataProcessing, 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, Discount as TaDiscount, 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, Hammer as TaHammer, 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, LogoAirbridge as TaLogoAirbridge, 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, LogoSamlCl as TaLogoSamlCl, 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, MagicCl as TaMagicCl, MagicWand as TaMagicWand, MagicWandCl as TaMagicWandCl, 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, MultidimensionalFiltering as TaMultidimensionalFiltering, 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, Open as TaOpen, 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, Picture as TaPicture, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformCommunityCl as TaPlatformCommunityCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Price as TaPrice, 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, Snapshot as TaSnapshot, 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, StarOk as TaStarOk, 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, Text as TaText, 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, Webpage as TaWebpage };
|
|
33957
|
+
export { Add1 as TaAdd1, Add2 as TaAdd2, Add3 as TaAdd3, Add3Fill as TaAdd3Fill, AddIndexCl as TaAddIndexCl, AddToPage as TaAddToPage, AisqlCl as TaAisqlCl, 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, Calculate as TaCalculate, Calendar as TaCalendar, CalendarCheck as TaCalendarCheck, CalendarSm as TaCalendarSm, Card as TaCard, Cart as TaCart, 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, Cpu as TaCpu, Create as TaCreate, Currency as TaCurrency, Custom as TaCustom, CustomPartition as TaCustomPartition, Cyctime as TaCyctime, 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, DataProcessing as TaDataProcessing, 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, Discount as TaDiscount, 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, Hammer as TaHammer, 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, LogoAirbridgeCl as TaLogoAirbridgeCl, 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, LogoSamlCl as TaLogoSamlCl, 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, MagicCl as TaMagicCl, MagicWand as TaMagicWand, MagicWandCl as TaMagicWandCl, 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, MultidimensionalFiltering as TaMultidimensionalFiltering, 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, Open as TaOpen, 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, Picture as TaPicture, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, PlanetCl as TaPlanetCl, PlatformAnalyticsCl as TaPlatformAnalyticsCl, PlatformCommunityCl as TaPlatformCommunityCl, PlatformDataopsCl as TaPlatformDataopsCl, PlatformSystemCl as TaPlatformSystemCl, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Post as TaPost, Price as TaPrice, 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, Snapshot as TaSnapshot, 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, StarOk as TaStarOk, 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, Text as TaText, 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, Webpage as TaWebpage };
|