Socket
Socket
Sign inDemoInstall

@angular/cdk

Package Overview
Dependencies
Maintainers
2
Versions
498
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/cdk - npm Package Versions

13
50

18.1.4

Diff

Changelog

Source

18.1.4 "pewter-polka" (2024-08-07)

material

| Commit | Type | Description | | -- | -- | -- | | 2b5ae8c0ed | fix | chips: missing tokens in M3 (#29531) | | b98432839e | fix | sidenav: disable focus trap while closed (#29548) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.2.0-next.3"></a>

google-wombot
published 18.2.0-next.3 •

Changelog

Source

18.2.0-next.3 "gold-medal" (2024-07-31)

cdk

| Commit | Type | Description | | -- | -- | -- | | c9078d1d1a | fix | coercion: Return undefined when the fallback value is undefined (#29491) |

material

| Commit | Type | Description | | -- | -- | -- | | 0af3b61750 | feat | radio: add the ability to interact with disabled radio buttons (#29490) | | 4292e1b3a0 | feat | slide-toggle: add the ability to interact with disabled toggle (#29502) | | 5403b2b316 | fix | chips: remove tab-index attribute from mat-chip host (#29436) | | 6d701146cc | fix | core: custom system-level variable prefix not used in some mixins (#29513) | | 95d1354cdd | fix | dialog: invalid font-family declaration (#29516) | | fd47a0e60d | fix | radio: avoid error if destroyed quickly (#29507) | | 5892acfde3 | fix | slide-toggle: don't trigger active state for entire container (#29514) | | 1aa8512ebe | fix | slide-toggle: remove divs from button (#29485) |

multiple

| Commit | Type | Description | | -- | -- | -- | | db5b8dc29b | feat | fallback to system level variables (#29480) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.1.3"></a>

google-wombot
published 18.1.3 •

Changelog

Source

18.1.3 "plastic-beach" (2024-07-31)

cdk

| Commit | Type | Description | | -- | -- | -- | | 2c76917779 | fix | coercion: Return undefined when the fallback value is undefined (#29491) |

material

| Commit | Type | Description | | -- | -- | -- | | caf4b61ead | fix | chips: remove tab-index attribute from mat-chip host (#29436) | | 913267c0b1 | fix | core: custom system-level variable prefix not used in some mixins (#29513) | | 70048ef226 | fix | dialog: invalid font-family declaration (#29516) | | d7d82e1455 | fix | slide-toggle: don't trigger active state for entire container (#29514) | | d237e7d2c7 | fix | slide-toggle: remove divs from button (#29485) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.2.0-next.2"></a>

google-wombot
published 18.2.0-next.2 •

Changelog

Source

18.2.0-next.2 "velvet-guitar" (2024-07-24)

material

| Commit | Type | Description | | -- | -- | -- | | 8417601015 | feat | checkbox: add the ability to interact with disabled checkboxes (#29474) | | a018fb0ee8 | feat | tooltip: replicate tooltipClass to default MatTooltipDefaultOptions (#29467) | | d6aed80446 | fix | chips: remove button is too small (#29351) | | 13aef8cf87 | fix | form-field: hiding a label after it has been (#29461) | | 10da6c6375 | fix | input: Number input not changing on wheel interaction (#29449) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.1.2"></a>

google-wombot
published 18.1.2 •

Changelog

Source

18.1.2 "velvet-violin" (2024-07-24)

material

| Commit | Type | Description | | -- | -- | -- | | cf61af53bd | fix | chips: remove button is too small (#29351) | | c79ec264aa | fix | form-field: hiding a label after it has been (#29461) | | 15238d255f | fix | input: Number input not changing on wheel interaction (#29449) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.1.1"></a>

google-wombot
published 18.1.1 •

Changelog

Source

18.1.1 "tantalum-tale" (2024-07-17)

cdk

| Commit | Type | Description | | -- | -- | -- | | ca634cb7b | fix | drag-drop: remove preview after animate to placeholder animation completes (#29439) |

material

| Commit | Type | Description | | -- | -- | -- | | b7959c241 | fix | button: support palettes for icon button in M3 (#29433) | | ffe1c35c0 | fix | chips: fix focus issue (#29427) | | 57cc0b04b | fix | core: require theme for option typography (#29416) | | 2e5e415ec | fix | tabs: prevent tab header from collapsing when empty inside a drop list (#29418) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.2.0-next.1"></a>

google-wombot
published 18.2.0-next.1 •

Changelog

Source

18.2.0-next.1 "osmium-opal" (2024-07-17)

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 | | -- | -- | -- | | 095947c8c | fix | button: support palettes for icon button in M3 (#29433) | | e69b2b09e | fix | chips: fix focus issue (#29427) | | b116643a0 | fix | core: require theme for option typography (#29416) | | 92ab713a6 | fix | tabs: prevent tab header from collapsing when empty inside a drop list (#29418) | | ff36c80f9 | fix | tree: add levelAccessor, childrenAccessor, TreeKeyManager; a11y and docs improvements (#29062) |

cdk

| Commit | Type | Description | | -- | -- | -- | | 565566151 | fix | drag-drop: remove preview after animate to placeholder animation completes (#29439) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.2.0-next.0"></a>

google-wombot
published 18.2.0-next.0 •

Changelog

Source

18.2.0-next.0 "pumice-reverie" (2024-07-10)

cdk

| Commit | Type | Description | | -- | -- | -- | | b2c051d2c1 | feat | drag-drop: add input to specify dragged item scale (#29392) |

material

| Commit | Type | Description | | -- | -- | -- | | 1f992d06c6 | fix | tree: aria-expanded attribute should not appear in the leaf node (#29273) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.1.0"></a>

google-wombot
published 18.1.0 •

Changelog

Source

18.1.0 "coral-odyssey" (2024-07-10)

cdk

| Commit | Type | Description | | -- | -- | -- | | 0bc6583892 | feat | drag-drop: add mixed orientation support | | b5e30156c1 | feat | drag-drop: add the ability to specify an alternate drop list container (#29283) | | 03d4e134c8 | fix | drag-drop: reset pointer events on descendants (#29370) |

material

| Commit | Type | Description | | -- | -- | -- | | 5da528e44d | feat | button: allow button color to be configured through DI (#29297) | | 6f698fa4e2 | feat | core: add option to configure prefix of system variables (#29139) | | 5a97c03928 | fix | chips: navigate between rows on up/down arrow (#29364) | | 566057b8f5 | fix | divider: non-text color contrast issues (#28995) | | 65b56400bd | fix | tabs: remove visibility style when hydrating (#29220) |

cdk-experimental

| Commit | Type | Description | | -- | -- | -- | | fc6beeae18 | fix | popover-edit: Fix dialog role and allow aria label on popup (#29380) |

multiple

| Commit | Type | Description | | -- | -- | -- | | aa17c2d128 | fix | remove workarounds for formControl directive (#29296) |

<!-- CHANGELOG SPLIT MARKER -->

<a name="18.0.6"></a>

google-wombot
published 18.1.0-rc.0 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc