@umbraco-ui/uui-combobox 1.5.0-rc.0 → 1.5.0-rc.1

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/README.md CHANGED
@@ -6,7 +6,7 @@ Umbraco style combo-box component.
6
6
 
7
7
  ### See it in action
8
8
 
9
- Preview the component on [Storybook](https://uui.umbraco.com/?path=/story/uui-combobox)
9
+ Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-combobox--docs)
10
10
 
11
11
  ## Installation
12
12
 
@@ -73,11 +73,6 @@
73
73
  }
74
74
  ],
75
75
  "properties": [
76
- {
77
- "name": "styles",
78
- "type": "CSSResult[]",
79
- "default": "[null]"
80
- },
81
76
  {
82
77
  "name": "search",
83
78
  "attribute": "search",
@@ -106,6 +101,11 @@
106
101
  "type": "boolean",
107
102
  "default": "\"false\""
108
103
  },
104
+ {
105
+ "name": "styles",
106
+ "type": "CSSResult[]",
107
+ "default": "[null]"
108
+ },
109
109
  {
110
110
  "name": "formAssociated",
111
111
  "description": "This is a static class field indicating that the element is can be used inside a native form and participate in its events.\nIt may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals.\nRead more about form controls here https://web.dev/more-capable-form-controls/",
@@ -1,10 +1,10 @@
1
1
  import { LitElement } from 'lit';
2
2
  export declare class UUIComboboxAsyncExampleElement extends LitElement {
3
- static styles: import("lit").CSSResult[];
4
3
  _options: any[];
5
4
  _loading: boolean;
6
5
  _filterValue: string;
7
6
  private _fetchData;
8
7
  private _handleSearch;
9
8
  render(): import("lit-html").TemplateResult<1>;
9
+ static styles: import("lit").CSSResult[];
10
10
  }
@@ -10,7 +10,6 @@ declare const UUIComboboxElement_base: (new (...args: any[]) => import("@umbraco
10
10
  * @description - Filterable combobox
11
11
  */
12
12
  export declare class UUIComboboxElement extends UUIComboboxElement_base {
13
- static styles: import("lit").CSSResult[];
14
13
  get value(): FormDataEntryValue | FormData;
15
14
  set value(newValue: FormDataEntryValue | FormData);
16
15
  /**
@@ -69,6 +68,7 @@ export declare class UUIComboboxElement extends UUIComboboxElement_base {
69
68
  private _renderClearButton;
70
69
  private _renderDropdown;
71
70
  render(): import("lit-html").TemplateResult<1>;
71
+ static styles: import("lit").CSSResult[];
72
72
  }
73
73
  declare global {
74
74
  interface HTMLElementTagNameMap {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-combobox",
3
- "version": "1.5.0-rc.0",
3
+ "version": "1.5.0-rc.1",
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": "1.5.0-rc.0",
34
- "@umbraco-ui/uui-button": "1.5.0-rc.0",
35
- "@umbraco-ui/uui-combobox-list": "1.5.0-rc.0",
36
- "@umbraco-ui/uui-icon": "1.5.0-rc.0",
37
- "@umbraco-ui/uui-scroll-container": "1.5.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.5.0-rc.1",
34
+ "@umbraco-ui/uui-button": "1.5.0-rc.1",
35
+ "@umbraco-ui/uui-combobox-list": "1.5.0-rc.1",
36
+ "@umbraco-ui/uui-icon": "1.5.0-rc.1",
37
+ "@umbraco-ui/uui-scroll-container": "1.5.0-rc.1"
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": "73cbc1444590282b7fb63a18d5639628ba18f0a3"
48
+ "gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
49
49
  }