@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
|
@@ -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',
|
|
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',
|
|
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',
|
|
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:
|
|
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:
|
|
212
|
+
margin-left: 5%;
|
|
213
213
|
width: 80%;
|
|
214
214
|
color: var(--dl-color-medium);
|
|
215
215
|
word-break: break-all;
|