It seems like the setting strictTemplates: true
has been added to the angularCompilerOptions
section in the tsconfig.json
file.
If you check the definition file (column-base.d.ts
), you'll notice that the property width
is defined as a type of number
. Therefore, any value passed to this property that is not of type number
will trigger a warning.
The reason why using 100%
works without an issue is because Javascript can interpret this as "full screen".
To allow for both numbers and strings as values for width, you can update the column-base.d.ts
to have the following definition:
width: number | string;
.