@webitel/ui-sdk 24.12.12 → 24.12.13
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/CHANGELOG.md +6 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +176 -184
- package/dist/ui-sdk.umd.cjs +9 -9
- package/package.json +1 -1
- package/src/components/wt-action-bar/wt-action-bar.vue +1 -9
package/package.json
CHANGED
|
@@ -47,14 +47,6 @@ const props = defineProps({
|
|
|
47
47
|
default: 'table',
|
|
48
48
|
validator: (v) => ['table', 'section'].includes(v),
|
|
49
49
|
},
|
|
50
|
-
/**
|
|
51
|
-
* see `IconAction` enum
|
|
52
|
-
*/
|
|
53
|
-
actions: {
|
|
54
|
-
type: Array,
|
|
55
|
-
default: () => [],
|
|
56
|
-
validator: (v) => v.every((action) => Object.values(IconAction).includes(action)),
|
|
57
|
-
},
|
|
58
50
|
|
|
59
51
|
/**
|
|
60
52
|
* Not implemented
|
|
@@ -112,7 +104,7 @@ const shownActions = computed(() => {
|
|
|
112
104
|
|
|
113
105
|
if(props.exclude.length) return actionsOrder.filter((action) => !props.exclude.includes(action));
|
|
114
106
|
|
|
115
|
-
return actionsOrder
|
|
107
|
+
return actionsOrder;
|
|
116
108
|
});
|
|
117
109
|
</script>
|
|
118
110
|
|