@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 +17 -0
- package/dist/definitions/forms/InputText/InputTextContainer.web.d.ts.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +10 -1
- package/dist/index-node-22.17.cjs.web.js +3 -2
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.web.css +10 -1
- package/dist/index-node-22.17.es.web.mjs +3 -2
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.web.js +3 -2
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +10 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
.
|
|
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;
|
|
@@ -5389,10 +5389,11 @@ function InputPressable({
|
|
|
5389
5389
|
});
|
|
5390
5390
|
}
|
|
5391
5391
|
|
|
5392
|
-
const
|
|
5392
|
+
const styles$3 = {"inputTextContainer":"InputTextContainer-module_inputTextContainer__gzH8Q"};
|
|
5393
|
+
|
|
5393
5394
|
function InputTextContainer(props) {
|
|
5394
5395
|
return /*#__PURE__*/jsx("div", {
|
|
5395
|
-
className: inputTextContainer,
|
|
5396
|
+
className: styles$3.inputTextContainer,
|
|
5396
5397
|
...props
|
|
5397
5398
|
});
|
|
5398
5399
|
}
|