@spectrum-web-components/checkbox 1.11.2 → 1.11.3-next.20260216104008
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/checkbox",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.3-next.20260216104008",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -72,10 +72,10 @@
|
|
|
72
72
|
"css"
|
|
73
73
|
],
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@spectrum-web-components/base": "1.11.
|
|
76
|
-
"@spectrum-web-components/icon": "1.11.
|
|
77
|
-
"@spectrum-web-components/icons-ui": "1.11.
|
|
78
|
-
"@spectrum-web-components/shared": "1.11.
|
|
75
|
+
"@spectrum-web-components/base": "1.11.3-next.20260216104008",
|
|
76
|
+
"@spectrum-web-components/icon": "1.11.3-next.20260216104008",
|
|
77
|
+
"@spectrum-web-components/icons-ui": "1.11.3-next.20260216104008",
|
|
78
|
+
"@spectrum-web-components/shared": "1.11.3-next.20260216104008"
|
|
79
79
|
},
|
|
80
80
|
"types": "./src/index.d.ts",
|
|
81
81
|
"customElements": "custom-elements.json",
|
package/src/Checkbox.d.ts
CHANGED
|
@@ -33,8 +33,11 @@ declare const Checkbox_base: typeof SpectrumElement & {
|
|
|
33
33
|
export declare class Checkbox extends Checkbox_base {
|
|
34
34
|
static shadowRootOptions: {
|
|
35
35
|
delegatesFocus: boolean;
|
|
36
|
+
clonable?: boolean;
|
|
37
|
+
customElementRegistry?: CustomElementRegistry;
|
|
36
38
|
mode: ShadowRootMode;
|
|
37
|
-
|
|
39
|
+
serializable?: boolean;
|
|
40
|
+
slotAssignment?: SlotAssignmentMode;
|
|
38
41
|
};
|
|
39
42
|
/**
|
|
40
43
|
* Disable this control. It will not receive focus or events
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const styles: import("
|
|
1
|
+
declare const styles: import("lit").CSSResult;
|
|
2
2
|
export default styles;
|
package/src/checkbox.css.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const styles: import("
|
|
1
|
+
declare const styles: import("lit").CSSResult;
|
|
2
2
|
export default styles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const styles: import("
|
|
1
|
+
declare const styles: import("lit").CSSResult;
|
|
2
2
|
export default styles;
|