UNPKG

@ckeditor/ckeditor5-ui

Version:

The UI framework and standard UI library of CKEditor 5.

28 lines (27 loc) 653 B
/** * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module ui/inputtext/inputtextview */ import InputView from '../input/inputview.js'; /** * The text input view class. */ export default class InputTextView extends InputView { /** * @inheritDoc */ constructor(locale) { super(locale); this.extendTemplate({ attributes: { type: 'text', class: [ 'ck-input-text' ] } }); } }