@ctlyst.id/internal-ui 4.1.5 → 4.1.6

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/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") })