@dataloop-ai/components 0.16.41 → 0.16.42

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.16.41",
3
+ "version": "0.16.42",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -174,6 +174,7 @@ body {
174
174
 
175
175
  --dl-date-picker-shadow: 0px 3px 6px #101e7326;
176
176
  --dl-date-picker-selected-strip: rgb(52, 82, 255, 0.2);
177
+ --dl-date-picker-selected-date: #8FA0FF;
177
178
  }
178
179
 
179
180
  /* Define styles for the root window with dark - mode preference */
@@ -222,6 +223,7 @@ body {
222
223
 
223
224
  --dl-date-picker-shadow: 0px 3px 6px #292e3580;
224
225
  --dl-date-picker-selected-strip: rgb(124, 140, 255, 0.2);
226
+ --dl-date-picker-selected-date: #535E96;
225
227
  }
226
228
 
227
229
  // scrollbar
@@ -178,7 +178,7 @@ export default defineComponent({
178
178
 
179
179
  if (value.isDisabled) return style
180
180
 
181
- const disabledOpacity = 0.6
181
+ const disabledOpacity = 1
182
182
  const isToday = value.isSame(
183
183
  new CalendarDate().startOf('day'),
184
184
  'day'
@@ -200,7 +200,7 @@ export default defineComponent({
200
200
  }
201
201
  } else if (this.modelValue !== null) {
202
202
  const selectedStyle = {
203
- backgroundColor: 'var(--dl-color-secondary)',
203
+ backgroundColor: 'var(--dl-date-picker-selected-date)',
204
204
  color: 'var(--dl-color-text-buttons)',
205
205
  borderRadius: '11px'
206
206
  }