@dataloop-ai/components 0.20.168 → 0.20.170
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
|
@@ -85,6 +85,8 @@ body {
|
|
|
85
85
|
--dl-color-info: var(--dl-color-alert-info);
|
|
86
86
|
--dl-color-info-background: var(--dl-color-alert-info-background);
|
|
87
87
|
--dl-color-info-bg: var(--dl-color-alert-info-bg);
|
|
88
|
+
--dl-color-info-base: #E3F0FC;
|
|
89
|
+
--dl-color-info-highlight: #C7E2FA;
|
|
88
90
|
|
|
89
91
|
--dl-color-chart-brush: #eef1ff;
|
|
90
92
|
|
|
@@ -151,8 +153,10 @@ body {
|
|
|
151
153
|
--dl-color-positive-background: #183928;
|
|
152
154
|
--dl-color-positive-bg: #183928;
|
|
153
155
|
--dl-color-info-background: #1F3447;
|
|
154
|
-
--dl-color-info-bg: #
|
|
156
|
+
--dl-color-info-bg: #182F44;
|
|
155
157
|
--dl-color-info: #7CC8F4;
|
|
158
|
+
--dl-color-info-base: #0A365C;
|
|
159
|
+
--dl-color-info-highlight: #034782;
|
|
156
160
|
|
|
157
161
|
--dl-color-chart-brush: #475077;
|
|
158
162
|
|
|
@@ -78,6 +78,7 @@ export default defineComponent({
|
|
|
78
78
|
props: {
|
|
79
79
|
width: { type: [Number, String], default: 400 },
|
|
80
80
|
height: { type: [Number, String], default: 'fit-content' },
|
|
81
|
+
hideHeader: { type: Boolean, default: false },
|
|
81
82
|
fullscreen: Boolean,
|
|
82
83
|
fullHeight: Boolean,
|
|
83
84
|
separators: { type: Boolean, default: true },
|
|
@@ -176,7 +177,7 @@ export default defineComponent({
|
|
|
176
177
|
return !!parentClassList?.contains('content')
|
|
177
178
|
},
|
|
178
179
|
hasHeader(): boolean {
|
|
179
|
-
return !!this.$slots.header
|
|
180
|
+
return !!this.$slots.header && !this.hideHeader
|
|
180
181
|
},
|
|
181
182
|
hasFooter(): boolean {
|
|
182
183
|
return !!this.$slots.footer
|