Skip to content

Releases: primer/primitives

v5.0.0

30 Sep 22:15
7019854
Compare
Choose a tag to compare

Major Changes

  • #245 65ad2df Thanks @colebemis! - All deprecated color variables have been removed. See removed variables for the complete list of removed variables.

  • #245 65ad2df Thanks @colebemis! - The deprecations directory in the dist directory has been renamed to deprecated:

    dist/
    - deprecations/
    + deprecated/

    You'll need to update your imports accordingly:

    - import deprecatedColors from '@primer/primitives/dist/deprecations/colors.json'
    + import deprecatedColors from '@primer/primitives/dist/deprecated/colors.json'

Minor Changes

  • #245 65ad2df Thanks @colebemis! - The dist directory now contains a removed directory with data about removed variables organized by category:

      dist/
        js/
        ts/
        json/
        scss/
        deprecated/
    +   removed/
    +     colors.json

    Each JSON file in the removed directory contains a mapping of removed variables to replacement variables. Example:

    // dist/removed/colors.json
    {
      "text.primary": "fg.default", // this means: `text.primary` is deprecated. Use `fg.default` instead
      "auto.blue.4": ["accent.fg, accent.emphasis"], // this means: `auto.blue.4` is deprecated. Use `accent.fg` or `accent.emphasis` instead
      "text.white": null // this means: `text.white` is deprecated. We don't have a replacement for it
    }

    This data will allow you to write linters to prevent usage of removed variables.

Patch Changes

v4.8.1

24 Sep 05:44
4314816
Compare
Choose a tag to compare

Patch Changes

v4.8.0

16 Sep 06:29
81a8b6b
Compare
Choose a tag to compare

Minor Changes

Patch Changes

v4.7.1

07 Sep 21:33
5f9a7f9
Compare
Choose a tag to compare

Patch Changes

v4.7.0

03 Sep 21:32
b1c936a
Compare
Choose a tag to compare

Minor Changes

v4.6.9

02 Sep 04:18
c9e9e2a
Compare
Choose a tag to compare

Patch Changes

v4.6.8

31 Aug 20:41
33d6353
Compare
Choose a tag to compare

Patch Changes

v4.6.7

26 Aug 05:43
ca89326
Compare
Choose a tag to compare

Patch Changes

v4.6.6

25 Aug 07:30
2d3a915
Compare
Choose a tag to compare

Patch Changes

v4.6.5

23 Aug 20:33
c1c4bfa
Compare
Choose a tag to compare

Patch Changes