agora-ui-foundation 3.6.1 → 3.6.2

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.
Files changed (42) hide show
  1. package/lib/components/icon/index.d.ts +1 -0
  2. package/lib/components/icon/index.js +2 -0
  3. package/lib/components/icon/paths/chevron_right.js +2 -2
  4. package/lib/components/icon/paths/fcr_color.d.ts +4 -0
  5. package/lib/components/icon/paths/fcr_color.js +52 -0
  6. package/lib/components/icon/paths/fcr_delete5.d.ts +3 -0
  7. package/lib/components/icon/paths/fcr_delete5.js +22 -0
  8. package/lib/components/icon/paths/fcr_download2.d.ts +3 -0
  9. package/lib/components/icon/paths/fcr_download2.js +22 -0
  10. package/lib/components/icon/paths/fcr_pensize3_straight.d.ts +3 -0
  11. package/lib/components/icon/paths/fcr_pensize3_straight.js +26 -0
  12. package/lib/components/icon/paths/fcr_rename.d.ts +1 -1
  13. package/lib/components/icon/paths/fcr_rename.js +2 -2
  14. package/lib/components/icon/paths/fcr_showvideo.js +1 -1
  15. package/lib/components/icon/paths/fcr_showvideo2.d.ts +3 -0
  16. package/lib/components/icon/paths/fcr_showvideo2.js +22 -0
  17. package/lib/components/icon/paths/fcr_whiteboard_eraser2.d.ts +3 -0
  18. package/lib/components/icon/paths/fcr_whiteboard_eraser2.js +20 -0
  19. package/lib/components/icon/paths/fcr_whiteboard_laserpen1.d.ts +4 -0
  20. package/lib/components/icon/paths/fcr_whiteboard_laserpen1.js +63 -0
  21. package/lib/components/icon/paths/fcr_whiteboard_laserpen3.d.ts +3 -0
  22. package/lib/components/icon/paths/fcr_whiteboard_laserpen3.js +26 -0
  23. package/lib/components/icon/paths/fcr_whiteboard_ped4.d.ts +3 -0
  24. package/lib/components/icon/paths/fcr_whiteboard_ped4.js +28 -0
  25. package/lib/components/icon/paths/fcr_whiteboard_ped5.d.ts +4 -0
  26. package/lib/components/icon/paths/fcr_whiteboard_ped5.js +30 -0
  27. package/lib/components/icon/svg-dict.d.ts +2 -1
  28. package/lib/components/icon/svg-dict.js +10 -1
  29. package/lib/components/icon/svg-exports.d.ts +10 -0
  30. package/lib/components/icon/svg-exports.js +26 -6
  31. package/lib/components/icon/type.d.ts +11 -1
  32. package/lib/components/icon/type.js +10 -0
  33. package/lib/components/state-bar/assets/fcr_grid_big.svg +1 -1
  34. package/lib/components/state-bar/assets/fcr_listontop_big.svg +1 -1
  35. package/lib/components/state-bar/assets/step-gradient.svg +1 -1
  36. package/lib/components/tooltip/index.d.ts +8 -0
  37. package/lib/components/tooltip/index.js +67 -4
  38. package/lib/components/tooltips-button/index.d.ts +1 -0
  39. package/lib/components/tooltips-button/index.js +6 -3
  40. package/lib/components/tooltips-button/tooltip-button.css +7 -8
  41. package/lib/components/window-header/index.js +1 -0
  42. package/package.json +3 -3
@@ -8,5 +8,6 @@ export type FcrIconProps = {
8
8
  style?: CSSProperties;
9
9
  colors?: Partial<PathOptions>;
10
10
  onClick?: MouseEventHandler<SVGSVGElement>;
11
+ fill?: string;
11
12
  };
12
13
  export declare const FcrIcon: FC<FcrIconProps>;
@@ -39,6 +39,7 @@ var FcrIcon = exports.FcrIcon = function FcrIcon(_ref) {
39
39
  iconPrimary: (_colors$iconPrimary = colors === null || colors === void 0 ? void 0 : colors.iconPrimary) !== null && _colors$iconPrimary !== void 0 ? _colors$iconPrimary : 'transparent',
40
40
  iconSecondary: (_colors$iconSecondary = colors === null || colors === void 0 ? void 0 : colors.iconSecondary) !== null && _colors$iconSecondary !== void 0 ? _colors$iconSecondary : 'transparent'
41
41
  }));
42
+ var fill = (0, _svgDict.getFill)(type);
42
43
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
43
44
  className: className,
44
45
  width: size,
@@ -48,6 +49,7 @@ var FcrIcon = exports.FcrIcon = function FcrIcon(_ref) {
48
49
  xmlnsXlink: "http://www.w3.org/1999/xlink",
49
50
  style: style,
50
51
  "data-label": type,
52
+ fill: fill,
51
53
  onClick: onClick,
52
54
  children: path
53
55
  });
@@ -12,8 +12,8 @@ var path = exports.path = function path(_ref) {
12
12
  var iconPrimary = _ref.iconPrimary;
13
13
  return /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
14
14
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
- "fill-rule": "evenodd",
16
- "clip-rule": "evenodd",
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
17
  d: "M12.7071 5.29289C13.0976 5.68342 13.0976 6.31658 12.7071 6.70711L8 11.4142L3.29289 6.70711C2.90237 6.31658 2.90237 5.68342 3.29289 5.29289C3.68342 4.90237 4.31658 4.90237 4.70711 5.29289L8 8.58579L11.2929 5.29289C11.6834 4.90237 12.3166 4.90237 12.7071 5.29289Z",
18
18
  fill: iconPrimary
19
19
  })
@@ -0,0 +1,4 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary, iconSecondary, selected }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 36 36";
4
+ export declare const fill = "none";
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.array.fill.js");
4
+ require("core-js/modules/es.object.define-property.js");
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
+ Object.defineProperty(exports, "__esModule", {
7
+ value: true
8
+ });
9
+ exports.viewBox = exports.path = exports.fill = void 0;
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ var path = exports.path = function path(_ref) {
13
+ var iconPrimary = _ref.iconPrimary,
14
+ iconSecondary = _ref.iconSecondary,
15
+ selected = _ref.selected;
16
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
17
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
18
+ clipPath: "url(#clip0_82690_207404)",
19
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
20
+ cx: "18",
21
+ cy: "18",
22
+ r: "9",
23
+ fill: iconPrimary
24
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M22.5986 14.4749C22.9419 14.7979 22.9691 15.3502 22.6595 15.7084L17.7944 21.3368C17.3182 21.8877 16.4898 21.8877 16.0136 21.3368L13.7155 18.6781C13.4059 18.3199 13.4331 17.7676 13.7764 17.4445C14.1197 17.1214 14.649 17.1499 14.9586 17.5081L16.904 19.7587L21.4164 14.5384C21.726 14.1802 22.2553 14.1518 22.5986 14.4749Z",
28
+ fill: selected ? 'white' : 'transparent'
29
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
30
+ x: "5.5",
31
+ y: "5.5",
32
+ width: "25",
33
+ height: "25",
34
+ rx: "12.5",
35
+ stroke: iconSecondary ? iconSecondary : 'transparent',
36
+ strokeWidth: "3"
37
+ })]
38
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("defs", {
39
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("clipPath", {
40
+ id: "clip0_82690_207404",
41
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
42
+ width: "28",
43
+ height: "28",
44
+ fill: "white",
45
+ transform: "translate(4 4)"
46
+ })
47
+ })
48
+ })]
49
+ });
50
+ };
51
+ var viewBox = exports.viewBox = '0 0 36 36';
52
+ var fill = exports.fill = 'none';
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary;
13
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
14
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M13.4996 6C13.0393 6 12.6662 6.3731 12.6662 6.83333C12.6662 7.29357 13.0393 7.66667 13.4996 7.66667H18.4996C18.9598 7.66667 19.3329 7.29357 19.3329 6.83333C19.3329 6.3731 18.9598 6 18.4996 6H13.4996ZM5.99957 10.1667C5.99957 9.70643 6.37267 9.33333 6.83291 9.33333H25.1662C25.6265 9.33333 25.9996 9.70643 25.9996 10.1667C25.9996 10.6269 25.6265 11 25.1662 11H23.8329V20.2227C23.8329 23.9966 20.7735 27.056 16.9996 27.056H11.6662C9.73324 27.056 8.16624 25.489 8.16624 23.556V11H6.83291C6.37267 11 5.99957 10.6269 5.99957 10.1667ZM9.83291 11H22.1662V20.2227C22.1662 23.0761 19.853 25.3893 16.9996 25.3893H11.6662C10.6537 25.3893 9.83291 24.5685 9.83291 23.556V11ZM13.3342 14.8333C13.3342 14.3731 13.7073 14 14.1675 14C14.6278 14 15.0009 14.3731 15.0009 14.8333V21.8333C15.0009 22.2936 14.6278 22.6667 14.1675 22.6667C13.7073 22.6667 13.3342 22.2936 13.3342 21.8333V14.8333ZM17.7222 14C17.262 14 16.8889 14.3731 16.8889 14.8333V21.8333C16.8889 22.2936 17.262 22.6667 17.7222 22.6667C18.1825 22.6667 18.5556 22.2936 18.5556 21.8333V14.8333C18.5556 14.3731 18.1825 14 17.7222 14Z",
18
+ fill: iconPrimary
19
+ })
20
+ });
21
+ };
22
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary;
13
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
14
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M21.6485 14.6384C22.1172 15.108 22.1172 15.8694 21.6485 16.339L16 21.9993L10.3515 16.339C9.88284 15.8694 9.88284 15.108 10.3515 14.6384C10.8201 14.1687 11.5799 14.1687 12.0485 14.6384L14.8 17.3956L14.8 7.86853C14.8 7.2044 15.3373 6.66602 16 6.66602C16.6627 6.66602 17.2 7.2044 17.2 7.86853L17.2 17.3956L19.9515 14.6384C20.4201 14.1687 21.1799 14.1687 21.6485 14.6384ZM24 25.9993V23.9993H8V25.9993H24Z",
18
+ fill: iconPrimary
19
+ })
20
+ });
21
+ };
22
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary, level }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 28 28";
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary,
13
+ _ref$level = _ref.level,
14
+ level = _ref$level === void 0 ? 1 : _ref$level;
15
+ var levels = ['1.30667', '1.86667', '2.8', '3.73333'];
16
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
17
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
18
+ d: "M16.7999 8.39844L10.2665 19.5984",
19
+ stroke: iconPrimary,
20
+ "stroke-opacity": "0.8",
21
+ strokeWidth: levels[+level - 1],
22
+ strokeLinecap: "round"
23
+ })
24
+ });
25
+ };
26
+ var viewBox = exports.viewBox = '0 0 28 28';
@@ -1,3 +1,3 @@
1
1
  import { PathOptions } from '../svg-dict';
2
2
  export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
- export declare const viewBox = "0 0 20 20";
3
+ export declare const viewBox = "0 0 32 32";
@@ -14,9 +14,9 @@ var path = exports.path = function path(_ref) {
14
14
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
15
  fillRule: "evenodd",
16
16
  clipRule: "evenodd",
17
- d: "M6.14098 13.2268L5.75109 17.5695C5.71825 17.9352 6.00634 18.2503 6.37359 18.2503H10.311C10.6374 18.2503 10.9508 18.1227 11.1844 17.8947L15.7757 13.4112L15.7822 13.4179L16.8602 12.3749L16.849 12.3633L17.5165 11.7114C18.4891 10.7617 18.5246 9.2087 17.5962 8.21556L16.0481 6.55941C15.0824 5.52639 13.4529 5.4992 12.4534 6.49942L11.6176 7.33579L11.625 7.3439L10.7369 8.20316L10.7437 8.21022L6.50179 12.455C6.29485 12.662 6.16715 12.9352 6.14098 13.2268ZM11.4958 8.98757L10.8536 9.60895L10.8483 9.60352L7.71727 12.6328C7.32035 13.0169 7.30989 13.6499 7.69391 14.0469L9.77991 16.2029C10.1639 16.5998 10.797 16.6103 11.1939 16.2263L14.129 13.3866L14.1342 13.392L14.9725 12.581L11.4958 8.98757ZM12.5739 7.94457L16.0505 11.538L16.9763 10.6423C17.3732 10.2583 17.3837 9.62523 16.9996 9.22831L14.9136 7.07225C14.5296 6.67533 13.8965 6.66487 13.4996 7.04889L12.5739 7.94457ZM12.0219 18.2281L13.8483 16.4017C13.8653 16.3847 13.8882 16.3752 13.9122 16.3752H17.3123C17.83 16.3752 18.2498 16.795 18.2498 17.3127C18.2498 17.8305 17.83 18.2502 17.3123 18.2502H12.031C12.0195 18.2502 12.0137 18.2363 12.0219 18.2281Z",
17
+ d: "M8.18866 17.6364L7.66881 23.4266C7.62503 23.9143 8.00915 24.3344 8.49881 24.3344H13.7488C14.1839 24.3344 14.6018 24.1642 14.9132 23.8602L21.0352 17.8821L21.0436 17.8908L22.4809 16.5002L22.4661 16.4848L23.356 15.6159C24.6529 14.3495 24.7001 12.2789 23.4623 10.9547L21.3981 8.74653C20.1106 7.36918 17.938 7.33292 16.6053 8.66654L15.4908 9.78171L15.5006 9.79234L14.3166 10.9379L14.3258 10.9475L8.66975 16.6073C8.39383 16.8834 8.22356 17.2476 8.18866 17.6364ZM15.3286 11.9839L14.4721 12.8126L14.4651 12.8054L10.2904 16.8444C9.76115 17.3565 9.74721 18.2006 10.2592 18.7298L13.0406 21.6045C13.5526 22.1338 14.3967 22.1477 14.9259 21.6357L18.8393 17.8495L18.8463 17.8567L19.9642 16.7752L15.3286 11.9839ZM16.766 10.5933L21.4015 15.3845L22.6357 14.1904C23.165 13.6784 23.1789 12.8343 22.6669 12.3051L19.8855 9.43031C19.3735 8.90108 18.5294 8.88714 18.0002 9.39917L16.766 10.5933ZM16.0299 24.3048L18.4651 21.8696C18.4877 21.847 18.5183 21.8343 18.5503 21.8343H23.0837C23.774 21.8343 24.3337 22.394 24.3337 23.0843C24.3337 23.7746 23.774 24.3343 23.0837 24.3343H16.042C16.0267 24.3343 16.019 24.3157 16.0299 24.3048Z",
18
18
  fill: iconPrimary
19
19
  })
