Type Alias GlobalAppConfig<DeclarativeMappingType>

GlobalAppConfig: GlobalSemanticConfig & {
    authorityAccess?: Record<string, AuthorityConfiguration>;
    cellRendererRegistry?: JsonFormsCellRendererRegistryEntry[];
    detailViewConfig?: DetailViewConfigOptions;
    makeStubSchema?: (schema: JSONSchema7) => JSONSchema7;
    normDataMapping?: Record<string, NormDataMapping<DeclarativeMappingType>>;
    rendererRegistry?: JsonFormsRendererRegistryEntry[];
    schema: JSONSchema7;
    tableActionRegistry?: any[];
    tableColumnRegistry?: TableColumnRegistry;
    typePresentation?: TypePresentationRegistry;
    uiSchemaDefaultRegistry?: JsonFormsUISchemaRegistryEntry[];
    uischemata?: Record<string, any>;
    viewConfig?: ViewConfigSet;
}

Type Parameters

  • DeclarativeMappingType

Type declaration

  • OptionalauthorityAccess?: Record<string, AuthorityConfiguration>
  • OptionalcellRendererRegistry?: JsonFormsCellRendererRegistryEntry[]
  • OptionaldetailViewConfig?: DetailViewConfigOptions

    Use viewConfig.detail.options

  • OptionalmakeStubSchema?: (schema: JSONSchema7) => JSONSchema7
  • OptionalnormDataMapping?: Record<string, NormDataMapping<DeclarativeMappingType>>
  • OptionalrendererRegistry?: JsonFormsRendererRegistryEntry[]
  • schema: JSONSchema7
  • OptionaltableActionRegistry?: any[]
  • OptionaltableColumnRegistry?: TableColumnRegistry
  • OptionaltypePresentation?: TypePresentationRegistry
  • OptionaluiSchemaDefaultRegistry?: JsonFormsUISchemaRegistryEntry[]
  • Optionaluischemata?: Record<string, any>
  • OptionalviewConfig?: ViewConfigSet