frst-components 0.20.21 → 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 CHANGED
@@ -1233,8 +1233,7 @@ const containerTitleDesafio = styled__default["default"].div `
1233
1233
  const TitleDesafiosWhite = styled__default["default"].div `
1234
1234
  width: 240px;
1235
1235
  height: 24px;
1236
- background: #ffffff;
1237
- border: 1px solid #d1d5db;
1236
+ background: rgba(255, 255, 255, 0.8);
1238
1237
  border-radius: 30px;
1239
1238
  font-family: 'Work Sans';
1240
1239
  font-style: normal;
@@ -1244,7 +1243,7 @@ const TitleDesafiosWhite = styled__default["default"].div `
1244
1243
  display: flex;
1245
1244
  align-items: center;
1246
1245
  text-align: center;
1247
- color: #d14211;
1246
+ color: #1b191a;
1248
1247
  display: flex;
1249
1248
  justify-content: center;
1250
1249
  position: relative;
@@ -1256,7 +1255,6 @@ const TitleDesafiosGrey = styled__default["default"].div `
1256
1255
  width: 240px;
1257
1256
  height: 24px;
1258
1257
  background: rgba(255, 255, 255, 0.4);
1259
- border: 1px solid #d1d5db;
1260
1258
  border-radius: 30px;
1261
1259
  font-family: 'Work Sans';
1262
1260
  font-style: normal;
@@ -1266,7 +1264,7 @@ const TitleDesafiosGrey = styled__default["default"].div `
1266
1264
  display: flex;
1267
1265
  align-items: center;
1268
1266
  text-align: center;
1269
- color: #d14211;
1267
+ color: #ffffff;
1270
1268
  display: flex;
1271
1269
  justify-content: center;
1272
1270
  position: relative;
@@ -3551,7 +3549,7 @@ const WrapperContent$3 = styled__default["default"].div `
3551
3549
  display: flex;
3552
3550
  flex-direction: row;
3553
3551
  width: 100%;
3554
- overflow-x: scroll;
3552
+ overflow-x: ${({ hiddenHorizontalScrollBar }) => (hiddenHorizontalScrollBar ? 'hidden' : 'scroll')};
3555
3553
  overflow-y: hidden;
3556
3554
  white-space: nowrap;
3557
3555
 
@@ -3620,7 +3618,7 @@ styled__default["default"].div `
3620
3618
  border-radius: 20px;
3621
3619
  `;
3622
3620
 
