frst-components 0.21.20 → 0.21.22

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 (20) hide show
  1. package/dist/index.js +73 -21
  2. package/dist/src/components/DS/dropdown-Multiselect/styles/multiselectStyles.d.ts.map +1 -1
  3. package/dist/src/components/DS/onboarding-progress-menu/index.d.ts.map +1 -1
  4. package/dist/src/components/DS/onboarding-progress-menu/onboardingProgressMenuStyles.d.ts +1 -1
  5. package/dist/src/components/DS/onboarding-progress-menu/onboardingProgressMenuStyles.d.ts.map +1 -1
  6. package/dist/src/components/DS/scroll-container-v2/ButtonControl/buttonControlStyles.d.ts.map +1 -1
  7. package/dist/src/components/DS/scroll-container-v2/ButtonControl/index.d.ts.map +1 -1
  8. package/dist/src/components/DS/scroll-container-v2/ButtonControl/useLongPress.d.ts.map +1 -1
  9. package/dist/src/components/DS/select/styles/StylesSelect.d.ts.map +1 -1
  10. package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
  11. package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
  12. package/dist/src/components/LXP/extraContent/richTextEditor/components.d.ts.map +1 -1
  13. package/dist/src/components/LXP/extraContent/richTextEditor/index.d.ts.map +1 -1
  14. package/dist/src/components/audio-player/index.d.ts +1 -1
  15. package/dist/src/components/audio-player/index.d.ts.map +1 -1
  16. package/dist/src/components/cardLT/MessageBox/icons/errorIcon.d.ts.map +1 -1
  17. package/dist/src/components/cardLT/MessageBox/icons/successIcon.d.ts.map +1 -1
  18. package/dist/src/components/cardLT/MessageBox/icons/warningIcon.d.ts.map +1 -1
  19. package/dist/src/components/global-menu/components/customMenu/index.d.ts.map +1 -1
  20. package/package.json +2 -1
package/dist/index.js CHANGED
@@ -23,6 +23,7 @@ var CardActions = require('@mui/material/CardActions');
23
23
  var StepConnector = require('@mui/material/StepConnector');
24
24
  var styles = require('@mui/material/styles');
25
25
  var Select$4 = require('react-select');
26
+ var usehooksTs = require('usehooks-ts');
26
27
  var reactColor = require('react-color');
27
28
  var dnd = require('@hello-pangea/dnd');
28
29
  var LinearProgress = require('@material-ui/core/LinearProgress');
@@ -1133,7 +1134,7 @@ const timeline = styled__default["default"].input `
1133
1134
  }
1134
1135
  `;
1135
1136
 
