@opensumi/ide-components 2.22.10 → 2.23.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/dist/1.index.js +135 -135
- package/dist/index.css +1 -1
- package/dist/index.js +1236 -1017
- package/lib/dropdown/dropdown-button.d.ts +21 -0
- package/lib/dropdown/dropdown-button.d.ts.map +1 -0
- package/lib/dropdown/dropdown-button.js +33 -0
- package/lib/dropdown/dropdown-button.js.map +1 -0
- package/lib/dropdown/dropdown.d.ts +1 -1
- package/lib/dropdown/dropdown.d.ts.map +1 -1
- package/lib/dropdown/index.d.ts +2 -1
- package/lib/dropdown/index.d.ts.map +1 -1
- package/lib/dropdown/index.js +3 -1
- package/lib/dropdown/index.js.map +1 -1
- package/lib/dropdown/style.less +18 -0
- package/lib/icon/iconfont/iconManager.d.ts +3 -25
- package/lib/icon/iconfont/iconManager.d.ts.map +1 -1
- package/lib/icon/iconfont/iconManager.js +0 -2
- package/lib/icon/iconfont/iconManager.js.map +1 -1
- package/lib/icon/iconfont/iconMap.d.ts +3 -23
- package/lib/icon/iconfont/iconMap.d.ts.map +1 -1
- package/lib/icon/iconfont/iconMap.js +3 -23
- package/lib/icon/iconfont/iconMap.js.map +1 -1
- package/lib/icon/iconfont/iconfont.css +22 -114
- package/lib/icon/iconfont/iconfont.eot +0 -0
- package/lib/icon/iconfont/iconfont.html +39 -147
- package/lib/icon/iconfont/iconfont.svg +8 -48
- package/lib/icon/iconfont/iconfont.ttf +0 -0
- package/lib/icon/iconfont/iconfont.woff +0 -0
- package/lib/icon/iconfont/iconfont.woff2 +0 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ButtonSize, ButtonType } from '../button';
|
|
3
|
+
import type { ButtonHTMLType } from '../button';
|
|
4
|
+
import type { DropDownProps } from './dropdown';
|
|
5
|
+
export interface DropdownButtonProps extends DropDownProps {
|
|
6
|
+
type?: ButtonType;
|
|
7
|
+
size?: ButtonSize;
|
|
8
|
+
htmlType?: ButtonHTMLType;
|
|
9
|
+
danger?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
onClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
13
|
+
icon?: React.ReactNode;
|
|
14
|
+
href?: string;
|
|
15
|
+
children?: React.ReactNode;
|
|
16
|
+
title?: string;
|
|
17
|
+
buttonsRender?: (buttons: React.ReactNode[]) => React.ReactNode[];
|
|
18
|
+
}
|
|
19
|
+
declare const DropdownButton: React.FC<DropdownButtonProps>;
|
|
20
|
+
export default DropdownButton;
|
|
21
|
+
//# sourceMappingURL=dropdown-button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dropdown-button.d.ts","sourceRoot":"","sources":["../../src/dropdown/dropdown-button.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAGhD,MAAM,WAAW,mBAAoB,SAAQ,aAAa;IACxD,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;IACrD,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,SAAS,EAAE,KAAK,KAAK,CAAC,SAAS,EAAE,CAAC;CACnE;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAyEjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const EllipsisOutlined_1 = tslib_1.__importDefault(require("@ant-design/icons/EllipsisOutlined"));
|
|
5
|
+
const classnames_1 = tslib_1.__importDefault(require("classnames"));
|
|
6
|
+
const React = tslib_1.__importStar(require("react"));
|
|
7
|
+
const button_1 = require("../button");
|
|
8
|
+
const dropdown_1 = tslib_1.__importDefault(require("./dropdown"));
|
|
9
|
+
const DropdownButton = (props) => {
|
|
10
|
+
var _a;
|
|
11
|
+
const { prefixCls: customizePrefixCls, type = 'primary', size = 'default', danger, disabled, loading, onClick, htmlType, children, className, overlay, trigger, align, visible, onVisibleChange, placement, getPopupContainer, href, icon = React.createElement(EllipsisOutlined_1.default, null), title, buttonsRender = (buttons) => buttons, mouseEnterDelay, mouseLeaveDelay, overlayClassName, overlayStyle } = props, restProps = tslib_1.__rest(props, ["prefixCls", "type", "size", "danger", "disabled", "loading", "onClick", "htmlType", "children", "className", "overlay", "trigger", "align", "visible", "onVisibleChange", "placement", "getPopupContainer", "href", "icon", "title", "buttonsRender", "mouseEnterDelay", "mouseLeaveDelay", "overlayClassName", "overlayStyle"]);
|
|
12
|
+
const prefixCls = customizePrefixCls || 'kt-dropdown-button';
|
|
13
|
+
const dropdownProps = {
|
|
14
|
+
align,
|
|
15
|
+
overlay,
|
|
16
|
+
disabled,
|
|
17
|
+
trigger: disabled ? [] : trigger,
|
|
18
|
+
getPopupContainer,
|
|
19
|
+
mouseEnterDelay,
|
|
20
|
+
mouseLeaveDelay,
|
|
21
|
+
overlayClassName,
|
|
22
|
+
overlayStyle,
|
|
23
|
+
};
|
|
24
|
+
dropdownProps.placement = (_a = props === null || props === void 0 ? void 0 : props.placement) !== null && _a !== void 0 ? _a : 'bottomRight';
|
|
25
|
+
const leftButton = (React.createElement(button_1.Button, { size: size, type: type, disabled: disabled, loading: loading, onClick: onClick, htmlType: htmlType, title: title }, children));
|
|
26
|
+
const rightButton = (React.createElement(button_1.Button, { size: size, type: type }, icon !== null && icon !== void 0 ? icon : React.createElement(EllipsisOutlined_1.default, null)));
|
|
27
|
+
const [leftButtonToRender, rightButtonToRender] = buttonsRender([leftButton, rightButton]);
|
|
28
|
+
return (React.createElement("div", Object.assign({}, restProps, { className: (0, classnames_1.default)(prefixCls, className) }),
|
|
29
|
+
leftButtonToRender,
|
|
30
|
+
React.createElement(dropdown_1.default, Object.assign({}, dropdownProps), rightButtonToRender)));
|
|
31
|
+
};
|
|
32
|
+
exports.default = DropdownButton;
|
|
33
|
+
//# sourceMappingURL=dropdown-button.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dropdown-button.js","sourceRoot":"","sources":["../../src/dropdown/dropdown-button.tsx"],"names":[],"mappings":";;;AAAA,kGAAkE;AAClE,oEAAoC;AACpC,qDAA+B;AAE/B,sCAAmC;AAKnC,kEAAkC;AAiBlC,MAAM,cAAc,GAAkC,CAAC,KAAK,EAAE,EAAE;;IAC9D,MAAM,EACJ,SAAS,EAAE,kBAAkB,EAC7B,IAAI,GAAG,SAAS,EAChB,IAAI,GAAG,SAAS,EAChB,MAAM,EACN,QAAQ,EACR,OAAO,EACP,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,OAAO,EACP,OAAO,EACP,KAAK,EACL,OAAO,EACP,eAAe,EACf,SAAS,EACT,iBAAiB,EACjB,IAAI,EACJ,IAAI,GAAG,oBAAC,0BAAgB,OAAG,EAC3B,KAAK,EACL,aAAa,GAAG,CAAC,OAA0B,EAAE,EAAE,CAAC,OAAO,EACvD,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,YAAY,KAEV,KAAK,EADJ,SAAS,kBACV,KAAK,EA3BH,iUA2BL,CAAQ,CAAC;IAEV,MAAM,SAAS,GAAG,kBAAkB,IAAI,oBAAoB,CAAC;IAC7D,MAAM,aAAa,GAAkB;QACnC,KAAK;QACL,OAAO;QACP,QAAQ;QACR,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,OAAO;QAChC,iBAAiB;QACjB,eAAe;QACf,eAAe;QACf,gBAAgB;QAChB,YAAY;KACb,CAAC;IAEF,aAAa,CAAC,SAAS,GAAG,MAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,SAAS,mCAAI,aAAa,CAAC;IAE5D,MAAM,UAAU,GAAG,CACjB,oBAAC,eAAM,IACL,IAAI,EAAE,IAAI,EACV,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,KAAK,EAAE,KAAK,IAEX,QAAQ,CACF,CACV,CAAC;IAEF,MAAM,WAAW,GAAG,CAClB,oBAAC,eAAM,IAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,IAC3B,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,oBAAC,0BAAgB,OAAG,CACtB,CACV,CAAC;IAEF,MAAM,CAAC,kBAAkB,EAAE,mBAAmB,CAAC,GAAG,aAAa,CAAC,CAAC,UAAU,EAAE,WAAW,CAAC,CAAC,CAAC;IAE3F,OAAO,CACL,6CAAS,SAAS,IAAE,SAAS,EAAE,IAAA,oBAAU,EAAC,SAAS,EAAE,SAAS,CAAC;QAC5D,kBAAkB;QACnB,oBAAC,kBAAQ,oBAAK,aAAa,GAAG,mBAAmB,CAAY,CACzD,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,kBAAe,cAAc,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare const Placements: ["topLeft", "topCenter", "topRight", "bottomLeft", "bottomCenter", "bottomRight"];
|
|
3
|
-
type Placement = typeof Placements[number];
|
|
3
|
+
type Placement = (typeof Placements)[number];
|
|
4
4
|
type OverlayFunc = () => React.ReactNode;
|
|
5
5
|
interface Align {
|
|
6
6
|
points?: [string, string];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["../../src/dropdown/dropdown.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,QAAA,MAAM,UAAU,mFAAyF,CAAC;AAC1G,KAAK,SAAS,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["../../src/dropdown/dropdown.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,QAAA,MAAM,UAAU,mFAAyF,CAAC;AAC1G,KAAK,SAAS,GAAG,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC;AAE7C,KAAK,WAAW,GAAG,MAAM,KAAK,CAAC,SAAS,CAAC;AAEzC,UAAU,KAAK;IACb,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC1B,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC1B,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAChC,QAAQ,CAAC,EAAE;QACT,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,OAAO,CAAC,EAAE,OAAO,CAAC;KACnB,CAAC;IACF,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED,MAAM,WAAW,aAAa;IAC5B,OAAO,CAAC,EAAE,CAAC,OAAO,GAAG,OAAO,GAAG,aAAa,CAAC,EAAE,CAAC;IAChD,OAAO,EAAE,KAAK,CAAC,SAAS,GAAG,WAAW,CAAC;IACvC,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC7C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,iBAAiB,CAAC,EAAE,CAAC,WAAW,EAAE,WAAW,KAAK,WAAW,CAAC;IAC9D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,YAAY,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IACnC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,KAAK,CAAC,SAAS,CAAC,aAAa,EAAE,GAAG,CAAC;IACvE,MAAM,CAAC,YAAY;;;;MAIjB;IAEF,iBAAiB;IAWjB,aAAa,cAAe,MAAM,qBA0ChC;IAEF,cAAc,oBA8BZ;IAEF,MAAM;CAGP"}
|
package/lib/dropdown/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dropdown/index.tsx"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAClC,OAAO,cAAc,CAAC;AAEtB,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dropdown/index.tsx"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAClC,OAAO,cAAc,MAAM,mBAAmB,CAAC;AAC/C,OAAO,cAAc,CAAC;AAEtB,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,CAAC"}
|
package/lib/dropdown/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Dropdown = void 0;
|
|
3
|
+
exports.DropdownButton = exports.Dropdown = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const dropdown_1 = tslib_1.__importDefault(require("./dropdown"));
|
|
6
6
|
exports.Dropdown = dropdown_1.default;
|
|
7
|
+
const dropdown_button_1 = tslib_1.__importDefault(require("./dropdown-button"));
|
|
8
|
+
exports.DropdownButton = dropdown_button_1.default;
|
|
7
9
|
require("./style.less");
|
|
8
10
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dropdown/index.tsx"],"names":[],"mappings":";;;;AAAA,kEAAkC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dropdown/index.tsx"],"names":[],"mappings":";;;;AAAA,kEAAkC;AAMzB,mBANF,kBAAQ,CAME;AALjB,gFAA+C;AAK5B,yBALZ,yBAAc,CAKY;AAJjC,wBAAsB"}
|
package/lib/dropdown/style.less
CHANGED
|
@@ -252,3 +252,21 @@
|
|
|
252
252
|
.iconfont-size-under-12px(10px);
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
|
+
|
|
256
|
+
@dropdown-button-prefix-cls: ~'@{prefix}-dropdown-button';
|
|
257
|
+
|
|
258
|
+
.@{dropdown-button-prefix-cls} {
|
|
259
|
+
.reset-component;
|
|
260
|
+
display: flex;
|
|
261
|
+
border-radius: 2px;
|
|
262
|
+
overflow: hidden;
|
|
263
|
+
.@{prefix}-button {
|
|
264
|
+
border-radius: 0;
|
|
265
|
+
&:first-child {
|
|
266
|
+
border-right: 1px solid var(--kt-hintBackground);
|
|
267
|
+
}
|
|
268
|
+
&:last-child {
|
|
269
|
+
padding: 0 6px;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
@@ -2,20 +2,16 @@ import { defaultIconfont } from './iconMap';
|
|
|
2
2
|
export { defaultIconfont };
|
|
3
3
|
export declare const defaultIconMap: {
|
|
4
4
|
'Gitlab-fill': string;
|
|
5
|
-
LinkE: string;
|
|
6
5
|
PR: string;
|
|
7
6
|
ab: string;
|
|
8
7
|
abl: string;
|
|
9
8
|
'add-comments': string;
|
|
10
|
-
anymock: string;
|
|
11
9
|
'arrow-down': string;
|
|
12
10
|
'arrow-right': string;
|
|
13
11
|
arrowdown: string;
|
|
14
12
|
arrowleft: string;
|
|
15
13
|
arrowright: string;
|
|
16
14
|
arrowup: string;
|
|
17
|
-
basement: string;
|
|
18
|
-
'basement-fileicon': string;
|
|
19
15
|
bash: string;
|
|
20
16
|
bell: string;
|
|
21
17
|
branches: string;
|
|
@@ -27,12 +23,10 @@ export declare const defaultIconMap: {
|
|
|
27
23
|
'breakpoint-stop-before': string;
|
|
28
24
|
brew: string;
|
|
29
25
|
'browser-preview': string;
|
|
30
|
-
'bulb-fill': string;
|
|
31
26
|
'caret-right': string;
|
|
32
27
|
check: string;
|
|
33
28
|
'check-circle-fill': string;
|
|
34
29
|
'check-close-circle-o': string;
|
|
35
|
-
'check-square-fill': string;
|
|
36
30
|
'check-square-o': string;
|
|
37
31
|
clear: string;
|
|
38
32
|
close: string;
|
|
@@ -44,14 +38,10 @@ export declare const defaultIconMap: {
|
|
|
44
38
|
'cloud-download': string;
|
|
45
39
|
'cloud-server': string;
|
|
46
40
|
code: string;
|
|
47
|
-
'codelibrary-fill': string;
|
|
48
41
|
'collapse-all': string;
|
|
49
|
-
'compass-fill': string;
|
|
50
42
|
'content-search': string;
|
|
51
43
|
continue: string;
|
|
52
44
|
control: string;
|
|
53
|
-
'control-fill': string;
|
|
54
|
-
'dashboard-fill': string;
|
|
55
45
|
'deactivate-breakpoints': string;
|
|
56
46
|
debug: string;
|
|
57
47
|
'debug-alt-small': string;
|
|
@@ -62,9 +52,8 @@ export declare const defaultIconMap: {
|
|
|
62
52
|
disconnect: string;
|
|
63
53
|
'dock-down': string;
|
|
64
54
|
'dock-right': string;
|
|
65
|
-
doubleright: string;
|
|
66
|
-
revoke: string;
|
|
67
55
|
doubleleft: string;
|
|
56
|
+
doubleright: string;
|
|
68
57
|
down: string;
|
|
69
58
|
download: string;
|
|
70
59
|
drag: string;
|
|
@@ -73,7 +62,6 @@ export declare const defaultIconMap: {
|
|
|
73
62
|
ellipsis: string;
|
|
74
63
|
embed: string;
|
|
75
64
|
error: string;
|
|
76
|
-
execute: string;
|
|
77
65
|
expand: string;
|
|
78
66
|
'expand-all': string;
|
|
79
67
|
experiment: string;
|
|
@@ -89,9 +77,6 @@ export declare const defaultIconMap: {
|
|
|
89
77
|
focus: string;
|
|
90
78
|
folder: string;
|
|
91
79
|
'folder-default': string;
|
|
92
|
-
'folder-fill': string;
|
|
93
|
-
'folder-open': string;
|
|
94
|
-
'folder-open-fill': string;
|
|
95
80
|
'follow-cursor': string;
|
|
96
81
|
fullscreen: string;
|
|
97
82
|
'fullscreen-exit': string;
|
|
@@ -101,12 +86,9 @@ export declare const defaultIconMap: {
|
|
|
101
86
|
'global-search': string;
|
|
102
87
|
go: string;
|
|
103
88
|
hex: string;
|
|
104
|
-
huoban: string;
|
|
105
|
-
'huoban-blue': string;
|
|
106
89
|
'info-circle': string;
|
|
107
90
|
'info-circle-fill': string;
|
|
108
91
|
java: string;
|
|
109
|
-
kaitian: string;
|
|
110
92
|
keyboard: string;
|
|
111
93
|
kotlin: string;
|
|
112
94
|
layout: string;
|
|
@@ -120,7 +102,6 @@ export declare const defaultIconMap: {
|
|
|
120
102
|
message: string;
|
|
121
103
|
min: string;
|
|
122
104
|
minus: string;
|
|
123
|
-
'minus-circle-fill': string;
|
|
124
105
|
mobile: string;
|
|
125
106
|
'mobile-phone': string;
|
|
126
107
|
more: string;
|
|
@@ -142,6 +123,7 @@ export declare const defaultIconMap: {
|
|
|
142
123
|
replace: string;
|
|
143
124
|
repository: string;
|
|
144
125
|
retrieval: string;
|
|
126
|
+
revoke: string;
|
|
145
127
|
right: string;
|
|
146
128
|
rollback: string;
|
|
147
129
|
rust: string;
|
|
@@ -164,10 +146,8 @@ export declare const defaultIconMap: {
|
|
|
164
146
|
terminal: string;
|
|
165
147
|
test: string;
|
|
166
148
|
'time-circle': string;
|
|
167
|
-
'time-circle-fill': string;
|
|
168
149
|
toolkit: string;
|
|
169
150
|
tree: string;
|
|
170
|
-
ubuntu: string;
|
|
171
151
|
undock: string;
|
|
172
152
|
unmax: string;
|
|
173
153
|
unorderedlist: string;
|
|
@@ -176,15 +156,13 @@ export declare const defaultIconMap: {
|
|
|
176
156
|
vim: string;
|
|
177
157
|
wait: string;
|
|
178
158
|
'warning-circle': string;
|
|
179
|
-
|
|
159
|
+
window: string;
|
|
180
160
|
'window-maximize': string;
|
|
181
161
|
zsh: string;
|
|
182
162
|
} & {
|
|
183
|
-
'folder-fill-open': string;
|
|
184
163
|
'search-close': string;
|
|
185
164
|
fold: string;
|
|
186
165
|
'setting-general': string;
|
|
187
|
-
'setting-editor': string;
|
|
188
166
|
'setting-file': string;
|
|
189
167
|
'setting-extension': string;
|
|
190
168
|
'run-debug': string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iconManager.d.ts","sourceRoot":"","sources":["../../../src/icon/iconfont/iconManager.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"iconManager.d.ts","sourceRoot":"","sources":["../../../src/icon/iconfont/iconManager.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,CAAC;AA0B3B,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzB,CAAC;AAEH,cAAM,WAAW;IACf,OAAO,CAAC,eAAe,CAAgB;IAEvC,OAAO,CAAC,QAAQ,CAA+D;IAE/E,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE;QAAE,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE;IAKnE,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE;CAiBtC;AAED,eAAO,MAAM,WAAW,aAAoB,CAAC"}
|
|
@@ -10,11 +10,9 @@ Object.defineProperty(exports, "defaultIconfont", { enumerable: true, get: funct
|
|
|
10
10
|
* key 为 iconName enum, value 为 icon className
|
|
11
11
|
*/
|
|
12
12
|
const typoIconMap = {
|
|
13
|
-
'folder-fill-open': 'folder-fill',
|
|
14
13
|
'search-close': 'close-square',
|
|
15
14
|
'fold': 'collapse-all',
|
|
16
15
|
'setting-general': 'setting',
|
|
17
|
-
'setting-editor': 'codelibrary-fill',
|
|
18
16
|
'setting-file': 'file-text',
|
|
19
17
|
'setting-extension': 'extension',
|
|
20
18
|
'run-debug': 'start',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iconManager.js","sourceRoot":"","sources":["../../../src/icon/iconfont/iconManager.ts"],"names":[],"mappings":";;;;AAAA,0EAA0C;AAE1C,uCAA4C;AACnC,gGADA,yBAAe,OACA;AAExB;;;GAGG;AACH,MAAM,WAAW,GAAG;IAClB,
|
|
1
|
+
{"version":3,"file":"iconManager.js","sourceRoot":"","sources":["../../../src/icon/iconfont/iconManager.ts"],"names":[],"mappings":";;;;AAAA,0EAA0C;AAE1C,uCAA4C;AACnC,gGADA,yBAAe,OACA;AAExB;;;GAGG;AACH,MAAM,WAAW,GAAG;IAClB,cAAc,EAAE,cAAc;IAC9B,MAAM,EAAE,cAAc;IACtB,iBAAiB,EAAE,SAAS;IAC5B,cAAc,EAAE,WAAW;IAC3B,mBAAmB,EAAE,WAAW;IAChC,WAAW,EAAE,OAAO;IACpB,oBAAoB,EAAE,wBAAwB;IAC9C,kBAAkB;IAClB,UAAU,EAAE,UAAU;IACtB,YAAY,EAAE,MAAM;IACpB,OAAO,EAAE,MAAM;IACf,KAAK,EAAE,MAAM;IACb,2BAA2B;IAC3B,UAAU,EAAE,OAAO;IACnB,WAAW,EAAE,MAAM;CACpB,CAAC;AAEF,MAAM,0BAA0B,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,yBAAe,EAAE,WAAW,CAAC,CAAC;AAEtE,QAAA,cAAc,GAAG,IAAI,KAAK,CAAC,0BAA0B,EAAE;IAClE,GAAG,CAAC,GAAG,EAAE,IAAY;QACnB,MAAM,SAAS,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC;QACpC,IAAA,iBAAO,EAAC,CAAC,SAAS,EAAE,SAAS,IAAI,6BAA6B,SAAS,WAAW,CAAC,CAAC;QACpF,OAAO,GAAG,CAAC,IAAI,CAAC,CAAC;IACnB,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,WAAW;IAAjB;QACU,oBAAe,GAAa,EAAE,CAAC;QAE/B,aAAQ,GAA4D,EAAE,CAAC;IAwBjF,CAAC;IAtBC,MAAM,CAAC,MAAc,EAAE,aAA4C;QACjE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,aAAa,CAAC;QACtC,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACpC,CAAC;IAED,UAAU,CAAC,OAAe;QACxB,IAAI,CAAC,OAAO,EAAE;YACZ,IAAA,iBAAO,EAAC,KAAK,EAAE,uBAAuB,GAAG,OAAO,CAAC,CAAC;YAClD,OAAO,EAAE,CAAC;SACX;QACD,IAAI,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC;QAC5C,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE;YACjE,IAAI,SAAS,KAAK,CAAC,EAAE;gBAAE,MAAM;aAAE;SAChC;QACD,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;QAE1E,IAAI,CAAC,SAAS,EAAE;YACd,IAAA,iBAAO,EAAC,KAAK,EAAE,UAAU,GAAG,OAAO,CAAC,CAAC;YACrC,OAAO,EAAE,CAAC;SACX;QACD,OAAO,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,SAAS,CAAC,GAAG,SAAS,EAAE,CAAC,CAAC;IAC5D,CAAC;CACF;AAEY,QAAA,WAAW,GAAG,IAAI,WAAW,EAAE,CAAC;AAE7C,MAAM,mBAAmB,GAAG,sBAAsB,CAAC;AACnD,qBAAqB;AACrB,mBAAW,CAAC,MAAM,CAAC,mBAAmB,EAAE,sBAAc,CAAC,CAAC"}
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
export declare const defaultIconfont: {
|
|
2
2
|
'Gitlab-fill': string;
|
|
3
|
-
LinkE: string;
|
|
4
3
|
PR: string;
|
|
5
4
|
ab: string;
|
|
6
5
|
abl: string;
|
|
7
6
|
'add-comments': string;
|
|
8
|
-
anymock: string;
|
|
9
7
|
'arrow-down': string;
|
|
10
8
|
'arrow-right': string;
|
|
11
9
|
arrowdown: string;
|
|
12
10
|
arrowleft: string;
|
|
13
11
|
arrowright: string;
|
|
14
12
|
arrowup: string;
|
|
15
|
-
basement: string;
|
|
16
|
-
'basement-fileicon': string;
|
|
17
13
|
bash: string;
|
|
18
14
|
bell: string;
|
|
19
15
|
branches: string;
|
|
@@ -25,12 +21,10 @@ export declare const defaultIconfont: {
|
|
|
25
21
|
'breakpoint-stop-before': string;
|
|
26
22
|
brew: string;
|
|
27
23
|
'browser-preview': string;
|
|
28
|
-
'bulb-fill': string;
|
|
29
24
|
'caret-right': string;
|
|
30
25
|
check: string;
|
|
31
26
|
'check-circle-fill': string;
|
|
32
27
|
'check-close-circle-o': string;
|
|
33
|
-
'check-square-fill': string;
|
|
34
28
|
'check-square-o': string;
|
|
35
29
|
clear: string;
|
|
36
30
|
close: string;
|
|
@@ -42,14 +36,10 @@ export declare const defaultIconfont: {
|
|
|
42
36
|
'cloud-download': string;
|
|
43
37
|
'cloud-server': string;
|
|
44
38
|
code: string;
|
|
45
|
-
'codelibrary-fill': string;
|
|
46
39
|
'collapse-all': string;
|
|
47
|
-
'compass-fill': string;
|
|
48
40
|
'content-search': string;
|
|
49
41
|
continue: string;
|
|
50
42
|
control: string;
|
|
51
|
-
'control-fill': string;
|
|
52
|
-
'dashboard-fill': string;
|
|
53
43
|
'deactivate-breakpoints': string;
|
|
54
44
|
debug: string;
|
|
55
45
|
'debug-alt-small': string;
|
|
@@ -60,9 +50,8 @@ export declare const defaultIconfont: {
|
|
|
60
50
|
disconnect: string;
|
|
61
51
|
'dock-down': string;
|
|
62
52
|
'dock-right': string;
|
|
63
|
-
doubleright: string;
|
|
64
|
-
revoke: string;
|
|
65
53
|
doubleleft: string;
|
|
54
|
+
doubleright: string;
|
|
66
55
|
down: string;
|
|
67
56
|
download: string;
|
|
68
57
|
drag: string;
|
|
@@ -71,7 +60,6 @@ export declare const defaultIconfont: {
|
|
|
71
60
|
ellipsis: string;
|
|
72
61
|
embed: string;
|
|
73
62
|
error: string;
|
|
74
|
-
execute: string;
|
|
75
63
|
expand: string;
|
|
76
64
|
'expand-all': string;
|
|
77
65
|
experiment: string;
|
|
@@ -87,9 +75,6 @@ export declare const defaultIconfont: {
|
|
|
87
75
|
focus: string;
|
|
88
76
|
folder: string;
|
|
89
77
|
'folder-default': string;
|
|
90
|
-
'folder-fill': string;
|
|
91
|
-
'folder-open': string;
|
|
92
|
-
'folder-open-fill': string;
|
|
93
78
|
'follow-cursor': string;
|
|
94
79
|
fullscreen: string;
|
|
95
80
|
'fullscreen-exit': string;
|
|
@@ -99,12 +84,9 @@ export declare const defaultIconfont: {
|
|
|
99
84
|
'global-search': string;
|
|
100
85
|
go: string;
|
|
101
86
|
hex: string;
|
|
102
|
-
huoban: string;
|
|
103
|
-
'huoban-blue': string;
|
|
104
87
|
'info-circle': string;
|
|
105
88
|
'info-circle-fill': string;
|
|
106
89
|
java: string;
|
|
107
|
-
kaitian: string;
|
|
108
90
|
keyboard: string;
|
|
109
91
|
kotlin: string;
|
|
110
92
|
layout: string;
|
|
@@ -118,7 +100,6 @@ export declare const defaultIconfont: {
|
|
|
118
100
|
message: string;
|
|
119
101
|
min: string;
|
|
120
102
|
minus: string;
|
|
121
|
-
'minus-circle-fill': string;
|
|
122
103
|
mobile: string;
|
|
123
104
|
'mobile-phone': string;
|
|
124
105
|
more: string;
|
|
@@ -140,6 +121,7 @@ export declare const defaultIconfont: {
|
|
|
140
121
|
replace: string;
|
|
141
122
|
repository: string;
|
|
142
123
|
retrieval: string;
|
|
124
|
+
revoke: string;
|
|
143
125
|
right: string;
|
|
144
126
|
rollback: string;
|
|
145
127
|
rust: string;
|
|
@@ -162,10 +144,8 @@ export declare const defaultIconfont: {
|
|
|
162
144
|
terminal: string;
|
|
163
145
|
test: string;
|
|
164
146
|
'time-circle': string;
|
|
165
|
-
'time-circle-fill': string;
|
|
166
147
|
toolkit: string;
|
|
167
148
|
tree: string;
|
|
168
|
-
ubuntu: string;
|
|
169
149
|
undock: string;
|
|
170
150
|
unmax: string;
|
|
171
151
|
unorderedlist: string;
|
|
@@ -174,7 +154,7 @@ export declare const defaultIconfont: {
|
|
|
174
154
|
vim: string;
|
|
175
155
|
wait: string;
|
|
176
156
|
'warning-circle': string;
|
|
177
|
-
|
|
157
|
+
window: string;
|
|
178
158
|
'window-maximize': string;
|
|
179
159
|
zsh: string;
|
|
180
160
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iconMap.d.ts","sourceRoot":"","sources":["../../../src/icon/iconfont/iconMap.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"iconMap.d.ts","sourceRoot":"","sources":["../../../src/icon/iconfont/iconMap.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+J3B,CAAC"}
|
|
@@ -5,20 +5,16 @@ exports.defaultIconfont = void 0;
|
|
|
5
5
|
// DON NOT EDIT IT MANUALLY
|
|
6
6
|
exports.defaultIconfont = {
|
|
7
7
|
'Gitlab-fill': 'Gitlab-fill',
|
|
8
|
-
'LinkE': 'LinkE',
|
|
9
8
|
'PR': 'PR',
|
|
10
9
|
'ab': 'ab',
|
|
11
10
|
'abl': 'abl',
|
|
12
11
|
'add-comments': 'add-comments',
|
|
13
|
-
'anymock': 'anymock',
|
|
14
12
|
'arrow-down': 'arrow-down',
|
|
15
13
|
'arrow-right': 'arrow-right',
|
|
16
14
|
'arrowdown': 'arrowdown',
|
|
17
15
|
'arrowleft': 'arrowleft',
|
|
18
16
|
'arrowright': 'arrowright',
|
|
19
17
|
'arrowup': 'arrowup',
|
|
20
|
-
'basement': 'basement',
|
|
21
|
-
'basement-fileicon': 'basement-fileicon',
|
|
22
18
|
'bash': 'bash',
|
|
23
19
|
'bell': 'bell',
|
|
24
20
|
'branches': 'branches',
|
|
@@ -30,12 +26,10 @@ exports.defaultIconfont = {
|
|
|
30
26
|
'breakpoint-stop-before': 'breakpoint-stop-before',
|
|
31
27
|
'brew': 'brew',
|
|
32
28
|
'browser-preview': 'browser-preview',
|
|
33
|
-
'bulb-fill': 'bulb-fill',
|
|
34
29
|
'caret-right': 'caret-right',
|
|
35
30
|
'check': 'check',
|
|
36
31
|
'check-circle-fill': 'check-circle-fill',
|
|
37
32
|
'check-close-circle-o': 'check-close-circle-o',
|
|
38
|
-
'check-square-fill': 'check-square-fill',
|
|
39
33
|
'check-square-o': 'check-square-o',
|
|
40
34
|
'clear': 'clear',
|
|
41
35
|
'close': 'close',
|
|
@@ -47,14 +41,10 @@ exports.defaultIconfont = {
|
|
|
47
41
|
'cloud-download': 'cloud-download',
|
|
48
42
|
'cloud-server': 'cloud-server',
|
|
49
43
|
'code': 'code',
|
|
50
|
-
'codelibrary-fill': 'codelibrary-fill',
|
|
51
44
|
'collapse-all': 'collapse-all',
|
|
52
|
-
'compass-fill': 'compass-fill',
|
|
53
45
|
'content-search': 'content-search',
|
|
54
46
|
'continue': 'continue',
|
|
55
47
|
'control': 'control',
|
|
56
|
-
'control-fill': 'control-fill',
|
|
57
|
-
'dashboard-fill': 'dashboard-fill',
|
|
58
48
|
'deactivate-breakpoints': 'deactivate-breakpoints',
|
|
59
49
|
'debug': 'debug',
|
|
60
50
|
'debug-alt-small': 'debug-alt-small',
|
|
@@ -65,9 +55,8 @@ exports.defaultIconfont = {
|
|
|
65
55
|
'disconnect': 'disconnect',
|
|
66
56
|
'dock-down': 'dock-down',
|
|
67
57
|
'dock-right': 'dock-right',
|
|
68
|
-
'doubleright': 'doubleright',
|
|
69
|
-
'revoke': 'revoke',
|
|
70
58
|
'doubleleft': 'doubleleft',
|
|
59
|
+
'doubleright': 'doubleright',
|
|
71
60
|
'down': 'down',
|
|
72
61
|
'download': 'download',
|
|
73
62
|
'drag': 'drag',
|
|
@@ -76,7 +65,6 @@ exports.defaultIconfont = {
|
|
|
76
65
|
'ellipsis': 'ellipsis',
|
|
77
66
|
'embed': 'embed',
|
|
78
67
|
'error': 'error',
|
|
79
|
-
'execute': 'execute',
|
|
80
68
|
'expand': 'expand',
|
|
81
69
|
'expand-all': 'expand-all',
|
|
82
70
|
'experiment': 'experiment',
|
|
@@ -92,9 +80,6 @@ exports.defaultIconfont = {
|
|
|
92
80
|
'focus': 'focus',
|
|
93
81
|
'folder': 'folder',
|
|
94
82
|
'folder-default': 'folder-default',
|
|
95
|
-
'folder-fill': 'folder-fill',
|
|
96
|
-
'folder-open': 'folder-open',
|
|
97
|
-
'folder-open-fill': 'folder-open-fill',
|
|
98
83
|
'follow-cursor': 'follow-cursor',
|
|
99
84
|
'fullscreen': 'fullscreen',
|
|
100
85
|
'fullscreen-exit': 'fullscreen-exit',
|
|
@@ -104,12 +89,9 @@ exports.defaultIconfont = {
|
|
|
104
89
|
'global-search': 'global-search',
|
|
105
90
|
'go': 'go',
|
|
106
91
|
'hex': 'hex',
|
|
107
|
-
'huoban': 'huoban',
|
|
108
|
-
'huoban-blue': 'huoban-blue',
|
|
109
92
|
'info-circle': 'info-circle',
|
|
110
93
|
'info-circle-fill': 'info-circle-fill',
|
|
111
94
|
'java': 'java',
|
|
112
|
-
'kaitian': 'kaitian',
|
|
113
95
|
'keyboard': 'keyboard',
|
|
114
96
|
'kotlin': 'kotlin',
|
|
115
97
|
'layout': 'layout',
|
|
@@ -123,7 +105,6 @@ exports.defaultIconfont = {
|
|
|
123
105
|
'message': 'message',
|
|
124
106
|
'min': 'min',
|
|
125
107
|
'minus': 'minus',
|
|
126
|
-
'minus-circle-fill': 'minus-circle-fill',
|
|
127
108
|
'mobile': 'mobile',
|
|
128
109
|
'mobile-phone': 'mobile-phone',
|
|
129
110
|
'more': 'more',
|
|
@@ -145,6 +126,7 @@ exports.defaultIconfont = {
|
|
|
145
126
|
'replace': 'replace',
|
|
146
127
|
'repository': 'repository',
|
|
147
128
|
'retrieval': 'retrieval',
|
|
129
|
+
'revoke': 'revoke',
|
|
148
130
|
'right': 'right',
|
|
149
131
|
'rollback': 'rollback',
|
|
150
132
|
'rust': 'rust',
|
|
@@ -167,10 +149,8 @@ exports.defaultIconfont = {
|
|
|
167
149
|
'terminal': 'terminal',
|
|
168
150
|
'test': 'test',
|
|
169
151
|
'time-circle': 'time-circle',
|
|
170
|
-
'time-circle-fill': 'time-circle-fill',
|
|
171
152
|
'toolkit': 'toolkit',
|
|
172
153
|
'tree': 'tree',
|
|
173
|
-
'ubuntu': 'ubuntu',
|
|
174
154
|
'undock': 'undock',
|
|
175
155
|
'unmax': 'unmax',
|
|
176
156
|
'unorderedlist': 'unorderedlist',
|
|
@@ -179,7 +159,7 @@ exports.defaultIconfont = {
|
|
|
179
159
|
'vim': 'vim',
|
|
180
160
|
'wait': 'wait',
|
|
181
161
|
'warning-circle': 'warning-circle',
|
|
182
|
-
'
|
|
162
|
+
'window': 'window',
|
|
183
163
|
'window-maximize': 'window-maximize',
|
|
184
164
|
'zsh': 'zsh',
|
|
185
165
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iconMap.js","sourceRoot":"","sources":["../../../src/icon/iconfont/iconMap.ts"],"names":[],"mappings":";;;AAAA,6CAA6C;AAC7C,2BAA2B;AACd,QAAA,eAAe,GAAG;IAC7B,aAAa,EAAE,aAAa;IAC5B,
|
|
1
|
+
{"version":3,"file":"iconMap.js","sourceRoot":"","sources":["../../../src/icon/iconfont/iconMap.ts"],"names":[],"mappings":"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"}
|