@tant/icons 1.20.8 → 1.20.16
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/bi-vendor-fill-cl.js +74 -0
- package/dist/es/icons/{BI-vendor.js → bi-vendor.js} +1 -1
- package/dist/es/icons/{BI-vendor-fill.js → manual-verification.js} +5 -5
- package/dist/es/icons/translation.js +63 -0
- package/dist/es/index.js +4 -2
- package/dist/index.d.ts +3 -1
- package/dist/lib/icons/bi-vendor-fill-cl.js +81 -0
- package/dist/lib/icons/{BI-vendor.js → bi-vendor.js} +1 -1
- package/dist/lib/icons/{BI-vendor-fill.js → manual-verification.js} +5 -5
- package/dist/lib/icons/translation.js +70 -0
- package/dist/lib/index.js +19 -5
- package/dist/tant-icons.cjs.js +1061 -944
- package/dist/tant-icons.esm.js +1059 -944
- package/package.json +1 -1
|
@@ -0,0 +1,74 @@
|
|
|
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 BiVendorFillCl = function BiVendorFillCl(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
|
+
fill: "none",
|
|
47
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
48
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
49
|
+
d: "M20.75 20.25a.75.75 0 010 1.5h-18a.75.75 0 010-1.5h18z",
|
|
50
|
+
fill: "#915AFF"
|
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
52
|
+
d: "M18.75 3a2 2 0 012 2v11.23a2 2 0 01-2 2h-14a2 2 0 01-2-2V5a2 2 0 012-2h14z",
|
|
53
|
+
fill: "#915AFF"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M15.352 6.432h1.296V15h-1.296V6.432z",
|
|
56
|
+
fill: "#F1ECFF"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
58
|
+
d: "M7.09 6.432h3.912c.84 0 1.488.192 1.968.6.456.384.684.9.684 1.56 0 .48-.12.888-.36 1.224a2.13 2.13 0 01-.996.708c.564.108.996.336 1.284.684.288.348.432.816.432 1.392 0 .864-.3 1.488-.888 1.896-.504.336-1.212.504-2.124.504H7.09V6.432zm1.308 1.08v2.556h2.256c.6 0 1.032-.108 1.296-.312.264-.216.396-.552.396-1.008 0-.432-.132-.744-.396-.936-.264-.204-.696-.3-1.272-.3h-2.28zm0 3.624v2.784h2.424c.552 0 .984-.096 1.296-.264.384-.228.588-.588.588-1.08 0-.504-.156-.876-.456-1.104-.3-.228-.768-.336-1.392-.336h-2.46z",
|
|
59
|
+
fill: "#F1ECFF"
|
|
60
|
+
}))));
|
|
61
|
+
};
|
|
62
|
+
BiVendorFillCl.propTypes = {
|
|
63
|
+
iconClassName: PropTypes.string,
|
|
64
|
+
spin: PropTypes.bool,
|
|
65
|
+
color: PropTypes.string,
|
|
66
|
+
testid: PropTypes.string,
|
|
67
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
68
|
+
};
|
|
69
|
+
BiVendorFillCl.defaultProps = {
|
|
70
|
+
spin: false,
|
|
71
|
+
color: 'currentColor',
|
|
72
|
+
size: '1em'
|
|
73
|
+
};
|
|
74
|
+
export default BiVendorFillCl;
|
|
@@ -45,7 +45,7 @@ var BiVendor = function BiVendor(props) {
|
|
|
45
45
|
height: "24",
|
|
46
46
|
xmlns: "http://www.w3.org/2000/svg"
|
|
47
47
|
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
d: "
|
|
48
|
+
d: "M20.75 20.25a.75.75 0 010 1.5h-18a.75.75 0 010-1.5h18zM18.75 3a2 2 0 012 2v11.23a2 2 0 01-1.796 1.99l-.204.01h-14l-.204-.01a2 2 0 01-1.796-1.99V5a2 2 0 012-2h14zm-14 1.5a.5.5 0 00-.5.5v11.23a.5.5 0 00.5.5h14a.5.5 0 00.5-.5V5a.5.5 0 00-.5-.5h-14zm6.252 1.932c.84 0 1.488.192 1.968.6.456.384.684.9.684 1.56 0 .48-.12.888-.36 1.224a2.13 2.13 0 01-.996.708c.564.108.996.336 1.284.684.288.348.432.816.432 1.392 0 .864-.3 1.488-.888 1.896-.504.336-1.212.504-2.124.504H7.09V6.432h3.912zM16.648 15h-1.296V6.432h1.296V15zm-8.25-1.08h2.424c.552 0 .984-.096 1.296-.264.384-.228.588-.588.588-1.08 0-.504-.156-.876-.456-1.104-.3-.228-.768-.336-1.392-.336h-2.46v2.784zm0-3.852h2.256c.6 0 1.032-.108 1.296-.312.264-.216.396-.552.396-1.008 0-.432-.132-.744-.396-.936-.264-.204-.696-.3-1.272-.3h-2.28v2.556z"
|
|
49
49
|
}))));
|
|
50
50
|
};
|
|
51
51
|
BiVendor.propTypes = {
|
|
@@ -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 ManualVerification = function ManualVerification(props) {
|
|
15
15
|
var color = props.color,
|
|
16
16
|
size = props.size,
|
|
17
17
|
spin = props.spin,
|
|
@@ -45,19 +45,19 @@ var BiVendorFill = function BiVendorFill(props) {
|
|
|
45
45
|
height: "24",
|
|
46
46
|
xmlns: "http://www.w3.org/2000/svg"
|
|
47
47
|
}, /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
d: "
|
|
48
|
+
d: "M14 14.252v2.09A6 6 0 006 22H4a8 8 0 0110-7.749zM12 13c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm5.793 8.914l3.535-3.535 1.415 1.414-4.95 4.95-3.536-3.536 1.415-1.414 2.12 2.121z"
|
|
49
49
|
}))));
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
ManualVerification.propTypes = {
|
|
52
52
|
iconClassName: PropTypes.string,
|
|
53
53
|
spin: PropTypes.bool,
|
|
54
54
|
color: PropTypes.string,
|
|
55
55
|
testid: PropTypes.string,
|
|
56
56
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
ManualVerification.defaultProps = {
|
|
59
59
|
spin: false,
|
|
60
60
|
color: 'currentColor',
|
|
61
61
|
size: '1em'
|
|
62
62
|
};
|
|
63
|
-
export default
|
|
63
|
+
export default ManualVerification;
|
|
@@ -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 Translation = function Translation(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.1 19H4.9a1 1 0 001 1h13.525a1 1 0 010 2H5.9a3 3 0 01-3-3V5a3 3 0 013-3h15.2v17zM5.9 4a1 1 0 00-1 1v12h14.2V4H5.9zM12 5.112a5.4 5.4 0 11-.001 10.802 5.4 5.4 0 010-10.802zm-4.315 5.832a4.303 4.303 0 002.7 3.6 4.647 4.647 0 01-.258-.514c-.355-.821-.58-1.901-.623-3.086H7.685zm2.7 0c.043 1.01.253 1.9.559 2.551.172.366.366.638.56.814.194.173.367.235.513.235.147 0 .319-.062.512-.235.195-.176.39-.448.561-.814.306-.65.515-1.542.558-2.55h-3.263zm4.145 0c-.043 1.184-.268 2.265-.622 3.086a4.65 4.65 0 01-.26.514 4.302 4.302 0 002.7-3.6H14.53zm-.882-4.403c.094.16.181.332.26.514.354.821.58 1.902.622 3.086h1.818a4.302 4.302 0 00-2.7-3.6zm-3.263-.06a4.302 4.302 0 00-2.7 3.6h1.82c.042-1.184.267-2.264.621-3.086.079-.182.165-.354.26-.514zm1.632.06c-.146 0-.32.06-.513.23-.194.173-.388.44-.56.8-.306.64-.516 1.518-.559 2.51h3.263c-.043-.992-.252-1.87-.558-2.51-.172-.36-.366-.627-.561-.8-.193-.17-.366-.23-.512-.23z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
Translation.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
|
+
Translation.defaultProps = {
|
|
59
|
+
spin: false,
|
|
60
|
+
color: 'currentColor',
|
|
61
|
+
size: '1em'
|
|
62
|
+
};
|
|
63
|
+
export default Translation;
|
package/dist/es/index.js
CHANGED
|
@@ -27,8 +27,8 @@ export { default as TaReportCl } from './icons/report-cl';
|
|
|
27
27
|
export { default as TaUserTagCl } from './icons/user-tag-cl';
|
|
28
28
|
export { default as TaGroupCl } from './icons/group-cl';
|
|
29
29
|
export { default as TaVPropCl } from './icons/v-prop-cl';
|
|
30
|
-
export { default as TaBiVendor } from './icons/
|
|
31
|
-
export { default as
|
|
30
|
+
export { default as TaBiVendor } from './icons/bi-vendor';
|
|
31
|
+
export { default as TaBiVendorFillCl } from './icons/bi-vendor-fill-cl';
|
|
32
32
|
export { default as TaDataOpsAiCl } from './icons/DataOps-AI-cl';
|
|
33
33
|
export { default as TaEngageAiCl } from './icons/Engage-AI-cl';
|
|
34
34
|
export { default as TaDashboardReadingCl } from './icons/Dashboard-Reading-cl';
|
|
@@ -298,6 +298,8 @@ export { default as TaNeutral } from './icons/neutral';
|
|
|
298
298
|
export { default as TaRobot } from './icons/robot';
|
|
299
299
|
export { default as TaArrowExpand } from './icons/arrow-expand';
|
|
300
300
|
export { default as TaArrowClose } from './icons/arrow-close';
|
|
301
|
+
export { default as TaTranslation } from './icons/translation';
|
|
302
|
+
export { default as TaManualVerification } from './icons/manual-verification';
|
|
301
303
|
export { default as TaFontSize } from './icons/font-size';
|
|
302
304
|
export { default as TaFontBold } from './icons/font-bold';
|
|
303
305
|
export { default as TaFontItalic } from './icons/font- italic';
|
package/dist/index.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ export const TaUserTagCl: Icon;
|
|
|
40
40
|
export const TaGroupCl: Icon;
|
|
41
41
|
export const TaVPropCl: Icon;
|
|
42
42
|
export const TaBiVendor: Icon;
|
|
43
|
-
export const
|
|
43
|
+
export const TaBiVendorFillCl: Icon;
|
|
44
44
|
export const TaDataOpsAiCl: Icon;
|
|
45
45
|
export const TaEngageAiCl: Icon;
|
|
46
46
|
export const TaDashboardReadingCl: Icon;
|
|
@@ -310,6 +310,8 @@ export const TaNeutral: Icon;
|
|
|
310
310
|
export const TaRobot: Icon;
|
|
311
311
|
export const TaArrowExpand: Icon;
|
|
312
312
|
export const TaArrowClose: Icon;
|
|
313
|
+
export const TaTranslation: Icon;
|
|
314
|
+
export const TaManualVerification: Icon;
|
|
313
315
|
export const TaFontSize: Icon;
|
|
314
316
|
export const TaFontBold: Icon;
|
|
315
317
|
export const TaFontItalic: Icon;
|
|
@@ -0,0 +1,81 @@
|
|
|
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 BiVendorFillCl = function BiVendorFillCl(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
|
+
fill: "none",
|
|
54
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
55
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
56
|
+
d: "M20.75 20.25a.75.75 0 010 1.5h-18a.75.75 0 010-1.5h18z",
|
|
57
|
+
fill: "#915AFF"
|
|
58
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
59
|
+
d: "M18.75 3a2 2 0 012 2v11.23a2 2 0 01-2 2h-14a2 2 0 01-2-2V5a2 2 0 012-2h14z",
|
|
60
|
+
fill: "#915AFF"
|
|
61
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
62
|
+
d: "M15.352 6.432h1.296V15h-1.296V6.432z",
|
|
63
|
+
fill: "#F1ECFF"
|
|
64
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
65
|
+
d: "M7.09 6.432h3.912c.84 0 1.488.192 1.968.6.456.384.684.9.684 1.56 0 .48-.12.888-.36 1.224a2.13 2.13 0 01-.996.708c.564.108.996.336 1.284.684.288.348.432.816.432 1.392 0 .864-.3 1.488-.888 1.896-.504.336-1.212.504-2.124.504H7.09V6.432zm1.308 1.08v2.556h2.256c.6 0 1.032-.108 1.296-.312.264-.216.396-.552.396-1.008 0-.432-.132-.744-.396-.936-.264-.204-.696-.3-1.272-.3h-2.28zm0 3.624v2.784h2.424c.552 0 .984-.096 1.296-.264.384-.228.588-.588.588-1.08 0-.504-.156-.876-.456-1.104-.3-.228-.768-.336-1.392-.336h-2.46z",
|
|
66
|
+
fill: "#F1ECFF"
|
|
67
|
+
}))));
|
|
68
|
+
};
|
|
69
|
+
BiVendorFillCl.propTypes = {
|
|
70
|
+
iconClassName: _propTypes["default"].string,
|
|
71
|
+
spin: _propTypes["default"].bool,
|
|
72
|
+
color: _propTypes["default"].string,
|
|
73
|
+
testid: _propTypes["default"].string,
|
|
74
|
+
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
75
|
+
};
|
|
76
|
+
BiVendorFillCl.defaultProps = {
|
|
77
|
+
spin: false,
|
|
78
|
+
color: 'currentColor',
|
|
79
|
+
size: '1em'
|
|
80
|
+
};
|
|
81
|
+
var _default = exports["default"] = BiVendorFillCl;
|
|
@@ -52,7 +52,7 @@ var BiVendor = function BiVendor(props) {
|
|
|
52
52
|
height: "24",
|
|
53
53
|
xmlns: "http://www.w3.org/2000/svg"
|
|
54
54
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
-
d: "
|
|
55
|
+
d: "M20.75 20.25a.75.75 0 010 1.5h-18a.75.75 0 010-1.5h18zM18.75 3a2 2 0 012 2v11.23a2 2 0 01-1.796 1.99l-.204.01h-14l-.204-.01a2 2 0 01-1.796-1.99V5a2 2 0 012-2h14zm-14 1.5a.5.5 0 00-.5.5v11.23a.5.5 0 00.5.5h14a.5.5 0 00.5-.5V5a.5.5 0 00-.5-.5h-14zm6.252 1.932c.84 0 1.488.192 1.968.6.456.384.684.9.684 1.56 0 .48-.12.888-.36 1.224a2.13 2.13 0 01-.996.708c.564.108.996.336 1.284.684.288.348.432.816.432 1.392 0 .864-.3 1.488-.888 1.896-.504.336-1.212.504-2.124.504H7.09V6.432h3.912zM16.648 15h-1.296V6.432h1.296V15zm-8.25-1.08h2.424c.552 0 .984-.096 1.296-.264.384-.228.588-.588.588-1.08 0-.504-.156-.876-.456-1.104-.3-.228-.768-.336-1.392-.336h-2.46v2.784zm0-3.852h2.256c.6 0 1.032-.108 1.296-.312.264-.216.396-.552.396-1.008 0-.432-.132-.744-.396-.936-.264-.204-.696-.3-1.272-.3h-2.28v2.556z"
|
|
56
56
|
}))));
|
|
57
57
|
};
|
|
58
58
|
BiVendor.propTypes = {
|
|
@@ -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 ManualVerification = function ManualVerification(props) {
|
|
22
22
|
var color = props.color,
|
|
23
23
|
size = props.size,
|
|
24
24
|
spin = props.spin,
|
|
@@ -52,19 +52,19 @@ var BiVendorFill = function BiVendorFill(props) {
|
|
|
52
52
|
height: "24",
|
|
53
53
|
xmlns: "http://www.w3.org/2000/svg"
|
|
54
54
|
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
55
|
-
d: "
|
|
55
|
+
d: "M14 14.252v2.09A6 6 0 006 22H4a8 8 0 0110-7.749zM12 13c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm5.793 8.914l3.535-3.535 1.415 1.414-4.95 4.95-3.536-3.536 1.415-1.414 2.12 2.121z"
|
|
56
56
|
}))));
|
|
57
57
|
};
|
|
58
|
-
|
|
58
|
+
ManualVerification.propTypes = {
|
|
59
59
|
iconClassName: _propTypes["default"].string,
|
|
60
60
|
spin: _propTypes["default"].bool,
|
|
61
61
|
color: _propTypes["default"].string,
|
|
62
62
|
testid: _propTypes["default"].string,
|
|
63
63
|
size: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
64
64
|
};
|
|
65
|
-
|
|
65
|
+
ManualVerification.defaultProps = {
|
|
66
66
|
spin: false,
|
|
67
67
|
color: 'currentColor',
|
|
68
68
|
size: '1em'
|
|
69
69
|
};
|
|
70
|
-
var _default = exports["default"] =
|
|
70
|
+
var _default = exports["default"] = ManualVerification;
|
|
@@ -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 Translation = function Translation(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.1 19H4.9a1 1 0 001 1h13.525a1 1 0 010 2H5.9a3 3 0 01-3-3V5a3 3 0 013-3h15.2v17zM5.9 4a1 1 0 00-1 1v12h14.2V4H5.9zM12 5.112a5.4 5.4 0 11-.001 10.802 5.4 5.4 0 010-10.802zm-4.315 5.832a4.303 4.303 0 002.7 3.6 4.647 4.647 0 01-.258-.514c-.355-.821-.58-1.901-.623-3.086H7.685zm2.7 0c.043 1.01.253 1.9.559 2.551.172.366.366.638.56.814.194.173.367.235.513.235.147 0 .319-.062.512-.235.195-.176.39-.448.561-.814.306-.65.515-1.542.558-2.55h-3.263zm4.145 0c-.043 1.184-.268 2.265-.622 3.086a4.65 4.65 0 01-.26.514 4.302 4.302 0 002.7-3.6H14.53zm-.882-4.403c.094.16.181.332.26.514.354.821.58 1.902.622 3.086h1.818a4.302 4.302 0 00-2.7-3.6zm-3.263-.06a4.302 4.302 0 00-2.7 3.6h1.82c.042-1.184.267-2.264.621-3.086.079-.182.165-.354.26-.514zm1.632.06c-.146 0-.32.06-.513.23-.194.173-.388.44-.56.8-.306.64-.516 1.518-.559 2.51h3.263c-.043-.992-.252-1.87-.558-2.51-.172-.36-.366-.627-.561-.8-.193-.17-.366-.23-.512-.23z"
|
|
56
|
+
}))));
|
|
57
|
+
};
|
|
58
|
+
Translation.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
|
+
Translation.defaultProps = {
|
|
66
|
+
spin: false,
|
|
67
|
+
color: 'currentColor',
|
|
68
|
+
size: '1em'
|
|
69
|
+
};
|
|
70
|
+
var _default = exports["default"] = Translation;
|
package/dist/lib/index.js
CHANGED
|
@@ -264,13 +264,13 @@ Object.defineProperty(exports, "TaBell2Fill", {
|
|
|
264
264
|
Object.defineProperty(exports, "TaBiVendor", {
|
|
265
265
|
enumerable: true,
|
|
266
266
|
get: function get() {
|
|
267
|
-
return
|
|
267
|
+
return _biVendor["default"];
|
|
268
268
|
}
|
|
269
269
|
});
|
|
270
|
-
Object.defineProperty(exports, "
|
|
270
|
+
Object.defineProperty(exports, "TaBiVendorFillCl", {
|
|
271
271
|
enumerable: true,
|
|
272
272
|
get: function get() {
|
|
273
|
-
return
|
|
273
|
+
return _biVendorFillCl["default"];
|
|
274
274
|
}
|
|
275
275
|
});
|
|
276
276
|
Object.defineProperty(exports, "TaBook", {
|
|
@@ -1911,6 +1911,12 @@ Object.defineProperty(exports, "TaManual", {
|
|
|
1911
1911
|
return _manual["default"];
|
|
1912
1912
|
}
|
|
1913
1913
|
});
|
|
1914
|
+
Object.defineProperty(exports, "TaManualVerification", {
|
|
1915
|
+
enumerable: true,
|
|
1916
|
+
get: function get() {
|
|
1917
|
+
return _manualVerification["default"];
|
|
1918
|
+
}
|
|
1919
|
+
});
|
|
1914
1920
|
Object.defineProperty(exports, "TaMap", {
|
|
1915
1921
|
enumerable: true,
|
|
1916
1922
|
get: function get() {
|
|
@@ -2895,6 +2901,12 @@ Object.defineProperty(exports, "TaTransferOwnership", {
|
|
|
2895
2901
|
return _transferOwnership["default"];
|
|
2896
2902
|
}
|
|
2897
2903
|
});
|
|
2904
|
+
Object.defineProperty(exports, "TaTranslation", {
|
|
2905
|
+
enumerable: true,
|
|
2906
|
+
get: function get() {
|
|
2907
|
+
return _translation["default"];
|
|
2908
|
+
}
|
|
2909
|
+
});
|
|
2898
2910
|
Object.defineProperty(exports, "TaTriDown", {
|
|
2899
2911
|
enumerable: true,
|
|
2900
2912
|
get: function get() {
|
|
@@ -3182,8 +3194,8 @@ var _reportCl = _interopRequireDefault(require("./icons/report-cl"));
|
|
|
3182
3194
|
var _userTagCl = _interopRequireDefault(require("./icons/user-tag-cl"));
|
|
3183
3195
|
var _groupCl = _interopRequireDefault(require("./icons/group-cl"));
|
|
3184
3196
|
var _vPropCl = _interopRequireDefault(require("./icons/v-prop-cl"));
|
|
3185
|
-
var
|
|
3186
|
-
var
|
|
3197
|
+
var _biVendor = _interopRequireDefault(require("./icons/bi-vendor"));
|
|
3198
|
+
var _biVendorFillCl = _interopRequireDefault(require("./icons/bi-vendor-fill-cl"));
|
|
3187
3199
|
var _DataOpsAICl = _interopRequireDefault(require("./icons/DataOps-AI-cl"));
|
|
3188
3200
|
var _EngageAICl = _interopRequireDefault(require("./icons/Engage-AI-cl"));
|
|
3189
3201
|
var _DashboardReadingCl = _interopRequireDefault(require("./icons/Dashboard-Reading-cl"));
|
|
@@ -3453,6 +3465,8 @@ var _neutral = _interopRequireDefault(require("./icons/neutral"));
|
|
|
3453
3465
|
var _robot = _interopRequireDefault(require("./icons/robot"));
|
|
3454
3466
|
var _arrowExpand = _interopRequireDefault(require("./icons/arrow-expand"));
|
|
3455
3467
|
var _arrowClose = _interopRequireDefault(require("./icons/arrow-close"));
|
|
3468
|
+
var _translation = _interopRequireDefault(require("./icons/translation"));
|
|
3469
|
+
var _manualVerification = _interopRequireDefault(require("./icons/manual-verification"));
|
|
3456
3470
|
var _fontSize = _interopRequireDefault(require("./icons/font-size"));
|
|
3457
3471
|
var _fontBold = _interopRequireDefault(require("./icons/font-bold"));
|
|
3458
3472
|
var _fontItalic = _interopRequireDefault(require("./icons/font- italic"));
|