@ctlyst.id/internal-ui 4.1.5 → 4.1.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -1093,6 +1093,7 @@ var InputField = import_react22.default.forwardRef((props, ref) => {
|
|
1093
1093
|
ref,
|
1094
1094
|
type: inputType,
|
1095
1095
|
value,
|
1096
|
+
"data-test-id": `CT_Component_InputField${props.name ? `_${props.name}` : ""}`,
|
1096
1097
|
isDisabled,
|
1097
1098
|
isSuccess,
|
1098
1099
|
...inputProps,
|
@@ -5611,9 +5612,9 @@ var TimeInput2 = (0, import_react85.forwardRef)(
|
|
5611
5612
|
gap: 3,
|
5612
5613
|
children: [
|
5613
5614
|
/* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(import_react85.Flex, { gap: "1px", width: "100%", alignItems: "center", pl: 2, children: [
|
5614
|
-
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(InputTimeArea, { ...hoursProps }),
|
5615
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(InputTimeArea, { "data-test-id": "start-time", ...hoursProps }),
|
5615
5616
|
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { children: ":" }),
|
5616
|
-
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(InputTimeArea, { ...getInputProps("minutes") }),
|
5617
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(InputTimeArea, { "data-test-id": "end-time", ...getInputProps("minutes") }),
|
5617
5618
|
seconds && /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(import_jsx_runtime63.Fragment, { children: [
|
5618
5619
|
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { children: ":" }),
|
5619
5620
|
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(InputTimeArea, { ...getInputProps("seconds") })
|