20
20
  });
21
21
  };
22
- var viewBox = exports.viewBox = '0 0 20 20';
22
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -15,7 +15,7 @@ var path = exports.path = function path(_ref) {
15
15
  fillRule: "evenodd",
16
16
  clipRule: "evenodd",
17
17
  d: "M19.7845 8.3453C20.0976 8.15744 20.1991 7.75135 20.0112 7.43826C19.8234 7.12517 19.4173 7.02365 19.1042 7.2115L17.2748 8.30913C16.2661 7.9722 15.1599 7.7784 13.9999 7.7784C9.27479 7.7784 5.44434 10.9937 5.44434 14.0006C5.44434 17.0075 9.27479 20.2228 13.9999 20.2228C18.725 20.2228 22.5554 17.0075 22.5554 14.0006C22.5554 13.8323 22.5434 13.6632 22.5199 13.4942C22.6473 13.5011 22.778 13.4714 22.8956 13.4009L24.84 12.2342C25.1531 12.0463 25.2546 11.6402 25.0668 11.3271C24.8789 11.0141 24.4728 10.9125 24.1598 11.1004L22.2153 12.2671C22.1983 12.2773 22.1819 12.2881 22.1662 12.2996C21.9204 11.7563 21.5645 11.2277 21.1166 10.7349L22.5067 9.90085C22.8198 9.713 22.9213 9.3069 22.7335 8.99382C22.5456 8.68073 22.1395 8.5792 21.8264 8.76706L20.1017 9.80192C19.6986 9.4899 19.2545 9.20348 18.776 8.9504L19.7845 8.3453ZM19.2482 17.1876C20.6015 16.1565 21.2332 14.9487 21.2332 14.0006C21.2332 13.0525 20.6015 11.8447 19.2482 10.8136C17.9265 9.80655 16.0682 9.10062 13.9999 9.10062C11.9316 9.10062 10.0733 9.80655 8.75156 10.8136C7.39833 11.8447 6.76656 13.0525 6.76656 14.0006C6.76656 14.9487 7.39833 16.1565 8.75156 17.1876C10.0733 18.1947 11.9316 18.9006 13.9999 18.9006C16.0682 18.9006 17.9265 18.1947 19.2482 17.1876ZM17.111 14.0006C17.111 15.7188 15.7181 17.1117 13.9999 17.1117C12.2817 17.1117 10.8888 15.7188 10.8888 14.0006C10.8888 12.2824 12.2817 10.8895 13.9999 10.8895C15.7181 10.8895 17.111 12.2824 17.111 14.0006Z",
18
- fill: "#4262FF"
18
+ fill: iconPrimary
19
19
  })
20
20
  });
21
21
  };
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 24 24";
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary;
13
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
14
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M16.9576 7.15227C17.2259 6.99126 17.3129 6.64318 17.1519 6.37481C16.9909 6.10645 16.6428 6.01943 16.3745 6.18045L14.8064 7.12128C13.9418 6.83248 12.9937 6.66636 11.9993 6.66636C7.94926 6.66636 4.66602 9.42237 4.66602 11.9997C4.66602 14.577 7.94926 17.333 11.9993 17.333C16.0494 17.333 19.3327 14.577 19.3327 11.9997C19.3327 11.8554 19.3224 11.7105 19.3022 11.5656C19.4114 11.5716 19.5234 11.5461 19.6242 11.4856L21.2909 10.4856C21.5593 10.3246 21.6463 9.97651 21.4853 9.70815C21.3242 9.43979 20.9762 9.35276 20.7078 9.51378L19.0411 10.5138C19.0266 10.5225 19.0125 10.5318 18.999 10.5416C18.7883 10.076 18.4833 9.62291 18.0994 9.20052L19.2909 8.48561C19.5593 8.32459 19.6463 7.97651 19.4853 7.70815C19.3242 7.43979 18.9762 7.35276 18.7078 7.51378L17.2294 8.40081C16.8839 8.13337 16.5033 7.88786 16.0931 7.67093L16.9576 7.15227ZM16.4979 14.7314C17.6578 13.8476 18.1993 12.8123 18.1993 11.9997C18.1993 11.1871 17.6578 10.1518 16.4979 9.268C15.365 8.40477 13.7722 7.79969 11.9993 7.79969C10.2265 7.79969 8.63369 8.40477 7.50078 9.268C6.34087 10.1518 5.79935 11.1871 5.79935 11.9997C5.79935 12.8123 6.34087 13.8476 7.50078 14.7314C8.63369 15.5946 10.2265 16.1997 11.9993 16.1997C13.7722 16.1997 15.365 15.5946 16.4979 14.7314ZM14.666 11.9997C14.666 13.4725 13.4721 14.6664 11.9993 14.6664C10.5266 14.6664 9.33268 13.4725 9.33268 11.9997C9.33268 10.5269 10.5266 9.33303 11.9993 9.33303C13.4721 9.33303 14.666 10.5269 14.666 11.9997Z",
18
+ fill: iconPrimary
19
+ })
20
+ });
21
+ };
22
+ var viewBox = exports.viewBox = '0 0 24 24';
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary;
13
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
14
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
+ d: "M25.3325 26.1653H5.99951V24.4993H25.3325V26.1653ZM17.6382 5.27076C18.082 4.74227 18.8489 4.64477 19.4077 5.02466L19.5161 5.10669L26.6177 11.0657L26.7173 11.1585C27.1884 11.6429 27.2253 12.4148 26.7817 12.9436L20.5044 20.4251L20.2319 20.7327C17.4439 23.7328 12.824 24.1373 9.55713 21.6672L9.23389 21.4104L7.23975 19.7376L7.14014 19.6448C6.70027 19.1927 6.63922 18.4898 6.99365 17.968L7.07568 17.8586L17.6382 5.27076ZM8.56689 18.6751L10.3052 20.134C12.1163 21.6537 14.5278 21.9836 16.5952 21.2122L10.6079 16.2424L8.56689 18.6751ZM11.6792 14.967L18.1685 20.3528C18.5504 20.0666 18.908 19.7341 19.228 19.3528L25.2905 12.1282L18.7007 6.59888L11.6792 14.967Z",
16
+ fill: iconPrimary
17
+ })
18
+ });
19
+ };
20
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -0,0 +1,4 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const fill = "none";
4
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.array.fill.js");
4
+ require("core-js/modules/es.object.define-property.js");
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
+ Object.defineProperty(exports, "__esModule", {
7
+ value: true
8
+ });
9
+ exports.viewBox = exports.path = exports.fill = void 0;
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ var path = exports.path = function path(_ref) {
13
+ var iconPrimary = _ref.iconPrimary;
14
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
15
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
16
+ cx: "16",
17
+ cy: "15.9997",
18
+ r: "10",
19
+ stroke: iconPrimary,
20
+ strokeWidth: "1.33333"
21
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("g", {
22
+ filter: "url(#filter0_f_82690_205618)",
23
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
24
+ cx: "16",
25
+ cy: "16.0003",
26
+ r: "7.33333",
27
+ fill: iconPrimary,
28
+ fillOpacity: "0.4"
29
+ })
30
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", {
31
+ cx: "16",
32
+ cy: "16",
33
+ r: "3.33333",
34
+ fill: iconPrimary,
35
+ stroke: iconPrimary,
36
+ strokeWidth: "1.33333"
37
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("defs", {
38
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("filter", {
39
+ id: "filter0_f_82690_205618",
40
+ x: "1.99999",
41
+ y: "2.00033",
42
+ width: "28",
43
+ height: "28.0003",
44
+ filterUnits: "userSpaceOnUse",
45
+ colorInterpolationFilters: "sRGB",
46
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("feFlood", {
47
+ floodOpacity: "0",
48
+ result: "BackgroundImageFix"
49
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("feBlend", {
50
+ mode: "normal",
51
+ "in": "SourceGraphic",
52
+ in2: "BackgroundImageFix",
53
+ result: "shape"
54
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("feGaussianBlur", {
55
+ stdDeviation: "3.33333",
56
+ result: "effect1_foregroundBlur_82690_205618"
57
+ })]
58
+ })
59
+ })]
60
+ });
61
+ };
62
+ var fill = exports.fill = 'none';
63
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary;
13
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
14
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
15
+ d: "M12.9184 14.6127L16.0307 24.0933C16.1112 24.3386 16.2973 24.535 16.538 24.6287C16.9824 24.8017 17.483 24.5816 17.656 24.1371L19.1257 20.361C19.1921 20.1906 19.3253 20.0548 19.4944 19.9852L23.5044 18.3357C23.7353 18.2407 23.9138 18.0504 23.9939 17.8139C24.1468 17.3621 23.9045 16.8719 23.4527 16.719L14.0157 13.5253C13.8387 13.4654 13.6471 13.4645 13.4696 13.5228C13.0164 13.6716 12.7697 14.1595 12.9184 14.6127Z",
16
+ stroke: iconPrimary,
17
+ strokeWidth: "1.66667"
18
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
19
+ fillRule: "evenodd",
20
+ clipRule: "evenodd",
21
+ d: "M14.9986 12.0255C14.9987 12.0172 14.9987 12.0089 14.9987 12.0007C14.9987 10.3438 13.6556 9.00065 11.9987 9.00065C10.3418 9.00065 8.9987 10.3438 8.9987 12.0007C8.9987 13.3031 9.82865 14.4116 10.9885 14.8263L11.5859 16.6493C9.20194 16.4404 7.33203 14.4389 7.33203 12.0007C7.33203 9.42332 9.42137 7.33398 11.9987 7.33398C14.576 7.33398 16.6654 9.42332 16.6654 12.0007C16.6654 12.1957 16.6534 12.3879 16.6302 12.5767L14.9986 12.0255Z",
22
+ fill: iconPrimary
23
+ })]
24
+ });
25
+ };
26
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -0,0 +1,3 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary, iconSecondary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.viewBox = exports.path = void 0;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ var path = exports.path = function path(_ref) {
12
+ var iconPrimary = _ref.iconPrimary,
13
+ iconSecondary = _ref.iconSecondary;
14
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
15
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M15.6569 19.5557L12.8284 16.7273L21.3137 8.24204C22.0948 7.46099 23.3611 7.46099 24.1422 8.24204C24.9232 9.02309 24.9232 10.2894 24.1422 11.0705L15.6569 19.5557ZM10.3672 17.0945C10.1644 16.8917 10.1644 16.5629 10.3672 16.3602L19.8995 6.82782C21.4616 5.26573 23.9943 5.26573 25.5564 6.82782C27.1185 8.38992 27.1185 10.9226 25.5564 12.4847L16.024 22.017C15.8213 22.2198 15.4925 22.2198 15.2897 22.017L10.3672 17.0945ZM6.87449 25.1858C6.83867 25.0782 6.83871 24.9619 6.87461 24.8543L8.86116 18.9037L13.4924 23.535L7.53729 25.5175C7.26267 25.6089 6.96593 25.4604 6.87449 25.1858Z",
19
+ fill: iconPrimary
20
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
21
+ d: "M7.33334 7.33301H13.3333",
22
+ stroke: iconSecondary,
23
+ strokeWidth: "2",
24
+ strokeLinecap: "round"
25
+ })]
26
+ });
27
+ };
28
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -0,0 +1,4 @@
1
+ import { PathOptions } from '../svg-dict';
2
+ export declare const path: ({ iconPrimary, iconSecondary }: PathOptions) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const fill = "none";
4
+ export declare const viewBox = "0 0 32 32";
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.array.fill.js");
4
+ require("core-js/modules/es.object.define-property.js");
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
6
+ Object.defineProperty(exports, "__esModule", {
7
+ value: true
8
+ });
9
+ exports.viewBox = exports.path = exports.fill = void 0;
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _jsxRuntime = require("react/jsx-runtime");
12
+ var path = exports.path = function path(_ref) {
13
+ var iconPrimary = _ref.iconPrimary,
14
+ iconSecondary = _ref.iconSecondary;
15
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
16
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
17
+ fillRule: "evenodd",
18
+ clipRule: "evenodd",
19
+ d: "M21.3137 8.24119C22.0948 7.46014 23.3611 7.46014 24.1422 8.24119C24.9232 9.02224 24.9232 10.2886 24.1422 11.0696L15.6569 19.5549L12.8284 16.7265L21.3137 8.24119ZM16.0242 22.016L25.5564 12.4838L25.6986 12.3347C27.0714 10.8152 27.0714 8.49564 25.6986 6.97613L25.5564 6.82698C24.0431 5.31374 21.6189 5.26616 20.0487 6.68473L19.8995 6.82698L10.3674 16.3591L10.3011 16.4406C10.1678 16.6422 10.1899 16.9163 10.3674 17.0938L15.2895 22.016L15.371 22.0823C15.5439 22.1966 15.7699 22.1966 15.9428 22.0823L16.0242 22.016ZM6.87449 25.1849C6.83867 25.0774 6.83871 24.961 6.87461 24.8535L8.86116 18.9029L13.4924 23.5342L7.53729 25.5166C7.26267 25.6081 6.96593 25.4596 6.87449 25.1849Z",
20
+ fill: iconPrimary
21
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
22
+ d: "M7.33334 8.83312C8.30304 9.71343 10.5697 10.9459 11.8788 8.83312C13.1879 6.72037 14.7273 7.29257 15.3333 7.84277",
23
+ stroke: iconSecondary,
24
+ strokeWidth: "2",
25
+ strokeLinecap: "round"
26
+ })]
27
+ });
28
+ };
29
+ var fill = exports.fill = 'none';
30
+ var viewBox = exports.viewBox = '0 0 32 32';
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  export type PathOptions = {
3
3
  iconPrimary: string;
4
4
  iconSecondary: string;
5
- [key: string]: string | number;
5
+ [key: string]: string | number | boolean;
6
6
  };
