Skip to content

Commit

Permalink
fix(progress-circle,toast,tooltip): ensure complete dependency graph (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Westbrook committed Oct 4, 2023
1 parent 4422f1c commit a5dfada
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/progress-circle/package.json
Expand Up @@ -57,7 +57,8 @@
"lit-html"
],
"dependencies": {
"@spectrum-web-components/base": "^0.39.0"
"@spectrum-web-components/base": "^0.39.0",
"@spectrum-web-components/shared": "^0.39.0"
},
"devDependencies": {
"@spectrum-css/progresscircle": "^2.0.65"
Expand Down
3 changes: 2 additions & 1 deletion packages/toast/package.json
Expand Up @@ -60,7 +60,8 @@
"@spectrum-web-components/base": "^0.39.0",
"@spectrum-web-components/button": "^0.39.0",
"@spectrum-web-components/icon": "^0.39.0",
"@spectrum-web-components/icons-workflow": "^0.39.0"
"@spectrum-web-components/icons-workflow": "^0.39.0",
"@spectrum-web-components/shared": "^0.39.0"
},
"devDependencies": {
"@spectrum-css/toast": "^9.1.9"
Expand Down
2 changes: 1 addition & 1 deletion packages/tooltip/src/Tooltip.ts
Expand Up @@ -20,14 +20,14 @@ import {
property,
query,
} from '@spectrum-web-components/base/src/decorators.js';
import { ifDefined } from '@spectrum-web-components/base/src/directives.js';
import type {
Overlay,
OverlayOpenCloseDetail,
Placement,
} from '@spectrum-web-components/overlay';

import tooltipStyles from './tooltip.css.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import { focusableSelector } from '@spectrum-web-components/shared/src/focusable-selectors.js';

class TooltipOpenable extends HTMLElement {
Expand Down

0 comments on commit a5dfada

Please sign in to comment.