Chore: version packages (alpha) - #276
Merged
Merged
Conversation
villeerikssoncsc
approved these changes
Sep 14, 2026
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@cscfi/csc-ui@4.0.0-alpha.15
Minor Changes
#275
5855ff9Thanks @razorfever! - Add app-wide prop defaults (ADR-0048):applyDefaults()sets a preferenceprop once for every instance of a tag, and
resetDefaults()clears it.applyDefaults({ 'c-text-field': { labelOnTop: true } })makes every textfield label on top;
applyDefaults({ 'c-select': { texts } })translatesevery select in one call. Later calls merge with earlier ones, a key set to
undefinedclears it, and mounted elements follow live — a locale switch isone call.
Properties table and typed as
AppDefaults:labelOnTop,hideDetails,shadowandsizeon c-text-field, c-select, c-autocomplete andc-tree-select;
itemsPerPageon the three list fields;textson thosethree and c-data-table. An unknown tag or prop throws.
default;
textsmerges key by key over the built-in strings. Both functionsare re-exported from
@cscfi/csc-ui-react.Two visible changes for these props: when unset, the element property now
reads
undefinedinstead of the built-in (el.labelOnTop,el.size,el.itemsPerPage), and the host no longer carries the reflected defaultattributes
size="default"/items-per-page="6".#275
fd4bf56Thanks @razorfever! - Value-selection fields open a fullscreen panel on narrow viewports. Below760px,
c-autocompleteandc-tree-selectno longer anchor their panel underthe field: it covers the viewport with a heading row (the field's label and a
close button), the search input pinned beneath it and the options filling the
rest, following the on-screen keyboard so the search stays visible. The page
behind the panel is inert until it closes.
c-select's existing phone layoutnow covers the whole viewport (no gaps below the small viewport or at the
corners), follows the keyboard the same way and gains the same heading row.
The close button's label is the new
closePaneltext; the row exposes theheading-row,headingandcloseparts.Transient panels (
c-menu,c-popover,c-autocomplete,c-tree-select) nolonger close when a scroll or drag gesture starts outside them: light dismiss
now needs the press and its release both outside, as for a native popover.
@cscfi/csc-ui-react@4.0.0-alpha.15
Minor Changes
#275
5855ff9Thanks @razorfever! - Add app-wide prop defaults (ADR-0048):applyDefaults()sets a preferenceprop once for every instance of a tag, and
resetDefaults()clears it.applyDefaults({ 'c-text-field': { labelOnTop: true } })makes every textfield label on top;
applyDefaults({ 'c-select': { texts } })translatesevery select in one call. Later calls merge with earlier ones, a key set to
undefinedclears it, and mounted elements follow live — a locale switch isone call.
Properties table and typed as
AppDefaults:labelOnTop,hideDetails,shadowandsizeon c-text-field, c-select, c-autocomplete andc-tree-select;
itemsPerPageon the three list fields;textson thosethree and c-data-table. An unknown tag or prop throws.
default;
textsmerges key by key over the built-in strings. Both functionsare re-exported from
@cscfi/csc-ui-react.Two visible changes for these props: when unset, the element property now
reads
undefinedinstead of the built-in (el.labelOnTop,el.size,el.itemsPerPage), and the host no longer carries the reflected defaultattributes
size="default"/items-per-page="6".#275
fd4bf56Thanks @razorfever! - Value-selection fields open a fullscreen panel on narrow viewports. Below760px,
c-autocompleteandc-tree-selectno longer anchor their panel underthe field: it covers the viewport with a heading row (the field's label and a
close button), the search input pinned beneath it and the options filling the
rest, following the on-screen keyboard so the search stays visible. The page
behind the panel is inert until it closes.
c-select's existing phone layoutnow covers the whole viewport (no gaps below the small viewport or at the
corners), follows the keyboard the same way and gains the same heading row.
The close button's label is the new
closePaneltext; the row exposes theheading-row,headingandcloseparts.Transient panels (
c-menu,c-popover,c-autocomplete,c-tree-select) nolonger close when a scroll or drag gesture starts outside them: light dismiss
now needs the press and its release both outside, as for a native popover.
Patch Changes
5855ff9,fd4bf56]: