Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiion committed Jun 10, 2024
1 parent ccc0e28 commit 718de8e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,3 @@ export class CombinatorProperties extends React.Component<
return null;
}
}

export default CombinatorProperties;
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import {
CombinatorKeyword,
createCombinatorRenderInfos,
JsonSchema,
OwnPropsOfControl,
resolveSchema,
StatePropsOfCombinator,
} from "@jsonforms/core";
import { JsonFormsDispatch, withJsonFormsAnyOfProps } from "@jsonforms/react";
import { Hidden, Tab, Tabs } from "@mui/material";
import React, { useCallback, useMemo, useState } from "react";

import CombinatorProperties from "./CombinatorProperties";
import { CombinatorProperties } from "./CombinatorProperties";

export const resolveSubSchemas = (
schema: JsonSchema,
Expand Down Expand Up @@ -93,6 +93,9 @@ const MaterialCustomAnyOfRendererComponent = ({
);
};

export const MaterialCustomAnyOfRenderer = withJsonFormsAnyOfProps(
export const MaterialCustomAnyOfRenderer:
| React.ComponentClass<OwnPropsOfControl>
| React.FunctionComponent<OwnPropsOfControl> = withJsonFormsAnyOfProps(
// @ts-ignore
MaterialCustomAnyOfRendererComponent,
);
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const MarkdownTextFieldRendererComponent = (props: ControlProps) => {
};

export const MarkdownTextFieldRenderer:
| React.ComponentClass<OwnPropsOfControl>
| React.FunctionComponent<OwnPropsOfControl> = withJsonFormsControlProps(
| React.ComponentClass<any>
| React.FunctionComponent<any> = withJsonFormsControlProps(
MarkdownTextFieldRendererComponent,
);

0 comments on commit 718de8e

Please sign in to comment.