51 lines
3.0 KiB
JavaScript
Executable File
51 lines
3.0 KiB
JavaScript
Executable File
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.findInputsOnElementWithTag = findInputsOnElementWithTag;
|
|
exports.findInputsOnElementWithAttr = findInputsOnElementWithAttr;
|
|
exports.findOutputsOnElementWithTag = findOutputsOnElementWithTag;
|
|
exports.findOutputsOnElementWithAttr = findOutputsOnElementWithAttr;
|
|
const elements_1 = require("./elements");
|
|
/** Finds the specified Angular @Input in the given elements with tag name. */
|
|
function findInputsOnElementWithTag(html, inputName, tagNames) {
|
|
return [
|
|
// Inputs can be also used without brackets (e.g. `<mat-toolbar color="primary">`)
|
|
...(0, elements_1.findAttributeOnElementWithTag)(html, inputName, tagNames),
|
|
// Add one column to the mapped offset because the first bracket for the @Input
|
|
// is part of the attribute and therefore also part of the offset. We only want to return
|
|
// the offset for the inner name of the bracketed input.
|
|
...(0, elements_1.findAttributeOnElementWithTag)(html, `[${inputName}]`, tagNames).map(offset => offset + 1),
|
|
];
|
|
}
|
|
/** Finds the specified Angular @Input in elements that have one of the specified attributes. */
|
|
function findInputsOnElementWithAttr(html, inputName, attrs) {
|
|
return [
|
|
// Inputs can be also used without brackets (e.g. `<button matButton color="primary">`)
|
|
...(0, elements_1.findAttributeOnElementWithAttrs)(html, inputName, attrs),
|
|
// Add one column to the mapped offset because the first bracket for the @Input
|
|
// is part of the attribute and therefore also part of the offset. We only want to return
|
|
// the offset for the inner name of the bracketed input.
|
|
...(0, elements_1.findAttributeOnElementWithAttrs)(html, `[${inputName}]`, attrs).map(offset => offset + 1),
|
|
];
|
|
}
|
|
/** Finds the specified Angular @Output in the given elements with tag name. */
|
|
function findOutputsOnElementWithTag(html, outputName, tagNames) {
|
|
// Add one column to the mapped offset because the first parenthesis for the @Output
|
|
// is part of the attribute and therefore also part of the offset. We only want to return
|
|
// the offset for the inner name of the output.
|
|
return (0, elements_1.findAttributeOnElementWithTag)(html, `(${outputName})`, tagNames).map(offset => offset + 1);
|
|
}
|
|
/** Finds the specified Angular @Output in elements that have one of the specified attributes. */
|
|
function findOutputsOnElementWithAttr(html, outputName, attrs) {
|
|
// Add one column to the mapped offset because the first bracket for the @Output
|
|
// is part of the attribute and therefore also part of the offset. We only want to return
|
|
// the offset for the inner name of the output.
|
|
return (0, elements_1.findAttributeOnElementWithAttrs)(html, `(${outputName})`, attrs).map(offset => offset + 1);
|
|
}
|
|
//# sourceMappingURL=angular.js.map
|