@tant/icons 1.22.28 → 1.22.30
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/chart-topic.js +67 -0
- package/dist/es/icons/{python.js → logo-python-cl.js} +9 -6
- package/dist/es/icons/note.js +63 -0
- package/dist/es/index.js +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/lib/icons/chart-topic.js +74 -0
- package/dist/lib/icons/{python.js → logo-python-cl.js} +9 -6
- package/dist/lib/icons/note.js +70 -0
- package/dist/lib/index.js +21 -7
- package/dist/tant-icons.cjs.js +1828 -1715
- package/dist/tant-icons.esm.js +1826 -1715
- package/package.json +1 -1
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var ChartTopic = function ChartTopic(props) {
|
|
15
|
+
var color = props.color,
|
|
16
|
+
size = props.size,
|
|
17
|
+
spin = props.spin,
|
|
18
|
+
style = props.style,
|
|
19
|
+
className = props.className,
|
|
20
|
+
iconClassName = props.iconClassName,
|
|
21
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M21 4a1 1 0 011 1v4h-2V8H4v10h6v2H3a1 1 0 01-1-1V5a1 1 0 011-1h18z"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
fillRule: "evenodd",
|
|
51
|
+
clipRule: "evenodd",
|
|
52
|
+
d: "M19.67 16.645a2.32 2.32 0 00-1.745.793l-1.094-.775c.116-.32.183-.663.183-1.022 0-.354-.064-.69-.176-1.007l1.091-.766a2.318 2.318 0 001.743.789A2.33 2.33 0 0022 12.328 2.331 2.331 0 0019.672 10a2.332 2.332 0 00-2.232 2.99l-1.093.767c-.466-.578-1.031-.948-1.861-1.082a2.588 2.588 0 00-1 .007c-.79.139-1.326.487-1.78 1.028A3.01 3.01 0 0011 15.64a3.01 3.01 0 00.713 1.94c.459.542 1 .89 1.795 1.023.384.065.614.065.998 0 .816-.137 1.37-.5 1.83-1.065l1.102.78a2.331 2.331 0 002.233 2.983A2.33 2.33 0 0022 18.973a2.332 2.332 0 00-2.33-2.328zm.799-5.114a1.13 1.13 0 00-.798-.33 1.13 1.13 0 00-1.129 1.128 1.13 1.13 0 001.926.798 1.13 1.13 0 000-1.596zm-7.576 5.223a1.577 1.577 0 002.226 0 1.576 1.576 0 000-2.226 1.576 1.576 0 00-2.226 0 1.576 1.576 0 000 2.226zm5.98 3.017a1.13 1.13 0 001.595 0 1.13 1.13 0 000-1.596 1.13 1.13 0 00-1.926.798c0 .3.12.586.331.798z"
|
|
53
|
+
}))));
|
|
54
|
+
};
|
|
55
|
+
ChartTopic.propTypes = {
|
|
56
|
+
iconClassName: PropTypes.string,
|
|
57
|
+
spin: PropTypes.bool,
|
|
58
|
+
color: PropTypes.string,
|
|
59
|
+
testid: PropTypes.string,
|
|
60
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
61
|
+
};
|
|
62
|
+
ChartTopic.defaultProps = {
|
|
63
|
+
spin: false,
|
|
64
|
+
color: 'currentColor',
|
|
65
|
+
size: '1em'
|
|
66
|
+
};
|
|
67
|
+
export default ChartTopic;
|
|
@@ -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 LogoPythonCl = function LogoPythonCl(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -43,23 +43,26 @@ var Python = function Python(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: "M10.074 3A2.573 2.573 0 007.5 5.574v1.512h3.862c.35 0 .638.514.638.864H5.574A2.573 2.573 0 003 10.524v3.403a2.573 2.573 0 002.574 2.574h1.062V14.09a2.566 2.566 0 012.566-2.574h4.724a2.566 2.566 0 002.575-2.565V5.574A2.574 2.574 0 0013.926 3h-3.852zm-.648 1.45c.36 0 .648.108.648.638 0 .532-.288.802-.648.802-.35 0-.638-.27-.638-.8 0-.532.288-.64.638-.64z"
|
|
49
|
+
d: "M10.074 3A2.573 2.573 0 007.5 5.574v1.512h3.862c.35 0 .638.514.638.864H5.574A2.573 2.573 0 003 10.524v3.403a2.573 2.573 0 002.574 2.574h1.062V14.09a2.566 2.566 0 012.566-2.574h4.724a2.566 2.566 0 002.575-2.565V5.574A2.574 2.574 0 0013.926 3h-3.852zm-.648 1.45c.36 0 .648.108.648.638 0 .532-.288.802-.648.802-.35 0-.638-.27-.638-.8 0-.532.288-.64.638-.64z",
|
|
50
|
+
fill: "#3C78AA"
|
|
49
51
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
-
d: "M17.364 7.5v2.412a2.565 2.565 0 01-2.566 2.574h-4.724A2.568 2.568 0 007.5 15.05v3.376A2.574 2.574 0 0010.074 21h3.852a2.574 2.574 0 002.574-2.573v-1.512h-3.862c-.351 0-.638-.513-.638-.864h6.426a2.573 2.573 0 002.575-2.575v-3.402A2.575 2.575 0 0018.426 7.5h-1.062zm-8.676 4.062l-.004.004c.012-.002.023 0 .035-.004h-.031zm5.886 6.548c.352 0 .64.27.64.802a.64.64 0 01-.64.638c-.36 0-.648-.108-.648-.638 0-.532.288-.802.648-.802z"
|
|
52
|
+
d: "M17.364 7.5v2.412a2.565 2.565 0 01-2.566 2.574h-4.724A2.568 2.568 0 007.5 15.05v3.376A2.574 2.574 0 0010.074 21h3.852a2.574 2.574 0 002.574-2.573v-1.512h-3.862c-.351 0-.638-.513-.638-.864h6.426a2.573 2.573 0 002.575-2.575v-3.402A2.575 2.575 0 0018.426 7.5h-1.062zm-8.676 4.062l-.004.004c.012-.002.023 0 .035-.004h-.031zm5.886 6.548c.352 0 .64.27.64.802a.64.64 0 01-.64.638c-.36 0-.648-.108-.648-.638 0-.532.288-.802.648-.802z",
|
|
53
|
+
fill: "#FDD835"
|
|
51
54
|
}))));
|
|
52
55
|
};
|
|
53
|
-
|
|
56
|
+
LogoPythonCl.propTypes = {
|
|
54
57
|
iconClassName: PropTypes.string,
|
|
55
58
|
spin: PropTypes.bool,
|
|
56
59
|
color: PropTypes.string,
|
|
57
60
|
testid: PropTypes.string,
|
|
58
61
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
59
62
|
};
|
|
60
|
-
|
|
63
|
+
LogoPythonCl.defaultProps = {
|
|
61
64
|
spin: false,
|
|
62
65
|
color: 'currentColor',
|
|
63
66
|
size: '1em'
|
|
64
67
|
};
|
|
65
|
-
export default
|
|
68
|
+
export default LogoPythonCl;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
3
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
10
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
11
|
+
import React from 'react';
|
|
12
|
+
import PropTypes from 'prop-types';
|
|
13
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
14
|
+
var Note = function Note(props) {
|
|
15
|
+
var color = props.color,
|
|
16
|
+
size = props.size,
|
|
17
|
+
spin = props.spin,
|
|
18
|
+
style = props.style,
|
|
19
|
+
className = props.className,
|
|
20
|
+
iconClassName = props.iconClassName,
|
|
21
|
+
testid = props.testid,
|
|
22
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
23
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
24
|
+
role: "img",
|
|
25
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
26
|
+
}, /*#__PURE__*/React.createElement("style", {
|
|
27
|
+
children: loadingCircleStyle
|
|
28
|
+
}), /*#__PURE__*/React.createElement("svg", _extends({
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: color
|
|
34
|
+
}, otherProps, {
|
|
35
|
+
className: iconClassName,
|
|
36
|
+
"data-testid": testid,
|
|
37
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
38
|
+
animationDuration: '1s',
|
|
39
|
+
animationIterationCount: 'infinite',
|
|
40
|
+
animationName: 'loadingCircle',
|
|
41
|
+
animationTimingFunction: 'linear'
|
|
42
|
+
} : {})
|
|
43
|
+
}), /*#__PURE__*/React.createElement("svg", {
|
|
44
|
+
width: "24",
|
|
45
|
+
height: "24",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
47
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
d: "M15.5 3a2 2 0 012 2v4.639l1.477-1.476a.556.556 0 01.786 0l1.574 1.574a.556.556 0 010 .786L17.5 14.36V19a2 2 0 01-1.796 1.99L15.5 21h-11l-.204-.01a2 2 0 01-1.785-1.786L2.5 19V5a2 2 0 012-2h11zm-11 1.8a.2.2 0 00-.2.2v14c0 .11.09.2.2.2h11a.2.2 0 00.2-.2v-2.84L13.861 18H11.5v-2.361l4.2-4.2V5a.2.2 0 00-.2-.2h-11zm8.113 11.3v.787h.786l2.301-2.301v-1.573L12.613 16.1zM9.75 14a.75.75 0 010 1.5h-3.5a.75.75 0 010-1.5h3.5zm7.75-2.787v.013l-1.799 1.79v1.569l1.195-1.196.604-.604v.001l1.083-1.082-.787-.787-.296.296zM11.75 11a.75.75 0 010 1.5h-5.5a.75.75 0 010-1.5h5.5zm6.833-.87l.786.787.787-.786-.787-.787-.786.787zM14.75 8a.75.75 0 010 1.5h-8.5a.75.75 0 010-1.5h8.5z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
Note.propTypes = {
|
|
52
|
+
iconClassName: PropTypes.string,
|
|
53
|
+
spin: PropTypes.bool,
|
|
54
|
+
color: PropTypes.string,
|
|
55
|
+
testid: PropTypes.string,
|
|
56
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
|
+
};
|
|
58
|
+
Note.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Note;
|
package/dist/es/index.js
CHANGED
|
@@ -116,7 +116,7 @@ export { default as TaLogoFlinkCl } from './icons/logo-flink-cl';
|
|
|
116
116
|
export { default as TaLogoSparkCl } from './icons/logo-spark-cl';
|
|
117
117
|
export { default as TaLogoSamlCl } from './icons/logo-saml-cl';
|
|
118
118
|
export { default as TaLogoAirbridgeCl } from './icons/logo-airbridge-cl';
|
|
119
|
-
export { default as
|
|
119
|
+
export { default as TaLogoPythonCl } from './icons/logo-python-cl';
|
|
120
120
|
export { default as TaAvatarGroupCl } from './icons/avatar-group-cl';
|
|
121
121
|
export { default as TaAvatarProjectCl } from './icons/avatar-project-cl';
|
|
122
122
|
export { default as TaReport } from './icons/report';
|
|
@@ -169,6 +169,7 @@ export { default as TaDynamicText } from './icons/dynamic-text';
|
|
|
169
169
|
export { default as TaInterpretation } from './icons/interpretation';
|
|
170
170
|
export { default as TaLinks } from './icons/links';
|
|
171
171
|
export { default as TaHlightedBlock } from './icons/hlighted-block';
|
|
172
|
+
export { default as TaNote } from './icons/note';
|
|
172
173
|
export { default as TaOperatorEqual } from './icons/operator-equal';
|
|
173
174
|
export { default as TaOperatorUnequal } from './icons/operator-unequal';
|
|
174
175
|
export { default as TaOperatorDivide } from './icons/operator-divide';
|
|
@@ -218,6 +219,7 @@ export { default as TaProgress } from './icons/progress';
|
|
|
218
219
|
export { default as TaDashboardPlan } from './icons/dashboard-plan';
|
|
219
220
|
export { default as TaRipple } from './icons/ripple';
|
|
220
221
|
export { default as TaChartView } from './icons/chart-view';
|
|
222
|
+
export { default as TaChartTopic } from './icons/chart-topic';
|
|
221
223
|
export { default as TaProgressBar } from './icons/progress-bar';
|
|
222
224
|
export { default as TaMEvent } from './icons/m-event';
|
|
223
225
|
export { default as TaMRetention } from './icons/m-retention';
|
package/dist/index.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ export const TaLogoFlinkCl: Icon;
|
|
|
128
128
|
export const TaLogoSparkCl: Icon;
|
|
129
129
|
export const TaLogoSamlCl: Icon;
|
|
130
130
|
export const TaLogoAirbridgeCl: Icon;
|
|
131
|
-
export const
|
|
131
|
+
export const TaLogoPythonCl: Icon;
|
|
132
132
|
export const TaAvatarGroupCl: Icon;
|
|
133
133
|
export const TaAvatarProjectCl: Icon;
|
|
134
134
|
export const TaReport: Icon;
|
|
@@ -181,6 +181,7 @@ export const TaDynamicText: Icon;
|
|
|
181
181
|
export const TaInterpretation: Icon;
|
|
182
182
|
export const TaLinks: Icon;
|
|
183
183
|
export const TaHlightedBlock: Icon;
|
|
184
|
+
export const TaNote: Icon;
|
|
184
185
|
export const TaOperatorEqual: Icon;
|
|
185
186
|
export const TaOperatorUnequal: Icon;
|
|
186
187
|
export const TaOperatorDivide: Icon;
|
|
@@ -230,6 +231,7 @@ export const TaProgress: Icon;
|
|
|
230
231
|
export const TaDashboardPlan: Icon;
|
|
231
232
|
export const TaRipple: Icon;
|
|
232
233
|
export const TaChartView: Icon;
|
|
234
|
+
export const TaChartTopic: Icon;
|
|
233
235
|
export const TaProgressBar: Icon;
|
|
234
236
|
export const TaMEvent: Icon;
|
|
235
237
|
export const TaMRetention: Icon;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var ChartTopic = function ChartTopic(props) {
|
|
22
|
+
var color = props.color,
|
|
23
|
+
size = props.size,
|
|
24
|
+
spin = props.spin,
|
|
25
|
+
style = props.style,
|
|
26
|
+
className = props.className,
|
|
27
|
+
iconClassName = props.iconClassName,
|
|
28
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
d: "M21 4a1 1 0 011 1v4h-2V8H4v10h6v2H3a1 1 0 01-1-1V5a1 1 0 011-1h18z"
|
|
56
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
+
fillRule: "evenodd",
|
|
58
|
+
clipRule: "evenodd",
|
|
59
|
+
d: "M19.67 16.645a2.32 2.32 0 00-1.745.793l-1.094-.775c.116-.32.183-.663.183-1.022 0-.354-.064-.69-.176-1.007l1.091-.766a2.318 2.318 0 001.743.789A2.33 2.33 0 0022 12.328 2.331 2.331 0 0019.672 10a2.332 2.332 0 00-2.232 2.99l-1.093.767c-.466-.578-1.031-.948-1.861-1.082a2.588 2.588 0 00-1 .007c-.79.139-1.326.487-1.78 1.028A3.01 3.01 0 0011 15.64a3.01 3.01 0 00.713 1.94c.459.542 1 .89 1.795 1.023.384.065.614.065.998 0 .816-.137 1.37-.5 1.83-1.065l1.102.78a2.331 2.331 0 002.233 2.983A2.33 2.33 0 0022 18.973a2.332 2.332 0 00-2.33-2.328zm.799-5.114a1.13 1.13 0 00-.798-.33 1.13 1.13 0 00-1.129 1.128 1.13 1.13 0 001.926.798 1.13 1.13 0 000-1.596zm-7.576 5.223a1.577 1.577 0 002.226 0 1.576 1.576 0 000-2.226 1.576 1.576 0 00-2.226 0 1.576 1.576 0 000 2.226zm5.98 3.017a1.13 1.13 0 001.595 0 1.13 1.13 0 000-1.596 1.13 1.13 0 00-1.926.798c0 .3.12.586.331.798z"
|
|
60
|
+
}))));
|
|
61
|
+
};
|
|
62
|
+
ChartTopic.propTypes = {
|
|
63
|
+
iconClassName: _propTypes["default"].string,
|
|
64
|
+
spin: _propTypes["default"].bool,
|
|
65
|
+
color: _propTypes["default"].string,
|
|
66
|
+
testid: _propTypes["default"].string,
|
|
67
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
68
|
+
};
|
|
69
|
+
ChartTopic.defaultProps = {
|
|
70
|
+
spin: false,
|
|
71
|
+
color: 'currentColor',
|
|
72
|
+
size: '1em'
|
|
73
|
+
};
|
|
74
|
+
var _default = exports["default"] = ChartTopic;
|
|
@@ -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 LogoPythonCl = function LogoPythonCl(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -50,23 +50,26 @@ var Python = function Python(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: "M10.074 3A2.573 2.573 0 007.5 5.574v1.512h3.862c.35 0 .638.514.638.864H5.574A2.573 2.573 0 003 10.524v3.403a2.573 2.573 0 002.574 2.574h1.062V14.09a2.566 2.566 0 012.566-2.574h4.724a2.566 2.566 0 002.575-2.565V5.574A2.574 2.574 0 0013.926 3h-3.852zm-.648 1.45c.36 0 .648.108.648.638 0 .532-.288.802-.648.802-.35 0-.638-.27-.638-.8 0-.532.288-.64.638-.64z"
|
|
56
|
+
d: "M10.074 3A2.573 2.573 0 007.5 5.574v1.512h3.862c.35 0 .638.514.638.864H5.574A2.573 2.573 0 003 10.524v3.403a2.573 2.573 0 002.574 2.574h1.062V14.09a2.566 2.566 0 012.566-2.574h4.724a2.566 2.566 0 002.575-2.565V5.574A2.574 2.574 0 0013.926 3h-3.852zm-.648 1.45c.36 0 .648.108.648.638 0 .532-.288.802-.648.802-.35 0-.638-.27-.638-.8 0-.532.288-.64.638-.64z",
|
|
57
|
+
fill: "#3C78AA"
|
|
56
58
|
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
57
|
-
d: "M17.364 7.5v2.412a2.565 2.565 0 01-2.566 2.574h-4.724A2.568 2.568 0 007.5 15.05v3.376A2.574 2.574 0 0010.074 21h3.852a2.574 2.574 0 002.574-2.573v-1.512h-3.862c-.351 0-.638-.513-.638-.864h6.426a2.573 2.573 0 002.575-2.575v-3.402A2.575 2.575 0 0018.426 7.5h-1.062zm-8.676 4.062l-.004.004c.012-.002.023 0 .035-.004h-.031zm5.886 6.548c.352 0 .64.27.64.802a.64.64 0 01-.64.638c-.36 0-.648-.108-.648-.638 0-.532.288-.802.648-.802z"
|
|
59
|
+
d: "M17.364 7.5v2.412a2.565 2.565 0 01-2.566 2.574h-4.724A2.568 2.568 0 007.5 15.05v3.376A2.574 2.574 0 0010.074 21h3.852a2.574 2.574 0 002.574-2.573v-1.512h-3.862c-.351 0-.638-.513-.638-.864h6.426a2.573 2.573 0 002.575-2.575v-3.402A2.575 2.575 0 0018.426 7.5h-1.062zm-8.676 4.062l-.004.004c.012-.002.023 0 .035-.004h-.031zm5.886 6.548c.352 0 .64.27.64.802a.64.64 0 01-.64.638c-.36 0-.648-.108-.648-.638 0-.532.288-.802.648-.802z",
|
|
60
|
+
fill: "#FDD835"
|
|
58
61
|
}))));
|
|
59
62
|
};
|
|
60
|
-
|
|
63
|
+
LogoPythonCl.propTypes = {
|
|
61
64
|
iconClassName: _propTypes["default"].string,
|
|
62
65
|
spin: _propTypes["default"].bool,
|
|
63
66
|
color: _propTypes["default"].string,
|
|
64
67
|
testid: _propTypes["default"].string,
|
|
65
68
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
66
69
|
};
|
|
67
|
-
|
|
70
|
+
LogoPythonCl.defaultProps = {
|
|
68
71
|
spin: false,
|
|
69
72
|
color: 'currentColor',
|
|
70
73
|
size: '1em'
|
|
71
74
|
};
|
|
72
|
-
var _default = exports["default"] =
|
|
75
|
+
var _default = exports["default"] = LogoPythonCl;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
10
|
+
var _excluded = ["color", "size", "spin", "style", "className", "iconClassName", "testid"];
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
19
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
20
|
+
var loadingCircleStyle = '@keyframes loadingCircle { 100% { transform: rotate(360deg) }} ';
|
|
21
|
+
var Note = function Note(props) {
|
|
22
|
+
var color = props.color,
|
|
23
|
+
size = props.size,
|
|
24
|
+
spin = props.spin,
|
|
25
|
+
style = props.style,
|
|
26
|
+
className = props.className,
|
|
27
|
+
iconClassName = props.iconClassName,
|
|
28
|
+
testid = props.testid,
|
|
29
|
+
otherProps = _objectWithoutProperties(props, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
31
|
+
role: "img",
|
|
32
|
+
className: className ? 'tant-icon-span anticon ' + className : 'tant-icon-span anticon'
|
|
33
|
+
}, /*#__PURE__*/_react["default"].createElement("style", {
|
|
34
|
+
children: loadingCircleStyle
|
|
35
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", _extends({
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: color
|
|
41
|
+
}, otherProps, {
|
|
42
|
+
className: iconClassName,
|
|
43
|
+
"data-testid": testid,
|
|
44
|
+
style: _objectSpread(_objectSpread({}, style), spin ? {
|
|
45
|
+
animationDuration: '1s',
|
|
46
|
+
animationIterationCount: 'infinite',
|
|
47
|
+
animationName: 'loadingCircle',
|
|
48
|
+
animationTimingFunction: 'linear'
|
|
49
|
+
} : {})
|
|
50
|
+
}), /*#__PURE__*/_react["default"].createElement("svg", {
|
|
51
|
+
width: "24",
|
|
52
|
+
height: "24",
|
|
53
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
54
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
+
d: "M15.5 3a2 2 0 012 2v4.639l1.477-1.476a.556.556 0 01.786 0l1.574 1.574a.556.556 0 010 .786L17.5 14.36V19a2 2 0 01-1.796 1.99L15.5 21h-11l-.204-.01a2 2 0 01-1.785-1.786L2.5 19V5a2 2 0 012-2h11zm-11 1.8a.2.2 0 00-.2.2v14c0 .11.09.2.2.2h11a.2.2 0 00.2-.2v-2.84L13.861 18H11.5v-2.361l4.2-4.2V5a.2.2 0 00-.2-.2h-11zm8.113 11.3v.787h.786l2.301-2.301v-1.573L12.613 16.1zM9.75 14a.75.75 0 010 1.5h-3.5a.75.75 0 010-1.5h3.5zm7.75-2.787v.013l-1.799 1.79v1.569l1.195-1.196.604-.604v.001l1.083-1.082-.787-.787-.296.296zM11.75 11a.75.75 0 010 1.5h-5.5a.75.75 0 010-1.5h5.5zm6.833-.87l.786.787.787-.786-.787-.787-.786.787zM14.75 8a.75.75 0 010 1.5h-8.5a.75.75 0 010-1.5h8.5z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
Note.propTypes = {
|
|
59
|
+
iconClassName: _propTypes["default"].string,
|
|
60
|
+
spin: _propTypes["default"].bool,
|
|
61
|
+
color: _propTypes["default"].string,
|
|
62
|
+
testid: _propTypes["default"].string,
|
|
63
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
|
+
};
|
|
65
|
+
Note.defaultProps = {
|
|
66
|
+
spin: false,
|
|
67
|
+
color: 'currentColor',
|
|
68
|
+
size: '1em'
|
|
69
|
+
};
|
|
70
|
+
var _default = exports["default"] = Note;
|
package/dist/lib/index.js
CHANGED
|
@@ -567,6 +567,12 @@ Object.defineProperty(exports, "TaChartTable", {
|
|
|
567
567
|
return _chartTable["default"];
|
|
568
568
|
}
|
|
569
569
|
});
|
|
570
|
+
Object.defineProperty(exports, "TaChartTopic", {
|
|
571
|
+
enumerable: true,
|
|
572
|
+
get: function get() {
|
|
573
|
+
return _chartTopic["default"];
|
|
574
|
+
}
|
|
575
|
+
});
|
|
570
576
|
Object.defineProperty(exports, "TaChartTrophy", {
|
|
571
577
|
enumerable: true,
|
|
572
578
|
get: function get() {
|
|
@@ -1953,6 +1959,12 @@ Object.defineProperty(exports, "TaLogoLitmatchCl", {
|
|
|
1953
1959
|
return _logoLitmatchCl["default"];
|
|
1954
1960
|
}
|
|
1955
1961
|
});
|
|
1962
|
+
Object.defineProperty(exports, "TaLogoPythonCl", {
|
|
1963
|
+
enumerable: true,
|
|
1964
|
+
get: function get() {
|
|
1965
|
+
return _logoPythonCl["default"];
|
|
1966
|
+
}
|
|
1967
|
+
});
|
|
1956
1968
|
Object.defineProperty(exports, "TaLogoSamlCl", {
|
|
1957
1969
|
enumerable: true,
|
|
1958
1970
|
get: function get() {
|
|
@@ -2265,6 +2277,12 @@ Object.defineProperty(exports, "TaNewValue", {
|
|
|
2265
2277
|
return _newValue["default"];
|
|
2266
2278
|
}
|
|
2267
2279
|
});
|
|
2280
|
+
Object.defineProperty(exports, "TaNote", {
|
|
2281
|
+
enumerable: true,
|
|
2282
|
+
get: function get() {
|
|
2283
|
+
return _note["default"];
|
|
2284
|
+
}
|
|
2285
|
+
});
|
|
2268
2286
|
Object.defineProperty(exports, "TaNotice", {
|
|
2269
2287
|
enumerable: true,
|
|
2270
2288
|
get: function get() {
|
|
@@ -2661,12 +2679,6 @@ Object.defineProperty(exports, "TaPulse", {
|
|
|
2661
2679
|
return _pulse["default"];
|
|
2662
2680
|
}
|
|
2663
2681
|
});
|
|
2664
|
-
Object.defineProperty(exports, "TaPython", {
|
|
2665
|
-
enumerable: true,
|
|
2666
|
-
get: function get() {
|
|
2667
|
-
return _python["default"];
|
|
2668
|
-
}
|
|
2669
|
-
});
|
|
2670
2682
|
Object.defineProperty(exports, "TaQuotation", {
|
|
2671
2683
|
enumerable: true,
|
|
2672
2684
|
get: function get() {
|
|
@@ -3715,7 +3727,7 @@ var _logoFlinkCl = _interopRequireDefault(require("./icons/logo-flink-cl"));
|
|
|
3715
3727
|
var _logoSparkCl = _interopRequireDefault(require("./icons/logo-spark-cl"));
|
|
3716
3728
|
var _logoSamlCl = _interopRequireDefault(require("./icons/logo-saml-cl"));
|
|
3717
3729
|
var _logoAirbridgeCl = _interopRequireDefault(require("./icons/logo-airbridge-cl"));
|
|
3718
|
-
var
|
|
3730
|
+
var _logoPythonCl = _interopRequireDefault(require("./icons/logo-python-cl"));
|
|
3719
3731
|
var _avatarGroupCl = _interopRequireDefault(require("./icons/avatar-group-cl"));
|
|
3720
3732
|
var _avatarProjectCl = _interopRequireDefault(require("./icons/avatar-project-cl"));
|
|
3721
3733
|
var _report = _interopRequireDefault(require("./icons/report"));
|
|
@@ -3768,6 +3780,7 @@ var _dynamicText = _interopRequireDefault(require("./icons/dynamic-text"));
|
|
|
3768
3780
|
var _interpretation = _interopRequireDefault(require("./icons/interpretation"));
|
|
3769
3781
|
var _links = _interopRequireDefault(require("./icons/links"));
|
|
3770
3782
|
var _hlightedBlock = _interopRequireDefault(require("./icons/hlighted-block"));
|
|
3783
|
+
var _note = _interopRequireDefault(require("./icons/note"));
|
|
3771
3784
|
var _operatorEqual = _interopRequireDefault(require("./icons/operator-equal"));
|
|
3772
3785
|
var _operatorUnequal = _interopRequireDefault(require("./icons/operator-unequal"));
|
|
3773
3786
|
var _operatorDivide = _interopRequireDefault(require("./icons/operator-divide"));
|
|
@@ -3817,6 +3830,7 @@ var _progress = _interopRequireDefault(require("./icons/progress"));
|
|
|
3817
3830
|
var _dashboardPlan = _interopRequireDefault(require("./icons/dashboard-plan"));
|
|
3818
3831
|
var _ripple = _interopRequireDefault(require("./icons/ripple"));
|
|
3819
3832
|
var _chartView = _interopRequireDefault(require("./icons/chart-view"));
|
|
3833
|
+
var _chartTopic = _interopRequireDefault(require("./icons/chart-topic"));
|
|
3820
3834
|
var _progressBar = _interopRequireDefault(require("./icons/progress-bar"));
|
|
3821
3835
|
var _mEvent = _interopRequireDefault(require("./icons/m-event"));
|
|
3822
3836
|
var _mRetention = _interopRequireDefault(require("./icons/m-retention"));
|