@dataloop-ai/components 0.20.213 → 0.20.214
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
package/src/assets/theme.css
CHANGED
|
@@ -94,7 +94,7 @@ body {
|
|
|
94
94
|
--dl-color-chart-brush: #eef1ff; /* not in use */
|
|
95
95
|
|
|
96
96
|
--dl-date-picker-shadow: 0px 3px 6px #101e7326; /* not in use */
|
|
97
|
-
--dl-date-picker-selected-strip: #
|
|
97
|
+
--dl-date-picker-selected-strip: #ebf4fb; /* replace to --dell-blue-100: #ebf4fb */
|
|
98
98
|
--dl-date-picker-selected-date: #8fa0ff; /* not in use in OA, maybe in use in other repos*/
|
|
99
99
|
|
|
100
100
|
/* DlJsonEditor based on atom one themes */
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
ref="jsonEditorRef"
|
|
4
|
-
class="json-editor"
|
|
5
|
-
/>
|
|
2
|
+
<div ref="jsonEditorRef" class="json-editor" />
|
|
6
3
|
</template>
|
|
7
4
|
|
|
8
5
|
<script lang="ts">
|
|
@@ -58,7 +55,14 @@ export default defineComponent({
|
|
|
58
55
|
default: Mode.text
|
|
59
56
|
}
|
|
60
57
|
},
|
|
61
|
-
emits: [
|
|
58
|
+
emits: [
|
|
59
|
+
'update:model-value',
|
|
60
|
+
'align-text',
|
|
61
|
+
'change',
|
|
62
|
+
'content-error',
|
|
63
|
+
'focus',
|
|
64
|
+
'blur'
|
|
65
|
+
],
|
|
62
66
|
setup(props, { emit }) {
|
|
63
67
|
const { modelValue, indentation, readonly, mode } = toRefs(props)
|
|
64
68
|
|
|
@@ -228,6 +232,9 @@ export default defineComponent({
|
|
|
228
232
|
--jse-panel-background: var(--dl-json-editor-panel-background);
|
|
229
233
|
--jse-panel-border: var(--dl-color-separator);
|
|
230
234
|
--jse-main-border: 1px solid var(--dl-color-separator);
|
|
235
|
+
--jse-error-color: var(--dell-red-500, #af0000);
|
|
236
|
+
--jse-message-error-background: var(--jse-error-color);
|
|
237
|
+
--jse-message-error-color: var(--dell-white, #fff);
|
|
231
238
|
|
|
232
239
|
.jse-error {
|
|
233
240
|
display: none !important;
|