@webitel/ui-sdk 25.8.44 → 25.8.46

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.
Files changed (38) hide show
  1. package/dist/ui-sdk.css +1 -1
  2. package/dist/ui-sdk.js +6777 -6584
  3. package/dist/ui-sdk.umd.cjs +139 -109
  4. package/package.json +2 -2
  5. package/src/components/transitions/cases/wt-replace-transition.vue +3 -4
  6. package/src/components/transitions/wt-transition.vue +20 -15
  7. package/src/components/wt-chip/wt-chip.vue +25 -18
  8. package/src/components/wt-rounded-action/wt-rounded-action.vue +1 -0
  9. package/src/enums/ChipColor/ChipColor.ts +11 -0
  10. package/src/enums/index.ts +2 -0
  11. package/src/locale/en/en.js +2 -2
  12. package/src/locale/es/es.js +1 -1
  13. package/src/locale/kz/kz.js +1 -1
  14. package/src/locale/pl/pl.js +1 -1
  15. package/src/locale/ro/ro.js +1 -1
  16. package/src/locale/ru/ru.js +1 -1
  17. package/src/locale/uk/uk.js +2 -2
  18. package/src/locale/uz/uz.js +1 -1
  19. package/src/locale/vi/vi.js +1 -1
  20. package/src/plugins/primevue/primevue.plugin.js +2 -0
  21. package/src/plugins/primevue/primevue.scss +1 -0
  22. package/src/plugins/primevue/theme/components/chip/chip.js +44 -0
  23. package/src/plugins/primevue/theme/components/chip/chip.scss +5 -0
  24. package/src/plugins/primevue/theme/components/components.js +2 -0
  25. package/types/components/wt-chip/wt-chip.vue.d.ts +23 -20
  26. package/types/components/wt-datepicker/wt-datepicker.vue.d.ts +2 -2
  27. package/types/components/wt-input/wt-input.vue.d.ts +2 -2
  28. package/types/components/wt-player/wt-player.vue.d.ts +2 -2
  29. package/types/components/wt-popover/wt-popover.vue.d.ts +8 -8
  30. package/types/components/wt-radio/wt-radio.vue.d.ts +5 -5
  31. package/types/components/wt-search-bar/wt-search-bar.vue.d.ts +5 -5
  32. package/types/components/wt-textarea/wt-textarea.vue.d.ts +1 -1
  33. package/types/components/wt-time-input/wt-time-input.vue.d.ts +1 -1
  34. package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
  35. package/types/enums/ChipColor/ChipColor.d.ts +10 -0
  36. package/types/enums/index.d.ts +2 -1
  37. package/types/plugins/primevue/theme/components/chip/chip.d.ts +123 -0
  38. package/types/plugins/primevue/theme/components/components.d.ts +2 -0
@@ -2,6 +2,7 @@ import AbstractUserStatus from './AbstractUserStatus/AbstractUserStatus.enum.js'
2
2
  import AgentStatus from './AgentStatus/AgentStatus.enum.js';
3
3
  import { ButtonColor } from './ButtonColor/ButtonColor';
4
4
  import ChatGatewayProvider from './ChatGatewayProvider/ChatGatewayProvider.enum.js';
5
+ import { ChipColor } from './ChipColor/ChipColor';
5
6
  import { ComponentSize } from './ComponentSize/ComponentSize';
6
7
  import { CrudAction } from './CrudAction/CrudAction';
7
8
  import IconAction from './IconAction/IconAction.enum.js';
@@ -16,4 +17,4 @@ import WebitelApplications from './WebitelApplications/WebitelApplications.enum.
16
17
  import { WtApplication } from './WebitelApplications/WtApplication';
17
18
  import { WtObject } from './WtObject/WtObject';
18
19
  import { WtTypeExtensionFieldKind } from './WtTypeExtensionFieldKind/WtTypeExtensionFieldKind';
