This module contains premium components for form.io.
import premium from '@formio/premium';
import { Formio } from '@formio/js';
// License key is obligatory to use the library.
// You can obtain one by contacting form.io support at https://form.io/contact-us
Formio.license = 'yourLicenseKey';
Formio.use(premium);
You also need to include styles from the '/node_modules/@formio/premium/premium.css' into your project to make all the components work correctly.
<link rel="stylesheet" type="text/css" href="node_modules/@formio/premium/premium.css">
@import '~@formio/premium/premium.css';
In case you're using webpack
to bundle your application and meet the error "Can't resolve 'Formio' in 'node_modules/@formio/premium'"
at build time, please add the following to your webpack
configuration:
resolve: {
alias: {
Formio: require('node:path').resolve(__dirname, 'RELATIVE_PATH_TO_YOUR_APP_NODE_MODULES_DIR/formiojs/index.js'),
},
}