@chekinapp/ui 0.0.44 → 0.0.45

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.cjs CHANGED
@@ -156,7 +156,6 @@ __export(index_exports, {
156
156
  InputOTPGroup: () => InputOTPGroup,
157
157
  InputOTPSeparator: () => InputOTPSeparator,
158
158
  InputOTPSlot: () => InputOTPSlot,
159
- LABEL_PLACEMENT: () => LABEL_PLACEMENT,
160
159
  Label: () => Label,
161
160
  LargeModal: () => LargeModal,
162
161
  LearnMoreButton: () => LearnMoreButton,
@@ -9657,13 +9656,6 @@ var Textarea = (0, import_react67.forwardRef)(
9657
9656
  );
9658
9657
  Textarea.displayName = "Textarea";
9659
9658
 
9660
- // src/three-dots-loader/constants.ts
9661
- var LABEL_PLACEMENT = /* @__PURE__ */ ((LABEL_PLACEMENT2) => {
9662
- LABEL_PLACEMENT2[LABEL_PLACEMENT2["right"] = 0] = "right";
9663
- LABEL_PLACEMENT2[LABEL_PLACEMENT2["left"] = 1] = "left";
9664
- return LABEL_PLACEMENT2;
9665
- })(LABEL_PLACEMENT || {});
9666
-
9667
9659
  // src/three-dots-loader/ThreeDotsLoader.tsx
9668
9660
  var import_jsx_runtime124 = require("react/jsx-runtime");
9669
9661
  function Dots({
@@ -9709,7 +9701,7 @@ function ThreeDotsLoader({
9709
9701
  color = "#E3E3E3FF",
9710
9702
  label = "",
9711
9703
  className,
9712
- labelPlacement = 0 /* right */
9704
+ labelPlacement = "right"
9713
9705
  }) {
9714
9706
  const dots = /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(Dots, { color, height, width });
9715
9707
  if (label) {
@@ -9720,7 +9712,7 @@ function ThreeDotsLoader({
9720
9712
  "flex items-center justify-center gap-x-[13px] [&>div]:text-sm [&>div]:font-bold [&>div]:uppercase [&>div]:text-[#9696b9] [&>div]:opacity-50",
9721
9713
  className
9722
9714
  ),
9723
- children: labelPlacement === 0 /* right */ ? /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(import_jsx_runtime124.Fragment, { children: [
9715
+ children: labelPlacement === "right" ? /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(import_jsx_runtime124.Fragment, { children: [
9724
9716
  dots,
9725
9717
  /* @__PURE__ */ (0, import_jsx_runtime124.jsx)("div", { children: label })
9726
9718
  ] }) : /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(import_jsx_runtime124.Fragment, { children: [
@@ -13133,7 +13125,6 @@ function getNextEnabledIndex(options, startIndex, step) {
13133
13125
  InputOTPGroup,
13134
13126
  InputOTPSeparator,
13135
13127
  InputOTPSlot,
13136
- LABEL_PLACEMENT,
13137
13128
  Label,
13138
13129
  LargeModal,
13139
13130
  LearnMoreButton,