4.1.2 • Published 10 days ago

@norges-domstoler/dds-page-generator v4.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
10 days ago

@norges-domstoler/dds-page-generator

Version License Checks

Side- og skjemagenerering basert på JSON-input for bruk i domstolenes tjenester.

📦 Installasjon

pnpm add @norges-domstoler/dds-page-generator

or

npm install @norges-domstoler/dds-page-generator

🔨 Bruk

import {
  PageGenerator,
  SectionGenerator,
} from '@norges-domstoler/dds-page-generator';

const fields = [{
    fields: [
    {
        component: FormGeneratorSupportedFields.TextInput,
        props: {
            label: 'Fornavn',
            type: 'text',
            name: 'firstName',
        },
    },
    {
        component: FormGeneratorSupportedFields.TextInput,
        props: {
            label: 'Etternavn',
            type: 'text',
            name: 'lastName',
        },
    }],
},
{
    component: FormGeneratorSupportedFields.RadioButtonGroup,
    props: {
        label: 'Kjønn',
        name: 'kjønn',
    },
    children: [{
        component: FormGeneratorSupportedFields.RadioButton,
        props: {
            label: 'Kvinne',
            value: 'female',
        },
    },
    {
        component: FormGeneratorSupportedFields.RadioButton,
        props: {
            label: 'Mann',
            value: 'male',
        },
    },
    {
        component: FormGeneratorSupportedFields.RadioButton,
        props: {
            label: 'Annet',
            value: 'other',
        },
    }],
}];

const stateOnChange = (newState: object) => {
    console.log(newState);
}

<PageGenerator as="form" fields={fields} stateOnChange={stateOnChange} />
<SectionGenerator as="form" fields={fields} stateOnChange={stateOnChange} />
4.1.2

10 days ago

4.1.1

16 days ago

4.1.0

18 days ago

4.0.2

25 days ago

4.0.1

1 month ago

4.0.0

2 months ago

3.1.2

2 months ago

3.1.1

3 months ago

3.1.0

4 months ago

3.0.0

4 months ago

2.7.12

4 months ago

2.7.11

4 months ago

2.7.10

4 months ago

2.7.9

5 months ago

2.7.8

5 months ago

2.7.7

5 months ago

2.7.6

5 months ago

2.7.5

5 months ago

2.6.1

7 months ago

2.6.0

7 months ago

2.7.4

5 months ago

2.7.3

6 months ago

2.5.0

8 months ago

2.7.0

7 months ago

2.5.2

8 months ago

2.5.1

8 months ago

2.7.2

6 months ago

2.7.1

6 months ago

2.5.3

8 months ago

2.3.0

11 months ago

2.4.0

11 months ago

2.2.5

1 year ago

2.2.4

1 year ago

2.2.3

1 year ago

2.2.2

1 year ago

2.2.1

1 year ago

2.2.0

1 year ago

2.1.1

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago