@symphony-talent/component-library 4.83.0 → 4.85.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/esm2020/lib/atoms/atoms.module.mjs +12 -4
- package/esm2020/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.mjs +17 -0
- package/esm2020/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.mjs +18 -0
- package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +15 -0
- package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.mjs +2 -0
- package/esm2020/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.mjs +18 -0
- package/esm2020/lib/atoms/icon/icon.enum.mjs +3 -1
- package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +13 -1
- package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +12 -4
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.mjs +17 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.mjs +15 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +3 -1
- package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +13 -1
- package/esm2020/projects/component-library/public-api.mjs +6 -1
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +78 -4
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +78 -4
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +78 -4
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +78 -4
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +3 -1
- package/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.d.ts +8 -0
- package/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.d.ts +8 -0
- package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.d.ts +8 -0
- package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.d.ts +6 -0
- package/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.d.ts +8 -0
- package/lib/atoms/icon/icon.enum.d.ts +2 -0
- package/package.json +1 -1
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.eot +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.svg +61 -59
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.ttf +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.woff +0 -0
- package/projects/component-library/global-assets/iconography/library-icons.css +71 -66
- package/projects/component-library/global-assets/iconography/{sfx-icons-v3.json → sfx-icons-v4.json} +222 -67
- package/projects/component-library/lib/atoms/atoms.module.d.ts +3 -1
- package/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.component.d.ts +8 -0
- package/projects/component-library/lib/atoms/chat-history-message-avatar/chat-history-message-avatar.module.d.ts +8 -0
- package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.component.d.ts +8 -0
- package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.model.d.ts +6 -0
- package/projects/component-library/lib/atoms/chat-history-message-bubble/chat-history-message-bubble.module.d.ts +8 -0
- package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +2 -0
- package/projects/component-library/public-api.d.ts +5 -0
- package/public-api.d.ts +5 -0
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'library-icons';
|
|
3
|
-
src: url('library-fonts/library-icons.eot?
|
|
4
|
-
src: url('library-fonts/library-icons.eot?
|
|
5
|
-
url('library-fonts/library-icons.ttf?
|
|
6
|
-
url('library-fonts/library-icons.woff?
|
|
7
|
-
url('library-fonts/library-icons.svg?
|
|
3
|
+
src: url('library-fonts/library-icons.eot?ygieb4');
|
|
4
|
+
src: url('library-fonts/library-icons.eot?ygieb4#iefix') format('embedded-opentype'),
|
|
5
|
+
url('library-fonts/library-icons.ttf?ygieb4') format('truetype'),
|
|
6
|
+
url('library-fonts/library-icons.woff?ygieb4') format('woff'),
|
|
7
|
+
url('library-fonts/library-icons.svg?ygieb4#library-icons') format('svg');
|
|
8
8
|
font-weight: normal;
|
|
9
9
|
font-style: normal;
|
|
10
10
|
font-display: block;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
[class^="si-"],
|
|
14
|
-
[class*="si-"] {
|
|
13
|
+
[class^="si-"], [class*=" si-"] {
|
|
15
14
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
16
15
|
font-family: 'library-icons' !important;
|
|
17
16
|
speak: never;
|
|
@@ -26,17 +25,23 @@
|
|
|
26
25
|
-moz-osx-font-smoothing: grayscale;
|
|
27
26
|
}
|
|
28
27
|
|
|
29
|
-
.si-
|
|
28
|
+
.si-assign-to-actions:before {
|
|
30
29
|
content: "\e900";
|
|
31
30
|
}
|
|
31
|
+
.si-email-sms-default:before {
|
|
32
|
+
content: "\e901";
|
|
33
|
+
}
|
|
34
|
+
.si-advertise:before {
|
|
35
|
+
content: "\e902";
|
|
36
|
+
}
|
|
32
37
|
.si-economics:before {
|
|
33
38
|
content: "\e959";
|
|
34
39
|
}
|
|
35
40
|
.si-arrow-bold-next:before {
|
|
36
|
-
content: "\
|
|
41
|
+
content: "\e903";
|
|
37
42
|
}
|
|
38
43
|
.si-arrow-bold-previous:before {
|
|
39
|
-
content: "\
|
|
44
|
+
content: "\e904";
|
|
40
45
|
}
|
|
41
46
|
.si-access:before {
|
|
42
47
|
content: "\e947";
|
|
@@ -81,10 +86,10 @@
|
|
|
81
86
|
content: "\e954";
|
|
82
87
|
}
|
|
83
88
|
.si-arrow-next:before {
|
|
84
|
-
content: "\
|
|
89
|
+
content: "\e905";
|
|
85
90
|
}
|
|
86
91
|
.si-arrow-prev:before {
|
|
87
|
-
content: "\
|
|
92
|
+
content: "\e906";
|
|
88
93
|
}
|
|
89
94
|
.si-edit:before {
|
|
90
95
|
content: "\e90b";
|
|
@@ -129,167 +134,167 @@
|
|
|
129
134
|
content: "\e945";
|
|
130
135
|
}
|
|
131
136
|
.si-more-options:before {
|
|
132
|
-
content: "\
|
|
137
|
+
content: "\e907";
|
|
133
138
|
}
|
|
134
139
|
.si-add:before {
|
|
135
140
|
content: "\e927";
|
|
136
141
|
}
|
|
137
142
|
.si-activity:before {
|
|
138
|
-
content: "\
|
|
143
|
+
content: "\e908";
|
|
139
144
|
}
|
|
140
145
|
.si-arrow-hide-reveal:before {
|
|
141
|
-
content: "\
|
|
146
|
+
content: "\e909";
|
|
142
147
|
}
|
|
143
148
|
.si-close-modal:before {
|
|
144
|
-
content: "\
|
|
149
|
+
content: "\e90a";
|
|
145
150
|
}
|
|
146
151
|
.si-collapse:before {
|
|
147
|
-
content: "\
|
|
152
|
+
content: "\e90d";
|
|
148
153
|
}
|
|
149
154
|
.si-daymode:before {
|
|
150
|
-
content: "\
|
|
155
|
+
content: "\e90e";
|
|
151
156
|
}
|
|
152
157
|
.si-delete:before {
|
|
153
|
-
content: "\
|
|
158
|
+
content: "\e90f";
|
|
154
159
|
}
|
|
155
160
|
.si-document:before {
|
|
156
|
-
content: "\
|
|
161
|
+
content: "\e910";
|
|
157
162
|
}
|
|
158
163
|
.si-download:before {
|
|
159
|
-
content: "\
|
|
164
|
+
content: "\e911";
|
|
160
165
|
}
|
|
161
166
|
.si-email-open:before {
|
|
162
|
-
content: "\
|
|
167
|
+
content: "\e914";
|
|
163
168
|
}
|
|
164
169
|
.si-email-send:before {
|
|
165
|
-
content: "\
|
|
170
|
+
content: "\e915";
|
|
166
171
|
}
|
|
167
172
|
.si-expand:before {
|
|
168
|
-
content: "\
|
|
173
|
+
content: "\e916";
|
|
169
174
|
}
|
|
170
175
|
.si-favorite:before {
|
|
171
|
-
content: "\
|
|
176
|
+
content: "\e918";
|
|
172
177
|
}
|
|
173
178
|
.si-feedback-maybe:before {
|
|
174
|
-
content: "\
|
|
179
|
+
content: "\e919";
|
|
175
180
|
}
|
|
176
181
|
.si-folder-multiple:before {
|
|
177
|
-
content: "\
|
|
182
|
+
content: "\e91a";
|
|
178
183
|
}
|
|
179
184
|
.si-include:before {
|
|
180
|
-
content: "\
|
|
185
|
+
content: "\e91c";
|
|
181
186
|
}
|
|
182
187
|
.si-info:before {
|
|
183
|
-
content: "\
|
|
188
|
+
content: "\e91f";
|
|
184
189
|
}
|
|
185
190
|
.si-link:before {
|
|
186
|
-
content: "\
|
|
191
|
+
content: "\e924";
|
|
187
192
|
}
|
|
188
193
|
.si-location:before {
|
|
189
|
-
content: "\
|
|
194
|
+
content: "\e925";
|
|
190
195
|
}
|
|
191
196
|
.si-menu-all:before {
|
|
192
|
-
content: "\
|
|
197
|
+
content: "\e926";
|
|
193
198
|
}
|
|
194
199
|
.si-menu-assets:before {
|
|
195
|
-
content: "\
|
|
200
|
+
content: "\e928";
|
|
196
201
|
}
|
|
197
202
|
.si-menu-content:before {
|
|
198
|
-
content: "\
|
|
203
|
+
content: "\e929";
|
|
199
204
|
}
|
|
200
205
|
.si-menu-return:before {
|
|
201
|
-
content: "\
|
|
206
|
+
content: "\e92a";
|
|
202
207
|
}
|
|
203
208
|
.si-menu-workflows:before {
|
|
204
|
-
content: "\
|
|
209
|
+
content: "\e92b";
|
|
205
210
|
}
|
|
206
211
|
.si-merge:before {
|
|
207
|
-
content: "\
|
|
212
|
+
content: "\e92c";
|
|
208
213
|
}
|
|
209
214
|
.si-move:before {
|
|
210
|
-
content: "\
|
|
215
|
+
content: "\e92d";
|
|
211
216
|
}
|
|
212
217
|
.si-nightmode:before {
|
|
213
|
-
content: "\
|
|
218
|
+
content: "\e92e";
|
|
214
219
|
}
|
|
215
220
|
.si-notification:before {
|
|
216
|
-
content: "\
|
|
221
|
+
content: "\e92f";
|
|
217
222
|
}
|
|
218
223
|
.si-organize-columns:before {
|
|
219
|
-
content: "\
|
|
224
|
+
content: "\e930";
|
|
220
225
|
}
|
|
221
226
|
.si-organize-contacts:before {
|
|
222
|
-
content: "\
|
|
227
|
+
content: "\e931";
|
|
223
228
|
}
|
|
224
229
|
.si-pending-incomplete:before {
|
|
225
|
-
content: "\
|
|
230
|
+
content: "\e932";
|
|
226
231
|
}
|
|
227
232
|
.si-phone-number:before {
|
|
228
|
-
content: "\
|
|
233
|
+
content: "\e933";
|
|
229
234
|
}
|
|
230
235
|
.si-preview:before {
|
|
231
|
-
content: "\
|
|
236
|
+
content: "\e934";
|
|
232
237
|
}
|
|
233
238
|
.si-promote:before {
|
|
234
|
-
content: "\
|
|
239
|
+
content: "\e935";
|
|
235
240
|
}
|
|
236
241
|
.si-refresh:before {
|
|
237
|
-
content: "\
|
|
242
|
+
content: "\e936";
|
|
238
243
|
}
|
|
239
244
|
.si-remove:before {
|
|
240
|
-
content: "\
|
|
245
|
+
content: "\e937";
|
|
241
246
|
}
|
|
242
247
|
.si-exclude:before {
|
|
243
|
-
content: "\
|
|
248
|
+
content: "\e938";
|
|
244
249
|
}
|
|
245
250
|
.si-results-filters:before {
|
|
246
|
-
content: "\
|
|
251
|
+
content: "\e939";
|
|
247
252
|
}
|
|
248
253
|
.si-review:before {
|
|
249
|
-
content: "\
|
|
254
|
+
content: "\e93a";
|
|
250
255
|
}
|
|
251
256
|
.si-salary:before {
|
|
252
|
-
content: "\
|
|
257
|
+
content: "\e93b";
|
|
253
258
|
}
|
|
254
259
|
.si-save:before {
|
|
255
|
-
content: "\
|
|
260
|
+
content: "\e93c";
|
|
256
261
|
}
|
|
257
262
|
.si-search-advanced:before {
|
|
258
|
-
content: "\
|
|
263
|
+
content: "\e93d";
|
|
259
264
|
}
|
|
260
265
|
.si-search-clear:before {
|
|
261
|
-
content: "\
|
|
266
|
+
content: "\e93f";
|
|
262
267
|
}
|
|
263
268
|
.si-search-new:before {
|
|
264
|
-
content: "\
|
|
269
|
+
content: "\e940";
|
|
265
270
|
}
|
|
266
271
|
.si-settings-smart:before {
|
|
267
|
-
content: "\
|
|
272
|
+
content: "\e941";
|
|
268
273
|
}
|
|
269
274
|
.si-sms:before {
|
|
270
|
-
content: "\
|
|
275
|
+
content: "\e942";
|
|
271
276
|
}
|
|
272
277
|
.si-sort-mini:before {
|
|
273
|
-
content: "\
|
|
278
|
+
content: "\e943";
|
|
274
279
|
}
|
|
275
280
|
.si-system-action:before {
|
|
276
|
-
content: "\
|
|
281
|
+
content: "\e944";
|
|
277
282
|
}
|
|
278
283
|
.si-task-completed:before {
|
|
279
|
-
content: "\
|
|
284
|
+
content: "\e946";
|
|
280
285
|
}
|
|
281
286
|
.si-task-open:before {
|
|
282
|
-
content: "\
|
|
287
|
+
content: "\e955";
|
|
283
288
|
}
|
|
284
289
|
.si-timeframe:before {
|
|
285
|
-
content: "\
|
|
290
|
+
content: "\e956";
|
|
286
291
|
}
|
|
287
292
|
.si-timeline:before {
|
|
288
|
-
content: "\
|
|
293
|
+
content: "\e957";
|
|
289
294
|
}
|
|
290
295
|
.si-upload:before {
|
|
291
|
-
content: "\
|
|
296
|
+
content: "\e958";
|
|
292
297
|
}
|
|
293
298
|
.si-user:before {
|
|
294
|
-
content: "\
|
|
299
|
+
content: "\e95a";
|
|
295
300
|
}
|