fix: uiSlider NumberFormat 0.00 + chore(release): cut v3.0.2 - #18
Open
bpamiri wants to merge 3 commits into
Open
fix: uiSlider NumberFormat 0.00 + chore(release): cut v3.0.2#18bpamiri wants to merge 3 commits into
bpamiri wants to merge 3 commits into
Conversation
Structural source scan so the --slider-value NumberFormat mask stays on 0.00 (Adobe CF 2025 rejects 0.##). uiBoundSlider is covered via delegation. Refs #15 Signed-off-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Peter Amiri <peter@alurium.com>
Adobe CF 2025 rejects / mishandles the 0.## NumberFormat mask. Change the --slider-value fill to 0.00. uiBoundSlider delegates to uiSlider. Refs #15 Signed-off-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Peter Amiri <peter@alurium.com>
Bump wheels-basecoat to 3.0.2 so the uiSlider NumberFormat Adobe CF 2025 fix can ship through the packages registry. Signed-off-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Peter Amiri <peter@alurium.com>
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.
Summary
Adobe CF 2025 NumberFormat mask fix in
uiSlider, plus cut stamps for 3.0.2. Existing apps pick this up by upgrading the package to 3.0.2.Refs #15. Same Adobe CF 2025 class of breakage as wheels-dev/wheels #3378 (the 3.0.1
asSwitchcompile fail).What broke
In
uiSlider, the--slider-valueCSS custom property usednumberFormat(local.pct, '0.##'). Adobe ColdFusion 2025 rejects / mishandles that mask, so the helper (and anything that calls it) fails the same way reserved-keywordswitchdid in 3.0.1.uiBoundSliderdelegates touiSlider, so both helpers were affected by this one call site. There is exactly onenumberFormatcall in the package.What changed
tests/BasecoatV23Spec.cfc(the existingv2.3 — uiSliderdescribe) asserts the slider CSS custom-property line usesnumberFormat(..., '0.00')and that no'0.##'NumberFormat mask remains inBasecoat.cfc.uiSlideris now'0.00'. No other helpers, CSS, or JS were touched.package.jsonandbox.jsonare 3.0.2; CHANGELOG has## [3.0.2] — 2026-08-23above the 3.0.1 block.Commit order is test → fix → cut (TDD Gate).
Release follow-up (deferred)
Tag
v3.0.2, ForgeBox / packages-registry publish, and any manifest work are left for Peter. This PR does not tag or publish.CI
This repo may have no GitHub Actions workflows. The new spec is a source-shape lock matching the 3.0.1
asSwitchAdobe-compile scan intests/BasecoatV24Spec.cfc.