@spectrum-web-components/checkbox 1.12.0-testing.20260223092154 → 1.12.0
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 +5 -5
- package/src/Checkbox.d.ts +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/checkbox",
|
|
3
|
-
"version": "1.12.0
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Adobe",
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
],
|
|
63
63
|
"types": "./src/index.d.ts",
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@spectrum-web-components/base": "1.12.0
|
|
66
|
-
"@spectrum-web-components/icon": "1.12.0
|
|
67
|
-
"@spectrum-web-components/icons-ui": "1.12.0
|
|
68
|
-
"@spectrum-web-components/shared": "1.12.0
|
|
65
|
+
"@spectrum-web-components/base": "1.12.0",
|
|
66
|
+
"@spectrum-web-components/icon": "1.12.0",
|
|
67
|
+
"@spectrum-web-components/icons-ui": "1.12.0",
|
|
68
|
+
"@spectrum-web-components/shared": "1.12.0"
|
|
69
69
|
},
|
|
70
70
|
"keywords": [
|
|
71
71
|
"design-system",
|
package/src/Checkbox.d.ts
CHANGED
|
@@ -21,10 +21,7 @@ import '@spectrum-web-components/icons-ui/icons/sp-icon-dash300.js';
|
|
|
21
21
|
declare const Checkbox_base: typeof SpectrumElement & {
|
|
22
22
|
new (...args: any[]): import("./CheckboxMixin.js").CheckboxElement;
|
|
23
23
|
prototype: import("./CheckboxMixin.js").CheckboxElement;
|
|
24
|
-
} &
|
|
25
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
26
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
27
|
-
} & import("@spectrum-web-components/core/mixins/sized-mixin.js").SizedElementConstructor;
|
|
24
|
+
} & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
28
25
|
/**
|
|
29
26
|
* @element sp-checkbox
|
|
30
27
|
* @slot - content to display as the label for the Checkbox
|