Skip to content

Commit

Permalink
perf(deps): use latest version of auro-menu with SSR fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-capsule42 committed Jun 27, 2024
1 parent 03329d6 commit 78d5d03
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .eslintrc

This file was deleted.

13 changes: 13 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import path from "node:path";
import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});
export default [...compat.extends("@aurodesignsystem/eslint-config")];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"@aurodesignsystem/auro-formvalidation": "^1.0.3",
"@aurodesignsystem/auro-input": "^3.0.1",
"@aurodesignsystem/auro-library": "^2.6.0",
"@aurodesignsystem/auro-menu": "^3.11.5",
"chalk": "^5.3.0",
"lit": "^3.1.4"
},
"peerDependencies": {
"@aurodesignsystem/auro-menu": "^3.11.4",
"@aurodesignsystem/design-tokens": "^4.3.1",
"@aurodesignsystem/webcorestylesheets": "^5.0.6"
},
Expand Down
6 changes: 3 additions & 3 deletions src/auro-combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ import styleCss from "./style-css.js";
* @slot - Default slot for the menu content.
* @slot label - Defines the content of the label.
* @slot helpText - Defines the content of the helpText.
* @fires auroCombobox-ready - Notifies that the component has finished initializing.
* @fires auroCombobox-valueSet - Notifies that the component has a new value set.
* @fires auroFormElement-validated - Notifies that the component value(s) have been validated.
* @event auroCombobox-ready - Notifies that the component has finished initializing.
* @event auroCombobox-valueSet - Notifies that the component has a new value set.
* @event auroFormElement-validated - Notifies that the component value(s) have been validated.
*/

// build the component class
Expand Down

0 comments on commit 78d5d03

Please sign in to comment.