@mirai/ui 1.0.255 → 1.0.257

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 (24) hide show
  1. package/README.md +13 -19
  2. package/build/components/InputPhone/__tests__/__snapshots__/InputPhone.test.js.snap +12 -4
  3. package/build/components/InputSelect/__tests__/__snapshots__/InputSelect.test.js.snap +5 -1
  4. package/build/components/InputText/__tests__/__snapshots__/InputText.test.js.snap +6 -2
  5. package/build/components/Notification/Notification.js +18 -13
  6. package/build/components/Notification/Notification.js.map +1 -1
  7. package/build/components/Notification/Notification.module.css +42 -58
  8. package/build/components/Notification/Notification.stories.js +15 -2
  9. package/build/components/Notification/Notification.stories.js.map +1 -1
  10. package/build/components/Notification/__tests__/__snapshots__/Notification.test.js.snap +254 -180
  11. package/build/components/Table/Table.ColumnFilter.js +15 -12
  12. package/build/components/Table/Table.ColumnFilter.js.map +1 -1
  13. package/build/components/Table/Table.stories.js +19 -17
  14. package/build/components/Table/Table.stories.js.map +1 -1
  15. package/build/components/Table/Table.stories.module.css +3 -4
  16. package/build/components/Table/helpers/select.js +2 -2
  17. package/build/components/Table/helpers/select.js.map +1 -1
  18. package/build/helpers/getIconState.js +1 -1
  19. package/build/helpers/getIconState.js.map +1 -1
  20. package/build/primitives/Icon/Icon.constants.js +1 -2
  21. package/build/primitives/Icon/Icon.constants.js.map +1 -1
  22. package/build/primitives/Icon/__tests__/__snapshots__/Icon.test.js.snap +1 -1
  23. package/build/theme/default.theme.css +5 -17
  24. package/package.json +1 -1
@@ -6,7 +6,7 @@ exports[`component:<Notification> inherit:className 1`] = `
6
6
  class="view row notification outlined mirai"
7
7
  >
8
8
  <span
9
- class="icon headline-3 icon"
9
+ class="icon headline-3 icon small"
10
10
  >
11
11
  <svg
12
12
  fill="currentColor"
@@ -26,22 +26,26 @@ exports[`component:<Notification> inherit:className 1`] = `
26
26
  />
27
27
  </svg>
28
28
  </span>
29
- <span
30
- class="text paragraph text"
29
+ <div
30
+ class="view texts"
31
31
  >
32
- Lorem Ipsum...
33
- </span>
32
+ <span
33
+ class="text action"
34
+ >
35
+ Lorem Ipsum...
36
+ </span>
37
+ </div>
34
38
  </div>
35
39
  </DocumentFragment>
36
40
  `;
37
41
 
38
- exports[`component:<Notification> prop:error 1`] = `
42
+ exports[`component:<Notification> prop:error & inline 1`] = `
39
43
  <DocumentFragment>
40
44
  <div
41
- class="view row notification error outlined"
45
+ class="view row notification error inline"
42
46
  >
43
47
  <span
44
- class="icon headline-3 icon"
48
+ class="icon headline-3 icon small"
45
49
  >
46
50
  <svg
47
51
  fill="currentColor"
@@ -61,22 +65,26 @@ exports[`component:<Notification> prop:error 1`] = `
61
65
  />
62
66
  </svg>
63
67
  </span>
64
- <span
65
- class="text paragraph text error"
68
+ <div
69
+ class="view texts"
66
70
  >
67
- Lorem Ipsum...
68
- </span>
71
+ <span
72
+ class="text action"
73
+ >
74
+ Lorem Ipsum...
75
+ </span>
76
+ </div>
69
77
  </div>
70
78
  </DocumentFragment>
71
79
  `;
72
80
 
73
- exports[`component:<Notification> prop:info & inline 1`] = `
81
+ exports[`component:<Notification> prop:error & large 1`] = `
74
82
  <DocumentFragment>
75
83
  <div
76
- class="view row notification info inline inline"
84
+ class="view row notification error outlined large"
77
85
  >
78
86
  <span
79
- class="icon headline-3 icon"
87
+ class="icon headline-1 icon"
80
88
  >
81
89
  <svg
82
90
  fill="currentColor"
@@ -92,26 +100,30 @@ exports[`component:<Notification> prop:info & inline 1`] = `
92
100
  fill="none"