7
7
  export type SvgPath = {
8
8
  path: (options: PathOptions) => React.ReactNode;
@@ -10,3 +10,4 @@ export type SvgPath = {
10
10
  };
11
11
  export declare const getPath: (name: string, props: PathOptions) => import("react/jsx-runtime").JSX.Element;
12
12
  export declare const getViewBox: (name: string) => "0 0 12 12" | "0 0 16 16" | "0 0 48 48" | "0 0 20 8" | "0 0 20 20" | "0 0 32 32" | "0 0 50 50" | "0 0 20 21" | "0 0 30 30" | "0 0 48 49" | "0 0 49 49" | "0 0 200 120" | "0 0 10 10" | "0 0 22 22" | "0 0 5 19" | "0 0 29 29" | "0 0 32 20" | "0 0 138 100" | "0 0 48 30" | "0 0 48 20" | "0 0 24 24" | "0 0 30 48" | "0 0 49 48" | "0 0 100 56" | "0 0 28 28" | "0 0 32 33" | "0 0 20 48" | "0 0 36 36" | "0 0 21 20" | "0 0 39 10" | "0 0 17 16" | "0 0 18 18" | "0 0 40 40" | "0 0 9 9" | "0 0 26 26" | "0 0 14 30" | "0 4 16 8" | "0 0 40 11" | "0 0 16 13" | "0 0 15 13.5" | "0 0 8 32" | "0 0 31 30" | "0 0 4 4" | "0 0 45 7" | "0 0 10 12" | "0 0 0 0";
13
+ export declare const getFill: (name: string) => "none" | undefined;
@@ -14,7 +14,8 @@ var _typeof = require("@babel/runtime/helpers/typeof");
14
14
  Object.defineProperty(exports, "__esModule", {
15
15
  value: true
16
16
  });
17
- exports.getViewBox = exports.getPath = void 0;
17
+ exports.getViewBox = exports.getPath = exports.getFill = void 0;
18
+ require("core-js/modules/es.array.fill.js");
18
19
  var _react = _interopRequireDefault(require("react"));
19
20
  var svgExports = _interopRequireWildcard(require("./svg-exports"));
20
21
  var _jsxRuntime = require("react/jsx-runtime");
@@ -35,4 +36,12 @@ var getViewBox = exports.getViewBox = function getViewBox(name) {
35
36
  return svg.viewBox;
36
37
  }
37
38
  return '0 0 0 0';
39
+ };
40
+ var getFill = exports.getFill = function getFill(name) {
41
+ var index = name;
42
+ var svg = svgExports[index];
43
+ if (svg && 'fill' in svg) {
44
+ return svg.fill;
45
+ }
46
+ return undefined;
38
47
  };
@@ -45,11 +45,13 @@ export * as fcr_countdown_up from './paths/fcr_countdown_up';
45
45
  export * as fcr_defaultpage from './paths/fcr_defaultpage';
46
46
  export * as fcr_delete3 from './paths/fcr_delete3';
47
47
  export * as fcr_delete4 from './paths/fcr_delete4';
48
+ export * as fcr_delete5 from './paths/fcr_delete5';
48
49
  export * as fcr_deviceaudiooff from './paths/fcr_deviceaudiooff';
49
50
  export * as fcr_deviceaudioon from './paths/fcr_deviceaudioon';
50
51
  export * as fcr_down from './paths/fcr_down';
51
52
  export * as fcr_down1 from './paths/fcr_down1';
52
53
  export * as fcr_download from './paths/fcr_download';
54
+ export * as fcr_download2 from './paths/fcr_download2';
53
55
  export * as fcr_dropdown from './paths/fcr_dropdown';
54
56
  export * as fcr_dropdown2 from './paths/fcr_dropdown2';
55
57
  export * as fcr_dropdown4 from './paths/fcr_dropdown4';
@@ -137,6 +139,7 @@ export * as fcr_pen_line_3size from './paths/fcr_pen_line_3size';
137
139
  export * as fcr_pen_line_4size from './paths/fcr_pen_line_4size';
138
140
  export * as fcr_pensize from './paths/fcr_pensize';
139
141
  export * as fcr_pensize_straight from './paths/fcr_pensize_straight';
142
+ export * as fcr_pensize3_straight from './paths/fcr_pensize3_straight';
140
143
  export * as fcr_people from './paths/fcr_people';
141
144
  export * as fcr_phonecall1 from './paths/fcr_phonecall1';
142
145
  export * as fcr_phonecall2 from './paths/fcr_phonecall2';
@@ -188,6 +191,7 @@ export * as fcr_share from './paths/fcr_share';
188
191
  export * as fcr_sharingbar_down from './paths/fcr_sharingbar_down';
189
192
  export * as fcr_sharingbar_up from './paths/fcr_sharingbar_up';
190
193
  export * as fcr_showvideo from './paths/fcr_showvideo';
194
+ export * as fcr_showvideo2 from './paths/fcr_showvideo2';
191
195
  export * as fcr_simultaneousinterpretation_off from './paths/fcr_simultaneousinterpretation_off';
192
196
  export * as fcr_simultaneousinterpretation_on from './paths/fcr_simultaneousinterpretation_on';
193
197
  export * as fcr_sipdevice from './paths/fcr_sipdevice';
@@ -254,10 +258,13 @@ export * as fcr_whiteboard_bg from './paths/fcr_whiteboard_bg';
254
258
  export * as fcr_whiteboard_cloud from './paths/fcr_whiteboard_cloud';
255
259
  export * as fcr_whiteboard_eliminate from './paths/fcr_whiteboard_eliminate';
256
260
  export * as fcr_whiteboard_eraser from './paths/fcr_whiteboard_eraser';
261
+ export * as fcr_whiteboard_eraser2 from './paths/fcr_whiteboard_eraser2';
257
262
  export * as fcr_whiteboard_expand2 from './paths/fcr_whiteboard_expand2';
258
263
  export * as fcr_whiteboard_forward from './paths/fcr_whiteboard_forward';
259
264
  export * as fcr_whiteboard_laserpen from './paths/fcr_whiteboard_laserpen';
265
+ export * as fcr_whiteboard_laserpen1 from './paths/fcr_whiteboard_laserpen1';
260
266
  export * as fcr_whiteboard_laserpen2 from './paths/fcr_whiteboard_laserpen2';
267
+ export * as fcr_whiteboard_laserpen3 from './paths/fcr_whiteboard_laserpen3';
261
268
  export * as fcr_whiteboard_lowerrightarrow from './paths/fcr_whiteboard_lowerrightarrow';
262
269
  export * as fcr_whiteboard_mouse from './paths/fcr_whiteboard_mouse';
263
270
  export * as fcr_whiteboard_move from './paths/fcr_whiteboard_move';
@@ -268,6 +275,8 @@ export * as fcr_whiteboard_page from './paths/fcr_whiteboard_page';
268
275
  export * as fcr_whiteboard_ped from './paths/fcr_whiteboard_ped';
269
276
  export * as fcr_whiteboard_ped2 from './paths/fcr_whiteboard_ped2';
270
277
  export * as fcr_whiteboard_ped3 from './paths/fcr_whiteboard_ped3';
278
+ export * as fcr_whiteboard_ped4 from './paths/fcr_whiteboard_ped4';
279
+ export * as fcr_whiteboard_ped5 from './paths/fcr_whiteboard_ped5';
271
280
  export * as fcr_whiteboard_ped_curve from './paths/fcr_whiteboard_ped_curve';
272
281
  export * as fcr_whiteboard_ped_straightline from './paths/fcr_whiteboard_ped_straightline';
273
282
  export * as fcr_whiteboard_save from './paths/fcr_whiteboard_save';
@@ -302,5 +311,6 @@ export * as set_sale from './paths/set_sale';
302
311
  export * as zhipuai from './paths/zhipuai';
303
312
  export * as fcr_mobile_cameraoff2 from './paths/fcr_mobile_cameraoff2';
304
313
  export * as fcr_share_sound from './paths/fcr_share_sound';
314
+ export * as fcr_color from './paths/fcr_color';
305
315
  export * as fcr_jbh from './paths/fcr_jbh';
306
316
  export * as fcr_jbh_invite from './paths/fcr_jbh_invite';
@@ -13,10 +13,10 @@ var _typeof = require("@babel/runtime/helpers/typeof");
13
13
  Object.defineProperty(exports, "__esModule", {
14
14
  value: true
15
15
  });