19
- export { AbstractUserStatus, AdminSections, AgentStatus, AuditorSections, ButtonColor, ChatGatewayProvider, ComponentSize, CrmSections, CrudAction, IconAction, QueueType, RelativeDatetimeValue, SupervisorSections, TypesExportedSettings, WebitelApplications, WtApplication, WtObject, WtTypeExtensionFieldKind, };
20
+ export { AbstractUserStatus, AdminSections, AgentStatus, AuditorSections, ButtonColor, ChatGatewayProvider, ChipColor, ComponentSize, CrmSections, CrudAction, IconAction, QueueType, RelativeDatetimeValue, SupervisorSections, TypesExportedSettings, WebitelApplications, WtApplication, WtObject, WtTypeExtensionFieldKind, };
@@ -0,0 +1,123 @@
1
+ export default chip;
2
+ declare const chip: {
3
+ colorScheme: {
4
+ light: {
5
+ background: string;
6
+ color: string;
7
+ main: {
8
+ background: string;
9
+ color: string;
10
+ iconColor: string;
11
+ iconHoverColor: string;
12
+ };
13
+ primary: {
14
+ background: string;
15
+ color: string;
16
+ iconColor: string;
17
+ iconHoverColor: string;
18
+ };
19
+ secondary: {
20
+ background: string;
21
+ color: string;
22
+ iconColor: string;
23
+ iconHoverColor: string;
24
+ };
25
+ success: {
26
+ background: string;
27
+ color: string;
28
+ iconColor: string;
29
+ iconHoverColor: string;
30
+ };
31
+ warning: {
32
+ background: string;
33
+ color: string;
34
+ iconColor: string;
35
+ iconHoverColor: string;
36
+ };
37
+ error: {
38
+ background: string;
39
+ color: string;
40
+ iconColor: string;
41
+ iconHoverColor: string;
42
+ };
43
+ transfer: {
44
+ background: string;
45
+ color: string;
46
+ iconColor: string;
47
+ iconHoverColor: string;
48
+ };
49
+ removeIcon: {
50
+ focusRing: {
51
+ shadow: string;
52
+ };
53
+ };
54
+ };
55
+ dark: {
56
+ background: string;
57
+ color: string;
58
+ main: {
59
+ background: string;
60
+ color: string;
61
+ iconColor: string;
62
+ iconHoverColor: string;
63
+ };
64
+ primary: {
65
+ background: string;
66
+ color: string;
67
+ iconColor: string;
68
+ iconHoverColor: string;
69
+ };
70
+ secondary: {
71
+ background: string;
72
+ color: string;
73
+ iconColor: string;
74
+ iconHoverColor: string;
75
+ };
76
+ success: {
77
+ background: string;
78
+ color: string;
79
+ iconColor: string;
80
+ iconHoverColor: string;
81
+ };
82
+ warning: {
83
+ background: string;
84
+ color: string;
85
+ iconColor: string;
86
+ iconHoverColor: string;
87
+ };
88
+ error: {
89
+ background: string;
90
+ color: string;
91
+ iconColor: string;
92
+ iconHoverColor: string;
93
+ };
94
+ transfer: {
95
+ background: string;
96
+ color: string;
97
+ iconColor: string;
98
+ iconHoverColor: string;
99
+ };
100
+ removeIcon: {
101
+ focusRing: {
102
+ shadow: string;
103
+ };
104
+ };
105
+ };
106
+ };
107
+ css: ({ dt }: {
108
+ dt: any;
109
+ }) => string;
110
+ borderRadius: string;
111
+ paddingX: string;
112
+ paddingY: string;
113
+ gap: string;
114
+ transitionDuration: string;
115
+ removeIcon: {
116
+ size: string;
117
+ focusRing: {
118
+ width: string;
119
+ style: string;
120
+ offset: string;
121
+ };
122
+ };
123
+ };
@@ -4,10 +4,12 @@ declare namespace components {
4
4
  export { autocomplete };
5
5
  export { popover };
6
6
  export { tooltip };
7
+ export { chip };
7
8
  export { checkbox };
8
9
  }
9
10
  import button from './button/button.js';
10
11
  import autocomplete from './autocomplete/autocomplete.js';
11
12
  import popover from './popover/popover.js';
12
13
  import tooltip from './tooltip/tooltip.js';
14
+ import chip from './chip/chip.js';
13
15
  import checkbox from './checkbox/checkbox.js';