93
101
  />
94
102
  <path
95
- d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
103
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
96
104
  />
97
105
  </svg>
98
106
  </span>
99
- <span
100
- class="text paragraph text"
107
+ <div
108
+ class="view texts"
101
109
  >
102
- Lorem Ipsum...
103
- </span>
110
+ <span
111
+ class="text action"
112
+ >
113
+ Lorem Ipsum...
114
+ </span>
115
+ </div>
104
116
  </div>
105
117
  </DocumentFragment>
106
118
  `;
107
119
 
108
- exports[`component:<Notification> prop:info & large 1`] = `
120
+ exports[`component:<Notification> prop:error & small 1`] = `
109
121
  <DocumentFragment>
110
122
  <div
111
- class="view row notification info outlined large"
123
+ class="view row notification error outlined small"
112
124
  >
113
125
  <span
114
- class="icon headline-1 icon"
126
+ class="icon headline-3 icon small"
115
127
  >
116
128
  <svg
117
129
  fill="currentColor"
@@ -127,26 +139,30 @@ exports[`component:<Notification> prop:info & large 1`] = `
127
139
  fill="none"
128
140
  />
129
141
  <path
130
- d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
142
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
131
143
  />
132
144
  </svg>
133
145
  </span>
134
- <span
135
- class="text paragraph text"
146
+ <div
147
+ class="view texts"
136
148
  >
137
- Lorem Ipsum...
138
- </span>
149
+ <span
150
+ class="text small"
151
+ >
152
+ Lorem Ipsum...
153
+ </span>
154
+ </div>
139
155
  </div>
140
156
  </DocumentFragment>
141
157
  `;
142
158
 
143
- exports[`component:<Notification> prop:info & small 1`] = `
159
+ exports[`component:<Notification> prop:error 1`] = `
144
160
  <DocumentFragment>
145
161
  <div
146
- class="view row notification info outlined small"
162
+ class="view row notification error outlined"
147
163
  >
148
164
  <span
149
- class="icon paragraph icon"
165
+ class="icon headline-3 icon small"
150
166
  >
151
167
  <svg
152
168
  fill="currentColor"
@@ -162,26 +178,30 @@ exports[`component:<Notification> prop:info & small 1`] = `
162
178
  fill="none"
163
179
  />
164
180
  <path
165
- d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
181
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
166
182
  />
167
183
  </svg>
168
184
  </span>
169
- <span
170
- class="text small text"
185
+ <div
186
+ class="view texts"
171
187
  >
172
- Lorem Ipsum...
173
- </span>
188
+ <span
189
+ class="text action"
190
+ >
191
+ Lorem Ipsum...
192
+ </span>
193
+ </div>
174
194
  </div>
175
195
  </DocumentFragment>
176
196
  `;
177
197
 
178
- exports[`component:<Notification> prop:info 1`] = `
198
+ exports[`component:<Notification> prop:info & inline 1`] = `
179
199
  <DocumentFragment>
180
200
  <div
181
- class="view row notification info outlined"
201
+ class="view row notification info inline"
182
202
  >
183
203
  <span
184
- class="icon headline-3 icon"
204
+ class="icon headline-3 icon small"
185
205
  >
186
206
  <svg
187
207
  fill="currentColor"
@@ -201,22 +221,26 @@ exports[`component:<Notification> prop:info 1`] = `
201
221
  />
202
222
  </svg>
203
223
  </span>
204
- <span
205
- class="text paragraph text"
224
+ <div
225
+ class="view texts"
206
226
  >
207
- Lorem Ipsum...
208
- </span>
227
+ <span
228
+ class="text action"
229
+ >
230
+ Lorem Ipsum...
231
+ </span>
232
+ </div>
209
233
  </div>
210
234
  </DocumentFragment>
211
235
  `;
212
236
 
213
- exports[`component:<Notification> prop:inline 1`] = `
237
+ exports[`component:<Notification> prop:info & large 1`] = `
214
238
  <DocumentFragment>
215
239
  <div
216
- class="view row notification inline inline"
240
+ class="view row notification info outlined large"
217
241
  >
218
242
  <span
219
- class="icon headline-3 icon"
243
+ class="icon headline-1 icon"
220
244
  >
221
245
  <svg
222
246
  fill="currentColor"
@@ -236,22 +260,26 @@ exports[`component:<Notification> prop:inline 1`] = `
236
260
  />
