diff --git a/src/material/table/table-data-source.ts b/src/material/table/table-data-source.ts index 0aea25a01e8b..49efc252f062 100644 --- a/src/material/table/table-data-source.ts +++ b/src/material/table/table-data-source.ts @@ -34,6 +34,11 @@ const MAX_SAFE_INTEGER = 9007199254740991; * Allows for sort customization by overriding sortingDataAccessor, which defines how data * properties are accessed. Also allows for filter customization by overriding filterTermAccessor, * which defines how row data is converted to a string for filter matching. + * + * **Note:** This class is meant to be a simple data source to help you get started. As such + * it isn't equipped to handle some more advanced cases like robust i18n support or server-side + * interactions. If your app needs to support more advanced use cases, consider implementing your + * own `DataSource`. */ export class MatTableDataSource extends DataSource { /** Stream that emits when a new data array is set on the data source. */