Skip to content

Commit

Permalink
chore: build and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Apr 25, 2024
1 parent ba4d925 commit f05642d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion core/api.txt
Expand Up @@ -234,7 +234,7 @@ ion-button,prop,mode,"ios" | "md",undefined,false,false
ion-button,prop,rel,string | undefined,undefined,false,false
ion-button,prop,routerAnimation,((baseEl: any, opts?: any) => Animation) | undefined,undefined,false,false
ion-button,prop,routerDirection,"back" | "forward" | "root",'forward',false,false
ion-button,prop,shape,"rectangular" | "round" | undefined,undefined,false,true
ion-button,prop,shape,"rectangular" | "round" | "soft" | undefined,undefined,false,true
ion-button,prop,size,"default" | "large" | "small" | "xlarge" | "xsmall" | undefined,undefined,false,true
ion-button,prop,strong,boolean,false,false,false
ion-button,prop,target,string | undefined,undefined,false,false
Expand Down
1 change: 0 additions & 1 deletion core/src/components/button/button.ionic.scss
@@ -1,5 +1,4 @@
@use "../../themes/ionic/ionic.globals.scss" as globals;

@import "./button";
@import "./button.ionic.vars";

Expand Down
15 changes: 2 additions & 13 deletions core/src/components/button/button.tsx
Expand Up @@ -349,19 +349,8 @@ export class Button implements ComponentInterface, AnchorInterface, ButtonInterf
};

render() {
const {
buttonType,
type,
disabled,
rel,
target,
href,
color,
expand,
hasIconOnly,
strong,
inheritedAttributes,
} = this;
const { buttonType, type, disabled, rel, target, href, color, expand, hasIconOnly, strong, inheritedAttributes } =
this;

const theme = getIonTheme(this);
const size = this.getSize();
Expand Down
2 changes: 1 addition & 1 deletion core/src/foundations/_design-tokens.json
Expand Up @@ -394,7 +394,7 @@
"$value": "32px"
},
"full": {
"$value": "100%"
"$value": "999px"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion core/src/foundations/ionic.root.scss
Expand Up @@ -197,7 +197,7 @@
--ionic-border-radius-rounded-medium: 8px;
--ionic-border-radius-rounded-large: 16px;
--ionic-border-radius-rounded-x-large: 32px;
--ionic-border-radius-rounded-full: 100%;
--ionic-border-radius-rounded-full: 999px;
--ionic-border-size-small: 1px;
--ionic-border-size-medium: 2px;
--ionic-border-size-large: 3px;
Expand Down

0 comments on commit f05642d

Please sign in to comment.