@vtx/player 1.10.19 → 1.11.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/bill-player/index.js +23 -21
- package/lib/bill-player/index.js.map +1 -1
- package/lib/components/download-tag/index.js +12 -10
- package/lib/components/download-tag/index.js.map +1 -1
- package/lib/components/set-tag-video/index.js +18 -16
- package/lib/components/set-tag-video/index.js.map +1 -1
- package/lib/components/tag-video/index.js +6 -2
- package/lib/components/tag-video/index.js.map +1 -1
- package/lib/components/video-scale/index.js +14 -12
- package/lib/components/video-scale/index.js.map +1 -1
- package/lib/controls/index.js +12 -7
- package/lib/controls/index.js.map +1 -1
- package/lib/history-control/index.js +16 -13
- package/lib/history-control/index.js.map +1 -1
- package/lib/history-control-v2/components/panel/VideoTable.js +18 -15
- package/lib/history-control-v2/components/panel/VideoTable.js.map +1 -1
- package/lib/history-control-v2/components/panel/index.js +12 -8
- package/lib/history-control-v2/components/panel/index.js.map +1 -1
- package/lib/history-player/index.js +3 -1
- package/lib/history-player/index.js.map +1 -1
- package/lib/hooks/useTranslation.d.ts +14 -0
- package/lib/hooks/useTranslation.js +204 -0
- package/lib/hooks/useTranslation.js.map +1 -0
- package/lib/icons/index.d.ts +36 -36
- package/lib/icons/index.js +60 -397
- package/lib/icons/index.js.map +1 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.js +37 -0
- package/lib/index.js.map +1 -1
- package/lib/live-control/index.js +8 -6
- package/lib/live-control/index.js.map +1 -1
- package/lib/live-player/index.js +5 -4
- package/lib/live-player/index.js.map +1 -1
- package/lib/locales/en.json +93 -0
- package/lib/locales/index.d.ts +20 -0
- package/lib/locales/index.js +114 -0
- package/lib/locales/index.js.map +1 -0
- package/lib/locales/zh-CN.json +93 -0
- package/lib/rsl/PlayerManager.js +2 -2
- package/lib/rsl/PlayerManager.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getT = getT;
|
|
7
|
+
exports.getTranslationKey = getTranslationKey;
|
|
8
|
+
exports.translateLocaleText = translateLocaleText;
|
|
9
|
+
exports.translationConst = _translationConst;
|
|
10
|
+
exports.translationText = _translationText;
|
|
11
|
+
exports.useTranslation = useTranslation;
|
|
12
|
+
var _locales = require("../locales");
|
|
13
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
14
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
15
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
16
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
17
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
18
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
19
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
20
|
+
var keyFieldMap = {
|
|
21
|
+
titleKey: 'title',
|
|
22
|
+
labelKey: 'label',
|
|
23
|
+
textKey: 'text',
|
|
24
|
+
placeholderKey: 'placeholder',
|
|
25
|
+
subtitleKey: 'subtitle',
|
|
26
|
+
contentKey: 'content',
|
|
27
|
+
tooltipKey: 'tooltip',
|
|
28
|
+
messageKey: 'message',
|
|
29
|
+
descriptionKey: 'description',
|
|
30
|
+
unitKey: 'unit',
|
|
31
|
+
fileNameKey: 'fileName',
|
|
32
|
+
modalTitleKey: 'modalTitle',
|
|
33
|
+
yAxisNameKey: 'yAxisName',
|
|
34
|
+
yAxisName2Key: 'yAxisName2',
|
|
35
|
+
emptyTextKey: 'emptyText',
|
|
36
|
+
emptyDescriptionKey: 'emptyDescription',
|
|
37
|
+
emptyDescriptionTextKey: 'emptyDescriptionText',
|
|
38
|
+
headSubTitleTextKey: 'headSubTitleText',
|
|
39
|
+
btnCloseTextKey: 'btnCloseText',
|
|
40
|
+
btnUploadTextKey: 'btnUploadText',
|
|
41
|
+
btnReUploadTextKey: 'btnReUploadText',
|
|
42
|
+
btnImportTextKey: 'btnImportText',
|
|
43
|
+
msgUploadWarningTextKey: 'msgUploadWarningText',
|
|
44
|
+
resultSuccessTextKey: 'resultSuccessText',
|
|
45
|
+
resultFailTextKey: 'resultFailText'
|
|
46
|
+
};
|
|
47
|
+
function _translationText(text, t) {
|
|
48
|
+
if (typeof text !== 'string') {
|
|
49
|
+
return text;
|
|
50
|
+
}
|
|
51
|
+
var match = text.match(/^t\('([^']+)'\)$/);
|
|
52
|
+
if (match) {
|
|
53
|
+
return t(match[1]);
|
|
54
|
+
}
|
|
55
|
+
return text;
|
|
56
|
+
}
|
|
57
|
+
function getTranslationKey(text) {
|
|
58
|
+
var _a;
|
|
59
|
+
if (typeof text !== 'string') {
|
|
60
|
+
return undefined;
|
|
61
|
+
}
|
|
62
|
+
return (_a = text.match(/^t\('([^']+)'\)$/)) === null || _a === void 0 ? void 0 : _a[1];
|
|
63
|
+
}
|
|
64
|
+
function formatMessage(template, values) {
|
|
65
|
+
if (!values) {
|
|
66
|
+
return template;
|
|
67
|
+
}
|
|
68
|
+
return template.replace(/\{(\w+)\}/g, function (_, key) {
|
|
69
|
+
var _a;
|
|
70
|
+
return ((_a = values[key]) !== null && _a !== void 0 ? _a : "{".concat(key, "}")).toString();
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
function getMessageByPath(messages, id) {
|
|
74
|
+
return id.split('.').reduce(function (current, key) {
|
|
75
|
+
return current === null || current === void 0 ? void 0 : current[key];
|
|
76
|
+
}, messages);
|
|
77
|
+
}
|
|
78
|
+
function translationByKey(key, t, values) {
|
|
79
|
+
if (typeof key !== 'string' || !key) {
|
|
80
|
+
return key;
|
|
81
|
+
}
|
|
82
|
+
return formatMessage(t(key, values), values);
|
|
83
|
+
}
|
|
84
|
+
function translateLocaleText(text, values) {
|
|
85
|
+
var key = getTranslationKey(text);
|
|
86
|
+
if (!key) {
|
|
87
|
+
return text;
|
|
88
|
+
}
|
|
89
|
+
var message = getMessageByPath((0, _locales.getLocaleMessages)(), key) || key;
|
|
90
|
+
return formatMessage(message, values);
|
|
91
|
+
}
|
|
92
|
+
function applyKeyFields(source, t) {
|
|
93
|
+
var next = Object.assign({}, source);
|
|
94
|
+
for (var _i = 0, _Object$entries = Object.entries(keyFieldMap); _i < _Object$entries.length; _i++) {
|
|
95
|
+
var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
|
|
96
|
+
keyField = _Object$entries$_i[0],
|
|
97
|
+
targetField = _Object$entries$_i[1];
|
|
98
|
+
if (typeof source[keyField] === 'string' && source[keyField]) {
|
|
99
|
+
next[targetField] = translationByKey(source[keyField], t);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return next;
|
|
103
|
+
}
|
|
104
|
+
function _translationConst(lists, t) {
|
|
105
|
+
function loopOptions(options) {
|
|
106
|
+
return (options === null || options === void 0 ? void 0 : options.map(function (opt) {
|
|
107
|
+
if (_typeof(opt) === 'object' && opt !== null) {
|
|
108
|
+
var translated = applyKeyFields(opt, t);
|
|
109
|
+
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, translated), translated.label ? {
|
|
110
|
+
label: _translationText(translated.label, t)
|
|
111
|
+
} : {}), translated.title ? {
|
|
112
|
+
title: _translationText(translated.title, t)
|
|
113
|
+
} : {}), translated.name ? {
|
|
114
|
+
name: _translationText(translated.name, t)
|
|
115
|
+
} : {}), translated.unit ? {
|
|
116
|
+
unit: _translationText(translated.unit, t)
|
|
117
|
+
} : {}), translated.text ? {
|
|
118
|
+
text: _translationText(translated.text, t)
|
|
119
|
+
} : {}), translated.placeholder ? {
|
|
120
|
+
placeholder: _translationText(translated.placeholder, t)
|
|
121
|
+
} : {}), translated.subtitle ? {
|
|
122
|
+
subtitle: _translationText(translated.subtitle, t)
|
|
123
|
+
} : {}), translated.content ? {
|
|
124
|
+
content: _translationText(translated.content, t)
|
|
125
|
+
} : {}), translated.tooltip ? {
|
|
126
|
+
tooltip: _translationText(translated.tooltip, t)
|
|
127
|
+
} : {}), translated.message ? {
|
|
128
|
+
message: _translationText(translated.message, t)
|
|
129
|
+
} : {}), translated.description ? {
|
|
130
|
+
description: _translationText(translated.description, t)
|
|
131
|
+
} : {}), translated.fileName ? {
|
|
132
|
+
fileName: _translationText(translated.fileName, t)
|
|
133
|
+
} : {}), translated.modalTitle ? {
|
|
134
|
+
modalTitle: _translationText(translated.modalTitle, t)
|
|
135
|
+
} : {}), translated.yAxisName ? {
|
|
136
|
+
yAxisName: _translationText(translated.yAxisName, t)
|
|
137
|
+
} : {}), translated.yAxisName2 ? {
|
|
138
|
+
yAxisName2: _translationText(translated.yAxisName2, t)
|
|
139
|
+
} : {}), translated.emptyText ? {
|
|
140
|
+
emptyText: _translationText(translated.emptyText, t)
|
|
141
|
+
} : {}), translated.emptyDescription ? {
|
|
142
|
+
emptyDescription: _translationText(translated.emptyDescription, t)
|
|
143
|
+
} : {}), translated.emptyDescriptionText ? {
|
|
144
|
+
emptyDescriptionText: _translationText(translated.emptyDescriptionText, t)
|
|
145
|
+
} : {}), translated.headSubTitleText ? {
|
|
146
|
+
headSubTitleText: _translationText(translated.headSubTitleText, t)
|
|
147
|
+
} : {}), translated.btnCloseText ? {
|
|
148
|
+
btnCloseText: _translationText(translated.btnCloseText, t)
|
|
149
|
+
} : {}), translated.btnUploadText ? {
|
|
150
|
+
btnUploadText: _translationText(translated.btnUploadText, t)
|
|
151
|
+
} : {}), translated.btnReUploadText ? {
|
|
152
|
+
btnReUploadText: _translationText(translated.btnReUploadText, t)
|
|
153
|
+
} : {}), translated.btnImportText ? {
|
|
154
|
+
btnImportText: _translationText(translated.btnImportText, t)
|
|
155
|
+
} : {}), translated.msgUploadWarningText ? {
|
|
156
|
+
msgUploadWarningText: _translationText(translated.msgUploadWarningText, t)
|
|
157
|
+
} : {}), translated.resultSuccessText ? {
|
|
158
|
+
resultSuccessText: _translationText(translated.resultSuccessText, t)
|
|
159
|
+
} : {}), translated.resultFailText ? {
|
|
160
|
+
resultFailText: _translationText(translated.resultFailText, t)
|
|
161
|
+
} : {}), Array.isArray(translated.options) ? {
|
|
162
|
+
options: loopOptions(translated.options)
|
|
163
|
+
} : {}), Array.isArray(translated.items) ? {
|
|
164
|
+
items: loopOptions(translated.items)
|
|
165
|
+
} : {}), Array.isArray(translated.children) ? {
|
|
166
|
+
children: loopOptions(translated.children)
|
|
167
|
+
} : {}), Array.isArray(translated.columns) ? {
|
|
168
|
+
columns: loopOptions(translated.columns)
|
|
169
|
+
} : {}), Array.isArray(translated.tabs) ? {
|
|
170
|
+
tabs: loopOptions(translated.tabs)
|
|
171
|
+
} : {}), Array.isArray(translated.actions) ? {
|
|
172
|
+
actions: loopOptions(translated.actions)
|
|
173
|
+
} : {}), Array.isArray(translated.buttons) ? {
|
|
174
|
+
buttons: loopOptions(translated.buttons)
|
|
175
|
+
} : {});
|
|
176
|
+
}
|
|
177
|
+
return opt;
|
|
178
|
+
})) || [];
|
|
179
|
+
}
|
|
180
|
+
return loopOptions(lists);
|
|
181
|
+
}
|
|
182
|
+
function getT() {
|
|
183
|
+
var t = function t(id, values) {
|
|
184
|
+
var message = getMessageByPath((0, _locales.getLocaleMessages)(), id) || id;
|
|
185
|
+
return formatMessage(message, values);
|
|
186
|
+
};
|
|
187
|
+
return {
|
|
188
|
+
t: t
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
function useTranslation() {
|
|
192
|
+
var _getT = getT(),
|
|
193
|
+
t = _getT.t;
|
|
194
|
+
return {
|
|
195
|
+
t: t,
|
|
196
|
+
translationText: function translationText(text) {
|
|
197
|
+
return _translationText(text, t);
|
|
198
|
+
},
|
|
199
|
+
translationConst: function translationConst(lists) {
|
|
200
|
+
return _translationConst(lists, t);
|
|
201
|
+
}
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
//# sourceMappingURL=useTranslation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useTranslation.js","names":["_locales","require","_typeof","obj","Symbol","iterator","constructor","prototype","_slicedToArray","arr","i","_arrayWithHoles","_iterableToArrayLimit","_unsupportedIterableToArray","_nonIterableRest","TypeError","o","minLen","_arrayLikeToArray","n","Object","toString","call","slice","name","Array","from","test","len","length","arr2","_i","_arr","_n","_d","_s","_e","next","done","push","value","err","isArray","keyFieldMap","titleKey","labelKey","textKey","placeholderKey","subtitleKey","contentKey","tooltipKey","messageKey","descriptionKey","unitKey","fileNameKey","modalTitleKey","yAxisNameKey","yAxisName2Key","emptyTextKey","emptyDescriptionKey","emptyDescriptionTextKey","headSubTitleTextKey","btnCloseTextKey","btnUploadTextKey","btnReUploadTextKey","btnImportTextKey","msgUploadWarningTextKey","resultSuccessTextKey","resultFailTextKey","translationText","text","t","match","getTranslationKey","_a","undefined","formatMessage","template","values","replace","_","key","concat","getMessageByPath","messages","id","split","reduce","current","translationByKey","translateLocaleText","message","getLocaleMessages","applyKeyFields","source","assign","_Object$entries","entries","_Object$entries$_i","keyField","targetField","translationConst","lists","loopOptions","options","map","opt","translated","label","title","unit","placeholder","subtitle","content","tooltip","description","fileName","modalTitle","yAxisName","yAxisName2","emptyText","emptyDescription","emptyDescriptionText","headSubTitleText","btnCloseText","btnUploadText","btnReUploadText","btnImportText","msgUploadWarningText","resultSuccessText","resultFailText","items","children","columns","tabs","actions","buttons","getT","useTranslation","_getT"],"sources":["hooks/useTranslation.js"],"sourcesContent":["import { getLocaleMessages } from '../locales';\nconst keyFieldMap = {\n titleKey: 'title',\n labelKey: 'label',\n textKey: 'text',\n placeholderKey: 'placeholder',\n subtitleKey: 'subtitle',\n contentKey: 'content',\n tooltipKey: 'tooltip',\n messageKey: 'message',\n descriptionKey: 'description',\n unitKey: 'unit',\n fileNameKey: 'fileName',\n modalTitleKey: 'modalTitle',\n yAxisNameKey: 'yAxisName',\n yAxisName2Key: 'yAxisName2',\n emptyTextKey: 'emptyText',\n emptyDescriptionKey: 'emptyDescription',\n emptyDescriptionTextKey: 'emptyDescriptionText',\n headSubTitleTextKey: 'headSubTitleText',\n btnCloseTextKey: 'btnCloseText',\n btnUploadTextKey: 'btnUploadText',\n btnReUploadTextKey: 'btnReUploadText',\n btnImportTextKey: 'btnImportText',\n msgUploadWarningTextKey: 'msgUploadWarningText',\n resultSuccessTextKey: 'resultSuccessText',\n resultFailTextKey: 'resultFailText',\n};\nexport function translationText(text, t) {\n if (typeof text !== 'string') {\n return text;\n }\n const match = text.match(/^t\\('([^']+)'\\)$/);\n if (match) {\n return t(match[1]);\n }\n return text;\n}\nexport function getTranslationKey(text) {\n var _a;\n if (typeof text !== 'string') {\n return undefined;\n }\n return (_a = text.match(/^t\\('([^']+)'\\)$/)) === null || _a === void 0 ? void 0 : _a[1];\n}\nfunction formatMessage(template, values) {\n if (!values) {\n return template;\n }\n return template.replace(/\\{(\\w+)\\}/g, (_, key) => { var _a; return ((_a = values[key]) !== null && _a !== void 0 ? _a : `{${key}}`).toString(); });\n}\nfunction getMessageByPath(messages, id) {\n return id.split('.').reduce((current, key) => current === null || current === void 0 ? void 0 : current[key], messages);\n}\nfunction translationByKey(key, t, values) {\n if (typeof key !== 'string' || !key) {\n return key;\n }\n return formatMessage(t(key, values), values);\n}\nexport function translateLocaleText(text, values) {\n const key = getTranslationKey(text);\n if (!key) {\n return text;\n }\n const message = getMessageByPath(getLocaleMessages(), key) || key;\n return formatMessage(message, values);\n}\nfunction applyKeyFields(source, t) {\n const next = Object.assign({}, source);\n for (const [keyField, targetField] of Object.entries(keyFieldMap)) {\n if (typeof source[keyField] === 'string' && source[keyField]) {\n next[targetField] = translationByKey(source[keyField], t);\n }\n }\n return next;\n}\nexport function translationConst(lists, t) {\n function loopOptions(options) {\n return (options === null || options === void 0 ? void 0 : options.map(opt => {\n if (typeof opt === 'object' && opt !== null) {\n const translated = applyKeyFields(opt, t);\n return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, translated), (translated.label ? { label: translationText(translated.label, t) } : {})), (translated.title ? { title: translationText(translated.title, t) } : {})), (translated.name ? { name: translationText(translated.name, t) } : {})), (translated.unit ? { unit: translationText(translated.unit, t) } : {})), (translated.text ? { text: translationText(translated.text, t) } : {})), (translated.placeholder ? { placeholder: translationText(translated.placeholder, t) } : {})), (translated.subtitle ? { subtitle: translationText(translated.subtitle, t) } : {})), (translated.content ? { content: translationText(translated.content, t) } : {})), (translated.tooltip ? { tooltip: translationText(translated.tooltip, t) } : {})), (translated.message ? { message: translationText(translated.message, t) } : {})), (translated.description ? { description: translationText(translated.description, t) } : {})), (translated.fileName ? { fileName: translationText(translated.fileName, t) } : {})), (translated.modalTitle ? { modalTitle: translationText(translated.modalTitle, t) } : {})), (translated.yAxisName ? { yAxisName: translationText(translated.yAxisName, t) } : {})), (translated.yAxisName2 ? { yAxisName2: translationText(translated.yAxisName2, t) } : {})), (translated.emptyText ? { emptyText: translationText(translated.emptyText, t) } : {})), (translated.emptyDescription ? { emptyDescription: translationText(translated.emptyDescription, t) } : {})), (translated.emptyDescriptionText ? { emptyDescriptionText: translationText(translated.emptyDescriptionText, t) } : {})), (translated.headSubTitleText ? { headSubTitleText: translationText(translated.headSubTitleText, t) } : {})), (translated.btnCloseText ? { btnCloseText: translationText(translated.btnCloseText, t) } : {})), (translated.btnUploadText ? { btnUploadText: translationText(translated.btnUploadText, t) } : {})), (translated.btnReUploadText ? { btnReUploadText: translationText(translated.btnReUploadText, t) } : {})), (translated.btnImportText ? { btnImportText: translationText(translated.btnImportText, t) } : {})), (translated.msgUploadWarningText ? { msgUploadWarningText: translationText(translated.msgUploadWarningText, t) } : {})), (translated.resultSuccessText ? { resultSuccessText: translationText(translated.resultSuccessText, t) } : {})), (translated.resultFailText ? { resultFailText: translationText(translated.resultFailText, t) } : {})), (Array.isArray(translated.options) ? { options: loopOptions(translated.options) } : {})), (Array.isArray(translated.items) ? { items: loopOptions(translated.items) } : {})), (Array.isArray(translated.children) ? { children: loopOptions(translated.children) } : {})), (Array.isArray(translated.columns) ? { columns: loopOptions(translated.columns) } : {})), (Array.isArray(translated.tabs) ? { tabs: loopOptions(translated.tabs) } : {})), (Array.isArray(translated.actions) ? { actions: loopOptions(translated.actions) } : {})), (Array.isArray(translated.buttons) ? { buttons: loopOptions(translated.buttons) } : {}));\n }\n return opt;\n })) || [];\n }\n return loopOptions(lists);\n}\nexport function getT() {\n const t = (id, values) => {\n const message = getMessageByPath(getLocaleMessages(), id) || id;\n return formatMessage(message, values);\n };\n return { t };\n}\nexport function useTranslation() {\n const { t } = getT();\n return {\n t,\n translationText: (text) => translationText(text, t),\n translationConst: (lists) => translationConst(lists, t),\n };\n}\n"],"mappings":"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","ignoreList":[]}
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -9,76 +9,76 @@ interface ActiveIconProps extends IconProps {
|
|
|
9
9
|
active?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare const DownloadIcon: (props: ActiveIconProps) => JSX.Element;
|
|
12
|
-
/**
|
|
12
|
+
/** 鏆傚仠Icon */
|
|
13
13
|
export declare const PauseIcon: (props: IconProps) => JSX.Element;
|
|
14
|
-
/**
|
|
14
|
+
/** 鎾斁Icon */
|
|
15
15
|
export declare const PlayIcon: (props: IconProps) => JSX.Element;
|
|
16
|
-
/**
|
|
16
|
+
/** 鎴浘Icon */
|
|
17
17
|
export declare const CaptureIcon: (props: IconProps) => JSX.Element;
|
|
18
|
-
/**
|
|
18
|
+
/** 鍏ㄥ睆Icon */
|
|
19
19
|
export declare const FullScreenIcon: (props: IconProps) => JSX.Element;
|
|
20
|
-
/**
|
|
20
|
+
/** 閫€鍑哄叏灞廔con */
|
|
21
21
|
export declare const ExitFullScreenIcon: (props: IconProps) => JSX.Element;
|
|
22
|
-
/**
|
|
22
|
+
/** 闊抽噺浣嶪con */
|
|
23
23
|
export declare const VolumeSmallIcon: (props: IconProps) => JSX.Element;
|
|
24
|
-
/**
|
|
24
|
+
/** 闊抽噺楂業con */
|
|
25
25
|
export declare const VolumeLargeIcon: (props: IconProps) => JSX.Element;
|
|
26
|
-
/**
|
|
26
|
+
/** 闈欓煶Icon */
|
|
27
27
|
export declare const VolumeMutedIcon: (props: IconProps) => JSX.Element;
|
|
28
|
-
/**
|
|
28
|
+
/** 璁剧疆Icon */
|
|
29
29
|
export declare const SettingsIcon: (props: IconProps) => JSX.Element;
|
|
30
|
-
/**
|
|
30
|
+
/** 鍏抽棴鍏ㄩ儴Icon */
|
|
31
31
|
export declare const CloseAllIcon: (props: IconProps) => JSX.Element;
|
|
32
|
-
/**
|
|
32
|
+
/** 灞曞紑Icon */
|
|
33
33
|
export declare const ExpandIcon: (props: IconProps) => JSX.Element;
|
|
34
|
-
/**
|
|
34
|
+
/** 鏀剁缉Icon */
|
|
35
35
|
export declare const FoldIcon: (props: IconProps) => JSX.Element;
|
|
36
|
-
/**
|
|
36
|
+
/** 娣诲姞鏍囩Icon */
|
|
37
37
|
export declare const SetTagIcon: (props: ActiveIconProps) => JSX.Element;
|
|
38
|
-
/**
|
|
38
|
+
/** 鍋滄瀵硅Icon */
|
|
39
39
|
export declare const TalkDisableIcon: (props: ActiveIconProps) => JSX.Element;
|
|
40
|
-
/**
|
|
40
|
+
/** 瀵硅Icon */
|
|
41
41
|
export declare const TalkIcon: (props: ActiveIconProps) => JSX.Element;
|
|
42
|
-
/**
|
|
42
|
+
/** 浜戝彴鎺у埗 */
|
|
43
43
|
export declare const CloudControlIcon: (props: ActiveIconProps) => JSX.Element;
|
|
44
|
-
/**
|
|
44
|
+
/** 灞忓箷鍗犳瘮Icon */
|
|
45
45
|
export declare const OccupyingScreenIcon: (props: ActiveIconProps) => JSX.Element;
|
|
46
|
-
/**
|
|
46
|
+
/** 缃戞牸Icon */
|
|
47
47
|
export declare const GridIcon: (props: ActiveIconProps) => JSX.Element;
|
|
48
|
-
/** 1x1
|
|
48
|
+
/** 1x1缃戞牸Icon */
|
|
49
49
|
export declare const Grid1x1Icon: (props: ActiveIconProps) => JSX.Element;
|
|
50
|
-
/** 2x2
|
|
50
|
+
/** 2x2缃戞牸Icon */
|
|
51
51
|
export declare const Grid2x2Icon: (props: ActiveIconProps) => JSX.Element;
|
|
52
|
-
/** 3x3
|
|
52
|
+
/** 3x3缃戞牸Icon */
|
|
53
53
|
export declare const Grid3x3Icon: (props: ActiveIconProps) => JSX.Element;
|
|
54
|
-
/** 4x4
|
|
54
|
+
/** 4x4缃戞牸Icon */
|
|
55
55
|
export declare const Grid4x4Icon: (props: ActiveIconProps) => JSX.Element;
|
|
56
|
-
/** 5x5
|
|
56
|
+
/** 5x5缃戞牸Icon */
|
|
57
57
|
export declare const Grid5x5Icon: (props: ActiveIconProps) => JSX.Element;
|
|
58
|
-
/** 1x5
|
|
58
|
+
/** 1x5缃戞牸Icon */
|
|
59
59
|
export declare const Grid1x5Icon: (props: ActiveIconProps) => JSX.Element;
|
|
60
|
-
/** 1x7
|
|
60
|
+
/** 1x7缃戞牸Icon */
|
|
61
61
|
export declare const Grid1x7Icon: (props: ActiveIconProps) => JSX.Element;
|
|
62
|
-
/** 1x9
|
|
62
|
+
/** 1x9缃戞牸Icon */
|
|
63
63
|
export declare const Grid1x9Icon: (props: ActiveIconProps) => JSX.Element;
|
|
64
|
-
/** 1x12
|
|
64
|
+
/** 1x12缃戞牸Icon */
|
|
65
65
|
export declare const Grid1x12Icon: (props: ActiveIconProps) => JSX.Element;
|
|
66
|
-
/** 1x13
|
|
66
|
+
/** 1x13缃戞牸Icon */
|
|
67
67
|
export declare const Grid1x13Icon: (props: ActiveIconProps) => JSX.Element;
|
|
68
|
-
/** 1x16
|
|
68
|
+
/** 1x16缃戞牸Icon */
|
|
69
69
|
export declare const Grid1x16Icon: (props: ActiveIconProps) => JSX.Element;
|
|
70
|
-
/** 1x21
|
|
70
|
+
/** 1x21缃戞牸Icon */
|
|
71
71
|
export declare const Grid1x21Icon: (props: ActiveIconProps) => JSX.Element;
|
|
72
|
-
/**
|
|
72
|
+
/** 鏍囩Icon */
|
|
73
73
|
export declare const TagIcon: (props: ActiveIconProps) => JSX.Element;
|
|
74
|
-
/**
|
|
74
|
+
/** 鍏抽棴Icon */
|
|
75
75
|
export declare const CloseIcon: (props: IconProps) => JSX.Element;
|
|
76
|
-
/**
|
|
76
|
+
/** 瑙嗛鎾斁Icon */
|
|
77
77
|
export declare const VideoPlayIcon: (props: ActiveIconProps) => JSX.Element;
|
|
78
|
-
/**
|
|
78
|
+
/** 瑙嗛鍏抽棴Icon */
|
|
79
79
|
export declare const VideoCloseIcon: (props: ActiveIconProps) => JSX.Element;
|
|
80
|
-
/**
|
|
80
|
+
/** 鏃堕棿鍒诲害Icon */
|
|
81
81
|
export declare const TimePositionIcon: (props: IconProps) => JSX.Element;
|
|
82
|
-
/**
|
|
82
|
+
/** 鎾斁瑙嗛Icon */
|
|
83
83
|
export declare const PlayVideoBlueIcon: (props: ActiveIconProps) => JSX.Element;
|
|
84
84
|
export {};
|