frst-components 0.20.56 → 0.20.58

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.
Files changed (26) hide show
  1. package/dist/index.js +7 -13
  2. package/dist/src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.d.ts +7 -0
  3. package/dist/src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.d.ts.map +1 -0
  4. package/dist/src/components/DS/scroll-container-v2/ButtonControl/index.d.ts +11 -0
  5. package/dist/src/components/DS/scroll-container-v2/ButtonControl/index.d.ts.map +1 -0
  6. package/dist/src/components/DS/scroll-container-v2/ButtonControl/useLongPress.d.ts +8 -0
  7. package/dist/src/components/DS/scroll-container-v2/ButtonControl/useLongPress.d.ts.map +1 -0
  8. package/dist/src/components/DS/scroll-container-v2/index.d.ts +4 -0
  9. package/dist/src/components/DS/scroll-container-v2/index.d.ts.map +1 -0
  10. package/dist/src/components/DS/scroll-container-v2/scrollContainerStyles.d.ts +10 -0
  11. package/dist/src/components/DS/scroll-container-v2/scrollContainerStyles.d.ts.map +1 -0
  12. package/dist/src/components/DS/scroll-container-v2/useScroll.d.ts +10 -0
  13. package/dist/src/components/DS/scroll-container-v2/useScroll.d.ts.map +1 -0
  14. package/dist/src/components/DS/select/styles/StylesSelect.d.ts.map +1 -1
  15. package/dist/src/components/FI/bannerProblemFeed/useDoubleClick.d.ts +3 -0
  16. package/dist/src/components/FI/bannerProblemFeed/useDoubleClick.d.ts.map +1 -0
  17. package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
  18. package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
  19. package/dist/src/components/LXP/bannerLxp/index.d.ts.map +1 -1
  20. package/dist/src/components/LXP/extraContent/richTextEditor/components.d.ts.map +1 -1
  21. package/dist/src/components/LXP/extraContent/richTextEditor/index.d.ts.map +1 -1
  22. package/dist/src/components/cardLT/MessageBox/icons/errorIcon.d.ts.map +1 -1
  23. package/dist/src/components/cardLT/MessageBox/icons/successIcon.d.ts.map +1 -1
  24. package/dist/src/components/cardLT/MessageBox/icons/warningIcon.d.ts.map +1 -1
  25. package/dist/src/components/global-menu/components/customMenu/index.d.ts.map +1 -1
  26. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7329,26 +7329,20 @@ function BannerLxp(props) {
7329
7329
  return file;
7330
7330
  };
7331
7331
  React.useEffect(() => {
7332
- props?.isDisabledTitle && setDisableText(props?.isDisabledTitle);
7333
- props?.bgColor && setBackgroundColor(props?.bgColor);
7332
+ setDisableText(props?.isDisabledTitle);
7333
+ setBackgroundColor(props?.bgColor);
7334
7334
  // props?.bgColor && setOldBgColor(props?.bgColor);
7335
- props?.bgSrc && setBackgroundImage(props?.bgSrc);
7336
- props.isDisabledTitle && setDisableText(props.isDisabledTitle);
7335
+ setBackgroundImage(props?.bgSrc);
7336
+ setDisableText(props.isDisabledTitle);
7337
7337
  }, [props]);
7338
7338
  React.useEffect(() => {
7339
7339
  if (props?.bgSrc)
7340
7340
  setBackgroundImage(props?.bgSrc);
7341
7341
  }, [props?.bgSrc]);
7342
7342
  React.useMemo(() => {
7343
- if (props?.title) {
7344
- setTitleText(props?.title);
7345
- }
7346
- if (props?.titleColor) {
7347
- setColorTitle(props?.titleColor);
7348
- }
7349
- if (props.isDisabledTitle) {
7350
- setDisableText(props.isDisabledTitle);
7351
- }
7343
+ setTitleText(props?.title);
7344
+ setColorTitle(props?.titleColor);
7345
+ setDisableText(props.isDisabledTitle);
7352
7346
  }, [props?.title, props?.titleColor, props.isDisabledTitle]);
