@adaptavant/core@0.0.10

This release is our first Release Candidate for Earth 1.0.

We encourage you to try it out and give us feedback to ensure we can address it before we publish the stable release.

In this release, we have:

  • Updated the break-words class to use word-break: break-words. Tailwind uses overflow-wrap: break-word for this utility, but we found that it often failed to create word breaks. Therefore, we have enhanced it to apply both properties.
  • Updated our border radius token to include "px" in the name to make it clear that they are not part of Tailwind's built-in scale. The generated Tailwind classes look something like this: rounded-4px.
  • Added classes for our custom "branded" font weights: font-regular, font-strong, and font-stronger. These allow us to change heading weights between brands, for instance.
  • We have also done a major refactor of the TypeScript configuration for our packages, as well as how we add extra entry points to packages. The entry points should now work in all environments, so there should be no need to reach into the dist directory of packages anymore. For example, import { tokens } from '@adaptavant/brands/dist/setmore' becomes import { tokens } from '@adaptavant/brands/setmore'.

Below is the list of changesets for this release, with links to the commits that include the respective changes.

Patch Changes

  • 79cd423: Added break-words class to tailwind 'utilities' plugin
  • f4cf755: Update exports and tsconfig settings
  • 4ac61a8: Update border radius tokens to include px in name
  • 5cf3dd9: Add custom font-weight utilities