@kushagradhawan/kookie-ui 0.1.104 → 0.1.107
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/components.css +12 -1
- package/dist/cjs/components/text-field.d.ts.map +1 -1
- package/dist/cjs/components/text-field.js +2 -2
- package/dist/cjs/components/text-field.js.map +3 -3
- package/dist/esm/components/text-field.d.ts.map +1 -1
- package/dist/esm/components/text-field.js +2 -2
- package/dist/esm/components/text-field.js.map +3 -3
- package/package.json +1 -1
- package/schemas/base-button.json +1 -1
- package/schemas/button.json +1 -1
- package/schemas/icon-button.json +1 -1
- package/schemas/index.json +6 -6
- package/schemas/toggle-button.json +1 -1
- package/schemas/toggle-icon-button.json +1 -1
- package/src/components/chatbar.css +5 -1
- package/src/components/scroll-area.css +2 -0
- package/src/components/shell.css +12 -0
- package/src/components/text-field.tsx +378 -347
- package/styles.css +12 -1
package/styles.css
CHANGED
|
@@ -18072,6 +18072,7 @@
|
|
|
18072
18072
|
flex-direction: column;
|
|
18073
18073
|
width: 100%;
|
|
18074
18074
|
height: 100%;
|
|
18075
|
+
-webkit-overflow-scrolling: touch;
|
|
18075
18076
|
}
|
|
18076
18077
|
.rt-ScrollAreaViewport:where(:focus-visible) + :where(.rt-ScrollAreaViewportFocusRing){
|
|
18077
18078
|
position: absolute;
|
|
@@ -22200,6 +22201,8 @@
|
|
|
22200
22201
|
flex-direction: column;
|
|
22201
22202
|
width: 100%;
|
|
22202
22203
|
overflow: hidden;
|
|
22204
|
+
overscroll-behavior: none;
|
|
22205
|
+
position: relative;
|
|
22203
22206
|
}
|
|
22204
22207
|
.rt-ShellRoot:not([style*='height']){
|
|
22205
22208
|
height: 100vh;
|
|
@@ -22226,6 +22229,7 @@
|
|
|
22226
22229
|
min-height: 0;
|
|
22227
22230
|
overflow: hidden;
|
|
22228
22231
|
position: relative;
|
|
22232
|
+
overscroll-behavior: contain;
|
|
22229
22233
|
}
|
|
22230
22234
|
.rt-ShellLeft{
|
|
22231
22235
|
display: flex;
|
|
@@ -22380,6 +22384,9 @@
|
|
|
22380
22384
|
min-width: 0;
|
|
22381
22385
|
height: 100%;
|
|
22382
22386
|
overflow: auto;
|
|
22387
|
+
-webkit-overflow-scrolling: touch;
|
|
22388
|
+
padding-bottom: env(safe-area-inset-bottom, 0px);
|
|
22389
|
+
overscroll-behavior: contain;
|
|
22383
22390
|
}
|
|
22384
22391
|
.rt-ShellInspector{
|
|
22385
22392
|
display: flex;
|
|
@@ -24980,7 +24987,7 @@
|
|
|
24980
24987
|
min-width: 0;
|
|
24981
24988
|
resize: none;
|
|
24982
24989
|
border: 0;
|
|
24983
|
-
outline:
|
|
24990
|
+
outline: none;
|
|
24984
24991
|
background: transparent;
|
|
24985
24992
|
padding: 0;
|
|
24986
24993
|
margin: 0;
|
|
@@ -24990,6 +24997,10 @@
|
|
|
24990
24997
|
text-align: start;
|
|
24991
24998
|
transition: height 150ms ease-out;
|
|
24992
24999
|
}
|
|
25000
|
+
.rt-ChatbarInput:focus,
|
|
25001
|
+
.rt-ChatbarInput:focus-visible{
|
|
25002
|
+
outline: none;
|
|
25003
|
+
}
|
|
24993
25004
|
.rt-ChatbarBox :where(.rt-ChatbarGrid){
|
|
24994
25005
|
display: flex;
|
|
24995
25006
|
flex-direction: column;
|