Skip to content

Commit

Permalink
Merge pull request #94 from DripEmail/release-0.17.7
Browse files Browse the repository at this point in the history
Release 0.17.7
  • Loading branch information
Jachin Rupe committed Jun 15, 2023
2 parents 1f182e8 + d305205 commit 86a75e9
Show file tree
Hide file tree
Showing 17 changed files with 1,316 additions and 360 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 16.15.1
nodejs 16.20.0
3 changes: 3 additions & 0 deletions dist/much-select-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,9 @@ class MuchSelect extends HTMLElement {
hiddenValueInput.dispatchEvent(
new Event("change", { bubbles: true })
);
hiddenValueInput.dispatchEvent(
new Event("input", { bubbles: true })
);
}

this.startMuchSelectObserver();
Expand Down
305 changes: 234 additions & 71 deletions dist/much-select-elm-debug.js

Large diffs are not rendered by default.

305 changes: 234 additions & 71 deletions dist/much-select-elm.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/much-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,9 @@ class MuchSelect extends HTMLElement {
hiddenValueInput.dispatchEvent(
new Event("change", { bubbles: true })
);
hiddenValueInput.dispatchEvent(
new Event("input", { bubbles: true })
);
}

this.startMuchSelectObserver();
Expand Down
9 changes: 9 additions & 0 deletions dist/site/demo-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,17 @@ body {
background-color: var(--background-color);
color: var(--text-color);
font-family: var(--body-font);
margin: 0;
padding: 0;
}

#page-wrapper {
background-color: var(--background-color);
color: var(--text-color);
font-family: var(--body-font);
}


:any-link {
color: var(--link-text-color);
}
Expand Down
3 changes: 3 additions & 0 deletions dist/site/much-select-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,9 @@ class MuchSelect extends HTMLElement {
hiddenValueInput.dispatchEvent(
new Event("change", { bubbles: true })
);
hiddenValueInput.dispatchEvent(
new Event("input", { bubbles: true })
);
}

this.startMuchSelectObserver();
Expand Down
305 changes: 234 additions & 71 deletions dist/site/much-select-elm-debug.js

Large diffs are not rendered by default.

Loading

0 comments on commit 86a75e9

Please sign in to comment.