@spectrum-css/combobox
Advanced tools
Comparing version 2.1.7-next.2 to 3.0.0
@@ -6,2 +6,21 @@ # Change Log | ||
<a name="3.0.0"></a> | ||
#3.0.0 | ||
🗓 | ||
2024-04-18 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/combobox@2.1.6...@spectrum-css/combobox@3.0.0) | ||
### ✨ Features | ||
\*use storybook v8 ([#2604](https://github.com/adobe/spectrum-css/issues/2604))([166ab23](https://github.com/adobe/spectrum-css/commit/166ab23)) | ||
\*feat!: postcss config build and script; remove gulp (#2466)([b0f337b](https://github.com/adobe/spectrum-css/commit/b0f337b)), closes[#2466](https://github.com/adobe/spectrum-css/issues/2466) | ||
### | ||
🛑 BREAKING CHANGES | ||
* | ||
- Removes component-builder & component-builder-simple for script leveraging postcss | ||
- Imports added to index.css and themes/express.css | ||
<a name="2.1.6"></a> | ||
@@ -8,0 +27,0 @@ ##2.1.6 |
{ | ||
"name": "@spectrum-css/combobox", | ||
"version": "2.1.7-next.2", | ||
"description": "The Spectrum CSS combobox component", | ||
"license": "Apache-2.0", | ||
"author": "Adobe", | ||
"homepage": "https://opensource.adobe.com/spectrum-css/", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/adobe/spectrum-css.git", | ||
"directory": "components/combobox" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/adobe/spectrum-css/issues" | ||
}, | ||
"main": "dist/index.css", | ||
"peerDependencies": { | ||
"@spectrum-css/menu": ">=5", | ||
"@spectrum-css/pickerbutton": ">=4", | ||
"@spectrum-css/popover": ">=6", | ||
"@spectrum-css/progresscircle": ">=2", | ||
"@spectrum-css/textfield": ">=6", | ||
"@spectrum-css/tokens": "^14.0.0-next.3" | ||
}, | ||
"peerDependenciesMeta": { | ||
"@spectrum-css/progresscircle": { | ||
"optional": true | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "35c5f608be3785b57e7cdfd982378fff080accc2" | ||
"name": "@spectrum-css/combobox", | ||
"version": "3.0.0", | ||
"description": "The Spectrum CSS combobox component", | ||
"license": "Apache-2.0", | ||
"author": "Adobe", | ||
"homepage": "https://opensource.adobe.com/spectrum-css/", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/adobe/spectrum-css.git", | ||
"directory": "components/combobox" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/adobe/spectrum-css/issues" | ||
}, | ||
"main": "dist/index.css", | ||
"peerDependencies": { | ||
"@spectrum-css/menu": ">=5", | ||
"@spectrum-css/pickerbutton": ">=4", | ||
"@spectrum-css/popover": ">=6", | ||
"@spectrum-css/progresscircle": ">=2", | ||
"@spectrum-css/textfield": ">=6", | ||
"@spectrum-css/tokens": ">=13" | ||
}, | ||
"peerDependenciesMeta": { | ||
"@spectrum-css/progresscircle": { | ||
"optional": true | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "ee96fec864d2f60be456b50964dacfa8d562d9b8" | ||
} |
@@ -18,3 +18,2 @@ import { html } from "lit"; | ||
id, | ||
content, | ||
customClasses = [], | ||
@@ -32,7 +31,5 @@ size = "m", | ||
isLoading = false, | ||
isRequired = false, | ||
readOnly = false, | ||
...globals | ||
}) => { | ||
const [_, updateArgs] = useArgs(); | ||
const [, updateArgs] = useArgs(); | ||
const [{ lang }] = useGlobals(); | ||
@@ -45,3 +42,4 @@ | ||
else import(/* webpackPrefetch: true */ "../themes/express.css"); | ||
} catch (e) { | ||
} | ||
catch (e) { | ||
console.warn(e); | ||
@@ -105,3 +103,3 @@ } | ||
`${rootClass}-button`, | ||
... isInvalid ? ['is-invalid'] : [], | ||
... isInvalid ? ["is-invalid"] : [], | ||
], | ||
@@ -133,3 +131,3 @@ size, | ||
width: "100%", | ||
} | ||
} | ||
: {}, | ||
@@ -136,0 +134,0 @@ content: [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
250795
0
2142