-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/issue 26 header component (#44)
Co-authored-by: Owen Buckley <owenbuckley13@gmail.com>
- Loading branch information
1 parent
363538d
commit 6802dcd
Showing
14 changed files
with
688 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ const config = { | |
docs: { | ||
autodocs: "tag", | ||
}, | ||
staticDirs: ["../src"], | ||
}; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
import { greenwoodPluginImportRaw } from "@greenwood/plugin-import-raw"; | ||
|
||
export default { | ||
prerender: true, | ||
plugins: [greenwoodPluginImportRaw()], | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/node_modules/wc-compiler/src/dom-shim.js b/node_modules/wc-compiler/src/dom-shim.js | ||
index be289a3..dd4692a 100644 | ||
--- a/node_modules/wc-compiler/src/dom-shim.js | ||
+++ b/node_modules/wc-compiler/src/dom-shim.js | ||
@@ -102,6 +102,9 @@ class ShadowRoot extends DocumentFragment { | ||
super(); | ||
this.mode = options.mode || 'closed'; | ||
this.adoptedStyleSheets = []; | ||
+ // TODO not sure if this is the right base class for these? | ||
+ this.querySelector = noop; | ||
+ this.querySelectorAll = noop; | ||
} | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.