@epa-wg/custom-element-dist 0.0.33 → 0.0.35
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.
- package/.claude/settings.local.json +18 -0
- package/.gitattributes +4 -0
- package/.github/workflows/deploy.yml +59 -0
- package/.idea/copilot.data.migration.agent.xml +6 -0
- package/.idea/copilot.data.migration.ask.xml +6 -0
- package/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/.idea/copilot.data.migration.edit.xml +6 -0
- package/.idea/custom-element-dist.iml +2 -0
- package/.storybook/main.ts +20 -17
- package/.storybook/preview.ts +23 -23
- package/.yarn/install-state.gz +0 -0
- package/.yarnrc.yml +1 -0
- package/README.md +6 -4
- package/coverage/block-navigation.js +1 -1
- package/coverage/coverage-final.json +4 -3
- package/coverage/index.html +34 -19
- package/coverage/sorter.js +21 -7
- package/coverage/src/custom-element/coverage.svg +1 -1
- package/coverage/src/custom-element/custom-element.js/coverage.svg +1 -1
- package/coverage/src/custom-element/custom-element.js.html +448 -391
- package/coverage/src/custom-element/http-request.js/coverage.svg +1 -1
- package/coverage/src/custom-element/http-request.js.html +38 -17
- package/coverage/src/custom-element/index.html +26 -26
- package/coverage/src/custom-element/local-storage.js.html +1 -1
- package/coverage/src/custom-element/location-element.js.html +1 -1
- package/coverage/src/custom-element/module-url.js.html +1 -1
- package/coverage/src/index.html +1 -1
- package/coverage/src/material/theme/colors.js/coverage.svg +10 -0
- package/coverage/src/material/theme/colors.js.html +217 -0
- package/coverage/src/material/theme/coverage.svg +10 -0
- package/coverage/src/material/theme/index.html +116 -0
- package/coverage/src/mocks/handlers.ts.html +1 -1
- package/coverage/src/mocks/index.html +1 -1
- package/coverage/src/stories/frame.canvas.ts.html +1 -1
- package/coverage/src/stories/http-request.stories.ts.html +1 -1
- package/coverage/src/stories/index.html +1 -1
- package/coverage/src/stories/testStoryBook.ts.html +12 -12
- package/coverage/src/sum.ts.html +1 -1
- package/dist/custom-element-Bssk9jRy.cjs +97 -0
- package/dist/{custom-element-WnOqmEOe.js → custom-element-BzDjIYMe.js} +193 -183
- package/dist/custom-element-bundle.cjs +1 -1
- package/dist/custom-element-bundle.js +3 -3
- package/dist/demo/a.html +10 -3
- package/dist/demo/a.svg +26 -26
- package/dist/demo/html-template.html +4 -3
- package/dist/demo/s.xml +1 -75
- package/dist/demo/s.xslt +351 -72
- package/dist/demo/s1.xml +3706 -0
- package/dist/http-request-DSaowcG1.cjs +1 -0
- package/dist/{http-request-BOvP4KTl.js → http-request-DTCzZ1gc.js} +15 -9
- package/dist/mockServiceWorker.js +105 -63
- package/package.json +5 -4
- package/public/demo/a.html +10 -3
- package/public/demo/a.svg +26 -26
- package/public/demo/html-template.html +4 -3
- package/public/demo/s.xml +1 -75
- package/public/demo/s.xslt +351 -72
- package/public/demo/s1.xml +3706 -0
- package/public/mockServiceWorker.js +105 -63
- package/src/custom-element/custom-element.js +28 -9
- package/src/custom-element/demo/a.html +10 -3
- package/src/custom-element/demo/a.svg +26 -26
- package/src/custom-element/demo/html-template.html +4 -3
- package/src/custom-element/demo/s.xml +1 -75
- package/src/custom-element/demo/s.xslt +351 -72
- package/src/custom-element/demo/s1.xml +3706 -0
- package/src/custom-element/http-request.js +7 -0
- package/src/custom-element/ide/customData-dce.json +123 -0
- package/src/custom-element/ide/web-types-dce.json +128 -1
- package/src/custom-element/ide/web-types-xsl.json +1 -1
- package/src/material/angular.css +987 -987
- package/src/material/components/action.html +262 -0
- package/src/material/components/autocomplete.html +167 -239
- package/src/material/components/badge.html +238 -239
- package/src/material/components/dropdown.html +0 -1
- package/src/material/components/icon-link.html +160 -161
- package/src/material/components/icon.html +251 -252
- package/src/material/components/input.html +569 -570
- package/src/material/components/menu.html +235 -236
- package/src/material/components.html +157 -158
- package/src/material/demo.css +36 -36
- package/src/material/index.html +109 -110
- package/src/material/material.css +356 -356
- package/src/material/theme/Base-Principles.md +339 -0
- package/src/material/theme/README.md +298 -18
- package/src/material/theme/UI Domain Model in web applications.svg +1 -0
- package/src/material/theme/User Semantic Theme tokens.svg +1 -0
- package/src/material/theme/action-pending-poc.html +62 -0
- package/src/material/theme/actions-color.html +141 -0
- package/src/material/theme/colors-light.html +631 -0
- package/src/material/theme/colors-native.html +51 -0
- package/src/material/theme/colors-poc.html +66 -0
- package/src/material/theme/colors.html +297 -0
- package/src/material/theme/colors.js +44 -0
- package/src/material/theme/consumer-theme.css +745 -0
- package/src/material/theme/semantic.css +132 -132
- package/src/material/theme/style-bug.html +123 -0
- package/src/material/theme/theme-data.css +43 -0
- package/src/material/theme/theme-data.xhtml +2926 -0
- package/src/material/theme/todo.md +274 -0
- package/src/material/theme/tokens/action-colors.png +0 -0
- package/src/material/theme/tokens/cem-article-illustration-4x1-letterbox-2000x500.png +0 -0
- package/src/material/theme/tokens/cem-breakpoints.md +519 -0
- package/src/material/theme/tokens/cem-colors.md +715 -0
- package/src/material/theme/tokens/cem-consumerflow-typography-matrix.svg +198 -0
- package/src/material/theme/tokens/cem-coupling.md +372 -0
- package/src/material/theme/tokens/cem-data-vs-reading-numerals.svg +164 -0
- package/src/material/theme/tokens/cem-dimension.md +625 -0
- package/src/material/theme/tokens/cem-layering.md +562 -0
- package/src/material/theme/tokens/cem-m3-parity.md +343 -0
- package/src/material/theme/tokens/cem-responsive.md +238 -0
- package/src/material/theme/tokens/cem-shape.md +691 -0
- package/src/material/theme/tokens/cem-stroke-density-illustration-4to1-v3.svg +102 -0
- package/src/material/theme/tokens/cem-stroke.md +480 -0
- package/src/material/theme/tokens/cem-timing.md +198 -0
- package/src/material/theme/tokens/cem-typography-model-stack.svg +64 -0
- package/src/material/theme/tokens/cem-voice-fonts-typography.md +718 -0
- package/src/material/theme/tokens/cem-voice-ladder.svg +91 -0
- package/src/material/theme/tokens/chips.png +0 -0
- package/src/material/theme/tokens/columns-page.png +0 -0
- package/src/material/theme/tokens/initials.png +0 -0
- package/src/material/theme/tokens/nav-buttons.png +0 -0
- package/src/material/theme/tokens/script.png +0 -0
- package/src/material/theme/tokens/sufler.png +0 -0
- package/src/material/theme/tokens/typography-icons.png +0 -0
- package/src/mocks/versions.mock.ts +1 -1
- package/src/stories/__screenshots__/dom-merge.test.stories.ts/dom-merge-dom-merge-OrderPreservingOn2ndTransform-1.png +0 -0
- package/src/stories/__screenshots__/xslt-conditionals.test.stories.ts/xslt-conditionals-xslt-conditionals-MultipleIfOrderingWorkaround-1.png +0 -0
- package/src/stories/dom-merge.test.stories.ts +25 -1
- package/src/stories/xslt-conditionals.test.stories.ts +492 -0
- package/src/stories/xslt-for-each.test.stories.ts +336 -0
- package/src/stories/xslt-if.test.stories.ts +89 -0
- package/storybook-static/assets/{Color-F6OSRLHC-Cbp293x2.js → Color-F6OSRLHC-DeDlDLjU.js} +1 -1
- package/storybook-static/assets/{Configure-BrFr4SLE.js → Configure-CH_tIP5N.js} +1 -1
- package/storybook-static/assets/{DocsRenderer-CFRXHY34-DhHzJiIO.js → DocsRenderer-CFRXHY34-Bc9EPsUI.js} +2 -2
- package/storybook-static/assets/{attributes.test.stories-Gg9LQTEK.js → attributes.test.stories-BtamFQkF.js} +1 -1
- package/storybook-static/assets/{css.test.stories-B_3ltOrx.js → css.test.stories-BfNxLgwr.js} +1 -1
- package/storybook-static/assets/{custom-element-CPnvJnn8.js → custom-element-CnmjNo0g.js} +6 -6
- package/storybook-static/assets/{dom-merge.test.stories-nQxcgLoM.js → dom-merge.test.stories-DxnitrLK.js} +47 -6
- package/storybook-static/assets/entry-preview-BNCt9WBs.js +26 -0
- package/storybook-static/assets/{entry-preview-docs-Dwczwtsc.js → entry-preview-docs-CbF8-81D.js} +2 -2
- package/storybook-static/assets/{external-template.test.stories-DZ-rjnfd.js → external-template.test.stories-BTsww7B0.js} +1 -1
- package/storybook-static/assets/{form.test.stories-DQhPYtMj.js → form.test.stories-DNJFtPJb.js} +1 -1
- package/storybook-static/assets/{frame.canvas-ClTqYyMN.js → frame.canvas-E5n9h6j1.js} +1 -1
- package/storybook-static/assets/{handlers-CLkps6Nz.js → handlers-Dvg8CAeR.js} +1 -1
- package/storybook-static/assets/http-request-BWeEEBkP.js +1 -0
- package/storybook-static/assets/{http-request.stories-jo0f73nw.js → http-request.stories-DgrBNle8.js} +1 -1
- package/storybook-static/assets/{iframe-CZwRpnn9.js → iframe-DiVWehoI.js} +11 -11
- package/storybook-static/assets/{index-Dr4PwNfd.js → index-CGuyH0k-.js} +87 -87
- package/storybook-static/assets/{index-CJQtnF9V.js → index-CdEbhcV9.js} +1 -1
- package/storybook-static/assets/index-DO1nmyvI.js +11 -0
- package/storybook-static/assets/{index-B68YUdzy.js → index-w6iX3YlR.js} +3 -3
- package/storybook-static/assets/{local-storage.test.stories-uA5EKRPf.js → local-storage.test.stories-Hwq80yUr.js} +1 -1
- package/storybook-static/assets/{location-element.test.stories-Cu-6Elcg.js → location-element.test.stories-mEhZzm7x.js} +1 -1
- package/storybook-static/assets/{module-url.test.stories-CD_wusXQ.js → module-url.test.stories-Bj46iT0V.js} +1 -1
- package/storybook-static/assets/{preview-CuCH40jj.js → preview-BjbXcJci.js} +2 -2
- package/storybook-static/assets/{preview-BFlNN3Wj.js → preview-Bn8igYMp.js} +1 -1
- package/storybook-static/assets/{preview-Cm4PPhHS.js → preview-CfuT8gak.js} +1 -1
- package/storybook-static/assets/{set-url.test.stories-CY7B9BVZ.js → set-url.test.stories-hzxLcqmm.js} +1 -1
- package/storybook-static/assets/{slice-events.test.stories-BVnPXm6e.js → slice-events.test.stories-DVyXFRU1.js} +1 -1
- package/storybook-static/assets/{slots.test.stories-Dxsa9KdA.js → slots.test.stories-CS544nS4.js} +1 -1
- package/storybook-static/assets/{version-select.test.stories-Buga1PAa.js → version-select.test.stories-D36nfYBq.js} +1 -1
- package/storybook-static/assets/xslt-conditionals.test.stories-BS1PTIHe.js +633 -0
- package/storybook-static/assets/xslt-for-each.test.stories-CtPS20RK.js +329 -0
- package/storybook-static/assets/xslt-if.test.stories-DcHrAMSY.js +71 -0
- package/storybook-static/demo/a.html +10 -3
- package/storybook-static/demo/a.svg +26 -26
- package/storybook-static/demo/html-template.html +4 -3
- package/storybook-static/demo/s.xml +1 -75
- package/storybook-static/demo/s.xslt +351 -72
- package/storybook-static/demo/s1.xml +3706 -0
- package/storybook-static/iframe.html +2 -2
- package/storybook-static/index.json +1 -1
- package/storybook-static/mockServiceWorker.js +105 -63
- package/storybook-static/project.json +1 -1
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +69 -66
- package/storybook-static/sb-addons/essentials-docs-3/manager-bundle.js +62 -59
- package/dist/custom-element-6slVaFEs.cjs +0 -97
- package/dist/http-request-DPrY7mGh.cjs +0 -1
- package/storybook-static/assets/attributes.test.stories-CzWkKw0e.js +0 -1
- package/storybook-static/assets/entry-preview-DHVXbf3x.js +0 -26
- package/storybook-static/assets/external-template.test.stories-BivZqBTp.js +0 -1
- package/storybook-static/assets/http-request-DNq59pnj.js +0 -1
- package/storybook-static/assets/index-BwkS7JH_.js +0 -8
- package/storybook-static/assets/module-url.test.stories-CTjUAk3J.js +0 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(python3:*)",
|
|
5
|
+
"Bash(git add:*)",
|
|
6
|
+
"Bash(git commit:*)",
|
|
7
|
+
"WebSearch",
|
|
8
|
+
"WebFetch(domain:m3.material.io)",
|
|
9
|
+
"WebFetch(domain:material-web.dev)",
|
|
10
|
+
"WebFetch(domain:mui.com)",
|
|
11
|
+
"WebFetch(domain:material.angular.io)",
|
|
12
|
+
"WebFetch(domain:material.angular.dev)",
|
|
13
|
+
"Bash(cat:*)",
|
|
14
|
+
"Bash(git checkout:*)",
|
|
15
|
+
"Bash(npm test:*)"
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
package/.gitattributes
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
name: Deploy SRC to web hosting
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
- develop
|
|
8
|
+
- '*'
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: deploy-${{ github.ref_name }}
|
|
16
|
+
cancel-in-progress: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
deploy-src:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
steps:
|
|
22
|
+
- name: Checkout
|
|
23
|
+
uses: actions/checkout@v4
|
|
24
|
+
with:
|
|
25
|
+
fetch-depth: 0
|
|
26
|
+
- name: Compute remote deploy directory
|
|
27
|
+
id: dir
|
|
28
|
+
run: |
|
|
29
|
+
BR="${GITHUB_REF_NAME}"
|
|
30
|
+
REPOROOT=${{ github.repository }}
|
|
31
|
+
if [ "$BR" = "main" ]; then
|
|
32
|
+
echo "server_dir=$REPOROOT/main" >> "$GITHUB_OUTPUT"
|
|
33
|
+
else
|
|
34
|
+
echo "server_dir=$REPOROOT/${BR}" >> "$GITHUB_OUTPUT"
|
|
35
|
+
fi
|
|
36
|
+
echo "branch_name=${BR}" >> "$GITHUB_OUTPUT"
|
|
37
|
+
echo "branch_name=${BR}"
|
|
38
|
+
echo "host: ${{ secrets.BRANCH_DEPLOY_HOST }}"
|
|
39
|
+
echo "port port: ${{ secrets.BRANCH_DEPLOY_PORT }}"
|
|
40
|
+
echo "REMOTE_PATH=/${REPOROOT}/tree/${BR}/src" >> "$GITHUB_OUTPUT"
|
|
41
|
+
echo "REMOTE_PATH=/${REPOROOT}/tree/${BR}/src"
|
|
42
|
+
echo "Repository: ${{ github.repository }}"
|
|
43
|
+
echo "Branch: ${{ github.ref_name }}"
|
|
44
|
+
|
|
45
|
+
- name: Deploy to web host
|
|
46
|
+
uses: milanmk/actions-file-deployer@master
|
|
47
|
+
with:
|
|
48
|
+
remote-protocol: "sftp"
|
|
49
|
+
remote-host: ${{ secrets.BRANCH_DEPLOY_HOST }}
|
|
50
|
+
remote-user: ${{ secrets.BRANCH_DEPLOY_USER }}
|
|
51
|
+
remote-password: ${{ secrets.BRANCH_DEPLOY_PASS }}
|
|
52
|
+
remote-port: ${{ secrets.BRANCH_DEPLOY_PORT }}
|
|
53
|
+
local-path: "./src"
|
|
54
|
+
remote-path: ${{steps.dir.outputs.REMOTE_PATH}}
|
|
55
|
+
# remote-path: "${{ steps.dir.outputs.server_dir }}/src/"
|
|
56
|
+
sync: "full"
|
|
57
|
+
# sync: "delta"
|
|
58
|
+
# If your server only offers ssh-rsa host key, you may need:
|
|
59
|
+
ssh-options: "-oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa"
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<exclude-output />
|
|
5
5
|
<content url="file://$MODULE_DIR$">
|
|
6
6
|
<excludeFolder url="file://$MODULE_DIR$/coverage" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/dist" />
|
|
8
|
+
<excludeFolder url="file://$MODULE_DIR$/storybook-static" />
|
|
7
9
|
</content>
|
|
8
10
|
<orderEntry type="inheritedJdk" />
|
|
9
11
|
<orderEntry type="sourceFolder" forTests="false" />
|
package/.storybook/main.ts
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
|
-
import type { StorybookConfig } from "@storybook/web-components-vite";
|
|
2
|
-
|
|
3
|
-
const config: StorybookConfig = {
|
|
4
|
-
stories: [
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
1
|
+
import type { StorybookConfig } from "@storybook/web-components-vite";
|
|
2
|
+
|
|
3
|
+
const config: StorybookConfig = {
|
|
4
|
+
stories: [
|
|
5
|
+
"../src/stories/*.mdx",
|
|
6
|
+
"../src/stories/*.stories.@(js|jsx|mjs|ts|tsx)"
|
|
7
|
+
],
|
|
8
|
+
addons: [
|
|
9
|
+
"@storybook/addon-essentials",
|
|
10
|
+
'@storybook/addon-interactions',
|
|
11
|
+
"@chromatic-com/storybook"
|
|
12
|
+
],
|
|
13
|
+
framework: {
|
|
14
|
+
name: "@storybook/web-components-vite",
|
|
15
|
+
options: {},
|
|
16
|
+
},
|
|
17
|
+
docs: {},
|
|
18
|
+
staticDirs: ['../public'],
|
|
19
|
+
};
|
|
20
|
+
export default config;
|
package/.storybook/preview.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {initialize, mswLoader} from 'msw-storybook-addon';
|
|
2
|
-
|
|
3
|
-
import {handlers} from "../src/mocks/handlers";
|
|
4
|
-
|
|
5
|
-
initialize({onUnhandledRequest: 'bypass'});// SB
|
|
6
|
-
|
|
7
|
-
const preview = {
|
|
8
|
-
parameters: {
|
|
9
|
-
controls: {
|
|
10
|
-
matchers: {
|
|
11
|
-
color: /(background|color)$/i,
|
|
12
|
-
date: /Date$/i
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
msw: {
|
|
16
|
-
handlers: handlers,
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
loaders: [mswLoader],
|
|
20
|
-
tags: ['autodocs']
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
export default preview;
|
|
1
|
+
import {initialize, mswLoader} from 'msw-storybook-addon';
|
|
2
|
+
|
|
3
|
+
import {handlers} from "../src/mocks/handlers";
|
|
4
|
+
|
|
5
|
+
initialize({onUnhandledRequest: 'bypass'});// SB
|
|
6
|
+
|
|
7
|
+
const preview = {
|
|
8
|
+
parameters: {
|
|
9
|
+
controls: {
|
|
10
|
+
matchers: {
|
|
11
|
+
color: /(background|color)$/i,
|
|
12
|
+
date: /Date$/i
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
msw: {
|
|
16
|
+
handlers: handlers,
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
loaders: [mswLoader],
|
|
20
|
+
tags: ['autodocs']
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export default preview;
|
|
Binary file
|
package/.yarnrc.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodeLinker: node-modules
|
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@ Binary distribution for [@epa-wg/custom-element][git-url] with StoryBook and tes
|
|
|
6
6
|
| [![NPM version][npm-image]][npm-url]
|
|
7
7
|
| [![coverage][coverage-image]][coverage-url]
|
|
8
8
|
| [StoryBook][sb-url]
|
|
9
|
+
| [Material custom-element][cem-url]
|
|
9
10
|
|
|
10
11
|
# Content
|
|
11
12
|
[bin/build.sh] generates binaries to be kept as in Git release as in NPM package.
|
|
@@ -26,7 +27,8 @@ CDN version of StoryBook.
|
|
|
26
27
|
[github-image]: https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/svg/mark-github.svg
|
|
27
28
|
[npm-image]: https://img.shields.io/npm/v/@epa-wg/custom-element-dist.svg
|
|
28
29
|
[npm-url]: https://npmjs.org/package/@epa-wg/custom-element-dist
|
|
29
|
-
[coverage-image]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.
|
|
30
|
-
[coverage-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.
|
|
31
|
-
[sb-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.
|
|
32
|
-
[bundle-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.
|
|
30
|
+
[coverage-image]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.35/coverage/src/custom-element/coverage.svg
|
|
31
|
+
[coverage-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.35/coverage/src/custom-element/index.html
|
|
32
|
+
[sb-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.35/storybook-static/index.html
|
|
33
|
+
[bundle-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.35/dist/custom-element-bundle.js
|
|
34
|
+
[cem-url]: https://unpkg.com/@epa-wg/custom-element-dist@0.0.35/src/material/components.html
|
|
@@ -9,7 +9,7 @@ var jumpToCode = (function init() {
|
|
|
9
9
|
// We don't want to select elements that are direct descendants of another match
|
|
10
10
|
var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
|
|
11
11
|
|
|
12
|
-
//
|
|
12
|
+
// Selector that finds elements on the page to which we can jump
|
|
13
13
|
var selector =
|
|
14
14
|
fileListingElements.join(', ') +
|
|
15
15
|
', ' +
|