@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
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@ import IconAction from '../../enums/IconAction/IconAction.enum.js';
|
|
|
2
2
|
|
|
3
3
|
export const tableActionsOrder = [
|
|
4
4
|
IconAction.ADD,
|
|
5
|
+
IconAction.ADD_CONTACT,
|
|
5
6
|
IconAction.COPY,
|
|
6
7
|
IconAction.DOWNLOAD,
|
|
7
8
|
IconAction.UPLOAD,
|
|
@@ -10,7 +11,6 @@ export const tableActionsOrder = [
|
|
|
10
11
|
IconAction.FILTERS,
|
|
11
12
|
IconAction.REFRESH,
|
|
12
13
|
IconAction.DELETE,
|
|
13
|
-
IconAction.ADD_CONTACT,
|
|
14
14
|
];
|
|
15
15
|
|
|
16
16
|
// TODO
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
:placeholder="placeholder || label"
|
|
30
30
|
:value="value"
|
|
31
31
|
rows="1"
|
|
32
|
+
:readonly="readonly"
|
|
32
33
|
class="wt-textarea__textarea"
|
|
33
34
|
v-on="listeners"
|
|
34
35
|
@input="autoGrow"
|
|
@@ -84,6 +85,14 @@ export default {
|
|
|
84
85
|
placeholder: {
|
|
85
86
|
type: String,
|
|
86
87
|
},
|
|
88
|
+
/**
|
|
89
|
+
* Native textarea disabled attribute
|
|
90
|
+
*/
|
|
91
|
+
readonly: {
|
|
92
|
+
type: Boolean,
|
|
93
|
+
default: false,
|
|
94
|
+
description: 'Native textarea readonly attribute',
|
|
95
|
+
},
|
|
87
96
|
/**
|
|
88
97
|
* Native textarea disabled attribute
|
|
89
98
|
*/
|