237
261
  </svg>
238
262
  </span>
239
- <span
240
- class="text paragraph text"
263
+ <div
264
+ class="view texts"
241
265
  >
242
- Lorem Ipsum...
243
- </span>
266
+ <span
267
+ class="text action"
268
+ >
269
+ Lorem Ipsum...
270
+ </span>
271
+ </div>
244
272
  </div>
245
273
  </DocumentFragment>
246
274
  `;
247
275
 
248
- exports[`component:<Notification> prop:large & prop:inline 1`] = `
276
+ exports[`component:<Notification> prop:info & small 1`] = `
249
277
  <DocumentFragment>
250
278
  <div
251
- class="view row notification inline inline large"
279
+ class="view row notification info outlined small"
252
280
  >
253
281
  <span
254
- class="icon headline-1 icon"
282
+ class="icon headline-3 icon small"
255
283
  >
256
284
  <svg
257
285
  fill="currentColor"
@@ -271,22 +299,26 @@ exports[`component:<Notification> prop:large & prop:inline 1`] = `
271
299
  />
272
300
  </svg>
273
301
  </span>
274
- <span
275
- class="text paragraph text"
302
+ <div
303
+ class="view texts"
276
304
  >
277
- Lorem Ipsum...
278
- </span>
305
+ <span
306
+ class="text small"
307
+ >
308
+ Lorem Ipsum...
309
+ </span>
310
+ </div>
279
311
  </div>
280
312
  </DocumentFragment>
281
313
  `;
282
314
 
283
- exports[`component:<Notification> prop:large 1`] = `
315
+ exports[`component:<Notification> prop:info 1`] = `
284
316
  <DocumentFragment>
285
317
  <div
286
- class="view row notification outlined large"
318
+ class="view row notification info outlined"
287
319
  >
288
320
  <span
289
- class="icon headline-1 icon"
321
+ class="icon headline-3 icon small"
290
322
  >
291
323
  <svg
292
324
  fill="currentColor"
@@ -306,11 +338,15 @@ exports[`component:<Notification> prop:large 1`] = `
306
338
  />
307
339
  </svg>
308
340
  </span>
309
- <span
310
- class="text paragraph text"
341
+ <div
342
+ class="view texts"
311
343
  >
312
- Lorem Ipsum...
313
- </span>
344
+ <span
345
+ class="text action"
346
+ >
347
+ Lorem Ipsum...
348
+ </span>
349
+ </div>
314
350
  </div>
315
351
  </DocumentFragment>
316
352
  `;
@@ -322,7 +358,7 @@ exports[`component:<Notification> prop:onClose 1`] = `
322
358
  data-testid="mirai-onClose"
323
359
  >
324
360
  <span
325
- class="icon headline-3 icon"
361
+ class="icon headline-3 icon small"
326
362
  >
327
363
  <svg
328
364
  fill="currentColor"
@@ -342,13 +378,17 @@ exports[`component:<Notification> prop:onClose 1`] = `
342
378
  />
343
379
  </svg>
344
380
  </span>
345
- <span
346
- class="text paragraph text"
381
+ <div
382
+ class="view texts"
347
383
  >
348
- Lorem Ipsum...
349
- </span>
384
+ <span
385
+ class="text action"
386
+ >
387
+ Lorem Ipsum...
388
+ </span>
389
+ </div>
350
390
  <div
351
- class="pressable pressable icon"
391
+ class="pressable"
352
392
  data-testid="mirai-onClose-button-close"
353
393
  >
354
394
  <span
@@ -377,13 +417,13 @@ exports[`component:<Notification> prop:onClose 1`] = `
377
417
  </DocumentFragment>
378
418
  `;
379
419
 
380
- exports[`component:<Notification> prop:small & prop:inline 1`] = `
420
+ exports[`component:<Notification> prop:success & inline 1`] = `
381
421
  <DocumentFragment>
382
422
  <div
383
- class="view row notification inline inline small"
423
+ class="view row notification success inline"
384
424
  >
385
425
  <span
386
- class="icon paragraph icon"
426
+ class="icon headline-3 icon small"
387
427
  >
388
428
  <svg
389
429
  fill="currentColor"
@@ -399,26 +439,30 @@ exports[`component:<Notification> prop:small & prop:inline 1`] = `
399
439
  fill="none"
