profinansy-ui-lib 3.8.70 → 3.8.71

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.
@@ -1,2 +1,6 @@
1
- declare const SkeletonBubbles: () => import("react/jsx-runtime").JSX.Element;
1
+ import CSS from 'csstype';
2
+ interface IProps {
3
+ style: CSS.Properties;
4
+ }
5
+ declare const SkeletonBubbles: ({ style }: IProps) => import("react/jsx-runtime").JSX.Element;
2
6
  export { SkeletonBubbles };
@@ -2267,7 +2267,7 @@ Check the top-level render call using <`+q+">.")}return G}}function ql(L,G){{if(
2267
2267
  margin-right: ${e=>`${e.$right}px`};
2268
2268
  border-radius: ${e=>`${e.$radius}px`};
2269
2269
  background: ${e=>e.theme.background.secondaryAlpha};
2270
- `,vn=({height:e,maxWidth:t,minWidth:n,bottom:r=16,right:o=0,radius:i=12,className:a})=>{const{mode:l}=te();return s.jsx(h.ThemeProvider,{theme:X[l],children:s.jsx(FC,{$height:e,$bottom:r,$right:o,$maxWidth:t,$minWidth:n,$radius:i,className:Be(a,"skeleton")})})},VC=()=>s.jsxs("div",{style:{display:"flex",gap:"8px"},children:[s.jsx(vn,{height:36,maxWidth:100,radius:24,bottom:0}),s.jsx(vn,{height:36,maxWidth:100,radius:24,bottom:0}),s.jsx(vn,{height:36,maxWidth:100,radius:24,bottom:0})]}),r6=e=>{const{scroll:t="base"}=e,{mode:n}=te();return e.isLoading?s.jsx(VC,{}):t==="none"?s.jsx(h.ThemeProvider,{theme:X[n],children:s.jsx(n6,{...e})}):s.jsx(BC,{...e})},OC=h.styled.div`
2270
+ `,vn=({height:e,maxWidth:t,minWidth:n,bottom:r=16,right:o=0,radius:i=12,className:a})=>{const{mode:l}=te();return s.jsx(h.ThemeProvider,{theme:X[l],children:s.jsx(FC,{$height:e,$bottom:r,$right:o,$maxWidth:t,$minWidth:n,$radius:i,className:Be(a,"skeleton")})})},VC=({style:e})=>s.jsxs("div",{style:{display:"flex",gap:"8px",...e},children:[s.jsx(vn,{height:36,maxWidth:100,radius:24,bottom:0}),s.jsx(vn,{height:36,maxWidth:100,radius:24,bottom:0}),s.jsx(vn,{height:36,maxWidth:100,radius:24,bottom:0})]}),r6=e=>{const{scroll:t="base"}=e,{mode:n}=te();return e.isLoading?s.jsx(VC,{style:e.style}):t==="none"?s.jsx(h.ThemeProvider,{theme:X[n],children:s.jsx(n6,{...e})}):s.jsx(BC,{...e})},OC=h.styled.div`
2271
2271
  display: flex;
2272
2272
  align-items: center;
2273
2273
  gap: 10px;