Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@sb1/ffe-core
Advanced tools
ffe-core contains styling common to all components in FFE - typography, colors, etc. It also includes JavaScript exports for color and breakpoint variables.
npm install --save @sb1/ffe-core
npm install --save-dev less less-plugin-npm-import # less-plugin is optional, but can simplify imports
Full documentation on usage is available at:
/* Your project's main .less import file */
@import 'npm://@sb1/ffe-core/less/ffe'; // with less-plugin
@import '~@sb1/ffe-core/less/ffe'; // with webpack and less-loader
@import '../path/to/node_modules/@sb1/ffe-core/less/ffe'; // direct reference
In some cases, you may not require everything in this package. You can import the parts you require if you want:
// Variables
@import '~@sb1/ffe-core/less/colors';
@import '~@sb1/ffe-core/less/breakpoints';
@import '~@sb1/ffe-core/less/dimensions';
@import '~@sb1/ffe-core/less/motion';
@import '~@sb1/ffe-core/less/spacing';
// Basic typography
@import '~@sb1/ffe-core/less/typography';
// Accessibility helpers
@import '~@sb1/ffe-core/less/accessibility';
If your project does not use Less, you can import the compiled styling:
@import '~@sb1/ffe-core/css/ffe.css';
Theming of components is supported through a set of custom properties, defined in a less/theme.less
file in every styling package. The properties in ffe-core
constitute a base theme, which is in turn used as default values in other packages. You may override the properties in each individual package in order to customize a single component, or override the properties defined in ffe-core
to customize a sitewide theme.
If your project uses the core styling, you're probably good to go. If not, make sure to import the core properties in theme.less
from ffe-core
:
@import '~@sb1/ffe-core/less/theme';
This package provides a set of less files containing variables for colors and other reusable constants. These files are:
The less variables specified in this package are also available as named JavaScript imports. This can be useful for consumers that use CSS-in-JS, or that need access to these values in their JavaScript for other reasons. They are named the same as their LESS siblings, but are camelCased, and do not have the @ffe-
prefix.
This is how you import them:
import {
fargeHvit,
fargeFjell30,
breakpointMd,
spacingXl,
} from '@sb1/ffe-core';
To start a local development server, run the following from the designsystem root folder:
npm install
npm run build
npm start
A local instance of component-overview
with live reloading will run at http://localhost:1234/.
Example implementations using the latest versions of all components are also available at https://sparebank1.github.io/designsystem.
FAQs
Rammeverk for Felles Front End
The npm package @sb1/ffe-core receives a total of 874 weekly downloads. As such, @sb1/ffe-core popularity was classified as not popular.
We found that @sb1/ffe-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.