400
440
  />
401
441
  <path
402
- d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
442
+ d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"
403
443
  />
404
444
  </svg>
405
445
  </span>
406
- <span
407
- class="text small text"
446
+ <div
447
+ class="view texts"
408
448
  >
409
- Lorem Ipsum...
410
- </span>
449
+ <span
450
+ class="text action"
451
+ >
452
+ Lorem Ipsum...
453
+ </span>
454
+ </div>
411
455
  </div>
412
456
  </DocumentFragment>
413
457
  `;
414
458
 
415
- exports[`component:<Notification> prop:small 1`] = `
459
+ exports[`component:<Notification> prop:success & large 1`] = `
416
460
  <DocumentFragment>
417
461
  <div
418
- class="view row notification outlined small"
462
+ class="view row notification success outlined large"
419
463
  >
420
464
  <span
421
- class="icon paragraph icon"
465
+ class="icon headline-1 icon"
422
466
  >
423
467
  <svg
424
468
  fill="currentColor"
@@ -434,26 +478,30 @@ exports[`component:<Notification> prop:small 1`] = `
434
478
  fill="none"
435
479
  />
436
480
  <path
437
- d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
481
+ d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"
438
482
  />
439
483
  </svg>
440
484
  </span>
441
- <span
442
- class="text small text"
485
+ <div
486
+ class="view texts"
443
487
  >
444
- Lorem Ipsum...
445
- </span>
488
+ <span
489
+ class="text action"
490
+ >
491
+ Lorem Ipsum...
492
+ </span>
493
+ </div>
446
494
  </div>
447
495
  </DocumentFragment>
448
496
  `;
449
497
 
450
- exports[`component:<Notification> prop:success & inline 1`] = `
498
+ exports[`component:<Notification> prop:success & small 1`] = `
451
499
  <DocumentFragment>
452
500
  <div
453
- class="view row notification success inline inline"
501
+ class="view row notification success outlined small"
454
502
  >
455
503
  <span
456
- class="icon headline-3 icon"
504
+ class="icon headline-3 icon small"
457
505
  >
458
506
  <svg
459
507
  fill="currentColor"
@@ -469,26 +517,30 @@ exports[`component:<Notification> prop:success & inline 1`] = `
469
517
  fill="none"
470
518
  />
471
519
  <path
472
- d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"
520
+ d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"
473
521
  />
474
522
  </svg>
475
523
  </span>
476
- <span
477
- class="text paragraph text success"
524
+ <div
525
+ class="view texts"
478
526
  >
479
- Lorem Ipsum...
480
- </span>
527
+ <span
528
+ class="text small"
529
+ >
530
+ Lorem Ipsum...
531
+ </span>
532
+ </div>
481
533
  </div>
482
534
  </DocumentFragment>
483
535
  `;
484
536
 
485
- exports[`component:<Notification> prop:success & large 1`] = `
537
+ exports[`component:<Notification> prop:success 1`] = `
486
538
  <DocumentFragment>
487
539
  <div
488
- class="view row notification success outlined large"
540
+ class="view row notification success outlined"
489
541
  >
490
542
  <span
491
- class="icon headline-1 icon"
543
+ class="icon headline-3 icon small"
492
544
  >
493
545
  <svg
494
546
  fill="currentColor"
@@ -504,26 +556,30 @@ exports[`component:<Notification> prop:success & large 1`] = `
504
556
  fill="none"
505
557
  />
506
558
  <path
507
- d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"
559
+ d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"
508
560
  />
509
561
  </svg>
510
562
  </span>
511
- <span
512
- class="text paragraph text success"
563
+ <div
564
+ class="view texts"
513
565
  >
514
- Lorem Ipsum...
515
- </span>
566
+ <span
567
+ class="text action"
568
+ >
569
+ Lorem Ipsum...
570
+ </span>
571
+ </div>
516
572
  </div>
517
573
  </DocumentFragment>
