Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
n-ui-foundations
Advanced tools
Sass and JS utilities for the next front-end for use by components and apps.
This package includes and configures several low-level Origami components required by all of the front-end of FT.com and ensures they maintain compatible versions. This includes colors, typography, grid, and normalising styles.
There are two Sass partials provided by this package which may be integrated with your codebase:
Components should integrate via the mixins only, it can be imported many times:
@import "n-ui-foundations/mixins";
Apps should integrate via the main entrypoint, which will output all of the base CSS rulesets. It should be imported once:
@import "n-ui-foundations/main";
Applications using n-ui
are able to split Sass output into multiple output files. This is done using an opening and closing code comment which act as delimiters for a PostCSS script to find and extract the rules between them.
@include nUiStylesheetStart('stylesheet-name');
.my-stylesheet-rule {
content: 'this will be output in stylesheet-name.css';
}
@include nUiStylesheetEnd('stylesheet-name');
Please note if your application is using Page Kit this feature is not available and these mixins should not be used.
Human readable classes (e.g. data-o-grid-colspan="half"
) have all been disabled to minimise the output size of o-grid
, with the exception of center
.
To avoid shipping unused rulesets offset
pull
and push
column selectors are disabled. To use these a mixin is provided nUiGridOffset($layout-name, $columns, $mode)
@include nUiGridOffset('M', 3, 'pull');
A mixin for getting logos (or other Origami imageset images)
@include nGetImage(
$image-type,
$image-name,
$color: null,
$container-width: 128,
$container-height: null
)
See https://github.com/Financial-Times/n-ui-foundations/blob/HEAD/util/README.md for a full list of utility classes.
This package includes several commonly used utility functions to avoid repeating boilerplate code.
import { $, $$ } from 'n-ui-foundations';
$(sel, [context])
Equivalent to context.querySelector(sel)
(context
defaults to document
)$$(sel, [context])
Equivalent to Array.from(context.querySelectorAll(sel))
(context
defaults to document
)throttle(func, wait)
Creates a throttled copy of a function, re-exported from o-utils
debounce(func, wait)
Creates a debounced copy of a function, re-exported from o-utils
uuid()
- generates a random UUIDascii(str)
converts non-ascii unicode characters to ascii equivalentsbroadcast(name, data, bubbles = true)
fires a custom event. The event is fired from document.body
by default but if called with the context of a HtmlElement
it will be fired from that instead.perfMark(name)
- log a performance mark.sampleUsers(pct, seed)
- select a % of users to target behaviour at (returns Bool
)Useful methods for working with cookies.
import { cookieStore } from 'n-ui-foundations');
get(name)
Get the value of the given cookie.
set(name, value, [options])
Set a cookie. Available options are domain
, path
, expires
, secure
and maxAge
.
Note it is "maxAge" not "max-age". If you don't specify either expires or maxAge the cookie will expire at the end of the session.
has(name)
Returns true if the given cookie exists.
remove(name)
Delete the given cookie by setting the expiry to the past.
v6 of n-ui-foundations no longer outputs a snappy grid by default, as it is deprecated. This means your grid container elements will be wider when the viewport width is at a grid breakpoint. Where the grid CSS class o-grid-container
or Sass mixin oGridContainer
is used check your project at different breakpoints for visual regressions. If your project looks good no action is needed.
If your project looks broken, you may choose to switch to a snappy
grid. This will allow us to find where the snappy grid is used and remove it in the future:
o-grid-container
classes with o-grid-container o-grid-container--snappy
.-<div class="o-grid-container"></div>
+<div class="o-grid-container o-grid-container--snappy"></div>
oGridContainer
mixin uses and pass snappy
as the first argument.-@include oGridContainer();
+@include oGridContainer($grid-mode: 'snappy');
If your app uses Page Kit's dotcom-build-sass
package and needs to maintain a snappy
grid, then ensure you are using Page Kit >= v2.0.1 and make the following change in the app's webpack.config.js
:
-new PageKitSassPlugin()
+new PageKitSassPlugin({ prependData: '$o-grid-mode: \'snappy\';' })
o-
components and should be used instead..n-ui-text-*
rules have been removed, use o-typography
instead.getColor()
and getColorFor()
Sass functions have been removed, use the equivalent functions provided by o-colors
instead.FAQs
Sass & JS foundations and utilities for the FT.com front end
The npm package n-ui-foundations receives a total of 933 weekly downloads. As such, n-ui-foundations popularity was classified as not popular.
We found that n-ui-foundations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.