@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.mjs CHANGED
@@ -726,6 +726,7 @@ var InputField = React2.forwardRef((props, ref) => {
726
726
  ref,
727
727
  type: inputType,
728
728
  value,
729
+ "data-test-id": `CT_Component_InputField${props.name ? `_${props.name}` : ""}`,
729
730
  isDisabled,
730
731
  isSuccess,
731
732
  ...inputProps,
@@ -5470,9 +5471,9 @@ var TimeInput2 = forwardRef12(
5470
5471
  gap: 3,
5471
5472
  children: [
5472
5473
  /* @__PURE__ */ jsxs29(Flex17, { gap: "1px", width: "100%", alignItems: "center", pl: 2, children: [
5473
- /* @__PURE__ */ jsx63(InputTimeArea, { ...hoursProps }),
5474
+ /* @__PURE__ */ jsx63(InputTimeArea, { "data-test-id": "start-time", ...hoursProps }),
5474
5475
  /* @__PURE__ */ jsx63("span", { children: ":" }),
5475
- /* @__PURE__ */ jsx63(InputTimeArea, { ...getInputProps("minutes") }),
5476
+ /* @__PURE__ */ jsx63(InputTimeArea, { "data-test-id": "end-time", ...getInputProps("minutes") }),
5476
5477
  seconds && /* @__PURE__ */ jsxs29(Fragment10, { children: [
5477
5478
  /* @__PURE__ */ jsx63("span", { children: ":" }),
5478
5479
  /* @__PURE__ */ jsx63(InputTimeArea, { ...getInputProps("seconds") })