@dataloop-ai/components 0.19.207 → 0.19.210
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
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
? defaultIconColor
|
|
18
18
|
: statusIconColor || defaultIconColor
|
|
19
19
|
"
|
|
20
|
-
size="
|
|
20
|
+
size="16px"
|
|
21
21
|
:inline="false"
|
|
22
22
|
/>
|
|
23
23
|
</div>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
background-color: var(--dl-color-panel-background);
|
|
57
57
|
border: 1px solid var(--dl-color-separator);
|
|
58
58
|
color: var(--dl-color-darker);
|
|
59
|
-
padding:
|
|
59
|
+
padding: 16px;
|
|
60
60
|
`"
|
|
61
61
|
max-width="340px"
|
|
62
62
|
anchor="bottom left"
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
Smart Search Query
|
|
68
68
|
</div>
|
|
69
69
|
<div class="tooltip-subtitle">
|
|
70
|
-
A powerful and flexible search
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
A powerful and flexible search. Allows users to
|
|
71
|
+
construct queries based on specific field selection
|
|
72
|
+
following schema rules. Does not enable free text
|
|
73
|
+
search.
|
|
74
74
|
</div>
|
|
75
75
|
</dl-tooltip>
|
|
76
76
|
</div>
|
|
@@ -1161,8 +1161,8 @@ export default defineComponent({
|
|
|
1161
1161
|
&__status-icon-wrapper {
|
|
1162
1162
|
display: flex;
|
|
1163
1163
|
line-height: 15px;
|
|
1164
|
-
margin:
|
|
1165
|
-
align-items:
|
|
1164
|
+
margin: 6px 8px 0px 0px;
|
|
1165
|
+
align-items: flex-start;
|
|
1166
1166
|
div:first-child {
|
|
1167
1167
|
display: flex;
|
|
1168
1168
|
align-items: center;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="stepper-content">
|
|
3
|
-
<slot
|
|
4
|
-
v-if="!hide"
|
|
5
|
-
name="header"
|
|
6
|
-
>
|
|
3
|
+
<slot v-if="!hide" name="header">
|
|
7
4
|
<div class="stepper-content--header">
|
|
8
5
|
<dl-typography
|
|
9
6
|
size="h3"
|
|
@@ -64,7 +61,7 @@ export default defineComponent({
|
|
|
64
61
|
</script>
|
|
65
62
|
<style scoped lang="scss">
|
|
66
63
|
.stepper-content {
|
|
67
|
-
padding: 20px
|
|
64
|
+
padding: 20px 30px;
|
|
68
65
|
// max-height: calc(100vh - 175px);
|
|
69
66
|
|
|
70
67
|
display: flex;
|