@ornikar/kitt-universal 32.5.2 → 32.5.3-canary.f3d9b69069a5f00edad9110e1f71513d5e1ba86a.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [32.5.3-canary.f3d9b69069a5f00edad9110e1f71513d5e1ba86a.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@32.5.2...@ornikar/kitt-universal@32.5.3-canary.f3d9b69069a5f00edad9110e1f71513d5e1ba86a.0) (2026-01-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * better css ([a464c06](https://github.com/ornikar/kitt/commit/a464c0635e7886f020854452c22dc00e0afce8fa))
12
+ * remove linaria css ([bf90c84](https://github.com/ornikar/kitt/commit/bf90c84beea338c9de37dbf890022529024ab5cd))
13
+ * updated snapshots ([f3d9b69](https://github.com/ornikar/kitt/commit/f3d9b69069a5f00edad9110e1f71513d5e1ba86a))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * import ([b72fcb2](https://github.com/ornikar/kitt/commit/b72fcb2b792a950f99654519a5e125664fdabc40))
19
+ * reverted input modification ([e0de463](https://github.com/ornikar/kitt/commit/e0de46378458e41dbfb813db7e7cfd11109e8eed))
20
+
21
+
22
+
6
23
  ## [32.5.2](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@32.5.1...@ornikar/kitt-universal@32.5.2) (2025-12-18)
7
24
 
8
25
 
@@ -1 +1 @@
1
- {"version":3,"file":"InputTextContainer.web.d.ts","sourceRoot":"","sources":["../../../../src/forms/InputText/InputTextContainer.web.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAMvC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAkBpE,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,uBAAuB,GAAG,SAAS,CAE5E"}
1
+ {"version":3,"file":"InputTextContainer.web.d.ts","sourceRoot":"","sources":["../../../../src/forms/InputText/InputTextContainer.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAGpE,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,uBAAuB,GAAG,SAAS,CAE5E"}
@@ -6,7 +6,16 @@
6
6
  .kitt-u_opacityEnterActive_o1t4vl7b{opacity:1;-webkit-transition:opacity 250ms cubic-bezier(0.42,0,1,1);transition:opacity 250ms cubic-bezier(0.42,0,1,1);}
7
7
  .kitt-u_opacityExit_ogyytm1{opacity:1;}
8
8
  .kitt-u_opacityExitActive_o18xvk52{opacity:0;-webkit-transition:opacity 250ms cubic-bezier(0.42,0,1,1);transition:opacity 250ms cubic-bezier(0.42,0,1,1);}
9
- .kitt-u_inputTextContainer_i1encr9g{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;}.kitt-u_inputTextContainer_i1encr9g > *::-ms-clear,.kitt-u_inputTextContainer_i1encr9g > *::-ms-reveal{display:none;}.kitt-u_inputTextContainer_i1encr9g > *{-webkit-transition:border-color 200ms ease-in-out,background-color 200ms ease-in-out;transition:border-color 200ms ease-in-out,background-color 200ms ease-in-out;}
9
+ .InputTextContainer-module_inputTextContainer__gzH8Q > * {
10
+ transition: 200ms ease-in-out;
11
+ border-radius: 4px;
12
+ }
13
+
14
+ .InputTextContainer-module_inputTextContainer__gzH8Q > *:hover,
15
+ .kitt-hover .InputTextContainer-module_inputTextContainer__gzH8Q > * {
16
+ background-color: #f7f4ee;
17
+ }
18
+
10
19
  /* Overlay animation styles - uses CSS variables for theme values */
11
20
  .FullscreenModalAnimation-module_overlay-enter__L1J1X {
12
21
  opacity: 0;
@@ -5398,10 +5398,11 @@ function InputPressable({
5398
5398
  });
5399
5399
  }
5400
5400
 
5401
- const inputTextContainer = "kitt-u_inputTextContainer_i1encr9g";
5401
+ const styles$3 = {"inputTextContainer":"InputTextContainer-module_inputTextContainer__gzH8Q"};
5402
+
5402
5403
  function InputTextContainer(props) {
5403
5404
  return /*#__PURE__*/jsxRuntime.jsx("div", {
5404
- className: inputTextContainer,
5405
+ className: styles$3.inputTextContainer,
5405
5406
  ...props
5406
5407
  });
5407
5408
  }