File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ const MAX_SAFE_INTEGER = 9007199254740991;
34
34
* Allows for sort customization by overriding sortingDataAccessor, which defines how data
35
35
* properties are accessed. Also allows for filter customization by overriding filterTermAccessor,
36
36
* which defines how row data is converted to a string for filter matching.
37
+ *
38
+ * **Note:** This class is meant to be a simple data source to help you get started. As such
39
+ * it isn't equipped to handle some more advanced cases like robust i18n support or server-side
40
+ * interactions. If your app needs to support more advanced use cases, consider implementing your
41
+ * own `DataSource`.
37
42
*/
38
43
export class MatTableDataSource < T > extends DataSource < T > {
39
44
/** Stream that emits when a new data array is set on the data source. */
You can’t perform that action at this time.
0 commit comments