@webitel/ui-sdk 25.6.23 → 25.6.25
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 +13 -4
- package/dist/ui-sdk.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/wt-action-bar/WtActionBarActionsOrder.js +1 -1
- package/src/components/wt-textarea/wt-textarea.vue +9 -0
|
@@ -19,6 +19,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19
19
|
placeholder: {
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
};
|
|
22
|
+
/**
|
|
23
|
+
* Native textarea disabled attribute
|
|
24
|
+
*/
|
|
25
|
+
readonly: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
description: string;
|
|
29
|
+
};
|
|
22
30
|
/**
|
|
23
31
|
* Native textarea disabled attribute
|
|
24
32
|
*/
|
|
@@ -72,6 +80,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
72
80
|
placeholder: {
|
|
73
81
|
type: StringConstructor;
|
|
74
82
|
};
|
|
83
|
+
/**
|
|
84
|
+
* Native textarea disabled attribute
|
|
85
|
+
*/
|
|
86
|
+
readonly: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: boolean;
|
|
89
|
+
description: string;
|
|
90
|
+
};
|
|
75
91
|
/**
|
|
76
92
|
* Native textarea disabled attribute
|
|
77
93
|
*/
|
|
@@ -104,6 +120,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
104
120
|
name: string;
|
|
105
121
|
label: string;
|
|
106
122
|
disabled: boolean;
|
|
123
|
+
readonly: boolean;
|
|
107
124
|
autoresize: boolean;
|
|
108
125
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
109
126
|
export default _default;
|