File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed
Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ - [ Fixed trimmed address not showing in address-table] ( https://github.com/multiversx/mx-sdk-dapp-ui/pull/273 )
1011- [ Added minimize/maximize action for toasts] ( https://github.com/multiversx/mx-sdk-dapp-ui/pull/272 )
1112- [ Eslint and prettierrc fixes] ( https://github.com/multiversx/mx-sdk-dapp-ui/pull/270 )
1213- [ Refactored sign transactions panel internal components] ( https://github.com/multiversx/mx-sdk-dapp-ui/pull/267 )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default {
44 trimFull : 'trim-full mvx:text-transparent mvx:absolute mvx:leading-5' ,
55 trimFullVisible : 'trim-full-visible mvx:!text-inherit mvx:relative mvx:leading-5' ,
66 trimWrapper : 'trim-wrapper mvx:hidden' ,
7- trimWrapperVisible : 'trim-wrapper-visible mvx:overflow-hidden mvx:max-w-full mvx:flex' ,
7+ trimWrapperVisible : 'trim-wrapper-visible mvx:overflow-hidden mvx:max-w-full mvx:! flex' ,
88 trimEllipsisWrapper : 'trim-ellipsis-wrapper mvx:block mvx:flex-shrink-0 mvx:pointer-events-none mvx:select-none' ,
99 trimEllipsis : 'trim-ellipsis mvx:block mvx:leading-5' ,
1010 trimLeftWrapper : 'trim-left-wrapper mvx:flex-shrink mvx:text-ellipsis mvx:overflow-hidden mvx:text-left mvx:text-[1px]' ,
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ export class Button {
1818 @Prop ( ) size ?: `${ButtonSizeEnum } ` = 'large' ;
1919 @Prop ( ) variant ?: `${ButtonVariantEnum } ` = 'primary' ;
2020
21+ private handleClick = ( event : MouseEvent ) => {
22+ this . buttonClick . emit ( event ) ;
23+ } ;
24+
2125 render ( ) {
2226 return (
2327 < ButtonComponent
@@ -26,6 +30,7 @@ export class Button {
2630 disabled = { this . disabled }
2731 size = { this . size }
2832 variant = { this . variant }
33+ onClick = { this . handleClick }
2934 >
3035 < slot />
3136 </ ButtonComponent >
Original file line number Diff line number Diff line change 11// prettier-ignore
22export default {
33 unlockButton : 'unlock-panel-footer-icon mvx:text-primary mvx:w-4 mvx:h-auto mvx:hidden mvx:xs:flex mvx:ml-auto mvx:mt-auto' ,
4- unlockPanelFooter : 'unlock-panel-footer mvx:mt-auto mvx:flex mvx:cursor-pointer mvx:relative mvx:p-6 mvx:z-1 mvx:rounded-2xl mvx:overflow-hidden mvx: border mvx:border-outline mvx:bg-emphasize mvx:shadow-[0px_-8px_12px_12px_surface] group' ,
4+ unlockPanelFooter : 'unlock-panel-footer mvx:mt-auto mvx:flex mvx:cursor-pointer mvx:relative mvx:p-6 mvx:z-1 mvx:rounded-2xl mvx:border mvx:border-outline mvx:bg-emphasize mvx:shadow-[0px_-8px_12px_12px_surface] group' ,
55 unlockPanelFooterImage : 'unlock-panel-footer-image mvx:pointer-events-none mvx:-mt-8 mvx:mr-12 mvx:-mb-8 mvx:-ml-20 mvx:hidden mvx:max-h-48 mvx:xs:flex' ,
66 unlockPanelFooterWrapper : 'unlock-panel-footer-wrapper mvx:flex mvx:flex-col mvx:transition-all mvx:duration-200 mvx:gap-2 mvx:flex-1 mvx:ease-in-out mvx:xs:gap-4 group-hover:mvx:opacity-75' ,
77 unlockPanelFooterTitle : 'unlock-panel-footer-title mvx:font-medium mvx:leading-none mvx:text-base mvx:text-primary mvx:xs:pt-4 mvx:xs:text-xl' ,
Original file line number Diff line number Diff line change 1- import type { IProviderBase } from 'components' ;
1+ import { IProviderBase } from "types/provider.types" ;
22
33// Extend the Window interface globally to include custom properties
44export interface ExtendedWindow extends Window {
You can’t perform that action at this time.
0 commit comments