@umbraco-ui/uui-combobox 0.1.1 → 1.0.0-alpha.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/lib/index.js +6 -3
- package/package.json +7 -7
package/lib/index.js
CHANGED
|
@@ -121,7 +121,7 @@ let UUIComboboxElement = class extends FormControlMixin(LitElement) {
|
|
|
121
121
|
label="clear"
|
|
122
122
|
slot="append"
|
|
123
123
|
compact
|
|
124
|
-
style="height: 100%; --uui-button-padding-top-factor:0; --uui-button-padding-bottom-factor:0;">
|
|
124
|
+
style="height: 100%; --uui-button-padding-top-factor: 0; --uui-button-padding-bottom-factor: 0;">
|
|
125
125
|
<uui-icon name="remove" .fallback=${iconRemove.strings[0]}></uui-icon>
|
|
126
126
|
</uui-button>`;
|
|
127
127
|
};
|
|
@@ -221,8 +221,11 @@ UUIComboboxElement.styles = [
|
|
|
221
221
|
#dropdown {
|
|
222
222
|
overflow: hidden;
|
|
223
223
|
z-index: -1;
|
|
224
|
-
background-color: var(
|
|
225
|
-
|
|
224
|
+
background-color: var(
|
|
225
|
+
--uui-combobox-popover-background-color,
|
|
226
|
+
var(--uui-color-surface,#fff)
|
|
227
|
+
);
|
|
228
|
+
border: 1px solid var(--uui-color-border,#d8d7d9);
|
|
226
229
|
border-radius: var(--uui-border-radius,3px);
|
|
227
230
|
width: 100%;
|
|
228
231
|
height: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-combobox",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-alpha.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "0.
|
|
34
|
-
"@umbraco-ui/uui-button": "0.
|
|
35
|
-
"@umbraco-ui/uui-combobox-list": "0.
|
|
36
|
-
"@umbraco-ui/uui-icon": "0.
|
|
37
|
-
"@umbraco-ui/uui-scroll-container": "0.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.0.0-alpha.0",
|
|
34
|
+
"@umbraco-ui/uui-button": "1.0.0-alpha.0",
|
|
35
|
+
"@umbraco-ui/uui-combobox-list": "1.0.0-alpha.0",
|
|
36
|
+
"@umbraco-ui/uui-icon": "1.0.0-alpha.0",
|
|
37
|
+
"@umbraco-ui/uui-scroll-container": "1.0.0-alpha.0"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-combobox",
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "7d7608bf2fb63a8a077fcd8f0346dea73584b878"
|
|
49
49
|
}
|