From 5cd979d372c025a1a14a8efa8396623eb57be01e Mon Sep 17 00:00:00 2001 From: ralf Date: Tue, 12 Jul 2022 10:05:43 +0200 Subject: [PATCH] adding et2_select_ro type, as it's used in smallPART --- api/js/etemplate/et2_widget_selectbox.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/js/etemplate/et2_widget_selectbox.ts b/api/js/etemplate/et2_widget_selectbox.ts index af18e8066f..16a2e6487b 100644 --- a/api/js/etemplate/et2_widget_selectbox.ts +++ b/api/js/etemplate/et2_widget_selectbox.ts @@ -11,8 +11,14 @@ */ import {Et2Select} from "./Et2Select/Et2Select"; +import {Et2SelectReadonly} from "./Et2Select/Et2SelectReadonly"; /** * @deprecated use Et2Select */ -export class et2_selectbox extends Et2Select{} \ No newline at end of file +export class et2_selectbox extends Et2Select{} + +/** + * @deprecated use Et2SelectReadonly + */ +export type et2_selectbox_ro = Et2SelectReadonly; \ No newline at end of file