@webitel/ui-sdk 25.4.71 → 25.4.73

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": "25.4.71",
3
+ "version": "25.4.73",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -50,7 +50,6 @@ const getContactGroupsList = async (params) => {
50
50
  const { page, size, fields, sort, id, q, name, type, enabled } =
51
51
  applyTransform(params, [
52
52
  merge(getDefaultGetParams()),
53
- starToSearch('search'),
54
53
  (params) => ({ ...params, q: params.search }),
55
54
  sanitize(fieldsToSend),
56
55
  camelToSnake(),
@@ -20,6 +20,7 @@
20
20
  v-else
21
21
  :color="iColor"
22
22
  :icon="icon"
23
+ :icon-prefix="iconPrefix"
23
24
  :size="size"
24
25
  />
25
26
  </button>
@@ -33,6 +34,14 @@ const props = defineProps({
33
34
  type: String,
34
35
  required: true,
35
36
  },
37
+ /**
38
+ * inserts icon name prefix between "icon" and actual icon name ("icon" prop).
39
+ * Useful for library icons extension with project-level icons with this prefix in name
40
+ */
41
+ iconPrefix: {
42
+ type: String,
43
+ default: '',
44
+ },
36
45
  /**
37
46
  * @values 'primary', 'secondary', 'success', 'error', 'transfer'
38
47
  */