@umbraco-ui/uui-combobox 1.0.0 → 1.1.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 +5 -4
  2. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -1,11 +1,11 @@
1
+ import { FormControlMixin } from '@umbraco-ui/uui-base/lib/mixins';
1
2
  import { defineElement } from '@umbraco-ui/uui-base/lib/registration';
2
3
  import { demandCustomElement } from '@umbraco-ui/uui-base/lib/utils';
3
- import { property, query, queryAssignedElements, state } from 'lit/decorators.js';
4
- import { LitElement, html, css } from 'lit';
5
- import { UUIEvent } from '@umbraco-ui/uui-base/lib/events';
6
4
  import { UUIComboboxListEvent } from '@umbraco-ui/uui-combobox-list/lib';
7
- import { FormControlMixin } from '@umbraco-ui/uui-base/lib/mixins';
8
5
  import { iconRemove } from '@umbraco-ui/uui-icon-registry-essential/lib/svgs';
6
+ import { LitElement, html, css } from 'lit';
7
+ import { property, query, queryAssignedElements, state } from 'lit/decorators.js';
8
+ import { UUIEvent } from '@umbraco-ui/uui-base/lib/events';
9
9
 
10
10
  class UUIComboboxEvent extends UUIEvent {
11
11
  }
@@ -157,6 +157,7 @@ let UUIComboboxElement = class extends FormControlMixin(LitElement) {
157
157
  demandCustomElement(this, "uui-button");
158
158
  demandCustomElement(this, "uui-combobox-list");
159
159
  demandCustomElement(this, "uui-scroll-container");
160
+ demandCustomElement(this, "uui-popover");
160
161
  }
161
162
  disconnectedCallback() {
162
163
  super.disconnectedCallback();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-combobox",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -45,5 +45,5 @@
45
45
  "access": "public"
46
46
  },
47
47
  "homepage": "https://uui.umbraco.com/?path=/story/uui-combobox",
48
- "gitHead": "ffb9cef00262b9f36177adcca9675b4893c0045e"
48
+ "gitHead": "6bd054ecff37c2b7ddfe2beed0f83bf29c58501d"
49
49
  }