@carbon/ai-chat-components 1.4.0 → 1.5.0-rc.1
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/custom-elements.json +837 -284
- package/es/components/chat-history/src/chat-history.scss.js +1 -1
- package/es/components/chat-history/src/history-panel-item.d.ts +14 -0
- package/es/components/chat-history/src/history-panel-item.js +30 -0
- package/es/components/chat-history/src/history-panel-item.js.map +1 -1
- package/es/components/code-snippet/src/code-snippet.d.ts +5 -0
- package/es/components/code-snippet/src/code-snippet.js +17 -5
- package/es/components/code-snippet/src/code-snippet.js.map +1 -1
- package/es/components/feedback/src/feedback.d.ts +4 -0
- package/es/components/feedback/src/feedback.js +6 -4
- package/es/components/feedback/src/feedback.js.map +1 -1
- package/es/components/markdown/index.d.ts +3 -1
- package/es/components/markdown/index.js +1 -1
- package/es/components/markdown/src/markdown-renderer-types.d.ts +100 -0
- package/es/components/markdown/src/markdown-renderer-types.js +8 -0
- package/es/components/markdown/src/markdown-renderer-types.js.map +1 -0
- package/es/components/markdown/src/markdown-renderer.d.ts +14 -64
- package/es/components/markdown/src/markdown-renderer.js +120 -134
- package/es/components/markdown/src/markdown-renderer.js.map +1 -1
- package/es/components/markdown/src/markdown-token-tree.d.ts +50 -5
- package/es/components/markdown/src/markdown-token-tree.js +182 -47
- package/es/components/markdown/src/markdown-token-tree.js.map +1 -1
- package/es/components/markdown/src/markdown.d.ts +49 -1
- package/es/components/markdown/src/markdown.js +307 -106
- package/es/components/markdown/src/markdown.js.map +1 -1
- package/es/components/markdown/src/markdown.scss.js +1 -1
- package/es/components/markdown/src/plugins/markdown-it-task-lists.js +2 -5
- package/es/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -1
- package/es/components/markdown/src/utils/lit-directives.d.ts +17 -0
- package/es/components/markdown/src/utils/lit-directives.js +84 -0
- package/es/components/markdown/src/utils/lit-directives.js.map +1 -0
- package/es/components/markdown/src/utils/plugin-fallback.d.ts +33 -0
- package/es/components/markdown/src/utils/plugin-fallback.js +219 -0
- package/es/components/markdown/src/utils/plugin-fallback.js.map +1 -0
- package/es/components/markdown/src/utils/streaming-table.d.ts +28 -0
- package/es/components/markdown/src/utils/streaming-table.js +86 -0
- package/es/components/markdown/src/utils/streaming-table.js.map +1 -0
- package/es/components/markdown/src/utils/table-helpers.d.ts +17 -0
- package/es/components/markdown/src/utils/table-helpers.js +104 -2
- package/es/components/markdown/src/utils/table-helpers.js.map +1 -1
- package/es/components/table/src/table.js +4 -1
- package/es/components/table/src/table.js.map +1 -1
- package/es/components/truncated-text/src/truncated-text.scss.js +1 -1
- package/es/components/workspace-shell/src/workspace-shell.scss.js +1 -1
- package/es/react/markdown.d.ts +46 -2
- package/es/react/markdown.js +177 -20
- package/es/react/markdown.js.map +1 -1
- package/es-custom/components/chat-history/src/chat-history.scss.js +1 -1
- package/es-custom/components/chat-history/src/history-panel-item.d.ts +14 -0
- package/es-custom/components/chat-history/src/history-panel-item.js +30 -0
- package/es-custom/components/chat-history/src/history-panel-item.js.map +1 -1
- package/es-custom/components/code-snippet/src/code-snippet.d.ts +5 -0
- package/es-custom/components/code-snippet/src/code-snippet.js +17 -5
- package/es-custom/components/code-snippet/src/code-snippet.js.map +1 -1
- package/es-custom/components/feedback/src/feedback.d.ts +4 -0
- package/es-custom/components/feedback/src/feedback.js +6 -4
- package/es-custom/components/feedback/src/feedback.js.map +1 -1
- package/es-custom/components/markdown/index.d.ts +3 -1
- package/es-custom/components/markdown/index.js +1 -1
- package/es-custom/components/markdown/src/markdown-renderer-types.d.ts +100 -0
- package/es-custom/components/markdown/src/markdown-renderer-types.js +8 -0
- package/es-custom/components/markdown/src/markdown-renderer-types.js.map +1 -0
- package/es-custom/components/markdown/src/markdown-renderer.d.ts +14 -64
- package/es-custom/components/markdown/src/markdown-renderer.js +120 -134
- package/es-custom/components/markdown/src/markdown-renderer.js.map +1 -1
- package/es-custom/components/markdown/src/markdown-token-tree.d.ts +50 -5
- package/es-custom/components/markdown/src/markdown-token-tree.js +182 -47
- package/es-custom/components/markdown/src/markdown-token-tree.js.map +1 -1
- package/es-custom/components/markdown/src/markdown.d.ts +49 -1
- package/es-custom/components/markdown/src/markdown.js +307 -106
- package/es-custom/components/markdown/src/markdown.js.map +1 -1
- package/es-custom/components/markdown/src/markdown.scss.js +1 -1
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js +2 -5
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -1
- package/es-custom/components/markdown/src/utils/lit-directives.d.ts +17 -0
- package/es-custom/components/markdown/src/utils/lit-directives.js +84 -0
- package/es-custom/components/markdown/src/utils/lit-directives.js.map +1 -0
- package/es-custom/components/markdown/src/utils/plugin-fallback.d.ts +33 -0
- package/es-custom/components/markdown/src/utils/plugin-fallback.js +219 -0
- package/es-custom/components/markdown/src/utils/plugin-fallback.js.map +1 -0
- package/es-custom/components/markdown/src/utils/streaming-table.d.ts +28 -0
- package/es-custom/components/markdown/src/utils/streaming-table.js +86 -0
- package/es-custom/components/markdown/src/utils/streaming-table.js.map +1 -0
- package/es-custom/components/markdown/src/utils/table-helpers.d.ts +17 -0
- package/es-custom/components/markdown/src/utils/table-helpers.js +104 -2
- package/es-custom/components/markdown/src/utils/table-helpers.js.map +1 -1
- package/es-custom/components/table/src/table.js +4 -1
- package/es-custom/components/table/src/table.js.map +1 -1
- package/es-custom/components/truncated-text/src/truncated-text.scss.js +1 -1
- package/es-custom/components/workspace-shell/src/workspace-shell.scss.js +1 -1
- package/es-custom/react/markdown.d.ts +46 -2
- package/es-custom/react/markdown.js +177 -20
- package/es-custom/react/markdown.js.map +1 -1
- package/package.json +5 -4
- package/es/components/markdown/src/utils.d.ts +0 -4
- package/es/components/markdown/src/utils.js +0 -25
- package/es/components/markdown/src/utils.js.map +0 -1
- package/es-custom/components/markdown/src/utils.d.ts +0 -4
- package/es-custom/components/markdown/src/utils.js +0 -25
- package/es-custom/components/markdown/src/utils.js.map +0 -1
package/custom-elements.json
CHANGED
|
@@ -390,26 +390,6 @@
|
|
|
390
390
|
}
|
|
391
391
|
]
|
|
392
392
|
},
|
|
393
|
-
{
|
|
394
|
-
"kind": "javascript-module",
|
|
395
|
-
"path": "src/react/markdown.ts",
|
|
396
|
-
"declarations": [
|
|
397
|
-
{
|
|
398
|
-
"kind": "variable",
|
|
399
|
-
"name": "Markdown"
|
|
400
|
-
}
|
|
401
|
-
],
|
|
402
|
-
"exports": [
|
|
403
|
-
{
|
|
404
|
-
"kind": "js",
|
|
405
|
-
"name": "default",
|
|
406
|
-
"declaration": {
|
|
407
|
-
"name": "Markdown",
|
|
408
|
-
"module": "src/react/markdown.ts"
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
]
|
|
412
|
-
},
|
|
413
393
|
{
|
|
414
394
|
"kind": "javascript-module",
|
|
415
395
|
"path": "src/react/panel.ts",
|
|
@@ -729,13 +709,13 @@
|
|
|
729
709
|
},
|
|
730
710
|
{
|
|
731
711
|
"kind": "javascript-module",
|
|
732
|
-
"path": "src/components/
|
|
712
|
+
"path": "src/components/carousel/index.ts",
|
|
733
713
|
"declarations": [],
|
|
734
714
|
"exports": []
|
|
735
715
|
},
|
|
736
716
|
{
|
|
737
717
|
"kind": "javascript-module",
|
|
738
|
-
"path": "src/components/
|
|
718
|
+
"path": "src/components/card/index.ts",
|
|
739
719
|
"declarations": [],
|
|
740
720
|
"exports": []
|
|
741
721
|
},
|
|
@@ -980,6 +960,70 @@
|
|
|
980
960
|
"name": "default",
|
|
981
961
|
"module": "./src/markdown.js"
|
|
982
962
|
}
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"kind": "js",
|
|
966
|
+
"name": "CDSAIChatMarkdown",
|
|
967
|
+
"declaration": {
|
|
968
|
+
"name": "CDSAIChatMarkdown",
|
|
969
|
+
"module": "./src/markdown.js"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"kind": "js",
|
|
974
|
+
"name": "MarkdownCustomRenderers",
|
|
975
|
+
"declaration": {
|
|
976
|
+
"name": "MarkdownCustomRenderers",
|
|
977
|
+
"module": "./src/markdown-renderer-types.js"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"kind": "js",
|
|
982
|
+
"name": "MarkdownRendererCodeBlockArgs",
|
|
983
|
+
"declaration": {
|
|
984
|
+
"name": "MarkdownRendererCodeBlockArgs",
|
|
985
|
+
"module": "./src/markdown-renderer-types.js"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"kind": "js",
|
|
990
|
+
"name": "MarkdownRendererCodeBlockData",
|
|
991
|
+
"declaration": {
|
|
992
|
+
"name": "MarkdownRendererCodeBlockData",
|
|
993
|
+
"module": "./src/markdown-renderer-types.js"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"kind": "js",
|
|
998
|
+
"name": "MarkdownRendererTableArgs",
|
|
999
|
+
"declaration": {
|
|
1000
|
+
"name": "MarkdownRendererTableArgs",
|
|
1001
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"kind": "js",
|
|
1006
|
+
"name": "MarkdownRendererTableData",
|
|
1007
|
+
"declaration": {
|
|
1008
|
+
"name": "MarkdownRendererTableData",
|
|
1009
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"kind": "js",
|
|
1014
|
+
"name": "MarkdownItPlugin",
|
|
1015
|
+
"declaration": {
|
|
1016
|
+
"name": "MarkdownItPlugin",
|
|
1017
|
+
"module": "./src/markdown-token-tree.js"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"kind": "js",
|
|
1022
|
+
"name": "TokenTree",
|
|
1023
|
+
"declaration": {
|
|
1024
|
+
"name": "TokenTree",
|
|
1025
|
+
"module": "./src/markdown-token-tree.js"
|
|
1026
|
+
}
|
|
983
1027
|
}
|
|
984
1028
|
]
|
|
985
1029
|
},
|
|
@@ -2515,6 +2559,151 @@
|
|
|
2515
2559
|
}
|
|
2516
2560
|
]
|
|
2517
2561
|
},
|
|
2562
|
+
{
|
|
2563
|
+
"kind": "javascript-module",
|
|
2564
|
+
"path": "src/components/carousel/src/carousel.ts",
|
|
2565
|
+
"declarations": [
|
|
2566
|
+
{
|
|
2567
|
+
"kind": "class",
|
|
2568
|
+
"description": "Carousel component",
|
|
2569
|
+
"name": "CDSAICarousel",
|
|
2570
|
+
"slots": [
|
|
2571
|
+
{
|
|
2572
|
+
"description": "The body",
|
|
2573
|
+
"name": "body"
|
|
2574
|
+
}
|
|
2575
|
+
],
|
|
2576
|
+
"members": [
|
|
2577
|
+
{
|
|
2578
|
+
"kind": "field",
|
|
2579
|
+
"name": "nextBtnText",
|
|
2580
|
+
"type": {
|
|
2581
|
+
"text": "string | undefined"
|
|
2582
|
+
},
|
|
2583
|
+
"description": "Text for the next button",
|
|
2584
|
+
"attribute": "nextBtnText"
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
"kind": "field",
|
|
2588
|
+
"name": "previousBtnText",
|
|
2589
|
+
"type": {
|
|
2590
|
+
"text": "string | undefined"
|
|
2591
|
+
},
|
|
2592
|
+
"description": "Text for the previous button",
|
|
2593
|
+
"attribute": "previousBtnText"
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
"kind": "field",
|
|
2597
|
+
"name": "container",
|
|
2598
|
+
"type": {
|
|
2599
|
+
"text": "Array<HTMLElement> | undefined"
|
|
2600
|
+
},
|
|
2601
|
+
"privacy": "private"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"kind": "field",
|
|
2605
|
+
"name": "carousel",
|
|
2606
|
+
"type": {
|
|
2607
|
+
"text": "InitCarousel | undefined"
|
|
2608
|
+
},
|
|
2609
|
+
"privacy": "private"
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"kind": "field",
|
|
2613
|
+
"name": "_currentIndex",
|
|
2614
|
+
"type": {
|
|
2615
|
+
"text": "number"
|
|
2616
|
+
},
|
|
2617
|
+
"privacy": "private",
|
|
2618
|
+
"default": "0"
|
|
2619
|
+
},
|
|
2620
|
+
{
|
|
2621
|
+
"kind": "field",
|
|
2622
|
+
"name": "_lastIndex",
|
|
2623
|
+
"type": {
|
|
2624
|
+
"text": "number"
|
|
2625
|
+
},
|
|
2626
|
+
"privacy": "private",
|
|
2627
|
+
"default": "0"
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
"kind": "method",
|
|
2631
|
+
"name": "_handlePrev",
|
|
2632
|
+
"privacy": "private"
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
"kind": "method",
|
|
2636
|
+
"name": "_handleNext",
|
|
2637
|
+
"privacy": "private"
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"kind": "method",
|
|
2641
|
+
"name": "_dispatchChange",
|
|
2642
|
+
"privacy": "private",
|
|
2643
|
+
"parameters": [
|
|
2644
|
+
{
|
|
2645
|
+
"name": "data",
|
|
2646
|
+
"type": {
|
|
2647
|
+
"text": "CarouselResponse"
|
|
2648
|
+
}
|
|
2649
|
+
}
|
|
2650
|
+
]
|
|
2651
|
+
},
|
|
2652
|
+
{
|
|
2653
|
+
"kind": "field",
|
|
2654
|
+
"name": "eventOnChange",
|
|
2655
|
+
"static": true,
|
|
2656
|
+
"readonly": true
|
|
2657
|
+
}
|
|
2658
|
+
],
|
|
2659
|
+
"events": [
|
|
2660
|
+
{
|
|
2661
|
+
"type": {
|
|
2662
|
+
"text": "CustomEvent"
|
|
2663
|
+
}
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"description": "custom event for when the carousel changes",
|
|
2667
|
+
"name": "cds-aichat-carousel-onchange"
|
|
2668
|
+
}
|
|
2669
|
+
],
|
|
2670
|
+
"attributes": [
|
|
2671
|
+
{
|
|
2672
|
+
"name": "nextBtnText",
|
|
2673
|
+
"type": {
|
|
2674
|
+
"text": "string | undefined"
|
|
2675
|
+
},
|
|
2676
|
+
"description": "Text for the next button",
|
|
2677
|
+
"fieldName": "nextBtnText"
|
|
2678
|
+
},
|
|
2679
|
+
{
|
|
2680
|
+
"name": "previousBtnText",
|
|
2681
|
+
"type": {
|
|
2682
|
+
"text": "string | undefined"
|
|
2683
|
+
},
|
|
2684
|
+
"description": "Text for the previous button",
|
|
2685
|
+
"fieldName": "previousBtnText"
|
|
2686
|
+
}
|
|
2687
|
+
],
|
|
2688
|
+
"superclass": {
|
|
2689
|
+
"name": "LitElement",
|
|
2690
|
+
"package": "lit"
|
|
2691
|
+
},
|
|
2692
|
+
"tagName": "cds-aichat-carousel",
|
|
2693
|
+
"customElement": true
|
|
2694
|
+
}
|
|
2695
|
+
],
|
|
2696
|
+
"exports": [
|
|
2697
|
+
{
|
|
2698
|
+
"kind": "js",
|
|
2699
|
+
"name": "default",
|
|
2700
|
+
"declaration": {
|
|
2701
|
+
"name": "CDSAICarousel",
|
|
2702
|
+
"module": "src/components/carousel/src/carousel.ts"
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
]
|
|
2706
|
+
},
|
|
2518
2707
|
{
|
|
2519
2708
|
"kind": "javascript-module",
|
|
2520
2709
|
"path": "src/components/card/src/card-footer.ts",
|
|
@@ -2762,199 +2951,54 @@
|
|
|
2762
2951
|
},
|
|
2763
2952
|
{
|
|
2764
2953
|
"kind": "javascript-module",
|
|
2765
|
-
"path": "src/components/
|
|
2954
|
+
"path": "src/components/chain-of-thought/src/chain-of-thought-step.ts",
|
|
2766
2955
|
"declarations": [
|
|
2767
2956
|
{
|
|
2768
2957
|
"kind": "class",
|
|
2769
|
-
"description": "
|
|
2770
|
-
"name": "
|
|
2771
|
-
"slots": [
|
|
2772
|
-
{
|
|
2773
|
-
"description": "The body",
|
|
2774
|
-
"name": "body"
|
|
2775
|
-
}
|
|
2776
|
-
],
|
|
2958
|
+
"description": "Chain of though step",
|
|
2959
|
+
"name": "CDSAIChatChainOfThoughtStep",
|
|
2777
2960
|
"members": [
|
|
2778
2961
|
{
|
|
2779
2962
|
"kind": "field",
|
|
2780
|
-
"name": "
|
|
2963
|
+
"name": "title",
|
|
2781
2964
|
"type": {
|
|
2782
|
-
"text": "string
|
|
2965
|
+
"text": "string"
|
|
2783
2966
|
},
|
|
2784
|
-
"
|
|
2785
|
-
"attribute": "
|
|
2967
|
+
"default": "\"\"",
|
|
2968
|
+
"attribute": "title"
|
|
2786
2969
|
},
|
|
2787
2970
|
{
|
|
2788
2971
|
"kind": "field",
|
|
2789
|
-
"name": "
|
|
2972
|
+
"name": "stepNumber",
|
|
2790
2973
|
"type": {
|
|
2791
|
-
"text": "
|
|
2974
|
+
"text": "number"
|
|
2792
2975
|
},
|
|
2793
|
-
"
|
|
2794
|
-
"attribute": "
|
|
2976
|
+
"default": "0",
|
|
2977
|
+
"attribute": "step-number",
|
|
2978
|
+
"reflects": true
|
|
2795
2979
|
},
|
|
2796
2980
|
{
|
|
2797
2981
|
"kind": "field",
|
|
2798
|
-
"name": "
|
|
2982
|
+
"name": "labelText",
|
|
2799
2983
|
"type": {
|
|
2800
|
-
"text": "
|
|
2984
|
+
"text": "string"
|
|
2801
2985
|
},
|
|
2802
|
-
"
|
|
2986
|
+
"default": "\"\"",
|
|
2987
|
+
"attribute": "label-text"
|
|
2803
2988
|
},
|
|
2804
2989
|
{
|
|
2805
2990
|
"kind": "field",
|
|
2806
|
-
"name": "
|
|
2991
|
+
"name": "status",
|
|
2807
2992
|
"type": {
|
|
2808
|
-
"text": "
|
|
2993
|
+
"text": "ChainOfThoughtStepStatus"
|
|
2809
2994
|
},
|
|
2810
|
-
"
|
|
2995
|
+
"attribute": "status"
|
|
2811
2996
|
},
|
|
2812
2997
|
{
|
|
2813
2998
|
"kind": "field",
|
|
2814
|
-
"name": "
|
|
2999
|
+
"name": "open",
|
|
2815
3000
|
"type": {
|
|
2816
|
-
"text": "
|
|
2817
|
-
},
|
|
2818
|
-
"privacy": "private",
|
|
2819
|
-
"default": "0"
|
|
2820
|
-
},
|
|
2821
|
-
{
|
|
2822
|
-
"kind": "field",
|
|
2823
|
-
"name": "_lastIndex",
|
|
2824
|
-
"type": {
|
|
2825
|
-
"text": "number"
|
|
2826
|
-
},
|
|
2827
|
-
"privacy": "private",
|
|
2828
|
-
"default": "0"
|
|
2829
|
-
},
|
|
2830
|
-
{
|
|
2831
|
-
"kind": "method",
|
|
2832
|
-
"name": "_handlePrev",
|
|
2833
|
-
"privacy": "private"
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"kind": "method",
|
|
2837
|
-
"name": "_handleNext",
|
|
2838
|
-
"privacy": "private"
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"kind": "method",
|
|
2842
|
-
"name": "_dispatchChange",
|
|
2843
|
-
"privacy": "private",
|
|
2844
|
-
"parameters": [
|
|
2845
|
-
{
|
|
2846
|
-
"name": "data",
|
|
2847
|
-
"type": {
|
|
2848
|
-
"text": "CarouselResponse"
|
|
2849
|
-
}
|
|
2850
|
-
}
|
|
2851
|
-
]
|
|
2852
|
-
},
|
|
2853
|
-
{
|
|
2854
|
-
"kind": "field",
|
|
2855
|
-
"name": "eventOnChange",
|
|
2856
|
-
"static": true,
|
|
2857
|
-
"readonly": true
|
|
2858
|
-
}
|
|
2859
|
-
],
|
|
2860
|
-
"events": [
|
|
2861
|
-
{
|
|
2862
|
-
"type": {
|
|
2863
|
-
"text": "CustomEvent"
|
|
2864
|
-
}
|
|
2865
|
-
},
|
|
2866
|
-
{
|
|
2867
|
-
"description": "custom event for when the carousel changes",
|
|
2868
|
-
"name": "cds-aichat-carousel-onchange"
|
|
2869
|
-
}
|
|
2870
|
-
],
|
|
2871
|
-
"attributes": [
|
|
2872
|
-
{
|
|
2873
|
-
"name": "nextBtnText",
|
|
2874
|
-
"type": {
|
|
2875
|
-
"text": "string | undefined"
|
|
2876
|
-
},
|
|
2877
|
-
"description": "Text for the next button",
|
|
2878
|
-
"fieldName": "nextBtnText"
|
|
2879
|
-
},
|
|
2880
|
-
{
|
|
2881
|
-
"name": "previousBtnText",
|
|
2882
|
-
"type": {
|
|
2883
|
-
"text": "string | undefined"
|
|
2884
|
-
},
|
|
2885
|
-
"description": "Text for the previous button",
|
|
2886
|
-
"fieldName": "previousBtnText"
|
|
2887
|
-
}
|
|
2888
|
-
],
|
|
2889
|
-
"superclass": {
|
|
2890
|
-
"name": "LitElement",
|
|
2891
|
-
"package": "lit"
|
|
2892
|
-
},
|
|
2893
|
-
"tagName": "cds-aichat-carousel",
|
|
2894
|
-
"customElement": true
|
|
2895
|
-
}
|
|
2896
|
-
],
|
|
2897
|
-
"exports": [
|
|
2898
|
-
{
|
|
2899
|
-
"kind": "js",
|
|
2900
|
-
"name": "default",
|
|
2901
|
-
"declaration": {
|
|
2902
|
-
"name": "CDSAICarousel",
|
|
2903
|
-
"module": "src/components/carousel/src/carousel.ts"
|
|
2904
|
-
}
|
|
2905
|
-
}
|
|
2906
|
-
]
|
|
2907
|
-
},
|
|
2908
|
-
{
|
|
2909
|
-
"kind": "javascript-module",
|
|
2910
|
-
"path": "src/components/chain-of-thought/src/chain-of-thought-step.ts",
|
|
2911
|
-
"declarations": [
|
|
2912
|
-
{
|
|
2913
|
-
"kind": "class",
|
|
2914
|
-
"description": "Chain of though step",
|
|
2915
|
-
"name": "CDSAIChatChainOfThoughtStep",
|
|
2916
|
-
"members": [
|
|
2917
|
-
{
|
|
2918
|
-
"kind": "field",
|
|
2919
|
-
"name": "title",
|
|
2920
|
-
"type": {
|
|
2921
|
-
"text": "string"
|
|
2922
|
-
},
|
|
2923
|
-
"default": "\"\"",
|
|
2924
|
-
"attribute": "title"
|
|
2925
|
-
},
|
|
2926
|
-
{
|
|
2927
|
-
"kind": "field",
|
|
2928
|
-
"name": "stepNumber",
|
|
2929
|
-
"type": {
|
|
2930
|
-
"text": "number"
|
|
2931
|
-
},
|
|
2932
|
-
"default": "0",
|
|
2933
|
-
"attribute": "step-number",
|
|
2934
|
-
"reflects": true
|
|
2935
|
-
},
|
|
2936
|
-
{
|
|
2937
|
-
"kind": "field",
|
|
2938
|
-
"name": "labelText",
|
|
2939
|
-
"type": {
|
|
2940
|
-
"text": "string"
|
|
2941
|
-
},
|
|
2942
|
-
"default": "\"\"",
|
|
2943
|
-
"attribute": "label-text"
|
|
2944
|
-
},
|
|
2945
|
-
{
|
|
2946
|
-
"kind": "field",
|
|
2947
|
-
"name": "status",
|
|
2948
|
-
"type": {
|
|
2949
|
-
"text": "ChainOfThoughtStepStatus"
|
|
2950
|
-
},
|
|
2951
|
-
"attribute": "status"
|
|
2952
|
-
},
|
|
2953
|
-
{
|
|
2954
|
-
"kind": "field",
|
|
2955
|
-
"name": "open",
|
|
2956
|
-
"type": {
|
|
2957
|
-
"text": "boolean"
|
|
3001
|
+
"text": "boolean"
|
|
2958
3002
|
},
|
|
2959
3003
|
"default": "false",
|
|
2960
3004
|
"attribute": "open",
|
|
@@ -4646,6 +4690,17 @@
|
|
|
4646
4690
|
"attribute": "show-actions",
|
|
4647
4691
|
"reflects": true
|
|
4648
4692
|
},
|
|
4693
|
+
{
|
|
4694
|
+
"kind": "field",
|
|
4695
|
+
"name": "parentMenuExpanded",
|
|
4696
|
+
"type": {
|
|
4697
|
+
"text": "boolean"
|
|
4698
|
+
},
|
|
4699
|
+
"default": "true",
|
|
4700
|
+
"description": "`true` if the parent menu is expanded.\nThis is automatically set based on the parent history-panel-menu's expanded attribute.",
|
|
4701
|
+
"attribute": "parent-menu-expanded",
|
|
4702
|
+
"reflects": true
|
|
4703
|
+
},
|
|
4649
4704
|
{
|
|
4650
4705
|
"kind": "field",
|
|
4651
4706
|
"name": "input",
|
|
@@ -4722,6 +4777,24 @@
|
|
|
4722
4777
|
"privacy": "private",
|
|
4723
4778
|
"description": "MutationObserver to watch for changes to parent panel's always-show-actions attribute"
|
|
4724
4779
|
},
|
|
4780
|
+
{
|
|
4781
|
+
"kind": "field",
|
|
4782
|
+
"name": "_parentMenuToggleListener",
|
|
4783
|
+
"type": {
|
|
4784
|
+
"text": "EventListener | undefined"
|
|
4785
|
+
},
|
|
4786
|
+
"privacy": "private",
|
|
4787
|
+
"description": "Event listener for parent menu toggle events"
|
|
4788
|
+
},
|
|
4789
|
+
{
|
|
4790
|
+
"kind": "field",
|
|
4791
|
+
"name": "_parentMenu",
|
|
4792
|
+
"type": {
|
|
4793
|
+
"text": "HTMLElement | undefined"
|
|
4794
|
+
},
|
|
4795
|
+
"privacy": "private",
|
|
4796
|
+
"description": "Reference to parent menu element"
|
|
4797
|
+
},
|
|
4725
4798
|
{
|
|
4726
4799
|
"kind": "method",
|
|
4727
4800
|
"name": "_adjustMenuPosition",
|
|
@@ -4835,6 +4908,15 @@
|
|
|
4835
4908
|
"default": "false",
|
|
4836
4909
|
"description": "`true` to always show the actions menu for this item.\nWhen set, the actions menu will be visible without requiring hover or selection.\nCan be set directly on the item or inherited from the parent panel's `show-actions` attribute.",
|
|
4837
4910
|
"fieldName": "showActions"
|
|
4911
|
+
},
|
|
4912
|
+
{
|
|
4913
|
+
"name": "parent-menu-expanded",
|
|
4914
|
+
"type": {
|
|
4915
|
+
"text": "boolean"
|
|
4916
|
+
},
|
|
4917
|
+
"default": "true",
|
|
4918
|
+
"description": "`true` if the parent menu is expanded.\nThis is automatically set based on the parent history-panel-menu's expanded attribute.",
|
|
4919
|
+
"fieldName": "parentMenuExpanded"
|
|
4838
4920
|
}
|
|
4839
4921
|
],
|
|
4840
4922
|
"mixins": [
|
|
@@ -8957,6 +9039,16 @@
|
|
|
8957
9039
|
"description": "Fallback language to use when detection fails.",
|
|
8958
9040
|
"attribute": "default-language"
|
|
8959
9041
|
},
|
|
9042
|
+
{
|
|
9043
|
+
"kind": "field",
|
|
9044
|
+
"name": "detectLanguage",
|
|
9045
|
+
"type": {
|
|
9046
|
+
"text": "boolean"
|
|
9047
|
+
},
|
|
9048
|
+
"default": "false",
|
|
9049
|
+
"description": "Show the detected language label in the snippet header. When `false`\n(the default), only an explicit `language` attribute renders a label.",
|
|
9050
|
+
"attribute": "detect-language"
|
|
9051
|
+
},
|
|
8960
9052
|
{
|
|
8961
9053
|
"kind": "field",
|
|
8962
9054
|
"name": "copyText",
|
|
@@ -9339,6 +9431,15 @@
|
|
|
9339
9431
|
"description": "Fallback language to use when detection fails.",
|
|
9340
9432
|
"fieldName": "defaultLanguage"
|
|
9341
9433
|
},
|
|
9434
|
+
{
|
|
9435
|
+
"name": "detect-language",
|
|
9436
|
+
"type": {
|
|
9437
|
+
"text": "boolean"
|
|
9438
|
+
},
|
|
9439
|
+
"default": "false",
|
|
9440
|
+
"description": "Show the detected language label in the snippet header. When `false`\n(the default), only an explicit `language` attribute renders a label.",
|
|
9441
|
+
"fieldName": "detectLanguage"
|
|
9442
|
+
},
|
|
9342
9443
|
{
|
|
9343
9444
|
"name": "copy-text",
|
|
9344
9445
|
"type": {
|
|
@@ -10164,6 +10265,16 @@
|
|
|
10164
10265
|
},
|
|
10165
10266
|
"description": "The initial values to display in the feedback."
|
|
10166
10267
|
},
|
|
10268
|
+
{
|
|
10269
|
+
"kind": "field",
|
|
10270
|
+
"name": "maxLength",
|
|
10271
|
+
"type": {
|
|
10272
|
+
"text": "number | undefined"
|
|
10273
|
+
},
|
|
10274
|
+
"description": "The maximum number of characters allowed in the feedback text area.",
|
|
10275
|
+
"attribute": "max-length",
|
|
10276
|
+
"reflects": true
|
|
10277
|
+
},
|
|
10167
10278
|
{
|
|
10168
10279
|
"kind": "field",
|
|
10169
10280
|
"name": "title",
|
|
@@ -10390,6 +10501,14 @@
|
|
|
10390
10501
|
"description": "Indicates if the feedback details are readonly.",
|
|
10391
10502
|
"fieldName": "isReadonly"
|
|
10392
10503
|
},
|
|
10504
|
+
{
|
|
10505
|
+
"name": "max-length",
|
|
10506
|
+
"type": {
|
|
10507
|
+
"text": "number | undefined"
|
|
10508
|
+
},
|
|
10509
|
+
"description": "The maximum number of characters allowed in the feedback text area.",
|
|
10510
|
+
"fieldName": "maxLength"
|
|
10511
|
+
},
|
|
10393
10512
|
{
|
|
10394
10513
|
"name": "title",
|
|
10395
10514
|
"type": {
|
|
@@ -10511,16 +10630,22 @@
|
|
|
10511
10630
|
}
|
|
10512
10631
|
]
|
|
10513
10632
|
},
|
|
10633
|
+
{
|
|
10634
|
+
"kind": "javascript-module",
|
|
10635
|
+
"path": "src/components/markdown/src/markdown-renderer-types.ts",
|
|
10636
|
+
"declarations": [],
|
|
10637
|
+
"exports": []
|
|
10638
|
+
},
|
|
10514
10639
|
{
|
|
10515
10640
|
"kind": "javascript-module",
|
|
10516
10641
|
"path": "src/components/markdown/src/markdown-renderer.ts",
|
|
10517
10642
|
"declarations": [
|
|
10518
10643
|
{
|
|
10519
10644
|
"kind": "function",
|
|
10520
|
-
"name": "
|
|
10645
|
+
"name": "renderMarkdownTree",
|
|
10521
10646
|
"return": {
|
|
10522
10647
|
"type": {
|
|
10523
|
-
"text": "TemplateResult"
|
|
10648
|
+
"text": "{\n template: TemplateResult;\n batch: MarkdownRendererSlotDescriptor[];\n}"
|
|
10524
10649
|
}
|
|
10525
10650
|
},
|
|
10526
10651
|
"parameters": [
|
|
@@ -10537,74 +10662,163 @@
|
|
|
10537
10662
|
}
|
|
10538
10663
|
}
|
|
10539
10664
|
],
|
|
10540
|
-
"description": "
|
|
10541
|
-
}
|
|
10542
|
-
],
|
|
10543
|
-
"exports": [
|
|
10544
|
-
{
|
|
10545
|
-
"kind": "js",
|
|
10546
|
-
"name": "renderTokenTree",
|
|
10547
|
-
"declaration": {
|
|
10548
|
-
"name": "renderTokenTree",
|
|
10549
|
-
"module": "src/components/markdown/src/markdown-renderer.ts"
|
|
10550
|
-
}
|
|
10551
|
-
}
|
|
10552
|
-
]
|
|
10553
|
-
},
|
|
10554
|
-
{
|
|
10555
|
-
"kind": "javascript-module",
|
|
10556
|
-
"path": "src/components/markdown/src/markdown-token-tree.ts",
|
|
10557
|
-
"declarations": [
|
|
10665
|
+
"description": "Top-level entry: renders a markdown token tree to a Lit `TemplateResult`\nand returns the batch of custom-renderer slot descriptors collected along\nthe way. Callers receive both pieces in one call so the batch can't be\naccidentally dropped."
|
|
10666
|
+
},
|
|
10558
10667
|
{
|
|
10559
10668
|
"kind": "function",
|
|
10560
|
-
"name": "
|
|
10669
|
+
"name": "renderTokenTree",
|
|
10561
10670
|
"return": {
|
|
10562
10671
|
"type": {
|
|
10563
|
-
"text": "
|
|
10672
|
+
"text": "TemplateResult"
|
|
10564
10673
|
}
|
|
10565
10674
|
},
|
|
10566
10675
|
"parameters": [
|
|
10567
10676
|
{
|
|
10568
|
-
"name": "
|
|
10677
|
+
"name": "node",
|
|
10569
10678
|
"type": {
|
|
10570
|
-
"text": "
|
|
10679
|
+
"text": "TokenTree"
|
|
10571
10680
|
}
|
|
10572
10681
|
},
|
|
10573
10682
|
{
|
|
10574
|
-
"name": "
|
|
10575
|
-
"default": "true"
|
|
10576
|
-
}
|
|
10577
|
-
],
|
|
10578
|
-
"description": "Parses markdown text into a flat array of markdown-it tokens."
|
|
10579
|
-
},
|
|
10580
|
-
{
|
|
10581
|
-
"kind": "function",
|
|
10582
|
-
"name": "buildTokenTree",
|
|
10583
|
-
"return": {
|
|
10584
|
-
"type": {
|
|
10585
|
-
"text": "TokenTree"
|
|
10586
|
-
}
|
|
10587
|
-
},
|
|
10588
|
-
"parameters": [
|
|
10589
|
-
{
|
|
10590
|
-
"name": "tokens",
|
|
10683
|
+
"name": "options",
|
|
10591
10684
|
"type": {
|
|
10592
|
-
"text": "
|
|
10685
|
+
"text": "RenderTokenTreeOptions"
|
|
10593
10686
|
}
|
|
10594
10687
|
}
|
|
10595
10688
|
],
|
|
10596
|
-
"description": "Converts
|
|
10689
|
+
"description": "Converts TokenTree to Lit TemplateResult.\n\nRecursive renderer; external callers should use renderMarkdownTree\nwhich collects the slot-descriptor batch."
|
|
10690
|
+
}
|
|
10691
|
+
],
|
|
10692
|
+
"exports": [
|
|
10693
|
+
{
|
|
10694
|
+
"kind": "js",
|
|
10695
|
+
"name": "MarkdownCustomRenderers",
|
|
10696
|
+
"declaration": {
|
|
10697
|
+
"name": "MarkdownCustomRenderers",
|
|
10698
|
+
"module": "./markdown-renderer-types.js"
|
|
10699
|
+
}
|
|
10597
10700
|
},
|
|
10598
10701
|
{
|
|
10599
|
-
"kind": "
|
|
10600
|
-
"name": "
|
|
10601
|
-
"
|
|
10602
|
-
"
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10702
|
+
"kind": "js",
|
|
10703
|
+
"name": "MarkdownRendererCodeBlockArgs",
|
|
10704
|
+
"declaration": {
|
|
10705
|
+
"name": "MarkdownRendererCodeBlockArgs",
|
|
10706
|
+
"module": "./markdown-renderer-types.js"
|
|
10707
|
+
}
|
|
10708
|
+
},
|
|
10709
|
+
{
|
|
10710
|
+
"kind": "js",
|
|
10711
|
+
"name": "MarkdownRendererCodeBlockData",
|
|
10712
|
+
"declaration": {
|
|
10713
|
+
"name": "MarkdownRendererCodeBlockData",
|
|
10714
|
+
"module": "./markdown-renderer-types.js"
|
|
10715
|
+
}
|
|
10716
|
+
},
|
|
10717
|
+
{
|
|
10718
|
+
"kind": "js",
|
|
10719
|
+
"name": "MarkdownRendererSlotDescriptor",
|
|
10720
|
+
"declaration": {
|
|
10721
|
+
"name": "MarkdownRendererSlotDescriptor",
|
|
10722
|
+
"module": "./markdown-renderer-types.js"
|
|
10723
|
+
}
|
|
10724
|
+
},
|
|
10725
|
+
{
|
|
10726
|
+
"kind": "js",
|
|
10727
|
+
"name": "MarkdownRendererTableArgs",
|
|
10728
|
+
"declaration": {
|
|
10729
|
+
"name": "MarkdownRendererTableArgs",
|
|
10730
|
+
"module": "./markdown-renderer-types.js"
|
|
10731
|
+
}
|
|
10732
|
+
},
|
|
10733
|
+
{
|
|
10734
|
+
"kind": "js",
|
|
10735
|
+
"name": "MarkdownRendererTableData",
|
|
10736
|
+
"declaration": {
|
|
10737
|
+
"name": "MarkdownRendererTableData",
|
|
10738
|
+
"module": "./markdown-renderer-types.js"
|
|
10739
|
+
}
|
|
10740
|
+
},
|
|
10741
|
+
{
|
|
10742
|
+
"kind": "js",
|
|
10743
|
+
"name": "RenderTokenTreeOptions",
|
|
10744
|
+
"declaration": {
|
|
10745
|
+
"name": "RenderTokenTreeOptions",
|
|
10746
|
+
"module": "./markdown-renderer-types.js"
|
|
10747
|
+
}
|
|
10748
|
+
},
|
|
10749
|
+
{
|
|
10750
|
+
"kind": "js",
|
|
10751
|
+
"name": "renderMarkdownTree",
|
|
10752
|
+
"declaration": {
|
|
10753
|
+
"name": "renderMarkdownTree",
|
|
10754
|
+
"module": "src/components/markdown/src/markdown-renderer.ts"
|
|
10755
|
+
}
|
|
10756
|
+
},
|
|
10757
|
+
{
|
|
10758
|
+
"kind": "js",
|
|
10759
|
+
"name": "renderTokenTree",
|
|
10760
|
+
"declaration": {
|
|
10761
|
+
"name": "renderTokenTree",
|
|
10762
|
+
"module": "src/components/markdown/src/markdown-renderer.ts"
|
|
10763
|
+
}
|
|
10764
|
+
}
|
|
10765
|
+
]
|
|
10766
|
+
},
|
|
10767
|
+
{
|
|
10768
|
+
"kind": "javascript-module",
|
|
10769
|
+
"path": "src/components/markdown/src/markdown-token-tree.ts",
|
|
10770
|
+
"declarations": [
|
|
10771
|
+
{
|
|
10772
|
+
"kind": "function",
|
|
10773
|
+
"name": "getMarkdownIt",
|
|
10774
|
+
"return": {
|
|
10775
|
+
"type": {
|
|
10776
|
+
"text": "MarkdownIt"
|
|
10777
|
+
}
|
|
10778
|
+
},
|
|
10779
|
+
"parameters": [
|
|
10780
|
+
{
|
|
10781
|
+
"name": "plugins",
|
|
10782
|
+
"optional": true,
|
|
10783
|
+
"type": {
|
|
10784
|
+
"text": "MarkdownItPlugin[]"
|
|
10785
|
+
}
|
|
10786
|
+
},
|
|
10787
|
+
{
|
|
10788
|
+
"name": "removeHtml",
|
|
10789
|
+
"default": "false"
|
|
10790
|
+
}
|
|
10791
|
+
],
|
|
10792
|
+
"description": "Returns a (cached) markdown-it instance for the given plugin set, choosing the\nhtml-enabled variant or the html-disabled (HTML-neutralizing) variant based on\n`removeHtml`. Calling with the same `plugins` reference and `removeHtml` returns\nthe same instance."
|
|
10793
|
+
},
|
|
10794
|
+
{
|
|
10795
|
+
"kind": "function",
|
|
10796
|
+
"name": "buildTokenTree",
|
|
10797
|
+
"return": {
|
|
10798
|
+
"type": {
|
|
10799
|
+
"text": "TokenTree"
|
|
10800
|
+
}
|
|
10801
|
+
},
|
|
10802
|
+
"parameters": [
|
|
10803
|
+
{
|
|
10804
|
+
"name": "tokens",
|
|
10805
|
+
"type": {
|
|
10806
|
+
"text": "Token[]"
|
|
10807
|
+
}
|
|
10808
|
+
}
|
|
10809
|
+
],
|
|
10810
|
+
"description": "Converts a flat list of markdown-it tokens into a tree."
|
|
10811
|
+
},
|
|
10812
|
+
{
|
|
10813
|
+
"kind": "function",
|
|
10814
|
+
"name": "diffTokenTree",
|
|
10815
|
+
"return": {
|
|
10816
|
+
"type": {
|
|
10817
|
+
"text": "TokenTree"
|
|
10818
|
+
}
|
|
10819
|
+
},
|
|
10820
|
+
"parameters": [
|
|
10821
|
+
{
|
|
10608
10822
|
"name": "oldTree",
|
|
10609
10823
|
"type": {
|
|
10610
10824
|
"text": "TokenTree | undefined"
|
|
@@ -10624,7 +10838,7 @@
|
|
|
10624
10838
|
"name": "markdownToTokenTree",
|
|
10625
10839
|
"return": {
|
|
10626
10840
|
"type": {
|
|
10627
|
-
"text": "
|
|
10841
|
+
"text": "MarkdownToTokenTreeResult"
|
|
10628
10842
|
}
|
|
10629
10843
|
},
|
|
10630
10844
|
"parameters": [
|
|
@@ -10636,25 +10850,27 @@
|
|
|
10636
10850
|
},
|
|
10637
10851
|
{
|
|
10638
10852
|
"name": "lastTree",
|
|
10639
|
-
"optional": true,
|
|
10640
10853
|
"type": {
|
|
10641
|
-
"text": "TokenTree"
|
|
10854
|
+
"text": "TokenTree | undefined"
|
|
10642
10855
|
}
|
|
10643
10856
|
},
|
|
10644
10857
|
{
|
|
10645
|
-
"name": "
|
|
10646
|
-
"default": "
|
|
10858
|
+
"name": "opts",
|
|
10859
|
+
"default": "{}",
|
|
10860
|
+
"type": {
|
|
10861
|
+
"text": "{ removeHtml?: boolean; markdownItPlugins?: MarkdownItPlugin[] }"
|
|
10862
|
+
}
|
|
10647
10863
|
}
|
|
10648
10864
|
],
|
|
10649
|
-
"description": "Converts markdown into a tree with keys on it for Lit."
|
|
10865
|
+
"description": "Converts markdown into a tree with keys on it for Lit. The returned `md` is the\n(cached) markdown-it instance keyed by `markdownItPlugins` identity and the\n`removeHtml` flag (html-enabled vs html-neutralizing variant)."
|
|
10650
10866
|
}
|
|
10651
10867
|
],
|
|
10652
10868
|
"exports": [
|
|
10653
10869
|
{
|
|
10654
10870
|
"kind": "js",
|
|
10655
|
-
"name": "
|
|
10871
|
+
"name": "getMarkdownIt",
|
|
10656
10872
|
"declaration": {
|
|
10657
|
-
"name": "
|
|
10873
|
+
"name": "getMarkdownIt",
|
|
10658
10874
|
"module": "src/components/markdown/src/markdown-token-tree.ts"
|
|
10659
10875
|
}
|
|
10660
10876
|
},
|
|
@@ -10718,7 +10934,7 @@
|
|
|
10718
10934
|
"declarations": [
|
|
10719
10935
|
{
|
|
10720
10936
|
"kind": "class",
|
|
10721
|
-
"description": "
|
|
10937
|
+
"description": "Renders markdown as Carbon-styled DOM. Streaming-friendly: incremental updates reparse the markdown source into a `TokenTree`, diff it against the prior tree to reuse stable subtrees, then walk it into a Lit `TemplateResult` — Lit's `repeat` directive keys off the diffed nodes so unchanged DOM stays put.\n\n### Lifecycle\n\n1. A property setter (or a light-DOM mutation) lands. `willUpdate` decides whether the change requires a reparse (`markdown`, `removeHTML`, `markdownItPlugins`) or only a re-render (translated strings, `streaming`, `sanitizeHTML`, `customRenderers`).\n2. `scheduleRender` throttles bursts to 100ms (leading + trailing).\n3. `renderMarkdown` parses (if needed) via markdownToTokenTree, then calls renderMarkdownTree to produce both a `TemplateResult` and a batch of MarkdownRendererSlotDescriptor records.\n4. After Lit commits, `updated()` runs `reconcileCustomRendererHosts` — that is where consumer-supplied `customRenderers` callbacks fire and plugin-fallback HTML is adopted into light-DOM slot hosts.\n\n### Extensibility\n\n- markdownItPlugins runs after the built-in markdown-it plugins (markdown-it-attrs, highlight, task-lists). A new array identity rebuilds the markdown-it instance and forces a full reparse. Tokens introduced by a plugin that the native dispatch can't handle — either an unknown tag, or a plugin-overridden rule on a curated allow-list of leaf tokens — route through `md.renderer.render()` via `./utils/plugin-fallback.ts` and surface as `pluginFallback` descriptors. Their rendered HTML is adopted into a light-DOM slot host so consumer-supplied CSS (e.g. a KaTeX stylesheet on the host page) reaches it.\n- customRenderers overrides per-element rendering for `table` and `codeBlock`. The renderer emits a named `<slot>` placeholder; the reconciler invokes the consumer's callback with the parsed data and appends the returned `HTMLElement` as a `<div slot=\"…\">` light-DOM child. Returning the same element reference across renders avoids DOM churn.\n\n### Light-DOM source adoption\n\nWhen the `markdown` property has never been set explicitly, the element treats its light-DOM text content as the initial source and watches for further mutations via a `MutationObserver`. Setting the property explicitly stops the observer — the property is then the authoritative source.\n\n### Related files\n\n- `./markdown-token-tree.ts` — markdown-it parse + tree builder + streaming-aware diff (with `cachedHtml` carry-forward for plugin-delegated tokens).\n- `./markdown-renderer.ts` — `TokenTree` → Lit `TemplateResult`, plus descriptor collection.\n- `./markdown-renderer-types.ts` — public (MarkdownCustomRenderers) and internal (MarkdownRendererSlotDescriptor, `RenderTokenTreeOptions`) contracts.\n- `./utils/plugin-fallback.ts` — delegation to `md.renderer.render()` for plugin-introduced tokens.\n- `./utils/streaming-table.ts` — heuristics that hold a streaming table in a skeleton \"loading\" state until its tail stabilizes.",
|
|
10722
10938
|
"name": "CDSAIChatMarkdown",
|
|
10723
10939
|
"members": [
|
|
10724
10940
|
{
|
|
@@ -10904,6 +11120,22 @@
|
|
|
10904
11120
|
},
|
|
10905
11121
|
"description": "Optional formatter for pagination status text."
|
|
10906
11122
|
},
|
|
11123
|
+
{
|
|
11124
|
+
"kind": "field",
|
|
11125
|
+
"name": "markdownItPlugins",
|
|
11126
|
+
"type": {
|
|
11127
|
+
"text": "MarkdownItPlugin[] | undefined"
|
|
11128
|
+
},
|
|
11129
|
+
"description": "Markdown-it plugins applied after the built-in plugins\n(markdown-it-attrs, markdown-it-highlight, markdown-it-task-lists).\nChanges force a reparse. Memoize this array — a new reference each render\nrebuilds the markdown-it instance."
|
|
11130
|
+
},
|
|
11131
|
+
{
|
|
11132
|
+
"kind": "field",
|
|
11133
|
+
"name": "customRenderers",
|
|
11134
|
+
"type": {
|
|
11135
|
+
"text": "MarkdownCustomRenderers | undefined"
|
|
11136
|
+
},
|
|
11137
|
+
"description": "Per-element render overrides. For each `kind` whose callback is provided,\nthe markdown element emits a named `<slot>` placeholder in its shadow\nDOM, then — after each render — invokes the callback with the parsed\ndata and adopts the returned `HTMLElement` as a `<div slot=\"…\">`\nlight-DOM child of this element. Return `null` to fall back to the\ndefault Carbon rendering. Returning the same element reference across\nrenders avoids DOM churn.\n\nThe consumer's returned element lives in this element's light DOM, not\nin its shadow root, so external CSS applies normally."
|
|
11138
|
+
},
|
|
10907
11139
|
{
|
|
10908
11140
|
"kind": "field",
|
|
10909
11141
|
"name": "hasRenderedStreamingTableLoadingFrame",
|
|
@@ -10966,6 +11198,20 @@
|
|
|
10966
11198
|
}
|
|
10967
11199
|
}
|
|
10968
11200
|
],
|
|
11201
|
+
"events": [
|
|
11202
|
+
{
|
|
11203
|
+
"name": "cds-aichat-markdown-plugin-host-unmount",
|
|
11204
|
+
"type": {
|
|
11205
|
+
"text": "CustomEvent"
|
|
11206
|
+
}
|
|
11207
|
+
},
|
|
11208
|
+
{
|
|
11209
|
+
"name": "cds-aichat-markdown-plugin-host-update",
|
|
11210
|
+
"type": {
|
|
11211
|
+
"text": "CustomEvent"
|
|
11212
|
+
}
|
|
11213
|
+
}
|
|
11214
|
+
],
|
|
10969
11215
|
"attributes": [
|
|
10970
11216
|
{
|
|
10971
11217
|
"name": "sanitize-html",
|
|
@@ -11138,41 +11384,6 @@
|
|
|
11138
11384
|
}
|
|
11139
11385
|
]
|
|
11140
11386
|
},
|
|
11141
|
-
{
|
|
11142
|
-
"kind": "javascript-module",
|
|
11143
|
-
"path": "src/components/markdown/src/utils.ts",
|
|
11144
|
-
"declarations": [
|
|
11145
|
-
{
|
|
11146
|
-
"kind": "function",
|
|
11147
|
-
"name": "consoleError",
|
|
11148
|
-
"parameters": [
|
|
11149
|
-
{
|
|
11150
|
-
"name": "message",
|
|
11151
|
-
"type": {
|
|
11152
|
-
"text": "string"
|
|
11153
|
-
}
|
|
11154
|
-
},
|
|
11155
|
-
{
|
|
11156
|
-
"name": "args",
|
|
11157
|
-
"type": {
|
|
11158
|
-
"text": "any[]"
|
|
11159
|
-
}
|
|
11160
|
-
}
|
|
11161
|
-
],
|
|
11162
|
-
"description": "Console error with prefix"
|
|
11163
|
-
}
|
|
11164
|
-
],
|
|
11165
|
-
"exports": [
|
|
11166
|
-
{
|
|
11167
|
-
"kind": "js",
|
|
11168
|
-
"name": "consoleError",
|
|
11169
|
-
"declaration": {
|
|
11170
|
-
"name": "consoleError",
|
|
11171
|
-
"module": "src/components/markdown/src/utils.ts"
|
|
11172
|
-
}
|
|
11173
|
-
}
|
|
11174
|
-
]
|
|
11175
|
-
},
|
|
11176
11387
|
{
|
|
11177
11388
|
"kind": "javascript-module",
|
|
11178
11389
|
"path": "src/components/processing/src/processing.ts",
|
|
@@ -16125,6 +16336,292 @@
|
|
|
16125
16336
|
}
|
|
16126
16337
|
]
|
|
16127
16338
|
},
|
|
16339
|
+
{
|
|
16340
|
+
"kind": "javascript-module",
|
|
16341
|
+
"path": "src/components/markdown/src/utils/lit-directives.ts",
|
|
16342
|
+
"declarations": [
|
|
16343
|
+
{
|
|
16344
|
+
"kind": "variable",
|
|
16345
|
+
"name": "spread"
|
|
16346
|
+
},
|
|
16347
|
+
{
|
|
16348
|
+
"kind": "function",
|
|
16349
|
+
"name": "sanitizeHtmlContent",
|
|
16350
|
+
"parameters": [
|
|
16351
|
+
{
|
|
16352
|
+
"name": "content",
|
|
16353
|
+
"type": {
|
|
16354
|
+
"text": "string"
|
|
16355
|
+
}
|
|
16356
|
+
}
|
|
16357
|
+
]
|
|
16358
|
+
},
|
|
16359
|
+
{
|
|
16360
|
+
"kind": "variable",
|
|
16361
|
+
"name": "htmlContainer"
|
|
16362
|
+
}
|
|
16363
|
+
],
|
|
16364
|
+
"exports": [
|
|
16365
|
+
{
|
|
16366
|
+
"kind": "js",
|
|
16367
|
+
"name": "spread",
|
|
16368
|
+
"declaration": {
|
|
16369
|
+
"name": "spread",
|
|
16370
|
+
"module": "src/components/markdown/src/utils/lit-directives.ts"
|
|
16371
|
+
}
|
|
16372
|
+
},
|
|
16373
|
+
{
|
|
16374
|
+
"kind": "js",
|
|
16375
|
+
"name": "sanitizeHtmlContent",
|
|
16376
|
+
"declaration": {
|
|
16377
|
+
"name": "sanitizeHtmlContent",
|
|
16378
|
+
"module": "src/components/markdown/src/utils/lit-directives.ts"
|
|
16379
|
+
}
|
|
16380
|
+
},
|
|
16381
|
+
{
|
|
16382
|
+
"kind": "js",
|
|
16383
|
+
"name": "htmlContainer",
|
|
16384
|
+
"declaration": {
|
|
16385
|
+
"name": "htmlContainer",
|
|
16386
|
+
"module": "src/components/markdown/src/utils/lit-directives.ts"
|
|
16387
|
+
}
|
|
16388
|
+
}
|
|
16389
|
+
]
|
|
16390
|
+
},
|
|
16391
|
+
{
|
|
16392
|
+
"kind": "javascript-module",
|
|
16393
|
+
"path": "src/components/markdown/src/utils/plugin-fallback.ts",
|
|
16394
|
+
"declarations": [
|
|
16395
|
+
{
|
|
16396
|
+
"kind": "function",
|
|
16397
|
+
"name": "isNativelyHandled",
|
|
16398
|
+
"return": {
|
|
16399
|
+
"type": {
|
|
16400
|
+
"text": "boolean"
|
|
16401
|
+
}
|
|
16402
|
+
},
|
|
16403
|
+
"parameters": [
|
|
16404
|
+
{
|
|
16405
|
+
"name": "token",
|
|
16406
|
+
"type": {
|
|
16407
|
+
"text": "Partial<Token>"
|
|
16408
|
+
}
|
|
16409
|
+
}
|
|
16410
|
+
],
|
|
16411
|
+
"description": "True when the renderer can dispatch `token` itself (hand-written Lit\ntemplate). False when an unknown plugin-introduced token type or tag should\nroute through `md.renderer.render()`."
|
|
16412
|
+
},
|
|
16413
|
+
{
|
|
16414
|
+
"kind": "function",
|
|
16415
|
+
"name": "shouldDelegateToPluginRule",
|
|
16416
|
+
"return": {
|
|
16417
|
+
"type": {
|
|
16418
|
+
"text": "boolean"
|
|
16419
|
+
}
|
|
16420
|
+
},
|
|
16421
|
+
"parameters": [
|
|
16422
|
+
{
|
|
16423
|
+
"name": "token",
|
|
16424
|
+
"type": {
|
|
16425
|
+
"text": "Partial<Token>"
|
|
16426
|
+
}
|
|
16427
|
+
},
|
|
16428
|
+
{
|
|
16429
|
+
"name": "md",
|
|
16430
|
+
"type": {
|
|
16431
|
+
"text": "MarkdownIt | undefined"
|
|
16432
|
+
}
|
|
16433
|
+
}
|
|
16434
|
+
],
|
|
16435
|
+
"description": "True when the token's type is in the curated delegation allow-list and a\nuser-supplied markdown-it plugin has overridden (or added) the matching\n`md.renderer.rules[type]`. Native dispatch sites consult this to decide\nwhether to route through `md.renderer.render()` instead of the hand-written\nLit template."
|
|
16436
|
+
},
|
|
16437
|
+
{
|
|
16438
|
+
"kind": "function",
|
|
16439
|
+
"name": "renderFallback",
|
|
16440
|
+
"return": {
|
|
16441
|
+
"type": {
|
|
16442
|
+
"text": "TemplateResult"
|
|
16443
|
+
}
|
|
16444
|
+
},
|
|
16445
|
+
"parameters": [
|
|
16446
|
+
{
|
|
16447
|
+
"name": "token",
|
|
16448
|
+
"type": {
|
|
16449
|
+
"text": "Token"
|
|
16450
|
+
}
|
|
16451
|
+
},
|
|
16452
|
+
{
|
|
16453
|
+
"name": "node",
|
|
16454
|
+
"type": {
|
|
16455
|
+
"text": "TokenTree"
|
|
16456
|
+
}
|
|
16457
|
+
},
|
|
16458
|
+
{
|
|
16459
|
+
"name": "md",
|
|
16460
|
+
"type": {
|
|
16461
|
+
"text": "MarkdownIt"
|
|
16462
|
+
}
|
|
16463
|
+
},
|
|
16464
|
+
{
|
|
16465
|
+
"name": "sanitize",
|
|
16466
|
+
"type": {
|
|
16467
|
+
"text": "boolean"
|
|
16468
|
+
}
|
|
16469
|
+
},
|
|
16470
|
+
{
|
|
16471
|
+
"name": "options",
|
|
16472
|
+
"type": {
|
|
16473
|
+
"text": "RenderTokenTreeOptions"
|
|
16474
|
+
}
|
|
16475
|
+
}
|
|
16476
|
+
],
|
|
16477
|
+
"description": "Renders an unknown token via markdown-it's HTML renderer and emits a named\n`<slot>` placeholder. The markdown element adopts a light-DOM\n`<div slot=\"…\">` host containing the sanitized HTML so consumer-supplied\nCSS (e.g. KaTeX's stylesheet) reaches the rendered output.\n\nFor leaf token types in PLUGIN_DELEGABLE_TOKEN_TYPES the rendered\nHTML is cached on the TokenTree node and inherited across\n`diffTokenTree` calls when the underlying token is unchanged — so a stable\nearlier-in-document fence/image/etc. doesn't re-invoke the plugin's rule on\nevery streaming chunk. The cache is tagged with the `MarkdownIt` instance\nthat produced it; a plugin swap (which builds a fresh instance) invalidates\nthe cache automatically."
|
|
16478
|
+
}
|
|
16479
|
+
],
|
|
16480
|
+
"exports": [
|
|
16481
|
+
{
|
|
16482
|
+
"kind": "js",
|
|
16483
|
+
"name": "isNativelyHandled",
|
|
16484
|
+
"declaration": {
|
|
16485
|
+
"name": "isNativelyHandled",
|
|
16486
|
+
"module": "src/components/markdown/src/utils/plugin-fallback.ts"
|
|
16487
|
+
}
|
|
16488
|
+
},
|
|
16489
|
+
{
|
|
16490
|
+
"kind": "js",
|
|
16491
|
+
"name": "shouldDelegateToPluginRule",
|
|
16492
|
+
"declaration": {
|
|
16493
|
+
"name": "shouldDelegateToPluginRule",
|
|
16494
|
+
"module": "src/components/markdown/src/utils/plugin-fallback.ts"
|
|
16495
|
+
}
|
|
16496
|
+
},
|
|
16497
|
+
{
|
|
16498
|
+
"kind": "js",
|
|
16499
|
+
"name": "renderFallback",
|
|
16500
|
+
"declaration": {
|
|
16501
|
+
"name": "renderFallback",
|
|
16502
|
+
"module": "src/components/markdown/src/utils/plugin-fallback.ts"
|
|
16503
|
+
}
|
|
16504
|
+
}
|
|
16505
|
+
]
|
|
16506
|
+
},
|
|
16507
|
+
{
|
|
16508
|
+
"kind": "javascript-module",
|
|
16509
|
+
"path": "src/components/markdown/src/utils/streaming-table.ts",
|
|
16510
|
+
"declarations": [
|
|
16511
|
+
{
|
|
16512
|
+
"kind": "function",
|
|
16513
|
+
"name": "hasTrailingTableToken",
|
|
16514
|
+
"return": {
|
|
16515
|
+
"type": {
|
|
16516
|
+
"text": "boolean"
|
|
16517
|
+
}
|
|
16518
|
+
},
|
|
16519
|
+
"parameters": [
|
|
16520
|
+
{
|
|
16521
|
+
"name": "node",
|
|
16522
|
+
"type": {
|
|
16523
|
+
"text": "TokenTree"
|
|
16524
|
+
}
|
|
16525
|
+
}
|
|
16526
|
+
],
|
|
16527
|
+
"description": "True if the right-most leaf of the tree is a `table` token. A trailing table\nis one that sits at the end of the current markdown output, not just at the\nend of an arbitrary subtree — so we follow only the rightmost branch."
|
|
16528
|
+
},
|
|
16529
|
+
{
|
|
16530
|
+
"kind": "function",
|
|
16531
|
+
"name": "hasNodeAfterTable",
|
|
16532
|
+
"return": {
|
|
16533
|
+
"type": {
|
|
16534
|
+
"text": "boolean"
|
|
16535
|
+
}
|
|
16536
|
+
},
|
|
16537
|
+
"parameters": [
|
|
16538
|
+
{
|
|
16539
|
+
"name": "node",
|
|
16540
|
+
"type": {
|
|
16541
|
+
"text": "TokenTree"
|
|
16542
|
+
}
|
|
16543
|
+
}
|
|
16544
|
+
],
|
|
16545
|
+
"description": "True if any table token in the tree has a sibling that follows it. Used to\ndetect that the streaming author has moved past a table, so we can exit the\n\"table loading\" hold and render the live table."
|
|
16546
|
+
},
|
|
16547
|
+
{
|
|
16548
|
+
"kind": "function",
|
|
16549
|
+
"name": "isTableAtStreamingTail",
|
|
16550
|
+
"return": {
|
|
16551
|
+
"type": {
|
|
16552
|
+
"text": "boolean"
|
|
16553
|
+
}
|
|
16554
|
+
},
|
|
16555
|
+
"parameters": [
|
|
16556
|
+
{
|
|
16557
|
+
"name": "parentChildren",
|
|
16558
|
+
"type": {
|
|
16559
|
+
"text": "readonly unknown[]"
|
|
16560
|
+
}
|
|
16561
|
+
},
|
|
16562
|
+
{
|
|
16563
|
+
"name": "currentIndex",
|
|
16564
|
+
"type": {
|
|
16565
|
+
"text": "number"
|
|
16566
|
+
}
|
|
16567
|
+
}
|
|
16568
|
+
],
|
|
16569
|
+
"description": "True when a table at `currentIndex` inside `parentChildren` has no\nsiblings after it — i.e. it is currently the last child of its parent.\nThe streaming-table renderer uses this to decide whether the live table\nshould show its skeleton/loading state."
|
|
16570
|
+
},
|
|
16571
|
+
{
|
|
16572
|
+
"kind": "function",
|
|
16573
|
+
"name": "hasLikelyPartialTableTail",
|
|
16574
|
+
"return": {
|
|
16575
|
+
"type": {
|
|
16576
|
+
"text": "boolean"
|
|
16577
|
+
}
|
|
16578
|
+
},
|
|
16579
|
+
"parameters": [
|
|
16580
|
+
{
|
|
16581
|
+
"name": "markdown",
|
|
16582
|
+
"type": {
|
|
16583
|
+
"text": "string"
|
|
16584
|
+
}
|
|
16585
|
+
}
|
|
16586
|
+
],
|
|
16587
|
+
"description": "Heuristic that returns true when the last non-empty line of the markdown\nsource looks like an in-progress table row or separator. markdown-it can\nmomentarily stop recognizing the table token while a row is half-written, so\nthe streaming-table hold uses this to avoid flickering between table and\nnon-table renderings."
|
|
16588
|
+
}
|
|
16589
|
+
],
|
|
16590
|
+
"exports": [
|
|
16591
|
+
{
|
|
16592
|
+
"kind": "js",
|
|
16593
|
+
"name": "hasTrailingTableToken",
|
|
16594
|
+
"declaration": {
|
|
16595
|
+
"name": "hasTrailingTableToken",
|
|
16596
|
+
"module": "src/components/markdown/src/utils/streaming-table.ts"
|
|
16597
|
+
}
|
|
16598
|
+
},
|
|
16599
|
+
{
|
|
16600
|
+
"kind": "js",
|
|
16601
|
+
"name": "hasNodeAfterTable",
|
|
16602
|
+
"declaration": {
|
|
16603
|
+
"name": "hasNodeAfterTable",
|
|
16604
|
+
"module": "src/components/markdown/src/utils/streaming-table.ts"
|
|
16605
|
+
}
|
|
16606
|
+
},
|
|
16607
|
+
{
|
|
16608
|
+
"kind": "js",
|
|
16609
|
+
"name": "isTableAtStreamingTail",
|
|
16610
|
+
"declaration": {
|
|
16611
|
+
"name": "isTableAtStreamingTail",
|
|
16612
|
+
"module": "src/components/markdown/src/utils/streaming-table.ts"
|
|
16613
|
+
}
|
|
16614
|
+
},
|
|
16615
|
+
{
|
|
16616
|
+
"kind": "js",
|
|
16617
|
+
"name": "hasLikelyPartialTableTail",
|
|
16618
|
+
"declaration": {
|
|
16619
|
+
"name": "hasLikelyPartialTableTail",
|
|
16620
|
+
"module": "src/components/markdown/src/utils/streaming-table.ts"
|
|
16621
|
+
}
|
|
16622
|
+
}
|
|
16623
|
+
]
|
|
16624
|
+
},
|
|
16128
16625
|
{
|
|
16129
16626
|
"kind": "javascript-module",
|
|
16130
16627
|
"path": "src/components/markdown/src/utils/table-helpers.ts",
|
|
@@ -16188,6 +16685,54 @@
|
|
|
16188
16685
|
}
|
|
16189
16686
|
],
|
|
16190
16687
|
"description": "Recursively extracts plain text content from a TokenTree node.\n\nThis is used for table cells and other contexts where we need the\ntext content without HTML formatting."
|
|
16688
|
+
},
|
|
16689
|
+
{
|
|
16690
|
+
"kind": "function",
|
|
16691
|
+
"name": "renderTable",
|
|
16692
|
+
"return": {
|
|
16693
|
+
"type": {
|
|
16694
|
+
"text": "TemplateResult"
|
|
16695
|
+
}
|
|
16696
|
+
},
|
|
16697
|
+
"parameters": [
|
|
16698
|
+
{
|
|
16699
|
+
"name": "token",
|
|
16700
|
+
"type": {
|
|
16701
|
+
"text": "Token"
|
|
16702
|
+
}
|
|
16703
|
+
},
|
|
16704
|
+
{
|
|
16705
|
+
"name": "node",
|
|
16706
|
+
"type": {
|
|
16707
|
+
"text": "TokenTree"
|
|
16708
|
+
}
|
|
16709
|
+
},
|
|
16710
|
+
{
|
|
16711
|
+
"name": "attrs",
|
|
16712
|
+
"type": {
|
|
16713
|
+
"text": "Record<string, string>"
|
|
16714
|
+
}
|
|
16715
|
+
},
|
|
16716
|
+
{
|
|
16717
|
+
"name": "options",
|
|
16718
|
+
"type": {
|
|
16719
|
+
"text": "RenderTokenTreeOptions"
|
|
16720
|
+
}
|
|
16721
|
+
},
|
|
16722
|
+
{
|
|
16723
|
+
"name": "renderToken",
|
|
16724
|
+
"type": {
|
|
16725
|
+
"text": "(\n node: TokenTree,\n options: RenderTokenTreeOptions,\n ) => TemplateResult"
|
|
16726
|
+
}
|
|
16727
|
+
},
|
|
16728
|
+
{
|
|
16729
|
+
"name": "slotName",
|
|
16730
|
+
"type": {
|
|
16731
|
+
"text": "string | undefined"
|
|
16732
|
+
}
|
|
16733
|
+
}
|
|
16734
|
+
],
|
|
16735
|
+
"description": "Renders the body of the `case \"table\"` branch of `renderWithStaticTag`.\n\nLives outside the renderer's switch because it covers three flows: streaming\nloading state, default Carbon-table rendering, and the `customRenderers.table`\nslot override.\n\n`renderToken` is the recursive renderer the caller dispatched from, passed in\nto avoid a cycle with `markdown-renderer.ts`. `slotName` is non-undefined when\nthe consumer registered a `table` custom renderer, in which case the result is\nwrapped in a named `<slot>` and an override descriptor is reported via\n`recordCustomRender`."
|
|
16191
16736
|
}
|
|
16192
16737
|
],
|
|
16193
16738
|
"exports": [
|
|
@@ -16222,6 +16767,14 @@
|
|
|
16222
16767
|
"name": "extractTextContent",
|
|
16223
16768
|
"module": "src/components/markdown/src/utils/table-helpers.ts"
|
|
16224
16769
|
}
|
|
16770
|
+
},
|
|
16771
|
+
{
|
|
16772
|
+
"kind": "js",
|
|
16773
|
+
"name": "renderTable",
|
|
16774
|
+
"declaration": {
|
|
16775
|
+
"name": "renderTable",
|
|
16776
|
+
"module": "src/components/markdown/src/utils/table-helpers.ts"
|
|
16777
|
+
}
|
|
16225
16778
|
}
|
|
16226
16779
|
]
|
|
16227
16780
|
},
|