@beinformed/codemod 1.0.0-beta.2 → 1.0.0-beta.3

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.
@@ -527,6 +527,7 @@ var mapping_default = {
527
527
  getColorContrast: "@beinformed/react/theme",
528
528
  getContentPath: "@beinformed/ui/settings",
529
529
  getContextPath: "@beinformed/ui/settings",
530
+ setContextPath: "@beinformed/ui/settings",
530
531
  getContextPathModularUI: "@beinformed/ui/settings",
531
532
  getContextPathServer: "@beinformed/ui/settings",
532
533
  getContrastYIQ: "@beinformed/react/theme",
@@ -534,6 +535,7 @@ var mapping_default = {
534
535
  getCookieFromRequest: "@beinformed/react/server",
535
536
  getDataFromServer: "@beinformed/react/redux",
536
537
  getDisplayName: "@beinformed/react/utils",
538
+ getSwimLaneDiagramConfiguration: "@beinformed/react/utils",
537
539
  getEnabledLocales: "@beinformed/ui/settings",
538
540
  getEntryDate: "@beinformed/react/redux",
539
541
  getFirstModelByInstance: "@beinformed/react/redux",
@@ -689,10 +691,12 @@ var mapping_default = {
689
691
  useLocationKey: "@beinformed/react/hooks",
690
692
  useLogin: "@beinformed/react/hooks",
691
693
  useLogout: "@beinformed/react/hooks",
694
+ useLookup: "@beinformed/react/hooks",
692
695
  useMessage: "@beinformed/react/hooks",
693
696
  useModal: "@beinformed/react/hooks",
694
697
  useModelCatalog: "@beinformed/react/hooks",
695
698
  useModels: "@beinformed/react/hooks",
699
+ useModelSelectors: "@beinformed/react/hooks",
696
700
  useModularUI: "@beinformed/react/hooks",
697
701
  useModularUIBasic: "@beinformed/react/hooks",
698
702
  useModularUIKey: "@beinformed/react/hooks",
@@ -709,17 +713,32 @@ var mapping_default = {
709
713
  useReload: "@beinformed/react/hooks",
710
714
  useRepeatableAttributeSet: "@beinformed/react/hooks",
711
715
  useRetrieveFormsOnModel: "@beinformed/react/hooks",
716
+ useSearch: "@beinformed/react/hooks",
712
717
  useTab: "@beinformed/react/hooks",
713
718
  useTheme: "@beinformed/react/theme",
714
719
  useTranslate: "@beinformed/react/hooks",
715
720
  useUserProfile: "@beinformed/react/hooks",
716
721
  validateFormObject: "@beinformed/react/redux",
717
- xhr: "@beinformed/ui/utils"
722
+ xhr: "@beinformed/ui/utils",
723
+ get: "lodash",
724
+ has: "lodash",
725
+ isPlainObject: "lodash",
726
+ KEYCODES: "@beinformed/ui/constants"
718
727
  };
719
728
 
720
729
  // src/transforms/migrate-imports.ts
721
730
  var symbolMappings = mapping_default;
722
- var renames = {};
731
+ var renames = {
732
+ IS_SYNC: "IS_GRAALJS",
733
+ getBasePath: "getContextPath",
734
+ getBasePathModularUI: "getContextPathModularUI",
735
+ getBasePathServer: "getContextPathServer",
736
+ resolveModel: "ModelResolver.resolve",
737
+ serverFetch: "graalFetch",
738
+ formatValue: "NumberUtil.formatValue",
739
+ parseToNumber: "NumberUtil.parseToNumber",
740
+ parseNumberToString: "NumberUtil.parseNumberToString"
741
+ };
723
742
  function transformer(fileInfo, api, options) {
724
743
  const isFlow = fileInfo.source.includes("@flow") || fileInfo.path.endsWith(".js");
725
744
  const j = api.jscodeshift.withParser(isFlow ? "flow" : "tsx");
@@ -774,30 +793,49 @@ function transformer(fileInfo, api, options) {
774
793
  specTarget = getTargetModuleForSymbol(originalModule);
775
794
  }
776
795
  return specTarget === module2;
777
- }).map((spec) => {
796
+ }).flatMap((spec) => {
778
797
  const clonedSpec = { ...spec };
779
798
  if (clonedSpec.type === "ImportSpecifier") {
780
799
  const currentImportedName = clonedSpec.imported.name;
781
800
  if (currentImportedName && renames[currentImportedName]) {
782
801
  const newName = renames[currentImportedName];
783
- clonedSpec.imported = {
784
- ...clonedSpec.imported,
785
- name: newName
786
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
787
- };
788
- if (!clonedSpec.local || clonedSpec.local.name === currentImportedName) {
802
+ if (newName.includes(".")) {
803
+ const parts = newName.split(".");
804
+ const rootSymbol = parts[0];
805
+ const isAliased = clonedSpec.local && clonedSpec.local.name !== currentImportedName;
806
+ if (isAliased) {
807
+ return [clonedSpec];
808
+ }
809
+ clonedSpec.imported = {
810
+ ...clonedSpec.imported,
811
+ name: rootSymbol
812
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
813
+ };
789
814
  clonedSpec.local = {
790
815
  ...clonedSpec.local,
816
+ name: rootSymbol
817
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
818
+ };
819
+ } else {
820
+ clonedSpec.imported = {
821
+ ...clonedSpec.imported,
791
822
  name: newName
792
823
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
793
824
  };
825
+ if (!clonedSpec.local || clonedSpec.local.name === currentImportedName) {
826
+ clonedSpec.local = {
827
+ ...clonedSpec.local,
828
+ name: newName
829
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
830
+ };
831
+ }
794
832
  }
795
833
  }
796
834
  }
797
835
  if (node.importKind && !clonedSpec.importKind) {
798
836
  clonedSpec.importKind = node.importKind;
799
837
  }
800
- return clonedSpec;
838
+ return [clonedSpec];
801
839
  });
802
840
  const newImport = j.importDeclaration(specifiers, j.literal(module2));
803
841
  const firstKind = specifiers[0]?.importKind;
@@ -829,6 +867,39 @@ function transformer(fileInfo, api, options) {
829
867
  }
830
868
  }
831
869
  });
870
+ if (node.specifiers) {
871
+ node.specifiers.forEach((spec) => {
872
+ if (spec.type === "ImportSpecifier") {
873
+ const importedName = spec.imported.name;
874
+ const localName = spec.local.name;
875
+ if (importedName && localName && renames[importedName] && importedName === localName) {
876
+ const newName = renames[importedName];
877
+ root.find(j.Identifier, { name: localName }).filter((path) => {
878
+ const parent = path.parent.node;
879
+ if (j.ImportSpecifier.check(parent) || j.ImportDefaultSpecifier.check(parent) || j.ImportNamespaceSpecifier.check(parent)) {
880
+ return false;
881
+ }
882
+ if (j.MemberExpression.check(parent) && parent.property === path.node && !parent.computed) {
883
+ return false;
884
+ }
885
+ if (j.Property.check(parent) && parent.key === path.node && !parent.shorthand && !parent.computed) {
886
+ return false;
887
+ }
888
+ return true;
889
+ }).replaceWith(() => {
890
+ if (newName.includes(".")) {
891
+ const [object, property] = newName.split(".");
892
+ return j.memberExpression(
893
+ j.identifier(object),
894
+ j.identifier(property)
895
+ );
896
+ }
897
+ return j.identifier(newName);
898
+ });
899
+ }
900
+ }
901
+ });
902
+ }
832
903
  });
833
904
  const mergedImports = /* @__PURE__ */ new Map();