1136
- function PlayerPodcast(props) {
1137
+ function AudioPlayer(props) {
1137
1138
  const [isPlaying, setIsPlaying] = React.useState(false);
1138
1139
  const [playedSeconds, setPlayedSeconds] = React.useState(0);
1139
1140
  const [duration, setDuration] = React.useState(0); // Added duration state
@@ -4949,12 +4950,16 @@ function Loading(props) {
4949
4950
  const CardContainer$1 = styled__default["default"].div `
4950
4951
  box-sizing: border-box;
4951
4952
  max-width: 100%;
4952
- height: auto;
4953
+ height: 680px;
4953
4954
  background:${({ theme }) => theme.colors.shadeWhite};
4954
4955
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
4955
4956
  border-color: ${({ theme }) => theme.colors.linkDisabled};
4956
4957
  border-radius: 16px;
4957
- padding: 24px 36px 42px;
4958
+ padding-right: 23px;
4959
+ padding-top: 27px;
4960
+ padding-left: 23px;
4961
+ padding-bottom: 27px;
4962
+ position:relative;
4958
4963
  `;
4959
4964
  const TextLevel = styled__default["default"].p `
4960
4965
  ${({ theme }) => theme.fonts.textMessageComponentsBold};
@@ -4965,19 +4970,27 @@ const Challenge = styled__default["default"].p `
4965
4970
  ${({ theme }) => theme.fonts.textMessageRegular};
4966
4971
  color: ${({ theme }) => theme.colors.neutralsGrey1};
4967
4972
  `;
4968
- const Line = styled__default["default"].div `
4969
- border-bottom: 1.5px solid #BDBDBD;
4970
- width: 100%;
4971
- height: 1px;
4972
- margin-top: 14px;
4973
- margin-bottom: 30px;
4974
- `;
4975
4973
  const ImageTextGroup = styled__default["default"].div `
4976
4974
  display: flex;
4977
4975
  flex-direction:row;
4978
4976
  align-items:center;
4979
- gap: 19px;
4980
- margin-left: 32px;
4977
+ gap: 11.83px;
4978
+ padding-bottom:20.35px;
4979
+ `;
4980
+ const ScroollableContent = styled__default["default"].div `
4981
+ display: block;
4982
+ width: 100%;
4983
+ overflow-y:auto;
4984
+ max-height: 540px;
4985
+ padding-right: 17px;
4986
+ position:relative;
4987
+ &::-webkit-scrollbar{
4988
+ width:7px;
4989
+ background-color: #e2e8f0;
4990
+ };
4991
+ &::-webkit-scrollbar-thumb{
4992
+ background-color: #64748b;
4993
+ };
4981
4994
  `;
4982
4995
  const StepBox = styled__default["default"].div `
4983
4996
  width: 100%;
@@ -5013,8 +5026,8 @@ const StepBoxTitle = styled__default["default"].a `
5013
5026
  `;
5014
5027
  const StepBoxDescription = styled__default["default"].p `
5015
5028
  ${({ theme }) => theme.fonts.textMessageComponentsRegular};
5016
- color:#475569;
5017
- margin-bottom: 26px;
5029
+ color:#6a7585;
5030
+ margin-bottom: 18px;
5018
5031
  `;
5019
5032
  const CheckCircle = styled__default["default"].div `
5020
5033
  box-sizing: border-box !important;
@@ -5024,15 +5037,54 @@ const CheckCircle = styled__default["default"].div `
5024
5037
  width: 32px;
5025
5038
  height: 32px;
5026
5039
  border-radius: 16px;
5027
- background-color: ${({ isComplete, theme }) => isComplete ? theme.colors.primary1 : theme.colors.incompleteGrey};
5028
- border: 4px solid ${({ isChecked, theme }) => isChecked ? theme.colors.shadeWhite : '#F2F4F7'};
5040
+ background-color: ${({ isComplete, theme }) => isComplete ? theme.colors.primary1 : theme.colors.primary1};
5041
+ border: 4px solid ${({ isChecked, theme }) => isChecked ? theme.colors.shadeWhite : theme.colors.shadeWhite};
5029
5042
  `;
5030
5043
 
5031
5044
  function OnboardingProgressMenu(props) {
5032
- const { items, level, textChallenge, image, countChallenge, style } = props;
5033
- return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(CardContainer$1, { style: { ...style }, children: [jsxRuntime.jsxs(ImageTextGroup, { children: [jsxRuntime.jsx("img", { src: image, width: 55, height: 55 }), jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(TextLevel, { children: level }), jsxRuntime.jsxs(Challenge, { children: [countChallenge, " ", textChallenge] })] })] }), jsxRuntime.jsx(Line, {}), items.map((i, index) => (jsxRuntime.jsxs(StepBox, { children: [jsxRuntime.jsxs(StepBoxIconBlock, { children: [jsxRuntime.jsx(CheckCircle, { isComplete: i.finished || i.isCurrent, isChecked: i.finished, children: i.finished ? jsxRuntime.jsx(Tick, { width: '12' }) :
5034
- jsxRuntime.jsx(Dot, { width: '8', height: '8' }) }), items.length - 1 > index &&
5035
- jsxRuntime.jsx(StepBar, { isComplete: i.finished })] }), jsxRuntime.jsxs(StepBoxTextBlock, { children: [jsxRuntime.jsx(StepBoxTitle, { onClick: i.handleClick, isComplete: i.finished || i.isCurrent, children: i.title }), jsxRuntime.jsx(StepBoxDescription, { children: i.description })] })] })))] }) }));
5045
+ const { items, level, textChallenge, avatar, countChallenge, style } = props;
5046
+ const [internalItems, setInternalItems] = React.useState(items);
5047
+ const [isScrollInTop, setIsScrollInTop] = React.useState(true);
5048
+ const [isScrollInBottom, setIsScrollInBottom] = React.useState(false);
5049
+ React.useEffect(() => {
5050
+ const sortedData = [...items].sort((a, b) => {
5051
+ if (a.finished && !b.finished) {
5052
+ return -1;
5053
+ }
5054
+ if (!a.finished && b.finished) {
5055
+ return 1;
5056
+ }
5057
+ return 0;
5058
+ });
5059
+ setInternalItems(sortedData);
5060
+ }, [items]);
5061
+ const scrollRef = React.useRef(null);
5062
+ const handleScroll = (event) => {
5063
+ if (scrollRef.current) {
5064
+ const container = scrollRef.current;
5065
+ const isScrolledToBottom = container.scrollTop + container.clientHeight >= container.scrollHeight;
5066
+ const isScrolledToTop = container.scrollTop === 0;
5067
+ setIsScrollInBottom(isScrolledToBottom);
5068
+ setIsScrollInTop(isScrolledToTop);
5069
+ }
5070
+ };
5071
+ usehooksTs.useEventListener('scroll', handleScroll, scrollRef);
5072
+ return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(CardContainer$1, { style: { ...style }, children: [jsxRuntime.jsxs(ImageTextGroup, { children: [jsxRuntime.jsx("img", { src: avatar, width: 55, height: 55 }), jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(TextLevel, { children: level }), jsxRuntime.jsxs(Challenge, { children: [countChallenge, " ", textChallenge] })] })] }), internalItems.length >= 7 && !isScrollInTop && (jsxRuntime.jsx("div", { style: {
5073
+ background: 'linear-gradient(#ffffff, #ffffff19)',
5074
+ height: '50px',
5075
+ position: 'absolute',
5076
+ top: 100,
5077
+ right: 36,
5078
+ width: 'calc(100% - 46px)',
5079
+ zIndex: 10
5080
+ } })), jsxRuntime.jsx(ScroollableContent, { ref: scrollRef, children: internalItems.map((i, index) => (jsxRuntime.jsxs(StepBox, { children: [jsxRuntime.jsxs(StepBoxIconBlock, { children: [jsxRuntime.jsx(CheckCircle, { isComplete: i.finished, isChecked: i.finished, children: i.finished ? jsxRuntime.jsx(Tick, { width: "12" }) : jsxRuntime.jsx(Dot, { width: "16", height: "16" }) }), items.length - 1 > index && jsxRuntime.jsx(StepBar, { isComplete: i.finished })] }), jsxRuntime.jsxs(StepBoxTextBlock, { children: [jsxRuntime.jsx(StepBoxTitle, { onClick: i.handleClick, isComplete: i.finished, children: i.title }), jsxRuntime.jsx(StepBoxDescription, { children: i.description })] })] }))) }), internalItems.length >= 7 && !isScrollInBottom && (jsxRuntime.jsx("div", { style: {
5081
+ background: 'linear-gradient(#ffffff19, #ffffff)',
5082
+ height: '50px',
5083
+ position: 'absolute',
5084
+ bottom: 38,
5085
+ right: 36,
5086
+ width: 'calc(100% - 46px)',
5087
+ } }))] }) }));
5036
5088
  }
5037
5089
 
5038
5090
  const Container$f = styled__default["default"].div `
@@ -18698,7 +18750,7 @@ exports.AccordionTrackList = AccordionTrackList;
18698
18750
  exports.AddIcon = AddIcon;
18699
18751
  exports.AdmButton = AdmButton;
18700
18752
  exports.AlertCicle = AlertCicle;
18701
- exports.AudioPlayer = PlayerPodcast;
18753
+ exports.AudioPlayer = AudioPlayer;
18702
18754
  exports.Avatar = Avatar;
18703
18755
  exports.AvatarAssociatedChannel = AvatarAssociatedChannel;
18704
18756
  exports.AvatarChannel = AvatarChannel$1;
@@ -1 +1 @@
1
- {"version":3,"file":"multiselectStyles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/dropdown-Multiselect/styles/multiselectStyles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe,oEAiB3B,CAAA;AAED,eAAO,MAAM,YAAY,oEAgBxB,CAAA;AAED,eAAO,MAAM,YAAY,oEA0CxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAI3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAStB,CAAA;AAED,eAAO,MAAM,SAAS,oEAuBrB,CAAA;AAED,eAAO,MAAM,YAAY,oEAmBxB,CAAA;AAED,eAAO,MAAM,cAAc,oEAc1B,CAAA;AAED,eAAO,MAAM,WAAW,oEASvB,CAAA;AAED,eAAO,MAAM,YAAY,oEAkBxB,CAAA;AAED,eAAO,MAAM,UAAU,oEAMtB,CAAA;AAED,eAAO,MAAM,SAAS,oEAMrB,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAItB,CAAA"}
1
+ {"version":3,"file":"multiselectStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/dropdown-Multiselect/styles/multiselectStyles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe,oEAiB3B,CAAA;AAED,eAAO,MAAM,YAAY,oEAgBxB,CAAA;AAED,eAAO,MAAM,YAAY,oEA0CxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAI3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAStB,CAAA;AAED,eAAO,MAAM,SAAS,oEAuBrB,CAAA;AAED,eAAO,MAAM,YAAY,oEAmBxB,CAAA;AAED,eAAO,MAAM,cAAc,oEAc1B,CAAA;AAED,eAAO,MAAM,WAAW,oEASvB,CAAA;AAED,eAAO,MAAM,YAAY,oEAkBxB,CAAA;AAED,eAAO,MAAM,UAAU,oEAMtB,CAAA;AAED,eAAO,MAAM,SAAS,oEAMrB,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA;AAED,eAAO,MAAM,UAAU,oEAItB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/onboarding-progress-menu/index.tsx"],"names":[],"mappings":";AAkBA,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAA;AAElE,MAAM,CAAC,OAAO,UAAU,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,eAkC5E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/onboarding-progress-menu/index.tsx"],"names":[],"mappings":";AAkBA,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAA;AAIlE,MAAM,CAAC,OAAO,UAAU,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,eAmG5E"}
@@ -2,8 +2,8 @@ import { ICheckCircle, IComponente } from "./onboardingProgressMenu";
2
2
  export declare const CardContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
3
  export declare const TextLevel: import("styled-components").StyledComponent<"p", any, {}, never>;
4
4
  export declare const Challenge: import("styled-components").StyledComponent<"p", any, {}, never>;
5
- export declare const Line: import("styled-components").StyledComponent<"div", any, {}, never>;
6
5
  export declare const ImageTextGroup: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export declare const ScroollableContent: import("styled-components").StyledComponent<"div", any, {}, never>;
7
7
  export declare const StepBox: import("styled-components").StyledComponent<"div", any, {}, never>;
8
8
  export declare const StepBoxTextBlock: import("styled-components").StyledComponent<"div", any, {}, never>;
9
9
  export declare const StepBoxIconBlock: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"onboardingProgressMenuStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/onboarding-progress-menu/onboardingProgressMenuStyles.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,YAAY,EAAE,WAAW,EAAC,MAAM,0BAA0B,CAAC;AAEnE,eAAO,MAAM,aAAa,oEASzB,CAAA;AACD,eAAO,MAAM,SAAS,kEAIrB,CAAA;AACD,eAAO,MAAM,SAAS,kEAGrB,CAAA;AACD,eAAO,MAAM,IAAI,oEAMhB,CAAA;AACD,eAAO,MAAM,cAAc,oEAM1B,CAAA;AACD,eAAO,MAAM,OAAO,oEAMnB,CAAA;AACD,eAAO,MAAM,gBAAgB,oEAI5B,CAAA;AACD,eAAO,MAAM,gBAAgB,oEAK5B,CAAA;AACD,eAAO,MAAM,OAAO,6EAKnB,CAAA;AACD,eAAO,MAAM,YAAY,2EAOxB,CAAA;AACD,eAAO,MAAM,kBAAkB,kEAI9B,CAAA;AACD,eAAO,MAAM,WAAW,8EAUvB,CAAA"}
