kempo-testing-framework 1.4.5 → 1.4.6
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.
|
@@ -34,7 +34,7 @@ window.customElements.define('ktf-setting-checkbox', class extends LitElement {
|
|
|
34
34
|
const id = `setting-${this.name || 'checkbox'}`;
|
|
35
35
|
return html`
|
|
36
36
|
<div class="d-f mb" style="align-items: center">
|
|
37
|
-
<input id="${id}" type="checkbox"
|
|
37
|
+
<input id="${id}" type="checkbox" .checked=${!!this.checked} @change=${(e) => this.onChange(e)} />
|
|
38
38
|
<label for="${id}" style="line-height: 1.35rem" class="pb0">${this.label || ''}</label>
|
|
39
39
|
</div>
|
|
40
40
|
`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kempo-testing-framework",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
4
4
|
"description": "The Kempo Testing Framework is a simple testing framework built on the principle that code intended to be ran in the browser should be tested in the browser, code intended to be ran in Node should be tested in Node, and code intended to be ran in both should be tested in both. No mocking, no complexity—just testing.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"license": "ISC",
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"kempo-css": "^1.
|
|
18
|
+
"kempo-css": "^2.1.9",
|
|
19
19
|
"puppeteer": "^24.9.0"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|