@duoduo-oba/ng-devui
Version:
DevUI components based on Angular
64 lines (58 loc) • 2.13 kB
JavaScript
import { Directive, Input, HostBinding, NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
/**
* @fileoverview added by tsickle
* Generated from: text-input.directive.ts
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
var TextDirective = /** @class */ (function () {
function TextDirective() {
}
TextDirective.decorators = [
{ type: Directive, args: [{
selector: '[dTextInput]',
exportAs: 'dTextInput',
},] }
];
/** @nocollapse */
TextDirective.ctorParameters = function () { return []; };
TextDirective.propDecorators = {
error: [{ type: Input }, { type: HostBinding, args: ['class.error',] }]
};
return TextDirective;
}());
if (false) {
/** @type {?} */
TextDirective.prototype.error;
}
/**
* @fileoverview added by tsickle
* Generated from: text-input.module.ts
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
var TextInputModule = /** @class */ (function () {
function TextInputModule() {
}
TextInputModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule,
],
exports: [TextDirective],
declarations: [TextDirective],
},] }
];
return TextInputModule;
}());
/**
* @fileoverview added by tsickle
* Generated from: public-api.ts
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
/**
* @fileoverview added by tsickle
* Generated from: ng-devui-text-input.ts
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
*/
export { TextDirective, TextInputModule };
//# sourceMappingURL=ng-devui-text-input.js.map