@dataloop-ai/components 0.18.116 → 0.18.117
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
|
@@ -217,7 +217,7 @@ export default defineComponent({
|
|
|
217
217
|
//#endregion
|
|
218
218
|
|
|
219
219
|
//#region data
|
|
220
|
-
const searchQuery = ref<string>(
|
|
220
|
+
const searchQuery = ref<string>('')
|
|
221
221
|
const focused = ref(false)
|
|
222
222
|
const isOverflowing = ref(false)
|
|
223
223
|
const isTyping = ref(false)
|
|
@@ -804,6 +804,7 @@ export default defineComponent({
|
|
|
804
804
|
padding-left: 10px;
|
|
805
805
|
overflow-y: auto;
|
|
806
806
|
background-color: var(--dl-color-panel-background);
|
|
807
|
+
cursor: text;
|
|
807
808
|
|
|
808
809
|
font-size: 12px;
|
|
809
810
|
line-height: 14px;
|
|
@@ -838,6 +839,8 @@ export default defineComponent({
|
|
|
838
839
|
|
|
839
840
|
&--disabled {
|
|
840
841
|
border-color: var(--dl-color-separator);
|
|
842
|
+
color: var(--dl-color-disabled);
|
|
843
|
+
cursor: not-allowed;
|
|
841
844
|
}
|
|
842
845
|
}
|
|
843
846
|
|