-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Several Stackblitz fixes #31988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Several Stackblitz fixes #31988
Conversation
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
…ransferred to a new trigger (angular#31690) The menu has some logic that detaches its lazy content when the animation is finished, however while the animation was running, the panel might've been picked up by another trigger. This ends up opening an empty menu panel to the new trigger. These changes resolve the issue by checking if another trigger picked up the panel before detaching the lazy content. Fixes angular#31687.
See associated pull request for more information.
See associated pull request for more information.
…ngular#31451) When CdkTable is used with OnPush change detection and a `trackBy` function, changes to the `dataSource` might not trigger a view update if the `trackBy` function indicates that the rows themselves haven't changed (even if their internal data has). This can leave the data-bound elements within the table rows displaying outdated information. This commit adds `markForCheck()` calls within the `_renderRows` method of `CdkTable`. These calls ensure that when the table's data is updated (even without full row re-creation due to `trackBy`), the component is explicitly marked for change detection. This triggers a re-evaluation of the bindings for all visible rows, ensuring the view remains consistent with the underlying data. Fixes angular#24483
…trackBy (angular#31451)" (angular#31716) This reverts commit 5b45df3.
Adds tokens to the various button appearances to allow the touch target to be customized.
Adds a token that allows for the checkbox touch target to be customized.
Adds a token that allows for the radio button touch target to be customized.
Adds a token that allows for the slide toggle touch target to be customized.
Adds a token that allows for the paginator touch target to be customized. Also adds a token to customize the width of the page size select.
We already had the `index` inside `insertNode`, but we weren't passing it along to the context. Fixes angular#31578.
Fixes the following issues with the disabled behavior of the CDK menu item: * The item wasn't receiving focus like specified in the spec. * There wasn't a proper way to style disabled items which led users to use `aria-disabled`. * Clicking the disaled item didn't prevent the default behavior. Fixes angular#31179.
Sets up the schematics for the v21 release and deletes the ones from v20 that aren't necessary anymore.
Fixes that we were targeting v20 with the v21 migration.
…ular#31734) * Change deselectAll to deselect values that are not accounted for in the items array.
This change allows Renovate to run on all branches, not just the base branch. Note that it will only update cross-repo, Bazel, and GitHub Actions dependencies on these branches.
This commit adds `lockfile_mode=error` to the `.bazelrc` file. This change ensures that any future builds will fail if the lock file is not up-to-date with the `BUILD.bazel` file, preventing inconsistencies and encouraging developers to commit updated lock files.
…vents (angular#31981) Fixes that we were emitting some events before the form control value was assigned. Fixes angular#31950.
Makes the date filter function nullable so users can reset it. Fixes angular#31976.
…lar#31982) See associated pull request for more information.
We don't need a `.gitignore` in the Stackblitz template.
The Stackblitz examples were hanging on the build step, because we had an import of `@angular/material` in the `styles.scss`. These changes switch to using a pre-built theme. Fixes angular#31823. Fixes angular#31973. Fixes angular#28934.
The path for the file that Stackblitz should open in the editor was wrong which meant that it would open any random file. These changes correct the path.
Fixes that opening the testing examples wasn't actually running the tests. It seems like our approach using the `.stackblitzrc` file stopped working at some point.
b8d5f62
to
dcf5ebf
Compare
devversion
approved these changes
Oct 6, 2025
The commits are in |
This was referenced Oct 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
action: merge
The PR is ready for merge by the caretaker
area: build & ci
Related the build and CI infrastructure of the project
merge: preserve commits
When the PR is merged, a rebase and merge should be performed
target: patch
This PR is targeted for the next patch release
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.
Fixes the following issues with our Stackblitz examples:
.gitignore
.openFile
which meant that Stackblitz ended up opening some unrelated files.Fixes #31823.
Fixes #31973.
Fixes #28934.