tgui-core 5.3.0 → 5.3.1
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/components/Tabs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Fragment as e,jsx as r,jsxs as t}from"react/jsx-runtime";import{canRender as l,classes as n}from"../common/react.js";import{computeBoxClassName as i,computeBoxProps as
|
|
1
|
+
import{Fragment as e,jsx as r,jsxs as t}from"react/jsx-runtime";import{canRender as l,classes as n}from"../common/react.js";import{computeBoxClassName as i,computeBoxProps as c}from"../common/ui.js";import{useEffect as a,useRef as o,useState as s}from"react";import{Button as d}from"./Button.js";import{Icon as m}from"./Icon.js";function b(l){let{className:d,vertical:m,scrollable:b,fill:f,fluid:h,children:T,...v}=l,_=o(!0),p=o(null),L=o(null),[N,w]=s(!1),[E,j]=s(!1);function W(e){if(!p.current)return;let r=p.current,t=.5*r.clientWidth;r.scrollBy({left:"left"===e?-t:t,behavior:"smooth"})}a(()=>{if(!b||m||!p.current)return;let e=p.current;if(e.scrollWidth<e.clientWidth)return;function r(){w(e.scrollLeft>0),j(e.scrollLeft+e.clientWidth<e.scrollWidth)}function t(r){Math.abs(r.deltaY)>Math.abs(r.deltaX)&&(e.scrollLeft+=r.deltaY)}let l=e.querySelector(".Tab--selected");if(l)return L.current!==l&&(L.current=l,l.scrollIntoView({behavior:_.current?"auto":"smooth",inline:"center"})),_.current=!1,e.addEventListener("wheel",t,{passive:!0}),e.addEventListener("scroll",r),window.addEventListener("resize",r),r(),()=>{e.removeEventListener("wheel",t),e.removeEventListener("scroll",r),window.removeEventListener("resize",r)}},[b,m,T]);let g=T;return b&&!m&&(g=t(e,{children:[N&&r(u,{direction:"left",makeScroll:W}),r("div",{ref:p,className:n(["Tabs--scrollable-content",N&&"scrollable-left",E&&"scrollable-right"]),children:T}),E&&r(u,{direction:"right",makeScroll:W})]})),r("div",{className:n(["Tabs",m?"Tabs--vertical":"Tabs--horizontal",f&&"Tabs--fill",h&&"Tabs--fluid",!m&&b&&"Tabs--scrollable",d,i(v)]),...c(v),children:g})}function u(e){let{direction:t,makeScroll:l}=e;return r(d,{className:`scroll-${t}`,color:"transparent",icon:`angle-${t}`,onClick:()=>l(t)})}(b||(b={})).Tab=function(e){let{className:a,selected:o,color:s,icon:d,iconSpin:b,leftSlot:u,rightSlot:f,children:h,onClick:T,...v}=e;return t("div",{className:n(["Tab","Tabs__Tab",`Tab--color--${s}`,o&&"Tab--selected",a,i(v)]),onClick:e=>T?.(e),...c(v),children:[l(u)&&r("div",{className:"Tab__left",children:u})||!!d&&r("div",{className:"Tab__left",children:r(m,{name:d,spin:b})}),r("div",{className:"Tab__text",children:h}),l(f)&&r("div",{className:"Tab__right",children:f})]})};export{b as Tabs};
|
package/package.json
CHANGED
|
@@ -136,23 +136,26 @@
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
.Tabs--scrollable {
|
|
139
|
-
--mask-width: 3.
|
|
139
|
+
--mask-width: 3.25em;
|
|
140
140
|
--mask-left: 0rem;
|
|
141
141
|
--mask-right: 0rem;
|
|
142
142
|
|
|
143
|
+
display: grid;
|
|
144
|
+
padding: 0;
|
|
145
|
+
|
|
143
146
|
&-content {
|
|
144
147
|
overflow: auto;
|
|
145
148
|
scrollbar-width: none;
|
|
146
149
|
overscroll-behavior: none;
|
|
147
150
|
display: flex;
|
|
148
151
|
flex-wrap: nowrap;
|
|
149
|
-
|
|
152
|
+
padding: var(--space-s) var(--space-s) 0;
|
|
150
153
|
mask-image: linear-gradient(
|
|
151
154
|
90deg,
|
|
152
|
-
transparent calc(var(--mask-left) * 0.
|
|
155
|
+
transparent calc(var(--mask-left) * 0.66),
|
|
153
156
|
black calc(0% + var(--mask-left)),
|
|
154
157
|
black calc(100% - var(--mask-right)),
|
|
155
|
-
transparent calc(100% - calc(var(--mask-right) * 0.
|
|
158
|
+
transparent calc(100% - calc(var(--mask-right) * 0.66))
|
|
156
159
|
);
|
|
157
160
|
|
|
158
161
|
&.scrollable-left.scrollable-right {
|
|
@@ -175,8 +178,8 @@
|
|
|
175
178
|
align-content: center;
|
|
176
179
|
top: 0;
|
|
177
180
|
height: 100%;
|
|
178
|
-
margin:
|
|
179
|
-
border-radius:
|
|
181
|
+
margin: 0;
|
|
182
|
+
border-radius: 0;
|
|
180
183
|
z-index: 1;
|
|
181
184
|
}
|
|
182
185
|
|