Skip to content

Commit

Permalink
fix: update x-components to fix bug with suggestions (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
CachedaCodes authored Jul 24, 2023
1 parent 71a97e2 commit c7e4ac1
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 57 deletions.
102 changes: 51 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@empathyco/x-adapter": "^8.0.0-alpha.22",
"@empathyco/x-adapter-platform": "^1.0.0-alpha.79",
"@empathyco/x-archetype-utils": "^0.1.0-alpha.15",
"@empathyco/x-components": "^3.0.0-alpha.388",
"@empathyco/x-components": "^3.0.0-alpha.393",
"@empathyco/x-deep-merge": "^1.3.0-alpha.29",
"@empathyco/x-types": "^10.0.0-alpha.68",
"@empathyco/x-utils": "^1.0.0-alpha.20",
Expand Down
6 changes: 3 additions & 3 deletions src/components/predictive-layer/full-width-predictive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
@EmpathizeOpened="handleEmpathizeEvent('EmpathizeOpened')"
@EmpathizeClosed="handleEmpathizeEvent('EmpathizeClosed')"
:animation="empathizeAnimation"
class="x-layout-item x-absolute x-z-[1] x-w-full x-bg-neutral-0 x-py-16"
class="x-layout-item x-absolute x-z-[1] x-w-full x-bg-neutral-0 x-py-4"
>
<MaxDesktopWidthItem>
<DesktopSearchboxAlign class="x-pl-[17px]">
<DesktopSearchboxAlign>
<div class="x-layout-item">
<div v-if="showEmpathize || showIdentifierResults" class="x-h-full">
<div v-if="showEmpathize || showIdentifierResults" class="x-h-full x-py-12 x-pl-[17px]">
<div class="x-block">
<BaseKeyboardNavigation
class="x-flex x-items-start x-gap-24"
Expand Down
4 changes: 2 additions & 2 deletions src/components/predictive-layer/predictive-layer.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<template>
<Empathize
:animation="empathizeAnimation"
class="x-bg-neutral-0 desktop:x-z-[1] desktop:x-w-full desktop:x-py-16 desktop:x-pl-16"
class="x-bg-neutral-0 desktop:x-z-[1] desktop:x-w-full"
>
<component
:is="isDesktopOrGreater ? 'div' : 'BaseScroll'"
v-if="showEmpathize || showIdentifierResults"
class="x-h-full"
class="x-h-full desktop:x-my-16 desktop:x-ml-16"
>
<div class="x-layout-item desktop:x-block">
<BaseKeyboardNavigation
Expand Down

0 comments on commit c7e4ac1

Please sign in to comment.