@webitel/ui-sdk 25.6.30 → 25.6.32
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.
- package/dist/types/components/wt-textarea/wt-textarea.vue.d.ts +17 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +463 -457
- package/dist/ui-sdk.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/wt-button/wt-button.vue +17 -19
- package/src/components/wt-textarea/wt-textarea.vue +9 -1
- package/src/css/main.scss +1 -1
|
@@ -42,6 +42,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
42
42
|
type: StringConstructor;
|
|
43
43
|
default: string;
|
|
44
44
|
};
|
|
45
|
+
/**
|
|
46
|
+
* Number of rows in textarea
|
|
47
|
+
*/
|
|
48
|
+
rows: {
|
|
49
|
+
type: NumberConstructor;
|
|
50
|
+
default: number;
|
|
51
|
+
description: string;
|
|
52
|
+
};
|
|
45
53
|
labelProps: {
|
|
46
54
|
type: ObjectConstructor;
|
|
47
55
|
description: string;
|
|
@@ -103,6 +111,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
103
111
|
type: StringConstructor;
|
|
104
112
|
default: string;
|
|
105
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
* Number of rows in textarea
|
|
116
|
+
*/
|
|
117
|
+
rows: {
|
|
118
|
+
type: NumberConstructor;
|
|
119
|
+
default: number;
|
|
120
|
+
description: string;
|
|
121
|
+
};
|
|
106
122
|
labelProps: {
|
|
107
123
|
type: ObjectConstructor;
|
|
108
124
|
description: string;
|
|
@@ -121,6 +137,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
121
137
|
label: string;
|
|
122
138
|
disabled: boolean;
|
|
123
139
|
readonly: boolean;
|
|
140
|
+
rows: number;
|
|
124
141
|
autoresize: boolean;
|
|
125
142
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
126
143
|
export default _default;
|