7353
7347
  return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [props?.isLoading ? (jsxRuntime.jsx(LoadingBanner, {})) : (jsxRuntime.jsxs(BannerContainer, { backgroundBanner: props?.bgColor || `url(${props?.bgSrc})`, style: {
7354
7348
  ...props.style,
@@ -0,0 +1,7 @@
1
+ interface IButtonContoll {
2
+ sizeButton?: string;
3
+ direction?: string;
4
+ }
5
+ export declare const ButtonControllStyled: import("styled-components").StyledComponent<"div", any, IButtonContoll, never>;
6
+ export {};
7
+ //# sourceMappingURL=buttonControlStyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buttonControlStyles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAGD,eAAO,MAAM,oBAAoB,gFAmChC,CAAA"}
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ export declare function ButtonControll({ onClick, onClickLongPress, isVisible, direction, ArrowScroll, sizeButton, styles }: {
3
+ onClick: any;
4
+ onClickLongPress: any;
5
+ isVisible: any;
6
+ direction: any;
7
+ ArrowScroll: any;
8
+ sizeButton: any;
9
+ styles: any;
10
+ }): JSX.Element;
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/scroll-container-v2/ButtonControl/index.tsx"],"names":[],"mappings":";AAMA,wBAAgB,cAAc,CAAC,EACvB,OAAO,EACP,gBAAgB,EAChB,SAAS,EACT,SAAS,EACT,WAAW,EACX,UAAU,EACV,MAAM,EACT;;;;;;;;CAAA,eAuBF"}
@@ -0,0 +1,8 @@
1
+ export declare function useLongPress(callback?: () => void, ms?: number): {
2
+ onMouseDown: () => void;
3
+ onMouseUp: () => void;
4
+ onMouseLeave: () => void;
5
+ onTouchStart: () => void;
6
+ onTouchEnd: () => void;
7
+ };
8
+ //# sourceMappingURL=useLongPress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLongPress.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/scroll-container-v2/ButtonControl/useLongPress.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAAC,QAAQ,aAAW,EAAE,EAAE,SAAO;;;;;;EAsB1D"}
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import '../../../shared/global.css';
3
+ export default function ScrollContainer(props: any): JSX.Element;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/scroll-container-v2/index.tsx"],"names":[],"mappings":";AACA,OAAO,4BAA4B,CAAA;AAcnC,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,KAAK,KAAA,eAoF5C"}
@@ -0,0 +1,10 @@
1
+ export declare const WrapperHorizontal: import("styled-components").StyledComponent<"div", any, {
2
+ position: any;
3
+ }, never>;
4
+ export declare const WrapperContent: import("styled-components").StyledComponent<"div", any, {
5
+ paddingInternVertical?: string;
6
+ paddingInternHorizontal?: string;
7
+ hiddenHorizontalScrollBar: boolean;
8
+ }, never>;
9
+ export declare const CardTest: import("styled-components").StyledComponent<"div", any, {}, never>;
10
+ //# sourceMappingURL=scrollContainerStyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scrollContainerStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/scroll-container-v2/scrollContainerStyles.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,iBAAiB;;SAO7B,CAAA;AAED,eAAO,MAAM,cAAc;4BACD,MAAM;8BACJ,MAAM;+BACL,OAAO;SAwBnC,CAAA;AAED,eAAO,MAAM,QAAQ,oEASpB,CAAA"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export declare const useScroll: (stepMove: any) => {
3
+ scrollToLeft: () => void;
4
+ scrollToRight: () => void;
5
+ onClickLongPress: (direction: any) => void;
6
+ isVisibleLeft: boolean;
7
+ isVisibleRight: boolean;
8
+ scrollRef: React.MutableRefObject<undefined>;
9
+ };
10
+ //# sourceMappingURL=useScroll.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useScroll.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/scroll-container-v2/useScroll.ts"],"names":[],"mappings":"AACA,OAAO,KAAsC,MAAM,OAAO,CAAA;AAE1D,eAAO,MAAM,SAAS;;;;;;;CA8EnB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"StylesSelect.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/select/styles/StylesSelect.tsx"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,eAAO,MAAM,iBAAiB,6EAa7B,CAAA;AACD,eAAO,MAAM,YAAY,oEASxB,CAAA;AACD,eAAO,MAAM,cAAc,6EA4B1B,CAAA;AACD,eAAO,MAAM,qBAAqB,oEAAkB,CAAA;AAEpD,eAAO,MAAM,YAAY,mEAgBxB,CAAA;AACD,eAAO,MAAM,kBAAkB;UAAyB,OAAO;SAa9D,CAAA;AACD,eAAO,MAAM,cAAc,kEAO1B,CAAA"}
1
+ {"version":3,"file":"StylesSelect.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/select/styles/StylesSelect.tsx"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,eAAO,MAAM,iBAAiB,6EAa7B,CAAA;AACD,eAAO,MAAM,YAAY,oEASxB,CAAA;AACD,eAAO,MAAM,cAAc,6EA4B1B,CAAA;AACD,eAAO,MAAM,qBAAqB,oEAAkB,CAAA;AAEpD,eAAO,MAAM,YAAY,mEAgBxB,CAAA;AACD,eAAO,MAAM,kBAAkB;UAAyB,OAAO;SAa9D,CAAA;AACD,eAAO,MAAM,cAAc,kEAO1B,CAAA"}
@@ -0,0 +1,3 @@
1
+ declare function useDoubleClick(action: () => void): () => void;
2
+ export default useDoubleClick;
3
+ //# sourceMappingURL=useDoubleClick.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDoubleClick.d.ts","sourceRoot":"","sources":["../../../../../src/components/FI/bannerProblemFeed/useDoubleClick.ts"],"names":[],"mappings":"AAEA,iBAAS,cAAc,CAAC,MAAM,EAAE,MAAM,IAAI,cAkBzC;AAED,eAAe,cAAc,CAAC"}
@@ -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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/bannerLxp/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA+C,MAAM,OAAO,CAAA;AAInE,UAAU,eAAe;IACvB,KAAK,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B;;OAEG;IAEH;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,CAAC,IAAI,KAAA,KAAK,IAAI,CAAA;IACnC;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,EAAE,eAAA,KAAK,IAAI,CAAA;IACzB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAA;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,KAAK,EAAE,eAAe,eA2PvD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/bannerLxp/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA+C,MAAM,OAAO,CAAA;AAInE,UAAU,eAAe;IACvB,KAAK,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B;;OAEG;IAEH;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,CAAC,IAAI,KAAA,KAAK,IAAI,CAAA;IACnC;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,EAAE,eAAA,KAAK,IAAI,CAAA;IACzB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAA;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,KAAK,EAAE,eAAe,eAqPvD"}
@@ -1 +1 @@
1
- {"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/extraContent/richTextEditor/components.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiC,MAAM,OAAO,CAAA;AAIrD,UAAU,SAAS;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACvB;AAGD,eAAO,MAAM,MAAM;YASH,OAAO;cACL,OAAO;uEAuBxB,CAAA;AAED,eAAO,MAAM,WAAW;WAQT,GAAG;4DA+CjB,CAAA;AAED,eAAO,MAAM,IAAI,0GAkBhB,CAAA;AAED,eAAO,MAAM,WAAW,yGAoBvB,CAAA;AAED,eAAO,MAAM,IAAI,yGAsBhB,CAAA;AAED,eAAO,MAAM,MAAM;;SAIlB,CAAA;AAED,eAAO,MAAM,OAAO,yGAmBnB,CAAA"}
1
+ {"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../../../../src/components/LXP/extraContent/richTextEditor/components.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiC,MAAM,OAAO,CAAA;AAIrD,UAAU,SAAS;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACvB;AAGD,eAAO,MAAM,MAAM;YASH,OAAO;cACL,OAAO;uEAuBxB,CAAA;AAED,eAAO,MAAM,WAAW;WAQT,GAAG;4DA+CjB,CAAA;AAED,eAAO,MAAM,IAAI,0GAkBhB,CAAA;AAED,eAAO,MAAM,WAAW,yGAoBvB,CAAA;AAED,eAAO,MAAM,IAAI,yGAsBhB,CAAA;AAED,eAAO,MAAM,MAAM;;SAIlB,CAAA;AAED,eAAO,MAAM,OAAO,yGAmBnB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/extraContent/richTextEditor/index.tsx"],"names":[],"mappings":";AAuCA,QAAA,MAAM,eAAe,mBAwCpB,CAAA;AAsLD,eAAe,eAAe,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/LXP/extraContent/richTextEditor/index.tsx"],"names":[],"mappings":";AAuCA,QAAA,MAAM,eAAe,mBAwCpB,CAAA;AAsLD,eAAe,eAAe,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"errorIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/cardLT/MessageBox/icons/errorIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACH,MAAM,CAAC,OAAO,UAAU,SAAS,gBAUhC"}
1
+ {"version":3,"file":"errorIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/components/cardLT/MessageBox/icons/errorIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACH,MAAM,CAAC,OAAO,UAAU,SAAS,gBAUhC"}
@@ -1 +1 @@
1
- {"version":3,"file":"successIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/cardLT/MessageBox/icons/successIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBASnC"}
1
+ {"version":3,"file":"successIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/components/cardLT/MessageBox/icons/successIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBASnC"}
@@ -1 +1 @@
1
- {"version":3,"file":"warningIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/cardLT/MessageBox/icons/warningIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBAWnC"}
1
+ {"version":3,"file":"warningIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/components/cardLT/MessageBox/icons/warningIcon.tsx"],"names":[],"mappings":";AAIE;;;GAGG;AACF,MAAM,CAAC,OAAO,UAAU,WAAW,gBAWnC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/global-menu/components/customMenu/index.tsx"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,UAAU,SAAK"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/global-menu/components/customMenu/index.tsx"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,UAAU,SAAK"}
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.56",
4
+ "version": "0.20.58",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",