@epam/ai-dial-ui-kit 0.9.0-rc.21 → 0.9.0-rc.22
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "0.9.0-rc",
|
|
3
|
-
"generatedAt": "2026-04-
|
|
3
|
+
"generatedAt": "2026-04-08T12:42:07.079Z",
|
|
4
4
|
"kit": {
|
|
5
5
|
"name": "@epam/ai-dial-ui-kit",
|
|
6
6
|
"description": "A modern UI kit for building AI DIAL interfaces with React",
|
|
@@ -2552,8 +2552,8 @@
|
|
|
2552
2552
|
},
|
|
2553
2553
|
{
|
|
2554
2554
|
"name": "DialAutocompleteInputValue",
|
|
2555
|
-
"category": "
|
|
2556
|
-
"description": "A component that displays a list of selected items in a customizable, styled list. Each item is\naliases: SelectedList|ItemDisplay\n\nrendered as a
|
|
2555
|
+
"category": "Form",
|
|
2556
|
+
"description": "A component that displays a list of selected items in a customizable, styled list. Each item is\naliases: SelectedList|ItemDisplay\n\nrendered as a tag wrapped in a tooltip, allowing for truncation and additional context when\nhovered. The component is flexible and supports custom CSS classes for styling the list and\nindividual list items.",
|
|
2557
2557
|
"props": [
|
|
2558
2558
|
{
|
|
2559
2559
|
"name": "placeholder",
|
|
@@ -2571,17 +2571,24 @@
|
|
|
2571
2571
|
"name": "listClassName",
|
|
2572
2572
|
"type": "string",
|
|
2573
2573
|
"required": false,
|
|
2574
|
-
"description": "Additional CSS classes applied to the
|
|
2574
|
+
"description": "Additional CSS classes applied to the container element containing the list of selected items."
|
|
2575
2575
|
},
|
|
2576
2576
|
{
|
|
2577
2577
|
"name": "listElementClassName",
|
|
2578
2578
|
"type": "string",
|
|
2579
2579
|
"required": false,
|
|
2580
|
-
"description": "Additional CSS classes applied to each
|
|
2580
|
+
"description": "Additional CSS classes applied to each tag element representing an individual selected item."
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"name": "collapseTagOverflow",
|
|
2584
|
+
"type": "boolean",
|
|
2585
|
+
"required": false,
|
|
2586
|
+
"defaultValue": "false",
|
|
2587
|
+
"description": "When true, keeps items on one line and shows `+N` chip with a tooltip for overflow items."
|
|
2581
2588
|
}
|
|
2582
2589
|
],
|
|
2583
2590
|
"examples": [
|
|
2584
|
-
"<DialAutocompleteInputValue\n selectedItems={['Item 1', 'Item 2', 'Item 3']}\n listClassName=\"custom-list-class\"\n listElementClassName=\"custom-item-class\"\n/>"
|
|
2591
|
+
"<DialAutocompleteInputValue\n selectedItems={['Item 1', 'Item 2', 'Item 3']}\n listClassName=\"custom-list-class\"\n listElementClassName=\"custom-item-class\"\n collapseTagOverflow\n/>"
|
|
2585
2592
|
],
|
|
2586
2593
|
"sourceFile": "components/AutocompleteInput/AutocompleteInputValue.tsx"
|
|
2587
2594
|
},
|
|
@@ -2593,7 +2600,7 @@
|
|
|
2593
2600
|
{
|
|
2594
2601
|
"name": "elementId",
|
|
2595
2602
|
"type": "string",
|
|
2596
|
-
"required":
|
|
2603
|
+
"required": false,
|
|
2597
2604
|
"description": "Unique identifier for the input element."
|
|
2598
2605
|
},
|
|
2599
2606
|
{
|
|
@@ -2640,6 +2647,25 @@
|
|
|
2640
2647
|
"defaultValue": "false",
|
|
2641
2648
|
"description": "When true, keeps tags on one line and shows `+N` for overflow."
|
|
2642
2649
|
},
|
|
2650
|
+
{
|
|
2651
|
+
"name": "readOnly",
|
|
2652
|
+
"type": "boolean",
|
|
2653
|
+
"required": false,
|
|
2654
|
+
"defaultValue": "false",
|
|
2655
|
+
"description": "When true, hides the text input (no new tags can be added). The outer wrapper and label/caption are also omitted so the component can be embedded inside an existing container."
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"name": "containerClassName",
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"required": false,
|
|
2661
|
+
"description": "Additional CSS classes applied to the tag container (the flex row wrapping all tags)."
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"name": "tagClassName",
|
|
2665
|
+
"type": "string",
|
|
2666
|
+
"required": false,
|
|
2667
|
+
"description": "Additional CSS classes applied to each individual tag."
|
|
2668
|
+
},
|
|
2643
2669
|
{
|
|
2644
2670
|
"name": "onChange",
|
|
2645
2671
|
"type": "(tags: string[]) => void",
|