@asgard-js/react 0.0.43-canary.15 → 0.0.43-canary.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asgard-js/react",
3
- "version": "0.0.43-canary.15",
3
+ "version": "0.0.43-canary.16",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -130,14 +130,6 @@
130
130
  transition: all 0.2s ease;
131
131
  outline: none;
132
132
 
133
- &:hover:not(:disabled) {
134
- opacity: 0.9;
135
- transform: translateY(-1px);
136
- }
137
-
138
- &:active:not(:disabled) {
139
- transform: translateY(0);
140
- }
141
133
 
142
134
  &:disabled {
143
135
  opacity: 0.5;
@@ -96,7 +96,7 @@ export function ApiKeyInput({
96
96
 
97
97
  <button
98
98
  type="submit"
99
- disabled={!apiKey.trim() || loading}
99
+ disabled={loading}
100
100
  className={clsx(styles.api_key_input__submit_button, {
101
101
  [styles['api_key_input__submit_button--loading']]: loading,
102
102
  })}