ryzen-ui 0.2.9 → 0.2.10

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.
@@ -371,7 +371,7 @@ class DropDownComponent {
371
371
  config = input({}, ...(ngDevMode ? [{ debugName: "config" }] : []));
372
372
  appendToBody = input(undefined, ...(ngDevMode ? [{ debugName: "appendToBody" }] : []));
373
373
  _size = computed(() => this.size(), ...(ngDevMode ? [{ debugName: "_size" }] : []));
374
- _direction = computed(() => this.config().direction ?? 'up', ...(ngDevMode ? [{ debugName: "_direction" }] : []));
374
+ _direction = computed(() => this.config().direction ?? 'down', ...(ngDevMode ? [{ debugName: "_direction" }] : []));
375
375
  _accentKey = computed(() => {
376
376
  const c = this.accentColor();
377
377
  return c && isThemeColor(c) ? c : null;