@epam/ai-dial-ui-kit 0.5.0-rc.37 → 0.5.0-rc.38
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/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +7 -16
- package/dist/src/components/Alert/Alert.d.ts +2 -2
- package/dist/src/components/Alert/constants.d.ts +2 -2
- package/dist/src/components/DraggableItem/DraggableItem.d.ts +8 -8
- package/dist/src/components/DraggableItem/constants.d.ts +2 -2
- package/dist/src/components/Icon/Icon.d.ts +0 -1
- package/package.json +1 -1
package/dist/dial-ui-kit.es.js
CHANGED
|
@@ -2955,7 +2955,7 @@ const Av = {
|
|
|
2955
2955
|
}, Ov = "items-center justify-between gap-2 p-3 border border-solid dial-small-150 rounded flex", M8 = ({
|
|
2956
2956
|
variant: e = bo.Info,
|
|
2957
2957
|
message: t,
|
|
2958
|
-
|
|
2958
|
+
className: s,
|
|
2959
2959
|
closable: o = !1,
|
|
2960
2960
|
onClose: i
|
|
2961
2961
|
}) => /* @__PURE__ */ z(
|
|
@@ -2978,7 +2978,7 @@ const Av = {
|
|
|
2978
2978
|
className: "ml-2 text-secondary hover:text-primary",
|
|
2979
2979
|
"aria-label": "Close alert",
|
|
2980
2980
|
iconBefore: /* @__PURE__ */ v(Uo, { size: 16 }),
|
|
2981
|
-
onClick:
|
|
2981
|
+
onClick: i
|
|
2982
2982
|
}
|
|
2983
2983
|
)
|
|
2984
2984
|
]
|
|
@@ -5319,10 +5319,10 @@ function Wh(e, t) {
|
|
|
5319
5319
|
const fd = "column", X1 = "flex items-center", J1 = "mr-3 cursor-move text-secondary", A8 = ({
|
|
5320
5320
|
id: e,
|
|
5321
5321
|
children: t,
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5322
|
+
className: s,
|
|
5323
|
+
onFind: o,
|
|
5324
|
+
onMove: i,
|
|
5325
|
+
ariaLabel: n = "Drag item"
|
|
5326
5326
|
}) => {
|
|
5327
5327
|
const r = L(null), a = L(null), l = typeof o == "function" ? o(e) : -1, [{ isDragging: c }, d, u] = U1(
|
|
5328
5328
|
() => ({
|
|
@@ -5360,15 +5360,7 @@ const fd = "column", X1 = "flex items-center", J1 = "mr-3 cursor-move text-secon
|
|
|
5360
5360
|
style: { opacity: c ? 0 : 1 },
|
|
5361
5361
|
"aria-roledescription": "Draggable item",
|
|
5362
5362
|
children: [
|
|
5363
|
-
/* @__PURE__ */ v(
|
|
5364
|
-
"div",
|
|
5365
|
-
{
|
|
5366
|
-
ref: r,
|
|
5367
|
-
className: J1,
|
|
5368
|
-
"aria-label": n,
|
|
5369
|
-
children: /* @__PURE__ */ v(hC, { ...re })
|
|
5370
|
-
}
|
|
5371
|
-
),
|
|
5363
|
+
/* @__PURE__ */ v("div", { ref: r, className: J1, "aria-label": n, children: /* @__PURE__ */ v(hC, { ...re }) }),
|
|
5372
5364
|
t
|
|
5373
5365
|
]
|
|
5374
5366
|
}
|
|
@@ -5455,7 +5447,6 @@ const fd = "column", X1 = "flex items-center", J1 = "mr-3 cursor-move text-secon
|
|
|
5455
5447
|
Ne,
|
|
5456
5448
|
{
|
|
5457
5449
|
className: be("text-accent-primary", s),
|
|
5458
|
-
label: "Shared entity indicator",
|
|
5459
5450
|
icon: /* @__PURE__ */ v(
|
|
5460
5451
|
NC,
|
|
5461
5452
|
{
|
|
@@ -3,7 +3,7 @@ import { AlertVariant } from '../../types/alert';
|
|
|
3
3
|
export interface DialAlertProps {
|
|
4
4
|
variant?: AlertVariant;
|
|
5
5
|
message: string | ReactNode;
|
|
6
|
-
|
|
6
|
+
className?: string;
|
|
7
7
|
closable?: boolean;
|
|
8
8
|
onClose?: (e: MouseEvent<HTMLButtonElement>) => void;
|
|
9
9
|
}
|
|
@@ -35,7 +35,7 @@ export interface DialAlertProps {
|
|
|
35
35
|
*
|
|
36
36
|
* @param [variant=AlertVariant.Info] - Defines the visual style and icon of the alert
|
|
37
37
|
* @param message - Message text to display inside the alert
|
|
38
|
-
* @param [
|
|
38
|
+
* @param [className] - Additional CSS classes applied to the alert container
|
|
39
39
|
* @param [closable=false] - Whether the alert has a close button
|
|
40
40
|
* @param [onClose] - Callback fired when the close button is clicked
|
|
41
41
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AlertVariant } from '../../types/alert';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
export declare const variantIcons: Record<AlertVariant, ReactNode>;
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
4
|
+
export declare const alertVariantClassNameMap: Record<AlertVariant, string>;
|
|
5
|
+
export declare const alertBaseClassName = "items-center justify-between gap-2 p-3 border border-solid dial-small-150 rounded flex";
|
|
@@ -2,10 +2,10 @@ import { FC, ReactNode } from 'react';
|
|
|
2
2
|
export interface DialDraggableItemProps {
|
|
3
3
|
id: string;
|
|
4
4
|
children: ReactNode;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
className?: string;
|
|
6
|
+
ariaLabel?: string;
|
|
7
|
+
onFind?: (field: string) => number;
|
|
8
|
+
onMove?: (field: string, atIndex: number) => void;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* A lightweight wrapper that makes its children sortable via drag-and-drop.
|
|
@@ -23,9 +23,9 @@ export interface DialDraggableItemProps {
|
|
|
23
23
|
*
|
|
24
24
|
* @param id - Unique identifier of the draggable item
|
|
25
25
|
* @param children - Content rendered within the draggable row
|
|
26
|
-
* @param [
|
|
27
|
-
* @param [
|
|
28
|
-
* @param [
|
|
29
|
-
* @param [
|
|
26
|
+
* @param [className] - Additional CSS classes applied to the root container
|
|
27
|
+
* @param [onFind] - Function to resolve an item's current index by id
|
|
28
|
+
* @param [onMove] - Function to move an item (by id) to a target index
|
|
29
|
+
* @param [ariaLabel='Drag item'] - Accessible label for the handle
|
|
30
30
|
*/
|
|
31
31
|
export declare const DialDraggableItem: FC<DialDraggableItemProps>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const DRAG_TYPE = "column";
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
2
|
+
export declare const containerBaseClassName = "flex items-center";
|
|
3
|
+
export declare const handleBaseClassName = "mr-3 cursor-move text-secondary";
|