@aokiapp/rjsf-mantine-theme
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

@aokiapp/rjsf-mantine-theme

This package provides a Mantine theme for the React JSON Schema Form (rjsf) library.

Demo

We have a playgroud where you can see the theme in action:

npm install
npm run build
cd packages/playground
npm run start

Installation

You can install the package:

npm:

npm install @mantine/core@7.4.0 @mantine/dates@7.4.0 @mantine/hooks@7.4.0 @rjsf/core @tabler/icons-react dayjs react

yarn:

yarn add @mantine/core@7.4.0 @mantine/dates@7.4.0 @mantine/hooks@7.4.0 @rjsf/core @tabler/icons-react dayjs react

Usage

import { MantineProvider } from '@mantine/core';
import Form from '@aokiapp/rjsf-mantine-theme';

render(
  <MantineProvider>
    <Form schema={schema} uiSchema={uiSchema} />
  </MantineProvider>,
  document.getElementById('app'),
);

or with a custom theme:

import { withTheme } from '@rjsf/core';
import { Theme as MantineTheme } from '@aokiapp/rjsf-mantine-theme';

// Make modifications to the theme with your own fields and widgets

const Form = withTheme(MantineTheme);

For usage of RJSF, please refer the official documentation.

Credits

This derivative is based on the @pkalisiewicz's previous work.

This repository is built using RJSF (React JSON Schema Form).

We appreciate the hard work and dedication of the RJSF team and contributors in creating and maintaining this valuable tool.

License

Apache-2.0

Package Sidebar

Install

npm i @aokiapp/rjsf-mantine-theme

Weekly Downloads

224

Version

0.0.5

License

Apache-2.0

Unpacked Size

682 kB

Total Files

103

Last publish

Collaborators

  • yuki-js