asksuite-citrus 2.6.5 → 3.6.6-beta.0
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/esm2022/lib/components/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/lib/components/chips/chips.component.mjs +26 -3
- package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +1 -5
- package/fesm2022/asksuite-citrus.mjs +27 -8
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/components/chips/chips.component.d.ts +6 -1
- package/lib/components/modal/confirmation-modal/confirmation-modal.component.d.ts +0 -4
- package/package.json +1 -1
- package/styles/colors.scss +228 -0
@@ -2,7 +2,9 @@ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
export declare class ChipsComponent {
|
4
4
|
private change;
|
5
|
-
|
5
|
+
protected textColor: string;
|
6
|
+
private colors;
|
7
|
+
set appearance(value: 'light' | 'regular' | 'primary' | 'tag' | 'disable' | 'available');
|
6
8
|
showAction: boolean;
|
7
9
|
set size(value: 'small' | 'regular');
|
8
10
|
color?: string;
|
@@ -10,8 +12,11 @@ export declare class ChipsComponent {
|
|
10
12
|
protected _isAppearanceLight: boolean;
|
11
13
|
protected _isAppearancePrimary: boolean;
|
12
14
|
protected _isAppearanceTag: boolean;
|
15
|
+
protected _isAppearanceTagDisabled: boolean;
|
16
|
+
protected _isAppearanceTagAvailable: boolean;
|
13
17
|
constructor(change: ChangeDetectorRef);
|
14
18
|
protected action: EventEmitter<void>;
|
19
|
+
ngOnChanges(): void;
|
15
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipsComponent, never>;
|
16
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChipsComponent, "ask-chips", never, { "appearance": { "alias": "appearance"; "required": false; }; "showAction": { "alias": "showAction"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, { "action": "action"; }, never, ["*"], false, never>;
|
17
22
|
}
|
@@ -5,8 +5,6 @@ export declare class ConfirmationModalComponent {
|
|
5
5
|
protected modalRef: ModalRef;
|
6
6
|
protected title: string;
|
7
7
|
protected text: string;
|
8
|
-
protected confirmButtonText: string | undefined;
|
9
|
-
protected cancelButtonText: string | undefined;
|
10
8
|
protected buttons: ButtonConfig[];
|
11
9
|
constructor(modalRef: ModalRef, data: AskModalConfirmData);
|
12
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationModalComponent, never>;
|
@@ -16,8 +14,6 @@ export interface AskModalConfirmData {
|
|
16
14
|
title: string;
|
17
15
|
text: string;
|
18
16
|
buttons?: ButtonConfig[];
|
19
|
-
confirmButtonText?: string;
|
20
|
-
cancelButtonText?: string;
|
21
17
|
}
|
22
18
|
type ButtonConfig = {
|
23
19
|
text: string;
|
package/package.json
CHANGED
package/styles/colors.scss
CHANGED
@@ -63,6 +63,234 @@ $font-color-100: $grey-800;
|
|
63
63
|
$font-color-200: $grey-500;
|
64
64
|
$font-color-300: $grey-300;
|
65
65
|
|
66
|
+
|
67
|
+
// new tokens livechat
|
68
|
+
|
69
|
+
//reference
|
70
|
+
$primitive-b-100: #e3eaf7;
|
71
|
+
$primitive-b-1000: #0c2e59;
|
72
|
+
$primitive-b-200: #ceddf3;
|
73
|
+
$primitive-b-300: #a3c2f0;
|
74
|
+
$primitive-b-400: #7aa7eb;
|
75
|
+
$primitive-b-500: #4f8ce8;
|
76
|
+
$primitive-b-600: #276ace;
|
77
|
+
$primitive-b-700: #1c59b2;
|
78
|
+
$primitive-b-800: #174b94;
|
79
|
+
$primitive-b-900: #123c76;
|
80
|
+
$primitive-g-100: #e1f9ee;
|
81
|
+
$primitive-g-1000: #0c3c34;
|
82
|
+
$primitive-g-200: #c6f5df;
|
83
|
+
$primitive-g-300: #a7ecd0;
|
84
|
+
$primitive-g-400: #73deaa;
|
85
|
+
$primitive-g-500: #45ba82;
|
86
|
+
$primitive-g-600: #279661;
|
87
|
+
$primitive-g-700: #1c7d54;
|
88
|
+
$primitive-g-800: #176849;
|
89
|
+
$primitive-g-900: #12513e;
|
90
|
+
$primitive-l-100: #e9f9dc;
|
91
|
+
$primitive-l-1000: #2c4a31;
|
92
|
+
$primitive-l-200: #ddf6ca;
|
93
|
+
$primitive-l-300: #c8ecac;
|
94
|
+
$primitive-l-400: #a9e17f;
|
95
|
+
$primitive-l-500: #8ed558;
|
96
|
+
$primitive-l-600: #77be41;
|
97
|
+
$primitive-l-700: #6ba04e;
|
98
|
+
$primitive-l-800: #568444;
|
99
|
+
$primitive-l-900: #41673a;
|
100
|
+
$primitive-m-100: #f7deed;
|
101
|
+
$primitive-m-1000: #412746;
|
102
|
+
$primitive-m-200: #f3cee4;
|
103
|
+
$primitive-m-300: #ebadd2;
|
104
|
+
$primitive-m-400: #e490c3;
|
105
|
+
$primitive-m-500: #de77b5;
|
106
|
+
$primitive-m-600: #d75ba5;
|
107
|
+
$primitive-m-700: #a14884;
|
108
|
+
$primitive-m-800: #813e6f;
|
109
|
+
$primitive-m-900: #62325a;
|
110
|
+
$primitive-nd-0: #0d161c;
|
111
|
+
$primitive-nd-100: #131c24;
|
112
|
+
$primitive-nd-1000: #7f8b95;
|
113
|
+
$primitive-nd-1100: #8d97a2;
|
114
|
+
$primitive-nd-1200: #99a4af;
|
115
|
+
$primitive-nd-1300: #a6b2bc;
|
116
|
+
$primitive-nd-1400: #b2beca;
|
117
|
+
$primitive-nd-1500: #c0cbd8;
|
118
|
+
$primitive-nd-1600: #ccd8e5;
|
119
|
+
$primitive-nd-1700: #d9e5f2;
|
120
|
+
$primitive-nd-200: #19232a;
|
121
|
+
$primitive-nd-300: #253037;
|
122
|
+
$primitive-nd-400: #333d45;
|
123
|
+
$primitive-nd-500: #3f4952;
|
124
|
+
$primitive-nd-600: #4c5760;
|
125
|
+
$primitive-nd-700: #58646d;
|
126
|
+
$primitive-nd-800: #66707a;
|
127
|
+
$primitive-nd-900: #727d88;
|
128
|
+
$primitive-nda-0: #0c161d00;
|
129
|
+
$primitive-nda-100: #d9e5f207;
|
130
|
+
$primitive-nda-1000: #d9e5f28f;
|
131
|
+
$primitive-nda-1100: #d9e5f29f;
|
132
|
+
$primitive-nda-1200: #d9e5f2af;
|
133
|
+
$primitive-nda-1300: #d9e5f2bf;
|
134
|
+
$primitive-nda-1400: #d9e5f2cf;
|
135
|
+
$primitive-nda-1500: #d9e5f2df;
|
136
|
+
$primitive-nda-1600: #d9e5f2ef;
|
137
|
+
$primitive-nda-1700: #d9e5f2;
|
138
|
+
$primitive-nda-200: #d9e5f20f;
|
139
|
+
$primitive-nda-300: #d9e5f21f;
|
140
|
+
$primitive-nda-400: #d9e5f22f;
|
141
|
+
$primitive-nda-500: #d9e5f23f;
|
142
|
+
$primitive-nda-600: #d9e5f24f;
|
143
|
+
$primitive-nda-700: #d9e5f25f;
|
144
|
+
$primitive-nda-800: #d9e5f26f;
|
145
|
+
$primitive-nda-900: #d9e5f27f;
|
146
|
+
$primitive-nl-0: #ffffff;
|
147
|
+
$primitive-nl-100: #f8f8f9;
|
148
|
+
$primitive-nl-1000: #7b8790;
|
149
|
+
$primitive-nl-1100: #6c7a84;
|
150
|
+
$primitive-nl-1200: #5d6c77;
|
151
|
+
$primitive-nl-1300: #4e5f6b;
|
152
|
+
$primitive-nl-1400: #40525f;
|
153
|
+
$primitive-nl-1500: #314452;
|
154
|
+
$primitive-nl-1600: #223746;
|
155
|
+
$primitive-nl-1700: #132939;
|
156
|
+
$primitive-nl-200: #f0f2f3;
|
157
|
+
$primitive-nl-300: #e1e4e6;
|
158
|
+
$primitive-nl-400: #d3d7da;
|
159
|
+
$primitive-nl-500: #c4c9cd;
|
160
|
+
$primitive-nl-600: #b5bcc1;
|
161
|
+
$primitive-nl-700: #a6afb4;
|
162
|
+
$primitive-nl-800: #97a1a8;
|
163
|
+
$primitive-nl-900: #8a959d;
|
164
|
+
$primitive-nla-0: #ffffff00;
|
165
|
+
$primitive-nla-100: #13293907;
|
166
|
+
$primitive-nla-1000: #1329398f;
|
167
|
+
$primitive-nla-1100: #1329399f;
|
168
|
+
$primitive-nla-1200: #132939af;
|
169
|
+
$primitive-nla-1300: #132939bf;
|
170
|
+
$primitive-nla-1400: #132939cf;
|
171
|
+
$primitive-nla-1500: #132939df;
|
172
|
+
$primitive-nla-1600: #132939ef;
|
173
|
+
$primitive-nla-1700: #132939;
|
174
|
+
$primitive-nla-200: #1329390f;
|
175
|
+
$primitive-nla-300: #1329391f;
|
176
|
+
$primitive-nla-400: #1329392f;
|
177
|
+
$primitive-nla-500: #1329393f;
|
178
|
+
$primitive-nla-600: #1329394f;
|
179
|
+
$primitive-nla-700: #1329395f;
|
180
|
+
$primitive-nla-800: #1329396f;
|
181
|
+
$primitive-nla-900: #1329397f;
|
182
|
+
$primitive-o-100: #feeae1;
|
183
|
+
$primitive-o-1000: #402c29;
|
184
|
+
$primitive-o-200: #fdd6c3;
|
185
|
+
$primitive-o-300: #fdc5aa;
|
186
|
+
$primitive-o-400: #fea277;
|
187
|
+
$primitive-o-500: #f77a40;
|
188
|
+
$primitive-o-600: #f06424;
|
189
|
+
$primitive-o-700: #ca5c2b;
|
190
|
+
$primitive-o-800: #8d4a2e;
|
191
|
+
$primitive-o-900: #61392b;
|
192
|
+
$primitive-p-100: #ebe5ff;
|
193
|
+
$primitive-p-1000: #332c59;
|
194
|
+
$primitive-p-200: #dcd5fb;
|
195
|
+
$primitive-p-300: #c2b9f4;
|
196
|
+
$primitive-p-400: #ab9fe5;
|
197
|
+
$primitive-p-500: #9183d2;
|
198
|
+
$primitive-p-600: #7969c9;
|
199
|
+
$primitive-p-700: #5f4eb1;
|
200
|
+
$primitive-p-800: #534790;
|
201
|
+
$primitive-p-900: #42396f;
|
202
|
+
$primitive-r-100: #fbe9ed;
|
203
|
+
$primitive-r-1000: #331b2e;
|
204
|
+
$primitive-r-200: #f5c7d1;
|
205
|
+
$primitive-r-300: #eaa5b6;
|
206
|
+
$primitive-r-400: #e57d94;
|
207
|
+
$primitive-r-500: #df5372;
|
208
|
+
$primitive-r-600: #d92b50;
|
209
|
+
$primitive-r-700: #b02747;
|
210
|
+
$primitive-r-800: #87233f;
|
211
|
+
$primitive-r-900: #5c1f36;
|
212
|
+
$primitive-t-100: #e3f2f6;
|
213
|
+
$primitive-t-1000: #0c4153;
|
214
|
+
$primitive-t-200: #ceecf1;
|
215
|
+
$primitive-t-300: #a3e0ec;
|
216
|
+
$primitive-t-400: #7ad5e5;
|
217
|
+
$primitive-t-500: #4fc9e0;
|
218
|
+
$primitive-t-600: #37b2c8;
|
219
|
+
$primitive-t-700: #1c92ab;
|
220
|
+
$primitive-t-800: #17798e;
|
221
|
+
$primitive-t-900: #125e72;
|
222
|
+
$primitive-v-100: #daceda;
|
223
|
+
$primitive-v-1000: #15162c;
|
224
|
+
$primitive-v-200: #bba4bc;
|
225
|
+
$primitive-v-300: #9e7b9e;
|
226
|
+
$primitive-v-400: #7f5180;
|
227
|
+
$primitive-v-500: #622862;
|
228
|
+
$primitive-v-600: #492251;
|
229
|
+
$primitive-v-700: #3b1f47;
|
230
|
+
$primitive-v-800: #2d1b3c;
|
231
|
+
$primitive-v-900: #1e1832;
|
232
|
+
$primitive-y-100: #fff1d6;
|
233
|
+
$primitive-y-1000: #5b4007;
|
234
|
+
$primitive-y-200: #ffe5b2;
|
235
|
+
$primitive-y-300: #fed88c;
|
236
|
+
$primitive-y-400: #fbc560;
|
237
|
+
$primitive-y-500: #edb24a;
|
238
|
+
$primitive-y-600: #d79428;
|
239
|
+
$primitive-y-700: #be800e;
|
240
|
+
$primitive-y-800: #a66e0c;
|
241
|
+
$primitive-y-900: #775409;
|
242
|
+
$primitive-a-100: #F9E7E2;
|
243
|
+
$primitive-a-1000: $primitive-o-1000;
|
244
|
+
$primitive-a-200: $primitive-o-200;
|
245
|
+
$primitive-a-300: #FBAF99;
|
246
|
+
$primitive-a-400: $primitive-o-400;
|
247
|
+
$primitive-a-500: $primitive-o-500;
|
248
|
+
$primitive-a-600: #FF5724;
|
249
|
+
$primitive-a-700: $primitive-o-700;
|
250
|
+
$primitive-a-800: $primitive-o-800;
|
251
|
+
$primitive-a-900: $primitive-o-900;
|
252
|
+
$primitive-f-100: $primitive-v-100;
|
253
|
+
$primitive-f-1000: $primitive-v-1000;
|
254
|
+
$primitive-f-200: $primitive-v-200;
|
255
|
+
$primitive-f-300: $primitive-v-300;
|
256
|
+
$primitive-f-400: $primitive-v-400;
|
257
|
+
$primitive-f-500: $primitive-v-500;
|
258
|
+
$primitive-f-600: $primitive-v-600;
|
259
|
+
$primitive-f-700: $primitive-v-700;
|
260
|
+
$primitive-f-800: $primitive-v-800;
|
261
|
+
$primitive-f-900: $primitive-v-900;
|
262
|
+
|
263
|
+
|
264
|
+
$primitive-light-neutral-NLA200: $primitive-nla-200;
|
265
|
+
$primitive-light-neutral-NLA300: #13293921;
|
266
|
+
// livechat - tokens
|
267
|
+
|
268
|
+
$semantic-texticon-brand-asksuite-contrast: $primitive-a-600;
|
269
|
+
$semantic-texticon-inverse-default: $primitive-nl-0;
|
270
|
+
$semantic-texticon-contrast: $primitive-nla-1500;
|
271
|
+
$semantic-texticon-subtle: $primitive-nla-1200;
|
272
|
+
$semantic-texticon-subtlest: $primitive-nla-1000;
|
273
|
+
$semantic-texticon-disabled: $primitive-nla-700;
|
274
|
+
|
275
|
+
$semantic-elevation-surface-selected-ask: $primitive-a-100;
|
276
|
+
$semantic-elevation-surface-sunken-default: $primitive-nl-0;
|
277
|
+
$semantic-elevation-surface-sunken-hovered: $primitive-nl-100;
|
278
|
+
$semantic-elevation-surface-selected: $primitive-a-100;
|
279
|
+
$semantic-elevation-shadow-raised: #13293933;
|
280
|
+
|
281
|
+
$semantic-border-default: $primitive-nla-300;
|
282
|
+
$semantic-border-brand-asksuite-subtle: $primitive-a-300;
|
283
|
+
|
284
|
+
$semantic-background-alpha-bolder-default: $primitive-nla-1600;
|
285
|
+
$semantic-background-brand-asksuite-contrast-default: $primitive-a-600;
|
286
|
+
$semantic-background-alpha-subtlest-default: $primitive-nla-200;
|
287
|
+
$semantic-background-inverse-default: $primitive-nl-0;
|
288
|
+
$semantic-background-disabled: $primitive-nla-200;
|
289
|
+
|
290
|
+
$semantic-text-contrast: $primitive-nla-1500;
|
291
|
+
$semantic-text-subtlest: $primitive-nla-1000;
|
292
|
+
$semantic-text-disabled: #13293961;
|
293
|
+
|
66
294
|
:root {
|
67
295
|
// brand
|
68
296
|
--asksuite-orange: #{$asksuite-orange};
|