16
- exports.fcr_liveicon = exports.fcr_live2 = exports.fcr_live = exports.fcr_list_on_top_big = exports.fcr_list_on_right_big = exports.fcr_list_delete = exports.fcr_link = exports.fcr_left4 = exports.fcr_left3 = exports.fcr_left1 = exports.fcr_left = exports.fcr_jbh_invite = exports.fcr_jbh = exports.fcr_interpretation2 = exports.fcr_host2 = exports.fcr_host = exports.fcr_home_code2 = exports.fcr_hidevideo = exports.fcr_helpquestion = exports.fcr_head = exports.fcr_grid_big = exports.fcr_gototop = exports.fcr_gotostage_on = exports.fcr_gotostage_not = exports.fcr_gotostage = exports.fcr_fullcoverage = exports.fcr_fourwindows2 = exports.fcr_fourwindows = exports.fcr_focusonhim = exports.fcr_file_video = exports.fcr_file_ppt = exports.fcr_file_photo = exports.fcr_file_pdf = exports.fcr_file_noformat = exports.fcr_file_excel = exports.fcr_file_doc = exports.fcr_file_audio = exports.fcr_file_alf = exports.fcr_file_ah5 = exports.fcr_file = exports.fcr_exclamationmask = exports.fcr_equalratio = exports.fcr_endmeeting = exports.fcr_emo = exports.fcr_dropup4 = exports.fcr_dropdown4 = exports.fcr_dropdown2 = exports.fcr_dropdown = exports.fcr_download = exports.fcr_down1 = exports.fcr_down = exports.fcr_deviceaudioon = exports.fcr_deviceaudiooff = exports.fcr_delete4 = exports.fcr_delete3 = exports.fcr_defaultpage = exports.fcr_countdown_up = exports.fcr_countdown_down = exports.fcr_copy_icon = exports.fcr_copy2 = exports.fcr_copy = exports.fcr_computerdata = exports.fcr_colon = exports.fcr_cohost2 = exports.fcr_cohost1 = exports.fcr_cloudrecord = exports.fcr_closed = exports.fcr_close2 = exports.fcr_close = exports.fcr_clock = exports.fcr_chooseit = exports.fcr_chexbox_indeterminate = exports.fcr_checkbox_check = exports.fcr_chat_reddot = exports.fcr_chat_placeholder = exports.fcr_chat_on = exports.fcr_chat2 = exports.fcr_chat = exports.fcr_cameraoff = exports.fcr_cameracrash = exports.fcr_camera_window_notwork = exports.fcr_camera_window_not = exports.fcr_camera_window_loading = exports.fcr_camera3 = exports.fcr_camera = exports.fcr_btn_loading = exports.fcr_bell = exports.fcr_beauty_retouch = exports.fcr_beauty_blush = exports.fcr_beauty = exports.fcr_background2 = exports.fcr_attach = exports.fcr_angle_tips = exports.fcr_allleave = exports.fcr_all_unmute = exports.fcr_all_mute = exports.fcr_aliyun = exports.fcr_alf2 = exports.chevron_right = exports.chat_private = void 0;
17
- exports.fcr_stop = exports.fcr_star = exports.fcr_smooth = exports.fcr_sipdevice = exports.fcr_simultaneousinterpretation_on = exports.fcr_simultaneousinterpretation_off = exports.fcr_showvideo = exports.fcr_sharingbar_up = exports.fcr_sharingbar_down = exports.fcr_share_sound = exports.fcr_share = exports.fcr_setting_teacher = exports.fcr_setting_none = exports.fcr_setting_meetingassistant = exports.fcr_setting2 = exports.fcr_setting = exports.fcr_send = exports.fcr_security = exports.fcr_screensharing_on = exports.fcr_screensharing_1 = exports.fcr_screensharing = exports.fcr_screenshare_change2 = exports.fcr_screenshare_change1 = exports.fcr_rotatingvideo = exports.fcr_rightwindows = exports.fcr_right5 = exports.fcr_right4 = exports.fcr_right3 = exports.fcr_right2 = exports.fcr_right = exports.fcr_rewardall = exports.fcr_reward = exports.fcr_reverseorder = exports.fcr_reset = exports.fcr_rename2 = exports.fcr_rename = exports.fcr_remove_pin = exports.fcr_recording_stop = exports.fcr_recording_play2 = exports.fcr_recording_play = exports.fcr_recording_on = exports.fcr_recording_end = exports.fcr_raisehands = exports.fcr_quit2 = exports.fcr_question2 = exports.fcr_question = exports.fcr_put_waiting_room = exports.fcr_ppt_broken = exports.fcr_platform = exports.fcr_pinpage2 = exports.fcr_pinpage = exports.fcr_pin = exports.fcr_picture = exports.fcr_phonecall_silence = exports.fcr_phonecall3 = exports.fcr_phonecall2 = exports.fcr_phonecall1 = exports.fcr_people = exports.fcr_pensize_straight = exports.fcr_pensize = exports.fcr_pen_line_4size = exports.fcr_pen_line_3size = exports.fcr_pen_line_2size = exports.fcr_pen_line_1size = exports.fcr_pen_curve_4size = exports.fcr_pen_curve_3size = exports.fcr_pen_curve_2size = exports.fcr_pen_curve_1size = exports.fcr_pause2 = exports.fcr_order_up = exports.fcr_order_down = exports.fcr_openfile = exports.fcr_oneleave = exports.fcr_notice = exports.fcr_nomute = exports.fcr_mutedefault = exports.fcr_mutecrash = exports.fcr_mute = exports.fcr_moveto = exports.fcr_move = exports.fcr_moreapp = exports.fcr_more2 = exports.fcr_mobile_whiteboard_undo = exports.fcr_mobile_whiteboard_redo = exports.fcr_mobile_subtities_on = exports.fcr_mobile_sharescreen = exports.fcr_mobile_more = exports.fcr_mobile_duplicate = exports.fcr_mobile_chat3 = exports.fcr_mobile_chat2 = exports.fcr_mobile_cameraoff2 = exports.fcr_mobile_camera2 = exports.fcr_mobile_arrow_left = exports.fcr_mirrorimage_right = exports.fcr_mirrorimage_off = exports.fcr_mirrorimage_left = exports.fcr_minus = exports.fcr_meetingrecord = exports.fcr_lower_hand = exports.fcr_loading = void 0;
18
- exports.fcr_wrong = exports.fcr_wizard_arrow = exports.fcr_windowpage_smaller3 = exports.fcr_windowpage_smaller2 = exports.fcr_windowpage_smaller = exports.fcr_windowpage_lonely = exports.fcr_windowpage_bigger = exports.fcr_window_smaller = exports.fcr_window_bigger = exports.fcr_wihiteboard_slicewithoutclassroom = exports.fcr_wihiteboard_slice = exports.fcr_whitechoose = exports.fcr_whiteboard_toolbox = exports.fcr_whiteboard_text = exports.fcr_whiteboard_slice = exports.fcr_whiteboard_shap_triangle = exports.fcr_whiteboard_shap_star = exports.fcr_whiteboard_shap_square = exports.fcr_whiteboard_shap_rehumbus = exports.fcr_whiteboard_shap_line = exports.fcr_whiteboard_shap_circle_1 = exports.fcr_whiteboard_shap_circle = exports.fcr_whiteboard_shap_arrow = exports.fcr_whiteboard_save = exports.fcr_whiteboard_ped_straightline = exports.fcr_whiteboard_ped_curve = exports.fcr_whiteboard_ped3 = exports.fcr_whiteboard_ped2 = exports.fcr_whiteboard_ped = exports.fcr_whiteboard_page = exports.fcr_whiteboard_on = exports.fcr_whiteboard_movesubjects2 = exports.fcr_whiteboard_movesubjects = exports.fcr_whiteboard_move = exports.fcr_whiteboard_mouse = exports.fcr_whiteboard_lowerrightarrow = exports.fcr_whiteboard_laserpen2 = exports.fcr_whiteboard_laserpen = exports.fcr_whiteboard_forward = exports.fcr_whiteboard_expand2 = exports.fcr_whiteboard_eraser = exports.fcr_whiteboard_eliminate = exports.fcr_whiteboard_cloud = exports.fcr_whiteboard_bg = exports.fcr_whiteboard_back = exports.fcr_whiteboard2 = exports.fcr_whiteboard = exports.fcr_web_smallest = exports.fcr_web_sharingview_small = exports.fcr_web_sharingview_mix = exports.fcr_web_sharingview_middle = exports.fcr_web_scale_right = exports.fcr_web_scale_left = exports.fcr_web_restoration = exports.fcr_web_move_page = exports.fcr_web_fullscream = exports.fcr_web_connectsound = exports.fcr_web_chat = exports.fcr_waiting_room = exports.fcr_videorotation2 = exports.fcr_videoback = exports.fcr_video_sharescreen = exports.fcr_v2_vote = exports.fcr_v2_tool_new = exports.fcr_v2_timer = exports.fcr_v2_tanhao_alart = exports.fcr_v2_signal_normal = exports.fcr_v2_signal_good = exports.fcr_v2_signal_bad = exports.fcr_v2_search = exports.fcr_v2_quite = exports.fcr_v2_poll_zoom = exports.fcr_v2_poll_minus = exports.fcr_v2_poll_add = exports.fcr_v2_phone_more1 = exports.fcr_v2_louder_min = exports.fcr_v2_louder = exports.fcr_v2_gou_alart = exports.fcr_v2_expansionscreen = exports.fcr_v2_chevron_right2 = exports.fcr_v2_chevron_left2 = exports.fcr_v2_chevron_down2 = exports.fcr_v2_breakroom = exports.fcr_v2_answer = exports.fcr_users = exports.fcr_uporder = exports.fcr_uploadlist = exports.fcr_up2 = exports.fcr_up = exports.fcr_unpin = exports.fcr_underline = exports.fcr_translanguage = exports.fcr_topwindows = exports.fcr_tooltip_arrow_2 = exports.fcr_tooltip_arrow = exports.fcr_subtract = exports.fcr_student_rasiehand = exports.fcr_stopscreensharing = exports.fcr_stoplive = exports.fcr_stop3 = void 0;
19
- exports.zhipuai = exports.set_sale = exports.logo_openai = exports.logo_moonshot = exports.fcr_zoomout = exports.fcr_zoomin = void 0;
16
+ exports.fcr_list_on_top_big = exports.fcr_list_on_right_big = exports.fcr_list_delete = exports.fcr_link = exports.fcr_left4 = exports.fcr_left3 = exports.fcr_left1 = exports.fcr_left = exports.fcr_jbh_invite = exports.fcr_jbh = exports.fcr_interpretation2 = exports.fcr_host2 = exports.fcr_host = exports.fcr_home_code2 = exports.fcr_hidevideo = exports.fcr_helpquestion = exports.fcr_head = exports.fcr_grid_big = exports.fcr_gototop = exports.fcr_gotostage_on = exports.fcr_gotostage_not = exports.fcr_gotostage = exports.fcr_fullcoverage = exports.fcr_fourwindows2 = exports.fcr_fourwindows = exports.fcr_focusonhim = exports.fcr_file_video = exports.fcr_file_ppt = exports.fcr_file_photo = exports.fcr_file_pdf = exports.fcr_file_noformat = exports.fcr_file_excel = exports.fcr_file_doc = exports.fcr_file_audio = exports.fcr_file_alf = exports.fcr_file_ah5 = exports.fcr_file = exports.fcr_exclamationmask = exports.fcr_equalratio = exports.fcr_endmeeting = exports.fcr_emo = exports.fcr_dropup4 = exports.fcr_dropdown4 = exports.fcr_dropdown2 = exports.fcr_dropdown = exports.fcr_download2 = exports.fcr_download = exports.fcr_down1 = exports.fcr_down = exports.fcr_deviceaudioon = exports.fcr_deviceaudiooff = exports.fcr_delete5 = exports.fcr_delete4 = exports.fcr_delete3 = exports.fcr_defaultpage = exports.fcr_countdown_up = exports.fcr_countdown_down = exports.fcr_copy_icon = exports.fcr_copy2 = exports.fcr_copy = exports.fcr_computerdata = exports.fcr_color = exports.fcr_colon = exports.fcr_cohost2 = exports.fcr_cohost1 = exports.fcr_cloudrecord = exports.fcr_closed = exports.fcr_close2 = exports.fcr_close = exports.fcr_clock = exports.fcr_chooseit = exports.fcr_chexbox_indeterminate = exports.fcr_checkbox_check = exports.fcr_chat_reddot = exports.fcr_chat_placeholder = exports.fcr_chat_on = exports.fcr_chat2 = exports.fcr_chat = exports.fcr_cameraoff = exports.fcr_cameracrash = exports.fcr_camera_window_notwork = exports.fcr_camera_window_not = exports.fcr_camera_window_loading = exports.fcr_camera3 = exports.fcr_camera = exports.fcr_btn_loading = exports.fcr_bell = exports.fcr_beauty_retouch = exports.fcr_beauty_blush = exports.fcr_beauty = exports.fcr_background2 = exports.fcr_attach = exports.fcr_angle_tips = exports.fcr_allleave = exports.fcr_all_unmute = exports.fcr_all_mute = exports.fcr_aliyun = exports.fcr_alf2 = exports.chevron_right = exports.chat_private = void 0;
17
+ exports.fcr_simultaneousinterpretation_off = exports.fcr_showvideo2 = exports.fcr_showvideo = exports.fcr_sharingbar_up = exports.fcr_sharingbar_down = exports.fcr_share_sound = exports.fcr_share = exports.fcr_setting_teacher = exports.fcr_setting_none = exports.fcr_setting_meetingassistant = exports.fcr_setting2 = exports.fcr_setting = exports.fcr_send = exports.fcr_security = exports.fcr_screensharing_on = exports.fcr_screensharing_1 = exports.fcr_screensharing = exports.fcr_screenshare_change2 = exports.fcr_screenshare_change1 = exports.fcr_rotatingvideo = exports.fcr_rightwindows = exports.fcr_right5 = exports.fcr_right4 = exports.fcr_right3 = exports.fcr_right2 = exports.fcr_right = exports.fcr_rewardall = exports.fcr_reward = exports.fcr_reverseorder = exports.fcr_reset = exports.fcr_rename2 = exports.fcr_rename = exports.fcr_remove_pin = exports.fcr_recording_stop = exports.fcr_recording_play2 = exports.fcr_recording_play = exports.fcr_recording_on = exports.fcr_recording_end = exports.fcr_raisehands = exports.fcr_quit2 = exports.fcr_question2 = exports.fcr_question = exports.fcr_put_waiting_room = exports.fcr_ppt_broken = exports.fcr_platform = exports.fcr_pinpage2 = exports.fcr_pinpage = exports.fcr_pin = exports.fcr_picture = exports.fcr_phonecall_silence = exports.fcr_phonecall3 = exports.fcr_phonecall2 = exports.fcr_phonecall1 = exports.fcr_people = exports.fcr_pensize_straight = exports.fcr_pensize3_straight = exports.fcr_pensize = exports.fcr_pen_line_4size = exports.fcr_pen_line_3size = exports.fcr_pen_line_2size = exports.fcr_pen_line_1size = exports.fcr_pen_curve_4size = exports.fcr_pen_curve_3size = exports.fcr_pen_curve_2size = exports.fcr_pen_curve_1size = exports.fcr_pause2 = exports.fcr_order_up = exports.fcr_order_down = exports.fcr_openfile = exports.fcr_oneleave = exports.fcr_notice = exports.fcr_nomute = exports.fcr_mutedefault = exports.fcr_mutecrash = exports.fcr_mute = exports.fcr_moveto = exports.fcr_move = exports.fcr_moreapp = exports.fcr_more2 = exports.fcr_mobile_whiteboard_undo = exports.fcr_mobile_whiteboard_redo = exports.fcr_mobile_subtities_on = exports.fcr_mobile_sharescreen = exports.fcr_mobile_more = exports.fcr_mobile_duplicate = exports.fcr_mobile_chat3 = exports.fcr_mobile_chat2 = exports.fcr_mobile_cameraoff2 = exports.fcr_mobile_camera2 = exports.fcr_mobile_arrow_left = exports.fcr_mirrorimage_right = exports.fcr_mirrorimage_off = exports.fcr_mirrorimage_left = exports.fcr_minus = exports.fcr_meetingrecord = exports.fcr_lower_hand = exports.fcr_loading = exports.fcr_liveicon = exports.fcr_live2 = exports.fcr_live = void 0;
18
+ exports.fcr_wihiteboard_slice = exports.fcr_whitechoose = exports.fcr_whiteboard_toolbox = exports.fcr_whiteboard_text = exports.fcr_whiteboard_slice = exports.fcr_whiteboard_shap_triangle = exports.fcr_whiteboard_shap_star = exports.fcr_whiteboard_shap_square = exports.fcr_whiteboard_shap_rehumbus = exports.fcr_whiteboard_shap_line = exports.fcr_whiteboard_shap_circle_1 = exports.fcr_whiteboard_shap_circle = exports.fcr_whiteboard_shap_arrow = exports.fcr_whiteboard_save = exports.fcr_whiteboard_ped_straightline = exports.fcr_whiteboard_ped_curve = exports.fcr_whiteboard_ped5 = exports.fcr_whiteboard_ped4 = exports.fcr_whiteboard_ped3 = exports.fcr_whiteboard_ped2 = exports.fcr_whiteboard_ped = exports.fcr_whiteboard_page = exports.fcr_whiteboard_on = exports.fcr_whiteboard_movesubjects2 = exports.fcr_whiteboard_movesubjects = exports.fcr_whiteboard_move = exports.fcr_whiteboard_mouse = exports.fcr_whiteboard_lowerrightarrow = exports.fcr_whiteboard_laserpen3 = exports.fcr_whiteboard_laserpen2 = exports.fcr_whiteboard_laserpen1 = exports.fcr_whiteboard_laserpen = exports.fcr_whiteboard_forward = exports.fcr_whiteboard_expand2 = exports.fcr_whiteboard_eraser2 = exports.fcr_whiteboard_eraser = exports.fcr_whiteboard_eliminate = exports.fcr_whiteboard_cloud = exports.fcr_whiteboard_bg = exports.fcr_whiteboard_back = exports.fcr_whiteboard2 = exports.fcr_whiteboard = exports.fcr_web_smallest = exports.fcr_web_sharingview_small = exports.fcr_web_sharingview_mix = exports.fcr_web_sharingview_middle = exports.fcr_web_scale_right = exports.fcr_web_scale_left = exports.fcr_web_restoration = exports.fcr_web_move_page = exports.fcr_web_fullscream = exports.fcr_web_connectsound = exports.fcr_web_chat = exports.fcr_waiting_room = exports.fcr_videorotation2 = exports.fcr_videoback = exports.fcr_video_sharescreen = exports.fcr_v2_vote = exports.fcr_v2_tool_new = exports.fcr_v2_timer = exports.fcr_v2_tanhao_alart = exports.fcr_v2_signal_normal = exports.fcr_v2_signal_good = exports.fcr_v2_signal_bad = exports.fcr_v2_search = exports.fcr_v2_quite = exports.fcr_v2_poll_zoom = exports.fcr_v2_poll_minus = exports.fcr_v2_poll_add = exports.fcr_v2_phone_more1 = exports.fcr_v2_louder_min = exports.fcr_v2_louder = exports.fcr_v2_gou_alart = exports.fcr_v2_expansionscreen = exports.fcr_v2_chevron_right2 = exports.fcr_v2_chevron_left2 = exports.fcr_v2_chevron_down2 = exports.fcr_v2_breakroom = exports.fcr_v2_answer = exports.fcr_users = exports.fcr_uporder = exports.fcr_uploadlist = exports.fcr_up2 = exports.fcr_up = exports.fcr_unpin = exports.fcr_underline = exports.fcr_translanguage = exports.fcr_topwindows = exports.fcr_tooltip_arrow_2 = exports.fcr_tooltip_arrow = exports.fcr_subtract = exports.fcr_student_rasiehand = exports.fcr_stopscreensharing = exports.fcr_stoplive = exports.fcr_stop3 = exports.fcr_stop = exports.fcr_star = exports.fcr_smooth = exports.fcr_sipdevice = exports.fcr_simultaneousinterpretation_on = void 0;
19
+ exports.zhipuai = exports.set_sale = exports.logo_openai = exports.logo_moonshot = exports.fcr_zoomout = exports.fcr_zoomin = exports.fcr_wrong = exports.fcr_wizard_arrow = exports.fcr_windowpage_smaller3 = exports.fcr_windowpage_smaller2 = exports.fcr_windowpage_smaller = exports.fcr_windowpage_lonely = exports.fcr_windowpage_bigger = exports.fcr_window_smaller = exports.fcr_window_bigger = exports.fcr_wihiteboard_slicewithoutclassroom = void 0;
20
20
  var _chat_private = _interopRequireWildcard(require("./paths/chat_private"));
