@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/CHANGELOG.md +33 -0
- package/dist/types/components/wt-rounded-action/wt-rounded-action.vue.d.ts +2 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +11 -2
- package/dist/ui-sdk.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/api/clients/contactGroups/contactGroups.js +0 -1
- package/src/components/wt-rounded-action/wt-rounded-action.vue +9 -0
package/package.json
CHANGED
|
@@ -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
|
*/
|