frst-components 0.20.22 → 0.20.23
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/index.js +24 -20
- package/dist/src/components/LXP/headerContent/headerContent.d.ts +1 -0
- package/dist/src/components/LXP/headerContent/headerContent.d.ts.map +1 -1
- package/dist/src/components/LXP/headerContent/index.d.ts +2 -0
- package/dist/src/components/LXP/headerContent/index.d.ts.map +1 -1
- package/dist/src/components/scroll-container/index.d.ts +1 -1
- package/dist/src/components/scroll-container/index.d.ts.map +1 -1
- package/dist/src/components/scroll-container/scrollContainerStyles.d.ts +1 -0
- package/dist/src/components/scroll-container/scrollContainerStyles.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3549,7 +3549,7 @@ const WrapperContent$3 = styled__default["default"].div `
|
|
|
3549
3549
|
display: flex;
|
|
3550
3550
|
flex-direction: row;
|
|
3551
3551
|
width: 100%;
|
|
3552
|
-
overflow-x: scroll;
|
|
3552
|
+
overflow-x: ${({ hiddenHorizontalScrollBar }) => (hiddenHorizontalScrollBar ? 'hidden' : 'scroll')};
|
|
3553
3553
|
overflow-y: hidden;
|
|
3554
3554
|
white-space: nowrap;
|
|
3555
3555
|
|
|
@@ -3618,7 +3618,7 @@ styled__default["default"].div `
|
|
|
3618
3618
|
border-radius: 20px;
|
|
3619
3619
|
`;
|
|
3620
3620
|
|
|
3621
|
-
function ScrollContainer({ children, type, isVisibleControlsButtons, positionArrowButton, marginTopArrrowButton, stepMove, className, styles, sizeArrowButton, marginsArrowButton, horizontalMarginInternScroll, refreshResize, widthProtectClick }) {
|
|
3621
|
+
function ScrollContainer({ children, type, isVisibleControlsButtons, positionArrowButton, marginTopArrrowButton, stepMove, className, styles, sizeArrowButton, marginsArrowButton, horizontalMarginInternScroll, refreshResize, widthProtectClick, hiddenHorizontalScrollBar }) {
|
|
3622
3622
|
const [actionAreaButtonLeft, setActionAreaButtonLeft] = React.useState(false);
|
|
3623
3623
|
const [actionAreaButtonRight, setActionAreaButtonRight] = React.useState(false);
|
|
3624
3624
|
const [iDScroll, setIDScroll] = React.useState(`iDScroll-${randID$1()}`);
|
|
@@ -3670,7 +3670,7 @@ function ScrollContainer({ children, type, isVisibleControlsButtons, positionArr
|
|
|
3670
3670
|
updateSize();
|
|
3671
3671
|
return () => window.removeEventListener('resize', updateSize);
|
|
3672
3672
|
}, []);
|
|
3673
|
-
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs("div", { style: { ...styles, position: 'relative' }, className: className, children: [jsxRuntime.jsxs(WrapperHorizontal, { children: [isVisibleControlsButtons && positionArrowButton != 'bottom' && (jsxRuntime.jsx(ButtonArrow, { isLeftButton: true, onClick: scrollToLeft, widthProtectClick: widthProtectClick, onActionArea: setActionAreaButtonLeft, actionArea: actionAreaButtonLeft, sizeButton: sizeArrowButton, isVisible: isVisibleArrowButtonLeft, margin: marginsArrowButton ? (marginsArrowButton + 50) * -1 + 'px' : '-138px', ArrowScroll: ArrowScrollLeft, marginTopArrrowButton: marginTopArrrowButton })), jsxRuntime.jsx(WrapperContent$3, { id: iDScroll, paddingIntern: horizontalMarginInternScroll ? horizontalMarginInternScroll : '150px', children: children }), isVisibleControlsButtons && positionArrowButton != 'bottom' && (jsxRuntime.jsx(ButtonArrow, { isLeftButton: false, onClick: scrollToRight, widthProtectClick: widthProtectClick, onActionArea: setActionAreaButtonRight, actionArea: actionAreaButtonRight, sizeButton: sizeArrowButton, isVisible: isVisibleArrowButtonRight, margin: marginsArrowButton ? (marginsArrowButton + 50) * -1 + 'px' : '-138px', ArrowScroll: ArrowScrollRight, marginTopArrrowButton: marginTopArrrowButton }))] }), jsxRuntime.jsx("div", { style: { display: 'flex', justifyContent: 'center', width: '100%' }, children: isVisibleControlsButtons && positionArrowButton == 'bottom' && (jsxRuntime.jsxs("div", { style: {
|
|
3673
|
+
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs("div", { style: { ...styles, position: 'relative' }, className: className, children: [jsxRuntime.jsxs(WrapperHorizontal, { children: [isVisibleControlsButtons && positionArrowButton != 'bottom' && (jsxRuntime.jsx(ButtonArrow, { isLeftButton: true, onClick: scrollToLeft, widthProtectClick: widthProtectClick, onActionArea: setActionAreaButtonLeft, actionArea: actionAreaButtonLeft, sizeButton: sizeArrowButton, isVisible: isVisibleArrowButtonLeft, margin: marginsArrowButton ? (marginsArrowButton + 50) * -1 + 'px' : '-138px', ArrowScroll: ArrowScrollLeft, marginTopArrrowButton: marginTopArrrowButton })), jsxRuntime.jsx(WrapperContent$3, { id: iDScroll, paddingIntern: horizontalMarginInternScroll ? horizontalMarginInternScroll : '150px', hiddenHorizontalScrollBar: hiddenHorizontalScrollBar, children: children }), isVisibleControlsButtons && positionArrowButton != 'bottom' && (jsxRuntime.jsx(ButtonArrow, { isLeftButton: false, onClick: scrollToRight, widthProtectClick: widthProtectClick, onActionArea: setActionAreaButtonRight, actionArea: actionAreaButtonRight, sizeButton: sizeArrowButton, isVisible: isVisibleArrowButtonRight, margin: marginsArrowButton ? (marginsArrowButton + 50) * -1 + 'px' : '-138px', ArrowScroll: ArrowScrollRight, marginTopArrrowButton: marginTopArrrowButton }))] }), jsxRuntime.jsx("div", { style: { display: 'flex', justifyContent: 'center', width: '100%' }, children: isVisibleControlsButtons && positionArrowButton == 'bottom' && (jsxRuntime.jsxs("div", { style: {
|
|
3674
3674
|
display: 'flex',
|
|
3675
3675
|
flexDirection: 'row',
|
|
3676
3676
|
marginTop: marginTopArrrowButton ? marginTopArrrowButton : '5px'
|
|
@@ -7543,7 +7543,7 @@ const HeaderImage$1 = styled__default["default"].div `
|
|
|
7543
7543
|
background-repeat: no-repeat;
|
|
7544
7544
|
background-size: cover;
|
|
7545
7545
|
background-position: center;
|
|
7546
|
-
|
|
7546
|
+
|
|
7547
7547
|
${(props) => props.tmnDescription < 164 &&
|
|
7548
7548
|
styled.css `
|
|
7549
7549
|
section {
|
|
@@ -7551,7 +7551,7 @@ const HeaderImage$1 = styled__default["default"].div `
|
|
|
7551
7551
|
}
|
|
7552
7552
|
`}
|
|
7553
7553
|
@media (max-width: 834px) {
|
|
7554
|
-
height: 450px;
|
|
7554
|
+
height: ${(props) => props.height ?? '450px'};
|
|
7555
7555
|
${(props) => props.tmnDescription >= 134 &&
|
|
7556
7556
|
styled.css `
|
|
7557
7557
|
section {
|
|
@@ -7560,26 +7560,31 @@ const HeaderImage$1 = styled__default["default"].div `
|
|
|
7560
7560
|
`}
|
|
7561
7561
|
}
|
|
7562
7562
|
|
|
7563
|
-
${(props) => props.onDisplay
|
|
7564
|
-
styled.css `
|
|
7565
|
-
|
|
7566
|
-
|
|
7563
|
+
${(props) => props.onDisplay
|
|
7564
|
+
? styled.css `
|
|
7565
|
+
width: 100%;
|
|
7566
|
+
`
|
|
7567
|
+
: styled.css `
|
|
7568
|
+
width: 0px;
|
|
7569
|
+
`}
|
|
7567
7570
|
|
|
7568
7571
|
@media (max-width: 414px) {
|
|
7569
|
-
height: 450px;
|
|
7572
|
+
height: ${(props) => props.height ?? '450px'};
|
|
7570
7573
|
}
|
|
7571
7574
|
@media (max-width: 320px) {
|
|
7572
|
-
height: 450px;
|
|
7575
|
+
height: ${(props) => props.height ?? '450px'};
|
|
7573
7576
|
}
|
|
7574
7577
|
`;
|
|
7575
7578
|
const Content = styled__default["default"].div `
|
|
7576
7579
|
width: 100%;
|
|
7577
|
-
height: 450px;
|
|
7580
|
+
height: ${(props) => props.height ?? '450px'};
|
|
7578
7581
|
padding: 64px;
|
|
7579
7582
|
background: linear-gradient(52deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
|
|
7580
|
-
|
|
7583
|
+
|
|
7581
7584
|
${(props) => !props.onDisplay &&
|
|
7582
|
-
styled.css `
|
|
7585
|
+
styled.css `
|
|
7586
|
+
display: none;
|
|
7587
|
+
`}
|
|
7583
7588
|
|
|
7584
7589
|
@media (max-width: 414px) {
|
|
7585
7590
|
padding: 2rem;
|
|
@@ -7595,7 +7600,6 @@ const ListCounters = styled__default["default"].div `
|
|
|
7595
7600
|
margin-bottom: 36px;
|
|
7596
7601
|
bottom: 0;
|
|
7597
7602
|
right: 50%;
|
|
7598
|
-
|
|
7599
7603
|
`;
|
|
7600
7604
|
const Counters = styled__default["default"].button `
|
|
7601
7605
|
width: 16px;
|
|
@@ -7603,7 +7607,7 @@ const Counters = styled__default["default"].button `
|
|
|
7603
7607
|
box-sizing: border-box;
|
|
7604
7608
|
border-radius: 100%;
|
|
7605
7609
|
border: none;
|
|
7606
|
-
background-color: ${({ selected, theme }) => selected ? theme.colors.primary1 : theme.colors.neutralsGrey5};
|
|
7610
|
+
background-color: ${({ selected, theme }) => (selected ? theme.colors.primary1 : theme.colors.neutralsGrey5)};
|
|
7607
7611
|
`;
|
|
7608
7612
|
const Title$1 = styled__default["default"].div `
|
|
7609
7613
|
font-size: 40px;
|
|
@@ -7721,7 +7725,7 @@ function HeaderContent(props) {
|
|
|
7721
7725
|
const [textView, setTextView] = React.useState(props.textViewMore);
|
|
7722
7726
|
React.useEffect(() => {
|
|
7723
7727
|
const timer = setTimeout(() => {
|
|
7724
|
-
setSelectedContent(selectedContent <
|
|
7728
|
+
setSelectedContent(selectedContent < props.listaRecomendacao.length - 1 ? selectedContent + 1 : 0);
|
|
7725
7729
|
setzeroHeigthDescription(false);
|
|
7726
7730
|
setTextView(props.textViewMore);
|
|
7727
7731
|
}, props.autoplayTime ? props.autoplayTime : 10000);
|
|
@@ -7744,8 +7748,8 @@ function HeaderContent(props) {
|
|
|
7744
7748
|
return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(Title$1, { children: item.title }), jsxRuntime.jsx(Description$1, { zeroHeigthDescription: zeroHeigthDescription, children: item.description }), jsxRuntime.jsxs(SpaceButtonTopViewMore, { zeroHeigthDescription: zeroHeigthDescription, onClick: addHeigthDescription, children: [jsxRuntime.jsx(Button$5, { label: textView, variant: "link", style: { color: '#649AF3', fontWeight: '900' } }), jsxRuntime.jsx(ArrowScrollRight, { fill: "#649AF3", width: "13px", height: "13px", strokeWidth: '4' })] }), jsxRuntime.jsxs(SpaceProgressAndButton, { children: [jsxRuntime.jsx(ProgressBar$1, { value: item.progresso, label: item.channel, style: { width: 200 } }), jsxRuntime.jsx(Button$5, { label: item.labelButton, variant: "primary", handleClick: item.onClick })] })] }));
|
|
7745
7749
|
}
|
|
7746
7750
|
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(Container$9, { style: { ...props.style }, children: [props.listaRecomendacao.map((item, index) => {
|
|
7747
|
-
return (jsxRuntime.jsx(HeaderImage$1, { img: item.bgImg, tmnDescription: item.description.length, onDisplay: index === selectedContent, style: { ...props.style }, children: jsxRuntime.jsx(jsxRuntime.Fragment, { children: item.typeOfHeader === 'inProgress' ? (jsxRuntime.jsx(Content, { onDisplay: index === selectedContent, children: InProgressHeader(item) })) : (jsxRuntime.jsx(Content, { onDisplay: index === selectedContent, children: RecomendationHeader(item) })) }) }, index));
|
|
7748
|
-
}), jsxRuntime.jsx(ListCounters, { children: Array.from({ length: props.listaRecomendacao.length }).map((_, index) => jsxRuntime.jsx(Counters, { selected: index === selectedContent, onClick: () => setSelectedContent(index) }, index)) })] }) }));
|
|
7751
|
+
return (jsxRuntime.jsx(HeaderImage$1, { img: item.bgImg, tmnDescription: item.description.length, onDisplay: index === selectedContent, style: { ...props.style }, children: jsxRuntime.jsx(jsxRuntime.Fragment, { children: item.typeOfHeader === 'inProgress' ? (jsxRuntime.jsx(Content, { height: props?.height, onDisplay: index === selectedContent, children: InProgressHeader(item) })) : (jsxRuntime.jsx(Content, { height: props?.height, onDisplay: index === selectedContent, children: RecomendationHeader(item) })) }) }, index));
|
|
7752
|
+
}), jsxRuntime.jsx(ListCounters, { children: Array.from({ length: props.listaRecomendacao.length }).map((_, index) => (jsxRuntime.jsx(Counters, { selected: index === selectedContent, onClick: () => setSelectedContent(index) }, index))) })] }) }));
|
|
7749
7753
|
}
|
|
7750
7754
|
|
|
7751
7755
|
const RectangleUpLeft = styled__default["default"].div `
|
|
@@ -8184,7 +8188,7 @@ const WrapperIconNotificationMobile = styled__default["default"].div `
|
|
|
8184
8188
|
`;
|
|
8185
8189
|
const SubMenuContainer = styled__default["default"].div `
|
|
8186
8190
|
width: 100%;
|
|
8187
|
-
height:
|
|
8191
|
+
height: 50px;
|
|
8188
8192
|
${(props) => props.marginTop &&
|
|
8189
8193
|
styled.css `
|
|
8190
8194
|
margin-top: 4rem;
|
|
@@ -3,6 +3,7 @@ interface HeaderContentProps {
|
|
|
3
3
|
zeroHeigthDescription?: boolean;
|
|
4
4
|
tmnDescription?: number;
|
|
5
5
|
onDisplay?: boolean;
|
|
6
|
+
height?: number | string;
|
|
6
7
|
}
|
|
7
8
|
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
9
|
export declare const HeaderImage: import("styled-components").StyledComponent<"div", any, HeaderContentProps, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"headerContent.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/headerContent/headerContent.ts"],"names":[],"mappings":"AAEA,UAAU,kBAAkB;IAC1B,GAAG,CAAC,EAAE,GAAG,CAAA;IACT,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,SAAS,CAAC,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"headerContent.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/headerContent/headerContent.ts"],"names":[],"mappings":"AAEA,UAAU,kBAAkB;IAC1B,GAAG,CAAC,EAAE,GAAG,CAAA;IACT,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CACzB;AAED,eAAO,MAAM,SAAS,oEAGrB,CAAA;AAED,eAAO,MAAM,WAAW,oFAgDvB,CAAA;AACD,eAAO,MAAM,OAAO,oFAenB,CAAA;AAED,eAAO,MAAM,YAAY,oEAUxB,CAAA;AAED,eAAO,MAAM,QAAQ;cAA6B,OAAO;SAOxD,CAAA;AAED,eAAO,MAAM,KAAK,oEAQjB,CAAA;AAED,eAAO,MAAM,WAAW,oFAwCvB,CAAA;AAED,eAAO,MAAM,sBAAsB,oEAelC,CAAA;AACD,eAAO,MAAM,eAAe,oEAa3B,CAAA;AACD,eAAO,MAAM,cAAc,oEAQ1B,CAAA;AAED,eAAO,MAAM,sBAAsB,wFAwBlC,CAAA"}
|
|
@@ -8,6 +8,7 @@ interface objPropiedades {
|
|
|
8
8
|
channel?: string;
|
|
9
9
|
onClick?: () => void;
|
|
10
10
|
labelButton?: string;
|
|
11
|
+
height?: number | string;
|
|
11
12
|
}
|
|
12
13
|
interface HeaderContentParams {
|
|
13
14
|
textViewMore?: string;
|
|
@@ -15,6 +16,7 @@ interface HeaderContentParams {
|
|
|
15
16
|
autoplayTime?: number;
|
|
16
17
|
listaRecomendacao: Array<objPropiedades>;
|
|
17
18
|
style?: React.CSSProperties;
|
|
19
|
+
height?: number | string;
|
|
18
20
|
}
|
|
19
21
|
export default function HeaderContent(props: HeaderContentParams): JSX.Element;
|
|
20
22
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/headerContent/index.tsx"],"names":[],"mappings":";AAQA,UAAU,cAAc;IACtB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,YAAY,GAAG,eAAe,CAAA;IAC7C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/headerContent/index.tsx"],"names":[],"mappings":";AAQA,UAAU,cAAc;IACtB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,YAAY,GAAG,eAAe,CAAA;IAC7C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CACzB;AACD,UAAU,mBAAmB;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,iBAAiB,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IACxC,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,KAAK,EAAE,mBAAmB,eA4G/D"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import '../../shared/global.css';
|
|
3
3
|
import { IScrollContainer } from './scrollContainer';
|
|
4
|
-
export default function ScrollContainer({ children, type, isVisibleControlsButtons, positionArrowButton, marginTopArrrowButton, stepMove, className, styles, sizeArrowButton, marginsArrowButton, horizontalMarginInternScroll, refreshResize, widthProtectClick }: IScrollContainer): JSX.Element;
|
|
4
|
+
export default function ScrollContainer({ children, type, isVisibleControlsButtons, positionArrowButton, marginTopArrrowButton, stepMove, className, styles, sizeArrowButton, marginsArrowButton, horizontalMarginInternScroll, refreshResize, widthProtectClick, hiddenHorizontalScrollBar }: IScrollContainer): JSX.Element;
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/scroll-container/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAMhC,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AAKpD,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,QAAQ,EACR,IAAI,EACJ,wBAAwB,EACxB,mBAAmB,EACnB,qBAAqB,EACrB,QAAQ,EACR,SAAS,EACT,MAAM,EACN,eAAe,EACf,kBAAkB,EAClB,4BAA4B,EAC5B,aAAa,EACb,iBAAiB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/scroll-container/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAMhC,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AAKpD,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,QAAQ,EACR,IAAI,EACJ,wBAAwB,EACxB,mBAAmB,EACnB,qBAAqB,EACrB,QAAQ,EACR,SAAS,EACT,MAAM,EACN,eAAe,EACf,kBAAkB,EAClB,4BAA4B,EAC5B,aAAa,EACb,iBAAiB,EACjB,yBAAyB,EAC1B,EAAE,gBAAgB,eAyIlB"}
|
|
@@ -8,6 +8,7 @@ interface IButtonContoll {
|
|
|
8
8
|
export declare const WrapperHorizontal: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
9
|
export declare const WrapperContent: import("styled-components").StyledComponent<"div", any, {
|
|
10
10
|
paddingIntern?: string;
|
|
11
|
+
hiddenHorizontalScrollBar: boolean;
|
|
11
12
|
}, never>;
|
|
12
13
|
export declare const ButtonControll: import("styled-components").StyledComponent<"div", any, IButtonContoll, never>;
|
|
13
14
|
export declare const CardTest: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scrollContainerStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/scroll-container/scrollContainerStyles.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACtB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,qBAAqB,CAAC,EAAE,MAAM,CAAA;CAC/B;AAED,eAAO,MAAM,iBAAiB,oEAO7B,CAAA;AAED,eAAO,MAAM,cAAc;oBAAgC,MAAM;
|
|
1
|
+
{"version":3,"file":"scrollContainerStyles.d.ts","sourceRoot":"","sources":["../../../../src/components/scroll-container/scrollContainerStyles.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACtB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,qBAAqB,CAAC,EAAE,MAAM,CAAA;CAC/B;AAED,eAAO,MAAM,iBAAiB,oEAO7B,CAAA;AAED,eAAO,MAAM,cAAc;oBAAgC,MAAM;+BAA6B,OAAO;SAcpG,CAAA;AAED,eAAO,MAAM,cAAc,gFA2C1B,CAAA;AAKD,eAAO,MAAM,QAAQ,oEASpB,CAAA"}
|