@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.12.12",
3
+ "version": "24.12.13",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -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.filter((action) => props.actions.includes(action));
107
+ return actionsOrder;
116
108
  });
117
109
  </script>
118
110