@ctlyst.id/internal-ui 3.3.6 → 3.3.8

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.mjs CHANGED
@@ -4745,7 +4745,7 @@ var InputTimeArea = forwardRef12((props, ref) => {
4745
4745
  bg: "neutral.300"
4746
4746
  },
4747
4747
  boxSizing: "content-box",
4748
- height: "24px",
4748
+ height: "22px",
4749
4749
  ref,
4750
4750
  p: "2px",
4751
4751
  sx: {
@@ -4838,7 +4838,7 @@ var TimeInput2 = forwardRef12(
4838
4838
  alignItems: "center",
4839
4839
  gap: 3,
4840
4840
  children: [
4841
- /* @__PURE__ */ jsxs29(Flex17, { gap: 1, width: "100%", alignItems: "center", pl: 2, children: [
4841
+ /* @__PURE__ */ jsxs29(Flex17, { gap: "1px", width: "100%", alignItems: "center", pl: 2, children: [
4842
4842
  /* @__PURE__ */ jsx63(InputTimeArea, { ...hoursProps }),
4843
4843
  /* @__PURE__ */ jsx63("span", { children: ":" }),
4844
4844
  /* @__PURE__ */ jsx63(InputTimeArea, { ...getInputProps("minutes") }),
@@ -4848,7 +4848,7 @@ var TimeInput2 = forwardRef12(
4848
4848
  ] }),
4849
4849
  options.hour12 && /* @__PURE__ */ jsx63(Input3, { p: 0, ...getInputProps("am/pm") })
4850
4850
  ] }),
4851
- /* @__PURE__ */ jsx63(Clock, { color: "neutral.400" }),
4851
+ /* @__PURE__ */ jsx63(Clock, { color: "neutral.400", size: 4 }),
4852
4852
  addOnRight
4853
4853
  ]
4854
4854
  }
@@ -5178,6 +5178,7 @@ var Uploader = ({
5178
5178
  const color = isDisabled ? "neutral.500" : "primary.500";
5179
5179
  const containerHeight = !isSmall ? "160px" : "120px";
5180
5180
  const cursorType = filePreview ? "initial" : "pointer";
5181
+ console.log(isDragActive);
5181
5182
  return /* @__PURE__ */ jsxs31(FormControl4, { isRequired, children: [
5182
5183
  label && typeof label === "string" ? (
5183
5184
  // eslint-disable-next-line react/jsx-no-useless-fragment
@@ -5258,7 +5259,7 @@ var Uploader = ({
5258
5259
  fontSize: size2 === "sm" ? "text.md" : "text.xl",
5259
5260
  mb: size2 === "sm" ? "0" : "2",
5260
5261
  textAlign: "center",
5261
- children: uploadFileText && size2 === "lg" ? messages.uploadFile : "Upload"
5262
+ children: uploadFileText && size2 === "lg" ? uploadFileText : "Upload"
5262
5263
  }
5263
5264
  ),
5264
5265
  size2 === "lg" && /* @__PURE__ */ jsx66(Text18, { fontSize: 12, children: filePreview ? dragReplaceText != null ? dragReplaceText : messages.dragReplace : dragInActiveText != null ? dragInActiveText : messages.dragInActive })