Skip to content

Instantly share code, notes, and snippets.

View leonlaser's full-sized avatar
🍪

Leon Dietsch leonlaser

🍪
View GitHub Profile
@leonlaser
leonlaser / clear_index.sh
Created July 15, 2021 07:59
[Clear spotlight index] #shell #macos #spotlight #index
sudo mdutil -avE
@leonlaser
leonlaser / angular-material-cdk-placeholder-migration.md
Last active December 24, 2024 21:41
Regular expression to migration Angular Material form inputs from `placeholder` attribute to `<mat-label>` tags

Manual Angular Material/CDK placeholder migration

Why?

The removed "legacy" appearance promoted input placeholders to the floating label if the label was not specified. All newer appearance settings require explicitly specifying a if one was not provided before. This change addresses an accessibility best practice of not using labels and placeholders interchangeably.

Migrating to MDC-based Angular Material Components | Form Fields

How?

This regular expression works with IntelliJ IDE and maybe with others, supporting regex search and replace.