mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
ac5932240b
- new web-components are unconditionally replacing them via the preprocessor - some widgets (eg. et2_description) could not be removed as other legacy widgets are extending them, but they are no longer registered - as there are many places using et2_createWidget('description', ...), et2_description returns now web-components for no longer existing widgets
33 lines
865 B
TypeScript
33 lines
865 B
TypeScript
/**
|
|
* EGroupware eTemplate2 - Readonly select WebComponent
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @link https://www.egroupware.org
|
|
* @author Ralf Becker <rb@egroupware.org>
|
|
*/
|
|
|
|
import {Et2SelectAccountReadonly} from "../Et2Select/Et2SelectReadonly";
|
|
|
|
export class Et2VfsUid extends Et2SelectAccountReadonly
|
|
{
|
|
set value(_val)
|
|
{
|
|
if (!_val || _val === '0')
|
|
{
|
|
this.select_options = [{value: '0', label: 'root'}];
|
|
}
|
|
super.value = _val;
|
|
}
|
|
|
|
get value()
|
|
{
|
|
return super.value;
|
|
}
|
|
}
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
customElements.define("et2-vfs-uid", Et2VfsUid);
|
|
|
|
export class Et2VfsGid extends Et2VfsUid {}
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
customElements.define("et2-vfs-gid", Et2VfsGid); |