@carbon/ai-chat-components 1.6.0 → 1.7.0-rc.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/custom-elements.json +322 -158
- package/es/components/code-snippet/src/codemirror/theme.js +5 -5
- package/es/components/code-snippet/src/codemirror/theme.js.map +1 -1
- package/es/components/markdown/index.d.ts +1 -1
- package/es/components/markdown/src/markdown-renderer-types.d.ts +169 -6
- package/es/components/markdown/src/markdown-renderer.d.ts +1 -1
- package/es/components/markdown/src/markdown-renderer.js +116 -20
- package/es/components/markdown/src/markdown-renderer.js.map +1 -1
- package/es/components/markdown/src/markdown.d.ts +8 -0
- package/es/components/markdown/src/markdown.js +31 -0
- package/es/components/markdown/src/markdown.js.map +1 -1
- package/es/components/markdown/src/plugins/markdown-it-task-lists.js +7 -1
- package/es/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -1
- package/es/components/table/src/table.js +2 -2
- package/es/components/table/src/table.js.map +1 -1
- package/es/components/toolbar/src/toolbar.d.ts +7 -6
- package/es/components/toolbar/src/toolbar.js +79 -96
- 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.d.ts +1 -3
- package/es/components/workspace-shell/src/workspace-shell.js +1 -3
- package/es/components/workspace-shell/src/workspace-shell.js.map +1 -1
- package/es/react/markdown.d.ts +13 -4
- package/es/react/markdown.js +11 -0
- package/es/react/markdown.js.map +1 -1
- package/es/react/table.d.ts +4 -0
- package/es/react/table.js +28 -0
- package/es/react/table.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/theme.js +5 -5
- package/es-custom/components/code-snippet/src/codemirror/theme.js.map +1 -1
- package/es-custom/components/markdown/index.d.ts +1 -1
- package/es-custom/components/markdown/src/markdown-renderer-types.d.ts +169 -6
- package/es-custom/components/markdown/src/markdown-renderer.d.ts +1 -1
- package/es-custom/components/markdown/src/markdown-renderer.js +116 -20
- package/es-custom/components/markdown/src/markdown-renderer.js.map +1 -1
- package/es-custom/components/markdown/src/markdown.d.ts +8 -0
- package/es-custom/components/markdown/src/markdown.js +31 -0
- package/es-custom/components/markdown/src/markdown.js.map +1 -1
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js +7 -1
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -1
- package/es-custom/components/table/src/table.js +2 -2
- package/es-custom/components/table/src/table.js.map +1 -1
- package/es-custom/components/toolbar/src/toolbar.d.ts +7 -6
- package/es-custom/components/toolbar/src/toolbar.js +79 -96
- 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.d.ts +1 -3
- package/es-custom/components/workspace-shell/src/workspace-shell.js +1 -3
- package/es-custom/components/workspace-shell/src/workspace-shell.js.map +1 -1
- package/es-custom/react/markdown.d.ts +13 -4
- package/es-custom/react/markdown.js +11 -0
- package/es-custom/react/markdown.js.map +1 -1
- package/es-custom/react/table.d.ts +4 -0
- package/es-custom/react/table.js +28 -0
- package/es-custom/react/table.js.map +1 -0
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -498,6 +498,42 @@
|
|
|
498
498
|
}
|
|
499
499
|
]
|
|
500
500
|
},
|
|
501
|
+
{
|
|
502
|
+
"kind": "javascript-module",
|
|
503
|
+
"path": "src/react/table.ts",
|
|
504
|
+
"declarations": [
|
|
505
|
+
{
|
|
506
|
+
"kind": "variable",
|
|
507
|
+
"name": "Table"
|
|
508
|
+
}
|
|
509
|
+
],
|
|
510
|
+
"exports": [
|
|
511
|
+
{
|
|
512
|
+
"kind": "js",
|
|
513
|
+
"name": "default",
|
|
514
|
+
"declaration": {
|
|
515
|
+
"name": "Table",
|
|
516
|
+
"module": "src/react/table.ts"
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"kind": "js",
|
|
521
|
+
"name": "TableCellContent",
|
|
522
|
+
"declaration": {
|
|
523
|
+
"name": "TableCellContent",
|
|
524
|
+
"module": "../components/table/src/table.js"
|
|
525
|
+
}
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"kind": "js",
|
|
529
|
+
"name": "TableRowContent",
|
|
530
|
+
"declaration": {
|
|
531
|
+
"name": "TableRowContent",
|
|
532
|
+
"module": "../components/table/src/table.js"
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
},
|
|
501
537
|
{
|
|
502
538
|
"kind": "javascript-module",
|
|
503
539
|
"path": "src/react/tool-call-data.ts",
|
|
@@ -709,13 +745,13 @@
|
|
|
709
745
|
},
|
|
710
746
|
{
|
|
711
747
|
"kind": "javascript-module",
|
|
712
|
-
"path": "src/components/
|
|
748
|
+
"path": "src/components/card/index.ts",
|
|
713
749
|
"declarations": [],
|
|
714
750
|
"exports": []
|
|
715
751
|
},
|
|
716
752
|
{
|
|
717
753
|
"kind": "javascript-module",
|
|
718
|
-
"path": "src/components/
|
|
754
|
+
"path": "src/components/carousel/index.ts",
|
|
719
755
|
"declarations": [],
|
|
720
756
|
"exports": []
|
|
721
757
|
},
|
|
@@ -977,6 +1013,30 @@
|
|
|
977
1013
|
"module": "./src/markdown-renderer-types.js"
|
|
978
1014
|
}
|
|
979
1015
|
},
|
|
1016
|
+
{
|
|
1017
|
+
"kind": "js",
|
|
1018
|
+
"name": "MarkdownRendererChecklist",
|
|
1019
|
+
"declaration": {
|
|
1020
|
+
"name": "MarkdownRendererChecklist",
|
|
1021
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1022
|
+
}
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"kind": "js",
|
|
1026
|
+
"name": "MarkdownRendererChecklistItemArgs",
|
|
1027
|
+
"declaration": {
|
|
1028
|
+
"name": "MarkdownRendererChecklistItemArgs",
|
|
1029
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"kind": "js",
|
|
1034
|
+
"name": "MarkdownRendererChecklistToggleArgs",
|
|
1035
|
+
"declaration": {
|
|
1036
|
+
"name": "MarkdownRendererChecklistToggleArgs",
|
|
1037
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
980
1040
|
{
|
|
981
1041
|
"kind": "js",
|
|
982
1042
|
"name": "MarkdownRendererCodeBlockArgs",
|
|
@@ -993,6 +1053,38 @@
|
|
|
993
1053
|
"module": "./src/markdown-renderer-types.js"
|
|
994
1054
|
}
|
|
995
1055
|
},
|
|
1056
|
+
{
|
|
1057
|
+
"kind": "js",
|
|
1058
|
+
"name": "MarkdownRendererImageArgs",
|
|
1059
|
+
"declaration": {
|
|
1060
|
+
"name": "MarkdownRendererImageArgs",
|
|
1061
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1062
|
+
}
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"kind": "js",
|
|
1066
|
+
"name": "MarkdownRendererImageResult",
|
|
1067
|
+
"declaration": {
|
|
1068
|
+
"name": "MarkdownRendererImageResult",
|
|
1069
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"kind": "js",
|
|
1074
|
+
"name": "MarkdownRendererLinkArgs",
|
|
1075
|
+
"declaration": {
|
|
1076
|
+
"name": "MarkdownRendererLinkArgs",
|
|
1077
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"kind": "js",
|
|
1082
|
+
"name": "MarkdownRendererLinkResult",
|
|
1083
|
+
"declaration": {
|
|
1084
|
+
"name": "MarkdownRendererLinkResult",
|
|
1085
|
+
"module": "./src/markdown-renderer-types.js"
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
996
1088
|
{
|
|
997
1089
|
"kind": "js",
|
|
998
1090
|
"name": "MarkdownRendererTableArgs",
|
|
@@ -2559,151 +2651,6 @@
|
|
|
2559
2651
|
}
|
|
2560
2652
|
]
|
|
2561
2653
|
},
|
|
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
|
-
},
|
|
2707
2654
|
{
|
|
2708
2655
|
"kind": "javascript-module",
|
|
2709
2656
|
"path": "src/components/card/src/card-footer.ts",
|
|
@@ -2949,6 +2896,151 @@
|
|
|
2949
2896
|
}
|
|
2950
2897
|
]
|
|
2951
2898
|
},
|
|
2899
|
+
{
|
|
2900
|
+
"kind": "javascript-module",
|
|
2901
|
+
"path": "src/components/carousel/src/carousel.ts",
|
|
2902
|
+
"declarations": [
|
|
2903
|
+
{
|
|
2904
|
+
"kind": "class",
|
|
2905
|
+
"description": "Carousel component",
|
|
2906
|
+
"name": "CDSAICarousel",
|
|
2907
|
+
"slots": [
|
|
2908
|
+
{
|
|
2909
|
+
"description": "The body",
|
|
2910
|
+
"name": "body"
|
|
2911
|
+
}
|
|
2912
|
+
],
|
|
2913
|
+
"members": [
|
|
2914
|
+
{
|
|
2915
|
+
"kind": "field",
|
|
2916
|
+
"name": "nextBtnText",
|
|
2917
|
+
"type": {
|
|
2918
|
+
"text": "string | undefined"
|
|
2919
|
+
},
|
|
2920
|
+
"description": "Text for the next button",
|
|
2921
|
+
"attribute": "nextBtnText"
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
"kind": "field",
|
|
2925
|
+
"name": "previousBtnText",
|
|
2926
|
+
"type": {
|
|
2927
|
+
"text": "string | undefined"
|
|
2928
|
+
},
|
|
2929
|
+
"description": "Text for the previous button",
|
|
2930
|
+
"attribute": "previousBtnText"
|
|
2931
|
+
},
|
|
2932
|
+
{
|
|
2933
|
+
"kind": "field",
|
|
2934
|
+
"name": "container",
|
|
2935
|
+
"type": {
|
|
2936
|
+
"text": "Array<HTMLElement> | undefined"
|
|
2937
|
+
},
|
|
2938
|
+
"privacy": "private"
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
"kind": "field",
|
|
2942
|
+
"name": "carousel",
|
|
2943
|
+
"type": {
|
|
2944
|
+
"text": "InitCarousel | undefined"
|
|
2945
|
+
},
|
|
2946
|
+
"privacy": "private"
|
|
2947
|
+
},
|
|
2948
|
+
{
|
|
2949
|
+
"kind": "field",
|
|
2950
|
+
"name": "_currentIndex",
|
|
2951
|
+
"type": {
|
|
2952
|
+
"text": "number"
|
|
2953
|
+
},
|
|
2954
|
+
"privacy": "private",
|
|
2955
|
+
"default": "0"
|
|
2956
|
+
},
|
|
2957
|
+
{
|
|
2958
|
+
"kind": "field",
|
|
2959
|
+
"name": "_lastIndex",
|
|
2960
|
+
"type": {
|
|
2961
|
+
"text": "number"
|
|
2962
|
+
},
|
|
2963
|
+
"privacy": "private",
|
|
2964
|
+
"default": "0"
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"kind": "method",
|
|
2968
|
+
"name": "_handlePrev",
|
|
2969
|
+
"privacy": "private"
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
"kind": "method",
|
|
2973
|
+
"name": "_handleNext",
|
|
2974
|
+
"privacy": "private"
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"kind": "method",
|
|
2978
|
+
"name": "_dispatchChange",
|
|
2979
|
+
"privacy": "private",
|
|
2980
|
+
"parameters": [
|
|
2981
|
+
{
|
|
2982
|
+
"name": "data",
|
|
2983
|
+
"type": {
|
|
2984
|
+
"text": "CarouselResponse"
|
|
2985
|
+
}
|
|
2986
|
+
}
|
|
2987
|
+
]
|
|
2988
|
+
},
|
|
2989
|
+
{
|
|
2990
|
+
"kind": "field",
|
|
2991
|
+
"name": "eventOnChange",
|
|
2992
|
+
"static": true,
|
|
2993
|
+
"readonly": true
|
|
2994
|
+
}
|
|
2995
|
+
],
|
|
2996
|
+
"events": [
|
|
2997
|
+
{
|
|
2998
|
+
"type": {
|
|
2999
|
+
"text": "CustomEvent"
|
|
3000
|
+
}
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"description": "custom event for when the carousel changes",
|
|
3004
|
+
"name": "cds-aichat-carousel-onchange"
|
|
3005
|
+
}
|
|
3006
|
+
],
|
|
3007
|
+
"attributes": [
|
|
3008
|
+
{
|
|
3009
|
+
"name": "nextBtnText",
|
|
3010
|
+
"type": {
|
|
3011
|
+
"text": "string | undefined"
|
|
3012
|
+
},
|
|
3013
|
+
"description": "Text for the next button",
|
|
3014
|
+
"fieldName": "nextBtnText"
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
"name": "previousBtnText",
|
|
3018
|
+
"type": {
|
|
3019
|
+
"text": "string | undefined"
|
|
3020
|
+
},
|
|
3021
|
+
"description": "Text for the previous button",
|
|
3022
|
+
"fieldName": "previousBtnText"
|
|
3023
|
+
}
|
|
3024
|
+
],
|
|
3025
|
+
"superclass": {
|
|
3026
|
+
"name": "LitElement",
|
|
3027
|
+
"package": "lit"
|
|
3028
|
+
},
|
|
3029
|
+
"tagName": "cds-aichat-carousel",
|
|
3030
|
+
"customElement": true
|
|
3031
|
+
}
|
|
3032
|
+
],
|
|
3033
|
+
"exports": [
|
|
3034
|
+
{
|
|
3035
|
+
"kind": "js",
|
|
3036
|
+
"name": "default",
|
|
3037
|
+
"declaration": {
|
|
3038
|
+
"name": "CDSAICarousel",
|
|
3039
|
+
"module": "src/components/carousel/src/carousel.ts"
|
|
3040
|
+
}
|
|
3041
|
+
}
|
|
3042
|
+
]
|
|
3043
|
+
},
|
|
2952
3044
|
{
|
|
2953
3045
|
"kind": "javascript-module",
|
|
2954
3046
|
"path": "src/components/chain-of-thought/src/chain-of-thought-step.ts",
|
|
@@ -10738,6 +10830,30 @@
|
|
|
10738
10830
|
"module": "./markdown-renderer-types.js"
|
|
10739
10831
|
}
|
|
10740
10832
|
},
|
|
10833
|
+
{
|
|
10834
|
+
"kind": "js",
|
|
10835
|
+
"name": "MarkdownRendererChecklist",
|
|
10836
|
+
"declaration": {
|
|
10837
|
+
"name": "MarkdownRendererChecklist",
|
|
10838
|
+
"module": "./markdown-renderer-types.js"
|
|
10839
|
+
}
|
|
10840
|
+
},
|
|
10841
|
+
{
|
|
10842
|
+
"kind": "js",
|
|
10843
|
+
"name": "MarkdownRendererChecklistItemArgs",
|
|
10844
|
+
"declaration": {
|
|
10845
|
+
"name": "MarkdownRendererChecklistItemArgs",
|
|
10846
|
+
"module": "./markdown-renderer-types.js"
|
|
10847
|
+
}
|
|
10848
|
+
},
|
|
10849
|
+
{
|
|
10850
|
+
"kind": "js",
|
|
10851
|
+
"name": "MarkdownRendererChecklistToggleArgs",
|
|
10852
|
+
"declaration": {
|
|
10853
|
+
"name": "MarkdownRendererChecklistToggleArgs",
|
|
10854
|
+
"module": "./markdown-renderer-types.js"
|
|
10855
|
+
}
|
|
10856
|
+
},
|
|
10741
10857
|
{
|
|
10742
10858
|
"kind": "js",
|
|
10743
10859
|
"name": "MarkdownRendererCodeBlockArgs",
|
|
@@ -10754,6 +10870,38 @@
|
|
|
10754
10870
|
"module": "./markdown-renderer-types.js"
|
|
10755
10871
|
}
|
|
10756
10872
|
},
|
|
10873
|
+
{
|
|
10874
|
+
"kind": "js",
|
|
10875
|
+
"name": "MarkdownRendererImageArgs",
|
|
10876
|
+
"declaration": {
|
|
10877
|
+
"name": "MarkdownRendererImageArgs",
|
|
10878
|
+
"module": "./markdown-renderer-types.js"
|
|
10879
|
+
}
|
|
10880
|
+
},
|
|
10881
|
+
{
|
|
10882
|
+
"kind": "js",
|
|
10883
|
+
"name": "MarkdownRendererImageResult",
|
|
10884
|
+
"declaration": {
|
|
10885
|
+
"name": "MarkdownRendererImageResult",
|
|
10886
|
+
"module": "./markdown-renderer-types.js"
|
|
10887
|
+
}
|
|
10888
|
+
},
|
|
10889
|
+
{
|
|
10890
|
+
"kind": "js",
|
|
10891
|
+
"name": "MarkdownRendererLinkArgs",
|
|
10892
|
+
"declaration": {
|
|
10893
|
+
"name": "MarkdownRendererLinkArgs",
|
|
10894
|
+
"module": "./markdown-renderer-types.js"
|
|
10895
|
+
}
|
|
10896
|
+
},
|
|
10897
|
+
{
|
|
10898
|
+
"kind": "js",
|
|
10899
|
+
"name": "MarkdownRendererLinkResult",
|
|
10900
|
+
"declaration": {
|
|
10901
|
+
"name": "MarkdownRendererLinkResult",
|
|
10902
|
+
"module": "./markdown-renderer-types.js"
|
|
10903
|
+
}
|
|
10904
|
+
},
|
|
10757
10905
|
{
|
|
10758
10906
|
"kind": "js",
|
|
10759
10907
|
"name": "MarkdownRendererSlotDescriptor",
|
|
@@ -11212,6 +11360,12 @@
|
|
|
11212
11360
|
"privacy": "private",
|
|
11213
11361
|
"default": "false"
|
|
11214
11362
|
},
|
|
11363
|
+
{
|
|
11364
|
+
"kind": "field",
|
|
11365
|
+
"name": "handleChecklistToggle",
|
|
11366
|
+
"privacy": "private",
|
|
11367
|
+
"description": "Delegated handler for `cds-checkbox-changed` from rendered task-list\ncheckboxes. Resolves the toggled checkbox via the composed event path (a\nhost listener would otherwise see a retargeted `event.target`), reads the\nidentity stamped by the task-list plugin, and forwards the new state to a\nconsumer `checklist.onToggle`."
|
|
11368
|
+
},
|
|
11215
11369
|
{
|
|
11216
11370
|
"kind": "method",
|
|
11217
11371
|
"name": "adoptLightDomMarkdown",
|
|
@@ -12604,24 +12758,24 @@
|
|
|
12604
12758
|
},
|
|
12605
12759
|
{
|
|
12606
12760
|
"kind": "field",
|
|
12607
|
-
"name": "
|
|
12761
|
+
"name": "actionsContainer",
|
|
12608
12762
|
"type": {
|
|
12609
|
-
"text": "
|
|
12763
|
+
"text": "HTMLElement"
|
|
12610
12764
|
},
|
|
12611
|
-
"privacy": "private"
|
|
12612
|
-
"default": "true"
|
|
12765
|
+
"privacy": "private"
|
|
12613
12766
|
},
|
|
12614
12767
|
{
|
|
12615
12768
|
"kind": "field",
|
|
12616
|
-
"name": "
|
|
12769
|
+
"name": "containerWidth",
|
|
12617
12770
|
"type": {
|
|
12618
|
-
"text": "
|
|
12771
|
+
"text": "number"
|
|
12619
12772
|
},
|
|
12620
|
-
"privacy": "private"
|
|
12773
|
+
"privacy": "private",
|
|
12774
|
+
"default": "0"
|
|
12621
12775
|
},
|
|
12622
12776
|
{
|
|
12623
12777
|
"kind": "field",
|
|
12624
|
-
"name": "
|
|
12778
|
+
"name": "resizeObserver",
|
|
12625
12779
|
"type": {
|
|
12626
12780
|
"text": "ResizeObserver | undefined"
|
|
12627
12781
|
},
|
|
@@ -12640,7 +12794,17 @@
|
|
|
12640
12794
|
},
|
|
12641
12795
|
{
|
|
12642
12796
|
"kind": "method",
|
|
12643
|
-
"name": "
|
|
12797
|
+
"name": "sortActions",
|
|
12798
|
+
"privacy": "private"
|
|
12799
|
+
},
|
|
12800
|
+
{
|
|
12801
|
+
"kind": "method",
|
|
12802
|
+
"name": "setupResizeObserver",
|
|
12803
|
+
"privacy": "private"
|
|
12804
|
+
},
|
|
12805
|
+
{
|
|
12806
|
+
"kind": "method",
|
|
12807
|
+
"name": "getActions",
|
|
12644
12808
|
"privacy": "private"
|
|
12645
12809
|
},
|
|
12646
12810
|
{
|
|
@@ -14123,7 +14287,7 @@
|
|
|
14123
14287
|
"text": "boolean"
|
|
14124
14288
|
},
|
|
14125
14289
|
"default": "false",
|
|
14126
|
-
"description": "Enable automatic header collapsible behavior based on available space.\nWhen true, the header will automatically become collapsible when the\nbody would have less space than the header.
|
|
14290
|
+
"description": "Enable automatic header collapsible behavior based on available space.\nWhen true, the header will automatically become collapsible when the\nbody would have less space than the header.",
|
|
14127
14291
|
"attribute": "auto-collapsible-header"
|
|
14128
14292
|
},
|
|
14129
14293
|
{
|
|
@@ -14154,7 +14318,7 @@
|
|
|
14154
14318
|
"text": "boolean"
|
|
14155
14319
|
},
|
|
14156
14320
|
"default": "false",
|
|
14157
|
-
"description": "Enable automatic header collapsible behavior based on available space.\nWhen true, the header will automatically become collapsible when the\nbody would have less space than the header.
|
|
14321
|
+
"description": "Enable automatic header collapsible behavior based on available space.\nWhen true, the header will automatically become collapsible when the\nbody would have less space than the header.",
|
|
14158
14322
|
"fieldName": "autoCollapsibleHeader"
|
|
14159
14323
|
}
|
|
14160
14324
|
],
|
|
@@ -71,11 +71,6 @@ function makeScrollerFocusable() {
|
|
|
71
71
|
function createCarbonTheme() {
|
|
72
72
|
return EditorView.theme({
|
|
73
73
|
".cm-editor": {
|
|
74
|
-
fontFamily: "var(--cds-code-01-font-family, 'IBM Plex Mono', monospace)",
|
|
75
|
-
fontSize: "var(--cds-code-01-font-size, 0.875rem)",
|
|
76
|
-
fontWeight: "var(--cds-code-01-font-weight, 400)",
|
|
77
|
-
letterSpacing: "var(--cds-code-01-letter-spacing, 0.16px)",
|
|
78
|
-
lineHeight: "var(--cds-code-01-line-height, 1.5)",
|
|
79
74
|
background: "var(--cds-layer, #ffffff)",
|
|
80
75
|
color: "var(--cds-text-primary, #161616)",
|
|
81
76
|
},
|
|
@@ -103,6 +98,11 @@ function createCarbonTheme() {
|
|
|
103
98
|
caretColor: "var(--cds-text-primary, #161616)",
|
|
104
99
|
},
|
|
105
100
|
".cm-scroller": {
|
|
101
|
+
fontFamily: "var(--cds-code-01-font-family, 'IBM Plex Mono', monospace)",
|
|
102
|
+
fontSize: "var(--cds-code-01-font-size, 0.875rem)",
|
|
103
|
+
fontWeight: "var(--cds-code-01-font-weight, 400)",
|
|
104
|
+
letterSpacing: "var(--cds-code-01-letter-spacing, 0.16px)",
|
|
105
|
+
lineHeight: "var(--cds-code-01-line-height, 1.5)",
|
|
106
106
|
maxBlockSize: "var(--cds-snippet-max-height, 16rem)",
|
|
107
107
|
minBlockSize: "var(--cds-snippet-min-height, auto)",
|
|
108
108
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","sources":["../../../../../src/components/code-snippet/src/codemirror/theme.ts"],"sourcesContent":[null],"names":["t"],"mappings":";;;;;;;;;;;AAAA;;;;;;;AAOG;AAMH;;;;;;AAMG;SACa,qBAAqB,GAAA;IACnC,OAAO,UAAU,CAAC,SAAS,CACzB,MAAA;AACE,QAAA,WAAA,CAAY,IAAgB,EAAA;AAC1B,YAAA,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC;QACnC;AAEA,QAAA,MAAM,CAAC,MAAkB,EAAA;;AAEvB,YAAA,IAAI,CAAC,sBAAsB,CAAC,MAAM,CAAC,IAAI,CAAC;QAC1C;AAEA,QAAA,sBAAsB,CAAC,IAAgB,EAAA;AACrC,YAAA,MAAM,QAAQ,GAAG,IAAI,CAAC,SAAS;YAC/B,IAAI,QAAQ,IAAI,QAAQ,CAAC,YAAY,CAAC,UAAU,CAAC,KAAK,IAAI,EAAE;AAC1D,gBAAA,QAAQ,CAAC,YAAY,CAAC,UAAU,EAAE,GAAG,CAAC;YACxC;QACF;AACD,KAAA,CACF;AACH;AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;AA0BG;SACa,iBAAiB,GAAA;IAC/B,OAAO,UAAU,CAAC,KAAK,CAAC;AACtB,QAAA,YAAY,EAAE;AACZ,YAAA,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"theme.js","sources":["../../../../../src/components/code-snippet/src/codemirror/theme.ts"],"sourcesContent":[null],"names":["t"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import "./src/markdown.js";
|
|
2
2
|
export { default, CDSAIChatMarkdown } from "./src/markdown.js";
|
|
3
|
-
export type { MarkdownCustomRenderers, MarkdownRendererCodeBlockArgs, MarkdownRendererCodeBlockData, MarkdownRendererTableArgs, MarkdownRendererTableData, } from "./src/markdown-renderer-types.js";
|
|
3
|
+
export type { MarkdownCustomRenderers, MarkdownRendererChecklist, MarkdownRendererChecklistItemArgs, MarkdownRendererChecklistToggleArgs, MarkdownRendererCodeBlockArgs, MarkdownRendererCodeBlockData, MarkdownRendererImageArgs, MarkdownRendererImageResult, MarkdownRendererLinkArgs, MarkdownRendererLinkResult, MarkdownRendererTableArgs, MarkdownRendererTableData, } from "./src/markdown-renderer-types.js";
|
|
4
4
|
export type { MarkdownItPlugin, TokenTree } from "./src/markdown-token-tree.js";
|