@mirantes-micro/foundation-design-system 1.2.80 → 1.2.81
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 +4 -1
- package/dist/index.js +116 -117
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -505,7 +505,10 @@ interface IMessageButtonProps$1 {
|
|
|
505
505
|
}
|
|
506
506
|
declare function MessageButton({ user, page, icon, label, className, disabled, onClick: customOnClick, isSharing, link, }: IMessageButtonProps$1): React__default.JSX.Element;
|
|
507
507
|
|
|
508
|
-
declare function ChatListWrapper(
|
|
508
|
+
declare function ChatListWrapper({ isChatOpen, isCompactMode }: {
|
|
509
|
+
isChatOpen?: boolean;
|
|
510
|
+
isCompactMode?: boolean;
|
|
511
|
+
}): React__default.JSX.Element;
|
|
509
512
|
|
|
510
513
|
interface JobTriggerState {
|
|
511
514
|
isJobOpen: boolean;
|