518
574
  `;
519
575
 
520
- exports[`component:<Notification> prop:success & small 1`] = `
576
+ exports[`component:<Notification> prop:title 1`] = `
521
577
  <DocumentFragment>
522
578
  <div
523
- class="view row notification success outlined small"
579
+ class="view row notification outlined"
524
580
  >
525
581
  <span
526
- class="icon paragraph icon"
582
+ class="icon headline-2 icon"
527
583
  >
528
584
  <svg
529
585
  fill="currentColor"
@@ -539,26 +595,35 @@ exports[`component:<Notification> prop:success & small 1`] = `
539
595
  fill="none"
540
596
  />
541
597
  <path
542
- d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"
598
+ d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
543
599
  />
544
600
  </svg>
545
601
  </span>
546
- <span
547
- class="text small text success"
602
+ <div
603
+ class="view texts"
548
604
  >
549
- Lorem Ipsum...
550
- </span>
605
+ <span
606
+ class="text bold paragraph"
607
+ >
608
+ Title
609
+ </span>
610
+ <span
611
+ class="text action"
612
+ >
613
+ Lorem Ipsum...
614
+ </span>
615
+ </div>
551
616
  </div>
552
617
  </DocumentFragment>
553
618
  `;
554
619
 
555
- exports[`component:<Notification> prop:success 1`] = `
620
+ exports[`component:<Notification> prop:warning & inline 1`] = `
556
621
  <DocumentFragment>
557
622
  <div
558
- class="view row notification success outlined"
623
+ class="view row notification warning inline"
559
624
  >
560
625
  <span
561
- class="icon headline-3 icon"
626
+ class="icon headline-3 icon small"
562
627
  >
563
628
  <svg
564
629
  fill="currentColor"
@@ -574,46 +639,19 @@ exports[`component:<Notification> prop:success 1`] = `
574
639
  fill="none"
575
640
  />
576
641
  <path
577
- d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z"
642
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
578
643
  />
579
644
  </svg>
580
645
  </span>
581
- <span
582
- class="text paragraph text success"
583
- >
584
- Lorem Ipsum...
585
- </span>
586
- </div>
587
- </DocumentFragment>
588
- `;
589
-
590
- exports[`component:<Notification> prop:warning & inline 1`] = `
591
- <DocumentFragment>
592
- <div
593
- class="view row notification warning inline inline"
594
- >
595
- <span
596
- class="icon headline-3 icon"
646
+ <div
647
+ class="view texts"
597
648
  >
598
- <svg
599
- fill="currentColor"
600
- height="1em"
601
- stroke="currentColor"
602
- stroke-width="0"
603
- viewBox="0 0 24 24"
604
- width="1em"
605
- xmlns="http://www.w3.org/2000/svg"
649
+ <span
650
+ class="text action"
606
651
  >
607
- <path
608
- d="M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"
609
- />
610
- </svg>
611
- </span>
612
- <span
613
- class="text paragraph text warning"
614
- >
615
- Lorem Ipsum...
616
- </span>
652
+ Lorem Ipsum...
653
+ </span>
654
+ </div>
617
655
  </div>
618
656
  </DocumentFragment>
619
657
  `;
@@ -636,15 +674,23 @@ exports[`component:<Notification> prop:warning & large 1`] = `
636
674
  xmlns="http://www.w3.org/2000/svg"
637
675
  >
638
676
  <path
639
- d="M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"
677
+ d="M0 0h24v24H0V0z"
678
+ fill="none"
679
+ />
680
+ <path
681
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
640
682
  />
641
683
  </svg>
642
684
  </span>
643
- <span
644
- class="text paragraph text warning"
685
+ <div
686
+ class="view texts"
645
687
  >
646
- Lorem Ipsum...
647
- </span>
688
+ <span
689
+ class="text action"
690
+ >
691
+ Lorem Ipsum...
692
+ </span>
693
+ </div>
648
694
  </div>
649
695
  </DocumentFragment>
650
696
  `;
@@ -655,7 +701,7 @@ exports[`component:<Notification> prop:warning & small 1`] = `
655
701
  class="view row notification warning outlined small"
656
702
  >
657
703
  <span
658
- class="icon paragraph icon"
704
+ class="icon headline-3 icon small"
659
705
  >
660
706
  <svg
661
707
  fill="currentColor"
