elseware-ui 3.0.8 → 3.0.9

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.js CHANGED
@@ -6425,9 +6425,21 @@ function Button({
6425
6425
  }
6426
6426
  var Button_web_default = Button;
6427
6427
 
6428
+ // src/data/styles/shared.styles.tsx
6429
+ var inputShapes = shapes;
6430
+ var inputInlineInsetClassName = "left-3";
6431
+ var inputInlinePaddingXClassName = "px-3";
6432
+ var inputRootClassName = "relative w-full";
6433
+ var inputFrameClassName = `relative h-14 w-full overflow-hidden border bg-white/95 ${inputInlinePaddingXClassName} dark:bg-eui-primary-300/10`;
6434
+ var inputFrameIdleClassName = "border-gray-300 hover:border-gray-400 dark:border-eui-dark-300 dark:hover:border-eui-dark-200";
6435
+ var inputFrameActiveClassName = "border-eui-secondary-600";
6436
+ var inputFrameErrorClassName = "border-eui-danger-500";
6437
+ var inputFrameDisabledClassName = "cursor-not-allowed opacity-60";
6438
+ var inputControlClassName = "w-full bg-transparent pt-5 pb-2 text-base font-normal text-gray-950 dark:text-gray-300";
6439
+
6428
6440
  // src/components/data-entry/input/input-label/base/InputLabel.styles.ts
6429
6441
  var inputLabelStaticClassName = "pointer-events-none select-none px-0 text-[13.5px] leading-none text-[#6B7280]";
6430
- var inputLabelBaseClassName = "pointer-events-none absolute left-3 z-10 select-none bg-white/95 px-1 font-medium leading-none dark:bg-transparent";
6442
+ var inputLabelBaseClassName = `pointer-events-none absolute ${inputInlineInsetClassName} z-10 select-none bg-transparent px-0 font-medium leading-none`;
6431
6443
  var inputLabelTransitionClassName = "transition-all duration-200 ease-out";
6432
6444
  var inputLabelRestingClassName = "top-[18px] translate-y-0 text-base leading-none text-[#6B7280]";
6433
6445
  var inputLabelFloatingClassName = "top-1.5 translate-y-0 text-xs leading-none text-[#6B7280]";
@@ -7233,7 +7245,7 @@ var Transition = {
7233
7245
  };
7234
7246
 
7235
7247
  // src/components/data-entry/input/input-response/base/InputResponse.styles.ts
7236
- var inputResponseBaseClassName = "px-2 pt-1.5 text-sm font-medium";
7248
+ var inputResponseBaseClassName = `${inputInlinePaddingXClassName} pt-1.5 text-sm font-medium`;
7237
7249
  var inputResponseVariants = textVariants;
7238
7250
  function InputResponse({
7239
7251
  name: name2,
@@ -7282,16 +7294,6 @@ function useInputFieldState(props) {
7282
7294
  };
7283
7295
  }
7284
7296
 
7285
- // src/data/styles/shared.styles.tsx
7286
- var inputShapes = shapes;
7287
- var inputRootClassName = "relative w-full";
7288
- var inputFrameClassName = "relative h-14 w-full overflow-hidden border bg-white/95 px-3 dark:bg-eui-primary-300/10";
7289
- var inputFrameIdleClassName = "border-gray-300 hover:border-gray-400 dark:border-eui-dark-300 dark:hover:border-eui-dark-200";
7290
- var inputFrameActiveClassName = "border-eui-secondary-600";
7291
- var inputFrameErrorClassName = "border-eui-danger-500";
7292
- var inputFrameDisabledClassName = "cursor-not-allowed opacity-60";
7293
- var inputControlClassName = "w-full bg-transparent pt-5 pb-2 text-base font-medium text-gray-950 dark:text-gray-50";
7294
-
7295
7297
  // src/components/data-entry/input/input/web/Input.web.styles.ts
7296
7298
  var webInputControlClassName = "placeholder-transparent outline-none transition-all duration-200 ease-out";
7297
7299
  var webPasswordToggleClassName = "absolute right-3 top-[18px] cursor-pointer text-xl text-eui-dark-200 transition-colors duration-180 hover:text-eui-secondary-700";