1.14.2 • Published 14 days ago

@voxgig/model-react v1.14.2

Weekly downloads
-
License
MIT
Repository
-
Last release
14 days ago

@voxgig/model-react

Voxgig Model React is a library of model-driven React Enterprise UI components.

Installation

npm install @voxgig/model-react

Quickstart

The best place to start would be to run (and experiment with) the example app in examples/basic-app.

git clone git@github.com:voxgig/model-react.git
cd model-react/examples/basic-app 

Install it and run:

npm install
npm run dev

How-to guides

Customize Model React with your theme

Model React components are built on top of Material UI, so it should be fairly easy to customize it with your theme.

Here's an example of how to change the color palette of your app:

  1. First create your custom theme:

    import { createTheme } from '@mui/material'
    const customTheme = createTheme({
        palette: {
            mode: 'dark',
            background: {
                default: '#191c29',
                paper: '#262937'
            },
            primary: {
                main: red[500]
            }
        }
    })
  2. Pass your theme to the context variable, make sure to wrap your components in ThemeProvider:

    const ctx = () => ({
        ...
        theme: customTheme,
        ...
    })
    
    ...
    
    <ThemeProvider theme={ctx().theme}>
      <div className='Private'>
        <BasicAdmin ctx={ctx} spec={spec} />
      </div>
    </ThemeProvider>

You can see a full example of this in examples/basic-app/src/private/Private.tsx

Contributing

Run in dev mode

git clone git@github.com:voxgig/model-react.git
cd model-react
npm run watch

Format and/or lint

  • You can format by running npm run format
  • You can lint and format by running npm run lint
1.14.2

14 days ago

1.14.1

1 month ago

1.14.0

2 months ago

1.13.2

2 months ago

1.13.1

2 months ago

1.13.0

2 months ago

1.12.1

2 months ago

1.11.0

3 months ago

1.10.2

3 months ago

2.2.0

3 months ago

1.10.1

3 months ago

2.1.0

3 months ago

1.9.1

4 months ago

1.8.0

4 months ago

1.7.0

4 months ago

2.0.0

4 months ago

1.6.8

5 months ago

1.6.7

5 months ago

1.6.6

5 months ago

1.6.4

5 months ago

1.6.3

5 months ago

1.6.2

5 months ago

1.6.1

5 months ago

1.6.0

5 months ago

1.5.0

5 months ago

1.4.0

5 months ago

1.3.14

5 months ago

1.3.13

5 months ago

1.3.12

5 months ago

1.3.11

5 months ago

1.3.7

5 months ago

1.3.10

5 months ago

1.3.9

5 months ago

1.3.8

5 months ago

1.3.5

5 months ago

1.3.4

5 months ago

1.3.3

5 months ago

1.3.2

5 months ago

1.1.1

7 months ago

1.1.0

7 months ago

1.0.0

7 months ago

1.2.3

6 months ago

1.1.2

7 months ago

0.3.0

11 months ago

0.4.0

9 months ago

0.1.2

1 year ago

0.2.0

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.4

1 year ago

0.2.2

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.0.6

1 year ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago