Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/cdk 18.1.4 -> 18.2.12 age adoption passing confidence

Release Notes

angular/components (@​angular/cdk)

v18.2.12

Compare Source

material
Commit Type Description
3fc968a59 fix datepicker: use SVG icons for calendar (#​29957)

v18.2.11

Compare Source

cdk
Commit Type Description
5d1bc76430 fix tree: only handle keyboard events directly from the node
a3449dc851 perf table: Use ResizeObservers instead of dom measurement to reduce layout thrashing (where possible) (#​29814)
material
Commit Type Description
a98c886163 fix button: anchor not handling disabledInteractive correctly (#​29938)
810040e8fc fix sidenav: remove IE animation workaround (#​29929)
197747e2bd fix stepper: remove IE animation workaround (#​29916)

v18.2.10

Compare Source

material
Commit Type Description
501faa9a54 fix chips: emitting end event multiple times when holding down key (#​29894)
4a0397a1c7 fix tabs: remove IE animation workaround (#​29899)

v18.2.9

Compare Source

material
Commit Type Description
80bfac26b fix badge: content incorrectly truncated in M3 (#​29854)
2d7519178 fix card: elevated card container color (#​29835)
6ce574731 fix dialog: updates dialog max-height in landscape (#​29853)
ddb55e2c2 fix form-field: account in cols attribute on textarea (#​29836)
afc6b9db1 fix radio: use tokens for focused border color (#​29716)

v18.2.8

Compare Source

cdk
Commit Type Description
fa43a2456 fix stepper: remove mock of forms type
5bed0943a fix stepper: reset submitted state when resetting stepper
material
Commit Type Description
104b5932c feat core: expose styling information to the docs site
7ebfbeb6c fix schematics: treat lower dependency builder as default builder (#​29833)

v18.2.7

Compare Source

cdk
Commit Type Description
3e1faec2aa fix drag-drop: positioning thrown off with align-self (#​29813)
material
Commit Type Description
9280ad3948 fix chips: chip grid not re-focusing first item
7a5c1dfb46 fix chips: chip set overwriting disabled state (#​29795)
0fabf52036 fix chips: focus escape not working consistently
da55ad02bc fix core: infer first day of week in native date adapter (#​29802)

v18.2.6

Compare Source

material
Commit Type Description
d8c2b420c9 fix datepicker: set explicit line height on calendar (#​29770)

v18.2.5

Compare Source

cdk
Commit Type Description
1ea55b6e8 fix drag-drop: account for scale when setting free drag position (#​29739)
aae74b031 fix listbox: scroll active option into view when using aria-activedescendant (#​29722)
7db4b5f4c fix tree: resolve maximum call stack error (#​29754)
material
Commit Type Description
f9e18109e fix chips: increase chip remove touch target size (#​29452)
2cf2f5321 fix datepicker: replace labels not pointing to anything (#​29755)
7ab65e4fb fix select: remove incompatible aria-autocomplete attribute (#​29645)
06818a7ed fix slider: log proper error when slider isn't configured correctly (#​29745)

v18.2.4

Compare Source

cdk
Commit Type Description
7cc0d3a6d fix overlay: avoid leaking memory through afterNextRender (#​29709)
material
Commit Type Description
651b448e8 fix badge: change legacy container size default (#​29713)
0e6dee30a fix form-field: Don't allow label to grow larger than input (#​29673)
57028df23 fix select: Update checkbox color to match the selected label text color (#​29684)

v18.2.3

Compare Source

material
Commit Type Description
0f07b25d12 fix badge: resolve memory leak (#​29676)
fe3f30ff2f fix core: Allow system variables to be formatted for opacity (#​29665)
5d93395442 fix core: Fix incorrect color role mappings (#​29655)
4a79052ae0 fix tooltip: remove old IE workaround (#​29674)

v18.2.2

Compare Source

cdk
Commit Type Description
39d3d01340 fix drag-drop: error if ngDevMode is undefined (#​29634)
b1c5ed7260 fix tree: avoid breaking change in constructor (#​29648)
ff95692125 fix tree: capturing focus on load (#​29641)
f888b3d95a fix tree: fix issue where isExpanded wouldn't be set if placed before isExpandable (#​29565) (#​29647)
material
Commit Type Description
3ce4e9fc2a fix schematics: Add the missing neutral tones for the M3 color palettes (#​29644)
f93d0f4095 perf tooltip: Avoid unneeded calls to clearTimeout (#​29643)

v18.2.1

Compare Source

cdk
Commit Type Description
3a2d13e2e4 fix drag-drop: preview positioned incorrectly when RTL is set on the body (#​29606)
material
Commit Type Description
bad94fda58 fix datepicker: calendar font tokens not being picked up (#​29610) (#​29615)
c4c62b8549 fix icon: update error message for missing HttpClient (#​29589)
b2a32e9898 fix menu: inconsistent layout of submenu icon (#​29603)
5f0c89030e fix tabs: switch pagination to not use native buttons (#​29605)

v18.2.0

Compare Source

Deprecations

material
  • Tree controller deprecated. Use one of levelAccessor or childrenAccessor instead. To be removed in a future version.

    • BaseTreeControl, TreeControl, FlatTreeControl, and NestedTreeControl deprecated
    • CdkTree#treeControl deprecated. Provide one of CdkTree#levelAccessor or CdkTree#childrenAccessor instead.
    • MatTreeFlattener deprecated. Use MatTree#childrenAccessor and MatTreeNode#isExpandable instead.
    • MatTreeFlatDataSource deprecated. Use one of levelAccessor or childrenAccessor instead of TreeControl.
      Note when upgrading: isExpandable works differently on Trees using treeControl than trees using childrenAccessor or levelAccessor. Nodes on trees that have a treeControl are expandable by default. Nodes on trees using childrenAccessor or levelAccessor are not expandable by default. Provide isExpandable to override default behavior.
  • Setting tabindex of tree nodes deprecated. By default, Tree ignores tabindex passed to tree nodes.

    • MatTreeNode#tabIndex deprecated. MatTreeNode ignores Input tabIndex and manages its own focus behavior.
    • MatTreeNode#defaultTabIndex deprecated. MatTreeNode ignores defaultTabIndex and manages its own focus behavior.
    • MatNestedTreeNode#tabIndex deprecated. MatTreeNode ignores Input defaultTabIndex and manages its own focus behavior.
    • LegacyTreeKeyManager and LEGACY_TREE_KEY_MANAGER_FACTORY_PROVIDER deprecated. Inject a TreeKeyManagerFactory to customize keyboard behavior.

    Note when upgrading: an opt-out is available for keyboard functionality changes. Provide LEGACY_TREE_KEY_MANAGER_FACTORY_PROVIDER to opt-out of Tree managing its own focus. When provided, Tree does not manage it’s own focus and respects tabindex passed to TreeNode. When provided, have the same focus behavior as before this commit is applied.

    Add Legacy Keyboard Interface demo, which shows usage of LEGACY_TREE_KEY_MANAGER_FACTORY_PROVIDER. Add Custom Key Manager, which shows usage of injecting a TreeKeyManagerStrategy

  • disabled renamed to isDisabled.

    • CdkTreeNode#disabled deprecated and alias to CdkTreeNode#isDisabled
material
Commit Type Description
ddc307e28 feat button-toggle: allow disabled buttons to be interactive (#​29550)
841760101 feat checkbox: add the ability to interact with disabled checkboxes (#​29474)
0af3b6175 feat radio: add the ability to interact with disabled radio buttons (#​29490)
4292e1b3a feat slide-toggle: add the ability to interact with disabled toggle (#​29502)
a018fb0ee feat tooltip: replicate tooltipClass to default MatTooltipDefaultOptions (#​29467)
aaf0d5156 fix checkbox: account for disabledInteractive in harness
d22a24d66 fix list: checkmark not visible in high contrast mode (#​29546)
a259b016b fix radio: account for disabledInteractive in harness
fd47a0e60 fix radio: avoid error if destroyed quickly (#​29507)
08d2e3e69 fix slide-toggle: account for disabledInteractive in harness
fd416a30e fix tooltip: remove aria-describedby when disabled (#​29520)
ff36c80f9 fix tree: add levelAccessor, childrenAccessor, TreeKeyManager; a11y and docs improvements (#​29062)
1f992d06c fix tree: aria-expanded attribute should not appear in the leaf node (#​29273)
cdk
Commit Type Description
b2c051d2c feat drag-drop: add input to specify dragged item scale (#​29392)
multiple
Commit Type Description
db5b8dc29 feat fallback to system level variables (#​29480)

v18.1.5

Compare Source

material
Commit Type Description
b2e728db9 fix form-field: update state if control changes (#​29573)
1c438b312 fix schematics: Generate more accurate tonal palettes for M3 schematic (#​29536)
838d1a45a fix tabs: allow for tablist aria-label and aria-labelledby to be set (#​29562)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from f97d7b6 to 878928a Compare August 22, 2024 17:42
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.0 fix(deps): update dependency @angular/cdk to v18.2.1 Aug 22, 2024
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.1 fix(deps): update dependency @angular/cdk to v18.2.2 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from 878928a to d4281ea Compare August 28, 2024 21:34
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.2 fix(deps): update dependency @angular/cdk to v18.2.3 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from d4281ea to 500e8fb Compare September 4, 2024 22:07
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from 500e8fb to 8fab64c Compare September 12, 2024 15:27
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.3 fix(deps): update dependency @angular/cdk to v18.2.4 Sep 12, 2024
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.4 fix(deps): update dependency @angular/cdk to v18.2.5 Sep 20, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch 2 times, most recently from 759068b to 2a9dbda Compare September 25, 2024 22:46
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.5 fix(deps): update dependency @angular/cdk to v18.2.6 Sep 25, 2024
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.6 fix(deps): update dependency @angular/cdk to v18.2.7 Oct 3, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from 2a9dbda to d17aee6 Compare October 3, 2024 15:22
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.7 fix(deps): update dependency @angular/cdk to v18.2.8 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from d17aee6 to b5181d1 Compare October 9, 2024 16:00
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.8 fix(deps): update dependency @angular/cdk to v18.2.9 Oct 17, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from b5181d1 to 7a64f1e Compare October 17, 2024 23:22
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.9 fix(deps): update dependency @angular/cdk to v18.2.10 Oct 23, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from 7a64f1e to 973a042 Compare October 23, 2024 22:48
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.10 fix(deps): update dependency @angular/cdk to v18.2.11 Oct 31, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch 2 times, most recently from d58698e to 2b6c3ab Compare November 6, 2024 17:29
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.11 fix(deps): update dependency @angular/cdk to v18.2.12 Nov 6, 2024
@renovate renovate bot force-pushed the renovate/angularmaterial-monorepo branch from 2b6c3ab to e919e50 Compare November 7, 2024 12:52
@chenc041 chenc041 merged commit 306b743 into main Nov 10, 2024
@chenc041 chenc041 deleted the renovate/angularmaterial-monorepo branch November 10, 2024 13:40
@renovate renovate bot changed the title fix(deps): update dependency @angular/cdk to v18.2.12 fix(deps): update dependency @angular/cdk to v18.2.12 - autoclosed Nov 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants