@carbon/ai-chat-components 0.8.0 → 0.9.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/README.md +1 -0
- package/custom-elements.json +917 -258
- package/es/components/card/src/card-footer.scss.js +1 -1
- package/es/components/card/src/card-steps.scss.js +1 -1
- package/es/components/card/src/card.scss.js +1 -1
- package/es/components/chat-button/src/chat-button.scss.js +1 -1
- package/es/components/chat-shell/index.d.ts +2 -2
- package/es/components/chat-shell/index.js +2 -2
- package/es/components/chat-shell/src/{cds-aichat-panel.d.ts → panel.d.ts} +11 -2
- package/es/components/chat-shell/src/{cds-aichat-panel.js → panel.js} +79 -26
- package/es/components/chat-shell/src/panel.js.map +1 -0
- package/es/components/chat-shell/src/panel.scss.js +13 -0
- package/es/components/chat-shell/src/panel.scss.js.map +1 -0
- package/es/components/chat-shell/src/{cds-aichat-shell.d.ts → shell.d.ts} +20 -3
- package/es/components/chat-shell/src/{cds-aichat-shell.js → shell.js} +298 -97
- package/es/components/chat-shell/src/shell.js.map +1 -0
- package/es/components/chat-shell/src/shell.scss.js +13 -0
- package/es/components/chat-shell/src/shell.scss.js.map +1 -0
- package/es/components/chat-shell/src/workspace-manager-utils.d.ts +90 -0
- package/es/components/chat-shell/src/workspace-manager-utils.js +120 -0
- package/es/components/chat-shell/src/workspace-manager-utils.js.map +1 -0
- package/es/components/chat-shell/src/workspace-manager.d.ts +52 -8
- package/es/components/chat-shell/src/workspace-manager.js +330 -117
- package/es/components/chat-shell/src/workspace-manager.js.map +1 -1
- package/es/components/code-snippet/src/code-snippet.d.ts +27 -11
- package/es/components/code-snippet/src/code-snippet.scss.js +1 -1
- package/es/components/markdown/src/markdown.js +1 -1
- package/es/components/markdown/src/markdown.js.map +1 -1
- package/es/components/toolbar/src/toolbar.d.ts +4 -0
- package/es/components/toolbar/src/toolbar.js +62 -28
- package/es/components/toolbar/src/toolbar.js.map +1 -1
- package/es/components/toolbar/src/toolbar.scss.js +1 -1
- package/es/components/workspace-shell/src/workspace-shell-footer.js +6 -1
- package/es/components/workspace-shell/src/workspace-shell-footer.js.map +1 -1
- package/es/components/workspace-shell/src/workspace-shell-footer.scss.js +1 -1
- package/es/components/workspace-shell/src/workspace-shell.d.ts +0 -1
- package/es/components/workspace-shell/src/workspace-shell.js +0 -6
- package/es/components/workspace-shell/src/workspace-shell.js.map +1 -1
- package/es/components/workspace-shell/src/workspace-shell.scss.js +1 -1
- package/es/react/chat-shell.d.ts +3 -3
- package/es/react/chat-shell.js +4 -4
- package/es/react/chat-shell.js.map +1 -1
- package/es/react/panel.d.ts +3 -3
- package/es/react/panel.js +5 -4
- package/es/react/panel.js.map +1 -1
- package/es/react/toolbar.js +1 -1
- package/es/react/toolbar.js.map +1 -1
- package/es-custom/components/card/src/card-footer.scss.js +1 -1
- package/es-custom/components/card/src/card-steps.scss.js +1 -1
- package/es-custom/components/card/src/card.scss.js +1 -1
- package/es-custom/components/chat-button/src/chat-button.scss.js +1 -1
- package/es-custom/components/chat-shell/index.d.ts +2 -2
- package/es-custom/components/chat-shell/index.js +2 -2
- package/es-custom/components/chat-shell/src/{cds-aichat-panel.d.ts → panel.d.ts} +11 -2
- package/es-custom/components/chat-shell/src/{cds-aichat-panel.js → panel.js} +79 -26
- package/es-custom/components/chat-shell/src/panel.js.map +1 -0
- package/es-custom/components/chat-shell/src/panel.scss.js +13 -0
- package/es-custom/components/chat-shell/src/panel.scss.js.map +1 -0
- package/es-custom/components/chat-shell/src/{cds-aichat-shell.d.ts → shell.d.ts} +20 -3
- package/es-custom/components/chat-shell/src/{cds-aichat-shell.js → shell.js} +298 -97
- package/es-custom/components/chat-shell/src/shell.js.map +1 -0
- package/es-custom/components/chat-shell/src/shell.scss.js +13 -0
- package/es-custom/components/chat-shell/src/shell.scss.js.map +1 -0
- package/es-custom/components/chat-shell/src/workspace-manager-utils.d.ts +90 -0
- package/es-custom/components/chat-shell/src/workspace-manager-utils.js +120 -0
- package/es-custom/components/chat-shell/src/workspace-manager-utils.js.map +1 -0
- package/es-custom/components/chat-shell/src/workspace-manager.d.ts +52 -8
- package/es-custom/components/chat-shell/src/workspace-manager.js +330 -117
- package/es-custom/components/chat-shell/src/workspace-manager.js.map +1 -1
- package/es-custom/components/code-snippet/src/code-snippet.d.ts +27 -11
- package/es-custom/components/code-snippet/src/code-snippet.scss.js +1 -1
- package/es-custom/components/markdown/src/markdown.js +1 -1
- package/es-custom/components/markdown/src/markdown.js.map +1 -1
- package/es-custom/components/toolbar/src/toolbar.d.ts +4 -0
- package/es-custom/components/toolbar/src/toolbar.js +62 -28
- package/es-custom/components/toolbar/src/toolbar.js.map +1 -1
- package/es-custom/components/toolbar/src/toolbar.scss.js +1 -1
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.js +6 -1
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.js.map +1 -1
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js +1 -1
- package/es-custom/components/workspace-shell/src/workspace-shell.d.ts +0 -1
- package/es-custom/components/workspace-shell/src/workspace-shell.js +0 -6
- package/es-custom/components/workspace-shell/src/workspace-shell.js.map +1 -1
- package/es-custom/components/workspace-shell/src/workspace-shell.scss.js +1 -1
- package/es-custom/react/chat-shell.d.ts +3 -3
- package/es-custom/react/chat-shell.js +4 -4
- package/es-custom/react/chat-shell.js.map +1 -1
- package/es-custom/react/panel.d.ts +3 -3
- package/es-custom/react/panel.js +5 -4
- package/es-custom/react/panel.js.map +1 -1
- package/es-custom/react/toolbar.js +1 -1
- package/es-custom/react/toolbar.js.map +1 -1
- package/package.json +13 -10
- package/es/components/chat-shell/src/cds-aichat-panel.js.map +0 -1
- package/es/components/chat-shell/src/cds-aichat-panel.scss.js +0 -13
- package/es/components/chat-shell/src/cds-aichat-panel.scss.js.map +0 -1
- package/es/components/chat-shell/src/cds-aichat-shell.js.map +0 -1
- package/es/components/chat-shell/src/cds-aichat-shell.scss.js +0 -13
- package/es/components/chat-shell/src/cds-aichat-shell.scss.js.map +0 -1
- package/es-custom/components/chat-shell/src/cds-aichat-panel.js.map +0 -1
- package/es-custom/components/chat-shell/src/cds-aichat-panel.scss.js +0 -13
- package/es-custom/components/chat-shell/src/cds-aichat-panel.scss.js.map +0 -1
- package/es-custom/components/chat-shell/src/cds-aichat-shell.js.map +0 -1
- package/es-custom/components/chat-shell/src/cds-aichat-shell.scss.js +0 -13
- package/es-custom/components/chat-shell/src/cds-aichat-shell.scss.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
"declarations": [
|
|
245
245
|
{
|
|
246
246
|
"kind": "variable",
|
|
247
|
-
"name": "
|
|
247
|
+
"name": "CDSAIChatShell"
|
|
248
248
|
}
|
|
249
249
|
],
|
|
250
250
|
"exports": [
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
"kind": "js",
|
|
253
253
|
"name": "default",
|
|
254
254
|
"declaration": {
|
|
255
|
-
"name": "
|
|
255
|
+
"name": "CDSAIChatShell",
|
|
256
256
|
"module": "src/react/chat-shell.ts"
|
|
257
257
|
}
|
|
258
258
|
}
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
"declarations": [
|
|
381
381
|
{
|
|
382
382
|
"kind": "variable",
|
|
383
|
-
"name": "
|
|
383
|
+
"name": "CDSAIChatPanel"
|
|
384
384
|
}
|
|
385
385
|
],
|
|
386
386
|
"exports": [
|
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
"kind": "js",
|
|
389
389
|
"name": "default",
|
|
390
390
|
"declaration": {
|
|
391
|
-
"name": "
|
|
391
|
+
"name": "CDSAIChatPanel",
|
|
392
392
|
"module": "src/react/panel.ts"
|
|
393
393
|
}
|
|
394
394
|
}
|
|
@@ -2244,12 +2244,162 @@
|
|
|
2244
2244
|
},
|
|
2245
2245
|
{
|
|
2246
2246
|
"kind": "javascript-module",
|
|
2247
|
-
"path": "src/components/chat-shell/src/
|
|
2247
|
+
"path": "src/components/chat-shell/src/panel-manager.ts",
|
|
2248
|
+
"declarations": [
|
|
2249
|
+
{
|
|
2250
|
+
"kind": "class",
|
|
2251
|
+
"description": "",
|
|
2252
|
+
"name": "PanelManager",
|
|
2253
|
+
"members": [
|
|
2254
|
+
{
|
|
2255
|
+
"kind": "field",
|
|
2256
|
+
"name": "panelObservers",
|
|
2257
|
+
"privacy": "private",
|
|
2258
|
+
"default": "new Map<HTMLElement, MutationObserver>()"
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"kind": "field",
|
|
2262
|
+
"name": "slotElements",
|
|
2263
|
+
"type": {
|
|
2264
|
+
"text": "HTMLElement[]"
|
|
2265
|
+
},
|
|
2266
|
+
"privacy": "private",
|
|
2267
|
+
"default": "[]"
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"kind": "method",
|
|
2271
|
+
"name": "connect"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
"kind": "method",
|
|
2275
|
+
"name": "disconnect"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"kind": "method",
|
|
2279
|
+
"name": "refresh"
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"kind": "field",
|
|
2283
|
+
"name": "onSlotChange",
|
|
2284
|
+
"privacy": "private"
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"kind": "method",
|
|
2288
|
+
"name": "observeAssignedPanels",
|
|
2289
|
+
"privacy": "private"
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
"kind": "method",
|
|
2293
|
+
"name": "stopObservingPanels",
|
|
2294
|
+
"privacy": "private"
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
"kind": "field",
|
|
2298
|
+
"name": "onPanelMutation",
|
|
2299
|
+
"privacy": "private"
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"kind": "method",
|
|
2303
|
+
"name": "updateState",
|
|
2304
|
+
"privacy": "private"
|
|
2305
|
+
},
|
|
2306
|
+
{
|
|
2307
|
+
"kind": "method",
|
|
2308
|
+
"name": "getAssignedPanelElements",
|
|
2309
|
+
"privacy": "private",
|
|
2310
|
+
"return": {
|
|
2311
|
+
"type": {
|
|
2312
|
+
"text": "HTMLElement[]"
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"kind": "method",
|
|
2318
|
+
"name": "getPanelStates",
|
|
2319
|
+
"privacy": "private",
|
|
2320
|
+
"return": {
|
|
2321
|
+
"type": {
|
|
2322
|
+
"text": "PanelState[]"
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"kind": "method",
|
|
2328
|
+
"name": "pickActivePanel",
|
|
2329
|
+
"privacy": "private",
|
|
2330
|
+
"return": {
|
|
2331
|
+
"type": {
|
|
2332
|
+
"text": "PanelState | undefined"
|
|
2333
|
+
}
|
|
2334
|
+
},
|
|
2335
|
+
"parameters": [
|
|
2336
|
+
{
|
|
2337
|
+
"name": "panels",
|
|
2338
|
+
"type": {
|
|
2339
|
+
"text": "PanelState[]"
|
|
2340
|
+
}
|
|
2341
|
+
}
|
|
2342
|
+
]
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"kind": "method",
|
|
2346
|
+
"name": "setInert",
|
|
2347
|
+
"privacy": "private",
|
|
2348
|
+
"parameters": [
|
|
2349
|
+
{
|
|
2350
|
+
"name": "target",
|
|
2351
|
+
"type": {
|
|
2352
|
+
"text": "HTMLElement | undefined"
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"name": "value",
|
|
2357
|
+
"type": {
|
|
2358
|
+
"text": "boolean"
|
|
2359
|
+
}
|
|
2360
|
+
}
|
|
2361
|
+
]
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"kind": "method",
|
|
2365
|
+
"name": "isPanelAnimating",
|
|
2366
|
+
"privacy": "private",
|
|
2367
|
+
"parameters": [
|
|
2368
|
+
{
|
|
2369
|
+
"name": "panelElement",
|
|
2370
|
+
"type": {
|
|
2371
|
+
"text": "HTMLElement"
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2374
|
+
]
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"kind": "method",
|
|
2378
|
+
"name": "syncSlotElements",
|
|
2379
|
+
"privacy": "private"
|
|
2380
|
+
}
|
|
2381
|
+
]
|
|
2382
|
+
}
|
|
2383
|
+
],
|
|
2384
|
+
"exports": [
|
|
2385
|
+
{
|
|
2386
|
+
"kind": "js",
|
|
2387
|
+
"name": "PanelManager",
|
|
2388
|
+
"declaration": {
|
|
2389
|
+
"name": "PanelManager",
|
|
2390
|
+
"module": "src/components/chat-shell/src/panel-manager.ts"
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
]
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"kind": "javascript-module",
|
|
2397
|
+
"path": "src/components/chat-shell/src/panel.ts",
|
|
2248
2398
|
"declarations": [
|
|
2249
2399
|
{
|
|
2250
2400
|
"kind": "class",
|
|
2251
2401
|
"description": "",
|
|
2252
|
-
"name": "
|
|
2402
|
+
"name": "CDSAIChatPanel",
|
|
2253
2403
|
"members": [
|
|
2254
2404
|
{
|
|
2255
2405
|
"kind": "field",
|
|
@@ -2306,6 +2456,28 @@
|
|
|
2306
2456
|
"attribute": "show-frame",
|
|
2307
2457
|
"reflects": true
|
|
2308
2458
|
},
|
|
2459
|
+
{
|
|
2460
|
+
"kind": "field",
|
|
2461
|
+
"name": "aiEnabled",
|
|
2462
|
+
"type": {
|
|
2463
|
+
"text": "boolean"
|
|
2464
|
+
},
|
|
2465
|
+
"default": "false",
|
|
2466
|
+
"description": "Shows the AI gradient background",
|
|
2467
|
+
"attribute": "ai-enabled",
|
|
2468
|
+
"reflects": true
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
"kind": "field",
|
|
2472
|
+
"name": "bodyNoPadding",
|
|
2473
|
+
"type": {
|
|
2474
|
+
"text": "boolean"
|
|
2475
|
+
},
|
|
2476
|
+
"default": "false",
|
|
2477
|
+
"description": "Removes padding from the panel body",
|
|
2478
|
+
"attribute": "body-no-padding",
|
|
2479
|
+
"reflects": true
|
|
2480
|
+
},
|
|
2309
2481
|
{
|
|
2310
2482
|
"kind": "field",
|
|
2311
2483
|
"name": "animationOnOpen",
|
|
@@ -2473,6 +2645,11 @@
|
|
|
2473
2645
|
"kind": "method",
|
|
2474
2646
|
"name": "observeSlotContent",
|
|
2475
2647
|
"privacy": "private"
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"kind": "field",
|
|
2651
|
+
"name": "handleBodyScroll",
|
|
2652
|
+
"privacy": "private"
|
|
2476
2653
|
}
|
|
2477
2654
|
],
|
|
2478
2655
|
"events": [
|
|
@@ -2547,6 +2724,24 @@
|
|
|
2547
2724
|
"description": "Shows a frame border around the panel",
|
|
2548
2725
|
"fieldName": "showFrame"
|
|
2549
2726
|
},
|
|
2727
|
+
{
|
|
2728
|
+
"name": "ai-enabled",
|
|
2729
|
+
"type": {
|
|
2730
|
+
"text": "boolean"
|
|
2731
|
+
},
|
|
2732
|
+
"default": "false",
|
|
2733
|
+
"description": "Shows the AI gradient background",
|
|
2734
|
+
"fieldName": "aiEnabled"
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"name": "body-no-padding",
|
|
2738
|
+
"type": {
|
|
2739
|
+
"text": "boolean"
|
|
2740
|
+
},
|
|
2741
|
+
"default": "false",
|
|
2742
|
+
"description": "Removes padding from the panel body",
|
|
2743
|
+
"fieldName": "bodyNoPadding"
|
|
2744
|
+
},
|
|
2550
2745
|
{
|
|
2551
2746
|
"name": "animation-on-open",
|
|
2552
2747
|
"type": {
|
|
@@ -2586,20 +2781,20 @@
|
|
|
2586
2781
|
"kind": "js",
|
|
2587
2782
|
"name": "default",
|
|
2588
2783
|
"declaration": {
|
|
2589
|
-
"name": "
|
|
2590
|
-
"module": "src/components/chat-shell/src/
|
|
2784
|
+
"name": "CDSAIChatPanel",
|
|
2785
|
+
"module": "src/components/chat-shell/src/panel.ts"
|
|
2591
2786
|
}
|
|
2592
2787
|
}
|
|
2593
2788
|
]
|
|
2594
2789
|
},
|
|
2595
2790
|
{
|
|
2596
2791
|
"kind": "javascript-module",
|
|
2597
|
-
"path": "src/components/chat-shell/src/
|
|
2792
|
+
"path": "src/components/chat-shell/src/shell.ts",
|
|
2598
2793
|
"declarations": [
|
|
2599
2794
|
{
|
|
2600
2795
|
"kind": "class",
|
|
2601
2796
|
"description": "",
|
|
2602
|
-
"name": "
|
|
2797
|
+
"name": "CDSAIChatShell",
|
|
2603
2798
|
"members": [
|
|
2604
2799
|
{
|
|
2605
2800
|
"kind": "field",
|
|
@@ -2678,6 +2873,36 @@
|
|
|
2678
2873
|
"attribute": "history-location",
|
|
2679
2874
|
"reflects": true
|
|
2680
2875
|
},
|
|
2876
|
+
{
|
|
2877
|
+
"kind": "field",
|
|
2878
|
+
"name": "workspaceAriaLabel",
|
|
2879
|
+
"type": {
|
|
2880
|
+
"text": "string"
|
|
2881
|
+
},
|
|
2882
|
+
"default": "\"Workspace panel\"",
|
|
2883
|
+
"description": "ARIA label for the workspace region",
|
|
2884
|
+
"attribute": "workspace-aria-label"
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
"kind": "field",
|
|
2888
|
+
"name": "historyAriaLabel",
|
|
2889
|
+
"type": {
|
|
2890
|
+
"text": "string"
|
|
2891
|
+
},
|
|
2892
|
+
"default": "\"Conversation history\"",
|
|
2893
|
+
"description": "ARIA label for the history region",
|
|
2894
|
+
"attribute": "history-aria-label"
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
"kind": "field",
|
|
2898
|
+
"name": "messagesAriaLabel",
|
|
2899
|
+
"type": {
|
|
2900
|
+
"text": "string"
|
|
2901
|
+
},
|
|
2902
|
+
"default": "\"Chat messages\"",
|
|
2903
|
+
"description": "ARIA label for the messages region",
|
|
2904
|
+
"attribute": "messages-aria-label"
|
|
2905
|
+
},
|
|
2681
2906
|
{
|
|
2682
2907
|
"kind": "method",
|
|
2683
2908
|
"name": "getWidgetClasses",
|
|
@@ -2801,6 +3026,24 @@
|
|
|
2801
3026
|
}
|
|
2802
3027
|
]
|
|
2803
3028
|
},
|
|
3029
|
+
{
|
|
3030
|
+
"kind": "method",
|
|
3031
|
+
"name": "hasElementContent",
|
|
3032
|
+
"privacy": "private",
|
|
3033
|
+
"return": {
|
|
3034
|
+
"type": {
|
|
3035
|
+
"text": "boolean"
|
|
3036
|
+
}
|
|
3037
|
+
},
|
|
3038
|
+
"parameters": [
|
|
3039
|
+
{
|
|
3040
|
+
"name": "element",
|
|
3041
|
+
"type": {
|
|
3042
|
+
"text": "Element"
|
|
3043
|
+
}
|
|
3044
|
+
}
|
|
3045
|
+
]
|
|
3046
|
+
},
|
|
2804
3047
|
{
|
|
2805
3048
|
"kind": "method",
|
|
2806
3049
|
"name": "observeSlotContent",
|
|
@@ -2876,6 +3119,41 @@
|
|
|
2876
3119
|
}
|
|
2877
3120
|
},
|
|
2878
3121
|
"description": "Check if --cds-aichat-messages-max-width has changed and trigger recalculation."
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"kind": "method",
|
|
3125
|
+
"name": "syncWorkspacePanelState",
|
|
3126
|
+
"privacy": "private",
|
|
3127
|
+
"return": {
|
|
3128
|
+
"type": {
|
|
3129
|
+
"text": "void"
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
"kind": "method",
|
|
3135
|
+
"name": "scheduleWorkspacePanelOpen",
|
|
3136
|
+
"privacy": "private",
|
|
3137
|
+
"return": {
|
|
3138
|
+
"type": {
|
|
3139
|
+
"text": "void"
|
|
3140
|
+
}
|
|
3141
|
+
}
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"kind": "method",
|
|
3145
|
+
"name": "cancelWorkspacePanelOpenSchedule",
|
|
3146
|
+
"privacy": "private",
|
|
3147
|
+
"return": {
|
|
3148
|
+
"type": {
|
|
3149
|
+
"text": "void"
|
|
3150
|
+
}
|
|
3151
|
+
}
|
|
3152
|
+
},
|
|
3153
|
+
{
|
|
3154
|
+
"kind": "field",
|
|
3155
|
+
"name": "handleWorkspacePanelCloseEnd",
|
|
3156
|
+
"privacy": "private"
|
|
2879
3157
|
}
|
|
2880
3158
|
],
|
|
2881
3159
|
"attributes": [
|
|
@@ -2941,11 +3219,38 @@
|
|
|
2941
3219
|
"default": "\"start\"",
|
|
2942
3220
|
"description": "Determines the location of the history panel (\"start\" or \"end\")",
|
|
2943
3221
|
"fieldName": "historyLocation"
|
|
2944
|
-
}
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"name": "workspace-aria-label",
|
|
3225
|
+
"type": {
|
|
3226
|
+
"text": "string"
|
|
3227
|
+
},
|
|
3228
|
+
"default": "\"Workspace panel\"",
|
|
3229
|
+
"description": "ARIA label for the workspace region",
|
|
3230
|
+
"fieldName": "workspaceAriaLabel"
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
"name": "history-aria-label",
|
|
3234
|
+
"type": {
|
|
3235
|
+
"text": "string"
|
|
3236
|
+
},
|
|
3237
|
+
"default": "\"Conversation history\"",
|
|
3238
|
+
"description": "ARIA label for the history region",
|
|
3239
|
+
"fieldName": "historyAriaLabel"
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"name": "messages-aria-label",
|
|
3243
|
+
"type": {
|
|
3244
|
+
"text": "string"
|
|
3245
|
+
},
|
|
3246
|
+
"default": "\"Chat messages\"",
|
|
3247
|
+
"description": "ARIA label for the messages region",
|
|
3248
|
+
"fieldName": "messagesAriaLabel"
|
|
3249
|
+
}
|
|
3250
|
+
],
|
|
3251
|
+
"superclass": {
|
|
3252
|
+
"name": "LitElement",
|
|
3253
|
+
"package": "lit"
|
|
2949
3254
|
},
|
|
2950
3255
|
"tagName": "cds-aichat-shell",
|
|
2951
3256
|
"customElement": true
|
|
@@ -2956,158 +3261,305 @@
|
|
|
2956
3261
|
"kind": "js",
|
|
2957
3262
|
"name": "default",
|
|
2958
3263
|
"declaration": {
|
|
2959
|
-
"name": "
|
|
2960
|
-
"module": "src/components/chat-shell/src/
|
|
3264
|
+
"name": "CDSAIChatShell",
|
|
3265
|
+
"module": "src/components/chat-shell/src/shell.ts"
|
|
2961
3266
|
}
|
|
2962
3267
|
}
|
|
2963
3268
|
]
|
|
2964
3269
|
},
|
|
2965
3270
|
{
|
|
2966
3271
|
"kind": "javascript-module",
|
|
2967
|
-
"path": "src/components/chat-shell/src/
|
|
3272
|
+
"path": "src/components/chat-shell/src/workspace-manager-utils.ts",
|
|
2968
3273
|
"declarations": [
|
|
2969
3274
|
{
|
|
2970
|
-
"kind": "
|
|
2971
|
-
"
|
|
2972
|
-
"
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
"default": "new Map<HTMLElement, MutationObserver>()"
|
|
2979
|
-
},
|
|
3275
|
+
"kind": "function",
|
|
3276
|
+
"name": "calculateRequiredWidth",
|
|
3277
|
+
"return": {
|
|
3278
|
+
"type": {
|
|
3279
|
+
"text": ""
|
|
3280
|
+
}
|
|
3281
|
+
},
|
|
3282
|
+
"parameters": [
|
|
2980
3283
|
{
|
|
2981
|
-
"
|
|
2982
|
-
"name": "slotElements",
|
|
3284
|
+
"name": "dimensions",
|
|
2983
3285
|
"type": {
|
|
2984
|
-
"text": "
|
|
3286
|
+
"text": "{\n workspaceMinWidth: number;\n messagesMinWidth: number;\n historyWidth: number;\n}"
|
|
2985
3287
|
},
|
|
2986
|
-
"
|
|
2987
|
-
"default": "[]"
|
|
3288
|
+
"description": "Layout dimensions"
|
|
2988
3289
|
},
|
|
2989
3290
|
{
|
|
2990
|
-
"
|
|
2991
|
-
"name": "
|
|
3291
|
+
"description": "Minimum width for workspace area",
|
|
3292
|
+
"name": "dimensions.workspaceMinWidth"
|
|
2992
3293
|
},
|
|
2993
3294
|
{
|
|
2994
|
-
"
|
|
2995
|
-
"name": "
|
|
3295
|
+
"description": "Minimum width for messages area",
|
|
3296
|
+
"name": "dimensions.messagesMinWidth"
|
|
2996
3297
|
},
|
|
2997
3298
|
{
|
|
2998
|
-
"
|
|
2999
|
-
"name": "
|
|
3000
|
-
}
|
|
3299
|
+
"description": "Width for history panel",
|
|
3300
|
+
"name": "dimensions.historyWidth"
|
|
3301
|
+
}
|
|
3302
|
+
],
|
|
3303
|
+
"description": "Calculate the minimum width required for side-by-side layout."
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"kind": "function",
|
|
3307
|
+
"name": "hasSignificantWidthChange",
|
|
3308
|
+
"return": {
|
|
3309
|
+
"type": {
|
|
3310
|
+
"text": ""
|
|
3311
|
+
}
|
|
3312
|
+
},
|
|
3313
|
+
"parameters": [
|
|
3001
3314
|
{
|
|
3002
|
-
"
|
|
3003
|
-
"
|
|
3004
|
-
|
|
3315
|
+
"name": "current",
|
|
3316
|
+
"type": {
|
|
3317
|
+
"text": "number"
|
|
3318
|
+
},
|
|
3319
|
+
"description": "Current width value"
|
|
3005
3320
|
},
|
|
3006
3321
|
{
|
|
3007
|
-
"
|
|
3008
|
-
"
|
|
3009
|
-
|
|
3322
|
+
"name": "initial",
|
|
3323
|
+
"type": {
|
|
3324
|
+
"text": "number"
|
|
3325
|
+
},
|
|
3326
|
+
"description": "Initial width value"
|
|
3010
3327
|
},
|
|
3011
3328
|
{
|
|
3012
|
-
"
|
|
3013
|
-
"
|
|
3014
|
-
|
|
3329
|
+
"name": "threshold",
|
|
3330
|
+
"type": {
|
|
3331
|
+
"text": "number"
|
|
3332
|
+
},
|
|
3333
|
+
"description": "Minimum change threshold in pixels"
|
|
3334
|
+
}
|
|
3335
|
+
],
|
|
3336
|
+
"description": "Check if width change exceeds the threshold for meaningful expansion."
|
|
3337
|
+
},
|
|
3338
|
+
{
|
|
3339
|
+
"kind": "function",
|
|
3340
|
+
"name": "isWideEnough",
|
|
3341
|
+
"return": {
|
|
3342
|
+
"type": {
|
|
3343
|
+
"text": ""
|
|
3344
|
+
}
|
|
3345
|
+
},
|
|
3346
|
+
"parameters": [
|
|
3347
|
+
{
|
|
3348
|
+
"name": "inlineSize",
|
|
3349
|
+
"type": {
|
|
3350
|
+
"text": "number"
|
|
3351
|
+
},
|
|
3352
|
+
"description": "Current width of the host element"
|
|
3015
3353
|
},
|
|
3016
3354
|
{
|
|
3017
|
-
"
|
|
3018
|
-
"
|
|
3019
|
-
|
|
3355
|
+
"name": "requiredWidth",
|
|
3356
|
+
"type": {
|
|
3357
|
+
"text": "number"
|
|
3358
|
+
},
|
|
3359
|
+
"description": "Minimum width required for side-by-side layout"
|
|
3360
|
+
}
|
|
3361
|
+
],
|
|
3362
|
+
"description": "Check if the host element is wide enough for side-by-side layout."
|
|
3363
|
+
},
|
|
3364
|
+
{
|
|
3365
|
+
"kind": "function",
|
|
3366
|
+
"name": "canHostGrow",
|
|
3367
|
+
"return": {
|
|
3368
|
+
"type": {
|
|
3369
|
+
"text": ""
|
|
3370
|
+
}
|
|
3371
|
+
},
|
|
3372
|
+
"parameters": [
|
|
3373
|
+
{
|
|
3374
|
+
"name": "requiredWidth",
|
|
3375
|
+
"type": {
|
|
3376
|
+
"text": "number"
|
|
3377
|
+
},
|
|
3378
|
+
"description": "Minimum width required for side-by-side layout"
|
|
3379
|
+
}
|
|
3380
|
+
],
|
|
3381
|
+
"description": "Check if the host element can potentially grow to the required width."
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
"kind": "function",
|
|
3385
|
+
"name": "getInlineSizeFromEntry",
|
|
3386
|
+
"return": {
|
|
3387
|
+
"type": {
|
|
3388
|
+
"text": ""
|
|
3389
|
+
}
|
|
3390
|
+
},
|
|
3391
|
+
"parameters": [
|
|
3392
|
+
{
|
|
3393
|
+
"name": "entry",
|
|
3394
|
+
"type": {
|
|
3395
|
+
"text": "ResizeObserverEntry"
|
|
3396
|
+
},
|
|
3397
|
+
"description": "ResizeObserver entry containing size information"
|
|
3398
|
+
}
|
|
3399
|
+
],
|
|
3400
|
+
"description": "Extract inline size from a ResizeObserverEntry."
|
|
3401
|
+
},
|
|
3402
|
+
{
|
|
3403
|
+
"kind": "function",
|
|
3404
|
+
"name": "getCssLengthFromProperty",
|
|
3405
|
+
"return": {
|
|
3406
|
+
"type": {
|
|
3407
|
+
"text": ""
|
|
3408
|
+
}
|
|
3409
|
+
},
|
|
3410
|
+
"parameters": [
|
|
3411
|
+
{
|
|
3412
|
+
"name": "element",
|
|
3413
|
+
"type": {
|
|
3414
|
+
"text": "HTMLElement"
|
|
3415
|
+
},
|
|
3416
|
+
"description": "Element to get computed style from"
|
|
3020
3417
|
},
|
|
3021
3418
|
{
|
|
3022
|
-
"
|
|
3023
|
-
"
|
|
3024
|
-
|
|
3419
|
+
"name": "propertyName",
|
|
3420
|
+
"type": {
|
|
3421
|
+
"text": "string"
|
|
3422
|
+
},
|
|
3423
|
+
"description": "CSS custom property name"
|
|
3025
3424
|
},
|
|
3026
3425
|
{
|
|
3027
|
-
"
|
|
3028
|
-
"
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3426
|
+
"name": "fallback",
|
|
3427
|
+
"type": {
|
|
3428
|
+
"text": "number"
|
|
3429
|
+
},
|
|
3430
|
+
"description": "Fallback value if property is not set or invalid"
|
|
3431
|
+
}
|
|
3432
|
+
],
|
|
3433
|
+
"description": "Parse a CSS length value from a computed style property."
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
"kind": "function",
|
|
3437
|
+
"name": "areWorkspaceAttributesCorrect",
|
|
3438
|
+
"return": {
|
|
3439
|
+
"type": {
|
|
3440
|
+
"text": ""
|
|
3441
|
+
}
|
|
3442
|
+
},
|
|
3443
|
+
"parameters": [
|
|
3444
|
+
{
|
|
3445
|
+
"name": "element",
|
|
3446
|
+
"type": {
|
|
3447
|
+
"text": "HTMLElement"
|
|
3448
|
+
},
|
|
3449
|
+
"description": "Host element containing workspace attributes"
|
|
3035
3450
|
},
|
|
3036
3451
|
{
|
|
3037
|
-
"
|
|
3038
|
-
"
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3452
|
+
"name": "inPanel",
|
|
3453
|
+
"type": {
|
|
3454
|
+
"text": "boolean"
|
|
3455
|
+
},
|
|
3456
|
+
"description": "Expected panel state"
|
|
3457
|
+
}
|
|
3458
|
+
],
|
|
3459
|
+
"description": "Check if workspace DOM attributes match the expected panel state."
|
|
3460
|
+
},
|
|
3461
|
+
{
|
|
3462
|
+
"kind": "function",
|
|
3463
|
+
"name": "shouldSkipWorkspaceUpdate",
|
|
3464
|
+
"return": {
|
|
3465
|
+
"type": {
|
|
3466
|
+
"text": ""
|
|
3467
|
+
}
|
|
3468
|
+
},
|
|
3469
|
+
"parameters": [
|
|
3470
|
+
{
|
|
3471
|
+
"name": "config",
|
|
3472
|
+
"type": {
|
|
3473
|
+
"text": "{ showWorkspace: boolean }"
|
|
3474
|
+
},
|
|
3475
|
+
"description": "Workspace configuration"
|
|
3045
3476
|
},
|
|
3046
3477
|
{
|
|
3047
|
-
"
|
|
3048
|
-
"
|
|
3049
|
-
|
|
3050
|
-
"return": {
|
|
3051
|
-
"type": {
|
|
3052
|
-
"text": "PanelState | undefined"
|
|
3053
|
-
}
|
|
3478
|
+
"name": "state",
|
|
3479
|
+
"type": {
|
|
3480
|
+
"text": "{ containerVisible: boolean; isContracting: boolean }"
|
|
3054
3481
|
},
|
|
3055
|
-
"
|
|
3056
|
-
{
|
|
3057
|
-
"name": "panels",
|
|
3058
|
-
"type": {
|
|
3059
|
-
"text": "PanelState[]"
|
|
3060
|
-
}
|
|
3061
|
-
}
|
|
3062
|
-
]
|
|
3482
|
+
"description": "Current workspace state"
|
|
3063
3483
|
},
|
|
3064
3484
|
{
|
|
3065
|
-
"
|
|
3066
|
-
"name": "
|
|
3067
|
-
"privacy": "private",
|
|
3068
|
-
"parameters": [
|
|
3069
|
-
{
|
|
3070
|
-
"name": "target",
|
|
3071
|
-
"type": {
|
|
3072
|
-
"text": "HTMLElement | undefined"
|
|
3073
|
-
}
|
|
3074
|
-
},
|
|
3075
|
-
{
|
|
3076
|
-
"name": "value",
|
|
3077
|
-
"type": {
|
|
3078
|
-
"text": "boolean"
|
|
3079
|
-
}
|
|
3080
|
-
}
|
|
3081
|
-
]
|
|
3485
|
+
"description": "Whether workspace is enabled",
|
|
3486
|
+
"name": "config.showWorkspace"
|
|
3082
3487
|
},
|
|
3083
3488
|
{
|
|
3084
|
-
"
|
|
3085
|
-
"name": "
|
|
3086
|
-
"privacy": "private",
|
|
3087
|
-
"parameters": [
|
|
3088
|
-
{
|
|
3089
|
-
"name": "panelElement",
|
|
3090
|
-
"type": {
|
|
3091
|
-
"text": "HTMLElement"
|
|
3092
|
-
}
|
|
3093
|
-
}
|
|
3094
|
-
]
|
|
3489
|
+
"description": "Whether workspace container is visible",
|
|
3490
|
+
"name": "state.containerVisible"
|
|
3095
3491
|
},
|
|
3096
3492
|
{
|
|
3097
|
-
"
|
|
3098
|
-
"name": "
|
|
3099
|
-
"privacy": "private"
|
|
3493
|
+
"description": "Whether workspace is currently contracting",
|
|
3494
|
+
"name": "state.isContracting"
|
|
3100
3495
|
}
|
|
3101
|
-
]
|
|
3496
|
+
],
|
|
3497
|
+
"description": "Check if workspace update should be skipped based on current state."
|
|
3102
3498
|
}
|
|
3103
3499
|
],
|
|
3104
3500
|
"exports": [
|
|
3105
3501
|
{
|
|
3106
3502
|
"kind": "js",
|
|
3107
|
-
"name": "
|
|
3503
|
+
"name": "calculateRequiredWidth",
|
|
3108
3504
|
"declaration": {
|
|
3109
|
-
"name": "
|
|
3110
|
-
"module": "src/components/chat-shell/src/
|
|
3505
|
+
"name": "calculateRequiredWidth",
|
|
3506
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3507
|
+
}
|
|
3508
|
+
},
|
|
3509
|
+
{
|
|
3510
|
+
"kind": "js",
|
|
3511
|
+
"name": "hasSignificantWidthChange",
|
|
3512
|
+
"declaration": {
|
|
3513
|
+
"name": "hasSignificantWidthChange",
|
|
3514
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3515
|
+
}
|
|
3516
|
+
},
|
|
3517
|
+
{
|
|
3518
|
+
"kind": "js",
|
|
3519
|
+
"name": "isWideEnough",
|
|
3520
|
+
"declaration": {
|
|
3521
|
+
"name": "isWideEnough",
|
|
3522
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3523
|
+
}
|
|
3524
|
+
},
|
|
3525
|
+
{
|
|
3526
|
+
"kind": "js",
|
|
3527
|
+
"name": "canHostGrow",
|
|
3528
|
+
"declaration": {
|
|
3529
|
+
"name": "canHostGrow",
|
|
3530
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3531
|
+
}
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"kind": "js",
|
|
3535
|
+
"name": "getInlineSizeFromEntry",
|
|
3536
|
+
"declaration": {
|
|
3537
|
+
"name": "getInlineSizeFromEntry",
|
|
3538
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3539
|
+
}
|
|
3540
|
+
},
|
|
3541
|
+
{
|
|
3542
|
+
"kind": "js",
|
|
3543
|
+
"name": "getCssLengthFromProperty",
|
|
3544
|
+
"declaration": {
|
|
3545
|
+
"name": "getCssLengthFromProperty",
|
|
3546
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3547
|
+
}
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
"kind": "js",
|
|
3551
|
+
"name": "areWorkspaceAttributesCorrect",
|
|
3552
|
+
"declaration": {
|
|
3553
|
+
"name": "areWorkspaceAttributesCorrect",
|
|
3554
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3555
|
+
}
|
|
3556
|
+
},
|
|
3557
|
+
{
|
|
3558
|
+
"kind": "js",
|
|
3559
|
+
"name": "shouldSkipWorkspaceUpdate",
|
|
3560
|
+
"declaration": {
|
|
3561
|
+
"name": "shouldSkipWorkspaceUpdate",
|
|
3562
|
+
"module": "src/components/chat-shell/src/workspace-manager-utils.ts"
|
|
3111
3563
|
}
|
|
3112
3564
|
}
|
|
3113
3565
|
]
|
|
@@ -3128,7 +3580,7 @@
|
|
|
3128
3580
|
"text": "WorkspaceState"
|
|
3129
3581
|
},
|
|
3130
3582
|
"privacy": "private",
|
|
3131
|
-
"default": "{ inPanel: false, contentVisible: true, containerVisible: false, isExpanding: false, isContracting: false, }"
|
|
3583
|
+
"default": "{ inPanel: false, contentVisible: true, containerVisible: false, isCheckingExpansion: false, isExpanding: false, isCheckingContracting: false, isContracting: false, }"
|
|
3132
3584
|
},
|
|
3133
3585
|
{
|
|
3134
3586
|
"kind": "field",
|
|
@@ -3164,7 +3616,15 @@
|
|
|
3164
3616
|
},
|
|
3165
3617
|
{
|
|
3166
3618
|
"kind": "field",
|
|
3167
|
-
"name": "
|
|
3619
|
+
"name": "contractionCheckInterval",
|
|
3620
|
+
"type": {
|
|
3621
|
+
"text": "number | undefined"
|
|
3622
|
+
},
|
|
3623
|
+
"privacy": "private"
|
|
3624
|
+
},
|
|
3625
|
+
{
|
|
3626
|
+
"kind": "field",
|
|
3627
|
+
"name": "contractionLastInlineSize",
|
|
3168
3628
|
"type": {
|
|
3169
3629
|
"text": "number | undefined"
|
|
3170
3630
|
},
|
|
@@ -3172,7 +3632,7 @@
|
|
|
3172
3632
|
},
|
|
3173
3633
|
{
|
|
3174
3634
|
"kind": "field",
|
|
3175
|
-
"name": "
|
|
3635
|
+
"name": "contractionInitialInlineSize",
|
|
3176
3636
|
"type": {
|
|
3177
3637
|
"text": "number | undefined"
|
|
3178
3638
|
},
|
|
@@ -3235,7 +3695,163 @@
|
|
|
3235
3695
|
},
|
|
3236
3696
|
{
|
|
3237
3697
|
"kind": "method",
|
|
3238
|
-
"name": "updateConfig",
|
|
3698
|
+
"name": "updateConfig",
|
|
3699
|
+
"return": {
|
|
3700
|
+
"type": {
|
|
3701
|
+
"text": "void"
|
|
3702
|
+
}
|
|
3703
|
+
},
|
|
3704
|
+
"parameters": [
|
|
3705
|
+
{
|
|
3706
|
+
"name": "newConfig",
|
|
3707
|
+
"type": {
|
|
3708
|
+
"text": "Partial<WorkspaceConfig>"
|
|
3709
|
+
}
|
|
3710
|
+
}
|
|
3711
|
+
],
|
|
3712
|
+
"description": "Update workspace configuration.\nHandles transitions when workspace visibility or related settings change."
|
|
3713
|
+
},
|
|
3714
|
+
{
|
|
3715
|
+
"kind": "method",
|
|
3716
|
+
"name": "getState",
|
|
3717
|
+
"return": {
|
|
3718
|
+
"type": {
|
|
3719
|
+
"text": "Readonly<WorkspaceState>"
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3722
|
+
"description": "Get current workspace state.\nReturns a readonly copy to prevent external mutations."
|
|
3723
|
+
},
|
|
3724
|
+
{
|
|
3725
|
+
"kind": "method",
|
|
3726
|
+
"name": "shouldRenderInline",
|
|
3727
|
+
"return": {
|
|
3728
|
+
"type": {
|
|
3729
|
+
"text": "boolean"
|
|
3730
|
+
}
|
|
3731
|
+
},
|
|
3732
|
+
"description": "Check if workspace should be rendered inline (side-by-side with messages)."
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
"kind": "method",
|
|
3736
|
+
"name": "shouldRenderPanel",
|
|
3737
|
+
"return": {
|
|
3738
|
+
"type": {
|
|
3739
|
+
"text": "boolean"
|
|
3740
|
+
}
|
|
3741
|
+
},
|
|
3742
|
+
"description": "Check if workspace should be rendered as a panel (overlay)."
|
|
3743
|
+
},
|
|
3744
|
+
{
|
|
3745
|
+
"kind": "method",
|
|
3746
|
+
"name": "observeHostWidth",
|
|
3747
|
+
"privacy": "private",
|
|
3748
|
+
"return": {
|
|
3749
|
+
"type": {
|
|
3750
|
+
"text": "void"
|
|
3751
|
+
}
|
|
3752
|
+
}
|
|
3753
|
+
},
|
|
3754
|
+
{
|
|
3755
|
+
"kind": "method",
|
|
3756
|
+
"name": "setupWindowResizeListener",
|
|
3757
|
+
"privacy": "private",
|
|
3758
|
+
"return": {
|
|
3759
|
+
"type": {
|
|
3760
|
+
"text": "void"
|
|
3761
|
+
}
|
|
3762
|
+
}
|
|
3763
|
+
},
|
|
3764
|
+
{
|
|
3765
|
+
"kind": "method",
|
|
3766
|
+
"name": "createHostResizeObserver",
|
|
3767
|
+
"privacy": "private",
|
|
3768
|
+
"return": {
|
|
3769
|
+
"type": {
|
|
3770
|
+
"text": "void"
|
|
3771
|
+
}
|
|
3772
|
+
}
|
|
3773
|
+
},
|
|
3774
|
+
{
|
|
3775
|
+
"kind": "method",
|
|
3776
|
+
"name": "reconnectHostResizeObserver",
|
|
3777
|
+
"privacy": "private",
|
|
3778
|
+
"return": {
|
|
3779
|
+
"type": {
|
|
3780
|
+
"text": "void"
|
|
3781
|
+
}
|
|
3782
|
+
}
|
|
3783
|
+
},
|
|
3784
|
+
{
|
|
3785
|
+
"kind": "method",
|
|
3786
|
+
"name": "performInitialHostMeasurement",
|
|
3787
|
+
"privacy": "private",
|
|
3788
|
+
"return": {
|
|
3789
|
+
"type": {
|
|
3790
|
+
"text": "void"
|
|
3791
|
+
}
|
|
3792
|
+
}
|
|
3793
|
+
},
|
|
3794
|
+
{
|
|
3795
|
+
"kind": "method",
|
|
3796
|
+
"name": "handleHostResize",
|
|
3797
|
+
"privacy": "private",
|
|
3798
|
+
"return": {
|
|
3799
|
+
"type": {
|
|
3800
|
+
"text": "void"
|
|
3801
|
+
}
|
|
3802
|
+
},
|
|
3803
|
+
"parameters": [
|
|
3804
|
+
{
|
|
3805
|
+
"name": "inlineSize",
|
|
3806
|
+
"type": {
|
|
3807
|
+
"text": "number"
|
|
3808
|
+
}
|
|
3809
|
+
}
|
|
3810
|
+
]
|
|
3811
|
+
},
|
|
3812
|
+
{
|
|
3813
|
+
"kind": "method",
|
|
3814
|
+
"name": "updateWorkspaceInPanelState",
|
|
3815
|
+
"privacy": "private",
|
|
3816
|
+
"return": {
|
|
3817
|
+
"type": {
|
|
3818
|
+
"text": "void"
|
|
3819
|
+
}
|
|
3820
|
+
},
|
|
3821
|
+
"parameters": [
|
|
3822
|
+
{
|
|
3823
|
+
"name": "inlineSize",
|
|
3824
|
+
"type": {
|
|
3825
|
+
"text": "number"
|
|
3826
|
+
}
|
|
3827
|
+
}
|
|
3828
|
+
]
|
|
3829
|
+
},
|
|
3830
|
+
{
|
|
3831
|
+
"kind": "method",
|
|
3832
|
+
"name": "getLayoutDimensions",
|
|
3833
|
+
"privacy": "private",
|
|
3834
|
+
"return": {
|
|
3835
|
+
"type": {
|
|
3836
|
+
"text": "{\n workspaceMinWidth: number;\n messagesMinWidth: number;\n historyWidth: number;\n }"
|
|
3837
|
+
}
|
|
3838
|
+
},
|
|
3839
|
+
"description": "Get layout dimensions from cache or compute if not available.\nUses cached CSS values for performance, falling back to live computation."
|
|
3840
|
+
},
|
|
3841
|
+
{
|
|
3842
|
+
"kind": "method",
|
|
3843
|
+
"name": "handleShowWorkspaceEnabled",
|
|
3844
|
+
"privacy": "private",
|
|
3845
|
+
"return": {
|
|
3846
|
+
"type": {
|
|
3847
|
+
"text": "void"
|
|
3848
|
+
}
|
|
3849
|
+
}
|
|
3850
|
+
},
|
|
3851
|
+
{
|
|
3852
|
+
"kind": "method",
|
|
3853
|
+
"name": "initializeImmediateDisplay",
|
|
3854
|
+
"privacy": "private",
|
|
3239
3855
|
"return": {
|
|
3240
3856
|
"type": {
|
|
3241
3857
|
"text": "void"
|
|
@@ -3243,67 +3859,119 @@
|
|
|
3243
3859
|
},
|
|
3244
3860
|
"parameters": [
|
|
3245
3861
|
{
|
|
3246
|
-
"name": "
|
|
3862
|
+
"name": "mode",
|
|
3247
3863
|
"type": {
|
|
3248
|
-
"text": "
|
|
3864
|
+
"text": "\"container\" | \"panel\""
|
|
3865
|
+
}
|
|
3866
|
+
},
|
|
3867
|
+
{
|
|
3868
|
+
"name": "inlineSize",
|
|
3869
|
+
"type": {
|
|
3870
|
+
"text": "number"
|
|
3249
3871
|
}
|
|
3250
3872
|
}
|
|
3251
|
-
]
|
|
3252
|
-
"description": "Update workspace configuration.\nHandles transitions when workspace visibility or related settings change."
|
|
3873
|
+
]
|
|
3253
3874
|
},
|
|
3254
3875
|
{
|
|
3255
3876
|
"kind": "method",
|
|
3256
|
-
"name": "
|
|
3877
|
+
"name": "initializeExpansionTracking",
|
|
3878
|
+
"privacy": "private",
|
|
3257
3879
|
"return": {
|
|
3258
3880
|
"type": {
|
|
3259
|
-
"text": "
|
|
3881
|
+
"text": "void"
|
|
3260
3882
|
}
|
|
3261
|
-
}
|
|
3262
|
-
"description": "Get current workspace state.\nReturns a readonly copy to prevent external mutations."
|
|
3883
|
+
}
|
|
3263
3884
|
},
|
|
3264
3885
|
{
|
|
3265
3886
|
"kind": "method",
|
|
3266
|
-
"name": "
|
|
3887
|
+
"name": "handleShowWorkspaceDisabled",
|
|
3888
|
+
"privacy": "private",
|
|
3267
3889
|
"return": {
|
|
3268
3890
|
"type": {
|
|
3269
|
-
"text": "
|
|
3891
|
+
"text": "void"
|
|
3270
3892
|
}
|
|
3271
|
-
}
|
|
3272
|
-
"description": "Check if workspace should be rendered inline (side-by-side with messages)."
|
|
3893
|
+
}
|
|
3273
3894
|
},
|
|
3274
3895
|
{
|
|
3275
3896
|
"kind": "method",
|
|
3276
|
-
"name": "
|
|
3897
|
+
"name": "startExpansionPolling",
|
|
3898
|
+
"privacy": "private",
|
|
3277
3899
|
"return": {
|
|
3278
3900
|
"type": {
|
|
3279
|
-
"text": "
|
|
3901
|
+
"text": "void"
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
},
|
|
3905
|
+
{
|
|
3906
|
+
"kind": "method",
|
|
3907
|
+
"name": "checkExpansionProgress",
|
|
3908
|
+
"privacy": "private",
|
|
3909
|
+
"return": {
|
|
3910
|
+
"type": {
|
|
3911
|
+
"text": "void"
|
|
3280
3912
|
}
|
|
3281
3913
|
},
|
|
3282
|
-
"
|
|
3914
|
+
"parameters": [
|
|
3915
|
+
{
|
|
3916
|
+
"name": "initialWidth",
|
|
3917
|
+
"type": {
|
|
3918
|
+
"text": "number"
|
|
3919
|
+
}
|
|
3920
|
+
},
|
|
3921
|
+
{
|
|
3922
|
+
"name": "hasSetContainerMode",
|
|
3923
|
+
"type": {
|
|
3924
|
+
"text": "{ value: boolean }"
|
|
3925
|
+
}
|
|
3926
|
+
}
|
|
3927
|
+
],
|
|
3928
|
+
"description": "Check expansion progress and determine if transition is complete."
|
|
3283
3929
|
},
|
|
3284
3930
|
{
|
|
3285
3931
|
"kind": "method",
|
|
3286
|
-
"name": "
|
|
3932
|
+
"name": "handleOngoingExpansion",
|
|
3287
3933
|
"privacy": "private",
|
|
3288
3934
|
"return": {
|
|
3289
3935
|
"type": {
|
|
3290
3936
|
"text": "void"
|
|
3291
3937
|
}
|
|
3292
|
-
}
|
|
3938
|
+
},
|
|
3939
|
+
"parameters": [
|
|
3940
|
+
{
|
|
3941
|
+
"name": "currentWidth",
|
|
3942
|
+
"type": {
|
|
3943
|
+
"text": "number"
|
|
3944
|
+
}
|
|
3945
|
+
},
|
|
3946
|
+
{
|
|
3947
|
+
"name": "initialWidth",
|
|
3948
|
+
"type": {
|
|
3949
|
+
"text": "number"
|
|
3950
|
+
}
|
|
3951
|
+
},
|
|
3952
|
+
{
|
|
3953
|
+
"name": "hasSetContainerMode",
|
|
3954
|
+
"type": {
|
|
3955
|
+
"text": "{ value: boolean }"
|
|
3956
|
+
}
|
|
3957
|
+
}
|
|
3958
|
+
],
|
|
3959
|
+
"description": "Handle ongoing width changes during expansion."
|
|
3293
3960
|
},
|
|
3294
3961
|
{
|
|
3295
3962
|
"kind": "method",
|
|
3296
|
-
"name": "
|
|
3963
|
+
"name": "setWorkspaceInContainerMode",
|
|
3297
3964
|
"privacy": "private",
|
|
3298
3965
|
"return": {
|
|
3299
3966
|
"type": {
|
|
3300
3967
|
"text": "void"
|
|
3301
3968
|
}
|
|
3302
|
-
}
|
|
3969
|
+
},
|
|
3970
|
+
"description": "Set workspace to container mode by updating DOM attributes."
|
|
3303
3971
|
},
|
|
3304
3972
|
{
|
|
3305
3973
|
"kind": "method",
|
|
3306
|
-
"name": "
|
|
3974
|
+
"name": "setupContractionTracking",
|
|
3307
3975
|
"privacy": "private",
|
|
3308
3976
|
"return": {
|
|
3309
3977
|
"type": {
|
|
@@ -3313,7 +3981,7 @@
|
|
|
3313
3981
|
},
|
|
3314
3982
|
{
|
|
3315
3983
|
"kind": "method",
|
|
3316
|
-
"name": "
|
|
3984
|
+
"name": "initializeImmediateClosing",
|
|
3317
3985
|
"privacy": "private",
|
|
3318
3986
|
"return": {
|
|
3319
3987
|
"type": {
|
|
@@ -3323,7 +3991,7 @@
|
|
|
3323
3991
|
},
|
|
3324
3992
|
{
|
|
3325
3993
|
"kind": "method",
|
|
3326
|
-
"name": "
|
|
3994
|
+
"name": "startContractionPolling",
|
|
3327
3995
|
"privacy": "private",
|
|
3328
3996
|
"return": {
|
|
3329
3997
|
"type": {
|
|
@@ -3333,7 +4001,7 @@
|
|
|
3333
4001
|
},
|
|
3334
4002
|
{
|
|
3335
4003
|
"kind": "method",
|
|
3336
|
-
"name": "
|
|
4004
|
+
"name": "checkContractionProgress",
|
|
3337
4005
|
"privacy": "private",
|
|
3338
4006
|
"return": {
|
|
3339
4007
|
"type": {
|
|
@@ -3342,16 +4010,22 @@
|
|
|
3342
4010
|
},
|
|
3343
4011
|
"parameters": [
|
|
3344
4012
|
{
|
|
3345
|
-
"name": "
|
|
4013
|
+
"name": "initialWidth",
|
|
3346
4014
|
"type": {
|
|
3347
4015
|
"text": "number"
|
|
3348
4016
|
}
|
|
4017
|
+
},
|
|
4018
|
+
{
|
|
4019
|
+
"name": "hasSetContractingMode",
|
|
4020
|
+
"type": {
|
|
4021
|
+
"text": "{ value: boolean }"
|
|
4022
|
+
}
|
|
3349
4023
|
}
|
|
3350
4024
|
]
|
|
3351
4025
|
},
|
|
3352
4026
|
{
|
|
3353
4027
|
"kind": "method",
|
|
3354
|
-
"name": "
|
|
4028
|
+
"name": "handleOngoingContraction",
|
|
3355
4029
|
"privacy": "private",
|
|
3356
4030
|
"return": {
|
|
3357
4031
|
"type": {
|
|
@@ -3360,36 +4034,46 @@
|
|
|
3360
4034
|
},
|
|
3361
4035
|
"parameters": [
|
|
3362
4036
|
{
|
|
3363
|
-
"name": "
|
|
4037
|
+
"name": "currentWidth",
|
|
4038
|
+
"type": {
|
|
4039
|
+
"text": "number"
|
|
4040
|
+
}
|
|
4041
|
+
},
|
|
4042
|
+
{
|
|
4043
|
+
"name": "initialWidth",
|
|
3364
4044
|
"type": {
|
|
3365
4045
|
"text": "number"
|
|
3366
4046
|
}
|
|
4047
|
+
},
|
|
4048
|
+
{
|
|
4049
|
+
"name": "hasSetContractingMode",
|
|
4050
|
+
"type": {
|
|
4051
|
+
"text": "{ value: boolean }"
|
|
4052
|
+
}
|
|
3367
4053
|
}
|
|
3368
4054
|
]
|
|
3369
4055
|
},
|
|
3370
4056
|
{
|
|
3371
4057
|
"kind": "method",
|
|
3372
|
-
"name": "
|
|
4058
|
+
"name": "finishWorkspaceContraction",
|
|
3373
4059
|
"privacy": "private",
|
|
3374
4060
|
"return": {
|
|
3375
4061
|
"type": {
|
|
3376
4062
|
"text": "void"
|
|
3377
4063
|
}
|
|
3378
|
-
}
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
"type": {
|
|
3386
|
-
"text": "void"
|
|
4064
|
+
},
|
|
4065
|
+
"parameters": [
|
|
4066
|
+
{
|
|
4067
|
+
"name": "sawMovement",
|
|
4068
|
+
"type": {
|
|
4069
|
+
"text": "boolean"
|
|
4070
|
+
}
|
|
3387
4071
|
}
|
|
3388
|
-
|
|
4072
|
+
]
|
|
3389
4073
|
},
|
|
3390
4074
|
{
|
|
3391
4075
|
"kind": "method",
|
|
3392
|
-
"name": "
|
|
4076
|
+
"name": "startFinalContractionPolling",
|
|
3393
4077
|
"privacy": "private",
|
|
3394
4078
|
"return": {
|
|
3395
4079
|
"type": {
|
|
@@ -3399,13 +4083,21 @@
|
|
|
3399
4083
|
},
|
|
3400
4084
|
{
|
|
3401
4085
|
"kind": "method",
|
|
3402
|
-
"name": "
|
|
4086
|
+
"name": "trackExpectedContraction",
|
|
3403
4087
|
"privacy": "private",
|
|
3404
4088
|
"return": {
|
|
3405
4089
|
"type": {
|
|
3406
4090
|
"text": "void"
|
|
3407
4091
|
}
|
|
3408
|
-
}
|
|
4092
|
+
},
|
|
4093
|
+
"parameters": [
|
|
4094
|
+
{
|
|
4095
|
+
"name": "inlineSize",
|
|
4096
|
+
"type": {
|
|
4097
|
+
"text": "number"
|
|
4098
|
+
}
|
|
4099
|
+
}
|
|
4100
|
+
]
|
|
3409
4101
|
},
|
|
3410
4102
|
{
|
|
3411
4103
|
"kind": "method",
|
|
@@ -3465,7 +4157,7 @@
|
|
|
3465
4157
|
},
|
|
3466
4158
|
{
|
|
3467
4159
|
"kind": "method",
|
|
3468
|
-
"name": "
|
|
4160
|
+
"name": "clearContractionTimers",
|
|
3469
4161
|
"privacy": "private",
|
|
3470
4162
|
"return": {
|
|
3471
4163
|
"type": {
|
|
@@ -3473,6 +4165,26 @@
|
|
|
3473
4165
|
}
|
|
3474
4166
|
}
|
|
3475
4167
|
},
|
|
4168
|
+
{
|
|
4169
|
+
"kind": "method",
|
|
4170
|
+
"name": "updateWorkspaceAttributes",
|
|
4171
|
+
"privacy": "private",
|
|
4172
|
+
"return": {
|
|
4173
|
+
"type": {
|
|
4174
|
+
"text": "void"
|
|
4175
|
+
}
|
|
4176
|
+
},
|
|
4177
|
+
"parameters": [
|
|
4178
|
+
{
|
|
4179
|
+
"name": "inPanel",
|
|
4180
|
+
"type": {
|
|
4181
|
+
"text": "boolean"
|
|
4182
|
+
},
|
|
4183
|
+
"description": "True for panel mode, false for container mode"
|
|
4184
|
+
}
|
|
4185
|
+
],
|
|
4186
|
+
"description": "Updates workspace DOM attributes to match the panel state.\nMaintains inverse relationship between panel and container attributes."
|
|
4187
|
+
},
|
|
3476
4188
|
{
|
|
3477
4189
|
"kind": "method",
|
|
3478
4190
|
"name": "setWorkspaceInPanel",
|
|
@@ -3487,9 +4199,11 @@
|
|
|
3487
4199
|
"name": "inPanel",
|
|
3488
4200
|
"type": {
|
|
3489
4201
|
"text": "boolean"
|
|
3490
|
-
}
|
|
4202
|
+
},
|
|
4203
|
+
"description": "True to display workspace as overlay panel, false for inline"
|
|
3491
4204
|
}
|
|
3492
|
-
]
|
|
4205
|
+
],
|
|
4206
|
+
"description": "Updates the workspace panel state and corresponding DOM attributes.\n\nSynchronizes internal state with DOM attributes that control whether\nthe workspace is displayed as an overlay panel or inline container.\n\nIgnores calls during expansion/contraction transitions. Only updates if\nstate or attributes need changes. Maintains inverse relationship between\npanel and container attributes."
|
|
3493
4207
|
},
|
|
3494
4208
|
{
|
|
3495
4209
|
"kind": "method",
|
|
@@ -3575,48 +4289,6 @@
|
|
|
3575
4289
|
}
|
|
3576
4290
|
}
|
|
3577
4291
|
},
|
|
3578
|
-
{
|
|
3579
|
-
"kind": "method",
|
|
3580
|
-
"name": "isWideEnough",
|
|
3581
|
-
"privacy": "private",
|
|
3582
|
-
"return": {
|
|
3583
|
-
"type": {
|
|
3584
|
-
"text": "boolean"
|
|
3585
|
-
}
|
|
3586
|
-
},
|
|
3587
|
-
"parameters": [
|
|
3588
|
-
{
|
|
3589
|
-
"name": "inlineSize",
|
|
3590
|
-
"type": {
|
|
3591
|
-
"text": "number"
|
|
3592
|
-
}
|
|
3593
|
-
},
|
|
3594
|
-
{
|
|
3595
|
-
"name": "requiredWidth",
|
|
3596
|
-
"type": {
|
|
3597
|
-
"text": "number"
|
|
3598
|
-
}
|
|
3599
|
-
}
|
|
3600
|
-
]
|
|
3601
|
-
},
|
|
3602
|
-
{
|
|
3603
|
-
"kind": "method",
|
|
3604
|
-
"name": "canHostGrow",
|
|
3605
|
-
"privacy": "private",
|
|
3606
|
-
"return": {
|
|
3607
|
-
"type": {
|
|
3608
|
-
"text": "boolean"
|
|
3609
|
-
}
|
|
3610
|
-
},
|
|
3611
|
-
"parameters": [
|
|
3612
|
-
{
|
|
3613
|
-
"name": "requiredWidth",
|
|
3614
|
-
"type": {
|
|
3615
|
-
"text": "number"
|
|
3616
|
-
}
|
|
3617
|
-
}
|
|
3618
|
-
]
|
|
3619
|
-
},
|
|
3620
4292
|
{
|
|
3621
4293
|
"kind": "method",
|
|
3622
4294
|
"name": "finalizeImmediateDisplay",
|
|
@@ -3651,48 +4323,6 @@
|
|
|
3651
4323
|
}
|
|
3652
4324
|
}
|
|
3653
4325
|
},
|
|
3654
|
-
{
|
|
3655
|
-
"kind": "method",
|
|
3656
|
-
"name": "getInlineSizeFromEntry",
|
|
3657
|
-
"privacy": "private",
|
|
3658
|
-
"return": {
|
|
3659
|
-
"type": {
|
|
3660
|
-
"text": "number"
|
|
3661
|
-
}
|
|
3662
|
-
},
|
|
3663
|
-
"parameters": [
|
|
3664
|
-
{
|
|
3665
|
-
"name": "entry",
|
|
3666
|
-
"type": {
|
|
3667
|
-
"text": "ResizeObserverEntry"
|
|
3668
|
-
}
|
|
3669
|
-
}
|
|
3670
|
-
]
|
|
3671
|
-
},
|
|
3672
|
-
{
|
|
3673
|
-
"kind": "method",
|
|
3674
|
-
"name": "getCssLengthFromProperty",
|
|
3675
|
-
"privacy": "private",
|
|
3676
|
-
"return": {
|
|
3677
|
-
"type": {
|
|
3678
|
-
"text": "number"
|
|
3679
|
-
}
|
|
3680
|
-
},
|
|
3681
|
-
"parameters": [
|
|
3682
|
-
{
|
|
3683
|
-
"name": "propertyName",
|
|
3684
|
-
"type": {
|
|
3685
|
-
"text": "string"
|
|
3686
|
-
}
|
|
3687
|
-
},
|
|
3688
|
-
{
|
|
3689
|
-
"name": "fallback",
|
|
3690
|
-
"type": {
|
|
3691
|
-
"text": "number"
|
|
3692
|
-
}
|
|
3693
|
-
}
|
|
3694
|
-
]
|
|
3695
|
-
},
|
|
3696
4326
|
{
|
|
3697
4327
|
"kind": "method",
|
|
3698
4328
|
"name": "observeCssProperties",
|
|
@@ -7463,10 +8093,44 @@
|
|
|
7463
8093
|
},
|
|
7464
8094
|
"privacy": "private"
|
|
7465
8095
|
},
|
|
8096
|
+
{
|
|
8097
|
+
"kind": "field",
|
|
8098
|
+
"name": "visibilityObserver",
|
|
8099
|
+
"type": {
|
|
8100
|
+
"text": "ResizeObserver | undefined"
|
|
8101
|
+
},
|
|
8102
|
+
"privacy": "private"
|
|
8103
|
+
},
|
|
8104
|
+
{
|
|
8105
|
+
"kind": "field",
|
|
8106
|
+
"name": "OVERFLOW_MENU_LABEL",
|
|
8107
|
+
"type": {
|
|
8108
|
+
"text": "string"
|
|
8109
|
+
},
|
|
8110
|
+
"privacy": "private",
|
|
8111
|
+
"static": true,
|
|
8112
|
+
"readonly": true,
|
|
8113
|
+
"default": "\"Options\""
|
|
8114
|
+
},
|
|
7466
8115
|
{
|
|
7467
8116
|
"kind": "method",
|
|
7468
8117
|
"name": "setupOverflowHandler",
|
|
7469
8118
|
"privacy": "private"
|
|
8119
|
+
},
|
|
8120
|
+
{
|
|
8121
|
+
"kind": "field",
|
|
8122
|
+
"name": "renderIconButton",
|
|
8123
|
+
"privacy": "private"
|
|
8124
|
+
},
|
|
8125
|
+
{
|
|
8126
|
+
"kind": "method",
|
|
8127
|
+
"name": "getOverflowMenuSize",
|
|
8128
|
+
"privacy": "private",
|
|
8129
|
+
"return": {
|
|
8130
|
+
"type": {
|
|
8131
|
+
"text": "OVERFLOW_MENU_SIZE"
|
|
8132
|
+
}
|
|
8133
|
+
}
|
|
7470
8134
|
}
|
|
7471
8135
|
],
|
|
7472
8136
|
"attributes": [
|
|
@@ -7829,12 +8493,7 @@
|
|
|
7829
8493
|
"name": "footer"
|
|
7830
8494
|
}
|
|
7831
8495
|
],
|
|
7832
|
-
"members": [
|
|
7833
|
-
{
|
|
7834
|
-
"kind": "field",
|
|
7835
|
-
"name": "closeWorkspaceShell"
|
|
7836
|
-
}
|
|
7837
|
-
],
|
|
8496
|
+
"members": [],
|
|
7838
8497
|
"superclass": {
|
|
7839
8498
|
"name": "LitElement",
|
|
7840
8499
|
"package": "lit"
|