refactoring: remove some tests that don't work anymore

This commit is contained in:
Pieter Vander Vennet 2023-04-13 22:36:07 +02:00
parent ea62b5b7ff
commit a3242a3c7d
7 changed files with 247 additions and 235 deletions

View file

@ -57,29 +57,6 @@ export class TextField extends InputElement<string> {
return this._isValid(t)
}
/**
*
* // should update placeholders dynamically
* const placeholder = new UIEventSource<string>("placeholder")
* const tf = new TextField({
* placeholder
* })
* const html = <HTMLInputElement> tf.InnerConstructElement().children[0];
* html.placeholder // => 'placeholder'
* placeholder.setData("another piece of text")
* html.placeholder// => "another piece of text"
*
* // should update translated placeholders dynamically
* const placeholder = new Translation({nl: "Nederlands", en: "English"})
* Locale.language.setData("nl");
* const tf = new TextField({
* placeholder
* })
* const html = <HTMLInputElement> tf.InnerConstructElement().children[0];
* html.placeholder// => "Nederlands"
* Locale.language.setData("en");
* html.placeholder // => 'English'
*/
protected InnerConstructElement(): HTMLElement {
const options = this._options
const self = this