@kitnai/chat 0.6.0 → 0.7.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/dist/custom-elements.json +125 -73
- package/dist/kitn-chat.es.js +1 -1
- package/dist/llms/llms-full.txt +24 -24
- package/frameworks/react/index.tsx +46 -24
- package/llms-full.txt +24 -24
- package/package.json +1 -1
- package/src/elements/chat-workspace.tsx +28 -2
- package/src/elements/chat.tsx +22 -1
- package/src/elements/compiled.css +1 -1
- package/src/elements/conversation-list.tsx +10 -1
- package/src/elements/element-meta.json +2003 -0
- package/src/elements/kitn-attachments.stories.tsx +9 -0
- package/src/elements/kitn-chain-of-thought.stories.tsx +9 -0
- package/src/elements/kitn-chat-scope-picker.stories.tsx +9 -0
- package/src/elements/kitn-chat-workspace.stories.tsx +64 -14
- package/src/elements/kitn-chat.stories.tsx +58 -5
- package/src/elements/kitn-checkpoint.stories.tsx +9 -0
- package/src/elements/kitn-code-block.stories.tsx +9 -0
- package/src/elements/kitn-context-meter.stories.tsx +9 -0
- package/src/elements/kitn-conversation-list.stories.tsx +31 -10
- package/src/elements/kitn-empty.stories.tsx +9 -0
- package/src/elements/kitn-feedback-bar.stories.tsx +9 -0
- package/src/elements/kitn-file-upload.stories.tsx +9 -0
- package/src/elements/kitn-image.stories.tsx +9 -0
- package/src/elements/kitn-loader.stories.tsx +9 -0
- package/src/elements/kitn-markdown.stories.tsx +9 -0
- package/src/elements/kitn-message-skills.stories.tsx +9 -0
- package/src/elements/kitn-message.stories.tsx +9 -0
- package/src/elements/kitn-model-switcher.stories.tsx +9 -0
- package/src/elements/kitn-prompt-input.stories.tsx +35 -5
- package/src/elements/kitn-prompt-suggestions.stories.tsx +9 -0
- package/src/elements/kitn-reasoning.stories.tsx +9 -0
- package/src/elements/kitn-response-stream.stories.tsx +9 -0
- package/src/elements/kitn-source-list.stories.tsx +9 -0
- package/src/elements/kitn-source.stories.tsx +9 -0
- package/src/elements/kitn-text-shimmer.stories.tsx +9 -0
- package/src/elements/kitn-thinking-bar.stories.tsx +9 -0
- package/src/elements/kitn-tool.stories.tsx +9 -0
- package/src/elements/kitn-voice-input.stories.tsx +9 -0
- package/src/elements/prompt-input.tsx +2 -2
- package/src/stories/docs/element-controls.ts +28 -0
- package/src/stories/docs/element-spec.tsx +86 -0
|
@@ -125,7 +125,8 @@
|
|
|
125
125
|
},
|
|
126
126
|
"description": "A remove button was clicked."
|
|
127
127
|
}
|
|
128
|
-
]
|
|
128
|
+
],
|
|
129
|
+
"cssProperties": []
|
|
129
130
|
},
|
|
130
131
|
{
|
|
131
132
|
"kind": "class",
|
|
@@ -153,7 +154,8 @@
|
|
|
153
154
|
"description": "Color mode (auto follows prefers-color-scheme)."
|
|
154
155
|
}
|
|
155
156
|
],
|
|
156
|
-
"events": []
|
|
157
|
+
"events": [],
|
|
158
|
+
"cssProperties": []
|
|
157
159
|
},
|
|
158
160
|
{
|
|
159
161
|
"kind": "class",
|
|
@@ -451,60 +453,61 @@
|
|
|
451
453
|
{
|
|
452
454
|
"name": "messageaction",
|
|
453
455
|
"type": {
|
|
454
|
-
"text": "CustomEvent<
|
|
456
|
+
"text": "CustomEvent<{ messageId: string; action: \"copy\" | \"like\" | \"dislike\" | \"regenerate\" | \"edit\" }>"
|
|
455
457
|
},
|
|
456
|
-
"description": ""
|
|
458
|
+
"description": "An action button on a message was clicked."
|
|
457
459
|
},
|
|
458
460
|
{
|
|
459
461
|
"name": "modelchange",
|
|
460
462
|
"type": {
|
|
461
|
-
"text": "CustomEvent<
|
|
463
|
+
"text": "CustomEvent<{ modelId: string }>"
|
|
462
464
|
},
|
|
463
|
-
"description": ""
|
|
465
|
+
"description": "The header model switcher changed."
|
|
464
466
|
},
|
|
465
467
|
{
|
|
466
468
|
"name": "search",
|
|
467
469
|
"type": {
|
|
468
|
-
"text": "CustomEvent<
|
|
470
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
469
471
|
},
|
|
470
|
-
"description": ""
|
|
472
|
+
"description": "The Search button was clicked."
|
|
471
473
|
},
|
|
472
474
|
{
|
|
473
475
|
"name": "slashselect",
|
|
474
476
|
"type": {
|
|
475
|
-
"text": "CustomEvent<
|
|
477
|
+
"text": "CustomEvent<{ command: { id: string; label: string; description?: undefined | string; category?: undefined | string } }>"
|
|
476
478
|
},
|
|
477
|
-
"description": ""
|
|
479
|
+
"description": "A slash command was chosen from the palette."
|
|
478
480
|
},
|
|
479
481
|
{
|
|
480
482
|
"name": "submit",
|
|
481
483
|
"type": {
|
|
482
|
-
"text": "CustomEvent<
|
|
484
|
+
"text": "CustomEvent<{ value: string; attachments: { id: string; type: \"file\" | \"source-document\"; filename?: undefined | string; mediaType?: undefined | string; url?: undefined | string; title?: undefined | string }[] }>"
|
|
483
485
|
},
|
|
484
|
-
"description": ""
|
|
486
|
+
"description": "User submitted a message."
|
|
485
487
|
},
|
|
486
488
|
{
|
|
487
489
|
"name": "suggestionclick",
|
|
488
490
|
"type": {
|
|
489
|
-
"text": "CustomEvent<
|
|
491
|
+
"text": "CustomEvent<{ value: string }>"
|
|
490
492
|
},
|
|
491
|
-
"description": ""
|
|
493
|
+
"description": "A suggestion chip was clicked (only in `suggestion-mode=\"fill\"`)."
|
|
492
494
|
},
|
|
493
495
|
{
|
|
494
496
|
"name": "valuechange",
|
|
495
497
|
"type": {
|
|
496
|
-
"text": "CustomEvent<
|
|
498
|
+
"text": "CustomEvent<{ value: string }>"
|
|
497
499
|
},
|
|
498
|
-
"description": ""
|
|
500
|
+
"description": "Fired on every input change."
|
|
499
501
|
},
|
|
500
502
|
{
|
|
501
503
|
"name": "voice",
|
|
502
504
|
"type": {
|
|
503
|
-
"text": "CustomEvent<
|
|
505
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
504
506
|
},
|
|
505
|
-
"description": ""
|
|
507
|
+
"description": "The Mic / voice button was clicked."
|
|
506
508
|
}
|
|
507
|
-
]
|
|
509
|
+
],
|
|
510
|
+
"cssProperties": []
|
|
508
511
|
},
|
|
509
512
|
{
|
|
510
513
|
"kind": "class",
|
|
@@ -566,7 +569,8 @@
|
|
|
566
569
|
},
|
|
567
570
|
"description": "A scope was chosen (`undefined` filters = \"All Content\")."
|
|
568
571
|
}
|
|
569
|
-
]
|
|
572
|
+
],
|
|
573
|
+
"cssProperties": []
|
|
570
574
|
},
|
|
571
575
|
{
|
|
572
576
|
"kind": "class",
|
|
@@ -967,81 +971,82 @@
|
|
|
967
971
|
{
|
|
968
972
|
"name": "conversationselect",
|
|
969
973
|
"type": {
|
|
970
|
-
"text": "CustomEvent<
|
|
974
|
+
"text": "CustomEvent<{ id: string }>"
|
|
971
975
|
},
|
|
972
|
-
"description": ""
|
|
976
|
+
"description": "A conversation was selected in the sidebar."
|
|
973
977
|
},
|
|
974
978
|
{
|
|
975
979
|
"name": "messageaction",
|
|
976
980
|
"type": {
|
|
977
|
-
"text": "CustomEvent<
|
|
981
|
+
"text": "CustomEvent<{ messageId: string; action: \"copy\" | \"like\" | \"dislike\" | \"regenerate\" | \"edit\" }>"
|
|
978
982
|
},
|
|
979
|
-
"description": ""
|
|
983
|
+
"description": "An action button on a message was clicked."
|
|
980
984
|
},
|
|
981
985
|
{
|
|
982
986
|
"name": "modelchange",
|
|
983
987
|
"type": {
|
|
984
|
-
"text": "CustomEvent<
|
|
988
|
+
"text": "CustomEvent<{ modelId: string }>"
|
|
985
989
|
},
|
|
986
|
-
"description": ""
|
|
990
|
+
"description": "The header model switcher changed."
|
|
987
991
|
},
|
|
988
992
|
{
|
|
989
993
|
"name": "newchat",
|
|
990
994
|
"type": {
|
|
991
|
-
"text": "CustomEvent<
|
|
995
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
992
996
|
},
|
|
993
|
-
"description": ""
|
|
997
|
+
"description": "The \"New chat\" button was clicked."
|
|
994
998
|
},
|
|
995
999
|
{
|
|
996
1000
|
"name": "search",
|
|
997
1001
|
"type": {
|
|
998
|
-
"text": "CustomEvent<
|
|
1002
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
999
1003
|
},
|
|
1000
|
-
"description": ""
|
|
1004
|
+
"description": "The Search button was clicked."
|
|
1001
1005
|
},
|
|
1002
1006
|
{
|
|
1003
1007
|
"name": "sidebartoggle",
|
|
1004
1008
|
"type": {
|
|
1005
|
-
"text": "CustomEvent<
|
|
1009
|
+
"text": "CustomEvent<{ collapsed: false | true }>"
|
|
1006
1010
|
},
|
|
1007
|
-
"description": ""
|
|
1011
|
+
"description": "The sidebar was collapsed or expanded."
|
|
1008
1012
|
},
|
|
1009
1013
|
{
|
|
1010
1014
|
"name": "slashselect",
|
|
1011
1015
|
"type": {
|
|
1012
|
-
"text": "CustomEvent<
|
|
1016
|
+
"text": "CustomEvent<{ command: { id: string; label: string; description?: undefined | string; category?: undefined | string } }>"
|
|
1013
1017
|
},
|
|
1014
|
-
"description": ""
|
|
1018
|
+
"description": "A slash command was chosen from the palette."
|
|
1015
1019
|
},
|
|
1016
1020
|
{
|
|
1017
1021
|
"name": "submit",
|
|
1018
1022
|
"type": {
|
|
1019
|
-
"text": "CustomEvent<
|
|
1023
|
+
"text": "CustomEvent<{ value: string; attachments: { id: string; type: \"file\" | \"source-document\"; filename?: undefined | string; mediaType?: undefined | string; url?: undefined | string; title?: undefined | string }[] }>"
|
|
1020
1024
|
},
|
|
1021
|
-
"description": ""
|
|
1025
|
+
"description": "User submitted a message."
|
|
1022
1026
|
},
|
|
1023
1027
|
{
|
|
1024
1028
|
"name": "suggestionclick",
|
|
1025
1029
|
"type": {
|
|
1026
|
-
"text": "CustomEvent<
|
|
1030
|
+
"text": "CustomEvent<{ value: string }>"
|
|
1027
1031
|
},
|
|
1028
|
-
"description": ""
|
|
1032
|
+
"description": "A suggestion chip was clicked (only in `suggestion-mode=\"fill\"`)."
|
|
1029
1033
|
},
|
|
1030
1034
|
{
|
|
1031
1035
|
"name": "valuechange",
|
|
1032
1036
|
"type": {
|
|
1033
|
-
"text": "CustomEvent<
|
|
1037
|
+
"text": "CustomEvent<{ value: string }>"
|
|
1034
1038
|
},
|
|
1035
|
-
"description": ""
|
|
1039
|
+
"description": "Fired on every input change."
|
|
1036
1040
|
},
|
|
1037
1041
|
{
|
|
1038
1042
|
"name": "voice",
|
|
1039
1043
|
"type": {
|
|
1040
|
-
"text": "CustomEvent<
|
|
1044
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
1041
1045
|
},
|
|
1042
|
-
"description": ""
|
|
1046
|
+
"description": "The Mic / voice button was clicked."
|
|
1043
1047
|
}
|
|
1044
|
-
]
|
|
1048
|
+
],
|
|
1049
|
+
"cssProperties": []
|
|
1045
1050
|
},
|
|
1046
1051
|
{
|
|
1047
1052
|
"kind": "class",
|
|
@@ -1136,7 +1141,8 @@
|
|
|
1136
1141
|
},
|
|
1137
1142
|
"description": "The checkpoint was clicked."
|
|
1138
1143
|
}
|
|
1139
|
-
]
|
|
1144
|
+
],
|
|
1145
|
+
"cssProperties": []
|
|
1140
1146
|
},
|
|
1141
1147
|
{
|
|
1142
1148
|
"kind": "class",
|
|
@@ -1240,7 +1246,12 @@
|
|
|
1240
1246
|
"description": "Code text sizing."
|
|
1241
1247
|
}
|
|
1242
1248
|
],
|
|
1243
|
-
"events": []
|
|
1249
|
+
"events": [],
|
|
1250
|
+
"cssProperties": [
|
|
1251
|
+
{
|
|
1252
|
+
"name": "--color-code-foreground"
|
|
1253
|
+
}
|
|
1254
|
+
]
|
|
1244
1255
|
},
|
|
1245
1256
|
{
|
|
1246
1257
|
"kind": "class",
|
|
@@ -1268,7 +1279,8 @@
|
|
|
1268
1279
|
"description": "Color mode (auto follows prefers-color-scheme)."
|
|
1269
1280
|
}
|
|
1270
1281
|
],
|
|
1271
|
-
"events": []
|
|
1282
|
+
"events": [],
|
|
1283
|
+
"cssProperties": []
|
|
1272
1284
|
},
|
|
1273
1285
|
{
|
|
1274
1286
|
"kind": "class",
|
|
@@ -1326,23 +1338,31 @@
|
|
|
1326
1338
|
{
|
|
1327
1339
|
"name": "newchat",
|
|
1328
1340
|
"type": {
|
|
1329
|
-
"text": "CustomEvent<
|
|
1341
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
1330
1342
|
},
|
|
1331
|
-
"description": ""
|
|
1343
|
+
"description": "The \"New chat\" button was clicked."
|
|
1332
1344
|
},
|
|
1333
1345
|
{
|
|
1334
1346
|
"name": "select",
|
|
1335
1347
|
"type": {
|
|
1336
|
-
"text": "CustomEvent<
|
|
1348
|
+
"text": "CustomEvent<{ id: string }>"
|
|
1337
1349
|
},
|
|
1338
|
-
"description": ""
|
|
1350
|
+
"description": "A conversation was selected."
|
|
1339
1351
|
},
|
|
1340
1352
|
{
|
|
1341
1353
|
"name": "togglesidebar",
|
|
1342
1354
|
"type": {
|
|
1343
|
-
"text": "CustomEvent<
|
|
1355
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
1344
1356
|
},
|
|
1345
|
-
"description": ""
|
|
1357
|
+
"description": "The sidebar toggle was clicked."
|
|
1358
|
+
}
|
|
1359
|
+
],
|
|
1360
|
+
"cssProperties": [
|
|
1361
|
+
{
|
|
1362
|
+
"name": "--color-sidebar"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"name": "--color-scrollbar-thumb"
|
|
1346
1366
|
}
|
|
1347
1367
|
]
|
|
1348
1368
|
},
|
|
@@ -1397,7 +1417,8 @@
|
|
|
1397
1417
|
"description": "Description text."
|
|
1398
1418
|
}
|
|
1399
1419
|
],
|
|
1400
|
-
"events": []
|
|
1420
|
+
"events": [],
|
|
1421
|
+
"cssProperties": []
|
|
1401
1422
|
},
|
|
1402
1423
|
{
|
|
1403
1424
|
"kind": "class",
|
|
@@ -1455,7 +1476,8 @@
|
|
|
1455
1476
|
},
|
|
1456
1477
|
"description": "The user clicked thumbs-down."
|
|
1457
1478
|
}
|
|
1458
|
-
]
|
|
1479
|
+
],
|
|
1480
|
+
"cssProperties": []
|
|
1459
1481
|
},
|
|
1460
1482
|
{
|
|
1461
1483
|
"kind": "class",
|
|
@@ -1550,7 +1572,8 @@
|
|
|
1550
1572
|
},
|
|
1551
1573
|
"description": "Files were picked or dropped."
|
|
1552
1574
|
}
|
|
1553
|
-
]
|
|
1575
|
+
],
|
|
1576
|
+
"cssProperties": []
|
|
1554
1577
|
},
|
|
1555
1578
|
{
|
|
1556
1579
|
"kind": "class",
|
|
@@ -1629,7 +1652,8 @@
|
|
|
1629
1652
|
"description": "MIME type (default `image/png`)."
|
|
1630
1653
|
}
|
|
1631
1654
|
],
|
|
1632
|
-
"events": []
|
|
1655
|
+
"events": [],
|
|
1656
|
+
"cssProperties": []
|
|
1633
1657
|
},
|
|
1634
1658
|
{
|
|
1635
1659
|
"kind": "class",
|
|
@@ -1699,7 +1723,8 @@
|
|
|
1699
1723
|
"description": "Label for the text-based variants."
|
|
1700
1724
|
}
|
|
1701
1725
|
],
|
|
1702
|
-
"events": []
|
|
1726
|
+
"events": [],
|
|
1727
|
+
"cssProperties": []
|
|
1703
1728
|
},
|
|
1704
1729
|
{
|
|
1705
1730
|
"kind": "class",
|
|
@@ -1786,7 +1811,8 @@
|
|
|
1786
1811
|
"description": "Disable syntax highlighting (no Shiki loads)."
|
|
1787
1812
|
}
|
|
1788
1813
|
],
|
|
1789
|
-
"events": []
|
|
1814
|
+
"events": [],
|
|
1815
|
+
"cssProperties": []
|
|
1790
1816
|
},
|
|
1791
1817
|
{
|
|
1792
1818
|
"kind": "class",
|
|
@@ -1924,7 +1950,8 @@
|
|
|
1924
1950
|
},
|
|
1925
1951
|
"description": "An action button was clicked."
|
|
1926
1952
|
}
|
|
1927
|
-
]
|
|
1953
|
+
],
|
|
1954
|
+
"cssProperties": []
|
|
1928
1955
|
},
|
|
1929
1956
|
{
|
|
1930
1957
|
"kind": "class",
|
|
@@ -1952,7 +1979,8 @@
|
|
|
1952
1979
|
"description": "Color mode (auto follows prefers-color-scheme)."
|
|
1953
1980
|
}
|
|
1954
1981
|
],
|
|
1955
|
-
"events": []
|
|
1982
|
+
"events": [],
|
|
1983
|
+
"cssProperties": []
|
|
1956
1984
|
},
|
|
1957
1985
|
{
|
|
1958
1986
|
"kind": "class",
|
|
@@ -2005,7 +2033,8 @@
|
|
|
2005
2033
|
},
|
|
2006
2034
|
"description": "A model was selected."
|
|
2007
2035
|
}
|
|
2008
|
-
]
|
|
2036
|
+
],
|
|
2037
|
+
"cssProperties": []
|
|
2009
2038
|
},
|
|
2010
2039
|
{
|
|
2011
2040
|
"kind": "class",
|
|
@@ -2200,7 +2229,7 @@
|
|
|
2200
2229
|
{
|
|
2201
2230
|
"name": "search",
|
|
2202
2231
|
"type": {
|
|
2203
|
-
"text": "CustomEvent<
|
|
2232
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
2204
2233
|
},
|
|
2205
2234
|
"description": "The Search (Globe) toolbar button was clicked."
|
|
2206
2235
|
},
|
|
@@ -2235,11 +2264,12 @@
|
|
|
2235
2264
|
{
|
|
2236
2265
|
"name": "voice",
|
|
2237
2266
|
"type": {
|
|
2238
|
-
"text": "CustomEvent<
|
|
2267
|
+
"text": "CustomEvent<Record<string, never>>"
|
|
2239
2268
|
},
|
|
2240
2269
|
"description": "The Voice (Mic) toolbar button was clicked."
|
|
2241
2270
|
}
|
|
2242
|
-
]
|
|
2271
|
+
],
|
|
2272
|
+
"cssProperties": []
|
|
2243
2273
|
},
|
|
2244
2274
|
{
|
|
2245
2275
|
"kind": "class",
|
|
@@ -2343,7 +2373,8 @@
|
|
|
2343
2373
|
},
|
|
2344
2374
|
"description": "A suggestion was clicked."
|
|
2345
2375
|
}
|
|
2346
|
-
]
|
|
2376
|
+
],
|
|
2377
|
+
"cssProperties": []
|
|
2347
2378
|
},
|
|
2348
2379
|
{
|
|
2349
2380
|
"kind": "class",
|
|
@@ -2455,7 +2486,8 @@
|
|
|
2455
2486
|
},
|
|
2456
2487
|
"description": "Open state changed (via the trigger or streaming auto-open)."
|
|
2457
2488
|
}
|
|
2458
|
-
]
|
|
2489
|
+
],
|
|
2490
|
+
"cssProperties": []
|
|
2459
2491
|
},
|
|
2460
2492
|
{
|
|
2461
2493
|
"kind": "class",
|
|
@@ -2542,7 +2574,8 @@
|
|
|
2542
2574
|
},
|
|
2543
2575
|
"description": "Streaming finished."
|
|
2544
2576
|
}
|
|
2545
|
-
]
|
|
2577
|
+
],
|
|
2578
|
+
"cssProperties": []
|
|
2546
2579
|
},
|
|
2547
2580
|
{
|
|
2548
2581
|
"kind": "class",
|
|
@@ -2646,7 +2679,8 @@
|
|
|
2646
2679
|
"description": "Show the source's favicon next to the trigger label."
|
|
2647
2680
|
}
|
|
2648
2681
|
],
|
|
2649
|
-
"events": []
|
|
2682
|
+
"events": [],
|
|
2683
|
+
"cssProperties": []
|
|
2650
2684
|
},
|
|
2651
2685
|
{
|
|
2652
2686
|
"kind": "class",
|
|
@@ -2691,7 +2725,8 @@
|
|
|
2691
2725
|
"description": "Show favicons on all items (per-item `showFavicon` overrides)."
|
|
2692
2726
|
}
|
|
2693
2727
|
],
|
|
2694
|
-
"events": []
|
|
2728
|
+
"events": [],
|
|
2729
|
+
"cssProperties": []
|
|
2695
2730
|
},
|
|
2696
2731
|
{
|
|
2697
2732
|
"kind": "class",
|
|
@@ -2778,7 +2813,8 @@
|
|
|
2778
2813
|
"description": "Gradient spread (5–45)."
|
|
2779
2814
|
}
|
|
2780
2815
|
],
|
|
2781
|
-
"events": []
|
|
2816
|
+
"events": [],
|
|
2817
|
+
"cssProperties": []
|
|
2782
2818
|
},
|
|
2783
2819
|
{
|
|
2784
2820
|
"kind": "class",
|
|
@@ -2856,7 +2892,8 @@
|
|
|
2856
2892
|
},
|
|
2857
2893
|
"description": "The \"stop / answer now\" affordance was clicked."
|
|
2858
2894
|
}
|
|
2859
|
-
]
|
|
2895
|
+
],
|
|
2896
|
+
"cssProperties": []
|
|
2860
2897
|
},
|
|
2861
2898
|
{
|
|
2862
2899
|
"kind": "class",
|
|
@@ -2901,7 +2938,21 @@
|
|
|
2901
2938
|
"description": "Start expanded."
|
|
2902
2939
|
}
|
|
2903
2940
|
],
|
|
2904
|
-
"events": []
|
|
2941
|
+
"events": [],
|
|
2942
|
+
"cssProperties": [
|
|
2943
|
+
{
|
|
2944
|
+
"name": "--color-tool-blue"
|
|
2945
|
+
},
|
|
2946
|
+
{
|
|
2947
|
+
"name": "--color-tool-amber"
|
|
2948
|
+
},
|
|
2949
|
+
{
|
|
2950
|
+
"name": "--color-tool-green"
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
"name": "--color-tool-red"
|
|
2954
|
+
}
|
|
2955
|
+
]
|
|
2905
2956
|
},
|
|
2906
2957
|
{
|
|
2907
2958
|
"kind": "class",
|
|
@@ -2961,7 +3012,8 @@
|
|
|
2961
3012
|
},
|
|
2962
3013
|
"description": "Transcription completed (the `transcribe` property resolved)."
|
|
2963
3014
|
}
|
|
2964
|
-
]
|
|
3015
|
+
],
|
|
3016
|
+
"cssProperties": []
|
|
2965
3017
|
}
|
|
2966
3018
|
]
|
|
2967
3019
|
}
|