@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 useword-break: break-words
. Tailwind usesoverflow-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
, andfont-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'
becomesimport { tokens } from '@adaptavant/brands/setmore'
.
Below is the list of changesets for this release, with links to the commits that include the respective changes.