@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
19 lines (18 loc) • 899 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = default_1;
const utils_1 = require("../utils");
function default_1(fileInfo, api) {
const filePath = fileInfo.path;
if (filePath.endsWith('.html')) {
return;
}
const j = api.jscodeshift;
const rootSource = j(fileInfo.source);
(0, utils_1.tsPropertyRemoval)(fileInfo.source, rootSource, j, '@progress/kendo-angular-conversational-ui', 'ConversationalUIModelFields', 'pinnedByField');
return rootSource.toSource();
}