1
+ {"version":3,"file":"onboardingProgressMenuStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/DS/onboarding-progress-menu/onboardingProgressMenuStyles.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,YAAY,EAAE,WAAW,EAAC,MAAM,0BAA0B,CAAC;AAEnE,eAAO,MAAM,aAAa,oEAazB,CAAA;AACD,eAAO,MAAM,SAAS,kEAIrB,CAAA;AACD,eAAO,MAAM,SAAS,kEAGrB,CAAA;AAED,eAAO,MAAM,cAAc,oEAM1B,CAAA;AAED,eAAO,MAAM,kBAAkB,oEAc9B,CAAA;AACD,eAAO,MAAM,OAAO,oEAMnB,CAAA;AACD,eAAO,MAAM,gBAAgB,oEAI5B,CAAA;AACD,eAAO,MAAM,gBAAgB,oEAK5B,CAAA;AACD,eAAO,MAAM,OAAO,6EAKnB,CAAA;AACD,eAAO,MAAM,YAAY,2EAOxB,CAAA;AACD,eAAO,MAAM,kBAAkB,kEAI9B,CAAA;AACD,eAAO,MAAM,WAAW,8EAUvB,CAAA"}
@@ -1 +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"}
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"}
@@ -1 +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"}
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"}
@@ -1 +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"}
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"}
@@ -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"}
@@ -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":"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"}
@@ -13,6 +13,6 @@ interface IAudioPlayer {
13
13
  exitSound?: number;
14
14
  style?: React.CSSProperties;
15
15
  }
16
- export default function PlayerPodcast(props: IAudioPlayer): JSX.Element;
16
+ export default function AudioPlayer(props: IAudioPlayer): JSX.Element;
17
17
  export {};
18
18
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/audio-player/index.tsx"],"names":[],"mappings":";AAQA,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAA;IAChC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;CAC5B;AAED,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,KAAK,EAAE,YAAY,eAmNxD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/audio-player/index.tsx"],"names":[],"mappings":";AAQA,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAA;IAChC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;CAC5B;AAED,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,KAAK,EAAE,YAAY,eAmNtD"}
@@ -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.21.20",
4
+ "version": "0.21.22",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -56,6 +56,7 @@
56
56
  "slate-react": "^0.83.0",
57
57
  "styled-components": "^5.3.3",
58
58
  "use-sound": "^4.0.1",
59
+ "usehooks-ts": "^2.9.1",
59
60
  "web-vitals": "^2.1.4"
60
61
  },
61
62
  "devDependencies": {