@govtechsg/tradetrust-ui-components
v2.21.1
Published
## Install
Downloads
303
Maintainers
Keywords
Readme
UI-Component Library For TradeTrust
Install
npm i --save @govtechsg/tradetrust-ui-components
Development
In the project directory, you can run:
npm run start
Runs the app in the storybook mode. Open http://localhost:9009 to view it in the browser.
The page will reload if you make edits. You will also see any lint errors in the console.
ignore running
npm run storybook
command directly for this repo, usenpm run start
instead
npm run test
Launches the test runner in the interactive watch mode. See the section about running tests for more information.
npm run build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes. Your app is ready to be deployed!
Why?
This repository was created when repeated common styled components were being developed between 2 sites: tradetrust.io and creator.tradetrust.io.
Hence, the decision is to host any common ui components that are shared between the 2 sites here. This ensures DRY and design consistency between both sites.
How is it determined what goes here?
As of now, any potential common components that are used between tradetrust.io and creator.tradetrust.io will be developed here. This repository is always on the work, do look out for any updates that happen along the way : )
What's here?
Checkout the documentation for the available components.
Styleguide
Color palette here.
Styles management
- The components here are built with Tailwind css.
- Note that exported components are bare without styles.
- It is expected for external application(s) to setup their own tailwind config, using the exported tailwind config from
/build
folder. It may look something like this:
Thereafter, do a deep merge with your local tailwind config if there is any.const commonUiConfig = require("@govtechsg/tradetrust-ui-components/build/tailwind")
- Do include
"./node_modules/@govtechsg/tradetrust-ui-components/src/**/*.tsx",
in tailwind config's purge content option, so that the classes will be retained after purged. - Otherwise, can use the stylesheet in
/build/styles.css
directly. Be careful of any conflicting css class names that your application may have.
Fonts management
We will not be providing the usage of Gilroy font. Please use alternatives.
However, for TradeTrust related applications, install by defining the following in tailwind.css
.
@font-face {
font-family: "Gilroy-Light";
src: url('https://ui.tradetrust.io/static/fonts/GilroyLight/font.woff2') format('woff2'),
url('https://ui.tradetrust.io/static/fonts/GilroyLight/font.woff') format('woff');
}
@font-face {
font-family: "Gilroy-Medium";
src: url('https://ui.tradetrust.io/static/fonts/GilroyMedium/font.woff2') format('woff2'),
url('https://ui.tradetrust.io/static/fonts/GilroyMedium/font.woff') format('woff');
}
@font-face {
font-family: "Gilroy-Bold";
src: url('https://ui.tradetrust.io/static/fonts/GilroyBold/font.woff2') format('woff2'),
url('https://ui.tradetrust.io/static/fonts/GilroyBold/font.woff') format('woff');
}
@font-face {
font-family: "Gilroy-ExtraBold";
src: url('https://ui.tradetrust.io/static/fonts/GilroyExtraBold/font.woff2') format('woff2'),
url('https://ui.tradetrust.io/static/fonts/GilroyExtraBold/font.woff') format('woff');
}