@esportsplus/ui 0.0.77 → 0.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -198,6 +198,32 @@ declare const _default: {
|
|
|
198
198
|
type: string;
|
|
199
199
|
values: never[];
|
|
200
200
|
};
|
|
201
|
+
textarea: (data: {
|
|
202
|
+
class?: string | undefined;
|
|
203
|
+
mask?: {
|
|
204
|
+
class?: string | undefined;
|
|
205
|
+
content?: any;
|
|
206
|
+
style?: string | undefined;
|
|
207
|
+
} | undefined;
|
|
208
|
+
name?: string | undefined;
|
|
209
|
+
placeholder?: string | undefined;
|
|
210
|
+
style?: string | undefined;
|
|
211
|
+
tag?: {
|
|
212
|
+
class?: string | undefined;
|
|
213
|
+
} | undefined;
|
|
214
|
+
textarea?: boolean | undefined;
|
|
215
|
+
type?: string | undefined;
|
|
216
|
+
value?: unknown;
|
|
217
|
+
} & {
|
|
218
|
+
description?: string | undefined;
|
|
219
|
+
} & {
|
|
220
|
+
required?: boolean | undefined;
|
|
221
|
+
title?: string | undefined;
|
|
222
|
+
}) => {
|
|
223
|
+
content: string;
|
|
224
|
+
type: string;
|
|
225
|
+
values: never[];
|
|
226
|
+
};
|
|
201
227
|
text: (data: {
|
|
202
228
|
class?: string | undefined;
|
|
203
229
|
mask?: {
|
|
@@ -3,5 +3,6 @@ import file from './file';
|
|
|
3
3
|
import optional from './optional';
|
|
4
4
|
import select from './select';
|
|
5
5
|
import s from './switch';
|
|
6
|
+
import textarea from './textarea';
|
|
6
7
|
import text from './text';
|
|
7
|
-
export default { checkbox, file, optional, select, switch: s, text };
|
|
8
|
+
export default { checkbox, file, optional, select, switch: s, textarea, text };
|
package/package.json
CHANGED
|
@@ -3,7 +3,8 @@ import file from './file';
|
|
|
3
3
|
import optional from './optional';
|
|
4
4
|
import select from './select';
|
|
5
5
|
import s from './switch';
|
|
6
|
+
import textarea from './textarea';
|
|
6
7
|
import text from './text';
|
|
7
8
|
|
|
8
9
|
|
|
9
|
-
export default { checkbox, file, optional, select, switch: s, text };
|
|
10
|
+
export default { checkbox, file, optional, select, switch: s, textarea, text };
|