bob-group-ui-framework-test
v2.1.53
Published
A custom set of UI components used by Bob Group, based on TailwindCSS and Headless UI
Downloads
81
Readme
Bob Group UI framework
A custom set of React UI components used by Bob Group, based on TailwindCSS and Headless UI
To add the framework to your project (assuming that your project is using Create React App):
yarn add bob-group-ui-framework-test
yarn add -D @craco/craco
- Add the following to the top of your main SCSS file:
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
font-size: 0.875rem;
}
- Add the following to your
index.js
file
import "bob-group-ui-framework-test/build/index.css";
- Replace your npm scripts (in package.json) with:
"start": "craco start",
"build": "craco build",
- Add a file named
craco.config.js
to the root of your project containing:
module.exports = {
style: {
postcss: {
plugins: [require("tailwindcss"), require("autoprefixer")]
}
}
};
- Add a file named
tailwind.config.js
to the root of your project containing:
const colors = require("tailwindcss/colors");
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
xs: "475px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px"
},
boxShadow: {
sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
DEFAULT: "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)",
md: "0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03)",
lg: "0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03)",
xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.25)",
"3xl": "0 35px 60px -15px rgba(0, 0, 0, 0.3)",
inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)",
none: "none"
},
extend: {
spacing: {
120: "30rem"
},
transitionProperty: {
width: "width"
}
},
fontFamily: {
sans: ["Montserrat"]
},
borderWidth: {
DEFAULT: "1px",
0: "0",
2: "2px",
3: "3px",
4: "4px",
6: "6px",
8: "8px"
},
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: { ...colors.red, light: "#FCA5A5", DEFAULT: "#DC2626", dark: "#991B1B" },
green: {
...colors.green,
100: "rgb(231, 255, 209)",
500: "#06b73d",
DEFAULT: "#06b73d"
},
pink: {
...colors.pink,
100: "#FFDFDC",
500: "#FF024E",
DEFAULT: "#FF024E"
},
yellow: {
...colors.yellow,
100: "#FFFBD3",
500: "#FFB600",
DEFAULT: "#FFB600"
},
blue: {
...colors.blue,
light: "#D6ECFF",
DEFAULT: "#007BFF",
dark: "#0060C7",
100: "rgb(214, 236, 255)",
500: "#0076fa"
},
primary: {
...colors.primary,
light: "#D6ECFF",
DEFAULT: "#007BFF",
dark: "#0060C7",
100: "rgb(214, 236, 255)",
500: "#0076fa"
}
}
},
variants: {
extend: {
opacity: ["disabled"]
}
},
plugins: [require("@tailwindcss/forms")]
};
- Change the colors of primary to your appropriate primary color
For some background on how it was compiled follow https://www.pluralsight.com/guides/react-typescript-module-create
Additional documentation
Developing the framework
In order to test your changes, navigate to the project you want to test it in e.g. Bob Pay. Then in the bobpay-frontend
, copy the ui-framework
folder to the src
folder of Bob Pay and import the framework like this: import { Map } from "ui-framework/src";