21
21
  exports.chat_private = _chat_private;
22
22
  var _chevron_right = _interopRequireWildcard(require("./paths/chevron_right"));
@@ -111,6 +111,8 @@ var _fcr_delete = _interopRequireWildcard(require("./paths/fcr_delete3"));
111
111
  exports.fcr_delete3 = _fcr_delete;
112
112
  var _fcr_delete2 = _interopRequireWildcard(require("./paths/fcr_delete4"));
113
113
  exports.fcr_delete4 = _fcr_delete2;
114
+ var _fcr_delete3 = _interopRequireWildcard(require("./paths/fcr_delete5"));
115
+ exports.fcr_delete5 = _fcr_delete3;
114
116
  var _fcr_deviceaudiooff = _interopRequireWildcard(require("./paths/fcr_deviceaudiooff"));
115
117
  exports.fcr_deviceaudiooff = _fcr_deviceaudiooff;
116
118
  var _fcr_deviceaudioon = _interopRequireWildcard(require("./paths/fcr_deviceaudioon"));
@@ -121,6 +123,8 @@ var _fcr_down2 = _interopRequireWildcard(require("./paths/fcr_down1"));
121
123
  exports.fcr_down1 = _fcr_down2;
122
124
  var _fcr_download = _interopRequireWildcard(require("./paths/fcr_download"));
123
125
  exports.fcr_download = _fcr_download;
126
+ var _fcr_download2 = _interopRequireWildcard(require("./paths/fcr_download2"));
127
+ exports.fcr_download2 = _fcr_download2;
124
128
  var _fcr_dropdown = _interopRequireWildcard(require("./paths/fcr_dropdown"));
125
129
  exports.fcr_dropdown = _fcr_dropdown;
126
130
  var _fcr_dropdown2 = _interopRequireWildcard(require("./paths/fcr_dropdown2"));
@@ -295,6 +299,8 @@ var _fcr_pensize = _interopRequireWildcard(require("./paths/fcr_pensize"));
295
299
  exports.fcr_pensize = _fcr_pensize;
296
300
  var _fcr_pensize_straight = _interopRequireWildcard(require("./paths/fcr_pensize_straight"));
297
301
  exports.fcr_pensize_straight = _fcr_pensize_straight;
302
+ var _fcr_pensize3_straight = _interopRequireWildcard(require("./paths/fcr_pensize3_straight"));
303
+ exports.fcr_pensize3_straight = _fcr_pensize3_straight;
298
304
  var _fcr_people = _interopRequireWildcard(require("./paths/fcr_people"));
299
305
  exports.fcr_people = _fcr_people;
300
306
  var _fcr_phonecall = _interopRequireWildcard(require("./paths/fcr_phonecall1"));
