rbro-tat-uds 2.2.3 → 2.2.4
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/build/cjs/assets/icons/face-happy.svg.cjs +39 -0
- package/build/cjs/assets/icons/person-level.svg.cjs +43 -0
- package/build/cjs/components/Button/Button.cjs +2 -0
- package/build/cjs/components/Icon/IconsList.cjs +5 -1
- package/build/cjs/components/IconButton/IconButton.cjs +2 -0
- package/build/cjs/components/PageMessage/PageMessage.cjs +2 -0
- package/build/cjs/components/TextInput/TextInput.cjs +2 -0
- package/build/cjs/index.cjs +669 -633
- package/build/esm/assets/icons/face-happy.svg.js +18 -0
- package/build/esm/assets/icons/person-level.svg.js +22 -0
- package/build/esm/components/Button/Button.js +2 -0
- package/build/esm/components/Icon/IconsList.js +5 -1
- package/build/esm/components/IconButton/IconButton.js +2 -0
- package/build/esm/components/PageMessage/PageMessage.js +2 -0
- package/build/esm/components/TextInput/TextInput.js +2 -0
- package/build/esm/index.js +669 -633
- package/build/types/components/Icon/Icon.types.d.ts +1 -1
- package/build/types/components/Icon/IconsList.d.ts +2 -0
- package/package.json +1 -1
@@ -0,0 +1,18 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
|
3
|
+
var _path, _path2;
|
4
|
+
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); }
|
5
|
+
var SvgFaceHappy = function SvgFaceHappy(props) {
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
8
|
+
viewBox: "0 0 24 24"
|
9
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
10
|
+
d: "M10 10.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M15.5 12a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M12 16a3.99 3.99 0 0 1-2.961-1.31l-1.48 1.344A5.99 5.99 0 0 0 11.999 18c1.761 0 3.346-.76 4.442-1.966l-1.48-1.345A3.99 3.99 0 0 1 12 16"
|
11
|
+
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
12
|
+
fillRule: "evenodd",
|
13
|
+
d: "M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12m10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16",
|
14
|
+
clipRule: "evenodd"
|
15
|
+
})));
|
16
|
+
};
|
17
|
+
|
18
|
+
export { SvgFaceHappy as default };
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
|
3
|
+
var _path, _path2, _path3;
|
4
|
+
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); }
|
5
|
+
var SvgPersonLevel = function SvgPersonLevel(props) {
|
6
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
8
|
+
viewBox: "0 0 24 24"
|
9
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
10
|
+
fillRule: "evenodd",
|
11
|
+
d: "M4 7a5 5 0 1 1 10 0A5 5 0 0 1 4 7m5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6",
|
12
|
+
clipRule: "evenodd"
|
13
|
+
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
14
|
+
d: "M1 22c0-4.402 3.09-9 8.5-9 1.12 0 2.157.201 3.094.57l-.73 1.86A6.4 6.4 0 0 0 9.5 15C5.473 15 3 18.402 3 22z"
|
15
|
+
})), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
16
|
+
fillRule: "evenodd",
|
17
|
+
d: "M15 15a1 1 0 0 0-.832.445l-1 1.5a1 1 0 0 0 .125 1.262l4 4a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0 .125-1.262l-1-1.5A1 1 0 0 0 21 15zm.287 2.373.248-.373h4.93l.248.373L18 20.086z",
|
18
|
+
clipRule: "evenodd"
|
19
|
+
})));
|
20
|
+
};
|
21
|
+
|
22
|
+
export { SvgPersonLevel as default };
|
@@ -143,6 +143,8 @@ import '../../assets/icons/warning-exclamation.svg.js';
|
|
143
143
|
import '../../assets/icons/warning-outlined.svg.js';
|
144
144
|
import '../../assets/icons/info-outlined.svg.js';
|
145
145
|
import '../../assets/icons/hint-outlined.svg.js';
|
146
|
+
import '../../assets/icons/face-happy.svg.js';
|
147
|
+
import '../../assets/icons/person-level.svg.js';
|
146
148
|
import Icon from '../Icon/Icon.js';
|
147
149
|
import Spinner from '../Spinner/Spinner.js';
|
148
150
|
import { colors } from '../../utils';
|
@@ -140,6 +140,8 @@ import WarningExclamationIcon from '../../assets/icons/warning-exclamation.svg.j
|
|
140
140
|
import WarningOutlinedIcon from '../../assets/icons/warning-outlined.svg.js';
|
141
141
|
import InfoOutlinedIcon from '../../assets/icons/info-outlined.svg.js';
|
142
142
|
import HintOutlinedIcon from '../../assets/icons/hint-outlined.svg.js';
|
143
|
+
import FaceHappyIcon from '../../assets/icons/face-happy.svg.js';
|
144
|
+
import PersonLevelIcon from '../../assets/icons/person-level.svg.js';
|
143
145
|
|
144
146
|
const IconsList = {
|
145
147
|
asterix: AsterixIcon,
|
@@ -280,7 +282,9 @@ const IconsList = {
|
|
280
282
|
"warning-exclamation": WarningExclamationIcon,
|
281
283
|
"warning-outlined": WarningOutlinedIcon,
|
282
284
|
"info-outlined": InfoOutlinedIcon,
|
283
|
-
"hint-outlined": HintOutlinedIcon
|
285
|
+
"hint-outlined": HintOutlinedIcon,
|
286
|
+
"face-happy": FaceHappyIcon,
|
287
|
+
"person-level": PersonLevelIcon
|
284
288
|
};
|
285
289
|
|
286
290
|
export { IconsList as default };
|
@@ -142,6 +142,8 @@ import '../../assets/icons/warning-exclamation.svg.js';
|
|
142
142
|
import '../../assets/icons/warning-outlined.svg.js';
|
143
143
|
import '../../assets/icons/info-outlined.svg.js';
|
144
144
|
import '../../assets/icons/hint-outlined.svg.js';
|
145
|
+
import '../../assets/icons/face-happy.svg.js';
|
146
|
+
import '../../assets/icons/person-level.svg.js';
|
145
147
|
import styled, { css } from 'styled-components';
|
146
148
|
import Icon from '../Icon/Icon.js';
|
147
149
|
import Spinner from '../Spinner/Spinner.js';
|
@@ -142,6 +142,8 @@ import '../../assets/icons/warning-exclamation.svg.js';
|
|
142
142
|
import '../../assets/icons/warning-outlined.svg.js';
|
143
143
|
import '../../assets/icons/info-outlined.svg.js';
|
144
144
|
import '../../assets/icons/hint-outlined.svg.js';
|
145
|
+
import '../../assets/icons/face-happy.svg.js';
|
146
|
+
import '../../assets/icons/person-level.svg.js';
|
145
147
|
import styled from 'styled-components';
|
146
148
|
import Icon from '../Icon/Icon.js';
|
147
149
|
import { colors } from '../../utils';
|
@@ -143,6 +143,8 @@ import '../../assets/icons/warning-exclamation.svg.js';
|
|
143
143
|
import '../../assets/icons/warning-outlined.svg.js';
|
144
144
|
import '../../assets/icons/info-outlined.svg.js';
|
145
145
|
import '../../assets/icons/hint-outlined.svg.js';
|
146
|
+
import '../../assets/icons/face-happy.svg.js';
|
147
|
+
import '../../assets/icons/person-level.svg.js';
|
146
148
|
import { createPortal } from 'react-dom';
|
147
149
|
import Icon from '../Icon/Icon.js';
|
148
150
|
import Numpad from '../Numpad/Numpad.js';
|