3623
- 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 }) {
3624
3622
  const [actionAreaButtonLeft, setActionAreaButtonLeft] = React.useState(false);
3625
3623
  const [actionAreaButtonRight, setActionAreaButtonRight] = React.useState(false);
3626
3624
  const [iDScroll, setIDScroll] = React.useState(`iDScroll-${randID$1()}`);
@@ -3672,7 +3670,7 @@ function ScrollContainer({ children, type, isVisibleControlsButtons, positionArr
3672
3670
  updateSize();
3673
3671
  return () => window.removeEventListener('resize', updateSize);
3674
3672
  }, []);
3675
- 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: {
3676
3674
  display: 'flex',
3677
3675
  flexDirection: 'row',
3678
3676
  marginTop: marginTopArrrowButton ? marginTopArrrowButton : '5px'
@@ -7545,7 +7543,7 @@ const HeaderImage$1 = styled__default["default"].div `
7545
7543
  background-repeat: no-repeat;
7546
7544
  background-size: cover;
7547
7545
  background-position: center;
7548
-
7546
+
7549
7547
  ${(props) => props.tmnDescription < 164 &&
7550
7548
  styled.css `
7551
7549
  section {
@@ -7553,7 +7551,7 @@ const HeaderImage$1 = styled__default["default"].div `
7553
7551
  }
7554
7552
  `}
7555
7553
  @media (max-width: 834px) {
7556
- height: 450px;
7554
+ height: ${(props) => props.height ?? '450px'};
7557
7555
  ${(props) => props.tmnDescription >= 134 &&
7558
7556
  styled.css `
7559
7557
  section {
@@ -7562,26 +7560,31 @@ const HeaderImage$1 = styled__default["default"].div `
7562
7560
  `}
7563
7561
  }
7564
7562
 
7565
- ${(props) => props.onDisplay ?
7566
- styled.css ` width: 100%;`
7567
- :
7568
- styled.css ` width: 0px;`}
7563
+ ${(props) => props.onDisplay
7564
+ ? styled.css `
7565
+ width: 100%;
7566
+ `
7567
+ : styled.css `
7568
+ width: 0px;
7569
+ `}
7569
7570
 
7570
7571
  @media (max-width: 414px) {
7571
- height: 450px;
7572
+ height: ${(props) => props.height ?? '450px'};
7572
7573
  }
7573
7574
  @media (max-width: 320px) {
7574
- height: 450px;
7575
+ height: ${(props) => props.height ?? '450px'};
7575
7576
  }
7576
7577
  `;
7577
7578
  const Content = styled__default["default"].div `
7578
7579
  width: 100%;
7579
- height: 450px;
7580
+ height: ${(props) => props.height ?? '450px'};
7580
7581
  padding: 64px;
7581
7582
  background: linear-gradient(52deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
7582
-
7583
+
7583
7584
  ${(props) => !props.onDisplay &&
7584
- styled.css ` display: none;`}
7585
+ styled.css `
7586
+ display: none;
7587
+ `}
7585
7588
 
7586
7589
  @media (max-width: 414px) {
7587
7590
  padding: 2rem;
@@ -7597,7 +7600,6 @@ const ListCounters = styled__default["default"].div `
7597
7600
  margin-bottom: 36px;
7598
7601
  bottom: 0;
7599
7602
  right: 50%;
7600
-
7601
7603
  `;
7602
7604
  const Counters = styled__default["default"].button `
7603
7605
  width: 16px;
@@ -7605,7 +7607,7 @@ const Counters = styled__default["default"].button `
7605
7607
  box-sizing: border-box;
7606
7608
  border-radius: 100%;
7607
7609
  border: none;
7608
- background-color: ${({ selected, theme }) => selected ? theme.colors.primary1 : theme.colors.neutralsGrey5};
7610
+ background-color: ${({ selected, theme }) => (selected ? theme.colors.primary1 : theme.colors.neutralsGrey5)};
7609
7611
  `;
7610
7612
  const Title$1 = styled__default["default"].div `
7611
7613
  font-size: 40px;
@@ -7723,7 +7725,7 @@ function HeaderContent(props) {
7723
7725
  const [textView, setTextView] = React.useState(props.textViewMore);
7724
7726
  React.useEffect(() => {
7725
7727
  const timer = setTimeout(() => {
7726
- setSelectedContent(selectedContent < (props.listaRecomendacao.length - 1) ? selectedContent + 1 : 0);
7728
+ setSelectedContent(selectedContent < props.listaRecomendacao.length - 1 ? selectedContent + 1 : 0);
7727
7729
  setzeroHeigthDescription(false);
7728
7730
  setTextView(props.textViewMore);
7729
7731
  }, props.autoplayTime ? props.autoplayTime : 10000);
@@ -7746,8 +7748,8 @@ function HeaderContent(props) {
7746
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 })] })] }));
7747
7749
  }
7748
7750
  return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(Container$9, { style: { ...props.style }, children: [props.listaRecomendacao.map((item, index) => {
7749
- 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));
7750
- }), 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))) })] }) }));
7751
7753
  }
7752
7754
 
7753
7755
  const RectangleUpLeft = styled__default["default"].div `
@@ -8186,7 +8188,7 @@ const WrapperIconNotificationMobile = styled__default["default"].div `
8186
8188
  `;
8187
8189
  const SubMenuContainer = styled__default["default"].div `
8188
8190
  width: 100%;
8189
- height: 32px;
8191
+ height: 50px;
8190
8192
  ${(props) => props.marginTop &&
8191
8193
  styled.css `
8192
8194
  margin-top: 4rem;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/IJ/learningCycleCard/components/menu/index.tsx"],"names":[],"mappings":";AAUA,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE;;;CAAA,eAiFnD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/IJ/learningCycleCard/components/menu/index.tsx"],"names":[],"mappings":";AAUA,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAAE,EAAE,EAAE,WAAW,EAAE;;;CAAA,eAiFnD"}
@@ -1 +1 @@
1
- {"version":3,"file":"menuStyle.d.ts","sourceRoot":"","sources":["../../../../../../src/components/IJ/learningCycleCard/components/menu/menuStyle.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY,oEAuBxB,CAAA"}
1
+ {"version":3,"file":"menuStyle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/IJ/learningCycleCard/components/menu/menuStyle.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY,oEAuBxB,CAAA"}
@@ -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;CACpB;AAED,eAAO,MAAM,SAAS,oEAGrB,CAAA;AAED,eAAO,MAAM,WAAW,oFA8CvB,CAAA;AACD,eAAO,MAAM,OAAO,oFAcnB,CAAA;AAED,eAAO,MAAM,YAAY,oEAWxB,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"}
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;CACrB;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;CAC5B;AAED,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,KAAK,EAAE,mBAAmB,eA8F/D"}
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 +1 @@
1
- {"version":3,"file":"quantidadeDesafios.d.ts","sourceRoot":"","sources":["../../../../src/components/quantidadeDesafios/quantidadeDesafios.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,iBAAiB,oEAI7B,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAWhC,CAAA;AAED,eAAO,MAAM,WAAW,oEAQvB,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAuC7B,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAMjC,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAqB9B,CAAA;AACD,eAAO,MAAM,iBAAiB,oEAkB7B,CAAA"}
1
+ {"version":3,"file":"quantidadeDesafios.d.ts","sourceRoot":"","sources":["../../../../src/components/quantidadeDesafios/quantidadeDesafios.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,iBAAiB,oEAI7B,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAWhC,CAAA;AAED,eAAO,MAAM,WAAW,oEAQvB,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAuC7B,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAMjC,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAoB9B,CAAA;AACD,eAAO,MAAM,iBAAiB,oEAiB7B,CAAA"}
@@ -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,EAClB,EAAE,gBAAgB,eAwIlB"}
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;SAchE,CAAA;AAED,eAAO,MAAM,cAAc,gFA2C1B,CAAA;AAKD,eAAO,MAAM,QAAQ,oEASpB,CAAA"}
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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "frst-components",
3
3
  "homepage": "http://FRST-Falconi.github.io/storybook.frstfalconi.com",
4
- "version": "0.20.21",
4
+ "version": "0.20.23",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",