@safaricom/sui v1.5.0
Safaricom SUI
@safaricom/sui
A React Component Library (Typescript | React | MUI)
Getting Started
Peer dependencies
Please note that @mui/material, @emotion/react, @emotion/styled, @mui/icons-material, @mui/x-date-pickers, and dayjs are peer dependencies that should be installed before installing @safaricom/sui.
Installation
// with npm
npm install @safaricom/sui// with yarn
yarn add @safaricom/suiUsage
import { CssBaseline, ThemeProvider } from "@mui/material";
import theme from "@safaricom/sui";
const Layout = ({ children }) => {
return (
<ThemeProvider theme={theme}>
<CssBaseline />
{children}
</ThemeProvider>
);
};
export default Layout;Usage with Nextjs
ā ļø If you're using @safaricom/sui with Next.js, you might face the following error:
...Doesn't build due to require() of ES Module (ERR_REQUIRE_ESM)To solve it, transpile the package by adding transpilePackages: '@safaricom/sui' to your next.config.js/ts file.
/* Your Next.js config */
module.exports = {
transpilePackages: ["@safaricom/sui"],
};Changelog
Go to Version Releases
TypeScript
This library comes with TypeScript "typings". If you happen to find any bugs in those, create an issue.
š Bugs
Please file an issue for bugs, missing documentation, or unexpected behavior.
š” Feature Requests
Please file an issue to suggest new features. Vote on feature requests by adding a š. This helps maintainers prioritize what to work on.
Contributors Section
Here are some available commands/scripts and what they do.
build: Runs linting, builds the project using Vite`.lint: Compiles TypeScript files and lints all TypeScript and TypeScript React files using ESLint.lint:fix: Runs the lint command with the--fixflag to automatically fix linting errors.storybook: Starts the Storybook development server on port 6006.build-storybook: Builds the Storybook project.test:generate-output: Runs Jest tests and outputs the results in JSON format to a file named.jest-test-results.json. If the Jest command fails, it exits with a status code of 0 (success).test: Runs Jest tests.start-and-test: Executes a Node.js script calledstartAndRunTestsWithOutput.js.test:coverage: Runs tests for Storybook components with coverage enabled, generates coverage reports in thecoverage/storybookdirectory, and outputs an lcov report.test:coverage:generate-lcov: Same astest:coverage, but explicitly generates an lcov report.release: Runs thestandard-versionpackage, which automatically increments the project version based on commit messages and generates a changelog.test:vitestcoverage: Runs Vite tests with coverage enabled.prepare: Installs Husky, a Git hooks manager, during the preparation step of installing dependencies.
LICENSE
MIT
11 months ago
11 months ago
10 months ago
11 months ago
10 months ago
10 months ago
10 months ago
11 months ago
11 months ago
10 months ago
10 months ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago