@asgard-js/react 0.0.43-canary.18 → 0.0.43-canary.19

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.18",
3
+ "version": "0.0.43-canary.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -140,7 +140,6 @@
140
140
  &--loading {
141
141
  position: relative;
142
142
  color: transparent;
143
- background-color: transparent !important;
144
143
 
145
144
  &::after {
146
145
  content: '';
@@ -151,8 +150,8 @@
151
150
  height: 16px;
152
151
  margin-left: -8px;
153
152
  margin-top: -8px;
154
- border: 2px solid rgba(255, 255, 255, 0.3);
155
- border-top: 2px solid currentColor;
153
+ border: 2px solid transparent;
154
+ border-top: 2px solid white;
156
155
  border-radius: 50%;
157
156
  animation: spin 1s linear infinite;
158
157
  }
@@ -105,7 +105,7 @@ export function ApiKeyInput({
105
105
  color: chatbot?.secondaryColor,
106
106
  }}
107
107
  >
108
- {!loading && 'Continue'}
108
+ {loading ? 'Loading...' : 'Continue'}
109
109
  </button>
110
110
  </form>
111
111
  </div>