@dataloop-ai/components 0.17.44 → 0.17.46

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": "@dataloop-ai/components",
3
- "version": "0.17.44",
3
+ "version": "0.17.46",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -46,7 +46,7 @@ export class Step {
46
46
 
47
47
  public set completed(value: boolean) {
48
48
  set(this._state, 'error', '')
49
- set(this._state, 'warning', false)
49
+ set(this._state, 'warning', '')
50
50
  set(this._state, 'completed', value)
51
51
  }
52
52
 
@@ -56,7 +56,7 @@ export class Step {
56
56
 
57
57
  public set error(value: string) {
58
58
  set(this._state, 'error', value)
59
- set(this._state, 'warning', false)
59
+ set(this._state, 'warning', '')
60
60
  set(this._state, 'completed', false)
61
61
  }
62
62
 
@@ -66,7 +66,7 @@ export class Step {
66
66
 
67
67
  public set warning(value: string) {
68
68
  set(this._state, 'warning', value)
69
- set(this._state, 'error', false)
69
+ set(this._state, 'error', '')
70
70
  set(this._state, 'completed', true)
71
71
  }
72
72
 
@@ -158,7 +158,7 @@ export default defineComponent({
158
158
  cursor: pointer;
159
159
  display: inline-flex;
160
160
  max-width: max-content;
161
- gap: 10px;
161
+ gap: 6px;
162
162
  align-items: center;
163
163
  padding: var(--dl-radio-padding);
164
164
  user-select: none;
@@ -209,7 +209,7 @@ input {
209
209
  flex-direction: column;
210
210
  }
211
211
  .sub-text {
212
- margin-left: 6%;
212
+ margin-left: 5%;
213
213
  width: 80%;
214
214
  color: var(--dl-color-medium);
215
215
  word-break: break-all;