agora-ui-foundation 3.2.0 → 3.3.0
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/lib/components/action-bar/device/index.css +1 -1
- package/lib/components/button/index.css +0 -3
- package/lib/components/button/index.js +1 -1
- package/lib/components/card/index.css +1 -1
- package/lib/components/chat-manager/index.css +13 -5
- package/lib/components/chat-manager/index.js +25 -2
- package/lib/components/checkbox/index.css +2 -2
- package/lib/components/confirm-content/index.css +37 -14
- package/lib/components/confirm-content/index.js +11 -8
- package/lib/components/device-pretest/index.js +1 -1
- package/lib/components/dialog/index.css +1 -1
- package/lib/components/dialog/index.d.ts +1 -0
- package/lib/components/drop-menu/index.css +24 -13
- package/lib/components/drop-menu/index.d.ts +1 -0
- package/lib/components/drop-menu/index.js +6 -5
- package/lib/components/icon/paths/fcr_cameraoff.d.ts +2 -2
- package/lib/components/icon/paths/fcr_cameraoff.js +8 -6
- package/lib/components/icon/paths/fcr_exclamationmask.js +1 -1
- package/lib/components/icon/paths/fcr_put_waiting_room.d.ts +3 -0
- package/lib/components/icon/paths/fcr_put_waiting_room.js +22 -0
- package/lib/components/icon/paths/fcr_waiting_room.d.ts +3 -0
- package/lib/components/icon/paths/fcr_waiting_room.js +22 -0
- package/lib/components/icon/paths/fcr_web_fullscream.js +1 -1
- package/lib/components/icon/paths/fcr_windowpage_lonely.d.ts +1 -1
- package/lib/components/icon/paths/fcr_windowpage_lonely.js +8 -20
- package/lib/components/icon/svg-dict.d.ts +1 -1
- package/lib/components/icon/svg-exports.d.ts +2 -0
- package/lib/components/icon/svg-exports.js +6 -2
- package/lib/components/icon/type.d.ts +2 -0
- package/lib/components/icon/type.js +2 -0
- package/lib/components/icon-text/index.css +4 -0
- package/lib/components/icon-text/index.d.ts +1 -0
- package/lib/components/icon-text/index.js +7 -4
- package/lib/components/input/index.css +13 -6
- package/lib/components/live-streaming/container.css +12 -0
- package/lib/components/live-streaming/container.js +3 -2
- package/lib/components/local-video-player/index.css +7 -2
- package/lib/components/notification/index.d.ts +9 -0
- package/lib/components/notification/index.js +40 -0
- package/lib/components/participants/attendee/index.css +13 -1
- package/lib/components/participants/attendee/index.d.ts +50 -1
- package/lib/components/participants/attendee/index.js +52 -7
- package/lib/components/participants/index.css +4 -1
- package/lib/components/participants/index.d.ts +3 -2
- package/lib/components/participants/index.js +8 -2
- package/lib/components/participants/index.stories.d.ts +1 -4
- package/lib/components/participants/index.stories.js +1 -39
- package/lib/components/participants/participants-more/index.d.ts +3 -2
- package/lib/components/participants/participants-more/index.js +106 -86
- package/lib/components/radio/index.css +2 -2
- package/lib/components/room-screen-share-state-bar/camera-state/index.js +2 -1
- package/lib/components/room-screen-share-state-bar/device/index.css +16 -1
- package/lib/components/room-screen-share-state-bar/device/index.js +2 -1
- package/lib/components/room-screen-share-state-bar/more/index.js +1 -1
- package/lib/components/room-screen-share-state-bar/share-action-nav/index.css +2 -1
- package/lib/components/room-screen-share-state-bar/share-audio/index.css +28 -4
- package/lib/components/room-screen-share-state-bar/share-audio/index.js +3 -3
- package/lib/components/state-bar/index.css +2 -2
- package/lib/components/tabs/index.css +1 -1
- package/lib/components/tabs/index.d.ts +1 -1
- package/lib/components/tooltips-button/tooltip-button.css +2 -2
- package/lib/components/watermark/index.css +3 -0
- package/lib/components/watermark/index.d.ts +47 -0
- package/lib/components/watermark/index.js +195 -0
- package/lib/components/window-header/index.js +9 -14
- package/lib/theme/fcr-ui-config.d.ts +74 -6
- package/lib/theme/fcr-ui-config.js +79 -11
- package/package.json +4 -3
- package/patches/rc-notification+5.6.2.patch +13 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './index.css';
|
|
3
|
+
export type WaterMarkProps = {
|
|
4
|
+
/** 类名 */
|
|
5
|
+
className?: string;
|
|
6
|
+
/** 样式 */
|
|
7
|
+
style?: React.CSSProperties;
|
|
8
|
+
/** 水印样式 */
|
|
9
|
+
markStyle?: React.CSSProperties;
|
|
10
|
+
/** 水印类名 */
|
|
11
|
+
markClassName?: string;
|
|
12
|
+
/** 水印之间的水平间距 */
|
|
13
|
+
gapX?: number;
|
|
14
|
+
/** 水印之间的垂直间距 */
|
|
15
|
+
gapY?: number;
|
|
16
|
+
/** 追加的水印元素的z-index */
|
|
17
|
+
zIndex?: number;
|
|
18
|
+
/** 水印的宽度 */
|
|
19
|
+
width?: number;
|
|
20
|
+
/** 水印的高度 */
|
|
21
|
+
height?: number;
|
|
22
|
+
/** 水印在canvas 画布上绘制的垂直偏移量,正常情况下,水印绘制在中间位置, 即 offsetTop = gapY / 2 */
|
|
23
|
+
offsetTop?: number;
|
|
24
|
+
/** 水印在canvas 画布上绘制的水平偏移量, 正常情况下,水印绘制在中间位置, 即 offsetTop = gapX / 2 */
|
|
25
|
+
offsetLeft?: number;
|
|
26
|
+
/** 水印绘制时,旋转的角度,单位 ° */
|
|
27
|
+
rotate?: number;
|
|
28
|
+
/** ClassName 前缀 */
|
|
29
|
+
prefixCls?: string;
|
|
30
|
+
/** 高清印图片源, 为了高清屏幕显示,建议使用 2倍或3倍图,优先使用图片渲染水印。 */
|
|
31
|
+
image?: string;
|
|
32
|
+
/** 水印文字内容 */
|
|
33
|
+
content?: string | string[];
|
|
34
|
+
/** 文字颜色 */
|
|
35
|
+
fontColor?: string;
|
|
36
|
+
/** 文字样式 */
|
|
37
|
+
fontStyle?: 'none' | 'normal' | 'italic' | 'oblique';
|
|
38
|
+
/** 文字族 */
|
|
39
|
+
fontFamily?: string;
|
|
40
|
+
/** 文字粗细 */
|
|
41
|
+
fontWeight?: 'normal' | 'light' | 'weight' | number;
|
|
42
|
+
/** 文字大小 */
|
|
43
|
+
fontSize?: number | string;
|
|
44
|
+
children?: React.ReactNode;
|
|
45
|
+
multiLine?: boolean;
|
|
46
|
+
};
|
|
47
|
+
export declare const WaterMark: React.FC<WaterMarkProps>;
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.symbol.js");
|
|
4
|
+
require("core-js/modules/es.array.filter.js");
|
|
5
|
+
require("core-js/modules/es.array.iterator.js");
|
|
6
|
+
require("core-js/modules/es.array.push.js");
|
|
7
|
+
require("core-js/modules/es.object.define-properties.js");
|
|
8
|
+
require("core-js/modules/es.object.define-property.js");
|
|
9
|
+
require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
10
|
+
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
11
|
+
require("core-js/modules/es.object.keys.js");
|
|
12
|
+
require("core-js/modules/es.string.iterator.js");
|
|
13
|
+
require("core-js/modules/es.weak-map.js");
|
|
14
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
15
|
+
require("core-js/modules/esnext.iterator.filter.js");
|
|
16
|
+
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
17
|
+
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
18
|
+
require("core-js/modules/web.dom-collections.iterator.js");
|
|
19
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
20
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
21
|
+
Object.defineProperty(exports, "__esModule", {
|
|
22
|
+
value: true
|
|
23
|
+
});
|
|
24
|
+
exports.WaterMark = void 0;
|
|
25
|
+
require("core-js/modules/es.array.concat.js");
|
|
26
|
+
require("core-js/modules/es.array.for-each.js");
|
|
27
|
+
require("core-js/modules/es.array.is-array.js");
|
|
28
|
+
require("core-js/modules/es.number.constructor.js");
|
|
29
|
+
require("core-js/modules/es.object.to-string.js");
|
|
30
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
31
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
32
|
+
require("core-js/modules/esnext.iterator.for-each.js");
|
|
33
|
+
require("core-js/modules/web.dom-collections.for-each.js");
|
|
34
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
35
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
36
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
37
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
38
|
+
require("./index.css");
|
|
39
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
40
|
+
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); }
|
|
41
|
+
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; }
|
|
42
|
+
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; }
|
|
43
|
+
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; }
|
|
44
|
+
/**
|
|
45
|
+
* 返回当前显示设备的物理像素分辨率与CSS像素分辨率之比
|
|
46
|
+
*
|
|
47
|
+
* @param context
|
|
48
|
+
* @see api 有些废弃了,其实类型 CanvasRenderingContext2D
|
|
49
|
+
*/
|
|
50
|
+
var getPixelRatio = function getPixelRatio(context) {
|
|
51
|
+
if (!context) {
|
|
52
|
+
return 1;
|
|
53
|
+
}
|
|
54
|
+
var backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1;
|
|
55
|
+
return (window.devicePixelRatio || 1) / backingStore;
|
|
56
|
+
};
|
|
57
|
+
var getSingleFontSize = function getSingleFontSize(width) {
|
|
58
|
+
var fontSize = 50;
|
|
59
|
+
if (width > 1500) {
|
|
60
|
+
fontSize = 80;
|
|
61
|
+
} else if (width >= 400 && width < 600) {
|
|
62
|
+
fontSize = 24;
|
|
63
|
+
} else if (width >= 220 && width < 400) {
|
|
64
|
+
fontSize = 14;
|
|
65
|
+
} else if (width < 220) {
|
|
66
|
+
fontSize = 12;
|
|
67
|
+
}
|
|
68
|
+
return fontSize;
|
|
69
|
+
};
|
|
70
|
+
var getMultiFontSize = function getMultiFontSize(width) {
|
|
71
|
+
var fontSize = 24;
|
|
72
|
+
if (width < 600) {
|
|
73
|
+
fontSize = 16;
|
|
74
|
+
} else if (width >= 600 && width < 1000) {
|
|
75
|
+
fontSize = 20;
|
|
76
|
+
}
|
|
77
|
+
return fontSize;
|
|
78
|
+
};
|
|
79
|
+
var WaterMark = exports.WaterMark = function WaterMark(props) {
|
|
80
|
+
var _props$multiLine = props.multiLine,
|
|
81
|
+
multiLine = _props$multiLine === void 0 ? true : _props$multiLine,
|
|
82
|
+
children = props.children,
|
|
83
|
+
style = props.style,
|
|
84
|
+
className = props.className,
|
|
85
|
+
markStyle = props.markStyle,
|
|
86
|
+
markClassName = props.markClassName,
|
|
87
|
+
_props$zIndex = props.zIndex,
|
|
88
|
+
zIndex = _props$zIndex === void 0 ? 9 : _props$zIndex,
|
|
89
|
+
_props$gapX = props.gapX,
|
|
90
|
+
gapX = _props$gapX === void 0 ? multiLine ? 180 : 0 : _props$gapX,
|
|
91
|
+
_props$gapY = props.gapY,
|
|
92
|
+
gapY = _props$gapY === void 0 ? multiLine ? 190 : 0 : _props$gapY,
|
|
93
|
+
_props$width = props.width,
|
|
94
|
+
width = _props$width === void 0 ? 120 : _props$width,
|
|
95
|
+
_props$height = props.height,
|
|
96
|
+
height = _props$height === void 0 ? 64 : _props$height,
|
|
97
|
+
_props$rotate = props.rotate,
|
|
98
|
+
rotate = _props$rotate === void 0 ? -22 : _props$rotate,
|
|
99
|
+
image = props.image,
|
|
100
|
+
content = props.content,
|
|
101
|
+
offsetLeft = props.offsetLeft,
|
|
102
|
+
offsetTop = props.offsetTop,
|
|
103
|
+
_props$fontStyle = props.fontStyle,
|
|
104
|
+
fontStyle = _props$fontStyle === void 0 ? 'normal' : _props$fontStyle,
|
|
105
|
+
_props$fontWeight = props.fontWeight,
|
|
106
|
+
fontWeight = _props$fontWeight === void 0 ? 'normal' : _props$fontWeight,
|
|
107
|
+
_props$fontColor = props.fontColor,
|
|
108
|
+
fontColor = _props$fontColor === void 0 ? 'rgba(187,187,187,1)' : _props$fontColor,
|
|
109
|
+
_props$fontSize = props.fontSize,
|
|
110
|
+
fontSize = _props$fontSize === void 0 ? multiLine ? getMultiFontSize(width) : getSingleFontSize(width) : _props$fontSize,
|
|
111
|
+
_props$fontFamily = props.fontFamily,
|
|
112
|
+
fontFamily = _props$fontFamily === void 0 ? 'sans-serif' : _props$fontFamily,
|
|
113
|
+
customizePrefixCls = props.prefixCls;
|
|
114
|
+
var wrapperCls = (0, _classnames["default"])("fcr-watermark-wrapper", className);
|
|
115
|
+
var waterMakrCls = (0, _classnames["default"])('watermark', markClassName);
|
|
116
|
+
var _useState = (0, _react.useState)(''),
|
|
117
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
118
|
+
base64Url = _useState2[0],
|
|
119
|
+
setBase64Url = _useState2[1];
|
|
120
|
+
(0, _react.useEffect)(function () {
|
|
121
|
+
if (width == 0 || height == 0) {
|
|
122
|
+
return;
|
|
123
|
+
}
|
|
124
|
+
var canvas = document.createElement('canvas');
|
|
125
|
+
var ctx = canvas.getContext('2d');
|
|
126
|
+
var ratio = getPixelRatio(ctx);
|
|
127
|
+
var widthNum = (gapX + width) * ratio;
|
|
128
|
+
var heightNum = (gapY + height) * ratio;
|
|
129
|
+
var canvasWidth = "".concat(widthNum, "px");
|
|
130
|
+
var canvasHeight = "".concat(heightNum, "px");
|
|
131
|
+
var canvasOffsetLeft = offsetLeft || gapX / 2;
|
|
132
|
+
var canvasOffsetTop = offsetTop || gapY / 2;
|
|
133
|
+
canvas.setAttribute('width', canvasWidth);
|
|
134
|
+
canvas.setAttribute('height', canvasHeight);
|
|
135
|
+
if (ctx) {
|
|
136
|
+
var markWidth = width * ratio;
|
|
137
|
+
var markHeight = height * ratio;
|
|
138
|
+
// 旋转字符 rotate
|
|
139
|
+
if (multiLine) {
|
|
140
|
+
ctx.translate(canvasOffsetLeft * ratio, canvasOffsetTop * ratio);
|
|
141
|
+
} else {
|
|
142
|
+
ctx.translate(markWidth / 2, markHeight / 2);
|
|
143
|
+
}
|
|
144
|
+
ctx.rotate(Math.PI / 180 * Number(rotate));
|
|
145
|
+
if (image) {
|
|
146
|
+
var img = new Image();
|
|
147
|
+
img.crossOrigin = 'anonymous';
|
|
148
|
+
img.referrerPolicy = 'no-referrer';
|
|
149
|
+
img.src = image;
|
|
150
|
+
img.onload = function () {
|
|
151
|
+
ctx.drawImage(img, 0, 0, markWidth, markHeight);
|
|
152
|
+
setBase64Url(canvas.toDataURL());
|
|
153
|
+
};
|
|
154
|
+
} else if (content) {
|
|
155
|
+
var markSize = Number(fontSize) * ratio;
|
|
156
|
+
ctx.font = "".concat(fontStyle, " normal ").concat(fontWeight, " ").concat(markSize, "px/").concat(markHeight, "px ").concat(fontFamily);
|
|
157
|
+
ctx.fillStyle = fontColor;
|
|
158
|
+
if (Array.isArray(content)) {
|
|
159
|
+
content === null || content === void 0 || content.forEach(function (item, index) {
|
|
160
|
+
if (multiLine) {
|
|
161
|
+
ctx.fillText(item, 0, index * Number(fontSize) * 2);
|
|
162
|
+
} else {
|
|
163
|
+
var textMe = ctx.measureText(item);
|
|
164
|
+
ctx.fillText(item, -textMe.width / 2, index * Number(fontSize) * 2);
|
|
165
|
+
}
|
|
166
|
+
});
|
|
167
|
+
} else {
|
|
168
|
+
ctx.fillText(content, 0, 0);
|
|
169
|
+
}
|
|
170
|
+
setBase64Url(canvas.toDataURL());
|
|
171
|
+
}
|
|
172
|
+
} else {
|
|
173
|
+
console.error('当前环境不支持Canvas');
|
|
174
|
+
}
|
|
175
|
+
}, [gapX, gapY, offsetLeft, offsetTop, rotate, fontStyle, fontWeight, width, height, fontFamily, fontColor, image, content, fontSize]);
|
|
176
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
177
|
+
style: _objectSpread({}, style),
|
|
178
|
+
className: wrapperCls,
|
|
179
|
+
children: [children, /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
180
|
+
className: waterMakrCls,
|
|
181
|
+
style: _objectSpread({
|
|
182
|
+
zIndex: zIndex,
|
|
183
|
+
position: 'absolute',
|
|
184
|
+
left: 0,
|
|
185
|
+
top: 0,
|
|
186
|
+
width: '100%',
|
|
187
|
+
height: '100%',
|
|
188
|
+
backgroundSize: "".concat(gapX + width, "px"),
|
|
189
|
+
pointerEvents: 'none',
|
|
190
|
+
backgroundRepeat: 'repeat',
|
|
191
|
+
backgroundImage: "url('".concat(base64Url, "')")
|
|
192
|
+
}, markStyle)
|
|
193
|
+
})]
|
|
194
|
+
});
|
|
195
|
+
};
|
|
@@ -61,20 +61,15 @@ var FcrWindowHeader = exports.FcrWindowHeader = function FcrWindowHeader(props)
|
|
|
61
61
|
onReduction: onReduction
|
|
62
62
|
}), showInMacAndWeb && showClose && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
63
63
|
className: "frc-window-header-mac-control",
|
|
64
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
type: _type.FcrIconType.FCR_CLOSE,
|
|
74
|
-
colors: {
|
|
75
|
-
iconPrimary: 'var(--fcr_ui_scene_black9_5)'
|
|
76
|
-
}
|
|
77
|
-
})
|
|
64
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
65
|
+
className: "frc-window-header-mac_button frc-window-header-mac_close",
|
|
66
|
+
onClick: onClose,
|
|
67
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
|
|
68
|
+
className: "frc-window-header-mac-icon frc-window-header-mac_close-icon",
|
|
69
|
+
type: _type.FcrIconType.FCR_CLOSE,
|
|
70
|
+
colors: {
|
|
71
|
+
iconPrimary: 'var(--fcr_ui_scene_black9_5)'
|
|
72
|
+
}
|
|
78
73
|
})
|
|
79
74
|
})
|
|
80
75
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
@@ -15,7 +15,6 @@ export declare class FcrUILightColors {
|
|
|
15
15
|
fcrMobileUiSceneBottomnavigation2: string;
|
|
16
16
|
fcrMobileUiSceneColorPopupFill1: string;
|
|
17
17
|
fcrMobileUiSceneColorPopupFill2: string;
|
|
18
|
-
fcrMobileUiSceneColorPopupBlock1: string;
|
|
19
18
|
fcrMobileUiSceneColorPopupBlock2: string;
|
|
20
19
|
fcrMobileUiSceneToast1: string;
|
|
21
20
|
fcrUiSceneIcontext1: string;
|
|
@@ -25,7 +24,6 @@ export declare class FcrUILightColors {
|
|
|
25
24
|
fcrUiSceneLine1: string;
|
|
26
25
|
fcrUiSceneLine2: string;
|
|
27
26
|
fcrUiSceneInput: string;
|
|
28
|
-
fcrUiSceneRampBrand0: string;
|
|
29
27
|
fcrUiSceneRampBrand1: string;
|
|
30
28
|
fcrUiSceneRampBrand2: string;
|
|
31
29
|
fcrUiSceneRampBrand3: string;
|
|
@@ -166,7 +164,44 @@ export declare class FcrUILightColors {
|
|
|
166
164
|
fcrOrange6: string;
|
|
167
165
|
fcrUiSceneRampOrange7: string;
|
|
168
166
|
fcrUiSceneRampGreen7: string;
|
|
167
|
+
fcrUiSceneRampBrand0: string;
|
|
168
|
+
fcrUiSceneHover: string;
|
|
169
|
+
fcrMobileUiSceneBigbg: string;
|
|
170
|
+
fcrMobileUiSceneColorPopupFill4: string;
|
|
171
|
+
fcrMobileUiSceneColorPopupBlock1: string;
|
|
172
|
+
fcrUiSceneCard1: string;
|
|
173
|
+
fcrUiSceneCard2: string;
|
|
174
|
+
fcrHomepageFill1: string;
|
|
175
|
+
fcrHomepageFill2: string;
|
|
176
|
+
fcrHomepageCell: string;
|
|
177
|
+
fcrHomepageControl: string;
|
|
178
|
+
fcrHomepageControlBlock: string;
|
|
179
|
+
fcrHomepageTexture1: string;
|
|
180
|
+
fcrHomepageTexture2: string;
|
|
181
|
+
fcrHomepageTexture3: string;
|
|
182
|
+
fcrHomepageBrand6: string;
|
|
183
|
+
fcrHomepageBrand7: string;
|
|
184
|
+
fcrHomepageRed6: string;
|
|
185
|
+
fcrHomepageWhite10: string;
|
|
186
|
+
fcrHomepageIconGreen: string;
|
|
187
|
+
fcrHomepageIconGreenBg: string;
|
|
188
|
+
fcrHomepageColorGreen: string;
|
|
189
|
+
fcrHomepageIconBlue: string;
|
|
190
|
+
fcrHomepageColorBlue: string;
|
|
191
|
+
fcrHomepageIconBlueBg: string;
|
|
192
|
+
fcrHomepageLine: string;
|
|
193
|
+
fcrHomepageInput: string;
|
|
194
|
+
fcrHomepageFill3: string;
|
|
195
|
+
fcrHomepageGreenBg2: string;
|
|
196
|
+
fcrHomepageBlueBg2: string;
|
|
197
|
+
fcrHomepageTap: string;
|
|
198
|
+
fcrHomepageDark10: string;
|
|
199
|
+
fcrHomepageControlBlock2: string;
|
|
200
|
+
fcrHomepageBrand5: string;
|
|
201
|
+
fcrUiSceneInput3Forstartmeeting: string;
|
|
202
|
+
fcrUiSceneCard3: string;
|
|
169
203
|
fcrWebLightDropup: string;
|
|
204
|
+
fcrWebLightDropupL: string;
|
|
170
205
|
fcrWebLightDropupM: string;
|
|
171
206
|
fcrWebLightDropupS: string;
|
|
172
207
|
}
|
|
@@ -178,7 +213,6 @@ export declare class FcrUIDarkColors {
|
|
|
178
213
|
fcrMobileUiSceneBottomnavigation2: string;
|
|
179
214
|
fcrMobileUiSceneColorPopupFill1: string;
|
|
180
215
|
fcrMobileUiSceneColorPopupFill2: string;
|
|
181
|
-
fcrMobileUiSceneColorPopupBlock1: string;
|
|
182
216
|
fcrMobileUiSceneColorPopupBlock2: string;
|
|
183
217
|
fcrMobileUiSceneToast1: string;
|
|
184
218
|
fcrUiSceneIcontext1: string;
|
|
@@ -188,7 +222,6 @@ export declare class FcrUIDarkColors {
|
|
|
188
222
|
fcrUiSceneLine1: string;
|
|
189
223
|
fcrUiSceneLine2: string;
|
|
190
224
|
fcrUiSceneInput: string;
|
|
191
|
-
fcrUiSceneRampBrand0: string;
|
|
192
225
|
fcrUiSceneRampBrand1: string;
|
|
193
226
|
fcrUiSceneRampBrand2: string;
|
|
194
227
|
fcrUiSceneRampBrand3: string;
|
|
@@ -329,7 +362,44 @@ export declare class FcrUIDarkColors {
|
|
|
329
362
|
fcrOrange6: string;
|
|
330
363
|
fcrUiSceneRampOrange7: string;
|
|
331
364
|
fcrUiSceneRampGreen7: string;
|
|
365
|
+
fcrUiSceneRampBrand0: string;
|
|
366
|
+
fcrUiSceneHover: string;
|
|
367
|
+
fcrMobileUiSceneBigbg: string;
|
|
368
|
+
fcrMobileUiSceneColorPopupFill4: string;
|
|
369
|
+
fcrMobileUiSceneColorPopupBlock1: string;
|
|
370
|
+
fcrUiSceneCard1: string;
|
|
371
|
+
fcrUiSceneCard2: string;
|
|
372
|
+
fcrHomepageFill1: string;
|
|
373
|
+
fcrHomepageFill2: string;
|
|
374
|
+
fcrHomepageCell: string;
|
|
375
|
+
fcrHomepageControl: string;
|
|
376
|
+
fcrHomepageControlBlock: string;
|
|
377
|
+
fcrHomepageTexture1: string;
|
|
378
|
+
fcrHomepageTexture2: string;
|
|
379
|
+
fcrHomepageTexture3: string;
|
|
380
|
+
fcrHomepageBrand6: string;
|
|
381
|
+
fcrHomepageBrand7: string;
|
|
382
|
+
fcrHomepageRed6: string;
|
|
383
|
+
fcrHomepageWhite10: string;
|
|
384
|
+
fcrHomepageIconGreen: string;
|
|
385
|
+
fcrHomepageIconGreenBg: string;
|
|
386
|
+
fcrHomepageColorGreen: string;
|
|
387
|
+
fcrHomepageIconBlue: string;
|
|
388
|
+
fcrHomepageColorBlue: string;
|
|
389
|
+
fcrHomepageIconBlueBg: string;
|
|
390
|
+
fcrHomepageLine: string;
|
|
391
|
+
fcrHomepageInput: string;
|
|
392
|
+
fcrHomepageFill3: string;
|
|
393
|
+
fcrHomepageGreenBg2: string;
|
|
394
|
+
fcrHomepageBlueBg2: string;
|
|
395
|
+
fcrHomepageTap: string;
|
|
396
|
+
fcrHomepageDark10: string;
|
|
397
|
+
fcrHomepageControlBlock2: string;
|
|
398
|
+
fcrHomepageBrand5: string;
|
|
399
|
+
fcrUiSceneInput3Forstartmeeting: string;
|
|
400
|
+
fcrUiSceneCard3: string;
|
|
332
401
|
fcrWebLightDropup: string;
|
|
402
|
+
fcrWebLightDropupL: string;
|
|
333
403
|
fcrWebLightDropupM: string;
|
|
334
404
|
fcrWebLightDropupS: string;
|
|
335
405
|
}
|
|
@@ -348,9 +418,7 @@ export declare class FcrUIRadius {
|
|
|
348
418
|
fcrCornerradiusXxxxl: number;
|
|
349
419
|
}
|
|
350
420
|
declare class FcrUIFont {
|
|
351
|
-
fcrFontWeightXXL: number;
|
|
352
421
|
fcrFontWeightX: number;
|
|
353
|
-
fcrFontWeightL: number;
|
|
354
422
|
fcrFontWeightM: number;
|
|
355
423
|
fcrFontWeightS: number;
|
|
356
424
|
}
|
|
@@ -29,7 +29,6 @@ var FcrUILightColors = exports.FcrUILightColors = /*#__PURE__*/(0, _createClass2
|
|
|
29
29
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneBottomnavigation2", '#ffffff80');
|
|
30
30
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupFill1", '#f5f6faf7');
|
|
31
31
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupFill2", '#ffffffff');
|
|
32
|
-
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock1", '#fffffff2');
|
|
33
32
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock2", '#f1f3f8ff');
|
|
34
33
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneToast1", '#2f2f2fcc');
|
|
35
34
|
(0, _defineProperty2["default"])(this, "fcrUiSceneIcontext1", '#373c42ff');
|
|
@@ -39,7 +38,6 @@ var FcrUILightColors = exports.FcrUILightColors = /*#__PURE__*/(0, _createClass2
|
|
|
39
38
|
(0, _defineProperty2["default"])(this, "fcrUiSceneLine1", '#e3e7efff');
|
|
40
39
|
(0, _defineProperty2["default"])(this, "fcrUiSceneLine2", '#d8d8d880');
|
|
41
40
|
(0, _defineProperty2["default"])(this, "fcrUiSceneInput", '#f9f9fcff');
|
|
42
|
-
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand0", '#4262FF12');
|
|
43
41
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand1", '#4262ff1a');
|
|
44
42
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand2", '#4262ff33');
|
|
45
43
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand3", '#4262ff66');
|
|
@@ -117,7 +115,7 @@ var FcrUILightColors = exports.FcrUILightColors = /*#__PURE__*/(0, _createClass2
|
|
|
117
115
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneFill1", '#f2f2faff');
|
|
118
116
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneFill2", '#ffffffd9');
|
|
119
117
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneFill3", '#f7f7fae5');
|
|
120
|
-
(0, _defineProperty2["default"])(this, "fcrWebUiSceneFill4Popup", '#
|
|
118
|
+
(0, _defineProperty2["default"])(this, "fcrWebUiSceneFill4Popup", '#f3f7fbe5');
|
|
121
119
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneFill5", '#e5eaf3e5');
|
|
122
120
|
(0, _defineProperty2["default"])(this, "fcrUiSceneWhiteground", '#ffffffff');
|
|
123
121
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneMainicon1", '#484957e5');
|
|
@@ -158,7 +156,7 @@ var FcrUILightColors = exports.FcrUILightColors = /*#__PURE__*/(0, _createClass2
|
|
|
158
156
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneMainicon1Block", '#3c3d40ff');
|
|
159
157
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed3", '#f5655c80');
|
|
160
158
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed7", '#e55e56ff');
|
|
161
|
-
(0, _defineProperty2["default"])(this, "fcrUiSceneBlack0", '#
|
|
159
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneBlack0", '#0000000d');
|
|
162
160
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock5", '#f1f3f866');
|
|
163
161
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed2", '#f5655c4d');
|
|
164
162
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed1", '#f5655c1a');
|
|
@@ -180,7 +178,44 @@ var FcrUILightColors = exports.FcrUILightColors = /*#__PURE__*/(0, _createClass2
|
|
|
180
178
|
(0, _defineProperty2["default"])(this, "fcrOrange6", '#ff8c38ff');
|
|
181
179
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampOrange7", '#e86e16ff');
|
|
182
180
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampGreen7", '#07b78dff');
|
|
181
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand0", '#4262ff12');
|
|
182
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneHover", '#4262ff1a');
|
|
183
|
+
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneBigbg", '#ffffffff');
|
|
184
|
+
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupFill4", '#f5f6fafc');
|
|
185
|
+
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock1", '#fffffff2');
|
|
186
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneCard1", '#67d569ff');
|
|
187
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneCard2", '#a19fffff');
|
|
188
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageFill1", '#ffffffff');
|
|
189
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageFill2", '#f7f7feff');
|
|
190
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageCell", '#ffffffff');
|
|
191
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageControl", '#f8f8fbff');
|
|
192
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageControlBlock", '#edf0f6ff');
|
|
193
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTexture1", '#000000ff');
|
|
194
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTexture2", '#6d6a77ff');
|
|
195
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTexture3", '#9f9caaff');
|
|
196
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBrand6", '#4262ffff');
|
|
197
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBrand7", '#3a55deff');
|
|
198
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageRed6", '#f5655cff');
|
|
199
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageWhite10", '#ffffffff');
|
|
200
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconGreen", '#16d1a4ff');
|
|
201
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconGreenBg", '#b4f8b54d');
|
|
202
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageColorGreen", '#16d1a4ff');
|
|
203
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconBlue", '#4262ffff');
|
|
204
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageColorBlue", '#4262ffff');
|
|
205
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconBlueBg", '#4262ff1a');
|
|
206
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageLine", '#e3e7efff');
|
|
207
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageInput", '#f4f5fbff');
|
|
208
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageFill3", '#ffffffd9');
|
|
209
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageGreenBg2", '#cefacfff');
|
|
210
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBlueBg2", '#e1e6ffff');
|
|
211
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTap", '#7c79ffff');
|
|
212
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageDark10", '#151414ff');
|
|
213
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageControlBlock2", '#e0e8fcb2');
|
|
214
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBrand5", '#4262ff99');
|
|
215
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneInput3Forstartmeeting", '#f3f4f9ff');
|
|
216
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneCard3", '#1ac3d5ff');
|
|
183
217
|
(0, _defineProperty2["default"])(this, "fcrWebLightDropup", '0px 0px 15px 0px rgba(151, 151, 151, 0.25)');
|
|
218
|
+
(0, _defineProperty2["default"])(this, "fcrWebLightDropupL", '0px 0px 15px 10px rgba(143, 143, 143, 0.20)');
|
|
184
219
|
(0, _defineProperty2["default"])(this, "fcrWebLightDropupM", '0px 0px 15px 0px rgba(143, 143, 143, 0.15)');
|
|
185
220
|
(0, _defineProperty2["default"])(this, "fcrWebLightDropupS", '0px 0px 4px 0px rgba(0, 0, 0, 0.25)');
|
|
186
221
|
});
|
|
@@ -193,7 +228,6 @@ var FcrUIDarkColors = exports.FcrUIDarkColors = /*#__PURE__*/(0, _createClass2["
|
|
|
193
228
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneBottomnavigation2", '#32354580');
|
|
194
229
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupFill1", '#1f2327f7');
|
|
195
230
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupFill2", '#3c3c3cff');
|
|
196
|
-
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock1", '#292e33f2');
|
|
197
231
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock2", '#353638f2');
|
|
198
232
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneToast1", '#fffffff2');
|
|
199
233
|
(0, _defineProperty2["default"])(this, "fcrUiSceneIcontext1", '#ffffffff');
|
|
@@ -203,13 +237,12 @@ var FcrUIDarkColors = exports.FcrUIDarkColors = /*#__PURE__*/(0, _createClass2["
|
|
|
203
237
|
(0, _defineProperty2["default"])(this, "fcrUiSceneLine1", '#4a4c5f80');
|
|
204
238
|
(0, _defineProperty2["default"])(this, "fcrUiSceneLine2", '#40404033');
|
|
205
239
|
(0, _defineProperty2["default"])(this, "fcrUiSceneInput", '#3d404bff');
|
|
206
|
-
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand0", '#C9CFE04D');
|
|
207
240
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand1", '#4262ff33');
|
|
208
241
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand2", '#4262ff4d');
|
|
209
242
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand3", '#4262ff66');
|
|
210
243
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand4", '#4262ff99');
|
|
211
244
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand5", '#4262ffcc');
|
|
212
|
-
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand6", '#
|
|
245
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand6", '#506effff');
|
|
213
246
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand7", '#354eccff');
|
|
214
247
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand8", '#283b99ff');
|
|
215
248
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand9", '#1a2766ff');
|
|
@@ -219,7 +252,7 @@ var FcrUIDarkColors = exports.FcrUIDarkColors = /*#__PURE__*/(0, _createClass2["
|
|
|
219
252
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple3", '#7c79ff66');
|
|
220
253
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple4", '#7c79ff99');
|
|
221
254
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple5", '#7c79ffcc');
|
|
222
|
-
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple6", '#
|
|
255
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple6", '#7e7bffff');
|
|
223
256
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple8", '#4a4999ff');
|
|
224
257
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple9", '#323066ff');
|
|
225
258
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampPurple10", '#191833ff');
|
|
@@ -322,7 +355,7 @@ var FcrUIDarkColors = exports.FcrUIDarkColors = /*#__PURE__*/(0, _createClass2["
|
|
|
322
355
|
(0, _defineProperty2["default"])(this, "fcrWebUiSceneMainicon1Block", '#e1e1e7ff');
|
|
323
356
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed3", '#fb584e80');
|
|
324
357
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed7", '#e34d43ff');
|
|
325
|
-
(0, _defineProperty2["default"])(this, "fcrUiSceneBlack0", '#
|
|
358
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneBlack0", '#0000000d');
|
|
326
359
|
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock5", '#2f2f2fa6');
|
|
327
360
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed2", '#fb584e4d');
|
|
328
361
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampRed1", '#fb584e1a');
|
|
@@ -344,7 +377,44 @@ var FcrUIDarkColors = exports.FcrUIDarkColors = /*#__PURE__*/(0, _createClass2["
|
|
|
344
377
|
(0, _defineProperty2["default"])(this, "fcrOrange6", '#ffa216ff');
|
|
345
378
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampOrange7", '#e86e16ff');
|
|
346
379
|
(0, _defineProperty2["default"])(this, "fcrUiSceneRampGreen7", '#00a703ff');
|
|
380
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneRampBrand0", '#4262ff12');
|
|
381
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneHover", '#6666664d');
|
|
382
|
+
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneBigbg", '#26282cff');
|
|
383
|
+
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupFill4", '#000000ff');
|
|
384
|
+
(0, _defineProperty2["default"])(this, "fcrMobileUiSceneColorPopupBlock1", '#292e33f2');
|
|
385
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneCard1", '#e2f458ff');
|
|
386
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneCard2", '#a19fffff');
|
|
387
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageFill1", '#121114ff');
|
|
388
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageFill2", '#26282cff');
|
|
389
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageCell", '#383e4fff');
|
|
390
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageControl", '#201f23ff');
|
|
391
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageControlBlock", '#383e4fff');
|
|
392
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTexture1", '#ffffffff');
|
|
393
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTexture2", '#ffffffcc');
|
|
394
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTexture3", '#ffffffb2');
|
|
395
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBrand6", '#4262ffff');
|
|
396
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBrand7", '#3a55deff');
|
|
397
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageRed6", '#fb584eff');
|
|
398
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageWhite10", '#ffffffff');
|
|
399
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconGreen", '#ffffffff');
|
|
400
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconGreenBg", '#16d1a4ff');
|
|
401
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageColorGreen", '#16d1a4ff');
|
|
402
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconBlue", '#ffffffff');
|
|
403
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageColorBlue", '#4262ffff');
|
|
404
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageIconBlueBg", '#4262ffff');
|
|
405
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageLine", '#ffffff33');
|
|
406
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageInput", '#3d404bff');
|
|
407
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageFill3", '#404043d9');
|
|
408
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageGreenBg2", '#26c19cff');
|
|
409
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBlueBg2", '#2f43a8ff');
|
|
410
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageTap", '#ffb700ff');
|
|
411
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageDark10", '#151414ff');
|
|
412
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageControlBlock2", '#515971ff');
|
|
413
|
+
(0, _defineProperty2["default"])(this, "fcrHomepageBrand5", '#4262ff99');
|
|
414
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneInput3Forstartmeeting", '#3d404bff');
|
|
415
|
+
(0, _defineProperty2["default"])(this, "fcrUiSceneCard3", '#00cae0ff');
|
|
347
416
|
(0, _defineProperty2["default"])(this, "fcrWebLightDropup", '0px 0px 15px 0px rgba(0, 0, 0, 0.25)');
|
|
417
|
+
(0, _defineProperty2["default"])(this, "fcrWebLightDropupL", '0px 0px 15px 0px rgba(143, 143, 143, 0.2)');
|
|
348
418
|
(0, _defineProperty2["default"])(this, "fcrWebLightDropupM", '0px 2px 50px 5px rgba(143, 143, 143, 0.2)');
|
|
349
419
|
(0, _defineProperty2["default"])(this, "fcrWebLightDropupS", '0px 2px 8px 5px rgba(255, 255, 255, 0.1)');
|
|
350
420
|
});
|
|
@@ -365,9 +435,7 @@ var FcrUIRadius = exports.FcrUIRadius = /*#__PURE__*/(0, _createClass2["default"
|
|
|
365
435
|
});
|
|
366
436
|
var FcrUIFont = /*#__PURE__*/(0, _createClass2["default"])(function FcrUIFont() {
|
|
367
437
|
(0, _classCallCheck2["default"])(this, FcrUIFont);
|
|
368
|
-
(0, _defineProperty2["default"])(this, "fcrFontWeightXXL", 900);
|
|
369
438
|
(0, _defineProperty2["default"])(this, "fcrFontWeightX", 800);
|
|
370
|
-
(0, _defineProperty2["default"])(this, "fcrFontWeightL", 700);
|
|
371
439
|
(0, _defineProperty2["default"])(this, "fcrFontWeightM", 600);
|
|
372
440
|
(0, _defineProperty2["default"])(this, "fcrFontWeightS", 400);
|
|
373
441
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agora-ui-foundation",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"patch-package": "^8.0.0",
|
|
17
17
|
"rc-dialog": "^8",
|
|
18
18
|
"rc-tooltip": "5.1.1",
|
|
19
|
+
"rc-notification": "5.6.2",
|
|
19
20
|
"react": "^17.0.2",
|
|
20
21
|
"react-dom": "^17.0.2",
|
|
21
22
|
"react-i18next": "^14.1.0",
|
|
@@ -24,7 +25,7 @@
|
|
|
24
25
|
"react-transition-group": "^4.4.2",
|
|
25
26
|
"react-virtualized": "^9.22.5",
|
|
26
27
|
"tinycolor2": "^1.6.0",
|
|
27
|
-
"agora-foundation": "^3.
|
|
28
|
+
"agora-foundation": "^3.3.0"
|
|
28
29
|
},
|
|
29
30
|
"devDependencies": {
|
|
30
31
|
"@babel/core": "^7.23.5",
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
"tslib": "^2.6.2",
|
|
57
58
|
"typescript": "^5.4.3",
|
|
58
59
|
"vite": "^5.2.7",
|
|
59
|
-
"agora-toolchain": "^3.
|
|
60
|
+
"agora-toolchain": "^3.3.0"
|
|
60
61
|
},
|
|
61
62
|
"scripts": {
|
|
62
63
|
"build": "agora-tc-transpile",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
diff --git a/node_modules/rc-notification/es/hooks/useNotification.js b/node_modules/rc-notification/es/hooks/useNotification.js
|
|
2
|
+
index 6b1199f..cccebd7 100644
|
|
3
|
+
--- a/node_modules/rc-notification/es/hooks/useNotification.js
|
|
4
|
+
+++ b/node_modules/rc-notification/es/hooks/useNotification.js
|
|
5
|
+
@@ -44,7 +44,7 @@ export default function useNotification() {
|
|
6
|
+
setContainer = _React$useState2[1];
|
|
7
|
+
var notificationsRef = React.useRef();
|
|
8
|
+
var contextHolder = /*#__PURE__*/React.createElement(Notifications, {
|
|
9
|
+
- container: container,
|
|
10
|
+
+ container: getContainer(),
|
|
11
|
+
ref: notificationsRef,
|
|
12
|
+
prefixCls: prefixCls,
|
|
13
|
+
motion: motion,
|