chore(deps): update dependency style-dictionary to v5#637
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
629c301 to
397d096
Compare
397d096 to
afaec5e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.0.0→^5.0.0Release Notes
style-dictionary/style-dictionary (style-dictionary)
v5.4.1Compare Source
Patch Changes
46ec860: Fixsize/remtransform stripping the unit from zero-magnitude dimension values (e.g."0em"), which caused downstream CSS variables to serialize asundefined. Unit preservation now runs before the unitless-zero short-circuit.v5.4.0Compare Source
Minor Changes
edceda7: Add support for DTCG v2025.10 dimension token type object value, while remaining backwards compatible for dimension tokens using string values.All built-in transforms can now handle dimension tokens.
This includes CSS shorthand transforms for composed token types such as typography, border and shadows, which can contain properties that are dimensions.
{ "spacing": { "$type": "dimension", "$value": { "value": 1, "unit": "px" } }, "shadow": { "$type": "shadow", "$value": { "color": { "colorSpace": "srgb", "components": [0, 0, 0], "alpha": 0.4 }, "offsetX": { "value": 2, "unit": "px" }, "offsetY": { "value": 2, "unit": "px" }, "blur": { "value": 4, "unit": "px" }, "spread": { "value": 6, "unit": "px" } } } }3d5c140: Generate strict types (tuples) for the tokens of the same typePatch Changes
edceda7: Fix very old bug where size/remToPt wasn't converting toptunit, but rather tof(iOS float). Fixed this, addedsize/remToFloatto use the old behavior, and updated the ios transformGroup to use this instead. This is technically potentially "breaking" but because it is a bugfix, this is a patch.v5.3.3Compare Source
Patch Changes
52817e1: Fix vulnerability in bundled version of glob -> minimatch.v5.3.2Compare Source
Patch Changes
a7986d2: Support DTCGinsetboolean property in shadow/css/shorthand transform, in addition to the existingtype: "inset"format.Don't put invalid inset values in shadow/css/shorthand box-shadow values, they are ignored now. E.g. if you put
type: "innerShadow"or some other unrecognized string.v5.3.1Compare Source
Patch Changes
9f51f0d: Fix shadow and border CSS shorthands to also support latest DTCG color module. Add platform options to configure how the shorthand transforms stringify the color property.v5.3.0Compare Source
Minor Changes
b5adbc0: Add support for DTCG v2025.10 structured color format in color transformers.New features:
colorSpace,components,alpha, and optionalhexfallback propertiessrgb,srgb-linear,display-p3,a98-rgb,prophoto-rgb,rec2020,xyz-d50,xyz-d65,lab,lch,oklab,oklch,hsl,hwbcolor/oklchtransformer - outputs modern CSSoklch()functioncolor/oklabtransformer - outputs modern CSSoklab()functioncolor/p3transformer - outputs CSScolor(display-p3 ...)functioncolor/lchtransformer - outputs modern CSSlch()functionTypes:
DTCGColorSpaceandDTCGColorValueTypeScript typesHex fallback support:
When a DTCG color object includes a
hexproperty, it will be used as a fallback when the color is out-of-gamut for sRGB, allowing designers to provide pre-computed sRGB approximations.Patch Changes
1187f60: Update vulnerable transitive lodash dependency inside @bundled-es-modules/globv5.2.0Compare Source
Minor Changes
752a50c: Add (wip) sort option to formattedVariables and formats css, scss, less, stylus. See format docs on how to use it.Patch Changes
6e9164e: Small bugfix where formatting.commentStyle was not taken into account for fileHeader comments when possible.v5.1.4Compare Source
Patch Changes
a9c11a2: Fix of a regression bug caused by sizeRem transform throwing an error for NaN values. Because a string was thrown instead of an Error, this wasn't handled correctly by the transforms wrapper utility. Now we handle this scenario, and we also changed it to throw an actual Error.v5.1.3Compare Source
Patch Changes
6e306bc: Upgrade glob@11.1.0 forked package to fix vulnerability in origin package.v5.1.1Compare Source
Patch Changes
65745da: Fix outputReferences for tokens with 'value' in their name. Previously, references to tokens likeobject_type.value_chainwere incorrectly resolved because the code removed the first occurrence of.valueinstead of only the trailing suffix.v5.1.0Compare Source
Minor Changes
97a209a: Add new size/compose/{sp,dp} transformsPatch Changes
dbcdae3: Fix fontName parsing to handle double quotesc47600d: Export expand DTCGTypesMap for extension use cases.v5.0.4Compare Source
Patch Changes
7a238af: Fix an issue with token collisions being way to eager about complaining when values that are identical are "colliding". This cuts collision warnings by 75% or more.v5.0.3Compare Source
Patch Changes
3d070f5: Move patch-package to devDependencies and run in prepare instead of postinstall, so it only runs when npm installing locally and not for consumers.71614da: Wrap structuredClone in loadFile in a try catch, in case we have a JS/TS config file with dynamic content.v5.0.2Compare Source
Patch Changes
8e413a2: Fix vulnerable dependencies, patch-package and its transitivetmpdependency in particular.9f84a81: Remove node-sass from create-react-app example, dart-sass is used now usually.da19c8f: Small patch to allow no-destination "files" to not cause errors when using clean methods.v5.0.1Compare Source
Patch Changes
463b456: Simplify internalcleanFile(s)utils, fix a bug that would still attempt to unlink non-existent files in verbosity"silent"mode.8f7c522: FixloadFileto deep clone ES module exports to avoid unintended mutationsv5.0.0Compare Source
Major Changes
02300b1: No longer allow references to non-token leaf nodes. References only work when referencing a Design Token (its value).Non-token nodes will also not make it to the output, because they are filtered out during the flattening process to
tokenMapandtokenArray.Remove allowing references with
.valuesuffix.f19a0cb: BREAKING: no longer possible to pass options to change the reference syntax{ref.foo}. The opening, closing and separator characters are now set to be aligned with the DTCG spec.02300b1: BREAKING: minimum NodeJS version required is now v22.0.0 (LTS, at time of writing this). This is to supportSet.prototype.unionwhich we utilize in our token reference resolution utility, and it's important to use the cheaper built-in versus doing a union manually.Minor Changes
02300b1: Support passing Token Map structure togetReferencesandresolveReferencesutils.b80e75b: When transform hooks throw errors, they will now be caught and error-handled by Style Dictionary.Instead of causing a fatal failure, the error is collected and logged as a warning at the end.
With verbosity turned to
"verbose", information about which tokens in which files are causing an error in which transform, to help debugging the problem.Sensible fallbacks are used when a transform cannot complete.
Patch Changes
a23f353: SD will use posix style paths ('/') as much as possible and rely onnode:fsto translate to win32 paths whenever a call to the filesystem is done. The exception is for dynamic imports of JS files (SD config, token files).a23f353: Allow buildPaths without a trailing slash, by making use ofpath.join()utility.9bbbc8a: Dynamically import prettier and plugins so that they can be chunked separately by bundlers, and only imported on demand. This will significantly improve bundle size for users of Style Dictionary.Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.