upgrade CEM and fix comment

This commit is contained in:
Cory LaViska
2023-01-09 10:47:10 -05:00
parent bf527437a0
commit d0a32d48b1
3 changed files with 12 additions and 10 deletions

14
package-lock.json generated
View File

@@ -18,7 +18,7 @@
"qr-creator": "^1.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.6",
"@custom-elements-manifest/analyzer": "^0.6.7",
"@open-wc/testing": "^3.1.7",
"@types/mocha": "^10.0.0",
"@types/react": "^18.0.25",
@@ -555,9 +555,9 @@
}
},
"node_modules/@custom-elements-manifest/analyzer": {
"version": "0.6.6",
"resolved": "https://registry.npmjs.org/@custom-elements-manifest/analyzer/-/analyzer-0.6.6.tgz",
"integrity": "sha512-aPBZBdkrGcQPhgPPEucgw66vfOfLpS80GOGzDXE8NZuO/VmTdy3QQNAsuD4MPJmv9eRPV9W2V7ezodS5g8erng==",
"version": "0.6.7",
"resolved": "https://registry.npmjs.org/@custom-elements-manifest/analyzer/-/analyzer-0.6.7.tgz",
"integrity": "sha512-vVNRmZ8NnIbnFXSAABpP6SJ01JSKiDoi+ejfR8Y9Cd56B3lqGdDrDNFDKBA0eyq/Z4/TvNl5VmnWRPdlbp4CJg==",
"dev": true,
"dependencies": {
"@custom-elements-manifest/find-dependencies": "^0.0.5",
@@ -15563,9 +15563,9 @@
"integrity": "sha512-tlJpwF40DEQcfR/QF+wNMVyGMaO9FQp6Z1Wahj4Gk3CJQYHwA2xVG7iKDFdW6zuxZY9XWOpGcfNCTsX4McOsOg=="
},
"@custom-elements-manifest/analyzer": {
"version": "0.6.6",
"resolved": "https://registry.npmjs.org/@custom-elements-manifest/analyzer/-/analyzer-0.6.6.tgz",
"integrity": "sha512-aPBZBdkrGcQPhgPPEucgw66vfOfLpS80GOGzDXE8NZuO/VmTdy3QQNAsuD4MPJmv9eRPV9W2V7ezodS5g8erng==",
"version": "0.6.7",
"resolved": "https://registry.npmjs.org/@custom-elements-manifest/analyzer/-/analyzer-0.6.7.tgz",
"integrity": "sha512-vVNRmZ8NnIbnFXSAABpP6SJ01JSKiDoi+ejfR8Y9Cd56B3lqGdDrDNFDKBA0eyq/Z4/TvNl5VmnWRPdlbp4CJg==",
"dev": true,
"requires": {
"@custom-elements-manifest/find-dependencies": "^0.0.5",

View File

@@ -71,7 +71,7 @@
"qr-creator": "^1.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.6",
"@custom-elements-manifest/analyzer": "^0.6.7",
"@open-wc/testing": "^3.1.7",
"@types/mocha": "^10.0.0",
"@types/react": "^18.0.25",

View File

@@ -39,8 +39,10 @@ export default class SlRadioButton extends ShoelaceElement {
@state() protected hasFocus = false;
// The radio button's checked state. This is exposed as a "read-only" attribute so we can reflect it, making it easier
// to style in button groups. JSDoc is intentionally not used on this property to prevent it from showing in the docs.
/**
* @internal The radio button's checked state. This is exposed as an "internal" attribute so we can reflect it, making
* it easier to style in button groups.
*/
@property({ type: Boolean, reflect: true }) checked = false;
/** The radio's value. When selected, the radio group will receive this value. */