@@ -667,15 +713,23 @@ exports[`component:<Notification> prop:warning & small 1`] = `
667
713
  xmlns="http://www.w3.org/2000/svg"
668
714
  >
669
715
  <path
670
- d="M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"
716
+ d="M0 0h24v24H0V0z"
717
+ fill="none"
718
+ />
719
+ <path
720
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
671
721
  />
672
722
  </svg>
673
723
  </span>
674
- <span
675
- class="text small text warning"
724
+ <div
725
+ class="view texts"
676
726
  >
677
- Lorem Ipsum...
678
- </span>
727
+ <span
728
+ class="text small"
729
+ >
730
+ Lorem Ipsum...
731
+ </span>
732
+ </div>
679
733
  </div>
680
734
  </DocumentFragment>
681
735
  `;
@@ -686,7 +740,7 @@ exports[`component:<Notification> prop:warning 1`] = `
686
740
  class="view row notification warning outlined"
687
741
  >
688
742
  <span
689
- class="icon headline-3 icon"
743
+ class="icon headline-3 icon small"
690
744
  >
691
745
  <svg
692
746
  fill="currentColor"
@@ -698,15 +752,23 @@ exports[`component:<Notification> prop:warning 1`] = `
698
752
  xmlns="http://www.w3.org/2000/svg"
699
753
  >
700
754
  <path
701
- d="M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z"
755
+ d="M0 0h24v24H0V0z"
756
+ fill="none"
757
+ />
758
+ <path
759
+ d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
702
760
  />
703
761
  </svg>
704
762
  </span>
705
- <span
706
- class="text paragraph text warning"
763
+ <div
764
+ class="view texts"
707
765
  >
708
- Lorem Ipsum...
709
- </span>
766
+ <span
767
+ class="text action"
768
+ >
769
+ Lorem Ipsum...
770
+ </span>
771
+ </div>
710
772
  </div>
711
773
  </DocumentFragment>
712
774
  `;
@@ -717,7 +779,7 @@ exports[`component:<Notification> prop:wide 1`] = `
717
779
  class="view row notification outlined wide"
718
780
  >
719
781
  <span
720
- class="icon headline-3 icon"
782
+ class="icon headline-3 icon small"
721
783
  >
722
784
  <svg
723
785
  fill="currentColor"
@@ -737,11 +799,15 @@ exports[`component:<Notification> prop:wide 1`] = `
737
799
  />
738
800
  </svg>
739
801
  </span>
740
- <span
741
- class="text paragraph text"
802
+ <div
803
+ class="view texts"
742
804
  >
743
- Lorem Ipsum...
744
- </span>
805
+ <span
806
+ class="text action"
807
+ >
808
+ Lorem Ipsum...
809
+ </span>
810
+ </div>
745
811
  </div>
746
812
  </DocumentFragment>
747
813
  `;
@@ -752,7 +818,7 @@ exports[`component:<Notification> renders 1`] = `
752
818
  class="view row notification outlined"
753
819
  >
754
820
  <span
755
- class="icon headline-3 icon"
821
+ class="icon headline-3 icon small"
756
822
  >
757
823
  <svg
758
824
  fill="currentColor"
@@ -772,11 +838,15 @@ exports[`component:<Notification> renders 1`] = `
772
838
  />
773
839
  </svg>
774
840
  </span>
775
- <span
776
- class="text paragraph text"
841
+ <div
842
+ class="view texts"
777
843
  >
778
- Lorem Ipsum...
779
- </span>
844
+ <span
845
+ class="text action"
846
+ >
847
+ Lorem Ipsum...
848
+ </span>
849
+ </div>
780
850
  </div>
781
851
  </DocumentFragment>
782
852
  `;
@@ -788,7 +858,7 @@ exports[`component:<Notification> testId 1`] = `
788
858
  data-testid="mirai"
789
859
  >
790
860
  <span
791
- class="icon headline-3 icon"
861
+ class="icon headline-3 icon small"
792
862
  >
793
863
  <svg
794
864
  fill="currentColor"
@@ -808,11 +878,15 @@ exports[`component:<Notification> testId 1`] = `
808
878
  />
809
879
  </svg>
810
880
  </span>
811
- <span
812
- class="text paragraph text"
881
+ <div
882
+ class="view texts"
813
883
  >
814
- Lorem Ipsum...
815
- </span>
884
+ <span
885
+ class="text action"
886
+ >
887
+ Lorem Ipsum...
888
+ </span>
889
+ </div>
816
890
  </div>
817
891
  </DocumentFragment>
818
892
  `;