@aurelia-mdc-web/list
Version:
Wrapper for Material Components Web List
25 lines • 1.24 kB
JavaScript
define(["require", "exports", "tslib", "aurelia-framework"], function (require, exports, tslib_1, aurelia_framework_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MdcDeprecatedListItemMeta = void 0;
/**
* Optional. The last tile in the row (in LTR languages, the last column of the list item). Typically small text, icon. or image.
* @selector [mdc-deprecated-list-item-meta]
*/
var MdcDeprecatedListItemMeta = /** @class */ (function () {
function MdcDeprecatedListItemMeta(root) {
this.root = root;
}
MdcDeprecatedListItemMeta.prototype.attached = function () {
this.root.classList.add('mdc-deprecated-list-item__meta');
};
MdcDeprecatedListItemMeta = tslib_1.__decorate([
(0, aurelia_framework_1.inject)(Element),
(0, aurelia_framework_1.customAttribute)('mdc-deprecated-list-item-meta'),
tslib_1.__metadata("design:paramtypes", [HTMLElement])
], MdcDeprecatedListItemMeta);
return MdcDeprecatedListItemMeta;
}());
exports.MdcDeprecatedListItemMeta = MdcDeprecatedListItemMeta;
});
//# sourceMappingURL=mdc-deprecated-list-item-meta.js.map