slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
9 lines (8 loc) • 432 B
JavaScript
import { BUILD_IN_ICON_URL_MAP } from "../types";
import { transformIconsExceptWidgetIcon } from "./transform-icons-except-widget-icon";
export function transformIcons(types, widget) {
var _a;
[types, widget] = transformIconsExceptWidgetIcon(types, widget);
types.info.icon = types.info.icon = (_a = BUILD_IN_ICON_URL_MAP[types.info.icon]) !== null && _a !== void 0 ? _a : types.info.icon;
return [types, widget];
}