@epam/ai-dial-ui-kit 0.9.0-rc.21 → 0.9.0-rc.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components-manifest.json +39 -7
- package/dist/dial-ui-kit.cjs.js +23 -23
- package/dist/dial-ui-kit.es.js +8645 -8638
- package/dist/src/components/AutocompleteInput/AutocompleteInputValue.d.ts +6 -3
- package/dist/src/components/InputPopup/InputPopup.d.ts +1 -0
- package/dist/src/components/TagInput/TagInput.d.ts +7 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "0.9.0-rc",
|
|
3
|
-
"generatedAt": "2026-04-
|
|
3
|
+
"generatedAt": "2026-04-08T14:54:43.999Z",
|
|
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",
|
|
@@ -2543,6 +2543,12 @@
|
|
|
2543
2543
|
"type": "(value: string) => void",
|
|
2544
2544
|
"required": false,
|
|
2545
2545
|
"description": "Callback fired when the user types in the editable input."
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"name": "collapseTagOverflow",
|
|
2549
|
+
"type": "boolean",
|
|
2550
|
+
"required": false,
|
|
2551
|
+
"defaultValue": "false"
|
|
2546
2552
|
}
|
|
2547
2553
|
],
|
|
2548
2554
|
"examples": [
|
|
@@ -2552,8 +2558,8 @@
|
|
|
2552
2558
|
},
|
|
2553
2559
|
{
|
|
2554
2560
|
"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
|
|
2561
|
+
"category": "Form",
|
|
2562
|
+
"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
2563
|
"props": [
|
|
2558
2564
|
{
|
|
2559
2565
|
"name": "placeholder",
|
|
@@ -2571,17 +2577,24 @@
|
|
|
2571
2577
|
"name": "listClassName",
|
|
2572
2578
|
"type": "string",
|
|
2573
2579
|
"required": false,
|
|
2574
|
-
"description": "Additional CSS classes applied to the
|
|
2580
|
+
"description": "Additional CSS classes applied to the container element containing the list of selected items."
|
|
2575
2581
|
},
|
|
2576
2582
|
{
|
|
2577
2583
|
"name": "listElementClassName",
|
|
2578
2584
|
"type": "string",
|
|
2579
2585
|
"required": false,
|
|
2580
|
-
"description": "Additional CSS classes applied to each
|
|
2586
|
+
"description": "Additional CSS classes applied to each tag element representing an individual selected item."
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"name": "collapseTagOverflow",
|
|
2590
|
+
"type": "boolean",
|
|
2591
|
+
"required": false,
|
|
2592
|
+
"defaultValue": "false",
|
|
2593
|
+
"description": "When true, keeps items on one line and shows `+N` chip with a tooltip for overflow items."
|
|
2581
2594
|
}
|
|
2582
2595
|
],
|
|
2583
2596
|
"examples": [
|
|
2584
|
-
"<DialAutocompleteInputValue\n selectedItems={['Item 1', 'Item 2', 'Item 3']}\n listClassName=\"custom-list-class\"\n listElementClassName=\"custom-item-class\"\n/>"
|
|
2597
|
+
"<DialAutocompleteInputValue\n selectedItems={['Item 1', 'Item 2', 'Item 3']}\n listClassName=\"custom-list-class\"\n listElementClassName=\"custom-item-class\"\n collapseTagOverflow\n/>"
|
|
2585
2598
|
],
|
|
2586
2599
|
"sourceFile": "components/AutocompleteInput/AutocompleteInputValue.tsx"
|
|
2587
2600
|
},
|
|
@@ -2593,7 +2606,7 @@
|
|
|
2593
2606
|
{
|
|
2594
2607
|
"name": "elementId",
|
|
2595
2608
|
"type": "string",
|
|
2596
|
-
"required":
|
|
2609
|
+
"required": false,
|
|
2597
2610
|
"description": "Unique identifier for the input element."
|
|
2598
2611
|
},
|
|
2599
2612
|
{
|
|
@@ -2640,6 +2653,25 @@
|
|
|
2640
2653
|
"defaultValue": "false",
|
|
2641
2654
|
"description": "When true, keeps tags on one line and shows `+N` for overflow."
|
|
2642
2655
|
},
|
|
2656
|
+
{
|
|
2657
|
+
"name": "readOnly",
|
|
2658
|
+
"type": "boolean",
|
|
2659
|
+
"required": false,
|
|
2660
|
+
"defaultValue": "false",
|
|
2661
|
+
"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."
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"name": "containerClassName",
|
|
2665
|
+
"type": "string",
|
|
2666
|
+
"required": false,
|
|
2667
|
+
"description": "Additional CSS classes applied to the tag container (the flex row wrapping all tags)."
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"name": "tagClassName",
|
|
2671
|
+
"type": "string",
|
|
2672
|
+
"required": false,
|
|
2673
|
+
"description": "Additional CSS classes applied to each individual tag."
|
|
2674
|
+
},
|
|
2643
2675
|
{
|
|
2644
2676
|
"name": "onChange",
|
|
2645
2677
|
"type": "(tags: string[]) => void",
|