@digital-realty/ix-select 1.1.9 → 1.1.11
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/dist/IxSelect.d.ts
CHANGED
|
@@ -129,6 +129,6 @@ export declare class IxSelect extends LitElement {
|
|
|
129
129
|
formStateRestoreCallback(newState: string): void;
|
|
130
130
|
connectedCallback(): void;
|
|
131
131
|
disconnectedCallback(): void;
|
|
132
|
-
render(): import("lit").TemplateResult<1 | 2>;
|
|
132
|
+
render(): import("lit-html").TemplateResult<1 | 2 | 3>;
|
|
133
133
|
}
|
|
134
134
|
export {};
|
|
@@ -59,21 +59,21 @@ export declare class IxSelectOption extends LitElement implements SelectOption {
|
|
|
59
59
|
get displayText(): string;
|
|
60
60
|
set displayText(text: string);
|
|
61
61
|
private readonly selectOptionController;
|
|
62
|
-
protected render(): import("lit").TemplateResult<1>;
|
|
62
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
63
63
|
/**
|
|
64
64
|
* Renders the root list item.
|
|
65
65
|
*
|
|
66
66
|
* @param content the child content of the list item.
|
|
67
67
|
*/
|
|
68
|
-
protected renderListItem(content: unknown): import("lit").TemplateResult<1>;
|
|
68
|
+
protected renderListItem(content: unknown): import("lit-html").TemplateResult<1>;
|
|
69
69
|
/**
|
|
70
70
|
* Handles rendering of the ripple element.
|
|
71
71
|
*/
|
|
72
|
-
protected renderRipple(): import("lit").TemplateResult<1>;
|
|
72
|
+
protected renderRipple(): import("lit-html").TemplateResult<1>;
|
|
73
73
|
/**
|
|
74
74
|
* Handles rendering of the focus ring.
|
|
75
75
|
*/
|
|
76
|
-
protected renderFocusRing(): import("lit").TemplateResult<1>;
|
|
76
|
+
protected renderFocusRing(): import("lit-html").TemplateResult<1>;
|
|
77
77
|
/**
|
|
78
78
|
* Classes applied to the list item root.
|
|
79
79
|
*/
|
|
@@ -81,6 +81,6 @@ export declare class IxSelectOption extends LitElement implements SelectOption {
|
|
|
81
81
|
/**
|
|
82
82
|
* Handles rendering the headline and supporting text.
|
|
83
83
|
*/
|
|
84
|
-
protected renderBody(): import("lit").TemplateResult<1>;
|
|
84
|
+
protected renderBody(): import("lit-html").TemplateResult<1>;
|
|
85
85
|
focus(): void;
|
|
86
86
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent ix-select following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "interxion",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.11",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"module": "dist/index.js",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@digital-realty/ix-icon": "^1.1.
|
|
34
|
+
"@digital-realty/ix-icon": "^1.1.7",
|
|
35
35
|
"@lit/react": "^1.0.2",
|
|
36
36
|
"@material/web": "1.2.0",
|
|
37
|
-
"lit": "^
|
|
37
|
+
"lit": "^3.2.1",
|
|
38
38
|
"react": "^18.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"README.md",
|
|
110
110
|
"LICENSE"
|
|
111
111
|
],
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "04150e3af2bfe53d1e9dffb86f7c6c13f0e735c8"
|
|
113
113
|
}
|