@umbraco-ui/uui-combobox 1.3.0-rc.0 → 1.3.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.
Files changed (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +8 -8
package/lib/index.js CHANGED
@@ -273,7 +273,7 @@ UUIComboboxElement.styles = [
273
273
  var(--uui-color-surface,#fff)
274
274
  );
275
275
  border: 1px solid var(--uui-color-border,#d8d7d9);
276
- border-radius: var(--uui-border-radius,var(--uui-size-1));
276
+ border-radius: var(--uui-border-radius,3px);
277
277
  width: 100%;
278
278
  height: 100%;
279
279
  box-sizing: border-box;
@@ -289,7 +289,7 @@ UUIComboboxElement.styles = [
289
289
  }
290
290
 
291
291
  :host([disabled]) #caret {
292
- fill: var(--uui-color-disabled-contrast,var(--uui-palette-grey));
292
+ fill: var(--uui-color-disabled-contrast,#c4c4c4);
293
293
  }
294
294
 
295
295
  #phone-wrapper {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-combobox",
3
- "version": "1.3.0-rc.0",
3
+ "version": "1.3.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,20 +30,20 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.3.0-rc.0",
34
- "@umbraco-ui/uui-button": "1.3.0-rc.0",
35
- "@umbraco-ui/uui-combobox-list": "1.3.0-rc.0",
36
- "@umbraco-ui/uui-icon": "1.3.0-rc.0",
37
- "@umbraco-ui/uui-scroll-container": "1.3.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.3.0",
34
+ "@umbraco-ui/uui-button": "1.3.0",
35
+ "@umbraco-ui/uui-combobox-list": "1.3.0",
36
+ "@umbraco-ui/uui-icon": "1.3.0",
37
+ "@umbraco-ui/uui-scroll-container": "1.3.0"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
41
- "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
41
+ "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
42
42
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
47
  "homepage": "https://uui.umbraco.com/?path=/story/uui-combobox",
48
- "gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
48
+ "gitHead": "e662ac3be21cef08076d1dbb978748c2dd30e596"
49
49
  }