@epam/ai-dial-ui-kit 0.5.0-rc.38 → 0.5.0-rc.39
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.es.js
CHANGED
|
@@ -2872,24 +2872,24 @@ function be(...e) {
|
|
|
2872
2872
|
}
|
|
2873
2873
|
const Ko = ({
|
|
2874
2874
|
fieldTitle: e,
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2875
|
+
optional: t,
|
|
2876
|
+
optionalText: s,
|
|
2877
|
+
className: o,
|
|
2878
|
+
description: i,
|
|
2879
|
+
...n
|
|
2880
2880
|
}) => e ? /* @__PURE__ */ z(
|
|
2881
2881
|
"label",
|
|
2882
2882
|
{
|
|
2883
|
+
...n,
|
|
2883
2884
|
className: be(
|
|
2884
2885
|
"dial-tiny text-secondary flex gap-1",
|
|
2885
|
-
|
|
2886
|
-
!
|
|
2886
|
+
o,
|
|
2887
|
+
!o?.includes("mb") && "mb-2"
|
|
2887
2888
|
),
|
|
2888
|
-
htmlFor: t,
|
|
2889
2889
|
children: [
|
|
2890
2890
|
typeof e == "string" ? /* @__PURE__ */ v("span", { className: "min-h-4", children: e }) : e,
|
|
2891
|
-
|
|
2892
|
-
|
|
2891
|
+
t && /* @__PURE__ */ v("span", { children: s ?? "(Optional)" }),
|
|
2892
|
+
i && /* @__PURE__ */ v(Ts, { tooltip: i, children: /* @__PURE__ */ v(
|
|
2893
2893
|
Ne,
|
|
2894
2894
|
{
|
|
2895
2895
|
icon: /* @__PURE__ */ v(ch, { size: 14, className: "text-secondary" })
|
|
@@ -2985,8 +2985,8 @@ const Av = {
|
|
|
2985
2985
|
}
|
|
2986
2986
|
), Nv = "flex items-center justify-center text-secondary", Hv = "shrink-0 grow-0 basis-auto animate-spin-steps", Gv = (e) => /* @__PURE__ */ pe.createElement("svg", { viewBox: "0 0 48 48", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ pe.createElement("path", { d: "M24 39V46.5", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.4, d: "M9 24H1.5", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.5, d: "M8.0918 8.0918L13.3994 13.3994", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.6, d: "M24 1.5V9", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.7, d: "M39.9121 8.08594L37.2607 10.7373L34.6094 13.3887", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.8, d: "M46.5 24H39", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.9, d: "M34.6055 34.6055L39.9082 39.9082", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ pe.createElement("path", { opacity: 0.3, d: "M13.3936 34.6055L8.08594 39.9131", stroke: "currentColor", strokeWidth: 3, strokeLinecap: "round", strokeLinejoin: "round" })), Cr = ({
|
|
2987
2987
|
size: e = 18,
|
|
2988
|
-
|
|
2989
|
-
|
|
2988
|
+
className: t,
|
|
2989
|
+
iconClassName: s,
|
|
2990
2990
|
fullWidth: o = !0,
|
|
2991
2991
|
ariaLabel: i = "Loading"
|
|
2992
2992
|
}) => /* @__PURE__ */ v(
|
|
@@ -3319,7 +3319,7 @@ const Uv = "w-full flex", $v = {
|
|
|
3319
3319
|
fieldTitle: t,
|
|
3320
3320
|
optional: s,
|
|
3321
3321
|
optionalText: o,
|
|
3322
|
-
|
|
3322
|
+
className: be(
|
|
3323
3323
|
a && "sr-only",
|
|
3324
3324
|
c
|
|
3325
3325
|
),
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { FC, ReactNode } from 'react';
|
|
2
|
-
|
|
1
|
+
import { FC, LabelHTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
type NativeLabelProps = Omit<LabelHTMLAttributes<HTMLLabelElement>, 'children'>;
|
|
3
|
+
export interface DialFieldLabelProps extends NativeLabelProps {
|
|
3
4
|
fieldTitle?: string | ReactNode;
|
|
4
|
-
htmlFor: string;
|
|
5
5
|
optional?: boolean;
|
|
6
6
|
optionalText?: string;
|
|
7
|
-
|
|
8
|
-
description?: string;
|
|
7
|
+
description?: ReactNode;
|
|
9
8
|
}
|
|
10
9
|
/**
|
|
11
10
|
* A field label component
|
|
@@ -16,11 +15,10 @@ export interface DialFieldLabelProps {
|
|
|
16
15
|
* <DialFieldLabel htmlFor="email-input" fieldTitle="Email Address" />
|
|
17
16
|
* ```
|
|
18
17
|
*
|
|
19
|
-
* @param htmlFor - The ID of the form element this label is associated with
|
|
20
18
|
* @param [fieldTitle] - The title/label text to display for the field
|
|
21
19
|
* @param [optional=false] - Whether the field is optional (displays "(Optional)" text if optionalText is not provided)
|
|
22
20
|
* @param [optionalText="(Optional)"] - Custom text for optional indicator
|
|
23
|
-
* @param [cssClass] - Additional CSS classes to apply to the label element
|
|
24
21
|
* @param [description] - Additional description text, displayed below the label.
|
|
25
22
|
*/
|
|
26
23
|
export declare const DialFieldLabel: FC<DialFieldLabelProps>;
|
|
24
|
+
export {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
export interface DialLoaderProps {
|
|
3
3
|
size?: number;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
className?: string;
|
|
5
|
+
iconClassName?: string;
|
|
6
6
|
fullWidth?: boolean;
|
|
7
7
|
ariaLabel?: string;
|
|
8
8
|
}
|
|
@@ -20,12 +20,12 @@ export interface DialLoaderProps {
|
|
|
20
20
|
* <DialLoader fullWidth={false} />
|
|
21
21
|
*
|
|
22
22
|
* // Custom size and classes
|
|
23
|
-
* <DialLoader size={24}
|
|
23
|
+
* <DialLoader size={24} iconClassName="text-accent-primary" />
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* @param [size=18] - Icon size in px
|
|
27
|
-
* @param [
|
|
28
|
-
* @param [
|
|
27
|
+
* @param [className] - Additional classes for the container
|
|
28
|
+
* @param [iconClassName] - Additional classes for the SVG icon
|
|
29
29
|
* @param [fullWidth=true] - Stretch to full width/height of container
|
|
30
30
|
* @param [ariaLabel='Loading'] - Accessible label for screen readers
|
|
31
31
|
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
export declare const
|
|
1
|
+
export declare const loaderBaseClassName = "flex items-center justify-center text-secondary";
|
|
2
|
+
export declare const loaderIconBaseClassName = "shrink-0 grow-0 basis-auto animate-spin-steps";
|