@tant/icons 1.18.36 → 1.18.37
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/{manage-dashboard-cl.js → v-dashboard-cl.js} +4 -4
- package/dist/es/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/lib/icons/{manage-dashboard-cl.js → v-dashboard-cl.js} +4 -4
- package/dist/lib/index.js +7 -7
- package/dist/tant-icons.cjs.js +4 -4
- package/dist/tant-icons.esm.js +4 -4
- 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 VDashboardCl = function VDashboardCl(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -59,16 +59,16 @@ var ManageDashboardCl = function ManageDashboardCl(props) {
|
|
|
59
59
|
fill: "#1673F6"
|
|
60
60
|
}))));
|
|
61
61
|
};
|
|
62
|
-
|
|
62
|
+
VDashboardCl.propTypes = {
|
|
63
63
|
iconClassName: PropTypes.string,
|
|
64
64
|
spin: PropTypes.bool,
|
|
65
65
|
color: PropTypes.string,
|
|
66
66
|
testid: PropTypes.string,
|
|
67
67
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
68
68
|
};
|
|
69
|
-
|
|
69
|
+
VDashboardCl.defaultProps = {
|
|
70
70
|
spin: false,
|
|
71
71
|
color: 'currentColor',
|
|
72
72
|
size: '1em'
|
|
73
73
|
};
|
|
74
|
-
export default
|
|
74
|
+
export default VDashboardCl;
|
package/dist/es/index.js
CHANGED
|
@@ -61,7 +61,7 @@ export { default as TaTemplateCl } from './icons/template-cl';
|
|
|
61
61
|
export { default as TaDateMarkCl } from './icons/date-mark-cl';
|
|
62
62
|
export { default as TaSWorkspace } from './icons/s-workspace';
|
|
63
63
|
export { default as TaSAdministrator } from './icons/s-administrator';
|
|
64
|
-
export { default as
|
|
64
|
+
export { default as TaVDashboardCl } from './icons/v-dashboard-cl';
|
|
65
65
|
export { default as TaVManageDashboardCl } from './icons/v-manage-dashboard-cl';
|
|
66
66
|
export { default as TaLogoDingdingCl } from './icons/logo-dingding-cl';
|
|
67
67
|
export { default as TaLogoDingdingGray } from './icons/logo-dingding-gray';
|
package/dist/index.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export const TaTemplateCl: Icon;
|
|
|
73
73
|
export const TaDateMarkCl: Icon;
|
|
74
74
|
export const TaSWorkspace: Icon;
|
|
75
75
|
export const TaSAdministrator: Icon;
|
|
76
|
-
export const
|
|
76
|
+
export const TaVDashboardCl: Icon;
|
|
77
77
|
export const TaVManageDashboardCl: Icon;
|
|
78
78
|
export const TaLogoDingdingCl: Icon;
|
|
79
79
|
export const TaLogoDingdingGray: 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 VDashboardCl = function VDashboardCl(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -66,16 +66,16 @@ var ManageDashboardCl = function ManageDashboardCl(props) {
|
|
|
66
66
|
fill: "#1673F6"
|
|
67
67
|
}))));
|
|
68
68
|
};
|
|
69
|
-
|
|
69
|
+
VDashboardCl.propTypes = {
|
|
70
70
|
iconClassName: _propTypes["default"].string,
|
|
71
71
|
spin: _propTypes["default"].bool,
|
|
72
72
|
color: _propTypes["default"].string,
|
|
73
73
|
testid: _propTypes["default"].string,
|
|
74
74
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
75
75
|
};
|
|
76
|
-
|
|
76
|
+
VDashboardCl.defaultProps = {
|
|
77
77
|
spin: false,
|
|
78
78
|
color: 'currentColor',
|
|
79
79
|
size: '1em'
|
|
80
80
|
};
|
|
81
|
-
var _default = exports["default"] =
|
|
81
|
+
var _default = exports["default"] = VDashboardCl;
|
package/dist/lib/index.js
CHANGED
|
@@ -1779,12 +1779,6 @@ Object.defineProperty(exports, "TaMagicWand", {
|
|
|
1779
1779
|
return _magicWand["default"];
|
|
1780
1780
|
}
|
|
1781
1781
|
});
|
|
1782
|
-
Object.defineProperty(exports, "TaManageDashboardCl", {
|
|
1783
|
-
enumerable: true,
|
|
1784
|
-
get: function get() {
|
|
1785
|
-
return _manageDashboardCl["default"];
|
|
1786
|
-
}
|
|
1787
|
-
});
|
|
1788
1782
|
Object.defineProperty(exports, "TaManageQuery", {
|
|
1789
1783
|
enumerable: true,
|
|
1790
1784
|
get: function get() {
|
|
@@ -2907,6 +2901,12 @@ Object.defineProperty(exports, "TaUsertag", {
|
|
|
2907
2901
|
return _usertag["default"];
|
|
2908
2902
|
}
|
|
2909
2903
|
});
|
|
2904
|
+
Object.defineProperty(exports, "TaVDashboardCl", {
|
|
2905
|
+
enumerable: true,
|
|
2906
|
+
get: function get() {
|
|
2907
|
+
return _vDashboardCl["default"];
|
|
2908
|
+
}
|
|
2909
|
+
});
|
|
2910
2910
|
Object.defineProperty(exports, "TaVManageDashboardCl", {
|
|
2911
2911
|
enumerable: true,
|
|
2912
2912
|
get: function get() {
|
|
@@ -3024,7 +3024,7 @@ var _templateCl = _interopRequireDefault(require("./icons/template-cl"));
|
|
|
3024
3024
|
var _dateMarkCl = _interopRequireDefault(require("./icons/date-mark-cl"));
|
|
3025
3025
|
var _sWorkspace = _interopRequireDefault(require("./icons/s-workspace"));
|
|
3026
3026
|
var _sAdministrator = _interopRequireDefault(require("./icons/s-administrator"));
|
|
3027
|
-
var
|
|
3027
|
+
var _vDashboardCl = _interopRequireDefault(require("./icons/v-dashboard-cl"));
|
|
3028
3028
|
var _vManageDashboardCl = _interopRequireDefault(require("./icons/v-manage-dashboard-cl"));
|
|
3029
3029
|
var _logoDingdingCl = _interopRequireDefault(require("./icons/logo-dingding-cl"));
|
|
3030
3030
|
var _logoDingdingGray = _interopRequireDefault(require("./icons/logo-dingding-gray"));
|
package/dist/tant-icons.cjs.js
CHANGED
|
@@ -4430,7 +4430,7 @@ SAdministrator.defaultProps = {
|
|
|
4430
4430
|
|
|
4431
4431
|
var _excluded$$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
4432
4432
|
var loadingCircleStyle$$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
4433
|
-
var
|
|
4433
|
+
var VDashboardCl = function VDashboardCl(props) {
|
|
4434
4434
|
var color = props.color,
|
|
4435
4435
|
size = props.size,
|
|
4436
4436
|
spin = props.spin,
|
|
@@ -4478,14 +4478,14 @@ var ManageDashboardCl = function ManageDashboardCl(props) {
|
|
|
4478
4478
|
fill: "#1673F6"
|
|
4479
4479
|
}))));
|
|
4480
4480
|
};
|
|
4481
|
-
|
|
4481
|
+
VDashboardCl.propTypes = {
|
|
4482
4482
|
iconClassName: PropTypes.string,
|
|
4483
4483
|
spin: PropTypes.bool,
|
|
4484
4484
|
color: PropTypes.string,
|
|
4485
4485
|
testid: PropTypes.string,
|
|
4486
4486
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
4487
4487
|
};
|
|
4488
|
-
|
|
4488
|
+
VDashboardCl.defaultProps = {
|
|
4489
4489
|
spin: false,
|
|
4490
4490
|
color: 'currentColor',
|
|
4491
4491
|
size: '1em'
|
|
@@ -28601,7 +28601,6 @@ exports.TaMSql = MSql;
|
|
|
28601
28601
|
exports.TaMSqlCl = MSqlCl;
|
|
28602
28602
|
exports.TaMTrophyCl = MTrophyCl;
|
|
28603
28603
|
exports.TaMagicWand = MagicWand;
|
|
28604
|
-
exports.TaManageDashboardCl = ManageDashboardCl;
|
|
28605
28604
|
exports.TaManageQuery = ManageQuery;
|
|
28606
28605
|
exports.TaManual = Manual;
|
|
28607
28606
|
exports.TaMap = Map;
|
|
@@ -28789,6 +28788,7 @@ exports.TaUserAddFill = UserAddFill;
|
|
|
28789
28788
|
exports.TaUserSettings = UserSettings;
|
|
28790
28789
|
exports.TaUserTagCl = UserTagCl;
|
|
28791
28790
|
exports.TaUsertag = Usertag;
|
|
28791
|
+
exports.TaVDashboardCl = VDashboardCl;
|
|
28792
28792
|
exports.TaVManageDashboardCl = VManageDashboardCl;
|
|
28793
28793
|
exports.TaVPropCl = VPropCl;
|
|
28794
28794
|
exports.TaVProperty = VProperty;
|
package/dist/tant-icons.esm.js
CHANGED
|
@@ -4424,7 +4424,7 @@ SAdministrator.defaultProps = {
|
|
|
4424
4424
|
|
|
4425
4425
|
var _excluded$$ = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
4426
4426
|
var loadingCircleStyle$$ = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
4427
|
-
var
|
|
4427
|
+
var VDashboardCl = function VDashboardCl(props) {
|
|
4428
4428
|
var color = props.color,
|
|
4429
4429
|
size = props.size,
|
|
4430
4430
|
spin = props.spin,
|
|
@@ -4472,14 +4472,14 @@ var ManageDashboardCl = function ManageDashboardCl(props) {
|
|
|
4472
4472
|
fill: "#1673F6"
|
|
4473
4473
|
}))));
|
|
4474
4474
|
};
|
|
4475
|
-
|
|
4475
|
+
VDashboardCl.propTypes = {
|
|
4476
4476
|
iconClassName: PropTypes.string,
|
|
4477
4477
|
spin: PropTypes.bool,
|
|
4478
4478
|
color: PropTypes.string,
|
|
4479
4479
|
testid: PropTypes.string,
|
|
4480
4480
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
4481
4481
|
};
|
|
4482
|
-
|
|
4482
|
+
VDashboardCl.defaultProps = {
|
|
4483
4483
|
spin: false,
|
|
4484
4484
|
color: 'currentColor',
|
|
4485
4485
|
size: '1em'
|
|
@@ -28299,4 +28299,4 @@ SatelliteDish.defaultProps = {
|
|
|
28299
28299
|
size: '1em'
|
|
28300
28300
|
};
|
|
28301
28301
|
|
|
28302
|
-
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, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, 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, 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, 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, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, 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, Cost as TaCost, Currency as TaCurrency, 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, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardMgr as TaDashboardMgr, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, 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, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, 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, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, 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, 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, Heart as TaHeart, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, 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, 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, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, 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, ManageDashboardCl as TaManageDashboardCl, ManageQuery as TaManageQuery, Manual as TaManual, 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, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, NumSm as TaNumSm, 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, Partition as TaPartition, Password as TaPassword, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, 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, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, 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, 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, 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, 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, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, 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, VManageDashboardCl as TaVManageDashboardCl, VPropCl as TaVPropCl, VProperty as TaVProperty, VPropertySm as TaVPropertySm, Validate as TaValidate, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|
|
28302
|
+
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, AlignRight as TaAlignRight, AllGroupSm as TaAllGroupSm, Analysis as TaAnalysis, Anchor as TaAnchor, Application as TaApplication, Approve as TaApprove, ArrayRowsSm as TaArrayRowsSm, ArrowDown as TaArrowDown, ArrowDown2 as TaArrowDown2, ArrowGoBack as TaArrowGoBack, ArrowGoForward as TaArrowGoForward, ArrowLeft as TaArrowLeft, ArrowLeft2 as TaArrowLeft2, ArrowLeftDown as TaArrowLeftDown, ArrowRight as TaArrowRight, ArrowRight2 as TaArrowRight2, 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, 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, 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, Click as TaClick, Clock as TaClock, Close as TaClose, Code as TaCode, CodeVariable as TaCodeVariable, 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, Cost as TaCost, Currency as TaCurrency, 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, Dashboard as TaDashboard, DashboardAiCl as TaDashboardAiCl, DashboardCl as TaDashboardCl, DashboardMgr as TaDashboardMgr, DashboardReadingCl as TaDashboardReadingCl, DataInput as TaDataInput, 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, DropDown as TaDropDown, DropUp as TaDropUp, ECampaignCl as TaECampaignCl, EChartsCl as TaEChartsCl, EConfigCl as TaEConfigCl, 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, Error as TaError, Error2 as TaError2, Error2Fill as TaError2Fill, ErrorFill as TaErrorFill, EventMgr as TaEventMgr, EventModify as TaEventModify, EventPropMgr as TaEventPropMgr, 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, 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, Heart as TaHeart, Help as TaHelp, History as TaHistory, IdFreeze as TaIdFreeze, Image as TaImage, Import as TaImport, Index as TaIndex, 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, 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, LogoFutuCl as TaLogoFutuCl, LogoGarenaCl as TaLogoGarenaCl, LogoHappyelementCl as TaLogoHappyelementCl, LogoIggCl as TaLogoIggCl, LogoJiguangCl as TaLogoJiguangCl, LogoKingCl as TaLogoKingCl, LogoLitmatchCl as TaLogoLitmatchCl, 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, 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, NewIndicator as TaNewIndicator, NewTask as TaNewTask, Notice as TaNotice, NumSm as TaNumSm, 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, Partition as TaPartition, Password as TaPassword, Pattern as TaPattern, Pause2 as TaPause2, PauseCircle as TaPauseCircle, Pin as TaPin, Pin2 as TaPin2, PinFill as TaPinFill, PinUnsave as TaPinUnsave, Pinch as TaPinch, Play as TaPlay, PlayCircle as TaPlayCircle, Plug as TaPlug, Private as TaPrivate, Processing as TaProcessing, Processing2 as TaProcessing2, 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, ReportRemoval as TaReportRemoval, ResetPassword as TaResetPassword, Resizer as TaResizer, Result as TaResult, Revert as TaRevert, RowsSm as TaRowsSm, Ruler as TaRuler, SAdministrator as TaSAdministrator, SSpace as TaSSpace, SWorkspace as TaSWorkspace, 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, 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, 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, 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, TriDown as TaTriDown, TriLeft as TaTriLeft, TriRight as TaTriRight, TriUp as TaTriUp, UCohortCl as TaUCohortCl, UGroup as TaUGroup, UGroupSm as TaUGroupSm, UPropMgr as TaUPropMgr, 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, ViewOriginal as TaViewOriginal, Vip as TaVip, VipFill as TaVipFill, Warehouse as TaWarehouse };
|