Skip to content

Commit

Permalink
fix: update package type
Browse files Browse the repository at this point in the history
  • Loading branch information
LexSwed committed Dec 24, 2022
1 parent cd6eaf2 commit a57a49e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"description": "UI library for Fxtrot initiatives",
"version": "0.0.1",
"license": "Apache-2.0",
"type": "module",
"types": "dist/types/index.d.ts",
"main": "./dist/fxtrot-ui.umd.js",
"module": "./dist/fxtrot-ui.es.js",
Expand Down
1 change: 1 addition & 0 deletions src/lib/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const Button = forwardRef<HTMLButtonElement, ButtonProps>((props, ref) => {
className={buttonCssWithDefaults(props)}
aria-label={label}
title={label}
disabled={disabled}
aria-disabled={disabled}
type={type}
ref={ref}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/theme-provider/default-theme.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const defaultTheme = {
'on-surface-variant': 'hsl(215 6% 40%)',
'inverse-surface': 'hsl(225 4.1% 19.2%)',
'inverse-on-surface': 'hsl(255 15.4% 94.9%)',
'disabled': 'hsl(0deg 0% 90%)',
'on-disabled': 'hsl(204 9.1% 26%)',
'disabled': 'hsl(0deg 0% 91%)',
'on-disabled': 'hsl(204 9.1% 41%)',
},
// Tailwind default + xs and popper
boxShadow: {
Expand Down

1 comment on commit a57a49e

@vercel
Copy link

@vercel vercel bot commented on a57a49e Dec 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

fxtrot-ui – ./

fxtrot-ui.vercel.app
fxtrot-ui-lexswed.vercel.app
fxtrot-ui-git-main-lexswed.vercel.app

Please sign in to comment.