- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
924 B
JavaScript
20 lines
924 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.processFonts = processFonts;
|
|
var _ReactNativeStyleAttributes = _interopRequireDefault(require("react-native/Libraries/Components/View/ReactNativeStyleAttributes"));
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
// @ts-ignore: No declaration available
|
|
|
|
function processFonts(fontFamilies) {
|
|
var _ReactNativeStyleAttr;
|
|
// @ts-ignore: React Native types are incorrect here and don't consider fontFamily a style value
|
|
const fontFamilyProcessor = (_ReactNativeStyleAttr = _ReactNativeStyleAttributes.default.fontFamily) === null || _ReactNativeStyleAttr === void 0 ? void 0 : _ReactNativeStyleAttr.process;
|
|
if (typeof fontFamilyProcessor === 'function') {
|
|
return fontFamilies.map(fontFamilyProcessor);
|
|
}
|
|
return fontFamilies;
|
|
}
|
|
//# sourceMappingURL=FontProcessor.native.js.map
|