@telia-ace/widget-components-list-flamingo 1.1.120-rc.0 → 1.1.120-rc.2
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/index.d.ts +2 -0
- package/list-component.d.ts +3 -0
- package/list.d.ts +7 -0
- package/package.json +2 -2
package/index.d.ts
ADDED
package/list.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
declare const WidgetElement: (new (...args: any[]) => import('libs/runtime/src/mixins/widget-component.mixin').WidgetComponentInterface) & typeof LitElement;
|
|
3
|
+
export declare class ListComponent extends WidgetElement {
|
|
4
|
+
static styles: import('lit').CSSResultGroup[];
|
|
5
|
+
render(): import('lit').TemplateResult<1>;
|
|
6
|
+
}
|
|
7
|
+
export default ListComponent;
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/widget-components-list-flamingo",
|
|
3
|
-
"version": "1.1.120-rc.
|
|
3
|
+
"version": "1.1.120-rc.2",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@telia-ace/widget-runtime-flamingo": "1.1.
|
|
5
|
+
"@telia-ace/widget-runtime-flamingo": "1.1.120-rc.2",
|
|
6
6
|
"@webprovisions/platform": "^1.1.3",
|
|
7
7
|
"lit": "^3.0.2"
|
|
8
8
|
},
|