@mirai/ui 1.0.218 → 1.0.222
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/README.md +1 -0
- package/build/components/Action/Action.js +1 -1
- package/build/components/Action/Action.js.map +1 -1
- package/build/components/Action/Action.module.css +5 -5
- package/build/components/Action/__tests__/__snapshots__/Action.test.js.snap +15 -15
- package/build/components/Button/Button.js +1 -1
- package/build/components/Button/Button.js.map +1 -1
- package/build/components/Button/Button.module.css +10 -16
- package/build/components/Button/__tests__/__snapshots__/Button.test.js.snap +15 -15
- package/build/components/Calendar/Calendar.Week.js +1 -1
- package/build/components/Calendar/Calendar.Week.js.map +1 -1
- package/build/components/Calendar/Calendar.js +1 -1
- package/build/components/Calendar/Calendar.js.map +1 -1
- package/build/components/Calendar/Calendar.module.css +6 -7
- package/build/components/Calendar/__tests__/__snapshots__/Calendar.test.jsx.snap +2010 -2010
- package/build/components/Form/__tests__/__snapshots__/Form.test.jsx.snap +1 -1
- package/build/components/InputDate/__tests__/__snapshots__/InputDate.test.js.snap +7 -7
- package/build/components/InputNumber/__tests__/__snapshots__/InputNumber.test.js.snap +24 -24
- package/build/components/InputPhone/InputPhone.js +2 -2
- package/build/components/InputPhone/InputPhone.js.map +1 -1
- package/build/components/InputPhone/__tests__/__snapshots__/InputPhone.test.js.snap +40 -40
- package/build/components/InputText/InputText.js +2 -2
- package/build/components/InputText/InputText.js.map +1 -1
- package/build/components/InputText/InputText.module.css +3 -7
- package/build/components/InputText/__tests__/__snapshots__/InputText.test.js.snap +16 -16
- package/build/components/Menu/Menu.Option.js +1 -1
- package/build/components/Menu/Menu.Option.js.map +1 -1
- package/build/components/Menu/Menu.module.css +3 -3
- package/build/components/Menu/__tests__/__snapshots__/Menu.test.jsx.snap +12 -12
- package/build/components/Modal/Modal.js +1 -1
- package/build/components/Modal/Modal.js.map +1 -1
- package/build/components/Modal/__tests__/__snapshots__/Modal.test.js.snap +3 -3
- package/build/components/Notification/Notification.js +1 -1
- package/build/components/Notification/Notification.js.map +1 -1
- package/build/components/Notification/Notification.module.css +7 -10
- package/build/components/Notification/__tests__/__snapshots__/Notification.test.js.snap +6 -6
- package/build/components/Table/Table.Row.js +1 -1
- package/build/components/Table/Table.Row.js.map +1 -1
- package/build/components/Table/Table.constants.js +3 -1
- package/build/components/Table/Table.constants.js.map +1 -1
- package/build/components/Table/Table.js +19 -7
- package/build/components/Table/Table.js.map +1 -1
- package/build/components/Table/Table.module.css +2 -6
- package/build/components/Table/Table.stories.js +21 -3
- package/build/components/Table/Table.stories.js.map +1 -1
- package/build/components/Table/__tests__/__snapshots__/Table.ColumnFilter.test.js.snap +36 -36
- package/build/components/Table/__tests__/__snapshots__/Table.test.js.snap +360 -141
- package/build/components/Table/helpers/select.js +22 -14
- package/build/components/Table/helpers/select.js.map +1 -1
- package/build/components/Tooltip/Tooltip.js +1 -1
- package/build/components/Tooltip/Tooltip.js.map +1 -1
- package/build/components/Tooltip/Tooltip.module.css +5 -5
- package/build/components/Tooltip/__tests__/__snapshots__/Tooltip.test.jsx.snap +12 -12
- package/build/primitives/Checkbox/Checkbox.module.css +1 -2
- package/build/primitives/Layer/Layer.module.css +4 -1
- package/build/primitives/Layer/__tests__/__snapshots__/Layer.test.js.snap +6 -6
- package/build/primitives/Radio/Radio.module.css +2 -2
- package/build/primitives/Select/Select.module.css +1 -5
- package/build/primitives/Switch/Switch.module.css +1 -5
- package/build/primitives/Text/Text.module.css +4 -8
- package/package.json +1 -1
|
@@ -9,9 +9,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
9
9
|
class="table"
|
|
10
10
|
>
|
|
11
11
|
<thead>
|
|
12
|
-
<tr
|
|
13
|
-
class="notSelected"
|
|
14
|
-
>
|
|
12
|
+
<tr>
|
|
15
13
|
<th>
|
|
16
14
|
<span
|
|
17
15
|
class="view forceRow column"
|
|
@@ -181,9 +179,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
181
179
|
</tr>
|
|
182
180
|
</thead>
|
|
183
181
|
<tbody>
|
|
184
|
-
<tr
|
|
185
|
-
class="notSelected"
|
|
186
|
-
>
|
|
182
|
+
<tr>
|
|
187
183
|
<td>
|
|
188
184
|
<span
|
|
189
185
|
class="view forceRow column text"
|
|
@@ -216,9 +212,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
216
212
|
/>
|
|
217
213
|
</td>
|
|
218
214
|
</tr>
|
|
219
|
-
<tr
|
|
220
|
-
class="notSelected"
|
|
221
|
-
>
|
|
215
|
+
<tr>
|
|
222
216
|
<td>
|
|
223
217
|
<span
|
|
224
218
|
class="view forceRow column text"
|
|
@@ -251,9 +245,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
251
245
|
/>
|
|
252
246
|
</td>
|
|
253
247
|
</tr>
|
|
254
|
-
<tr
|
|
255
|
-
class="notSelected"
|
|
256
|
-
>
|
|
248
|
+
<tr>
|
|
257
249
|
<td>
|
|
258
250
|
<span
|
|
259
251
|
class="view forceRow column text"
|
|
@@ -286,9 +278,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
286
278
|
/>
|
|
287
279
|
</td>
|
|
288
280
|
</tr>
|
|
289
|
-
<tr
|
|
290
|
-
class="notSelected"
|
|
291
|
-
>
|
|
281
|
+
<tr>
|
|
292
282
|
<td>
|
|
293
283
|
<span
|
|
294
284
|
class="view forceRow column text"
|
|
@@ -325,9 +315,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
325
315
|
</span>
|
|
326
316
|
</td>
|
|
327
317
|
</tr>
|
|
328
|
-
<tr
|
|
329
|
-
class="notSelected"
|
|
330
|
-
>
|
|
318
|
+
<tr>
|
|
331
319
|
<td>
|
|
332
320
|
<span
|
|
333
321
|
class="view forceRow column text"
|
|
@@ -362,9 +350,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
362
350
|
/>
|
|
363
351
|
</td>
|
|
364
352
|
</tr>
|
|
365
|
-
<tr
|
|
366
|
-
class="notSelected"
|
|
367
|
-
>
|
|
353
|
+
<tr>
|
|
368
354
|
<td>
|
|
369
355
|
<span
|
|
370
356
|
class="view forceRow column text"
|
|
@@ -397,9 +383,7 @@ exports[`component:<Table> inherit:className 1`] = `
|
|
|
397
383
|
/>
|
|
398
384
|
</td>
|
|
399
385
|
</tr>
|
|
400
|
-
<tr
|
|
401
|
-
class="notSelected"
|
|
402
|
-
>
|
|
386
|
+
<tr>
|
|
403
387
|
<td>
|
|
404
388
|
<span
|
|
405
389
|
class="view forceRow column text"
|
|
@@ -573,9 +557,7 @@ exports[`component:<Table> prop:filter 1`] = `
|
|
|
573
557
|
class="table"
|
|
574
558
|
>
|
|
575
559
|
<thead>
|
|
576
|
-
<tr
|
|
577
|
-
class="notSelected"
|
|
578
|
-
>
|
|
560
|
+
<tr>
|
|
579
561
|
<th>
|
|
580
562
|
<span
|
|
581
563
|
class="view forceRow column"
|
|
@@ -885,9 +867,7 @@ exports[`component:<Table> prop:filter 1`] = `
|
|
|
885
867
|
</tr>
|
|
886
868
|
</thead>
|
|
887
869
|
<tbody>
|
|
888
|
-
<tr
|
|
889
|
-
class="notSelected"
|
|
890
|
-
>
|
|
870
|
+
<tr>
|
|
891
871
|
<td>
|
|
892
872
|
<span
|
|
893
873
|
class="view forceRow column text"
|
|
@@ -924,9 +904,7 @@ exports[`component:<Table> prop:filter 1`] = `
|
|
|
924
904
|
</span>
|
|
925
905
|
</td>
|
|
926
906
|
</tr>
|
|
927
|
-
<tr
|
|
928
|
-
class="notSelected"
|
|
929
|
-
>
|
|
907
|
+
<tr>
|
|
930
908
|
<td>
|
|
931
909
|
<span
|
|
932
910
|
class="view forceRow column text"
|
|
@@ -961,9 +939,7 @@ exports[`component:<Table> prop:filter 1`] = `
|
|
|
961
939
|
/>
|
|
962
940
|
</td>
|
|
963
941
|
</tr>
|
|
964
|
-
<tr
|
|
965
|
-
class="notSelected"
|
|
966
|
-
>
|
|
942
|
+
<tr>
|
|
967
943
|
<td>
|
|
968
944
|
<span
|
|
969
945
|
class="view forceRow column text"
|
|
@@ -996,9 +972,7 @@ exports[`component:<Table> prop:filter 1`] = `
|
|
|
996
972
|
/>
|
|
997
973
|
</td>
|
|
998
974
|
</tr>
|
|
999
|
-
<tr
|
|
1000
|
-
class="notSelected"
|
|
1001
|
-
>
|
|
975
|
+
<tr>
|
|
1002
976
|
<td>
|
|
1003
977
|
<span
|
|
1004
978
|
class="view forceRow column text"
|
|
@@ -1046,9 +1020,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1046
1020
|
class="table"
|
|
1047
1021
|
>
|
|
1048
1022
|
<thead>
|
|
1049
|
-
<tr
|
|
1050
|
-
class="notSelected"
|
|
1051
|
-
>
|
|
1023
|
+
<tr>
|
|
1052
1024
|
<th>
|
|
1053
1025
|
<span
|
|
1054
1026
|
class="view forceRow column"
|
|
@@ -1218,9 +1190,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1218
1190
|
</tr>
|
|
1219
1191
|
</thead>
|
|
1220
1192
|
<tbody>
|
|
1221
|
-
<tr
|
|
1222
|
-
class="notSelected"
|
|
1223
|
-
>
|
|
1193
|
+
<tr>
|
|
1224
1194
|
<td>
|
|
1225
1195
|
<span
|
|
1226
1196
|
class="view forceRow column text"
|
|
@@ -1253,9 +1223,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1253
1223
|
/>
|
|
1254
1224
|
</td>
|
|
1255
1225
|
</tr>
|
|
1256
|
-
<tr
|
|
1257
|
-
class="notSelected"
|
|
1258
|
-
>
|
|
1226
|
+
<tr>
|
|
1259
1227
|
<td>
|
|
1260
1228
|
<span
|
|
1261
1229
|
class="view forceRow column text"
|
|
@@ -1288,9 +1256,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1288
1256
|
/>
|
|
1289
1257
|
</td>
|
|
1290
1258
|
</tr>
|
|
1291
|
-
<tr
|
|
1292
|
-
class="notSelected"
|
|
1293
|
-
>
|
|
1259
|
+
<tr>
|
|
1294
1260
|
<td>
|
|
1295
1261
|
<span
|
|
1296
1262
|
class="view forceRow column text"
|
|
@@ -1323,9 +1289,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1323
1289
|
/>
|
|
1324
1290
|
</td>
|
|
1325
1291
|
</tr>
|
|
1326
|
-
<tr
|
|
1327
|
-
class="notSelected"
|
|
1328
|
-
>
|
|
1292
|
+
<tr>
|
|
1329
1293
|
<td>
|
|
1330
1294
|
<span
|
|
1331
1295
|
class="view forceRow column text"
|
|
@@ -1362,9 +1326,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1362
1326
|
</span>
|
|
1363
1327
|
</td>
|
|
1364
1328
|
</tr>
|
|
1365
|
-
<tr
|
|
1366
|
-
class="notSelected"
|
|
1367
|
-
>
|
|
1329
|
+
<tr>
|
|
1368
1330
|
<td>
|
|
1369
1331
|
<span
|
|
1370
1332
|
class="view forceRow column text"
|
|
@@ -1399,9 +1361,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1399
1361
|
/>
|
|
1400
1362
|
</td>
|
|
1401
1363
|
</tr>
|
|
1402
|
-
<tr
|
|
1403
|
-
class="notSelected"
|
|
1404
|
-
>
|
|
1364
|
+
<tr>
|
|
1405
1365
|
<td>
|
|
1406
1366
|
<span
|
|
1407
1367
|
class="view forceRow column text"
|
|
@@ -1434,9 +1394,7 @@ exports[`component:<Table> prop:inline (false 1`] = `
|
|
|
1434
1394
|
/>
|
|
1435
1395
|
</td>
|
|
1436
1396
|
</tr>
|
|
1437
|
-
<tr
|
|
1438
|
-
class="notSelected"
|
|
1439
|
-
>
|
|
1397
|
+
<tr>
|
|
1440
1398
|
<td>
|
|
1441
1399
|
<span
|
|
1442
1400
|
class="view forceRow column text"
|
|
@@ -1486,7 +1444,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1486
1444
|
>
|
|
1487
1445
|
<thead>
|
|
1488
1446
|
<tr
|
|
1489
|
-
class="notSelected"
|
|
1490
1447
|
data-testid="onScroll-head"
|
|
1491
1448
|
>
|
|
1492
1449
|
<th
|
|
@@ -1669,7 +1626,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1669
1626
|
</thead>
|
|
1670
1627
|
<tbody>
|
|
1671
1628
|
<tr
|
|
1672
|
-
class="notSelected"
|
|
1673
1629
|
data-testid="onScroll-0"
|
|
1674
1630
|
>
|
|
1675
1631
|
<td
|
|
@@ -1715,7 +1671,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1715
1671
|
</td>
|
|
1716
1672
|
</tr>
|
|
1717
1673
|
<tr
|
|
1718
|
-
class="notSelected"
|
|
1719
1674
|
data-testid="onScroll-1"
|
|
1720
1675
|
>
|
|
1721
1676
|
<td
|
|
@@ -1761,7 +1716,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1761
1716
|
</td>
|
|
1762
1717
|
</tr>
|
|
1763
1718
|
<tr
|
|
1764
|
-
class="notSelected"
|
|
1765
1719
|
data-testid="onScroll-2"
|
|
1766
1720
|
>
|
|
1767
1721
|
<td
|
|
@@ -1807,7 +1761,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1807
1761
|
</td>
|
|
1808
1762
|
</tr>
|
|
1809
1763
|
<tr
|
|
1810
|
-
class="notSelected"
|
|
1811
1764
|
data-testid="onScroll-3"
|
|
1812
1765
|
>
|
|
1813
1766
|
<td
|
|
@@ -1857,7 +1810,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1857
1810
|
</td>
|
|
1858
1811
|
</tr>
|
|
1859
1812
|
<tr
|
|
1860
|
-
class="notSelected"
|
|
1861
1813
|
data-testid="onScroll-4"
|
|
1862
1814
|
>
|
|
1863
1815
|
<td
|
|
@@ -1905,7 +1857,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1905
1857
|
</td>
|
|
1906
1858
|
</tr>
|
|
1907
1859
|
<tr
|
|
1908
|
-
class="notSelected"
|
|
1909
1860
|
data-testid="onScroll-5"
|
|
1910
1861
|
>
|
|
1911
1862
|
<td
|
|
@@ -1951,7 +1902,6 @@ exports[`component:<Table> prop:onScroll 1`] = `
|
|
|
1951
1902
|
</td>
|
|
1952
1903
|
</tr>
|
|
1953
1904
|
<tr
|
|
1954
|
-
class="notSelected"
|
|
1955
1905
|
data-testid="onScroll-6"
|
|
1956
1906
|
>
|
|
1957
1907
|
<td
|
|
@@ -2013,7 +1963,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2013
1963
|
>
|
|
2014
1964
|
<thead>
|
|
2015
1965
|
<tr
|
|
2016
|
-
class="notSelected"
|
|
2017
1966
|
data-testid="onSelect-head"
|
|
2018
1967
|
>
|
|
2019
1968
|
<th
|
|
@@ -2211,7 +2160,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2211
2160
|
</thead>
|
|
2212
2161
|
<tbody>
|
|
2213
2162
|
<tr
|
|
2214
|
-
class="notSelected"
|
|
2215
2163
|
data-testid="onSelect-0"
|
|
2216
2164
|
>
|
|
2217
2165
|
<td
|
|
@@ -2272,7 +2220,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2272
2220
|
</td>
|
|
2273
2221
|
</tr>
|
|
2274
2222
|
<tr
|
|
2275
|
-
class="notSelected"
|
|
2276
2223
|
data-testid="onSelect-1"
|
|
2277
2224
|
>
|
|
2278
2225
|
<td
|
|
@@ -2333,7 +2280,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2333
2280
|
</td>
|
|
2334
2281
|
</tr>
|
|
2335
2282
|
<tr
|
|
2336
|
-
class="notSelected"
|
|
2337
2283
|
data-testid="onSelect-2"
|
|
2338
2284
|
>
|
|
2339
2285
|
<td
|
|
@@ -2394,7 +2340,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2394
2340
|
</td>
|
|
2395
2341
|
</tr>
|
|
2396
2342
|
<tr
|
|
2397
|
-
class="notSelected"
|
|
2398
2343
|
data-testid="onSelect-3"
|
|
2399
2344
|
>
|
|
2400
2345
|
<td
|
|
@@ -2459,7 +2404,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2459
2404
|
</td>
|
|
2460
2405
|
</tr>
|
|
2461
2406
|
<tr
|
|
2462
|
-
class="notSelected"
|
|
2463
2407
|
data-testid="onSelect-4"
|
|
2464
2408
|
>
|
|
2465
2409
|
<td
|
|
@@ -2522,7 +2466,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2522
2466
|
</td>
|
|
2523
2467
|
</tr>
|
|
2524
2468
|
<tr
|
|
2525
|
-
class="notSelected"
|
|
2526
2469
|
data-testid="onSelect-5"
|
|
2527
2470
|
>
|
|
2528
2471
|
<td
|
|
@@ -2583,7 +2526,6 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2583
2526
|
</td>
|
|
2584
2527
|
</tr>
|
|
2585
2528
|
<tr
|
|
2586
|
-
class="notSelected"
|
|
2587
2529
|
data-testid="onSelect-6"
|
|
2588
2530
|
>
|
|
2589
2531
|
<td
|
|
@@ -2649,6 +2591,327 @@ exports[`component:<Table> prop:onSelect 1`] = `
|
|
|
2649
2591
|
</DocumentFragment>
|
|
2650
2592
|
`;
|
|
2651
2593
|
|
|
2594
|
+
exports[`component:<Table> prop:pagination 1`] = `
|
|
2595
|
+
<DocumentFragment>
|
|
2596
|
+
<div
|
|
2597
|
+
class="scrollview snap vertical notIndicator container"
|
|
2598
|
+
>
|
|
2599
|
+
<table
|
|
2600
|
+
class="table"
|
|
2601
|
+
>
|
|
2602
|
+
<thead>
|
|
2603
|
+
<tr>
|
|
2604
|
+
<th>
|
|
2605
|
+
<span
|
|
2606
|
+
class="view forceRow column"
|
|
2607
|
+
>
|
|
2608
|
+
User Name
|
|
2609
|
+
<div
|
|
2610
|
+
class="view row icons"
|
|
2611
|
+
>
|
|
2612
|
+
<span
|
|
2613
|
+
class="icon headline-3 icon disabled"
|
|
2614
|
+
>
|
|
2615
|
+
<svg
|
|
2616
|
+
fill="currentColor"
|
|
2617
|
+
height="1em"
|
|
2618
|
+
stroke="currentColor"
|
|
2619
|
+
stroke-width="0"
|
|
2620
|
+
viewBox="0 0 24 24"
|
|
2621
|
+
width="1em"
|
|
2622
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2623
|
+
>
|
|
2624
|
+
<path
|
|
2625
|
+
d="M0 0h24v24H0V0z"
|
|
2626
|
+
fill="none"
|
|
2627
|
+
/>
|
|
2628
|
+
<path
|
|
2629
|
+
d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
2630
|
+
/>
|
|
2631
|
+
</svg>
|
|
2632
|
+
</span>
|
|
2633
|
+
</div>
|
|
2634
|
+
</span>
|
|
2635
|
+
</th>
|
|
2636
|
+
<th>
|
|
2637
|
+
<span
|
|
2638
|
+
class="view forceRow column"
|
|
2639
|
+
>
|
|
2640
|
+
Email
|
|
2641
|
+
<div
|
|
2642
|
+
class="view row icons"
|
|
2643
|
+
>
|
|
2644
|
+
<span
|
|
2645
|
+
class="icon headline-3 icon disabled"
|
|
2646
|
+
>
|
|
2647
|
+
<svg
|
|
2648
|
+
fill="currentColor"
|
|
2649
|
+
height="1em"
|
|
2650
|
+
stroke="currentColor"
|
|
2651
|
+
stroke-width="0"
|
|
2652
|
+
viewBox="0 0 24 24"
|
|
2653
|
+
width="1em"
|
|
2654
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2655
|
+
>
|
|
2656
|
+
<path
|
|
2657
|
+
d="M0 0h24v24H0V0z"
|
|
2658
|
+
fill="none"
|
|
2659
|
+
/>
|
|
2660
|
+
<path
|
|
2661
|
+
d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
2662
|
+
/>
|
|
2663
|
+
</svg>
|
|
2664
|
+
</span>
|
|
2665
|
+
</div>
|
|
2666
|
+
</span>
|
|
2667
|
+
</th>
|
|
2668
|
+
<th>
|
|
2669
|
+
<span
|
|
2670
|
+
class="view forceRow column"
|
|
2671
|
+
>
|
|
2672
|
+
Year
|
|
2673
|
+
<div
|
|
2674
|
+
class="view row icons"
|
|
2675
|
+
>
|
|
2676
|
+
<span
|
|
2677
|
+
class="icon headline-3 icon disabled"
|
|
2678
|
+
>
|
|
2679
|
+
<svg
|
|
2680
|
+
fill="currentColor"
|
|
2681
|
+
height="1em"
|
|
2682
|
+
stroke="currentColor"
|
|
2683
|
+
stroke-width="0"
|
|
2684
|
+
viewBox="0 0 24 24"
|
|
2685
|
+
width="1em"
|
|
2686
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2687
|
+
>
|
|
2688
|
+
<path
|
|
2689
|
+
d="M0 0h24v24H0V0z"
|
|
2690
|
+
fill="none"
|
|
2691
|
+
/>
|
|
2692
|
+
<path
|
|
2693
|
+
d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
2694
|
+
/>
|
|
2695
|
+
</svg>
|
|
2696
|
+
</span>
|
|
2697
|
+
</div>
|
|
2698
|
+
</span>
|
|
2699
|
+
</th>
|
|
2700
|
+
<th>
|
|
2701
|
+
<span
|
|
2702
|
+
class="view forceRow column"
|
|
2703
|
+
>
|
|
2704
|
+
<span>
|
|
2705
|
+
<div
|
|
2706
|
+
class="dispatcher tooltip"
|
|
2707
|
+
>
|
|
2708
|
+
Twitter
|
|
2709
|
+
</div>
|
|
2710
|
+
</span>
|
|
2711
|
+
<div
|
|
2712
|
+
class="view row icons"
|
|
2713
|
+
>
|
|
2714
|
+
<span
|
|
2715
|
+
class="icon headline-3 icon disabled"
|
|
2716
|
+
>
|
|
2717
|
+
<svg
|
|
2718
|
+
fill="currentColor"
|
|
2719
|
+
height="1em"
|
|
2720
|
+
stroke="currentColor"
|
|
2721
|
+
stroke-width="0"
|
|
2722
|
+
viewBox="0 0 24 24"
|
|
2723
|
+
width="1em"
|
|
2724
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2725
|
+
>
|
|
2726
|
+
<path
|
|
2727
|
+
d="M0 0h24v24H0V0z"
|
|
2728
|
+
fill="none"
|
|
2729
|
+
/>
|
|
2730
|
+
<path
|
|
2731
|
+
d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
2732
|
+
/>
|
|
2733
|
+
</svg>
|
|
2734
|
+
</span>
|
|
2735
|
+
</div>
|
|
2736
|
+
</span>
|
|
2737
|
+
</th>
|
|
2738
|
+
<th>
|
|
2739
|
+
<span
|
|
2740
|
+
class="view forceRow column"
|
|
2741
|
+
>
|
|
2742
|
+
Action
|
|
2743
|
+
<div
|
|
2744
|
+
class="view row icons"
|
|
2745
|
+
>
|
|
2746
|
+
<span
|
|
2747
|
+
class="icon headline-3 icon disabled"
|
|
2748
|
+
>
|
|
2749
|
+
<svg
|
|
2750
|
+
fill="currentColor"
|
|
2751
|
+
height="1em"
|
|
2752
|
+
stroke="currentColor"
|
|
2753
|
+
stroke-width="0"
|
|
2754
|
+
viewBox="0 0 24 24"
|
|
2755
|
+
width="1em"
|
|
2756
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2757
|
+
>
|
|
2758
|
+
<path
|
|
2759
|
+
d="M0 0h24v24H0V0z"
|
|
2760
|
+
fill="none"
|
|
2761
|
+
/>
|
|
2762
|
+
<path
|
|
2763
|
+
d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"
|
|
2764
|
+
/>
|
|
2765
|
+
</svg>
|
|
2766
|
+
</span>
|
|
2767
|
+
</div>
|
|
2768
|
+
</span>
|
|
2769
|
+
</th>
|
|
2770
|
+
</tr>
|
|
2771
|
+
</thead>
|
|
2772
|
+
<tbody>
|
|
2773
|
+
<tr>
|
|
2774
|
+
<td>
|
|
2775
|
+
<span
|
|
2776
|
+
class="view forceRow column text"
|
|
2777
|
+
>
|
|
2778
|
+
jose
|
|
2779
|
+
</span>
|
|
2780
|
+
</td>
|
|
2781
|
+
<td>
|
|
2782
|
+
<span
|
|
2783
|
+
class="view forceRow column text"
|
|
2784
|
+
>
|
|
2785
|
+
jose@mirai.com
|
|
2786
|
+
</span>
|
|
2787
|
+
</td>
|
|
2788
|
+
<td>
|
|
2789
|
+
<span
|
|
2790
|
+
class="view forceRow column number"
|
|
2791
|
+
>
|
|
2792
|
+
2012
|
|
2793
|
+
</span>
|
|
2794
|
+
</td>
|
|
2795
|
+
<td>
|
|
2796
|
+
<span
|
|
2797
|
+
class="view forceRow column text"
|
|
2798
|
+
/>
|
|
2799
|
+
</td>
|
|
2800
|
+
<td>
|
|
2801
|
+
<span
|
|
2802
|
+
class="view forceRow column text"
|
|
2803
|
+
/>
|
|
2804
|
+
</td>
|
|
2805
|
+
</tr>
|
|
2806
|
+
<tr>
|
|
2807
|
+
<td>
|
|
2808
|
+
<span
|
|
2809
|
+
class="view forceRow column text"
|
|
2810
|
+
>
|
|
2811
|
+
mario/1
|
|
2812
|
+
</span>
|
|
2813
|
+
</td>
|
|
2814
|
+
<td>
|
|
2815
|
+
<span
|
|
2816
|
+
class="view forceRow column text"
|
|
2817
|
+
>
|
|
2818
|
+
mario.1@mirai.com
|
|
2819
|
+
</span>
|
|
2820
|
+
</td>
|
|
2821
|
+
<td>
|
|
2822
|
+
<span
|
|
2823
|
+
class="view forceRow column number"
|
|
2824
|
+
>
|
|
2825
|
+
2005
|
|
2826
|
+
</span>
|
|
2827
|
+
</td>
|
|
2828
|
+
<td>
|
|
2829
|
+
<span
|
|
2830
|
+
class="view forceRow column text"
|
|
2831
|
+
/>
|
|
2832
|
+
</td>
|
|
2833
|
+
<td>
|
|
2834
|
+
<span
|
|
2835
|
+
class="view forceRow column text"
|
|
2836
|
+
/>
|
|
2837
|
+
</td>
|
|
2838
|
+
</tr>
|
|
2839
|
+
<tr>
|
|
2840
|
+
<td>
|
|
2841
|
+
<span
|
|
2842
|
+
class="view forceRow column text"
|
|
2843
|
+
>
|
|
2844
|
+
carlos
|
|
2845
|
+
</span>
|
|
2846
|
+
</td>
|
|
2847
|
+
<td>
|
|
2848
|
+
<span
|
|
2849
|
+
class="view forceRow column text"
|
|
2850
|
+
>
|
|
2851
|
+
carlos@mirai.com
|
|
2852
|
+
</span>
|
|
2853
|
+
</td>
|
|
2854
|
+
<td>
|
|
2855
|
+
<span
|
|
2856
|
+
class="view forceRow column number"
|
|
2857
|
+
>
|
|
2858
|
+
2012
|
|
2859
|
+
</span>
|
|
2860
|
+
</td>
|
|
2861
|
+
<td>
|
|
2862
|
+
<span
|
|
2863
|
+
class="view forceRow column text"
|
|
2864
|
+
/>
|
|
2865
|
+
</td>
|
|
2866
|
+
<td>
|
|
2867
|
+
<span
|
|
2868
|
+
class="view forceRow column text"
|
|
2869
|
+
/>
|
|
2870
|
+
</td>
|
|
2871
|
+
</tr>
|
|
2872
|
+
<tr>
|
|
2873
|
+
<td>
|
|
2874
|
+
<span
|
|
2875
|
+
class="view forceRow column text"
|
|
2876
|
+
>
|
|
2877
|
+
svet
|
|
2878
|
+
</span>
|
|
2879
|
+
</td>
|
|
2880
|
+
<td>
|
|
2881
|
+
<span
|
|
2882
|
+
class="view forceRow column text"
|
|
2883
|
+
>
|
|
2884
|
+
svet@mirai.com
|
|
2885
|
+
</span>
|
|
2886
|
+
</td>
|
|
2887
|
+
<td>
|
|
2888
|
+
<span
|
|
2889
|
+
class="view forceRow column number"
|
|
2890
|
+
>
|
|
2891
|
+
2021
|
|
2892
|
+
</span>
|
|
2893
|
+
</td>
|
|
2894
|
+
<td>
|
|
2895
|
+
<span
|
|
2896
|
+
class="view forceRow column text"
|
|
2897
|
+
/>
|
|
2898
|
+
</td>
|
|
2899
|
+
<td>
|
|
2900
|
+
<span
|
|
2901
|
+
class="view forceRow column text"
|
|
2902
|
+
>
|
|
2903
|
+
<strong>
|
|
2904
|
+
action
|
|
2905
|
+
</strong>
|
|
2906
|
+
</span>
|
|
2907
|
+
</td>
|
|
2908
|
+
</tr>
|
|
2909
|
+
</tbody>
|
|
2910
|
+
</table>
|
|
2911
|
+
</div>
|
|
2912
|
+
</DocumentFragment>
|
|
2913
|
+
`;
|
|
2914
|
+
|
|
2652
2915
|
exports[`component:<Table> prop:search 1`] = `
|
|
2653
2916
|
<DocumentFragment>
|
|
2654
2917
|
<div
|
|
@@ -2658,9 +2921,7 @@ exports[`component:<Table> prop:search 1`] = `
|
|
|
2658
2921
|
class="table"
|
|
2659
2922
|
>
|
|
2660
2923
|
<thead>
|
|
2661
|
-
<tr
|
|
2662
|
-
class="notSelected"
|
|
2663
|
-
>
|
|
2924
|
+
<tr>
|
|
2664
2925
|
<th>
|
|
2665
2926
|
<span
|
|
2666
2927
|
class="view forceRow column"
|
|
@@ -2830,9 +3091,7 @@ exports[`component:<Table> prop:search 1`] = `
|
|
|
2830
3091
|
</tr>
|
|
2831
3092
|
</thead>
|
|
2832
3093
|
<tbody>
|
|
2833
|
-
<tr
|
|
2834
|
-
class="notSelected"
|
|
2835
|
-
>
|
|
3094
|
+
<tr>
|
|
2836
3095
|
<td>
|
|
2837
3096
|
<span
|
|
2838
3097
|
class="view forceRow column text"
|
|
@@ -2882,9 +3141,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
2882
3141
|
class="table"
|
|
2883
3142
|
>
|
|
2884
3143
|
<thead>
|
|
2885
|
-
<tr
|
|
2886
|
-
class="notSelected"
|
|
2887
|
-
>
|
|
3144
|
+
<tr>
|
|
2888
3145
|
<th>
|
|
2889
3146
|
<span
|
|
2890
3147
|
class="view forceRow column"
|
|
@@ -3054,9 +3311,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
3054
3311
|
</tr>
|
|
3055
3312
|
</thead>
|
|
3056
3313
|
<tbody>
|
|
3057
|
-
<tr
|
|
3058
|
-
class="notSelected"
|
|
3059
|
-
>
|
|
3314
|
+
<tr>
|
|
3060
3315
|
<td>
|
|
3061
3316
|
<span
|
|
3062
3317
|
class="view forceRow column text"
|
|
@@ -3089,9 +3344,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
3089
3344
|
/>
|
|
3090
3345
|
</td>
|
|
3091
3346
|
</tr>
|
|
3092
|
-
<tr
|
|
3093
|
-
class="notSelected"
|
|
3094
|
-
>
|
|
3347
|
+
<tr>
|
|
3095
3348
|
<td>
|
|
3096
3349
|
<span
|
|
3097
3350
|
class="view forceRow column text"
|
|
@@ -3124,9 +3377,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
3124
3377
|
/>
|
|
3125
3378
|
</td>
|
|
3126
3379
|
</tr>
|
|
3127
|
-
<tr
|
|
3128
|
-
class="notSelected"
|
|
3129
|
-
>
|
|
3380
|
+
<tr>
|
|
3130
3381
|
<td>
|
|
3131
3382
|
<span
|
|
3132
3383
|
class="view forceRow column text"
|
|
@@ -3159,9 +3410,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
3159
3410
|
/>
|
|
3160
3411
|
</td>
|
|
3161
3412
|
</tr>
|
|
3162
|
-
<tr
|
|
3163
|
-
class="notSelected"
|
|
3164
|
-
>
|
|
3413
|
+
<tr>
|
|
3165
3414
|
<td>
|
|
3166
3415
|
<span
|
|
3167
3416
|
class="view forceRow column text"
|
|
@@ -3235,9 +3484,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
3235
3484
|
/>
|
|
3236
3485
|
</td>
|
|
3237
3486
|
</tr>
|
|
3238
|
-
<tr
|
|
3239
|
-
class="notSelected"
|
|
3240
|
-
>
|
|
3487
|
+
<tr>
|
|
3241
3488
|
<td>
|
|
3242
3489
|
<span
|
|
3243
3490
|
class="view forceRow column text"
|
|
@@ -3270,9 +3517,7 @@ exports[`component:<Table> prop:selected 1`] = `
|
|
|
3270
3517
|
/>
|
|
3271
3518
|
</td>
|
|
3272
3519
|
</tr>
|
|
3273
|
-
<tr
|
|
3274
|
-
class="notSelected"
|
|
3275
|
-
>
|
|
3520
|
+
<tr>
|
|
3276
3521
|
<td>
|
|
3277
3522
|
<span
|
|
3278
3523
|
class="view forceRow column text"
|
|
@@ -3368,9 +3613,7 @@ exports[`component:<Table> prop:store 1`] = `
|
|
|
3368
3613
|
class="table"
|
|
3369
3614
|
>
|
|
3370
3615
|
<thead>
|
|
3371
|
-
<tr
|
|
3372
|
-
class="notSelected"
|
|
3373
|
-
>
|
|
3616
|
+
<tr>
|
|
3374
3617
|
<th>
|
|
3375
3618
|
<span
|
|
3376
3619
|
class="view forceRow column"
|
|
@@ -3694,9 +3937,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
3694
3937
|
class="table"
|
|
3695
3938
|
>
|
|
3696
3939
|
<thead>
|
|
3697
|
-
<tr
|
|
3698
|
-
class="notSelected"
|
|
3699
|
-
>
|
|
3940
|
+
<tr>
|
|
3700
3941
|
<th>
|
|
3701
3942
|
<span
|
|
3702
3943
|
class="view forceRow column"
|
|
@@ -3866,9 +4107,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
3866
4107
|
</tr>
|
|
3867
4108
|
</thead>
|
|
3868
4109
|
<tbody>
|
|
3869
|
-
<tr
|
|
3870
|
-
class="notSelected"
|
|
3871
|
-
>
|
|
4110
|
+
<tr>
|
|
3872
4111
|
<td>
|
|
3873
4112
|
<span
|
|
3874
4113
|
class="view forceRow column text"
|
|
@@ -3901,9 +4140,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
3901
4140
|
/>
|
|
3902
4141
|
</td>
|
|
3903
4142
|
</tr>
|
|
3904
|
-
<tr
|
|
3905
|
-
class="notSelected"
|
|
3906
|
-
>
|
|
4143
|
+
<tr>
|
|
3907
4144
|
<td>
|
|
3908
4145
|
<span
|
|
3909
4146
|
class="view forceRow column text"
|
|
@@ -3936,9 +4173,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
3936
4173
|
/>
|
|
3937
4174
|
</td>
|
|
3938
4175
|
</tr>
|
|
3939
|
-
<tr
|
|
3940
|
-
class="notSelected"
|
|
3941
|
-
>
|
|
4176
|
+
<tr>
|
|
3942
4177
|
<td>
|
|
3943
4178
|
<span
|
|
3944
4179
|
class="view forceRow column text"
|
|
@@ -3971,9 +4206,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
3971
4206
|
/>
|
|
3972
4207
|
</td>
|
|
3973
4208
|
</tr>
|
|
3974
|
-
<tr
|
|
3975
|
-
class="notSelected"
|
|
3976
|
-
>
|
|
4209
|
+
<tr>
|
|
3977
4210
|
<td>
|
|
3978
4211
|
<span
|
|
3979
4212
|
class="view forceRow column text"
|
|
@@ -4010,9 +4243,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
4010
4243
|
</span>
|
|
4011
4244
|
</td>
|
|
4012
4245
|
</tr>
|
|
4013
|
-
<tr
|
|
4014
|
-
class="notSelected"
|
|
4015
|
-
>
|
|
4246
|
+
<tr>
|
|
4016
4247
|
<td>
|
|
4017
4248
|
<span
|
|
4018
4249
|
class="view forceRow column text"
|
|
@@ -4047,9 +4278,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
4047
4278
|
/>
|
|
4048
4279
|
</td>
|
|
4049
4280
|
</tr>
|
|
4050
|
-
<tr
|
|
4051
|
-
class="notSelected"
|
|
4052
|
-
>
|
|
4281
|
+
<tr>
|
|
4053
4282
|
<td>
|
|
4054
4283
|
<span
|
|
4055
4284
|
class="view forceRow column text"
|
|
@@ -4082,9 +4311,7 @@ exports[`component:<Table> renders 1`] = `
|
|
|
4082
4311
|
/>
|
|
4083
4312
|
</td>
|
|
4084
4313
|
</tr>
|
|
4085
|
-
<tr
|
|
4086
|
-
class="notSelected"
|
|
4087
|
-
>
|
|
4314
|
+
<tr>
|
|
4088
4315
|
<td>
|
|
4089
4316
|
<span
|
|
4090
4317
|
class="view forceRow column text"
|
|
@@ -4134,7 +4361,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4134
4361
|
>
|
|
4135
4362
|
<thead>
|
|
4136
4363
|
<tr
|
|
4137
|
-
class="notSelected"
|
|
4138
4364
|
data-testid="mirai-head"
|
|
4139
4365
|
>
|
|
4140
4366
|
<th
|
|
@@ -4317,7 +4543,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4317
4543
|
</thead>
|
|
4318
4544
|
<tbody>
|
|
4319
4545
|
<tr
|
|
4320
|
-
class="notSelected"
|
|
4321
4546
|
data-testid="mirai-0"
|
|
4322
4547
|
>
|
|
4323
4548
|
<td
|
|
@@ -4363,7 +4588,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4363
4588
|
</td>
|
|
4364
4589
|
</tr>
|
|
4365
4590
|
<tr
|
|
4366
|
-
class="notSelected"
|
|
4367
4591
|
data-testid="mirai-1"
|
|
4368
4592
|
>
|
|
4369
4593
|
<td
|
|
@@ -4409,7 +4633,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4409
4633
|
</td>
|
|
4410
4634
|
</tr>
|
|
4411
4635
|
<tr
|
|
4412
|
-
class="notSelected"
|
|
4413
4636
|
data-testid="mirai-2"
|
|
4414
4637
|
>
|
|
4415
4638
|
<td
|
|
@@ -4455,7 +4678,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4455
4678
|
</td>
|
|
4456
4679
|
</tr>
|
|
4457
4680
|
<tr
|
|
4458
|
-
class="notSelected"
|
|
4459
4681
|
data-testid="mirai-3"
|
|
4460
4682
|
>
|
|
4461
4683
|
<td
|
|
@@ -4505,7 +4727,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4505
4727
|
</td>
|
|
4506
4728
|
</tr>
|
|
4507
4729
|
<tr
|
|
4508
|
-
class="notSelected"
|
|
4509
4730
|
data-testid="mirai-4"
|
|
4510
4731
|
>
|
|
4511
4732
|
<td
|
|
@@ -4553,7 +4774,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4553
4774
|
</td>
|
|
4554
4775
|
</tr>
|
|
4555
4776
|
<tr
|
|
4556
|
-
class="notSelected"
|
|
4557
4777
|
data-testid="mirai-5"
|
|
4558
4778
|
>
|
|
4559
4779
|
<td
|
|
@@ -4599,7 +4819,6 @@ exports[`component:<Table> testId 1`] = `
|
|
|
4599
4819
|
</td>
|
|
4600
4820
|
</tr>
|
|
4601
4821
|
<tr
|
|
4602
|
-
class="notSelected"
|
|
4603
4822
|
data-testid="mirai-6"
|
|
4604
4823
|
>
|
|
4605
4824
|
<td
|