frst-components 0.20.9 → 0.20.11
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.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +411 -196
- package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
- package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
- package/dist/src/components/IJ/participantCardOld/index.d.ts +1 -1
- package/dist/src/components/IJ/participantCardOld/index.d.ts.map +1 -1
- package/dist/src/components/IJ/participantCardOld/participantCardStyle.d.ts +15 -2
- package/dist/src/components/IJ/participantCardOld/participantCardStyle.d.ts.map +1 -1
- package/dist/src/components/IJ/thumbListContent/index.d.ts +1 -0
- package/dist/src/components/IJ/thumbListContent/index.d.ts.map +1 -1
- package/dist/src/components/IJ/thumbListContent/thumbListContentStyles.d.ts +1 -0
- package/dist/src/components/IJ/thumbListContent/thumbListContentStyles.d.ts.map +1 -1
- package/dist/src/components/LXP/accordionTrack/accordionTrack.d.ts.map +1 -1
- package/dist/src/components/LXP/accordionTrack/accordionTrackStyle.d.ts.map +1 -1
- package/dist/src/components/LXP/accordionTrack/contentCoursesTrails.d.ts.map +1 -1
- package/dist/src/components/LXP/avatarChannel/avatarChannelStyles.d.ts +2 -9
- package/dist/src/components/LXP/avatarChannel/avatarChannelStyles.d.ts.map +1 -1
- package/dist/src/components/LXP/avatarChannel/index.d.ts.map +1 -1
- package/dist/src/components/LXP/bannerLxp/index.d.ts.map +1 -1
- package/dist/src/components/LXP/participantThumbnails/participantThumbnails.d.ts.map +1 -1
- package/dist/src/components/expand-button/expandButtonStyle.d.ts +9 -0
- package/dist/src/components/expand-button/expandButtonStyle.d.ts.map +1 -0
- package/dist/src/components/expand-button/index.d.ts +5 -0
- package/dist/src/components/expand-button/index.d.ts.map +1 -0
- package/dist/src/components/scroll-container/index.d.ts +1 -1
- package/dist/src/components/scroll-container/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["
|
|
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":["
|
|
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,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import '../../../shared/global.css';
|
|
3
3
|
import { ParticipantCardI } from './participantCard';
|
|
4
|
-
export default function ParticipantCardOld({ userInfo, labels, successfullInvite, style, handleSendInvitation, handleClickRemove }: ParticipantCardI): JSX.Element;
|
|
4
|
+
export default function ParticipantCardOld({ variant, userInfo, labels, successfullInvite, style, handleSendInvitation, handleClickRemove }: ParticipantCardI): JSX.Element;
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/participantCardOld/index.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAInC,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AAOpD,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,QAAQ,EACR,MAAM,EACN,iBAAiB,EACjB,KAAK,EACL,oBAAoB,EACpB,iBAAiB,EAClB,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/participantCardOld/index.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAInC,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AAOpD,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,OAAO,EACP,QAAQ,EACR,MAAM,EACN,iBAAiB,EACjB,KAAK,EACL,oBAAoB,EACpB,iBAAiB,EAClB,EAAE,gBAAgB,eAgFlB"}
|
|
@@ -1,14 +1,27 @@
|
|
|
1
|
-
export declare const WrapperCard: import("styled-components").StyledComponent<"div", any, {
|
|
1
|
+
export declare const WrapperCard: import("styled-components").StyledComponent<"div", any, {
|
|
2
|
+
variant: any;
|
|
3
|
+
}, never>;
|
|
2
4
|
export declare const WrapperUserInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
5
|
export declare const UserInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
6
|
export declare const DescriptionUser: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
7
|
export declare const NameUser: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
8
|
export declare const EmailUser: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
9
|
export declare const UserAdditionalInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
|
-
export declare const Area: import("styled-components").StyledComponent<"div", any, {
|
|
10
|
+
export declare const Area: import("styled-components").StyledComponent<"div", any, {
|
|
11
|
+
variant: any;
|
|
12
|
+
}, never>;
|
|
9
13
|
export declare const Position: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
14
|
export declare const FooterButton: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
15
|
export declare const ButtonSend: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
16
|
export declare const ButtonRemove: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
17
|
+
export declare const ButtonSendV2: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
18
|
+
export declare const WrapperButtons: import("styled-components").StyledComponent<"div", any, {
|
|
19
|
+
status: any;
|
|
20
|
+
}, never>;
|
|
21
|
+
export declare const ButtonRemoveV2: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
22
|
+
export declare const ButtonOrV2: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
23
|
export declare const ButtonSuccess: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
24
|
+
export declare const ButtonSuccessV2: import("styled-components").StyledComponent<"div", any, {
|
|
25
|
+
status: any;
|
|
26
|
+
}, never>;
|
|
14
27
|
//# sourceMappingURL=participantCardStyle.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"participantCardStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/participantCardOld/participantCardStyle.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"participantCardStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/participantCardOld/participantCardStyle.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,WAAW;;SAevB,CAAA;AAED,eAAO,MAAM,eAAe,oEAI3B,CAAA;AAED,eAAO,MAAM,QAAQ,oEAGpB,CAAA;AACG,eAAO,MAAM,eAAe,oEAI3B,CAAA;AACG,eAAO,MAAM,QAAQ,oEAqBpB,CAAA;AACD,eAAO,MAAM,SAAS,oEAsBrB,CAAA;AAET,eAAO,MAAM,kBAAkB,oEAI9B,CAAA;AACG,eAAO,MAAM,IAAI;;SAuBhB,CAAA;AACD,eAAO,MAAM,QAAQ,oEAsBpB,CAAA;AAEL,eAAO,MAAM,YAAY,oEAMxB,CAAA;AAED,eAAO,MAAM,UAAU,oEA0BtB,CAAA;AAED,eAAO,MAAM,YAAY,oEAQxB,CAAA;AAGD,eAAO,MAAM,YAAY,oEAgBxB,CAAA;AAED,eAAO,MAAM,cAAc;;SAS1B,CAAA;AAED,eAAO,MAAM,cAAc,oEAoB1B,CAAA;AACD,eAAO,MAAM,UAAU,oEAatB,CAAA;AAED,eAAO,MAAM,aAAa,oEAoCzB,CAAA;AAED,eAAO,MAAM,eAAe;;SAkB3B,CAAA"}
|
|
@@ -14,6 +14,7 @@ interface IThumbListContent {
|
|
|
14
14
|
textProgressInProgress?: string;
|
|
15
15
|
valueProgress?: number;
|
|
16
16
|
tagValue: 'vizualized' | 'inProgress' | 'notVisualized';
|
|
17
|
+
isSelected?: boolean;
|
|
17
18
|
}
|
|
18
19
|
export default function ThumbListContent(props: IThumbListContent): JSX.Element;
|
|
19
20
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/index.tsx"],"names":[],"mappings":";AAQA,KAAK,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAA;AAE7D,UAAU,iBAAiB;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/index.tsx"],"names":[],"mappings":";AAQA,KAAK,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAA;AAE7D,UAAU,iBAAiB;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,eAAe,CAAA;IACvD,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,KAAK,EAAE,iBAAiB,eA+HhE"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
interface content {
|
|
2
2
|
showText?: boolean;
|
|
3
3
|
tagVisualized?: string;
|
|
4
|
+
isSelected?: boolean;
|
|
4
5
|
}
|
|
5
6
|
export declare const containerThumbContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
7
|
export declare const loadingImageThumb: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thumbListContentStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/thumbListContentStyles.ts"],"names":[],"mappings":"AAEA,UAAU,OAAO;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"thumbListContentStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/thumbListContent/thumbListContentStyles.ts"],"names":[],"mappings":"AAEA,UAAU,OAAO;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,qBAAqB,oEAQjC,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAU7B,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAOjC,CAAA;AAED,eAAO,MAAM,UAAU,oEAQtB,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAQ7B,CAAA;AAED,eAAO,MAAM,mBAAmB,oEAO/B,CAAA;AAED,eAAO,MAAM,cAAc,oEAoB1B,CAAA;AAED,eAAO,MAAM,gBAAgB,yEAoB5B,CAAA;AAED,eAAO,MAAM,wBAAwB,oEAKpC,CAAA;AACD,eAAO,MAAM,eAAe,yEAc3B,CAAA;AAED,eAAO,MAAM,uBAAuB,yEAUnC,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA;AAED,eAAO,MAAM,WAAW,oEAgBvB,CAAA;AAED,eAAO,MAAM,cAAc,oEAK1B,CAAA;AAED,eAAO,MAAM,YAAY,oEAUxB,CAAA;AAED,eAAO,MAAM,eAAe,oEAM3B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accordionTrack.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/accordionTrack/accordionTrack.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AACnC,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAavD,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,KAAK,EAAE,mBAAmB,
|
|
1
|
+
{"version":3,"file":"accordionTrack.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/accordionTrack/accordionTrack.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AACnC,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAavD,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,KAAK,EAAE,mBAAmB,eAogBhE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accordionTrackStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/accordionTrack/accordionTrackStyle.ts"],"names":[],"mappings":"AAEA,UAAU,gBAAgB;IACtB,MAAM,EAAE,OAAO,CAAA;CAClB;AAED,eAAO,MAAM,eAAe,kFAmB3B,CAAA;AACD,eAAO,MAAM,cAAc,oEAc1B,CAAA;AAED,eAAO,MAAM,oBAAoB,kFAgBhC,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAUjC,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAShC,CAAA;AACD,eAAO,MAAM,gBAAgB,kFAI5B,CAAA;AACD,eAAO,MAAM,mBAAmB,oEAO/B,CAAA;AACD,eAAO,MAAM,MAAM,oEAElB,CAAA;AACD,eAAO,MAAM,mBAAmB,oEAI/B,CAAA;AACD,eAAO,MAAM,sBAAsB,mFAYlC,CAAA;AACD,eAAO,MAAM,kBAAkB,oEAK9B,CAAA;AACD,eAAO,MAAM,kBAAkB,kFAW9B,CAAA;AACD,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"accordionTrackStyle.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/accordionTrack/accordionTrackStyle.ts"],"names":[],"mappings":"AAEA,UAAU,gBAAgB;IACtB,MAAM,EAAE,OAAO,CAAA;CAClB;AAED,eAAO,MAAM,eAAe,kFAmB3B,CAAA;AACD,eAAO,MAAM,cAAc,oEAc1B,CAAA;AAED,eAAO,MAAM,oBAAoB,kFAgBhC,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAUjC,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAShC,CAAA;AACD,eAAO,MAAM,gBAAgB,kFAI5B,CAAA;AACD,eAAO,MAAM,mBAAmB,oEAO/B,CAAA;AACD,eAAO,MAAM,MAAM,oEAElB,CAAA;AACD,eAAO,MAAM,mBAAmB,oEAI/B,CAAA;AACD,eAAO,MAAM,sBAAsB,mFAYlC,CAAA;AACD,eAAO,MAAM,kBAAkB,oEAK9B,CAAA;AACD,eAAO,MAAM,kBAAkB,kFAW9B,CAAA;AACD,eAAO,MAAM,aAAa,oEASzB,CAAA;AACD,eAAO,MAAM,uBAAuB,oEAanC,CAAA;AACD,eAAO,MAAM,oBAAoB,oEAMhC,CAAA;AACD,eAAO,MAAM,kBAAkB,oEAM9B,CAAA;AAED,eAAO,MAAM,OAAO,oEAWnB,CAAA;AAED,eAAO,MAAM,kBAAkB;aAAwB,MAAM;SAe5D,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contentCoursesTrails.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/accordionTrack/contentCoursesTrails.tsx"],"names":[],"mappings":";AACA,OAAO,4BAA4B,CAAA;AAqGnC,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,KAAK,EAAE,GAAG,
|
|
1
|
+
{"version":3,"file":"contentCoursesTrails.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/accordionTrack/contentCoursesTrails.tsx"],"names":[],"mappings":";AACA,OAAO,4BAA4B,CAAA;AAqGnC,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,KAAK,EAAE,GAAG,eA+QtD"}
|
|
@@ -3,12 +3,6 @@ interface AvatarI {
|
|
|
3
3
|
src?: any;
|
|
4
4
|
disabled?: boolean;
|
|
5
5
|
color?: string;
|
|
6
|
-
variant?: string;
|
|
7
|
-
}
|
|
8
|
-
interface AvatarImage {
|
|
9
|
-
size?: string;
|
|
10
|
-
src?: any;
|
|
11
|
-
disabled?: boolean;
|
|
12
6
|
image: any;
|
|
13
7
|
variant?: string;
|
|
14
8
|
}
|
|
@@ -17,10 +11,9 @@ interface PropsPopOver {
|
|
|
17
11
|
}
|
|
18
12
|
export declare const ContainerGeral: import("styled-components").StyledComponent<"div", any, PropsPopOver, never>;
|
|
19
13
|
export declare const AvatarChannel: import("styled-components").StyledComponent<"div", any, AvatarI, never>;
|
|
20
|
-
export declare const AvatarChannelImage: import("styled-components").StyledComponent<"div", any, AvatarImage, never>;
|
|
21
14
|
export declare const Channel: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
22
|
-
export declare const AvatarCircle: import("styled-components").StyledComponent<"div", any,
|
|
23
|
-
export declare const AvatarCam: import("styled-components").StyledComponent<"div", any,
|
|
15
|
+
export declare const AvatarCircle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
16
|
+
export declare const AvatarCam: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
24
17
|
export declare const ContainerPopOver: import("styled-components").StyledComponent<"div", any, PropsPopOver, never>;
|
|
25
18
|
export declare const ContainerSelectedImage: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
26
19
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"avatarChannelStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/avatarChannel/avatarChannelStyles.ts"],"names":[],"mappings":"AAEA,UAAU,OAAO;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,GAAG,CAAA;IACT,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,
|
|
1
|
+
{"version":3,"file":"avatarChannelStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/avatarChannel/avatarChannelStyles.ts"],"names":[],"mappings":"AAEA,UAAU,OAAO;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,GAAG,CAAA;IACT,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,GAAG,CAAA;IACV,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAED,UAAU,YAAY;IACpB,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,eAAO,MAAM,cAAc,8EAU1B,CAAA;AACD,eAAO,MAAM,aAAa,yEA0BzB,CAAA;AAED,eAAO,MAAM,OAAO,qEAanB,CAAA;AACD,eAAO,MAAM,YAAY,oEAQxB,CAAA;AACD,eAAO,MAAM,SAAS,oEAWrB,CAAA;AACD,eAAO,MAAM,gBAAgB,8EA2B5B,CAAA;AAED,eAAO,MAAM,sBAAsB,oEAElC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/avatarChannel/index.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAInC,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAKzC,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EACpC,IAAI,EACJ,OAAO,EACP,SAAS,EACT,QAAQ,EACR,KAAK,EACL,iBAAiB,EACjB,cAAc,EACd,WAAW,EACZ,EAAE,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/avatarChannel/index.tsx"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAInC,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAKzC,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EACpC,IAAI,EACJ,OAAO,EACP,SAAS,EACT,QAAQ,EACR,KAAK,EACL,iBAAiB,EACjB,cAAc,EACd,WAAW,EACZ,EAAE,OAAO,eAwDT"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/bannerLxp/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAsC,MAAM,OAAO,CAAA;AAK1D,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;;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;CAC1B;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,KAAK,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/bannerLxp/index.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAsC,MAAM,OAAO,CAAA;AAK1D,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;;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;CAC1B;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,KAAK,EAAE,eAAe,eA4NvD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"participantThumbnails.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/participantThumbnails/participantThumbnails.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAA;CACV;AAED,eAAO,MAAM,cAAc,oEAsB1B,CAAA;AAED,eAAO,MAAM,oBAAoB,uFAchC,CAAA;AACD,eAAO,MAAM,kBAAkB,oEAO9B,CAAA;AAED,eAAO,MAAM,mBAAmB,uFAS/B,CAAA;AAED,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"participantThumbnails.d.ts","sourceRoot":"","sources":["../../../../../src/components/LXP/participantThumbnails/participantThumbnails.ts"],"names":[],"mappings":"AAEA,UAAU,qBAAqB;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAA;CACV;AAED,eAAO,MAAM,cAAc,oEAsB1B,CAAA;AAED,eAAO,MAAM,oBAAoB,uFAchC,CAAA;AACD,eAAO,MAAM,kBAAkB,oEAO9B,CAAA;AAED,eAAO,MAAM,mBAAmB,uFAS/B,CAAA;AAED,eAAO,MAAM,qBAAqB,oEAuDjC,CAAA;AAED,eAAO,MAAM,2BAA2B,uFAevC,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface IButton {
|
|
2
|
+
disabled?: boolean;
|
|
3
|
+
}
|
|
4
|
+
export declare const Button: import("styled-components").StyledComponent<"div", any, IButton, never>;
|
|
5
|
+
export declare const Label: import("styled-components").StyledComponent<"div", any, {
|
|
6
|
+
active: any;
|
|
7
|
+
}, never>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=expandButtonStyle.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"expandButtonStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/expand-button/expandButtonStyle.ts"],"names":[],"mappings":"AAGA,UAAU,OAAO;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,MAAM,yEAoClB,CAAA;AAGD,eAAO,MAAM,KAAK;;SAKjB,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import '../../shared/global.css';
|
|
3
|
+
import { IExpandButton } from './expandButton';
|
|
4
|
+
export default function ExpandButton({ label, disabled, onClick, styles, startIcon }: IExpandButton): JSX.Element;
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/expand-button/index.tsx"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAA;AAKhC,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAE9C,MAAM,CAAC,OAAO,UAAU,YAAY,CAAE,EAClC,KAAK,EACL,QAAQ,EACR,OAAO,EACP,MAAM,EACN,SAAS,EACR,EAAE,aAAa,eAgCnB"}
|
|
@@ -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 }: IScrollContainer): JSX.Element;
|
|
4
|
+
export default function ScrollContainer({ children, type, isVisibleControlsButtons, positionArrowButton, marginTopArrrowButton, stepMove, className, styles, sizeArrowButton, marginsArrowButton, horizontalMarginInternScroll, refreshResize, widthProtectClick }: 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,
|
|
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"}
|