plugin-ui-for-kzt 0.0.59 → 0.0.60

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": "plugin-ui-for-kzt",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
4
4
  "description": "plugin-ui for kazaktelekom",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -90,13 +90,6 @@ const classList = computed( () => [
90
90
 
91
91
  &.--gray-color {
92
92
  #{$chip} {
93
- &__wrapper {
94
- @include hover {
95
- background: var(--primary-black-300);
96
- color: var(--primary-black-900);
97
- }
98
- }
99
-
100
93
  &__content {
101
94
  color: var(--primary-black-600);
102
95
  }
@@ -111,13 +104,6 @@ const classList = computed( () => [
111
104
  &.--green-color {
112
105
  #{$chip} {
113
106
 
114
- &__wrapper {
115
- @include hover {
116
- background: var(--primary-black-300);
117
- color: var(--primary-black-900);
118
- }
119
- }
120
-
121
107
  &__content {
122
108
  color: var(--success-green);
123
109
  }
@@ -131,12 +117,6 @@ const classList = computed( () => [
131
117
 
132
118
  &.--red-color {
133
119
  #{$chip} {
134
- &__wrapper {
135
- @include hover {
136
- background: var(--primary-black-300);
137
- color: var(--primary-black-900);
138
- }
139
- }
140
120
 
141
121
  &__content {
142
122
  color: var(--secondary-text-negative);
@@ -151,12 +131,6 @@ const classList = computed( () => [
151
131
 
152
132
  &.--warning-color {
153
133
  #{$chip} {
154
- &__wrapper {
155
- @include hover {
156
- background: var(--primary-black-300);
157
- color: var(--primary-black-900);
158
- }
159
- }
160
134
 
161
135
  &__content {
162
136
  color: var(--warning-orange);
@@ -169,6 +143,20 @@ const classList = computed( () => [
169
143
  }
170
144
  }
171
145
 
146
+ &.--blue-color {
147
+ #{$chip} {
148
+
149
+ &__content {
150
+ color: var(--primary-black-white);
151
+ }
152
+
153
+ &__wrapper {
154
+ border: none;
155
+ background: var(--primary-blue);
156
+ }
157
+ }
158
+ }
159
+
172
160
  &.--is-active {
173
161
  #{$chip} {
174
162
 
@@ -22,7 +22,7 @@
22
22
  | `iconName` | `string` | `undefined` | Название иконки для отображения (требуется BaseIcon). |
23
23
  | `count` | `number` | `undefined` | Число для отображения в чипе. |
24
24
  | `size` | `'extra-small' | 'small'| 'medium'| 'large'` | `medium` | Размер чипа (влияет на высоту, шрифт и отступы). |
25
- | `color` | `'gray' | 'red' | 'green' | 'warning'` | `medium`|
25
+ | `color` | `'gray' | 'red' | 'green' | 'warning'` | `blue`|
26
26
 
27
27
  ## События (Events)
28
28