@dataloop-ai/components 0.20.152 → 0.20.153
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 +2 -2
- package/src/assets/theme.css +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dataloop-ai/components",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.153",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": "./index.ts",
|
|
6
6
|
"./models": "./models.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"check-only": "if grep -E -H -r --exclude-dir=.git --exclude-dir=node_modules --exclude=*.json --exclude=*.yml '^(describe|it).only' .; then echo 'Found only in test files' && exit 1; fi"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@dataloop-ai/icons": "^3.1.
|
|
26
|
+
"@dataloop-ai/icons": "^3.1.30",
|
|
27
27
|
"@types/flat": "^5.0.2",
|
|
28
28
|
"@types/lodash": "^4.14.184",
|
|
29
29
|
"@types/sortablejs": "^1.15.7",
|
package/src/assets/theme.css
CHANGED
|
@@ -95,6 +95,10 @@ body {
|
|
|
95
95
|
--dl-json-editor-value-color-boolean: #0184bb;
|
|
96
96
|
--dl-json-editor-value-color-number: #c18401;
|
|
97
97
|
--dl-json-editor-value-color-string: #50a14f;
|
|
98
|
+
|
|
99
|
+
--dl-color-discovery: #7F3EE0;
|
|
100
|
+
--dl-color-discovery-bg: #F6F2FD;
|
|
101
|
+
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
/* Define styles for the root window with dark - mode preference */
|
|
@@ -153,4 +157,7 @@ body {
|
|
|
153
157
|
--dl-json-editor-value-color-boolean: #56b6c2;
|
|
154
158
|
--dl-json-editor-value-color-number: #d19a66;
|
|
155
159
|
--dl-json-editor-value-color-string: #98c379;
|
|
160
|
+
|
|
161
|
+
--dl-color-discovery: #B687FD;
|
|
162
|
+
--dl-color-discovery-bg: #392556;
|
|
156
163
|
}
|