How to use the @angular/material/core.extendObject function in @angular/material

To help you get started, we’ve selected a few @angular/material examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github albertnadal / ng2-daterange-picker / node_modules / @angular / material / esm2015 / dialog.js View on Github external
function _applyConfigDefaults(config) {
    return extendObject(new MatDialogConfig(), config);
}
github angular / components / src / lib / select / select.spec.ts View on Github external
setFoodByCopy(newValue: {value: string, viewValue: string}) {
    this.selectedFood = extendObject({}, newValue);
  }
}
github albertnadal / ng2-daterange-picker / node_modules / @angular / material / esm2015 / snack-bar.js View on Github external
function _applyConfigDefaults(config) {
    return extendObject(new MatSnackBarConfig(), config);
}
github albertnadal / ng2-daterange-picker / node_modules / @angular / material / esm5 / dialog.es5.js View on Github external
function _applyConfigDefaults(config) {
    return extendObject(new MatDialogConfig(), config);
}
github albertnadal / ng2-daterange-picker / node_modules / @angular / material / esm5 / snack-bar.es5.js View on Github external
function _applyConfigDefaults(config) {
    return extendObject(new MatSnackBarConfig(), config);
}