Gathering detailed insights and metrics for bob-group-ui-framework-test
Gathering detailed insights and metrics for bob-group-ui-framework-test
Gathering detailed insights and metrics for bob-group-ui-framework-test
Gathering detailed insights and metrics for bob-group-ui-framework-test
npm install bob-group-ui-framework-test
Typescript
Module System
Min. Node Version
Node Version
NPM Version
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
27
3
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
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
font-size: 0.875rem;
}
index.js
fileimport "bob-group-ui-framework-test/build/index.css";
"start": "craco start",
"build": "craco build",
craco.config.js
to the root of your project containing:module.exports = {
style: {
postcss: {
plugins: [require("tailwindcss"), require("autoprefixer")]
}
}
};
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")]
};
For some background on how it was compiled follow https://www.pluralsight.com/guides/react-typescript-module-create
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";
No vulnerabilities found.
No security vulnerabilities found.