@@ -397,6 +403,8 @@ var _fcr_sharingbar_up = _interopRequireWildcard(require("./paths/fcr_sharingbar
397
403
  exports.fcr_sharingbar_up = _fcr_sharingbar_up;
398
404
  var _fcr_showvideo = _interopRequireWildcard(require("./paths/fcr_showvideo"));
399
405
  exports.fcr_showvideo = _fcr_showvideo;
406
+ var _fcr_showvideo2 = _interopRequireWildcard(require("./paths/fcr_showvideo2"));
407
+ exports.fcr_showvideo2 = _fcr_showvideo2;
400
408
  var _fcr_simultaneousinterpretation_off = _interopRequireWildcard(require("./paths/fcr_simultaneousinterpretation_off"));
401
409
  exports.fcr_simultaneousinterpretation_off = _fcr_simultaneousinterpretation_off;
402
410
  var _fcr_simultaneousinterpretation_on = _interopRequireWildcard(require("./paths/fcr_simultaneousinterpretation_on"));
@@ -529,14 +537,20 @@ var _fcr_whiteboard_eliminate = _interopRequireWildcard(require("./paths/fcr_whi
529
537
  exports.fcr_whiteboard_eliminate = _fcr_whiteboard_eliminate;
530
538
  var _fcr_whiteboard_eraser = _interopRequireWildcard(require("./paths/fcr_whiteboard_eraser"));
531
539
  exports.fcr_whiteboard_eraser = _fcr_whiteboard_eraser;
540
+ var _fcr_whiteboard_eraser2 = _interopRequireWildcard(require("./paths/fcr_whiteboard_eraser2"));
541
+ exports.fcr_whiteboard_eraser2 = _fcr_whiteboard_eraser2;
532
542
  var _fcr_whiteboard_expand = _interopRequireWildcard(require("./paths/fcr_whiteboard_expand2"));
533
543
  exports.fcr_whiteboard_expand2 = _fcr_whiteboard_expand;
534
544
  var _fcr_whiteboard_forward = _interopRequireWildcard(require("./paths/fcr_whiteboard_forward"));
535
545
  exports.fcr_whiteboard_forward = _fcr_whiteboard_forward;
536
546
  var _fcr_whiteboard_laserpen = _interopRequireWildcard(require("./paths/fcr_whiteboard_laserpen"));
537
547
  exports.fcr_whiteboard_laserpen = _fcr_whiteboard_laserpen;
538
- var _fcr_whiteboard_laserpen2 = _interopRequireWildcard(require("./paths/fcr_whiteboard_laserpen2"));
539
- exports.fcr_whiteboard_laserpen2 = _fcr_whiteboard_laserpen2;
548
+ var _fcr_whiteboard_laserpen2 = _interopRequireWildcard(require("./paths/fcr_whiteboard_laserpen1"));
549
+ exports.fcr_whiteboard_laserpen1 = _fcr_whiteboard_laserpen2;
550
+ var _fcr_whiteboard_laserpen3 = _interopRequireWildcard(require("./paths/fcr_whiteboard_laserpen2"));
551
+ exports.fcr_whiteboard_laserpen2 = _fcr_whiteboard_laserpen3;
552
+ var _fcr_whiteboard_laserpen4 = _interopRequireWildcard(require("./paths/fcr_whiteboard_laserpen3"));
553
+ exports.fcr_whiteboard_laserpen3 = _fcr_whiteboard_laserpen4;
540
554
  var _fcr_whiteboard_lowerrightarrow = _interopRequireWildcard(require("./paths/fcr_whiteboard_lowerrightarrow"));
541
555
  exports.fcr_whiteboard_lowerrightarrow = _fcr_whiteboard_lowerrightarrow;
542
556
  var _fcr_whiteboard_mouse = _interopRequireWildcard(require("./paths/fcr_whiteboard_mouse"));
@@ -557,6 +571,10 @@ var _fcr_whiteboard_ped2 = _interopRequireWildcard(require("./paths/fcr_whiteboa
557
571
  exports.fcr_whiteboard_ped2 = _fcr_whiteboard_ped2;
558
572
  var _fcr_whiteboard_ped3 = _interopRequireWildcard(require("./paths/fcr_whiteboard_ped3"));
559
573
  exports.fcr_whiteboard_ped3 = _fcr_whiteboard_ped3;
574
+ var _fcr_whiteboard_ped4 = _interopRequireWildcard(require("./paths/fcr_whiteboard_ped4"));
575
+ exports.fcr_whiteboard_ped4 = _fcr_whiteboard_ped4;
576
+ var _fcr_whiteboard_ped5 = _interopRequireWildcard(require("./paths/fcr_whiteboard_ped5"));
577
+ exports.fcr_whiteboard_ped5 = _fcr_whiteboard_ped5;
560
578
  var _fcr_whiteboard_ped_curve = _interopRequireWildcard(require("./paths/fcr_whiteboard_ped_curve"));
561
579
  exports.fcr_whiteboard_ped_curve = _fcr_whiteboard_ped_curve;
562
580
  var _fcr_whiteboard_ped_straightline = _interopRequireWildcard(require("./paths/fcr_whiteboard_ped_straightline"));
@@ -625,6 +643,8 @@ var _fcr_mobile_cameraoff = _interopRequireWildcard(require("./paths/fcr_mobile_
625
643
  exports.fcr_mobile_cameraoff2 = _fcr_mobile_cameraoff;
626
644
  var _fcr_share_sound = _interopRequireWildcard(require("./paths/fcr_share_sound"));
627
645
  exports.fcr_share_sound = _fcr_share_sound;
646
+ var _fcr_color = _interopRequireWildcard(require("./paths/fcr_color"));
647
+ exports.fcr_color = _fcr_color;
628
648
  var _fcr_jbh = _interopRequireWildcard(require("./paths/fcr_jbh"));
629
649
  exports.fcr_jbh = _fcr_jbh;
630
650
  var _fcr_jbh_invite = _interopRequireWildcard(require("./paths/fcr_jbh_invite"));
@@ -46,11 +46,13 @@ export declare enum FcrIconType {
46
46
  FCR_DEFAULTPAGE = "fcr_defaultpage",
47
47
  FCR_DELETE3 = "fcr_delete3",
48
48
  FCR_DELETE4 = "fcr_delete4",
49
+ FCR_DELETE5 = "fcr_delete5",
49
50
  FCR_DEVICEAUDIOOFF = "fcr_deviceaudiooff",
50
51
  FCR_DEVICEAUDIOON = "fcr_deviceaudioon",
51
52
  FCR_DOWN = "fcr_down",
52
53
  FCR_DOWN1 = "fcr_down1",
53
54
  FCR_DOWNLOAD = "fcr_download",
55
+ FCR_DOWNLOAD2 = "fcr_download2",
54
56
  FCR_DROPDOWN = "fcr_dropdown",
55
57
  FCR_DROPDOWN2 = "fcr_dropdown2",
56
58
  FCR_DROPDOWN4 = "fcr_dropdown4",
@@ -138,6 +140,7 @@ export declare enum FcrIconType {
138
140
  FCR_PEN_LINE_4SIZE = "fcr_pen_line_4size",
139
141
  FCR_PENSIZE = "fcr_pensize",
140
142
  FCR_PENSIZE_STRAIGHT = "fcr_pensize_straight",
143
+ FCR_PENSIZE3_STRAIGHT = "fcr_pensize3_straight",
141
144
  FCR_PEOPLE = "fcr_people",
142
145
  FCR_PHONECALL1 = "fcr_phonecall1",
143
146
  FCR_PHONECALL2 = "fcr_phonecall2",
@@ -189,6 +192,7 @@ export declare enum FcrIconType {
189
192
  FCR_SHARINGBAR_DOWN = "fcr_sharingbar_down",
190
193
  FCR_SHARINGBAR_UP = "fcr_sharingbar_up",
191
194
  FCR_SHOWVIDEO = "fcr_showvideo",
195
+ FCR_SHOWVIDEO2 = "fcr_showvideo2",
192
196
  FCR_SIMULTANEOUSINTERPRETATION_OFF = "fcr_simultaneousinterpretation_off",
193
197
  FCR_SIMULTANEOUSINTERPRETATION_ON = "fcr_simultaneousinterpretation_on",
194
198
  FCR_SIPDEVICE = "fcr_sipdevice",
@@ -255,10 +259,13 @@ export declare enum FcrIconType {
255
259
  FCR_WHITEBOARD_CLOUD = "fcr_whiteboard_cloud",
256
260
  FCR_WHITEBOARD_ELIMINATE = "fcr_whiteboard_eliminate",
257
261
  FCR_WHITEBOARD_ERASER = "fcr_whiteboard_eraser",
262
+ FCR_WHITEBOARD_ERASER2 = "fcr_whiteboard_eraser2",
258
263
  FCR_WHITEBOARD_EXPAND2 = "fcr_whiteboard_expand2",
259
264
  FCR_WHITEBOARD_FORWARD = "fcr_whiteboard_forward",
260
265
  FCR_WHITEBOARD_LASERPEN = "fcr_whiteboard_laserpen",
266
+ FCR_WHITEBOARD_LASERPEN1 = "fcr_whiteboard_laserpen1",
261
267
  FCR_WHITEBOARD_LASERPEN2 = "fcr_whiteboard_laserpen2",
268
+ FCR_WHITEBOARD_LASERPEN3 = "fcr_whiteboard_laserpen3",
262
269
  FCR_WHITEBOARD_LOWERRIGHTARROW = "fcr_whiteboard_lowerrightarrow",
263
270
  FCR_WHITEBOARD_MOUSE = "fcr_whiteboard_mouse",
264
271
  FCR_WHITEBOARD_MOVE = "fcr_whiteboard_move",
@@ -269,6 +276,8 @@ export declare enum FcrIconType {
269
276
  FCR_WHITEBOARD_PED = "fcr_whiteboard_ped",
270
277
  FCR_WHITEBOARD_PED2 = "fcr_whiteboard_ped2",
271
278
  FCR_WHITEBOARD_PED3 = "fcr_whiteboard_ped3",
279
+ FCR_WHITEBOARD_PED4 = "fcr_whiteboard_ped4",
280
+ FCR_WHITEBOARD_PED5 = "fcr_whiteboard_ped5",
272
281
  FCR_WHITEBOARD_PED_CURVE = "fcr_whiteboard_ped_curve",
273
282
  FCR_WHITEBOARD_PED_STRAIGHTLINE = "fcr_whiteboard_ped_straightline",
274
283
  FCR_WHITEBOARD_SAVE = "fcr_whiteboard_save",
@@ -304,5 +313,6 @@ export declare enum FcrIconType {
304
313
  FCR_MOBILE_CAMERAOFF2 = "fcr_mobile_cameraoff2",
305
314
  FCR_SHARE_SOUND = "fcr_share_sound",
306
315
  FCR_JBH = "fcr_jbh",
307
- FCR_JBH_INVITE = "fcr_jbh_invite"
316
+ FCR_JBH_INVITE = "fcr_jbh_invite",
317
+ FCR_COLOR = "fcr_color"
308
318
  }
@@ -53,11 +53,13 @@ var FcrIconType = exports.FcrIconType = /*#__PURE__*/function (FcrIconType) {
53
53
  FcrIconType["FCR_DEFAULTPAGE"] = "fcr_defaultpage";
54
54
  FcrIconType["FCR_DELETE3"] = "fcr_delete3";
55
55
  FcrIconType["FCR_DELETE4"] = "fcr_delete4";
56
+ FcrIconType["FCR_DELETE5"] = "fcr_delete5";
56
57
  FcrIconType["FCR_DEVICEAUDIOOFF"] = "fcr_deviceaudiooff";
57
58
  FcrIconType["FCR_DEVICEAUDIOON"] = "fcr_deviceaudioon";
58
59
  FcrIconType["FCR_DOWN"] = "fcr_down";
59
60
  FcrIconType["FCR_DOWN1"] = "fcr_down1";
60
61
  FcrIconType["FCR_DOWNLOAD"] = "fcr_download";
62
+ FcrIconType["FCR_DOWNLOAD2"] = "fcr_download2";
61
63
  FcrIconType["FCR_DROPDOWN"] = "fcr_dropdown";
62
64
  FcrIconType["FCR_DROPDOWN2"] = "fcr_dropdown2";
63
65
  FcrIconType["FCR_DROPDOWN4"] = "fcr_dropdown4";
@@ -145,6 +147,7 @@ var FcrIconType = exports.FcrIconType = /*#__PURE__*/function (FcrIconType) {
145
147
  FcrIconType["FCR_PEN_LINE_4SIZE"] = "fcr_pen_line_4size";
146
148
  FcrIconType["FCR_PENSIZE"] = "fcr_pensize";
147
149
  FcrIconType["FCR_PENSIZE_STRAIGHT"] = "fcr_pensize_straight";
150
+ FcrIconType["FCR_PENSIZE3_STRAIGHT"] = "fcr_pensize3_straight";
148
151
  FcrIconType["FCR_PEOPLE"] = "fcr_people";
149
152
  FcrIconType["FCR_PHONECALL1"] = "fcr_phonecall1";
150
153
  FcrIconType["FCR_PHONECALL2"] = "fcr_phonecall2";
@@ -196,6 +199,7 @@ var FcrIconType = exports.FcrIconType = /*#__PURE__*/function (FcrIconType) {
196
199
  FcrIconType["FCR_SHARINGBAR_DOWN"] = "fcr_sharingbar_down";
197
200
  FcrIconType["FCR_SHARINGBAR_UP"] = "fcr_sharingbar_up";
198
201
  FcrIconType["FCR_SHOWVIDEO"] = "fcr_showvideo";
202
+ FcrIconType["FCR_SHOWVIDEO2"] = "fcr_showvideo2";
199
203
  FcrIconType["FCR_SIMULTANEOUSINTERPRETATION_OFF"] = "fcr_simultaneousinterpretation_off";
200
204
  FcrIconType["FCR_SIMULTANEOUSINTERPRETATION_ON"] = "fcr_simultaneousinterpretation_on";
201
205
  FcrIconType["FCR_SIPDEVICE"] = "fcr_sipdevice";
@@ -262,10 +266,13 @@ var FcrIconType = exports.FcrIconType = /*#__PURE__*/function (FcrIconType) {
262
266
  FcrIconType["FCR_WHITEBOARD_CLOUD"] = "fcr_whiteboard_cloud";
263
267
  FcrIconType["FCR_WHITEBOARD_ELIMINATE"] = "fcr_whiteboard_eliminate";
264
268
  FcrIconType["FCR_WHITEBOARD_ERASER"] = "fcr_whiteboard_eraser";
269
+ FcrIconType["FCR_WHITEBOARD_ERASER2"] = "fcr_whiteboard_eraser2";
265
270
  FcrIconType["FCR_WHITEBOARD_EXPAND2"] = "fcr_whiteboard_expand2";
266
271
  FcrIconType["FCR_WHITEBOARD_FORWARD"] = "fcr_whiteboard_forward";
267
272
  FcrIconType["FCR_WHITEBOARD_LASERPEN"] = "fcr_whiteboard_laserpen";
273
+ FcrIconType["FCR_WHITEBOARD_LASERPEN1"] = "fcr_whiteboard_laserpen1";
268
274
  FcrIconType["FCR_WHITEBOARD_LASERPEN2"] = "fcr_whiteboard_laserpen2";
275
+ FcrIconType["FCR_WHITEBOARD_LASERPEN3"] = "fcr_whiteboard_laserpen3";
269
276
  FcrIconType["FCR_WHITEBOARD_LOWERRIGHTARROW"] = "fcr_whiteboard_lowerrightarrow";
270
277
  FcrIconType["FCR_WHITEBOARD_MOUSE"] = "fcr_whiteboard_mouse";
271
278
  FcrIconType["FCR_WHITEBOARD_MOVE"] = "fcr_whiteboard_move";
@@ -276,6 +283,8 @@ var FcrIconType = exports.FcrIconType = /*#__PURE__*/function (FcrIconType) {
276
283
  FcrIconType["FCR_WHITEBOARD_PED"] = "fcr_whiteboard_ped";
277
284
  FcrIconType["FCR_WHITEBOARD_PED2"] = "fcr_whiteboard_ped2";
278
285
  FcrIconType["FCR_WHITEBOARD_PED3"] = "fcr_whiteboard_ped3";
286
+ FcrIconType["FCR_WHITEBOARD_PED4"] = "fcr_whiteboard_ped4";
287
+ FcrIconType["FCR_WHITEBOARD_PED5"] = "fcr_whiteboard_ped5";
279
288
  FcrIconType["FCR_WHITEBOARD_PED_CURVE"] = "fcr_whiteboard_ped_curve";
280
289
  FcrIconType["FCR_WHITEBOARD_PED_STRAIGHTLINE"] = "fcr_whiteboard_ped_straightline";
281
290
  FcrIconType["FCR_WHITEBOARD_SAVE"] = "fcr_whiteboard_save";
@@ -312,5 +321,6 @@ var FcrIconType = exports.FcrIconType = /*#__PURE__*/function (FcrIconType) {
312
321
  FcrIconType["FCR_SHARE_SOUND"] = "fcr_share_sound";
313
322
  FcrIconType["FCR_JBH"] = "fcr_jbh";
314
323
  FcrIconType["FCR_JBH_INVITE"] = "fcr_jbh_invite";
324
+ FcrIconType["FCR_COLOR"] = "fcr_color";
315
325
  return FcrIconType;
316
326
  }({});
@@ -1,3 +1,3 @@
1
1
  <svg width="68" height="38" viewBox="0 0 68 38" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path id="fcr_grid_big" fill-rule="evenodd" clip-rule="evenodd" d="M2.72 0C1.21779 0 0 1.21523 0 2.71429V9.21213C0 9.84809 0.516635 10.3636 1.15394 10.3636H14.2797C14.917 10.3636 15.4336 9.84809 15.4336 9.21213V1.15152C15.4336 0.515551 14.917 0 14.2797 0H2.72ZM18.7373 0C18.1 0 17.5833 0.51555 17.5833 1.15152V9.21213C17.5833 9.84809 18.1 10.3636 18.7373 10.3636H31.863C32.5003 10.3636 33.0169 9.84809 33.0169 9.21213V1.15152C33.0169 0.515551 32.5003 0 31.863 0H18.7373ZM52.5664 1.15152C52.5664 0.51555 53.083 0 53.7203 0H65.28C66.7822 0 68 1.21523 68 2.71429V9.21213C68 9.84809 67.4834 10.3636 66.8461 10.3636H53.7203C53.083 10.3636 52.5664 9.84809 52.5664 9.21213V1.15152ZM36.2291 0C35.5918 0 35.0752 0.51555 35.0752 1.15152V9.21213C35.0752 9.84809 35.5918 10.3636 36.2291 10.3636H49.3549C49.9922 10.3636 50.5088 9.84809 50.5088 9.21213V1.15152C50.5088 0.515551 49.9922 0 49.3549 0H36.2291ZM17.5833 27.6364C17.5833 27.0004 18.1 26.4848 18.7373 26.4848H31.863C32.5003 26.4848 33.0169 27.0004 33.0169 27.6364V36.8485C33.0169 37.4845 32.5003 38 31.863 38H18.7373C18.1 38 17.5833 37.4845 17.5833 36.8485V27.6364ZM1.15394 26.4848C0.516636 26.4848 0 27.0004 0 27.6364V35.2857C0 36.7848 1.21778 38 2.72 38H14.2797C14.917 38 15.4336 37.4845 15.4336 36.8485V27.6364C15.4336 27.0004 14.917 26.4848 14.2797 26.4848H1.15394ZM52.5664 27.6364C52.5664 27.0004 53.083 26.4848 53.7203 26.4848H66.8461C67.4834 26.4848 68 27.0004 68 27.6364V35.2857C68 36.7848 66.7822 38 65.28 38H53.7203C53.083 38 52.5664 37.4845 52.5664 36.8485V27.6364ZM36.2291 26.4848C35.5918 26.4848 35.0752 27.0004 35.0752 27.6364V36.8485C35.0752 37.4845 35.5918 38 36.2291 38H49.3549C49.9922 38 50.5088 37.4845 50.5088 36.8485V27.6364C50.5088 27.0004 49.9922 26.4848 49.3549 26.4848H36.2291ZM17.5833 13.8184C17.5833 13.1824 18.1 12.6669 18.7373 12.6669H31.863C32.5003 12.6669 33.0169 13.1824 33.0169 13.8184V23.0305C33.0169 23.6665 32.5003 24.1821 31.863 24.1821H18.7373C18.1 24.1821 17.5833 23.6665 17.5833 23.0305V13.8184ZM1.15394 12.6669C0.516636 12.6669 0 13.1824 0 13.8184V23.0305C0 23.6665 0.516635 24.1821 1.15394 24.1821H14.2797C14.917 24.1821 15.4336 23.6665 15.4336 23.0305V13.8184C15.4336 13.1824 14.917 12.6669 14.2797 12.6669H1.15394ZM52.5664 13.8184C52.5664 13.1824 53.083 12.6669 53.7203 12.6669H66.8461C67.4834 12.6669 68 13.1824 68 13.8184V23.0305C68 23.6665 67.4834 24.1821 66.8461 24.1821H53.7203C53.083 24.1821 52.5664 23.6665 52.5664 23.0305V13.8184ZM36.2291 12.6669C35.5918 12.6669 35.0752 13.1824 35.0752 13.8184V23.0305C35.0752 23.6665 35.5918 24.1821 36.2291 24.1821H49.3549C49.9922 24.1821 50.5088 23.6665 50.5088 23.0305V13.8184C50.5088 13.1824 49.9922 12.6669 49.3549 12.6669H36.2291Z" fill="#E5EAF3" fillOpacity="0.9"/>
2
+ <path id="fcr_grid_big" fillRule="evenodd" clipRule="evenodd" d="M2.72 0C1.21779 0 0 1.21523 0 2.71429V9.21213C0 9.84809 0.516635 10.3636 1.15394 10.3636H14.2797C14.917 10.3636 15.4336 9.84809 15.4336 9.21213V1.15152C15.4336 0.515551 14.917 0 14.2797 0H2.72ZM18.7373 0C18.1 0 17.5833 0.51555 17.5833 1.15152V9.21213C17.5833 9.84809 18.1 10.3636 18.7373 10.3636H31.863C32.5003 10.3636 33.0169 9.84809 33.0169 9.21213V1.15152C33.0169 0.515551 32.5003 0 31.863 0H18.7373ZM52.5664 1.15152C52.5664 0.51555 53.083 0 53.7203 0H65.28C66.7822 0 68 1.21523 68 2.71429V9.21213C68 9.84809 67.4834 10.3636 66.8461 10.3636H53.7203C53.083 10.3636 52.5664 9.84809 52.5664 9.21213V1.15152ZM36.2291 0C35.5918 0 35.0752 0.51555 35.0752 1.15152V9.21213C35.0752 9.84809 35.5918 10.3636 36.2291 10.3636H49.3549C49.9922 10.3636 50.5088 9.84809 50.5088 9.21213V1.15152C50.5088 0.515551 49.9922 0 49.3549 0H36.2291ZM17.5833 27.6364C17.5833 27.0004 18.1 26.4848 18.7373 26.4848H31.863C32.5003 26.4848 33.0169 27.0004 33.0169 27.6364V36.8485C33.0169 37.4845 32.5003 38 31.863 38H18.7373C18.1 38 17.5833 37.4845 17.5833 36.8485V27.6364ZM1.15394 26.4848C0.516636 26.4848 0 27.0004 0 27.6364V35.2857C0 36.7848 1.21778 38 2.72 38H14.2797C14.917 38 15.4336 37.4845 15.4336 36.8485V27.6364C15.4336 27.0004 14.917 26.4848 14.2797 26.4848H1.15394ZM52.5664 27.6364C52.5664 27.0004 53.083 26.4848 53.7203 26.4848H66.8461C67.4834 26.4848 68 27.0004 68 27.6364V35.2857C68 36.7848 66.7822 38 65.28 38H53.7203C53.083 38 52.5664 37.4845 52.5664 36.8485V27.6364ZM36.2291 26.4848C35.5918 26.4848 35.0752 27.0004 35.0752 27.6364V36.8485C35.0752 37.4845 35.5918 38 36.2291 38H49.3549C49.9922 38 50.5088 37.4845 50.5088 36.8485V27.6364C50.5088 27.0004 49.9922 26.4848 49.3549 26.4848H36.2291ZM17.5833 13.8184C17.5833 13.1824 18.1 12.6669 18.7373 12.6669H31.863C32.5003 12.6669 33.0169 13.1824 33.0169 13.8184V23.0305C33.0169 23.6665 32.5003 24.1821 31.863 24.1821H18.7373C18.1 24.1821 17.5833 23.6665 17.5833 23.0305V13.8184ZM1.15394 12.6669C0.516636 12.6669 0 13.1824 0 13.8184V23.0305C0 23.6665 0.516635 24.1821 1.15394 24.1821H14.2797C14.917 24.1821 15.4336 23.6665 15.4336 23.0305V13.8184C15.4336 13.1824 14.917 12.6669 14.2797 12.6669H1.15394ZM52.5664 13.8184C52.5664 13.1824 53.083 12.6669 53.7203 12.6669H66.8461C67.4834 12.6669 68 13.1824 68 13.8184V23.0305C68 23.6665 67.4834 24.1821 66.8461 24.1821H53.7203C53.083 24.1821 52.5664 23.6665 52.5664 23.0305V13.8184ZM36.2291 12.6669C35.5918 12.6669 35.0752 13.1824 35.0752 13.8184V23.0305C35.0752 23.6665 35.5918 24.1821 36.2291 24.1821H49.3549C49.9922 24.1821 50.5088 23.6665 50.5088 23.0305V13.8184C50.5088 13.1824 49.9922 12.6669 49.3549 12.6669H36.2291Z" fill="#E5EAF3" fillOpacity="0.9"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg width="68" height="38" viewBox="0 0 68 38" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path id="fcr_listontop_big" fill-rule="evenodd" clip-rule="evenodd" d="M4.08 0C1.82668 0 0 1.82284 0 4.07143V6.84848C0 7.48445 0.516634 8 1.15394 8H11.3724C12.0097 8 12.5263 7.48445 12.5263 6.84848V1.15152C12.5263 0.515551 12.0097 0 11.3724 0H4.08ZM2.72 10C1.21779 10 0 11.2152 0 12.7143V33.9286C0 36.1772 1.82668 38 4.08 38H63.92C66.1733 38 68 36.1772 68 33.9286V12.7143C68 11.2152 66.7822 10 65.28 10H2.72ZM28.0352 1.15152C28.0352 0.515553 28.5518 0 29.1891 0H39.4076C40.0449 0 40.5615 0.515551 40.5615 1.15152V6.84848C40.5615 7.48445 40.0449 8 39.4076 8H29.1891C28.5518 8 28.0352 7.48445 28.0352 6.84848V1.15152ZM57.224 0C56.5867 0 56.07 0.515553 56.07 1.15152V6.84848C56.07 7.48445 56.5867 8 57.224 8H66.8459C67.4832 8 67.9998 7.48445 67.9998 6.84848V4.07143C67.9998 1.82284 66.1732 0 63.9198 0H57.224ZM14.3159 1.15152C14.3159 0.515553 14.8325 0 15.4699 0H25.0918C25.7291 0 26.2457 0.515551 26.2457 1.15152V6.84848C26.2457 7.48445 25.7291 8 25.0918 8H15.4699C14.8325 8 14.3159 7.48445 14.3159 6.84848V1.15152ZM43.5047 0C42.8674 0 42.3508 0.515553 42.3508 1.15152V6.84848C42.3508 7.48445 42.8674 8 43.5047 8H53.1266C53.7639 8 54.2806 7.48445 54.2806 6.84848V1.15152C54.2806 0.515551 53.7639 0 53.1266 0H43.5047Z" fill="#E5EAF3" fillOpacity="0.9"/>
2
+ <path id="fcr_listontop_big" fillRule="evenodd" clipRule="evenodd" d="M4.08 0C1.82668 0 0 1.82284 0 4.07143V6.84848C0 7.48445 0.516634 8 1.15394 8H11.3724C12.0097 8 12.5263 7.48445 12.5263 6.84848V1.15152C12.5263 0.515551 12.0097 0 11.3724 0H4.08ZM2.72 10C1.21779 10 0 11.2152 0 12.7143V33.9286C0 36.1772 1.82668 38 4.08 38H63.92C66.1733 38 68 36.1772 68 33.9286V12.7143C68 11.2152 66.7822 10 65.28 10H2.72ZM28.0352 1.15152C28.0352 0.515553 28.5518 0 29.1891 0H39.4076C40.0449 0 40.5615 0.515551 40.5615 1.15152V6.84848C40.5615 7.48445 40.0449 8 39.4076 8H29.1891C28.5518 8 28.0352 7.48445 28.0352 6.84848V1.15152ZM57.224 0C56.5867 0 56.07 0.515553 56.07 1.15152V6.84848C56.07 7.48445 56.5867 8 57.224 8H66.8459C67.4832 8 67.9998 7.48445 67.9998 6.84848V4.07143C67.9998 1.82284 66.1732 0 63.9198 0H57.224ZM14.3159 1.15152C14.3159 0.515553 14.8325 0 15.4699 0H25.0918C25.7291 0 26.2457 0.515551 26.2457 1.15152V6.84848C26.2457 7.48445 25.7291 8 25.0918 8H15.4699C14.8325 8 14.3159 7.48445 14.3159 6.84848V1.15152ZM43.5047 0C42.8674 0 42.3508 0.515553 42.3508 1.15152V6.84848C42.3508 7.48445 42.8674 8 43.5047 8H53.1266C53.7639 8 54.2806 7.48445 54.2806 6.84848V1.15152C54.2806 0.515551 53.7639 0 53.1266 0H43.5047Z" fill="#E5EAF3" fillOpacity="0.9"/>
3
3
  </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="2" height="24" viewBox="0 0 2 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path id="Vector 405" d="M1 22.9023L0.999999 0.171766" stroke="url(#paint0_linear_22246_74534)" stroke-width="0.349701" strokeLinecap ="round"/>
2
+ <path id="Vector 405" d="M1 22.9023L0.999999 0.171766" stroke="url(#paint0_linear_22246_74534)" strokeWidth="0.349701" strokeLinecap ="round"/>
3
3
  <defs>
4
4
  <linearGradient id="paint0_linear_22246_74534" x1="1" y1="22.9023" x2="0.999999" y2="0.171766" gradientUnits="userSpaceOnUse">
5
5
  <stop stop-color="white" stop-opacity="0"/>
@@ -1,5 +1,6 @@
1
1
  import { CSSMotionProps } from 'rc-motion';
2
2
  import { CSSProperties, FC, ReactNode } from 'react';
3
+ import type { AlignType } from 'rc-trigger/lib/interface';
3
4
  import './index.css';
4
5
  import './arrow.css';
5
6
  import React from 'react';
@@ -41,6 +42,12 @@ export interface ToolTipProps {
41
42
  * large
42
43
  */
43
44
  arrowContent?: ReactNode;
45
+ /**
46
+ * @cn 是否将箭头与目标元素对齐
47
+ * @en Whether to align the arrow with the target element
48
+ * @default false
49
+ */
50
+ isArrowAndTargetCenter?: boolean;
44
51
  /**
45
52
  * 卡片内容区域的样式对象
46
53
  */
@@ -78,6 +85,7 @@ export interface ToolTipProps {
78
85
  */
79
86
  showArrow?: boolean;
80
87
  onVisibleChange?: (visible: boolean) => void;
88
+ onPopupAlign?: ((element: HTMLElement, align: AlignType) => void) | undefined;
81
89
  motion?: CSSMotionProps;
82
90
  getTooltipContainer?: (node: HTMLElement) => HTMLElement;
83
91
  children?: React.ReactNode;
@@ -3,6 +3,7 @@
3
3
  require("core-js/modules/es.symbol.js");
4
4
  require("core-js/modules/es.array.filter.js");
5
5
  require("core-js/modules/es.array.for-each.js");
6
+ require("core-js/modules/es.array.iterator.js");
6
7
  require("core-js/modules/es.array.push.js");
7
8
  require("core-js/modules/es.object.define-properties.js");
8
9
  require("core-js/modules/es.object.define-property.js");
@@ -10,30 +11,40 @@ require("core-js/modules/es.object.get-own-property-descriptor.js");
10
11
  require("core-js/modules/es.object.get-own-property-descriptors.js");
11
12
  require("core-js/modules/es.object.keys.js");
12
13
  require("core-js/modules/es.object.to-string.js");
14
+ require("core-js/modules/es.string.iterator.js");
15
+ require("core-js/modules/es.weak-map.js");
13
16
  require("core-js/modules/esnext.async-iterator.filter.js");
14
17
  require("core-js/modules/esnext.async-iterator.for-each.js");
15
18
  require("core-js/modules/esnext.iterator.constructor.js");
16
19
  require("core-js/modules/esnext.iterator.filter.js");
17
20
  require("core-js/modules/esnext.iterator.for-each.js");
21
+ require("core-js/modules/esnext.weak-map.delete-all.js");
22
+ require("core-js/modules/esnext.weak-map.emplace.js");
18
23
  require("core-js/modules/web.dom-collections.for-each.js");
24
+ require("core-js/modules/web.dom-collections.iterator.js");
19
25
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
26
+ var _typeof = require("@babel/runtime/helpers/typeof");
20
27
  Object.defineProperty(exports, "__esModule", {
21
28
  value: true
22
29
  });
23
30
  exports.FcrToolTip = void 0;
24
31
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
32
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
25
33
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
34
+ require("core-js/modules/es.array.concat.js");
26
35
  require("core-js/modules/es.array.includes.js");
27
36
  require("core-js/modules/es.string.includes.js");
28
37
  var _rcTooltip = _interopRequireDefault(require("rc-tooltip"));
38
+ var _react = _interopRequireWildcard(require("react"));
29
39
  require("./index.css");
30
40
  require("./arrow.css");
31
41
  var _icon = require("../icon");
32
42
  var _type = require("../icon/type");
33
- var _react = _interopRequireDefault(require("react"));
34
43
  var _classnames = _interopRequireDefault(require("classnames"));
35
44
  var _jsxRuntime = require("react/jsx-runtime");
36
- var _excluded = ["content", "children", "trigger", "placement", "arrowContent", "overlayInnerStyle", "overlayClassName", "showArrow", "onVisibleChange", "motion", "getTooltipContainer", "mouseEnterDelay", "mouseLeaveDelay", "overlayOffset", "verticalOffset", "afterVisibleChange", "disable"];
45
+ var _excluded = ["content", "children", "trigger", "placement", "arrowContent", "overlayInnerStyle", "overlayClassName", "showArrow", "onVisibleChange", "onPopupAlign", "motion", "getTooltipContainer", "mouseEnterDelay", "mouseLeaveDelay", "overlayOffset", "verticalOffset", "afterVisibleChange", "disable", "isArrowAndTargetCenter"];
46
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
47
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
37
48
  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; }
38
49
  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) { (0, _defineProperty2["default"])(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; }
39
50
  var calcOverlayOffset = function calcOverlayOffset(placement, offset, verticalOffset) {
@@ -52,6 +63,7 @@ var calcOverlayOffset = function calcOverlayOffset(placement, offset, verticalOf
52
63
  }
53
64
  };
54
65
  var FcrToolTip = exports.FcrToolTip = function FcrToolTip(props) {
66
+ var targetRef = (0, _react.useRef)(null);
55
67
  var content = props.content,
56
68
  children = props.children,
57
69
  trigger = props.trigger,
@@ -63,8 +75,9 @@ var FcrToolTip = exports.FcrToolTip = function FcrToolTip(props) {
63
75
  _props$showArrow = props.showArrow,
64
76
  showArrow = _props$showArrow === void 0 ? true : _props$showArrow,
65
77
  onVisibleChange = props.onVisibleChange,
78
+ _onPopupAlign = props.onPopupAlign,
66
79
  motion = props.motion,
67
- getTooltipContainer = props.getTooltipContainer,
80
+ _getTooltipContainer = props.getTooltipContainer,
68
81
  mouseEnterDelay = props.mouseEnterDelay,
69
82
  mouseLeaveDelay = props.mouseLeaveDelay,
70
83
  _props$overlayOffset = props.overlayOffset,
@@ -72,6 +85,8 @@ var FcrToolTip = exports.FcrToolTip = function FcrToolTip(props) {
72
85
  verticalOffset = props.verticalOffset,
73
86
  afterVisibleChange = props.afterVisibleChange,
74
87
  disable = props.disable,
88
+ _props$isArrowAndTarg = props.isArrowAndTargetCenter,
89
+ isArrowAndTargetCenter = _props$isArrowAndTarg === void 0 ? false : _props$isArrowAndTarg,
75
90
  others = (0, _objectWithoutProperties2["default"])(props, _excluded);
76
91
  var defaultOverlayInnerStyle = {
77
92
  padding: '7px 10px',
@@ -86,12 +101,54 @@ var FcrToolTip = exports.FcrToolTip = function FcrToolTip(props) {
86
101
  boxShadow: '0px 4px 4px 0px rgba(0, 0, 0, 0.25)',
87
102
  textAlign: 'center'
88
103
  };
104
+ var handleArrowAndTargetCenter = function handleArrowAndTargetCenter(tooltip) {
105
+ if (!isArrowAndTargetCenter) {
106
+ return;
107
+ }
108
+ if (targetRef.current) {
109
+ var targetRect = targetRef.current.getBoundingClientRect();
110
+ var tooltipRect = tooltip.getBoundingClientRect();
111
+
112
+ /**
113
+ * @cn 获取元素偏移的轴向,默认返回 ['left', 'width', 'X'],第一个元素表示偏移轴向,第二个元素表示元素的宽度或高度,第三个元素表示偏移的坐标轴。
114
+ */
115
+ var getCenterAxis = function getCenterAxis(placement) {
116
+ if (placement.includes('top') || placement.includes('bottom')) {
117
+ return ['left', 'width', 'X'];
118
+ }
119
+ if (placement.includes('left') || placement.includes('right')) {
120
+ return ['top', 'height', 'Y'];
121
+ }
122
+ return ['left', 'width', 'X'];
123
+ };
124
+ var _getCenterAxis = getCenterAxis(placement),
125
+ _getCenterAxis2 = (0, _slicedToArray2["default"])(_getCenterAxis, 3),
126
+ leftOrRight = _getCenterAxis2[0],
127
+ widthOrHeight = _getCenterAxis2[1],
128
+ xOrY = _getCenterAxis2[2];
129
+ var targetRectCenter = targetRect[leftOrRight] + targetRect[widthOrHeight] / 2;
130
+ var tooltipRectCenter = tooltipRect[leftOrRight] + tooltipRect[widthOrHeight] / 2;
131
+ var offset = targetRectCenter - tooltipRectCenter;
132
+
133
+ // 使用类名后缀选择箭头 Dom
134
+ var arrowEl = tooltip.querySelector('[class$="-arrow"]');
135
+ arrowEl.style[leftOrRight] = '50%';
136
+ arrowEl.style.transform = "translate".concat(xOrY, "(").concat(offset, "px)");
137
+ }
138
+ };
89
139
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_rcTooltip["default"], _objectSpread(_objectSpread({
90
140
  destroyTooltipOnHide: true,
91
141
  afterVisibleChange: afterVisibleChange,
92
142
  mouseLeaveDelay: mouseLeaveDelay,
93
143
  mouseEnterDelay: mouseEnterDelay !== null && mouseEnterDelay !== void 0 ? mouseEnterDelay : 1,
94
- getTooltipContainer: getTooltipContainer,
144
+ getTooltipContainer: function getTooltipContainer(target) {
145
+ targetRef.current = target;
146
+ if (_getTooltipContainer) {
147
+ return _getTooltipContainer(target);
148
+ }
149
+ var doc = target.ownerDocument || document;
150
+ return doc.body;
151
+ },
95
152
  onVisibleChange: onVisibleChange,
96
153
  prefixCls: "fcr-tooltip",
97
154
  overlayClassName: (0, _classnames["default"])(overlayClassName, {
@@ -114,6 +171,12 @@ var FcrToolTip = exports.FcrToolTip = function FcrToolTip(props) {
114
171
  motion: motion || {
115
172
  motionAppear: true,
116
173
  motionName: 'fcr-tooltip-anim'
174
+ },
175
+ onPopupAlign: function onPopupAlign(tooltipEl, align) {
176
+ handleArrowAndTargetCenter(tooltipEl);
177
+ if (_onPopupAlign) {
178
+ _onPopupAlign(tooltipEl, align);
179
+ }
117
180
  }
118
181
  }, others), {}, {
119
182
  children: children || /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {})
@@ -18,6 +18,7 @@ interface FrcTooltipButtonPopoverProps extends FrcTooltipButtonToolTipProps {
18
18
  visible?: boolean;
19
19
  }
20
20
  export interface FrcTooltipButtonProps {
21
+ active?: boolean;
21
22
  classNames?: {
22
23
  container?: string;
23
24
  button?: string;
@@ -15,6 +15,7 @@ Object.defineProperty(exports, "__esModule", {
15
15
  value: true
16
16
  });
17
17
  exports.FrcTooltipButton = void 0;
18
+ require("core-js/modules/es.array.concat.js");
18
19
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
19
20
  var _react = _interopRequireWildcard(require("react"));
20
21
  var _icon = require("../icon");
@@ -26,7 +27,8 @@ var _jsxRuntime = require("react/jsx-runtime");
26
27
  function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
27
28
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
28
29
  var FrcTooltipButton = exports.FrcTooltipButton = function FrcTooltipButton(props) {
29
- var withPopover = props.withPopover,
30
+ var active = props.active,
31
+ withPopover = props.withPopover,
30
32
  classNames = props.classNames,
31
33
  _props$tooltip = props.tooltip,
32
34
  tooltipIcon = _props$tooltip.icon,
@@ -53,6 +55,7 @@ var FrcTooltipButton = exports.FrcTooltipButton = function FrcTooltipButton(prop
53
55
  setVisible = _React$useState2[1];
54
56
  var handlerVisibleChange = function handlerVisibleChange(visible) {
55
57
  setVisible(visible);
58
+ onVisibleChange === null || onVisibleChange === void 0 || onVisibleChange(visible);
56
59
  };
57
60
  (0, _react.useEffect)(function () {
58
61
  function handleBlur(event) {
@@ -64,7 +67,7 @@ var FrcTooltipButton = exports.FrcTooltipButton = function FrcTooltipButton(prop
64
67
  };
65
68
  }, []);
66
69
  return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
67
- className: "frc-tooltip-button ".concat(classNames === null || classNames === void 0 ? void 0 : classNames.container),
70
+ className: "frc-tooltip-button ".concat(classNames === null || classNames === void 0 ? void 0 : classNames.container, " ").concat(active ? 'frc-tooltip-button--active' : ''),
68
71
  children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_tooltip.FcrToolTip, {
69
72
  content: tooltipContent,
70
73
  trigger: tooltipTrigger,
@@ -99,7 +102,7 @@ var FrcTooltipButton = exports.FrcTooltipButton = function FrcTooltipButton(prop
99
102
  },
100
103
  content: popoverContent,
101
104
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
102
- className: "popover-button",
105
+ className: "popover-button ".concat(active ? 'popover-button--active' : ''),
103
106
  children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
104
107
  type: _type.FcrIconType.FCR_DROPUP4,
105
108
  size: 24,
@@ -10,11 +10,11 @@
10
10
  -webkit-app-region: no-drag;
11
11
  }
12
12
 
13
- .frc-tooltip-button:hover {
13
+ .frc-tooltip-button:hover,
14
+ .frc-tooltip-button--active {
14
15
  background-color: var(--fcr_ui_scene_line1);
15
16
  }
16
17
 
17
-
18
18
  .tooltip-button,
19
19
  .popover-button {
20
20
  width: 100%;
@@ -26,12 +26,12 @@
26
26
  justify-content: center;
27
27
  }
28
28
  .tooltip-button:hover,
29
- .popover-button:hover {
29
+ .popover-button:hover,
30
+ .tooltip-button--active,
31
+ .popover-button--active {
30
32
  background-color: var(--fcr_web_ui_scene_hover2);
31
-
32
33
  }
33
34
 
34
-
35
35
  .frc-tooltip-button__popover {
36
36
  color: var(--fcr_ui_scene_icontext1);
37
37
  border: 0.5px solid var(--fcr_ui_scene_line1);
@@ -40,7 +40,7 @@
40
40
  background-color: var(--fcr_mobile_ui_scene_color_popup_fill2);
41
41
  overflow: hidden;
42
42
  }
43
- .frc-tooltip-button__popover .fcr-tooltip-inner{
43
+ .frc-tooltip-button__popover .fcr-tooltip-inner {
44
44
  border: 0;
45
45
  box-shadow: var(--fcr_web_light_dropup_m);
46
46
  border-radius: var(--fcr_cornerradius_l);
@@ -51,8 +51,7 @@
51
51
  .tooltip-single-button {
52
52
  width: 46px;
53
53
  }
54
- .fcr-screen-share-button{
54
+ .fcr-screen-share-button {
55
55
  display: flex;
56
56
  align-items: center;
57
57
  }
58
-
@@ -78,6 +78,7 @@ var FcrWindowHeader = exports.FcrWindowHeader = function FcrWindowHeader(props)
78
78
  }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
79
79
  className: "frc-window-header__operates",
80
80
  children: [otherActions, withWindowPopUpButton && /*#__PURE__*/(0, _jsxRuntime.jsx)(_tooltip.FcrToolTip, {
81
+ isArrowAndTargetCenter: true,
81
82
  content: type === WindowType.MODAL ? t('fmt_uimanager_option_popwindow') : t('fmt_uimanager_option_mergeview'),
82
83
  mouseEnterDelay: 0,
83
84
  trigger: "hover",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-ui-foundation",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "lib",
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "@react-spring/web": "^9.7.3",
14
14
  "@use-gesture/react": "^10.3.1",
15
- "agora-foundation": "~3.6.1",
15
+ "agora-foundation": "^3.6.2",
16
16
  "classnames": "^2.5.1",
17
17
  "i18next": "^23.10.1",
18
18
  "normalize.css": "^8.0.1",
@@ -51,7 +51,7 @@
51
51
  "@types/react-virtualized": "^9.21.30",
52
52
  "@types/tinycolor2": "^1.4.6",
53
53
  "@types/webpack-env": "^1.18.4",
54
- "agora-toolchain": "~3.6.1",
54
+ "agora-toolchain": "^3.6.2",
55
55
  "core-js": "^3.33.3",
56
56
  "eslint": "^9.0.0",
57
57
  "node-html-parser": "^6.1.13",