834
905
  const firstOccurrence = /* @__PURE__ */ new Map();
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/transforms/migrate-imports.ts","../../src/transforms/mapping.json"],"sourcesContent":["import rawMapping from \"./mapping.json\";\n\nimport type {\n ASTPath,\n CommentBlock,\n CommentLine,\n ImportDeclaration,\n ImportDefaultSpecifier,\n ImportNamespaceSpecifier,\n ImportSpecifier,\n JSCodeshift,\n} from \"jscodeshift\";\n\ntype Comment = CommentLine | CommentBlock;\n\ntype ExtendedImportSpecifier = (\n | ImportSpecifier\n | ImportDefaultSpecifier\n | ImportNamespaceSpecifier\n) & {\n importKind?: \"value\" | \"type\" | \"typeof\" | null;\n};\n\nconst symbolMappings: Record<string, string> = rawMapping;\nconst renames: Record<string, string> = {};\n\n/**\n * jscodeshift transform to migrate imports from the old\n * '@beinformed/ui/*' structure to the new '@beinformed/...' packages.\n *\n * - Detects whether to use Flow or TSX parser based on the file extension (.js) or the presence of @flow pragma.\n * - Uses the mapping.json file to determine the new package for each imported symbol.\n * - For symbols not found in mapping.json, keeps the import and adds a warning comment.\n * - Combines multiple imports that resolve to the same target package into a single import declaration.\n * - Preserves comments and pragmas.\n *\n * The mapping.json is expected to be a flat object:\n * {\n * \"SymbolName\": \"@beinformed/new-package-path\",\n * ...\n * }\n */\nexport default function transformer(\n fileInfo: { path: string; source: string },\n api: { jscodeshift: JSCodeshift },\n options?: unknown,\n): string {\n const isFlow =\n fileInfo.source.includes(\"@flow\") || fileInfo.path.endsWith(\".js\");\n const j = api.jscodeshift.withParser(isFlow ? \"flow\" : \"tsx\");\n const root = j(fileInfo.source);\n\n root.find(j.ImportDeclaration).forEach((pathNode) => {\n const node = pathNode.node;\n const source: unknown = node.source.value;\n\n if (typeof source !== \"string\") {\n return;\n }\n\n // Determine target modules for this declaration\n const targetModules = new Set<string>();\n const originalModule = source;\n\n // Helper: find target module for a given imported symbol\n const getTargetModuleForSymbol = (symbolName: string): string => {\n if (symbolName in symbolMappings) {\n return symbolMappings[symbolName];\n }\n return originalModule;\n };\n\n const isOldModule =\n source.startsWith(\"@beinformed/ui\") ||\n source.startsWith(\"@beinformed/react-\");\n\n if (!isOldModule) {\n return;\n }\n\n if (!node.specifiers || node.specifiers.length === 0) {\n return;\n }\n\n node.specifiers.forEach((spec) => {\n let importedName: string | null;\n if (spec.type === \"ImportDefaultSpecifier\") {\n importedName = \"default\";\n } else if (spec.type === \"ImportNamespaceSpecifier\") {\n importedName = \"*\";\n } else if (spec.type === \"ImportSpecifier\") {\n importedName =\n (spec.imported as { name?: string }).name ??\n (spec.imported as { value?: string }).value ??\n null;\n } else {\n importedName = null;\n }\n\n const targetModule =\n importedName == null\n ? getTargetModuleForSymbol(originalModule)\n : getTargetModuleForSymbol(importedName);\n targetModules.add(targetModule);\n });\n\n const newImports = Array.from(targetModules).map((module) => {\n const specifiers = (node.specifiers || [])\n .filter((spec) => {\n let specTarget: string;\n if (spec.type === \"ImportDefaultSpecifier\") {\n specTarget = getTargetModuleForSymbol(\"default\");\n } else if (spec.type === \"ImportNamespaceSpecifier\") {\n specTarget = getTargetModuleForSymbol(\"*\");\n } else if (spec.type === \"ImportSpecifier\") {\n specTarget = getTargetModuleForSymbol(\n (spec.imported as { name?: string }).name || \"\",\n );\n } else {\n specTarget = getTargetModuleForSymbol(originalModule);\n }\n return specTarget === module;\n })\n .map((spec) => {\n const clonedSpec: ExtendedImportSpecifier = { ...spec };\n if (clonedSpec.type === \"ImportSpecifier\") {\n const currentImportedName = (\n clonedSpec.imported as { name?: string }\n ).name;\n if (currentImportedName && renames[currentImportedName]) {\n const newName = renames[currentImportedName];\n clonedSpec.imported = {\n ...clonedSpec.imported,\n name: newName,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } as any;\n if (\n !clonedSpec.local ||\n (clonedSpec.local as { name?: string }).name ===\n currentImportedName\n ) {\n clonedSpec.local = {\n ...clonedSpec.local,\n name: newName,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } as any;\n }\n }\n }\n\n if (node.importKind && !clonedSpec.importKind) {\n clonedSpec.importKind = node.importKind;\n }\n\n return clonedSpec;\n });\n\n const newImport = j.importDeclaration(specifiers, j.literal(module));\n\n const firstKind = (specifiers[0] as ExtendedImportSpecifier)?.importKind;\n if (\n firstKind &&\n specifiers.every(\n (s: ExtendedImportSpecifier) => s.importKind === firstKind,\n )\n ) {\n newImport.importKind = firstKind;\n specifiers.forEach((s: ExtendedImportSpecifier) => {\n delete s.importKind;\n });\n }\n\n return newImport;\n });\n\n // Assign comments to the first new import\n if (node.comments && node.comments.length > 0) {\n newImports[0].comments = node.comments;\n }\n\n j(pathNode).replaceWith(newImports);\n\n // Add TODO comments for unknown symbols\n newImports.forEach((newImport) => {\n const module = newImport.source.value;\n if (typeof module === \"string\") {\n const isUnknown =\n (module.startsWith(\"@beinformed/ui\") ||\n module.startsWith(\"@beinformed/react-\")) &&\n !Object.values(symbolMappings).includes(module);\n\n if (isUnknown) {\n const todoComment = j.commentLine(\n \" TODO: Could not find mapping for this import. Please fix manually.\",\n true,\n false,\n );\n newImport.comments = [...(newImport.comments || []), todoComment];\n }\n }\n });\n });\n\n // Second pass: Merge imports with the same path\n const mergedImports = new Map<string, ExtendedImportSpecifier[]>();\n const firstOccurrence = new Map<string, ASTPath<ImportDeclaration>>();\n const allComments = new Map<string, Comment[]>();\n\n root.find(j.ImportDeclaration).forEach((pathNode) => {\n const node = pathNode.node;\n const module = node.source.value;\n\n if (typeof module !== \"string\") {\n return;\n }\n\n if (!mergedImports.has(module)) {\n mergedImports.set(module, []);\n firstOccurrence.set(module, pathNode);\n allComments.set(module, []);\n }\n\n if (node.comments) {\n allComments.get(module)!.push(...(node.comments as Comment[]));\n }\n\n if (node.specifiers) {\n mergedImports\n .get(module)!\n .push(...(node.specifiers as ExtendedImportSpecifier[]));\n }\n\n if (firstOccurrence.get(module) !== pathNode) {\n j(pathNode).remove();\n }\n });\n\n mergedImports.forEach((specifiers, module) => {\n const pathNode = firstOccurrence.get(module);\n if (!pathNode) {\n return;\n }\n const node = pathNode.node;\n\n const uniqueSpecifiers: ExtendedImportSpecifier[] = [];\n const seenLocalNames = new Set<string>();\n specifiers.forEach((spec) => {\n const localName = (spec.local as { name?: string })?.name;\n if (localName && !seenLocalNames.has(localName)) {\n uniqueSpecifiers.push(spec);\n seenLocalNames.add(localName);\n }\n });\n\n node.specifiers = uniqueSpecifiers;\n\n if (allComments.has(module) && allComments.get(module)!.length > 0) {\n // De-duplicate comments if they were merged multiple times\n const uniqueComments: Comment[] = [];\n const seenComments = new Set();\n for (const comment of allComments.get(module)!) {\n const key = `${comment.type}:${comment.value}:${comment.leading}`;\n if (!seenComments.has(key)) {\n uniqueComments.push(comment);\n seenComments.add(key);\n }\n }\n node.comments = uniqueComments;\n }\n\n // Restore declaration-level importKind if all specifiers have it,\n // OR if it was already set (e.g. from splitting)\n const allSpecifiersHaveSameKind =\n uniqueSpecifiers.length > 0 &&\n uniqueSpecifiers.every(\n (s) => s.importKind === uniqueSpecifiers[0].importKind,\n );\n\n if (allSpecifiersHaveSameKind && uniqueSpecifiers[0].importKind) {\n node.importKind = uniqueSpecifiers[0].importKind;\n uniqueSpecifiers.forEach((s) => {\n delete s.importKind;\n });\n }\n });\n\n return root.toSource(options || { quote: \"double\" });\n}\n","{\n \"ALL_CONTENT_IN_DATA_SETTING\": \"@beinformed/ui/settings\",\n \"ATTRIBUTE_TYPE\": \"@beinformed/ui/models\",\n \"ATTRIBUTE_WIDTH\": \"@beinformed/ui/constants\",\n \"AUTOSAVE_STATUS\": \"@beinformed/react/redux\",\n \"AVATAR\": \"@beinformed/ui/layouthints\",\n \"AVATAR_IN_TITLE\": \"@beinformed/ui/layouthints\",\n \"ActionCollection\": \"@beinformed/ui/models\",\n \"ActionContributions\": \"@beinformed/ui/models\",\n \"ActionData\": \"@beinformed/ui/models\",\n \"ActionFieldData\": \"@beinformed/ui/models\",\n \"ActionModel\": \"@beinformed/ui/models\",\n \"AnchorElementData\": \"@beinformed/ui/models\",\n \"AnonymousDynamicSchema\": \"@beinformed/ui/models\",\n \"ApplicationContributions\": \"@beinformed/ui/models\",\n \"ApplicationData\": \"@beinformed/ui/models\",\n \"ApplicationLinksContributions\": \"@beinformed/ui/models\",\n \"ApplicationLinksData\": \"@beinformed/ui/models\",\n \"ApplicationModel\": \"@beinformed/ui/models\",\n \"AssignmentFilterContribution\": \"@beinformed/ui/models\",\n \"AssignmentFilterData\": \"@beinformed/ui/models\",\n \"AssignmentFilterModel\": \"@beinformed/ui/models\",\n \"AttributeCollection\": \"@beinformed/ui/models\",\n \"AttributeCollectionContributions\": \"@beinformed/ui/models\",\n \"AttributeContent\": \"@beinformed/ui/models\",\n \"AttributeContentElement\": \"@beinformed/ui/models\",\n \"AttributeContributions\": \"@beinformed/ui/models\",\n \"AttributeData\": \"@beinformed/ui/models\",\n \"AttributeDataMapper\": \"@beinformed/ui/models\",\n \"AttributeFactory\": \"@beinformed/ui/models\",\n \"AttributeModel\": \"@beinformed/ui/models\",\n \"AttributeModularUIData\": \"@beinformed/ui/models\",\n \"AttributePropertyElement\": \"@beinformed/ui/models\",\n \"AttributeRequestData\": \"@beinformed/ui/models\",\n \"AttributeSetContributions\": \"@beinformed/ui/models\",\n \"AttributeSetModel\": \"@beinformed/ui/models\",\n \"AttributeTextFragmentElement\": \"@beinformed/ui/models\",\n \"AttributeValue\": \"@beinformed/ui/models\",\n \"AuthState\": \"@beinformed/react/redux\",\n \"Authenticate\": \"@beinformed/ui/modularui\",\n \"AuthenticationType\": \"@beinformed/ui/modularui\",\n \"BEIDispatch\": \"@beinformed/react/redux\",\n \"BEIStore\": \"@beinformed/react/redux\",\n \"BSNConstraint\": \"@beinformed/ui/models\",\n \"BaseAttributeContributions\": \"@beinformed/ui/models\",\n \"BaseAttributeModel\": \"@beinformed/ui/models\",\n \"BaseCollection\": \"@beinformed/ui/models\",\n \"BaseDateTimeUtil\": \"@beinformed/ui/utils\",\n \"BaseDetailContributions\": \"@beinformed/ui/models\",\n \"BaseDetailData\": \"@beinformed/ui/models\",\n \"BaseLayoutHintRule\": \"@beinformed/ui/models\",\n \"BaseModel\": \"@beinformed/ui/models\",\n \"BaseStringAttributeContributions\": \"@beinformed/ui/models\",\n \"BeforeRenderHook\": \"@beinformed/react/redux\",\n \"BeforeRenderHookProps\": \"@beinformed/react/redux\",\n \"BinaryAttributeContributions\": \"@beinformed/ui/models\",\n \"BooleanAttributeContributions\": \"@beinformed/ui/models\",\n \"BooleanAttributeModel\": \"@beinformed/ui/models\",\n \"CAPTCHA_PATH\": \"@beinformed/ui/constants\",\n \"CASEVIEW_LINK\": \"@beinformed/ui/layouthints\",\n \"CHANGEPASSWORD_PATH\": \"@beinformed/ui/constants\",\n \"CHOICETYPE\": \"@beinformed/ui/models\",\n \"CONFIRM_PASSWORD\": \"@beinformed/ui/layouthints\",\n \"CONTENT_PATH\": \"@beinformed/ui/constants\",\n \"CREATE_ACTION\": \"@beinformed/ui/layouthints\",\n \"Cache\": \"@beinformed/ui/utils\",\n \"CacheType\": \"@beinformed/ui/utils\",\n \"CaptchaAttributeContributions\": \"@beinformed/ui/models\",\n \"CaptchaAttributeModel\": \"@beinformed/ui/models\",\n \"CaptchaRequest\": \"@beinformed/ui/modularui\",\n \"CaseSearchModel\": \"@beinformed/ui/models\",\n \"CaseViewContributions\": \"@beinformed/ui/models\",\n \"CaseViewData\": \"@beinformed/ui/models\",\n \"CaseViewLinksContributions\": \"@beinformed/ui/models\",\n \"CaseViewModel\": \"@beinformed/ui/models\",\n \"ChildrenKey\": \"@beinformed/ui/models\",\n \"ChoiceAttributeContributions\": \"@beinformed/ui/models\",\n \"ChoiceAttributeModel\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionCollection\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionContributions\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionModel\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionModelOptions\": \"@beinformed/ui/models\",\n \"ChoiceFilterContribution\": \"@beinformed/ui/models\",\n \"ChoiceFilterData\": \"@beinformed/ui/models\",\n \"CompositeAttributeChildCollection\": \"@beinformed/ui/models\",\n \"CompositeAttributeContributions\": \"@beinformed/ui/models\",\n \"CompositeAttributeModel\": \"@beinformed/ui/models\",\n \"CompositeDynamicSchema\": \"@beinformed/ui/models\",\n \"ConceptDetailData\": \"@beinformed/ui/models\",\n \"ConceptDetailModel\": \"@beinformed/ui/models\",\n \"ConceptIndexContributions\": \"@beinformed/ui/models\",\n \"ConceptIndexData\": \"@beinformed/ui/models\",\n \"ConceptIndexFilterModel\": \"@beinformed/ui/models\",\n \"ConceptIndexModel\": \"@beinformed/ui/models\",\n \"ConceptLinkCollection\": \"@beinformed/ui/models\",\n \"ConceptLinkData\": \"@beinformed/ui/models\",\n \"ConceptLinkModel\": \"@beinformed/ui/models\",\n \"ConceptRelationCollection\": \"@beinformed/ui/models\",\n \"ConceptRelationModel\": \"@beinformed/ui/models\",\n \"ConceptTypeDetailData\": \"@beinformed/ui/models\",\n \"ConceptTypeDetailModel\": \"@beinformed/ui/models\",\n \"ConfigurationElements\": \"@beinformed/ui/models\",\n \"ConfigurationException\": \"@beinformed/ui/exceptions\",\n \"ConstraintCollection\": \"@beinformed/ui/models\",\n \"ConstraintModel\": \"@beinformed/ui/models\",\n \"ContentConfiguration\": \"@beinformed/ui/models\",\n \"ContentConfigurationContributions\": \"@beinformed/ui/models\",\n \"ContentConfigurationElements\": \"@beinformed/ui/models\",\n \"ContentConfigurationEndResults\": \"@beinformed/ui/models\",\n \"ContentConfigurationQuestions\": \"@beinformed/ui/models\",\n \"ContentConfigurationResults\": \"@beinformed/ui/models\",\n \"ContentContributions\": \"@beinformed/ui/models\",\n \"ContentData\": \"@beinformed/ui/models\",\n \"ContentDataItem\": \"@beinformed/ui/models\",\n \"ContentDataSection\": \"@beinformed/ui/models\",\n \"ContentDetailContributions\": \"@beinformed/ui/models\",\n \"ContentDetailData\": \"@beinformed/ui/models\",\n \"ContentElement\": \"@beinformed/ui/models\",\n \"ContentIndexContributions\": \"@beinformed/ui/models\",\n \"ContentIndexData\": \"@beinformed/ui/models\",\n \"ContentIndexModel\": \"@beinformed/ui/models\",\n \"ContentLinkCollection\": \"@beinformed/ui/models\",\n \"ContentLinkData\": \"@beinformed/ui/models\",\n \"ContentLinkModel\": \"@beinformed/ui/models\",\n \"ContentModel\": \"@beinformed/ui/models\",\n \"ContentTOCData\": \"@beinformed/ui/models\",\n \"ContentTOCModel\": \"@beinformed/ui/models\",\n \"ContentTypeContributions\": \"@beinformed/ui/models\",\n \"ContentTypeData\": \"@beinformed/ui/models\",\n \"ContentTypeModel\": \"@beinformed/ui/models\",\n \"Contributions\": \"@beinformed/ui/types\",\n \"ContributionsForFilterCollection\": \"@beinformed/ui/models\",\n \"DATETIME_OFFSET_FORMAT\": \"@beinformed/ui/constants\",\n \"DEFAULT_AUTHENTICATION_TYPE\": \"@beinformed/ui/constants\",\n \"DEFAULT_FIRST_WEEK_CONTAINS_DATE\": \"@beinformed/ui/constants\",\n \"DEFAULT_WEEK_STARTS_ON\": \"@beinformed/ui/constants\",\n \"DELETE_ACTION\": \"@beinformed/ui/layouthints\",\n \"DEPENDENT_ATTRIBUTE\": \"@beinformed/ui/layouthints\",\n \"DEPENDENT_ATTRIBUTE_CONTROL\": \"@beinformed/ui/layouthints\",\n \"DISABLED\": \"@beinformed/ui/layouthints\",\n \"Data\": \"@beinformed/ui/types\",\n \"DateBoundaryConstraint\": \"@beinformed/ui/models\",\n \"DateFilterContribution\": \"@beinformed/ui/models\",\n \"DateFilterData\": \"@beinformed/ui/models\",\n \"DateRangeFilterContribution\": \"@beinformed/ui/models\",\n \"DateRangeFilterData\": \"@beinformed/ui/models\",\n \"DateTimeDateFormatConstraint\": \"@beinformed/ui/models\",\n \"DateTimeTimeFormatConstraint\": \"@beinformed/ui/models\",\n \"DateTimeUtil\": \"@beinformed/ui/utils\",\n \"DateUtil\": \"@beinformed/ui/utils\",\n \"DatetimeAttributeContributions\": \"@beinformed/ui/models\",\n \"DatetimeAttributeModel\": \"@beinformed/ui/models\",\n \"DatetimeFormatConstraint\": \"@beinformed/ui/models\",\n \"DecimalFormat\": \"@beinformed/ui/utils\",\n \"DefaultLinksData\": \"@beinformed/ui/types\",\n \"DependentAttribute\": \"@beinformed/ui/models\",\n \"DetailData\": \"@beinformed/ui/models\",\n \"DetailModel\": \"@beinformed/ui/models\",\n \"DetailPanelContributions\": \"@beinformed/ui/models\",\n \"DynamicSchema\": \"@beinformed/ui/models\",\n \"EndResultsConfiguration\": \"@beinformed/ui/models\",\n \"ErrorBoundary\": \"@beinformed/react/components\",\n \"ErrorBoundaryFallback\": \"@beinformed/react/components\",\n \"ErrorBoundaryFallbackProps\": \"@beinformed/react/components\",\n \"ErrorBoundaryProps\": \"@beinformed/react/components\",\n \"ErrorCollection\": \"@beinformed/ui/models\",\n \"ErrorCollectionType\": \"@beinformed/ui/models\",\n \"ErrorMessage\": \"@beinformed/ui/types\",\n \"ErrorModel\": \"@beinformed/ui/models\",\n \"ErrorObjectData\": \"@beinformed/ui/models\",\n \"ErrorResponse\": \"@beinformed/ui/models\",\n \"ErrorState\": \"@beinformed/react/redux\",\n \"FILTER_TYPE\": \"@beinformed/ui/models\",\n \"FetchException\": \"@beinformed/ui/exceptions\",\n \"FetchModelPayload\": \"@beinformed/react/redux\",\n \"FetchModelResult\": \"@beinformed/react/redux\",\n \"FileEntryType\": \"@beinformed/ui/models\",\n \"FileExtensionConstraint\": \"@beinformed/ui/models\",\n \"FileSizeConstraint\": \"@beinformed/ui/models\",\n \"FilesType\": \"@beinformed/ui/models\",\n \"FilesizeConstraintsType\": \"@beinformed/ui/models\",\n \"FiletypeConstraintsType\": \"@beinformed/ui/models\",\n \"FilterCollection\": \"@beinformed/ui/models\",\n \"FilterCollectionContributions\": \"@beinformed/ui/models\",\n \"FilterCollectionData\": \"@beinformed/ui/models\",\n \"FilterContribution\": \"@beinformed/ui/models\",\n \"FilterData\": \"@beinformed/ui/models\",\n \"FilterFactory\": \"@beinformed/ui/models\",\n \"FilterModel\": \"@beinformed/ui/models\",\n \"FormContributions\": \"@beinformed/ui/models\",\n \"FormData\": \"@beinformed/ui/models\",\n \"FormModel\": \"@beinformed/ui/models\",\n \"FormObjectContributions\": \"@beinformed/ui/models\",\n \"FormObjectData\": \"@beinformed/ui/models\",\n \"FormObjectModel\": \"@beinformed/ui/models\",\n \"GenericConstraintModel\": \"@beinformed/ui/models\",\n \"GroupData\": \"@beinformed/ui/models\",\n \"GroupModel\": \"@beinformed/ui/models\",\n \"GroupingContributions\": \"@beinformed/ui/models\",\n \"GroupingData\": \"@beinformed/ui/models\",\n \"GroupingModel\": \"@beinformed/ui/models\",\n \"GroupingPanelContributions\": \"@beinformed/ui/models\",\n \"GroupingPanelData\": \"@beinformed/ui/models\",\n \"GroupingPanelModel\": \"@beinformed/ui/models\",\n \"HIDE_IN_USER_INTERFACE\": \"@beinformed/ui/layouthints\",\n \"HIDE_WHEN_EMPTY\": \"@beinformed/ui/layouthints\",\n \"HTTP_METHODS\": \"@beinformed/ui/constants\",\n \"HelptextAttributeModel\": \"@beinformed/ui/models\",\n \"HistoryLocation\": \"@beinformed/ui/types\",\n \"HookOptions\": \"@beinformed/react/hooks\",\n \"Href\": \"@beinformed/ui/models\",\n \"HrefState\": \"@beinformed/ui/types\",\n \"HttpServletRequestJava\": \"@beinformed/react/server\",\n \"I18nState\": \"@beinformed/react/redux\",\n \"IBANConstraint\": \"@beinformed/ui/models\",\n \"IFilter\": \"@beinformed/ui/models\",\n \"INCLUDE_TIME_OFFSET\": \"@beinformed/ui/settings\",\n \"INITIAL_FILTER\": \"@beinformed/ui/layouthints\",\n \"INITIAL_TOTAL_FILESIZE\": \"@beinformed/ui/layouthints\",\n \"INTERNAL_LOGIN_TYPE\": \"@beinformed/ui/constants\",\n \"ISO_DATE\": \"@beinformed/ui/types\",\n \"ISO_DATETIME_FORMAT\": \"@beinformed/ui/constants\",\n \"ISO_DATE_FORMAT\": \"@beinformed/ui/constants\",\n \"ISO_TIMESTAMP_FORMAT\": \"@beinformed/ui/constants\",\n \"ISO_TIME_FORMAT\": \"@beinformed/ui/constants\",\n \"IS_DEV\": \"@beinformed/ui/utils\",\n \"IS_GRAALJS\": \"@beinformed/ui/constants\",\n \"IS_SERVER\": \"@beinformed/ui/constants\",\n \"IllegalArgumentException\": \"@beinformed/ui/exceptions\",\n \"IllegalReturnException\": \"@beinformed/ui/exceptions\",\n \"IllegalStateException\": \"@beinformed/ui/exceptions\",\n \"Init\": \"@beinformed/react/client\",\n \"JsonParseException\": \"@beinformed/ui/exceptions\",\n \"LOGIN_PASSWORD_SETTING\": \"@beinformed/ui/constants\",\n \"LOGIN_PATH\": \"@beinformed/ui/settings\",\n \"LOGIN_PATH_SETTING\": \"@beinformed/ui/constants\",\n \"LOGIN_TYPE\": \"@beinformed/ui/constants\",\n \"LOGIN_USERNAME_SETTING\": \"@beinformed/ui/constants\",\n \"LOGOUT_PATH\": \"@beinformed/ui/settings\",\n \"LOGOUT_PATH_SETTING\": \"@beinformed/ui/constants\",\n \"LabelAttributeModel\": \"@beinformed/ui/models\",\n \"LabelData\": \"@beinformed/ui/models\",\n \"LabelType\": \"@beinformed/ui/models\",\n \"LayoutHintCollection\": \"@beinformed/ui/models\",\n \"LayoutHintConfiguration\": \"@beinformed/ui/layouthints\",\n \"LayoutHintProcessor\": \"@beinformed/ui/layouthints\",\n \"LayoutHintRule\": \"@beinformed/ui/models\",\n \"LayoutHintRuleCollection\": \"@beinformed/ui/models\",\n \"LayoutHintRulesUpdater\": \"@beinformed/ui/models\",\n \"LinkCollection\": \"@beinformed/ui/models\",\n \"LinkContributions\": \"@beinformed/ui/models\",\n \"LinkData\": \"@beinformed/ui/models\",\n \"LinkModel\": \"@beinformed/ui/models\",\n \"Links\": \"@beinformed/ui/models\",\n \"ListContributions\": \"@beinformed/ui/models\",\n \"ListData\": \"@beinformed/ui/models\",\n \"ListDetailAttributeData\": \"@beinformed/ui/models\",\n \"ListDetailContributions\": \"@beinformed/ui/models\",\n \"ListDetailData\": \"@beinformed/ui/models\",\n \"ListDetailModel\": \"@beinformed/ui/models\",\n \"ListHeaderModel\": \"@beinformed/ui/models\",\n \"ListHref\": \"@beinformed/ui/models\",\n \"ListItemCollection\": \"@beinformed/ui/models\",\n \"ListItemData\": \"@beinformed/ui/models\",\n \"ListItemModel\": \"@beinformed/ui/models\",\n \"ListModel\": \"@beinformed/ui/models\",\n \"Locale\": \"@beinformed/react/i18n\",\n \"LocaleConfiguration\": \"@beinformed/react/i18n\",\n \"Locales\": \"@beinformed/react/i18n\",\n \"LookupOptionCollection\": \"@beinformed/ui/models\",\n \"LookupOptionData\": \"@beinformed/ui/models\",\n \"LookupOptionsContributions\": \"@beinformed/ui/models\",\n \"LookupOptionsData\": \"@beinformed/ui/models\",\n \"LookupOptionsModel\": \"@beinformed/ui/models\",\n \"MANDATORY\": \"@beinformed/ui/layouthints\",\n \"MAX_TOTAL_FILESIZE\": \"@beinformed/ui/layouthints\",\n \"MODULARUI_STATUS\": \"@beinformed/react/redux\",\n \"MandatoryConstraint\": \"@beinformed/ui/models\",\n \"MandatoryRangeConstraint\": \"@beinformed/ui/models\",\n \"MaybeAttributeValue\": \"@beinformed/ui/models\",\n \"MemoAttributeContributions\": \"@beinformed/ui/models\",\n \"MemoAttributeModel\": \"@beinformed/ui/models\",\n \"Message\": \"@beinformed/react/i18n\",\n \"MessageObject\": \"@beinformed/react/i18n\",\n \"MessageParameters\": \"@beinformed/ui/types\",\n \"MissingObjectData\": \"@beinformed/ui/models\",\n \"MissingPropertyException\": \"@beinformed/ui/exceptions\",\n \"ModalState\": \"@beinformed/react/redux\",\n \"ModalsState\": \"@beinformed/react/redux\",\n \"ModelCatalogContributions\": \"@beinformed/ui/models\",\n \"ModelCatalogData\": \"@beinformed/ui/models\",\n \"ModelCatalogModel\": \"@beinformed/ui/models\",\n \"ModelCatalogState\": \"@beinformed/react/redux\",\n \"ModelCategory\": \"@beinformed/ui/models\",\n \"ModelCategoryCollection\": \"@beinformed/ui/models\",\n \"ModelCategoryModel\": \"@beinformed/ui/models\",\n \"ModelConfig\": \"@beinformed/ui/modularui\",\n \"ModelEntry\": \"@beinformed/react/redux\",\n \"ModelOptions\": \"@beinformed/ui/models\",\n \"ModelResolver\": \"@beinformed/ui/modularui\",\n \"ModelWithChildModels\": \"@beinformed/ui/models\",\n \"ModularUIError\": \"@beinformed/ui/modularui\",\n \"ModularUIErrorJSON\": \"@beinformed/ui/exceptions\",\n \"ModularUIErrorResponse\": \"@beinformed/ui/models\",\n \"ModularUIModel\": \"@beinformed/ui/models\",\n \"ModularUIModelWithChildModels\": \"@beinformed/ui/models\",\n \"ModularUIRequest\": \"@beinformed/ui/modularui\",\n \"ModularUIRequestOptions\": \"@beinformed/ui/utils\",\n \"ModularUIResponse\": \"@beinformed/ui/modularui\",\n \"ModularUISpecificErrorResponse\": \"@beinformed/ui/modularui\",\n \"ModularUIState\": \"@beinformed/react/redux\",\n \"MoneyAttributeContributions\": \"@beinformed/ui/models\",\n \"MoneyAttributeModel\": \"@beinformed/ui/models\",\n \"NOTIFICATION_TYPES\": \"@beinformed/react/redux\",\n \"NamedDynamicSchema\": \"@beinformed/ui/models\",\n \"NetworkException\": \"@beinformed/ui/exceptions\",\n \"NormalizedLinkContributions\": \"@beinformed/ui/models\",\n \"NormalizedLinkData\": \"@beinformed/ui/models\",\n \"NotAllowedUriException\": \"@beinformed/ui/exceptions\",\n \"NotFoundException\": \"@beinformed/ui/exceptions\",\n \"NotificationState\": \"@beinformed/react/redux\",\n \"NumberAttributeContributions\": \"@beinformed/ui/models\",\n \"NumberAttributeModel\": \"@beinformed/ui/models\",\n \"NumberBoundaryConstraint\": \"@beinformed/ui/models\",\n \"NumberFilterContributions\": \"@beinformed/ui/models\",\n \"NumberFilterData\": \"@beinformed/ui/models\",\n \"NumberFormatConstraint\": \"@beinformed/ui/models\",\n \"NumberGroupingConstraint\": \"@beinformed/ui/models\",\n \"NumberRangeFilterContribution\": \"@beinformed/ui/models\",\n \"NumberRangeFilterData\": \"@beinformed/ui/models\",\n \"NumberUtil\": \"@beinformed/ui/utils\",\n \"OPTION_MODE\": \"@beinformed/ui/models\",\n \"OffsetInfo\": \"@beinformed/ui/utils\",\n \"PARAMETER_SEPARATOR\": \"@beinformed/ui/constants\",\n \"PARAMETER_TYPES\": \"@beinformed/ui/constants\",\n \"PagesizeModel\": \"@beinformed/ui/models\",\n \"PagingContributions\": \"@beinformed/ui/models\",\n \"PagingData\": \"@beinformed/ui/models\",\n \"PagingModel\": \"@beinformed/ui/models\",\n \"Parameter\": \"@beinformed/ui/models\",\n \"ParameterCollection\": \"@beinformed/ui/models\",\n \"PasswordAttributeContributions\": \"@beinformed/ui/models\",\n \"PasswordAttributeModel\": \"@beinformed/ui/models\",\n \"PasswordConfirmConstraint\": \"@beinformed/ui/models\",\n \"PasswordLowerAndUpperCaseConstraint\": \"@beinformed/ui/models\",\n \"PasswordMinNumericCharactersConstraint\": \"@beinformed/ui/models\",\n \"PasswordMinSpecialCharactersConstraint\": \"@beinformed/ui/models\",\n \"PasswordThreeConsecutiveCharactersNotAllowedConstraint\": \"@beinformed/ui/models\",\n \"PreferenceValue\": \"@beinformed/react/redux\",\n \"PreferencesState\": \"@beinformed/react/redux\",\n \"ProcessStatusSettingsContributions\": \"@beinformed/ui/models\",\n \"ProcessStatusSettingsData\": \"@beinformed/ui/models\",\n \"ProcessStatusSettingsModel\": \"@beinformed/ui/models\",\n \"ProgressHandler\": \"@beinformed/ui/utils\",\n \"ProgressIndicatorState\": \"@beinformed/react/redux\",\n \"PropertyData\": \"@beinformed/ui/models\",\n \"PropertyElement\": \"@beinformed/ui/models\",\n \"PropertyType\": \"@beinformed/ui/models\",\n \"Props\": \"@beinformed/react/theme\",\n \"QuestionConfiguration\": \"@beinformed/ui/models\",\n \"RENDER_SECTION_LABEL\": \"@beinformed/ui/layouthints\",\n \"RESOURCE_PATH\": \"@beinformed/ui/constants\",\n \"RangeAttributeContributions\": \"@beinformed/ui/models\",\n \"RangeAttributeModel\": \"@beinformed/ui/models\",\n \"RangeConstraint\": \"@beinformed/ui/models\",\n \"RangeFilterModel\": \"@beinformed/ui/models\",\n \"RedirectObject\": \"@beinformed/ui/models\",\n \"RedirectTextObject\": \"@beinformed/ui/models\",\n \"RegexConstraint\": \"@beinformed/ui/models\",\n \"RegexObject\": \"@beinformed/ui/models\",\n \"RelatedConceptContributions\": \"@beinformed/ui/models\",\n \"RelatedConceptsData\": \"@beinformed/ui/models\",\n \"RelationData\": \"@beinformed/ui/models\",\n \"RelationDirection\": \"@beinformed/ui/models\",\n \"RelationTypeType\": \"@beinformed/ui/models\",\n \"RemainingTotalUploadSize\": \"@beinformed/ui/models\",\n \"RequestBaseOptions\": \"@beinformed/ui/utils\",\n \"RequestOptions\": \"@beinformed/ui/utils\",\n \"RequestURLOptions\": \"@beinformed/ui/utils\",\n \"ResourceCollection\": \"@beinformed/ui/models\",\n \"ResourceData\": \"@beinformed/ui/types\",\n \"ResourceModel\": \"@beinformed/ui/models\",\n \"ResultsConfiguration\": \"@beinformed/ui/models\",\n \"ResultsData\": \"@beinformed/ui/models\",\n \"RootState\": \"@beinformed/react/redux\",\n \"RouterLocation\": \"@beinformed/react/redux\",\n \"RouterState\": \"@beinformed/react/redux\",\n \"SHOW_ONE_RESULT_AS_DETAIL\": \"@beinformed/ui/layouthints\",\n \"SORT_OPTIONS\": \"@beinformed/ui/layouthints\",\n \"SORT_ORDER\": \"@beinformed/ui/models\",\n \"SearchFilter\": \"@beinformed/react/hooks\",\n \"SectionData\": \"@beinformed/ui/models\",\n \"SectionFragment\": \"@beinformed/ui/models\",\n \"SectionModel\": \"@beinformed/ui/models\",\n \"SectionReferenceType\": \"@beinformed/ui/models\",\n \"ServerPreferenceValue\": \"@beinformed/react/server\",\n \"ServerRequestException\": \"@beinformed/ui/exceptions\",\n \"Setting\": \"@beinformed/ui/settings\",\n \"ShowNotificationArguments\": \"@beinformed/react/redux\",\n \"SortOptionModel\": \"@beinformed/ui/models\",\n \"SortingModel\": \"@beinformed/ui/models\",\n \"SourceReferenceCollection\": \"@beinformed/ui/models\",\n \"SourceReferenceData\": \"@beinformed/ui/models\",\n \"SourceReferenceModel\": \"@beinformed/ui/models\",\n \"StringAttributeContributions\": \"@beinformed/ui/models\",\n \"StringAttributeModel\": \"@beinformed/ui/models\",\n \"StringFilterContributions\": \"@beinformed/ui/models\",\n \"StringFilterData\": \"@beinformed/ui/models\",\n \"StringFilterModel\": \"@beinformed/ui/models\",\n \"StringLengthConstraint\": \"@beinformed/ui/models\",\n \"SubSectionData\": \"@beinformed/ui/models\",\n \"SubSectionModel\": \"@beinformed/ui/models\",\n \"SuccessData\": \"@beinformed/ui/models\",\n \"TIMEVERSION_FILTER_NAME\": \"@beinformed/ui/constants\",\n \"TITLE\": \"@beinformed/ui/layouthints\",\n \"TabContributions\": \"@beinformed/ui/models\",\n \"TabData\": \"@beinformed/ui/models\",\n \"TabLinksContributions\": \"@beinformed/ui/models\",\n \"TabLinksData\": \"@beinformed/ui/models\",\n \"TabModel\": \"@beinformed/ui/models\",\n \"TargetModel\": \"@beinformed/ui/modularui\",\n \"TaskGroupCollection\": \"@beinformed/ui/models\",\n \"TaskGroupContributions\": \"@beinformed/ui/models\",\n \"TaskGroupData\": \"@beinformed/ui/models\",\n \"TaskGroupModel\": \"@beinformed/ui/models\",\n \"TaxonomyType\": \"@beinformed/ui/models\",\n \"TemplateProps\": \"@beinformed/react/server\",\n \"TextFragmentData\": \"@beinformed/ui/models\",\n \"TextFragmentElement\": \"@beinformed/ui/models\",\n \"TextFragmentType\": \"@beinformed/ui/models\",\n \"TextWithPlaceholders\": \"@beinformed/ui/types\",\n \"Theme\": \"@beinformed/react/theme\",\n \"ThemePropValue\": \"@beinformed/react/theme\",\n \"ThemePropertyException\": \"@beinformed/ui/exceptions\",\n \"ThemeProvider\": \"@beinformed/react/theme\",\n \"TimeUtil\": \"@beinformed/ui/utils\",\n \"TimeoutException\": \"@beinformed/ui/exceptions\",\n \"TimestampUtil\": \"@beinformed/ui/utils\",\n \"TitleObject\": \"@beinformed/ui/models\",\n \"UPDATE_ACTION\": \"@beinformed/ui/layouthints\",\n \"UPLOAD_PATH\": \"@beinformed/ui/constants\",\n \"USERPROFILE_PATH\": \"@beinformed/ui/constants\",\n \"UnauthorizedException\": \"@beinformed/ui/exceptions\",\n \"UnsupportedOperationException\": \"@beinformed/ui/exceptions\",\n \"UpdateFormOptions\": \"@beinformed/react/hooks\",\n \"UpdateHandler\": \"@beinformed/ui/utils\",\n \"UploadAttributeModel\": \"@beinformed/ui/models\",\n \"UploadRequest\": \"@beinformed/ui/modularui\",\n \"UseModularUIBasicOptions\": \"@beinformed/react/hooks\",\n \"UserContributions\": \"@beinformed/ui/models\",\n \"UserData\": \"@beinformed/ui/models\",\n \"UserModel\": \"@beinformed/ui/models\",\n \"UserProfileModel\": \"@beinformed/ui/models\",\n \"UserServicesContributions\": \"@beinformed/ui/models\",\n \"UserServicesData\": \"@beinformed/ui/models\",\n \"UserServicesModel\": \"@beinformed/ui/models\",\n \"UtilThemeProps\": \"@beinformed/react/theme\",\n \"WindowWithContext\": \"@beinformed/react/client\",\n \"XMLAttributeModel\": \"@beinformed/ui/models\",\n \"XMLConstraint\": \"@beinformed/ui/models\",\n \"addContentLoadedEvent\": \"@beinformed/react/client\",\n \"addLayoutHintRule\": \"@beinformed/ui/models\",\n \"addRepeatableAttributeSet\": \"@beinformed/react/redux\",\n \"allKeysByHref\": \"@beinformed/react/redux\",\n \"allSettings\": \"@beinformed/ui/settings\",\n \"authReducer\": \"@beinformed/react/redux\",\n \"autosaveFormObject\": \"@beinformed/react/redux\",\n \"autosubmitFormObject\": \"@beinformed/react/redux\",\n \"autoupdateFormObject\": \"@beinformed/react/redux\",\n \"availableLocales\": \"@beinformed/react/i18n\",\n \"cacheContributions\": \"@beinformed/ui/settings\",\n \"cancelForm\": \"@beinformed/react/redux\",\n \"cancelRepeatableAttributeSet\": \"@beinformed/react/redux\",\n \"changeHSL\": \"@beinformed/react/theme\",\n \"changePassword\": \"@beinformed/react/redux\",\n \"clearCookie\": \"@beinformed/ui/utils\",\n \"client\": \"@beinformed/react/client\",\n \"closeModal\": \"@beinformed/react/redux\",\n \"createHash\": \"@beinformed/ui/utils\",\n \"createHashFromHref\": \"@beinformed/ui/utils\",\n \"createHead\": \"@beinformed/react/server\",\n \"createHref\": \"@beinformed/ui/utils\",\n \"createLocalesWithConfiguredErrors\": \"@beinformed/react/i18n\",\n \"createTheme\": \"@beinformed/react/theme\",\n \"createUUID\": \"@beinformed/ui/utils\",\n \"darkenColor\": \"@beinformed/react/theme\",\n \"dehydrate\": \"@beinformed/react/server\",\n \"dismissNotification\": \"@beinformed/react/redux\",\n \"errorReducer\": \"@beinformed/react/redux\",\n \"fetchModel\": \"@beinformed/react/redux\",\n \"filterParameters\": \"@beinformed/ui/utils\",\n \"getActiveModelByInstance\": \"@beinformed/react/redux\",\n \"getActiveModels\": \"@beinformed/react/redux\",\n \"getAllFinishedModels\": \"@beinformed/react/redux\",\n \"getAllModelsByInstance\": \"@beinformed/react/redux\",\n \"getApplication\": \"@beinformed/react/redux\",\n \"getBooleanSetting\": \"@beinformed/ui/settings\",\n \"getBrowserHistory\": \"@beinformed/react/redux\",\n \"getCaptchaPath\": \"@beinformed/ui/settings\",\n \"getColorContrast\": \"@beinformed/react/theme\",\n \"getContentPath\": \"@beinformed/ui/settings\",\n \"getContextPath\": \"@beinformed/ui/settings\",\n \"getContextPathModularUI\": \"@beinformed/ui/settings\",\n \"getContextPathServer\": \"@beinformed/ui/settings\",\n \"getContrastYIQ\": \"@beinformed/react/theme\",\n \"getCookie\": \"@beinformed/ui/utils\",\n \"getCookieFromRequest\": \"@beinformed/react/server\",\n \"getDataFromServer\": \"@beinformed/react/redux\",\n \"getDisplayName\": \"@beinformed/react/utils\",\n \"getEnabledLocales\": \"@beinformed/ui/settings\",\n \"getEntryDate\": \"@beinformed/react/redux\",\n \"getFirstModelByInstance\": \"@beinformed/react/redux\",\n \"getFullRequestLocation\": \"@beinformed/react/server\",\n \"getFullRequestUrl\": \"@beinformed/react/server\",\n \"getHint\": \"@beinformed/ui/layouthints\",\n \"getLayoutHintConfiguration\": \"@beinformed/ui/layouthints\",\n \"getLocale\": \"@beinformed/react/redux\",\n \"getLocales\": \"@beinformed/react/redux\",\n \"getNumberSetting\": \"@beinformed/ui/settings\",\n \"getPreferredLocale\": \"@beinformed/react/server\",\n \"getProp\": \"@beinformed/react/theme\",\n \"getRepositoryResourceUrl\": \"@beinformed/ui/utils\",\n \"getRequestLocale\": \"@beinformed/react/redux\",\n \"getSetting\": \"@beinformed/ui/settings\",\n \"getStringSetting\": \"@beinformed/ui/settings\",\n \"getThemeNumberProp\": \"@beinformed/react/theme\",\n \"getThemeProp\": \"@beinformed/react/theme\",\n \"getThemeStringProp\": \"@beinformed/react/theme\",\n \"getUploadPath\": \"@beinformed/ui/settings\",\n \"getYIQ\": \"@beinformed/react/theme\",\n \"go\": \"@beinformed/react/redux\",\n \"goBack\": \"@beinformed/react/redux\",\n \"goForward\": \"@beinformed/react/redux\",\n \"graalFetch\": \"@beinformed/ui/utils\",\n \"gutter\": \"@beinformed/react/theme\",\n \"handleBeforeRenderHooks\": \"@beinformed/react/redux\",\n \"handleError\": \"@beinformed/react/redux\",\n \"handleUnauthorized\": \"@beinformed/react/redux\",\n \"hasAllContentInData\": \"@beinformed/ui/settings\",\n \"htmlpage\": \"@beinformed/react/server\",\n \"i18nReducer\": \"@beinformed/react/redux\",\n \"initModels\": \"@beinformed/react/redux\",\n \"isIncludeTimeOffsetInDateTimes\": \"@beinformed/ui/settings\",\n \"keyByHref\": \"@beinformed/react/redux\",\n \"languages\": \"@beinformed/react/i18n\",\n \"lightenColor\": \"@beinformed/react/theme\",\n \"locationChange\": \"@beinformed/react/redux\",\n \"login\": \"@beinformed/react/redux\",\n \"loginFailed\": \"@beinformed/react/redux\",\n \"loginPasswordField\": \"@beinformed/ui/settings\",\n \"loginPath\": \"@beinformed/ui/settings\",\n \"loginSuccess\": \"@beinformed/react/redux\",\n \"loginType\": \"@beinformed/ui/settings\",\n \"loginUsernameField\": \"@beinformed/ui/settings\",\n \"logout\": \"@beinformed/react/redux\",\n \"logoutPath\": \"@beinformed/ui/settings\",\n \"logoutSuccess\": \"@beinformed/react/redux\",\n \"mergeLayoutHintConfigurations\": \"@beinformed/builder\",\n \"mergeRefs\": \"@beinformed/react/utils\",\n \"modalsReducer\": \"@beinformed/react/redux\",\n \"modelByHref\": \"@beinformed/react/redux\",\n \"modelCatalogReducer\": \"@beinformed/react/redux\",\n \"modularUIReducer\": \"@beinformed/react/redux\",\n \"noAction\": \"@beinformed/react/redux\",\n \"normalizeLinkJSON\": \"@beinformed/ui/models\",\n \"notificationReducer\": \"@beinformed/react/redux\",\n \"parseUrl\": \"@beinformed/ui/utils\",\n \"preferencesReducer\": \"@beinformed/react/redux\",\n \"previousObject\": \"@beinformed/react/redux\",\n \"progressIndicatorReducer\": \"@beinformed/react/redux\",\n \"push\": \"@beinformed/react/redux\",\n \"receiveLocale\": \"@beinformed/react/redux\",\n \"rehydrate\": \"@beinformed/react/client\",\n \"reloadApplication\": \"@beinformed/react/redux\",\n \"reloadModel\": \"@beinformed/react/redux\",\n \"removeModelByKey\": \"@beinformed/react/redux\",\n \"removeRepeatableAttributeSet\": \"@beinformed/react/redux\",\n \"removeUnwantedHtml\": \"@beinformed/ui/utils\",\n \"renderBackground\": \"@beinformed/react/theme\",\n \"renderContrastColor\": \"@beinformed/react/theme\",\n \"renderSSRMinimal\": \"@beinformed/react/server\",\n \"replace\": \"@beinformed/react/redux\",\n \"resetAuthErrors\": \"@beinformed/react/redux\",\n \"resetModularUI\": \"@beinformed/react/redux\",\n \"resourceExists\": \"@beinformed/ui/utils\",\n \"resourceRedirectsToSecureLogin\": \"@beinformed/ui/utils\",\n \"retrieveText\": \"@beinformed/ui/utils\",\n \"roundedCorners\": \"@beinformed/react/theme\",\n \"routerMiddleware\": \"@beinformed/react/redux\",\n \"routerReducer\": \"@beinformed/react/redux\",\n \"saveChangePassword\": \"@beinformed/react/redux\",\n \"saveError\": \"@beinformed/react/redux\",\n \"sendAuthenticationError\": \"@beinformed/react/redux\",\n \"serverNoSSR\": \"@beinformed/react/server\",\n \"setAllContentInDataSetting\": \"@beinformed/react/redux\",\n \"setApplication\": \"@beinformed/react/server\",\n \"setConfigurationTheme\": \"@beinformed/react/theme\",\n \"setCookie\": \"@beinformed/ui/utils\",\n \"setCustomErrorResponseHandler\": \"@beinformed/react/redux\",\n \"setDateTimeSettings\": \"@beinformed/react/redux\",\n \"setI18n\": \"@beinformed/react/i18n\",\n \"setLocales\": \"@beinformed/react/redux\",\n \"setLoginPreferences\": \"@beinformed/react/redux\",\n \"setModel\": \"@beinformed/react/redux\",\n \"setModelCatalogEntryDate\": \"@beinformed/react/client\",\n \"setPreference\": \"@beinformed/react/redux\",\n \"setPreferences\": \"@beinformed/react/redux\",\n \"setServerPreference\": \"@beinformed/react/redux\",\n \"setServerPreferences\": \"@beinformed/react/server\",\n \"setServerPreferencesFromArray\": \"@beinformed/react/server\",\n \"setSetting\": \"@beinformed/ui/settings\",\n \"setSettings\": \"@beinformed/ui/settings\",\n \"setThemePreference\": \"@beinformed/react/redux\",\n \"setUnhandledRejectionEvent\": \"@beinformed/react/client\",\n \"setupClient\": \"@beinformed/react/client\",\n \"setupStore\": \"@beinformed/react/redux\",\n \"showFormNotification\": \"@beinformed/react/redux\",\n \"showModal\": \"@beinformed/react/redux\",\n \"showNotification\": \"@beinformed/react/redux\",\n \"showXHRErrorNotification\": \"@beinformed/react/redux\",\n \"spacer\": \"@beinformed/react/theme\",\n \"spacers\": \"@beinformed/react/theme\",\n \"themeProp\": \"@beinformed/react/theme\",\n \"universalFetch\": \"@beinformed/ui/utils\",\n \"updateEntryDate\": \"@beinformed/react/redux\",\n \"updateErrorStatus\": \"@beinformed/react/redux\",\n \"updateForm\": \"@beinformed/react/redux\",\n \"updateFormAttribute\": \"@beinformed/react/redux\",\n \"updateLayoutHintRules\": \"@beinformed/ui/models\",\n \"updateLocale\": \"@beinformed/react/redux\",\n \"updateModel\": \"@beinformed/react/redux\",\n \"useApplication\": \"@beinformed/react/hooks\",\n \"useAttributeUpdate\": \"@beinformed/react/hooks\",\n \"useBEIDispatch\": \"@beinformed/react/redux\",\n \"useBEISelector\": \"@beinformed/react/redux\",\n \"useBEIStore\": \"@beinformed/react/redux\",\n \"useCaseView\": \"@beinformed/react/hooks\",\n \"useCompleteSource\": \"@beinformed/react/hooks\",\n \"useConceptDetail\": \"@beinformed/react/hooks\",\n \"useConceptIndex\": \"@beinformed/react/hooks\",\n \"useConceptSearch\": \"@beinformed/react/hooks\",\n \"useContent\": \"@beinformed/react/hooks\",\n \"useContentFromSourceReferences\": \"@beinformed/react/hooks\",\n \"useContentIndex\": \"@beinformed/react/hooks\",\n \"useContentSearch\": \"@beinformed/react/hooks\",\n \"useContentTOC\": \"@beinformed/react/hooks\",\n \"useContentType\": \"@beinformed/react/hooks\",\n \"useDeepCompareEffect\": \"@beinformed/react/hooks\",\n \"useDetailPanel\": \"@beinformed/react/hooks\",\n \"useEntryDate\": \"@beinformed/react/hooks\",\n \"useErrorNotification\": \"@beinformed/react/hooks\",\n \"useForm\": \"@beinformed/react/hooks\",\n \"useFormNavigation\": \"@beinformed/react/hooks\",\n \"useGroupingPanel\": \"@beinformed/react/hooks\",\n \"useList\": \"@beinformed/react/hooks\",\n \"useListDetail\": \"@beinformed/react/hooks\",\n \"useListNavigation\": \"@beinformed/react/hooks\",\n \"useListOrDetail\": \"@beinformed/react/hooks\",\n \"useLocale\": \"@beinformed/react/hooks\",\n \"useLocaleCodes\": \"@beinformed/react/hooks\",\n \"useLocation\": \"@beinformed/react/hooks\",\n \"useLocationKey\": \"@beinformed/react/hooks\",\n \"useLogin\": \"@beinformed/react/hooks\",\n \"useLogout\": \"@beinformed/react/hooks\",\n \"useMessage\": \"@beinformed/react/hooks\",\n \"useModal\": \"@beinformed/react/hooks\",\n \"useModelCatalog\": \"@beinformed/react/hooks\",\n \"useModels\": \"@beinformed/react/hooks\",\n \"useModularUI\": \"@beinformed/react/hooks\",\n \"useModularUIBasic\": \"@beinformed/react/hooks\",\n \"useModularUIKey\": \"@beinformed/react/hooks\",\n \"useModularUIRequest\": \"@beinformed/react/hooks\",\n \"useNavigation\": \"@beinformed/react/hooks\",\n \"useNotification\": \"@beinformed/react/hooks\",\n \"usePanel\": \"@beinformed/react/hooks\",\n \"usePathname\": \"@beinformed/react/hooks\",\n \"usePreference\": \"@beinformed/react/hooks\",\n \"useProgressIndicator\": \"@beinformed/react/hooks\",\n \"useProgressIndicatorState\": \"@beinformed/react/hooks\",\n \"useQuerystring\": \"@beinformed/react/hooks\",\n \"useRelatedConcepts\": \"@beinformed/react/hooks\",\n \"useReload\": \"@beinformed/react/hooks\",\n \"useRepeatableAttributeSet\": \"@beinformed/react/hooks\",\n \"useRetrieveFormsOnModel\": \"@beinformed/react/hooks\",\n \"useTab\": \"@beinformed/react/hooks\",\n \"useTheme\": \"@beinformed/react/theme\",\n \"useTranslate\": \"@beinformed/react/hooks\",\n \"useUserProfile\": \"@beinformed/react/hooks\",\n \"validateFormObject\": \"@beinformed/react/redux\",\n \"xhr\": \"@beinformed/ui/utils\"\n}\n"],"mappings":"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","names":["module"]}
1
+ {"version":3,"sources":["../../src/transforms/migrate-imports.ts","../../src/transforms/mapping.json"],"sourcesContent":["import rawMapping from \"./mapping.json\";\n\n\n\nimport type { ASTPath, CommentBlock, CommentLine, ImportDeclaration, ImportDefaultSpecifier, ImportNamespaceSpecifier, ImportSpecifier, JSCodeshift } from \"jscodeshift\";\n\n\ntype Comment = CommentLine | CommentBlock;\n\ntype ExtendedImportSpecifier = (\n | ImportSpecifier\n | ImportDefaultSpecifier\n | ImportNamespaceSpecifier\n) & {\n importKind?: \"value\" | \"type\" | \"typeof\" | null;\n};\n\nconst symbolMappings: Record<string, string> = rawMapping;\nconst renames: Record<string, string> = {\n IS_SYNC: \"IS_GRAALJS\",\n getBasePath: \"getContextPath\",\n getBasePathModularUI: \"getContextPathModularUI\",\n getBasePathServer: \"getContextPathServer\",\n resolveModel: \"ModelResolver.resolve\",\n serverFetch: \"graalFetch\",\n formatValue: \"NumberUtil.formatValue\",\n parseToNumber: \"NumberUtil.parseToNumber\",\n parseNumberToString: \"NumberUtil.parseNumberToString\",\n};\n\n/**\n * jscodeshift transform to migrate imports from the old\n * '@beinformed/ui/*' structure to the new '@beinformed/...' packages.\n *\n * - Detects whether to use Flow or TSX parser based on the file extension (.js) or the presence of @flow pragma.\n * - Uses the mapping.json file to determine the new package for each imported symbol.\n * - For symbols not found in mapping.json, keeps the import and adds a warning comment.\n * - Combines multiple imports that resolve to the same target package into a single import declaration.\n * - Preserves comments and pragmas.\n *\n * The mapping.json is expected to be a flat object:\n * {\n * \"SymbolName\": \"@beinformed/new-package-path\",\n * ...\n * }\n */\nexport default function transformer(\n fileInfo: { path: string; source: string },\n api: { jscodeshift: JSCodeshift },\n options?: unknown,\n): string {\n const isFlow =\n fileInfo.source.includes(\"@flow\") || fileInfo.path.endsWith(\".js\");\n const j = api.jscodeshift.withParser(isFlow ? \"flow\" : \"tsx\");\n const root = j(fileInfo.source);\n\n root.find(j.ImportDeclaration).forEach((pathNode) => {\n const node = pathNode.node;\n const source: unknown = node.source.value;\n\n if (typeof source !== \"string\") {\n return;\n }\n\n // Determine target modules for this declaration\n const targetModules = new Set<string>();\n const originalModule = source;\n\n // Helper: find target module for a given imported symbol\n const getTargetModuleForSymbol = (symbolName: string): string => {\n if (symbolName in symbolMappings) {\n return symbolMappings[symbolName];\n }\n return originalModule;\n };\n\n const isOldModule =\n source.startsWith(\"@beinformed/ui\") ||\n source.startsWith(\"@beinformed/react-\");\n\n if (!isOldModule) {\n return;\n }\n\n if (!node.specifiers || node.specifiers.length === 0) {\n return;\n }\n\n node.specifiers.forEach((spec) => {\n let importedName: string | null;\n if (spec.type === \"ImportDefaultSpecifier\") {\n importedName = \"default\";\n } else if (spec.type === \"ImportNamespaceSpecifier\") {\n importedName = \"*\";\n } else if (spec.type === \"ImportSpecifier\") {\n importedName =\n (spec.imported as { name?: string }).name ??\n (spec.imported as { value?: string }).value ??\n null;\n } else {\n importedName = null;\n }\n\n const targetModule =\n importedName == null\n ? getTargetModuleForSymbol(originalModule)\n : getTargetModuleForSymbol(importedName);\n targetModules.add(targetModule);\n });\n\n const newImports = Array.from(targetModules).map((module) => {\n const specifiers = (node.specifiers || [])\n .filter((spec) => {\n let specTarget: string;\n if (spec.type === \"ImportDefaultSpecifier\") {\n specTarget = getTargetModuleForSymbol(\"default\");\n } else if (spec.type === \"ImportNamespaceSpecifier\") {\n specTarget = getTargetModuleForSymbol(\"*\");\n } else if (spec.type === \"ImportSpecifier\") {\n specTarget = getTargetModuleForSymbol(\n (spec.imported as { name?: string }).name || \"\",\n );\n } else {\n specTarget = getTargetModuleForSymbol(originalModule);\n }\n return specTarget === module;\n })\n .flatMap((spec) => {\n const clonedSpec: ExtendedImportSpecifier = { ...spec };\n if (clonedSpec.type === \"ImportSpecifier\") {\n const currentImportedName = (\n clonedSpec.imported as { name?: string }\n ).name;\n if (currentImportedName && renames[currentImportedName]) {\n const newName = renames[currentImportedName];\n\n if (newName.includes(\".\")) {\n const parts = newName.split(\".\");\n const rootSymbol = parts[0];\n const isAliased =\n clonedSpec.local &&\n (clonedSpec.local as { name?: string }).name !==\n currentImportedName;\n\n if (isAliased) {\n return [clonedSpec];\n }\n\n clonedSpec.imported = {\n ...clonedSpec.imported,\n name: rootSymbol,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } as any;\n clonedSpec.local = {\n ...clonedSpec.local,\n name: rootSymbol,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } as any;\n } else {\n clonedSpec.imported = {\n ...clonedSpec.imported,\n name: newName,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } as any;\n if (\n !clonedSpec.local ||\n (clonedSpec.local as { name?: string }).name ===\n currentImportedName\n ) {\n clonedSpec.local = {\n ...clonedSpec.local,\n name: newName,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n } as any;\n }\n }\n }\n }\n\n if (node.importKind && !clonedSpec.importKind) {\n clonedSpec.importKind = node.importKind;\n }\n\n return [clonedSpec];\n });\n\n const newImport = j.importDeclaration(specifiers, j.literal(module));\n\n const firstKind = (specifiers[0] as ExtendedImportSpecifier)?.importKind;\n if (\n firstKind &&\n specifiers.every(\n (s: ExtendedImportSpecifier) => s.importKind === firstKind,\n )\n ) {\n newImport.importKind = firstKind;\n specifiers.forEach((s: ExtendedImportSpecifier) => {\n delete s.importKind;\n });\n }\n\n return newImport;\n });\n\n // Assign comments to the first new import\n if (node.comments && node.comments.length > 0) {\n newImports[0].comments = node.comments;\n }\n\n j(pathNode).replaceWith(newImports);\n\n // Add TODO comments for unknown symbols\n newImports.forEach((newImport) => {\n const module = newImport.source.value;\n if (typeof module === \"string\") {\n const isUnknown =\n (module.startsWith(\"@beinformed/ui\") ||\n module.startsWith(\"@beinformed/react-\")) &&\n !Object.values(symbolMappings).includes(module);\n\n if (isUnknown) {\n const todoComment = j.commentLine(\n \" TODO: Could not find mapping for this import. Please fix manually.\",\n true,\n false,\n );\n newImport.comments = [...(newImport.comments || []), todoComment];\n }\n }\n });\n\n // Rename identifiers in the rest of the file if they were imported here\n if (node.specifiers) {\n node.specifiers.forEach((spec) => {\n if (spec.type === \"ImportSpecifier\") {\n const importedName = (spec.imported as { name?: string }).name;\n const localName = (spec.local as { name?: string }).name;\n\n if (\n importedName &&\n localName &&\n renames[importedName] &&\n importedName === localName\n ) {\n const newName = renames[importedName];\n\n root\n .find(j.Identifier, { name: localName })\n .filter((path) => {\n // Don't rename the identifier in the import specifier itself (we already handled that)\n const parent = path.parent.node;\n if (\n j.ImportSpecifier.check(parent) ||\n j.ImportDefaultSpecifier.check(parent) ||\n j.ImportNamespaceSpecifier.check(parent)\n ) {\n return false;\n }\n\n // Don't rename if it's a property of an object (unless it's a shorthand property)\n if (\n j.MemberExpression.check(parent) &&\n parent.property === path.node &&\n !parent.computed\n ) {\n return false;\n }\n if (\n j.Property.check(parent) &&\n parent.key === path.node &&\n !parent.shorthand &&\n !parent.computed\n ) {\n return false;\n }\n\n return true;\n })\n .replaceWith(() => {\n if (newName.includes(\".\")) {\n const [object, property] = newName.split(\".\");\n return j.memberExpression(\n j.identifier(object),\n j.identifier(property),\n );\n }\n return j.identifier(newName);\n });\n }\n }\n });\n }\n });\n\n // Second pass: Merge imports with the same path\n const mergedImports = new Map<string, ExtendedImportSpecifier[]>();\n const firstOccurrence = new Map<string, ASTPath<ImportDeclaration>>();\n const allComments = new Map<string, Comment[]>();\n\n root.find(j.ImportDeclaration).forEach((pathNode) => {\n const node = pathNode.node;\n const module = node.source.value;\n\n if (typeof module !== \"string\") {\n return;\n }\n\n if (!mergedImports.has(module)) {\n mergedImports.set(module, []);\n firstOccurrence.set(module, pathNode);\n allComments.set(module, []);\n }\n\n if (node.comments) {\n allComments.get(module)!.push(...(node.comments as Comment[]));\n }\n\n if (node.specifiers) {\n mergedImports\n .get(module)!\n .push(...(node.specifiers as ExtendedImportSpecifier[]));\n }\n\n if (firstOccurrence.get(module) !== pathNode) {\n j(pathNode).remove();\n }\n });\n\n mergedImports.forEach((specifiers, module) => {\n const pathNode = firstOccurrence.get(module);\n if (!pathNode) {\n return;\n }\n const node = pathNode.node;\n\n const uniqueSpecifiers: ExtendedImportSpecifier[] = [];\n const seenLocalNames = new Set<string>();\n specifiers.forEach((spec) => {\n const localName = (spec.local as { name?: string })?.name;\n if (localName && !seenLocalNames.has(localName)) {\n uniqueSpecifiers.push(spec);\n seenLocalNames.add(localName);\n }\n });\n\n node.specifiers = uniqueSpecifiers;\n\n if (allComments.has(module) && allComments.get(module)!.length > 0) {\n // De-duplicate comments if they were merged multiple times\n const uniqueComments: Comment[] = [];\n const seenComments = new Set();\n for (const comment of allComments.get(module)!) {\n const key = `${comment.type}:${comment.value}:${comment.leading}`;\n if (!seenComments.has(key)) {\n uniqueComments.push(comment);\n seenComments.add(key);\n }\n }\n node.comments = uniqueComments;\n }\n\n // Restore declaration-level importKind if all specifiers have it,\n // OR if it was already set (e.g. from splitting)\n const allSpecifiersHaveSameKind =\n uniqueSpecifiers.length > 0 &&\n uniqueSpecifiers.every(\n (s) => s.importKind === uniqueSpecifiers[0].importKind,\n );\n\n if (allSpecifiersHaveSameKind && uniqueSpecifiers[0].importKind) {\n node.importKind = uniqueSpecifiers[0].importKind;\n uniqueSpecifiers.forEach((s) => {\n delete s.importKind;\n });\n }\n });\n\n return root.toSource(options || { quote: \"double\" });\n}\n","{\n \"ALL_CONTENT_IN_DATA_SETTING\": \"@beinformed/ui/settings\",\n \"ATTRIBUTE_TYPE\": \"@beinformed/ui/models\",\n \"ATTRIBUTE_WIDTH\": \"@beinformed/ui/constants\",\n \"AUTOSAVE_STATUS\": \"@beinformed/react/redux\",\n \"AVATAR\": \"@beinformed/ui/layouthints\",\n \"AVATAR_IN_TITLE\": \"@beinformed/ui/layouthints\",\n \"ActionCollection\": \"@beinformed/ui/models\",\n \"ActionContributions\": \"@beinformed/ui/models\",\n \"ActionData\": \"@beinformed/ui/models\",\n \"ActionFieldData\": \"@beinformed/ui/models\",\n \"ActionModel\": \"@beinformed/ui/models\",\n \"AnchorElementData\": \"@beinformed/ui/models\",\n \"AnonymousDynamicSchema\": \"@beinformed/ui/models\",\n \"ApplicationContributions\": \"@beinformed/ui/models\",\n \"ApplicationData\": \"@beinformed/ui/models\",\n \"ApplicationLinksContributions\": \"@beinformed/ui/models\",\n \"ApplicationLinksData\": \"@beinformed/ui/models\",\n \"ApplicationModel\": \"@beinformed/ui/models\",\n \"AssignmentFilterContribution\": \"@beinformed/ui/models\",\n \"AssignmentFilterData\": \"@beinformed/ui/models\",\n \"AssignmentFilterModel\": \"@beinformed/ui/models\",\n \"AttributeCollection\": \"@beinformed/ui/models\",\n \"AttributeCollectionContributions\": \"@beinformed/ui/models\",\n \"AttributeContent\": \"@beinformed/ui/models\",\n \"AttributeContentElement\": \"@beinformed/ui/models\",\n \"AttributeContributions\": \"@beinformed/ui/models\",\n \"AttributeData\": \"@beinformed/ui/models\",\n \"AttributeDataMapper\": \"@beinformed/ui/models\",\n \"AttributeFactory\": \"@beinformed/ui/models\",\n \"AttributeModel\": \"@beinformed/ui/models\",\n \"AttributeModularUIData\": \"@beinformed/ui/models\",\n \"AttributePropertyElement\": \"@beinformed/ui/models\",\n \"AttributeRequestData\": \"@beinformed/ui/models\",\n \"AttributeSetContributions\": \"@beinformed/ui/models\",\n \"AttributeSetModel\": \"@beinformed/ui/models\",\n \"AttributeTextFragmentElement\": \"@beinformed/ui/models\",\n \"AttributeValue\": \"@beinformed/ui/models\",\n \"AuthState\": \"@beinformed/react/redux\",\n \"Authenticate\": \"@beinformed/ui/modularui\",\n \"AuthenticationType\": \"@beinformed/ui/modularui\",\n \"BEIDispatch\": \"@beinformed/react/redux\",\n \"BEIStore\": \"@beinformed/react/redux\",\n \"BSNConstraint\": \"@beinformed/ui/models\",\n \"BaseAttributeContributions\": \"@beinformed/ui/models\",\n \"BaseAttributeModel\": \"@beinformed/ui/models\",\n \"BaseCollection\": \"@beinformed/ui/models\",\n \"BaseDateTimeUtil\": \"@beinformed/ui/utils\",\n \"BaseDetailContributions\": \"@beinformed/ui/models\",\n \"BaseDetailData\": \"@beinformed/ui/models\",\n \"BaseLayoutHintRule\": \"@beinformed/ui/models\",\n \"BaseModel\": \"@beinformed/ui/models\",\n \"BaseStringAttributeContributions\": \"@beinformed/ui/models\",\n \"BeforeRenderHook\": \"@beinformed/react/redux\",\n \"BeforeRenderHookProps\": \"@beinformed/react/redux\",\n \"BinaryAttributeContributions\": \"@beinformed/ui/models\",\n \"BooleanAttributeContributions\": \"@beinformed/ui/models\",\n \"BooleanAttributeModel\": \"@beinformed/ui/models\",\n \"CAPTCHA_PATH\": \"@beinformed/ui/constants\",\n \"CASEVIEW_LINK\": \"@beinformed/ui/layouthints\",\n \"CHANGEPASSWORD_PATH\": \"@beinformed/ui/constants\",\n \"CHOICETYPE\": \"@beinformed/ui/models\",\n \"CONFIRM_PASSWORD\": \"@beinformed/ui/layouthints\",\n \"CONTENT_PATH\": \"@beinformed/ui/constants\",\n \"CREATE_ACTION\": \"@beinformed/ui/layouthints\",\n \"Cache\": \"@beinformed/ui/utils\",\n \"CacheType\": \"@beinformed/ui/utils\",\n \"CaptchaAttributeContributions\": \"@beinformed/ui/models\",\n \"CaptchaAttributeModel\": \"@beinformed/ui/models\",\n \"CaptchaRequest\": \"@beinformed/ui/modularui\",\n \"CaseSearchModel\": \"@beinformed/ui/models\",\n \"CaseViewContributions\": \"@beinformed/ui/models\",\n \"CaseViewData\": \"@beinformed/ui/models\",\n \"CaseViewLinksContributions\": \"@beinformed/ui/models\",\n \"CaseViewModel\": \"@beinformed/ui/models\",\n \"ChildrenKey\": \"@beinformed/ui/models\",\n \"ChoiceAttributeContributions\": \"@beinformed/ui/models\",\n \"ChoiceAttributeModel\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionCollection\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionContributions\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionModel\": \"@beinformed/ui/models\",\n \"ChoiceAttributeOptionModelOptions\": \"@beinformed/ui/models\",\n \"ChoiceFilterContribution\": \"@beinformed/ui/models\",\n \"ChoiceFilterData\": \"@beinformed/ui/models\",\n \"CompositeAttributeChildCollection\": \"@beinformed/ui/models\",\n \"CompositeAttributeContributions\": \"@beinformed/ui/models\",\n \"CompositeAttributeModel\": \"@beinformed/ui/models\",\n \"CompositeDynamicSchema\": \"@beinformed/ui/models\",\n \"ConceptDetailData\": \"@beinformed/ui/models\",\n \"ConceptDetailModel\": \"@beinformed/ui/models\",\n \"ConceptIndexContributions\": \"@beinformed/ui/models\",\n \"ConceptIndexData\": \"@beinformed/ui/models\",\n \"ConceptIndexFilterModel\": \"@beinformed/ui/models\",\n \"ConceptIndexModel\": \"@beinformed/ui/models\",\n \"ConceptLinkCollection\": \"@beinformed/ui/models\",\n \"ConceptLinkData\": \"@beinformed/ui/models\",\n \"ConceptLinkModel\": \"@beinformed/ui/models\",\n \"ConceptRelationCollection\": \"@beinformed/ui/models\",\n \"ConceptRelationModel\": \"@beinformed/ui/models\",\n \"ConceptTypeDetailData\": \"@beinformed/ui/models\",\n \"ConceptTypeDetailModel\": \"@beinformed/ui/models\",\n \"ConfigurationElements\": \"@beinformed/ui/models\",\n \"ConfigurationException\": \"@beinformed/ui/exceptions\",\n \"ConstraintCollection\": \"@beinformed/ui/models\",\n \"ConstraintModel\": \"@beinformed/ui/models\",\n \"ContentConfiguration\": \"@beinformed/ui/models\",\n \"ContentConfigurationContributions\": \"@beinformed/ui/models\",\n \"ContentConfigurationElements\": \"@beinformed/ui/models\",\n \"ContentConfigurationEndResults\": \"@beinformed/ui/models\",\n \"ContentConfigurationQuestions\": \"@beinformed/ui/models\",\n \"ContentConfigurationResults\": \"@beinformed/ui/models\",\n \"ContentContributions\": \"@beinformed/ui/models\",\n \"ContentData\": \"@beinformed/ui/models\",\n \"ContentDataItem\": \"@beinformed/ui/models\",\n \"ContentDataSection\": \"@beinformed/ui/models\",\n \"ContentDetailContributions\": \"@beinformed/ui/models\",\n \"ContentDetailData\": \"@beinformed/ui/models\",\n \"ContentElement\": \"@beinformed/ui/models\",\n \"ContentIndexContributions\": \"@beinformed/ui/models\",\n \"ContentIndexData\": \"@beinformed/ui/models\",\n \"ContentIndexModel\": \"@beinformed/ui/models\",\n \"ContentLinkCollection\": \"@beinformed/ui/models\",\n \"ContentLinkData\": \"@beinformed/ui/models\",\n \"ContentLinkModel\": \"@beinformed/ui/models\",\n \"ContentModel\": \"@beinformed/ui/models\",\n \"ContentTOCData\": \"@beinformed/ui/models\",\n \"ContentTOCModel\": \"@beinformed/ui/models\",\n \"ContentTypeContributions\": \"@beinformed/ui/models\",\n \"ContentTypeData\": \"@beinformed/ui/models\",\n \"ContentTypeModel\": \"@beinformed/ui/models\",\n \"Contributions\": \"@beinformed/ui/types\",\n \"ContributionsForFilterCollection\": \"@beinformed/ui/models\",\n \"DATETIME_OFFSET_FORMAT\": \"@beinformed/ui/constants\",\n \"DEFAULT_AUTHENTICATION_TYPE\": \"@beinformed/ui/constants\",\n \"DEFAULT_FIRST_WEEK_CONTAINS_DATE\": \"@beinformed/ui/constants\",\n \"DEFAULT_WEEK_STARTS_ON\": \"@beinformed/ui/constants\",\n \"DELETE_ACTION\": \"@beinformed/ui/layouthints\",\n \"DEPENDENT_ATTRIBUTE\": \"@beinformed/ui/layouthints\",\n \"DEPENDENT_ATTRIBUTE_CONTROL\": \"@beinformed/ui/layouthints\",\n \"DISABLED\": \"@beinformed/ui/layouthints\",\n \"Data\": \"@beinformed/ui/types\",\n \"DateBoundaryConstraint\": \"@beinformed/ui/models\",\n \"DateFilterContribution\": \"@beinformed/ui/models\",\n \"DateFilterData\": \"@beinformed/ui/models\",\n \"DateRangeFilterContribution\": \"@beinformed/ui/models\",\n \"DateRangeFilterData\": \"@beinformed/ui/models\",\n \"DateTimeDateFormatConstraint\": \"@beinformed/ui/models\",\n \"DateTimeTimeFormatConstraint\": \"@beinformed/ui/models\",\n \"DateTimeUtil\": \"@beinformed/ui/utils\",\n \"DateUtil\": \"@beinformed/ui/utils\",\n \"DatetimeAttributeContributions\": \"@beinformed/ui/models\",\n \"DatetimeAttributeModel\": \"@beinformed/ui/models\",\n \"DatetimeFormatConstraint\": \"@beinformed/ui/models\",\n \"DecimalFormat\": \"@beinformed/ui/utils\",\n \"DefaultLinksData\": \"@beinformed/ui/types\",\n \"DependentAttribute\": \"@beinformed/ui/models\",\n \"DetailData\": \"@beinformed/ui/models\",\n \"DetailModel\": \"@beinformed/ui/models\",\n \"DetailPanelContributions\": \"@beinformed/ui/models\",\n \"DynamicSchema\": \"@beinformed/ui/models\",\n \"EndResultsConfiguration\": \"@beinformed/ui/models\",\n \"ErrorBoundary\": \"@beinformed/react/components\",\n \"ErrorBoundaryFallback\": \"@beinformed/react/components\",\n \"ErrorBoundaryFallbackProps\": \"@beinformed/react/components\",\n \"ErrorBoundaryProps\": \"@beinformed/react/components\",\n \"ErrorCollection\": \"@beinformed/ui/models\",\n \"ErrorCollectionType\": \"@beinformed/ui/models\",\n \"ErrorMessage\": \"@beinformed/ui/types\",\n \"ErrorModel\": \"@beinformed/ui/models\",\n \"ErrorObjectData\": \"@beinformed/ui/models\",\n \"ErrorResponse\": \"@beinformed/ui/models\",\n \"ErrorState\": \"@beinformed/react/redux\",\n \"FILTER_TYPE\": \"@beinformed/ui/models\",\n \"FetchException\": \"@beinformed/ui/exceptions\",\n \"FetchModelPayload\": \"@beinformed/react/redux\",\n \"FetchModelResult\": \"@beinformed/react/redux\",\n \"FileEntryType\": \"@beinformed/ui/models\",\n \"FileExtensionConstraint\": \"@beinformed/ui/models\",\n \"FileSizeConstraint\": \"@beinformed/ui/models\",\n \"FilesType\": \"@beinformed/ui/models\",\n \"FilesizeConstraintsType\": \"@beinformed/ui/models\",\n \"FiletypeConstraintsType\": \"@beinformed/ui/models\",\n \"FilterCollection\": \"@beinformed/ui/models\",\n \"FilterCollectionContributions\": \"@beinformed/ui/models\",\n \"FilterCollectionData\": \"@beinformed/ui/models\",\n \"FilterContribution\": \"@beinformed/ui/models\",\n \"FilterData\": \"@beinformed/ui/models\",\n \"FilterFactory\": \"@beinformed/ui/models\",\n \"FilterModel\": \"@beinformed/ui/models\",\n \"FormContributions\": \"@beinformed/ui/models\",\n \"FormData\": \"@beinformed/ui/models\",\n \"FormModel\": \"@beinformed/ui/models\",\n \"FormObjectContributions\": \"@beinformed/ui/models\",\n \"FormObjectData\": \"@beinformed/ui/models\",\n \"FormObjectModel\": \"@beinformed/ui/models\",\n \"GenericConstraintModel\": \"@beinformed/ui/models\",\n \"GroupData\": \"@beinformed/ui/models\",\n \"GroupModel\": \"@beinformed/ui/models\",\n \"GroupingContributions\": \"@beinformed/ui/models\",\n \"GroupingData\": \"@beinformed/ui/models\",\n \"GroupingModel\": \"@beinformed/ui/models\",\n \"GroupingPanelContributions\": \"@beinformed/ui/models\",\n \"GroupingPanelData\": \"@beinformed/ui/models\",\n \"GroupingPanelModel\": \"@beinformed/ui/models\",\n \"HIDE_IN_USER_INTERFACE\": \"@beinformed/ui/layouthints\",\n \"HIDE_WHEN_EMPTY\": \"@beinformed/ui/layouthints\",\n \"HTTP_METHODS\": \"@beinformed/ui/constants\",\n \"HelptextAttributeModel\": \"@beinformed/ui/models\",\n \"HistoryLocation\": \"@beinformed/ui/types\",\n \"HookOptions\": \"@beinformed/react/hooks\",\n \"Href\": \"@beinformed/ui/models\",\n \"HrefState\": \"@beinformed/ui/types\",\n \"HttpServletRequestJava\": \"@beinformed/react/server\",\n \"I18nState\": \"@beinformed/react/redux\",\n \"IBANConstraint\": \"@beinformed/ui/models\",\n \"IFilter\": \"@beinformed/ui/models\",\n \"INCLUDE_TIME_OFFSET\": \"@beinformed/ui/settings\",\n \"INITIAL_FILTER\": \"@beinformed/ui/layouthints\",\n \"INITIAL_TOTAL_FILESIZE\": \"@beinformed/ui/layouthints\",\n \"INTERNAL_LOGIN_TYPE\": \"@beinformed/ui/constants\",\n \"ISO_DATE\": \"@beinformed/ui/types\",\n \"ISO_DATETIME_FORMAT\": \"@beinformed/ui/constants\",\n \"ISO_DATE_FORMAT\": \"@beinformed/ui/constants\",\n \"ISO_TIMESTAMP_FORMAT\": \"@beinformed/ui/constants\",\n \"ISO_TIME_FORMAT\": \"@beinformed/ui/constants\",\n \"IS_DEV\": \"@beinformed/ui/utils\",\n \"IS_GRAALJS\": \"@beinformed/ui/constants\",\n \"IS_SERVER\": \"@beinformed/ui/constants\",\n \"IllegalArgumentException\": \"@beinformed/ui/exceptions\",\n \"IllegalReturnException\": \"@beinformed/ui/exceptions\",\n \"IllegalStateException\": \"@beinformed/ui/exceptions\",\n \"Init\": \"@beinformed/react/client\",\n \"JsonParseException\": \"@beinformed/ui/exceptions\",\n \"LOGIN_PASSWORD_SETTING\": \"@beinformed/ui/constants\",\n \"LOGIN_PATH\": \"@beinformed/ui/settings\",\n \"LOGIN_PATH_SETTING\": \"@beinformed/ui/constants\",\n \"LOGIN_TYPE\": \"@beinformed/ui/constants\",\n \"LOGIN_USERNAME_SETTING\": \"@beinformed/ui/constants\",\n \"LOGOUT_PATH\": \"@beinformed/ui/settings\",\n \"LOGOUT_PATH_SETTING\": \"@beinformed/ui/constants\",\n \"LabelAttributeModel\": \"@beinformed/ui/models\",\n \"LabelData\": \"@beinformed/ui/models\",\n \"LabelType\": \"@beinformed/ui/models\",\n \"LayoutHintCollection\": \"@beinformed/ui/models\",\n \"LayoutHintConfiguration\": \"@beinformed/ui/layouthints\",\n \"LayoutHintProcessor\": \"@beinformed/ui/layouthints\",\n \"LayoutHintRule\": \"@beinformed/ui/models\",\n \"LayoutHintRuleCollection\": \"@beinformed/ui/models\",\n \"LayoutHintRulesUpdater\": \"@beinformed/ui/models\",\n \"LinkCollection\": \"@beinformed/ui/models\",\n \"LinkContributions\": \"@beinformed/ui/models\",\n \"LinkData\": \"@beinformed/ui/models\",\n \"LinkModel\": \"@beinformed/ui/models\",\n \"Links\": \"@beinformed/ui/models\",\n \"ListContributions\": \"@beinformed/ui/models\",\n \"ListData\": \"@beinformed/ui/models\",\n \"ListDetailAttributeData\": \"@beinformed/ui/models\",\n \"ListDetailContributions\": \"@beinformed/ui/models\",\n \"ListDetailData\": \"@beinformed/ui/models\",\n \"ListDetailModel\": \"@beinformed/ui/models\",\n \"ListHeaderModel\": \"@beinformed/ui/models\",\n \"ListHref\": \"@beinformed/ui/models\",\n \"ListItemCollection\": \"@beinformed/ui/models\",\n \"ListItemData\": \"@beinformed/ui/models\",\n \"ListItemModel\": \"@beinformed/ui/models\",\n \"ListModel\": \"@beinformed/ui/models\",\n \"Locale\": \"@beinformed/react/i18n\",\n \"LocaleConfiguration\": \"@beinformed/react/i18n\",\n \"Locales\": \"@beinformed/react/i18n\",\n \"LookupOptionCollection\": \"@beinformed/ui/models\",\n \"LookupOptionData\": \"@beinformed/ui/models\",\n \"LookupOptionsContributions\": \"@beinformed/ui/models\",\n \"LookupOptionsData\": \"@beinformed/ui/models\",\n \"LookupOptionsModel\": \"@beinformed/ui/models\",\n \"MANDATORY\": \"@beinformed/ui/layouthints\",\n \"MAX_TOTAL_FILESIZE\": \"@beinformed/ui/layouthints\",\n \"MODULARUI_STATUS\": \"@beinformed/react/redux\",\n \"MandatoryConstraint\": \"@beinformed/ui/models\",\n \"MandatoryRangeConstraint\": \"@beinformed/ui/models\",\n \"MaybeAttributeValue\": \"@beinformed/ui/models\",\n \"MemoAttributeContributions\": \"@beinformed/ui/models\",\n \"MemoAttributeModel\": \"@beinformed/ui/models\",\n \"Message\": \"@beinformed/react/i18n\",\n \"MessageObject\": \"@beinformed/react/i18n\",\n \"MessageParameters\": \"@beinformed/ui/types\",\n \"MissingObjectData\": \"@beinformed/ui/models\",\n \"MissingPropertyException\": \"@beinformed/ui/exceptions\",\n \"ModalState\": \"@beinformed/react/redux\",\n \"ModalsState\": \"@beinformed/react/redux\",\n \"ModelCatalogContributions\": \"@beinformed/ui/models\",\n \"ModelCatalogData\": \"@beinformed/ui/models\",\n \"ModelCatalogModel\": \"@beinformed/ui/models\",\n \"ModelCatalogState\": \"@beinformed/react/redux\",\n \"ModelCategory\": \"@beinformed/ui/models\",\n \"ModelCategoryCollection\": \"@beinformed/ui/models\",\n \"ModelCategoryModel\": \"@beinformed/ui/models\",\n \"ModelConfig\": \"@beinformed/ui/modularui\",\n \"ModelEntry\": \"@beinformed/react/redux\",\n \"ModelOptions\": \"@beinformed/ui/models\",\n \"ModelResolver\": \"@beinformed/ui/modularui\",\n \"ModelWithChildModels\": \"@beinformed/ui/models\",\n \"ModularUIError\": \"@beinformed/ui/modularui\",\n \"ModularUIErrorJSON\": \"@beinformed/ui/exceptions\",\n \"ModularUIErrorResponse\": \"@beinformed/ui/models\",\n \"ModularUIModel\": \"@beinformed/ui/models\",\n \"ModularUIModelWithChildModels\": \"@beinformed/ui/models\",\n \"ModularUIRequest\": \"@beinformed/ui/modularui\",\n \"ModularUIRequestOptions\": \"@beinformed/ui/utils\",\n \"ModularUIResponse\": \"@beinformed/ui/modularui\",\n \"ModularUISpecificErrorResponse\": \"@beinformed/ui/modularui\",\n \"ModularUIState\": \"@beinformed/react/redux\",\n \"MoneyAttributeContributions\": \"@beinformed/ui/models\",\n \"MoneyAttributeModel\": \"@beinformed/ui/models\",\n \"NOTIFICATION_TYPES\": \"@beinformed/react/redux\",\n \"NamedDynamicSchema\": \"@beinformed/ui/models\",\n \"NetworkException\": \"@beinformed/ui/exceptions\",\n \"NormalizedLinkContributions\": \"@beinformed/ui/models\",\n \"NormalizedLinkData\": \"@beinformed/ui/models\",\n \"NotAllowedUriException\": \"@beinformed/ui/exceptions\",\n \"NotFoundException\": \"@beinformed/ui/exceptions\",\n \"NotificationState\": \"@beinformed/react/redux\",\n \"NumberAttributeContributions\": \"@beinformed/ui/models\",\n \"NumberAttributeModel\": \"@beinformed/ui/models\",\n \"NumberBoundaryConstraint\": \"@beinformed/ui/models\",\n \"NumberFilterContributions\": \"@beinformed/ui/models\",\n \"NumberFilterData\": \"@beinformed/ui/models\",\n \"NumberFormatConstraint\": \"@beinformed/ui/models\",\n \"NumberGroupingConstraint\": \"@beinformed/ui/models\",\n \"NumberRangeFilterContribution\": \"@beinformed/ui/models\",\n \"NumberRangeFilterData\": \"@beinformed/ui/models\",\n \"NumberUtil\": \"@beinformed/ui/utils\",\n \"OPTION_MODE\": \"@beinformed/ui/models\",\n \"OffsetInfo\": \"@beinformed/ui/utils\",\n \"PARAMETER_SEPARATOR\": \"@beinformed/ui/constants\",\n \"PARAMETER_TYPES\": \"@beinformed/ui/constants\",\n \"PagesizeModel\": \"@beinformed/ui/models\",\n \"PagingContributions\": \"@beinformed/ui/models\",\n \"PagingData\": \"@beinformed/ui/models\",\n \"PagingModel\": \"@beinformed/ui/models\",\n \"Parameter\": \"@beinformed/ui/models\",\n \"ParameterCollection\": \"@beinformed/ui/models\",\n \"PasswordAttributeContributions\": \"@beinformed/ui/models\",\n \"PasswordAttributeModel\": \"@beinformed/ui/models\",\n \"PasswordConfirmConstraint\": \"@beinformed/ui/models\",\n \"PasswordLowerAndUpperCaseConstraint\": \"@beinformed/ui/models\",\n \"PasswordMinNumericCharactersConstraint\": \"@beinformed/ui/models\",\n \"PasswordMinSpecialCharactersConstraint\": \"@beinformed/ui/models\",\n \"PasswordThreeConsecutiveCharactersNotAllowedConstraint\": \"@beinformed/ui/models\",\n \"PreferenceValue\": \"@beinformed/react/redux\",\n \"PreferencesState\": \"@beinformed/react/redux\",\n \"ProcessStatusSettingsContributions\": \"@beinformed/ui/models\",\n \"ProcessStatusSettingsData\": \"@beinformed/ui/models\",\n \"ProcessStatusSettingsModel\": \"@beinformed/ui/models\",\n \"ProgressHandler\": \"@beinformed/ui/utils\",\n \"ProgressIndicatorState\": \"@beinformed/react/redux\",\n \"PropertyData\": \"@beinformed/ui/models\",\n \"PropertyElement\": \"@beinformed/ui/models\",\n \"PropertyType\": \"@beinformed/ui/models\",\n \"Props\": \"@beinformed/react/theme\",\n \"QuestionConfiguration\": \"@beinformed/ui/models\",\n \"RENDER_SECTION_LABEL\": \"@beinformed/ui/layouthints\",\n \"RESOURCE_PATH\": \"@beinformed/ui/constants\",\n \"RangeAttributeContributions\": \"@beinformed/ui/models\",\n \"RangeAttributeModel\": \"@beinformed/ui/models\",\n \"RangeConstraint\": \"@beinformed/ui/models\",\n \"RangeFilterModel\": \"@beinformed/ui/models\",\n \"RedirectObject\": \"@beinformed/ui/models\",\n \"RedirectTextObject\": \"@beinformed/ui/models\",\n \"RegexConstraint\": \"@beinformed/ui/models\",\n \"RegexObject\": \"@beinformed/ui/models\",\n \"RelatedConceptContributions\": \"@beinformed/ui/models\",\n \"RelatedConceptsData\": \"@beinformed/ui/models\",\n \"RelationData\": \"@beinformed/ui/models\",\n \"RelationDirection\": \"@beinformed/ui/models\",\n \"RelationTypeType\": \"@beinformed/ui/models\",\n \"RemainingTotalUploadSize\": \"@beinformed/ui/models\",\n \"RequestBaseOptions\": \"@beinformed/ui/utils\",\n \"RequestOptions\": \"@beinformed/ui/utils\",\n \"RequestURLOptions\": \"@beinformed/ui/utils\",\n \"ResourceCollection\": \"@beinformed/ui/models\",\n \"ResourceData\": \"@beinformed/ui/types\",\n \"ResourceModel\": \"@beinformed/ui/models\",\n \"ResultsConfiguration\": \"@beinformed/ui/models\",\n \"ResultsData\": \"@beinformed/ui/models\",\n \"RootState\": \"@beinformed/react/redux\",\n \"RouterLocation\": \"@beinformed/react/redux\",\n \"RouterState\": \"@beinformed/react/redux\",\n \"SHOW_ONE_RESULT_AS_DETAIL\": \"@beinformed/ui/layouthints\",\n \"SORT_OPTIONS\": \"@beinformed/ui/layouthints\",\n \"SORT_ORDER\": \"@beinformed/ui/models\",\n \"SearchFilter\": \"@beinformed/react/hooks\",\n \"SectionData\": \"@beinformed/ui/models\",\n \"SectionFragment\": \"@beinformed/ui/models\",\n \"SectionModel\": \"@beinformed/ui/models\",\n \"SectionReferenceType\": \"@beinformed/ui/models\",\n \"ServerPreferenceValue\": \"@beinformed/react/server\",\n \"ServerRequestException\": \"@beinformed/ui/exceptions\",\n \"Setting\": \"@beinformed/ui/settings\",\n \"ShowNotificationArguments\": \"@beinformed/react/redux\",\n \"SortOptionModel\": \"@beinformed/ui/models\",\n \"SortingModel\": \"@beinformed/ui/models\",\n \"SourceReferenceCollection\": \"@beinformed/ui/models\",\n \"SourceReferenceData\": \"@beinformed/ui/models\",\n \"SourceReferenceModel\": \"@beinformed/ui/models\",\n \"StringAttributeContributions\": \"@beinformed/ui/models\",\n \"StringAttributeModel\": \"@beinformed/ui/models\",\n \"StringFilterContributions\": \"@beinformed/ui/models\",\n \"StringFilterData\": \"@beinformed/ui/models\",\n \"StringFilterModel\": \"@beinformed/ui/models\",\n \"StringLengthConstraint\": \"@beinformed/ui/models\",\n \"SubSectionData\": \"@beinformed/ui/models\",\n \"SubSectionModel\": \"@beinformed/ui/models\",\n \"SuccessData\": \"@beinformed/ui/models\",\n \"TIMEVERSION_FILTER_NAME\": \"@beinformed/ui/constants\",\n \"TITLE\": \"@beinformed/ui/layouthints\",\n \"TabContributions\": \"@beinformed/ui/models\",\n \"TabData\": \"@beinformed/ui/models\",\n \"TabLinksContributions\": \"@beinformed/ui/models\",\n \"TabLinksData\": \"@beinformed/ui/models\",\n \"TabModel\": \"@beinformed/ui/models\",\n \"TargetModel\": \"@beinformed/ui/modularui\",\n \"TaskGroupCollection\": \"@beinformed/ui/models\",\n \"TaskGroupContributions\": \"@beinformed/ui/models\",\n \"TaskGroupData\": \"@beinformed/ui/models\",\n \"TaskGroupModel\": \"@beinformed/ui/models\",\n \"TaxonomyType\": \"@beinformed/ui/models\",\n \"TemplateProps\": \"@beinformed/react/server\",\n \"TextFragmentData\": \"@beinformed/ui/models\",\n \"TextFragmentElement\": \"@beinformed/ui/models\",\n \"TextFragmentType\": \"@beinformed/ui/models\",\n \"TextWithPlaceholders\": \"@beinformed/ui/types\",\n \"Theme\": \"@beinformed/react/theme\",\n \"ThemePropValue\": \"@beinformed/react/theme\",\n \"ThemePropertyException\": \"@beinformed/ui/exceptions\",\n \"ThemeProvider\": \"@beinformed/react/theme\",\n \"TimeUtil\": \"@beinformed/ui/utils\",\n \"TimeoutException\": \"@beinformed/ui/exceptions\",\n \"TimestampUtil\": \"@beinformed/ui/utils\",\n \"TitleObject\": \"@beinformed/ui/models\",\n \"UPDATE_ACTION\": \"@beinformed/ui/layouthints\",\n \"UPLOAD_PATH\": \"@beinformed/ui/constants\",\n \"USERPROFILE_PATH\": \"@beinformed/ui/constants\",\n \"UnauthorizedException\": \"@beinformed/ui/exceptions\",\n \"UnsupportedOperationException\": \"@beinformed/ui/exceptions\",\n \"UpdateFormOptions\": \"@beinformed/react/hooks\",\n \"UpdateHandler\": \"@beinformed/ui/utils\",\n \"UploadAttributeModel\": \"@beinformed/ui/models\",\n \"UploadRequest\": \"@beinformed/ui/modularui\",\n \"UseModularUIBasicOptions\": \"@beinformed/react/hooks\",\n \"UserContributions\": \"@beinformed/ui/models\",\n \"UserData\": \"@beinformed/ui/models\",\n \"UserModel\": \"@beinformed/ui/models\",\n \"UserProfileModel\": \"@beinformed/ui/models\",\n \"UserServicesContributions\": \"@beinformed/ui/models\",\n \"UserServicesData\": \"@beinformed/ui/models\",\n \"UserServicesModel\": \"@beinformed/ui/models\",\n \"UtilThemeProps\": \"@beinformed/react/theme\",\n \"WindowWithContext\": \"@beinformed/react/client\",\n \"XMLAttributeModel\": \"@beinformed/ui/models\",\n \"XMLConstraint\": \"@beinformed/ui/models\",\n \"addContentLoadedEvent\": \"@beinformed/react/client\",\n \"addLayoutHintRule\": \"@beinformed/ui/models\",\n \"addRepeatableAttributeSet\": \"@beinformed/react/redux\",\n \"allKeysByHref\": \"@beinformed/react/redux\",\n \"allSettings\": \"@beinformed/ui/settings\",\n \"authReducer\": \"@beinformed/react/redux\",\n \"autosaveFormObject\": \"@beinformed/react/redux\",\n \"autosubmitFormObject\": \"@beinformed/react/redux\",\n \"autoupdateFormObject\": \"@beinformed/react/redux\",\n \"availableLocales\": \"@beinformed/react/i18n\",\n \"cacheContributions\": \"@beinformed/ui/settings\",\n \"cancelForm\": \"@beinformed/react/redux\",\n \"cancelRepeatableAttributeSet\": \"@beinformed/react/redux\",\n \"changeHSL\": \"@beinformed/react/theme\",\n \"changePassword\": \"@beinformed/react/redux\",\n \"clearCookie\": \"@beinformed/ui/utils\",\n \"client\": \"@beinformed/react/client\",\n \"closeModal\": \"@beinformed/react/redux\",\n \"createHash\": \"@beinformed/ui/utils\",\n \"createHashFromHref\": \"@beinformed/ui/utils\",\n \"createHead\": \"@beinformed/react/server\",\n \"createHref\": \"@beinformed/ui/utils\",\n \"createLocalesWithConfiguredErrors\": \"@beinformed/react/i18n\",\n \"createTheme\": \"@beinformed/react/theme\",\n \"createUUID\": \"@beinformed/ui/utils\",\n \"darkenColor\": \"@beinformed/react/theme\",\n \"dehydrate\": \"@beinformed/react/server\",\n \"dismissNotification\": \"@beinformed/react/redux\",\n \"errorReducer\": \"@beinformed/react/redux\",\n \"fetchModel\": \"@beinformed/react/redux\",\n \"filterParameters\": \"@beinformed/ui/utils\",\n \"getActiveModelByInstance\": \"@beinformed/react/redux\",\n \"getActiveModels\": \"@beinformed/react/redux\",\n \"getAllFinishedModels\": \"@beinformed/react/redux\",\n \"getAllModelsByInstance\": \"@beinformed/react/redux\",\n \"getApplication\": \"@beinformed/react/redux\",\n \"getBooleanSetting\": \"@beinformed/ui/settings\",\n \"getBrowserHistory\": \"@beinformed/react/redux\",\n \"getCaptchaPath\": \"@beinformed/ui/settings\",\n \"getColorContrast\": \"@beinformed/react/theme\",\n \"getContentPath\": \"@beinformed/ui/settings\",\n \"getContextPath\": \"@beinformed/ui/settings\",\n \"setContextPath\": \"@beinformed/ui/settings\",\n \"getContextPathModularUI\": \"@beinformed/ui/settings\",\n \"getContextPathServer\": \"@beinformed/ui/settings\",\n \"getContrastYIQ\": \"@beinformed/react/theme\",\n \"getCookie\": \"@beinformed/ui/utils\",\n \"getCookieFromRequest\": \"@beinformed/react/server\",\n \"getDataFromServer\": \"@beinformed/react/redux\",\n \"getDisplayName\": \"@beinformed/react/utils\",\n \"getSwimLaneDiagramConfiguration\": \"@beinformed/react/utils\",\n \"getEnabledLocales\": \"@beinformed/ui/settings\",\n \"getEntryDate\": \"@beinformed/react/redux\",\n \"getFirstModelByInstance\": \"@beinformed/react/redux\",\n \"getFullRequestLocation\": \"@beinformed/react/server\",\n \"getFullRequestUrl\": \"@beinformed/react/server\",\n \"getHint\": \"@beinformed/ui/layouthints\",\n \"getLayoutHintConfiguration\": \"@beinformed/ui/layouthints\",\n \"getLocale\": \"@beinformed/react/redux\",\n \"getLocales\": \"@beinformed/react/redux\",\n \"getNumberSetting\": \"@beinformed/ui/settings\",\n \"getPreferredLocale\": \"@beinformed/react/server\",\n \"getProp\": \"@beinformed/react/theme\",\n \"getRepositoryResourceUrl\": \"@beinformed/ui/utils\",\n \"getRequestLocale\": \"@beinformed/react/redux\",\n \"getSetting\": \"@beinformed/ui/settings\",\n \"getStringSetting\": \"@beinformed/ui/settings\",\n \"getThemeNumberProp\": \"@beinformed/react/theme\",\n \"getThemeProp\": \"@beinformed/react/theme\",\n \"getThemeStringProp\": \"@beinformed/react/theme\",\n \"getUploadPath\": \"@beinformed/ui/settings\",\n \"getYIQ\": \"@beinformed/react/theme\",\n \"go\": \"@beinformed/react/redux\",\n \"goBack\": \"@beinformed/react/redux\",\n \"goForward\": \"@beinformed/react/redux\",\n \"graalFetch\": \"@beinformed/ui/utils\",\n \"gutter\": \"@beinformed/react/theme\",\n \"handleBeforeRenderHooks\": \"@beinformed/react/redux\",\n \"handleError\": \"@beinformed/react/redux\",\n \"handleUnauthorized\": \"@beinformed/react/redux\",\n \"hasAllContentInData\": \"@beinformed/ui/settings\",\n \"htmlpage\": \"@beinformed/react/server\",\n \"i18nReducer\": \"@beinformed/react/redux\",\n \"initModels\": \"@beinformed/react/redux\",\n \"isIncludeTimeOffsetInDateTimes\": \"@beinformed/ui/settings\",\n \"keyByHref\": \"@beinformed/react/redux\",\n \"languages\": \"@beinformed/react/i18n\",\n \"lightenColor\": \"@beinformed/react/theme\",\n \"locationChange\": \"@beinformed/react/redux\",\n \"login\": \"@beinformed/react/redux\",\n \"loginFailed\": \"@beinformed/react/redux\",\n \"loginPasswordField\": \"@beinformed/ui/settings\",\n \"loginPath\": \"@beinformed/ui/settings\",\n \"loginSuccess\": \"@beinformed/react/redux\",\n \"loginType\": \"@beinformed/ui/settings\",\n \"loginUsernameField\": \"@beinformed/ui/settings\",\n \"logout\": \"@beinformed/react/redux\",\n \"logoutPath\": \"@beinformed/ui/settings\",\n \"logoutSuccess\": \"@beinformed/react/redux\",\n \"mergeLayoutHintConfigurations\": \"@beinformed/builder\",\n \"mergeRefs\": \"@beinformed/react/utils\",\n \"modalsReducer\": \"@beinformed/react/redux\",\n \"modelByHref\": \"@beinformed/react/redux\",\n \"modelCatalogReducer\": \"@beinformed/react/redux\",\n \"modularUIReducer\": \"@beinformed/react/redux\",\n \"noAction\": \"@beinformed/react/redux\",\n \"normalizeLinkJSON\": \"@beinformed/ui/models\",\n \"notificationReducer\": \"@beinformed/react/redux\",\n \"parseUrl\": \"@beinformed/ui/utils\",\n \"preferencesReducer\": \"@beinformed/react/redux\",\n \"previousObject\": \"@beinformed/react/redux\",\n \"progressIndicatorReducer\": \"@beinformed/react/redux\",\n \"push\": \"@beinformed/react/redux\",\n \"receiveLocale\": \"@beinformed/react/redux\",\n \"rehydrate\": \"@beinformed/react/client\",\n \"reloadApplication\": \"@beinformed/react/redux\",\n \"reloadModel\": \"@beinformed/react/redux\",\n \"removeModelByKey\": \"@beinformed/react/redux\",\n \"removeRepeatableAttributeSet\": \"@beinformed/react/redux\",\n \"removeUnwantedHtml\": \"@beinformed/ui/utils\",\n \"renderBackground\": \"@beinformed/react/theme\",\n \"renderContrastColor\": \"@beinformed/react/theme\",\n \"renderSSRMinimal\": \"@beinformed/react/server\",\n \"replace\": \"@beinformed/react/redux\",\n \"resetAuthErrors\": \"@beinformed/react/redux\",\n \"resetModularUI\": \"@beinformed/react/redux\",\n \"resourceExists\": \"@beinformed/ui/utils\",\n \"resourceRedirectsToSecureLogin\": \"@beinformed/ui/utils\",\n \"retrieveText\": \"@beinformed/ui/utils\",\n \"roundedCorners\": \"@beinformed/react/theme\",\n \"routerMiddleware\": \"@beinformed/react/redux\",\n \"routerReducer\": \"@beinformed/react/redux\",\n \"saveChangePassword\": \"@beinformed/react/redux\",\n \"saveError\": \"@beinformed/react/redux\",\n \"sendAuthenticationError\": \"@beinformed/react/redux\",\n \"serverNoSSR\": \"@beinformed/react/server\",\n \"setAllContentInDataSetting\": \"@beinformed/react/redux\",\n \"setApplication\": \"@beinformed/react/server\",\n \"setConfigurationTheme\": \"@beinformed/react/theme\",\n \"setCookie\": \"@beinformed/ui/utils\",\n \"setCustomErrorResponseHandler\": \"@beinformed/react/redux\",\n \"setDateTimeSettings\": \"@beinformed/react/redux\",\n \"setI18n\": \"@beinformed/react/i18n\",\n \"setLocales\": \"@beinformed/react/redux\",\n \"setLoginPreferences\": \"@beinformed/react/redux\",\n \"setModel\": \"@beinformed/react/redux\",\n \"setModelCatalogEntryDate\": \"@beinformed/react/client\",\n \"setPreference\": \"@beinformed/react/redux\",\n \"setPreferences\": \"@beinformed/react/redux\",\n \"setServerPreference\": \"@beinformed/react/redux\",\n \"setServerPreferences\": \"@beinformed/react/server\",\n \"setServerPreferencesFromArray\": \"@beinformed/react/server\",\n \"setSetting\": \"@beinformed/ui/settings\",\n \"setSettings\": \"@beinformed/ui/settings\",\n \"setThemePreference\": \"@beinformed/react/redux\",\n \"setUnhandledRejectionEvent\": \"@beinformed/react/client\",\n \"setupClient\": \"@beinformed/react/client\",\n \"setupStore\": \"@beinformed/react/redux\",\n \"showFormNotification\": \"@beinformed/react/redux\",\n \"showModal\": \"@beinformed/react/redux\",\n \"showNotification\": \"@beinformed/react/redux\",\n \"showXHRErrorNotification\": \"@beinformed/react/redux\",\n \"spacer\": \"@beinformed/react/theme\",\n \"spacers\": \"@beinformed/react/theme\",\n \"themeProp\": \"@beinformed/react/theme\",\n \"universalFetch\": \"@beinformed/ui/utils\",\n \"updateEntryDate\": \"@beinformed/react/redux\",\n \"updateErrorStatus\": \"@beinformed/react/redux\",\n \"updateForm\": \"@beinformed/react/redux\",\n \"updateFormAttribute\": \"@beinformed/react/redux\",\n \"updateLayoutHintRules\": \"@beinformed/ui/models\",\n \"updateLocale\": \"@beinformed/react/redux\",\n \"updateModel\": \"@beinformed/react/redux\",\n \"useApplication\": \"@beinformed/react/hooks\",\n \"useAttributeUpdate\": \"@beinformed/react/hooks\",\n \"useBEIDispatch\": \"@beinformed/react/redux\",\n \"useBEISelector\": \"@beinformed/react/redux\",\n \"useBEIStore\": \"@beinformed/react/redux\",\n \"useCaseView\": \"@beinformed/react/hooks\",\n \"useCompleteSource\": \"@beinformed/react/hooks\",\n \"useConceptDetail\": \"@beinformed/react/hooks\",\n \"useConceptIndex\": \"@beinformed/react/hooks\",\n \"useConceptSearch\": \"@beinformed/react/hooks\",\n \"useContent\": \"@beinformed/react/hooks\",\n \"useContentFromSourceReferences\": \"@beinformed/react/hooks\",\n \"useContentIndex\": \"@beinformed/react/hooks\",\n \"useContentSearch\": \"@beinformed/react/hooks\",\n \"useContentTOC\": \"@beinformed/react/hooks\",\n \"useContentType\": \"@beinformed/react/hooks\",\n \"useDeepCompareEffect\": \"@beinformed/react/hooks\",\n \"useDetailPanel\": \"@beinformed/react/hooks\",\n \"useEntryDate\": \"@beinformed/react/hooks\",\n \"useErrorNotification\": \"@beinformed/react/hooks\",\n \"useForm\": \"@beinformed/react/hooks\",\n \"useFormNavigation\": \"@beinformed/react/hooks\",\n \"useGroupingPanel\": \"@beinformed/react/hooks\",\n \"useList\": \"@beinformed/react/hooks\",\n \"useListDetail\": \"@beinformed/react/hooks\",\n \"useListNavigation\": \"@beinformed/react/hooks\",\n \"useListOrDetail\": \"@beinformed/react/hooks\",\n \"useLocale\": \"@beinformed/react/hooks\",\n \"useLocaleCodes\": \"@beinformed/react/hooks\",\n \"useLocation\": \"@beinformed/react/hooks\",\n \"useLocationKey\": \"@beinformed/react/hooks\",\n \"useLogin\": \"@beinformed/react/hooks\",\n \"useLogout\": \"@beinformed/react/hooks\",\n \"useLookup\": \"@beinformed/react/hooks\",\n \"useMessage\": \"@beinformed/react/hooks\",\n \"useModal\": \"@beinformed/react/hooks\",\n \"useModelCatalog\": \"@beinformed/react/hooks\",\n \"useModels\": \"@beinformed/react/hooks\",\n \"useModelSelectors\": \"@beinformed/react/hooks\",\n \"useModularUI\": \"@beinformed/react/hooks\",\n \"useModularUIBasic\": \"@beinformed/react/hooks\",\n \"useModularUIKey\": \"@beinformed/react/hooks\",\n \"useModularUIRequest\": \"@beinformed/react/hooks\",\n \"useNavigation\": \"@beinformed/react/hooks\",\n \"useNotification\": \"@beinformed/react/hooks\",\n \"usePanel\": \"@beinformed/react/hooks\",\n \"usePathname\": \"@beinformed/react/hooks\",\n \"usePreference\": \"@beinformed/react/hooks\",\n \"useProgressIndicator\": \"@beinformed/react/hooks\",\n \"useProgressIndicatorState\": \"@beinformed/react/hooks\",\n \"useQuerystring\": \"@beinformed/react/hooks\",\n \"useRelatedConcepts\": \"@beinformed/react/hooks\",\n \"useReload\": \"@beinformed/react/hooks\",\n \"useRepeatableAttributeSet\": \"@beinformed/react/hooks\",\n \"useRetrieveFormsOnModel\": \"@beinformed/react/hooks\",\n \"useSearch\": \"@beinformed/react/hooks\",\n \"useTab\": \"@beinformed/react/hooks\",\n \"useTheme\": \"@beinformed/react/theme\",\n \"useTranslate\": \"@beinformed/react/hooks\",\n \"useUserProfile\": \"@beinformed/react/hooks\",\n \"validateFormObject\": \"@beinformed/react/redux\",\n \"xhr\": \"@beinformed/ui/utils\",\n \"get\": \"lodash\",\n \"has\": \"lodash\",\n \"isPlainObject\": \"lodash\",\n \"KEYCODES\": \"@beinformed/ui/constants\"\n}\n"],"mappings":"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","names":["module"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beinformed/codemod",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Be Informed UI Codemods",
5
5
  "bin": {
6
6
  "beinformed-codemod": "./dist/cli.js"