@tsed/tailwind-formio
v2.3.1
Published
Tailwind templates for form.io forms.
Downloads
7,666
Readme
This repository will change the rendering of forms in formio.js so that it uses html and classes compatible with the Semantic UI framework.
Install
npm install @tsed/tailwind-formio --save
npm install --save-dev postcss-nested@4
Tailwind and create-react-app
If you use create-react-app
, you'll need to follow the official tailwind guide installation here: https://tailwindcss.com/docs/guides/create-react-app
Configure postcss
Edit the craco.config.js
(or postcss.config.js
) and add the postcss-nested
to the postcss plugins list:
module.exports = {
style: {
postcss: {
plugins: [
require('tailwindcss'),
+ require('postcss-nested')
require('autoprefixer')
]
}
}
}
Or:
export default {
plugins: {
'tailwindcss/nesting': {},
tailwindcss: {},
autoprefixer: {},
},
}
Configure tailwind
Generate the initial tailwind.config.js
with the following command:
npx tailwindcss-cli@latest init
Edit the tailwind.config.js
and copy the following content:
const primary = "hsla(208, 100%, 43%, 1)";
const secondary = "hsla(190, 81%, 42%, 1)";
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
DEFAULT: primary,
50: "hsla(208, 100%, 91%, 1)",
100: "hsla(208, 100%, 83%, 1)",
200: "hsla(208, 100%, 75%, 1)",
300: "hsla(208, 100%, 67%, 1)",
400: "hsla(208, 100%, 59%, 1)",
500: "hsla(208, 100%, 51%, 1)",
600: primary,
700: "hsla(208, 100%, 35%, 1)",
800: "hsla(208, 100%, 27%, 1)",
900: "hsla(208, 100%, 19%, 1)"
},
secondary: {
DEFAULT: secondary,
50: "hsla(190, 81%, 90%, 1)",
100: "hsla(190, 81%, 82%, 1)",
200: "hsla(190, 81%, 74%, 1)",
300: "hsla(190, 81%, 66%, 1)",
400: "hsla(190, 81%, 58%, 1)",
500: "hsla(190, 81%, 50%, 1)",
600: secondary,
700: "hsla(190, 81%, 34%, 1)",
800: "hsla(190, 81%, 28%, 1)",
900: "hsla(190, 81%, 20%, 1)"
},
"gray-darker": "#504747"
},
spacing: {
7.5: "1.875rem", // 30px
15: "3.75rem", // 60px
22: "5.5rem", // 88px
25: "6.25rem", // 100px
26: "6.5rem", // 104px
30: "8.5rem", // 136px
32: "9rem", // 144px
68: "17rem" // 272px
},
padding: {
px: "1px"
},
margin: {
px: "1px",
"-px": "-1px",
"-2px": "-2px",
auto: "auto"
},
fontSize: {
micro: ".5rem", // 8px
xxs: ".625rem", // 10px
md: "1.125rem" // 18px
},
fontWeight: {
hairline: 100
},
fontFamily: {
brand: ["Source Sans Pro", "sans-serif"],
sans: ["Source Sans Pro", "sans-serif"],
serif: ["Source Sans Pro", "sans-serif"],
inconsolata: ["Inconsolata"],
source: ["source-code-pro", "Menlo", "Monaco", "Consolas", "Courier New", "monospace"]
},
minWidth: {
site: "18.75rem",
"input-mini": "17.5rem",
"input-small": "31.25rem",
"input-medium": "36.3125rem",
"input-large": "61.45rem",
"button-mini": "5.5rem",
"button-small": "7rem",
"button-medium": "9.875rem",
"button-large": "10rem"
},
width: {
arrow: ".8rem",
"3/10": "30%",
"7/10": "70%",
"9/10": "90%",
"12/25": "48%"
},
maxWidth: {
sm: "30rem",
md: "40rem",
lg: "50rem",
xl: "60rem",
"2xl": "70rem",
"3xl": "80rem",
"4xl": "90rem",
"5xl": "100rem",
"1/4": "25%",
"1/2": "50%",
"3/5": "60%",
"4/5": "80%",
"9/10": "90%",
"site-mini": "17.5rem",
"site-small": "31.25rem",
"site-medium": "43.75rem",
"site-large": "56.25rem",
site: "73.75rem",
screen: "100vw"
},
height: {
arrow: ".4rem",
px: "1px",
4: "1rem",
5: "1.25rem",
8: "1.8rem",
9: "2.25rem",
10: "2.5rem",
11: "2.75rem",
12: "3rem",
16: "4rem",
24: "6rem",
32: "8rem"
},
borderWidth: {
1: "1px",
5: "5px"
},
borderRadius: {
half: "50%",
full: "100%"
},
zIndex: {
1: 1,
2: 2,
3: 3,
4: 4,
5: 5,
6: 6
},
fill: {
transparent: "transparent"
},
flex: {
2: "2 2 0%",
3: "3 3 0%"
}
},
outline: {
none: ["2px solid transparent", "2px"],
white: ["2px dotted white", "2px"],
black: ["2px dotted black", "2px"]
}
},
variants: {
extend: {}
},
corePlugins: {
borderCollapse: true
},
plugins: []
};
Then create a tailwind.css
in styles
directory and add the following lines:
@tailwind base;
@tailwind components;
@tailwind utilities;
Import the tailwind.css
in the index.css
created by create-react-app:
@import "~formiojs/dist/formio.full.css";
@import "./tailwind.css";
@import "~@tsed/tailwind-formio/styles/index.css";
Optionally, you can import fonts and icons:
@import "~formiojs/dist/formio.full.css";
@import "./tailwind.css";
+@import "./fonts/source-sans-pro/index.css";
+@import "./fonts/inconsolata/index.css";
+@import "./fonts/bxicons/index.css";
@import "~@tsed/tailwind-formio/styles/index.css";
Now, we can configure formio to use the tailwind template in our React application.
So edit the index.js
(or index.ts
):
import React from 'react';
import ReactDOM from 'react-dom';
+import { Formio, Templates } from "@tsed/react-formio";
+import tailwind from "@tsed/tailwind-formio";
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
+Formio.use(tailwind);
+Templates.framework = "tailwind";
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
Finally, start the application!
Contributors
Please read contributing guidelines here.
Backers
Thank you to all our backers! 🙏 [Become a backer]
Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
License
The MIT License (MIT)
Copyright (c) 2016 - 2021 Romain Lenzotti
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.