igniteui-angular 21.0.0-beta.1 → 21.0.0-beta.2
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.
|
@@ -680,6 +680,10 @@ function migrateImportDeclaration(node, sourceFile) {
|
|
|
680
680
|
}
|
|
681
681
|
const importPath = node.moduleSpecifier.text;
|
|
682
682
|
const namedBindings = node.importClause.namedBindings;
|
|
683
|
+
// Only process main entry imports (not sub-entry points which igNamedImportFilter will allow)
|
|
684
|
+
if (importPath !== tsUtils_1.IG_PACKAGE_NAME && importPath !== tsUtils_1.IG_LICENSED_PACKAGE_NAME) {
|
|
685
|
+
return null;
|
|
686
|
+
}
|
|
683
687
|
// Group imports by entry point
|
|
684
688
|
const entryPointGroups = new Map();
|
|
685
689
|
for (const element of namedBindings.elements) {
|
package/package.json
CHANGED