@telia-ace/widget-components-area-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.
@@ -0,0 +1,2 @@
1
+ import { Application } from '../../core/src/index.ts';
2
+ export declare const AreaComponent: (app: Application) => Promise<void>;
package/area.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ import { LitElement } from 'lit';
2
+ import { WidgetComponentType } from '../../core/src/index.ts';
3
+ declare const Area_base: (new (...args: any[]) => WidgetComponentType) & typeof LitElement;
4
+ export declare class Area extends Area_base {
5
+ nodes: WidgetComponentType[];
6
+ static styles: import('lit').CSSResult[];
7
+ render(): import('lit-html').TemplateResult<1>;
8
+ }
9
+ export default Area;
@@ -0,0 +1,5 @@
1
+ declare const filterCssProps: (props: Record<string, any>) => {
2
+ [key: string]: any;
3
+ };
4
+ export declare const appendStyleFromProperties: (elem: HTMLElement, p: Record<string, any>) => void;
5
+ export default filterCssProps;
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { AreaComponent } from './area-component';
2
+ export default AreaComponent;
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@telia-ace/widget-components-area-flamingo",
3
- "version": "1.1.120-rc.0",
3
+ "version": "1.1.120-rc.2",
4
4
  "dependencies": {
5
- "@telia-ace/widget-core-flamingo": "1.1.119",
5
+ "@telia-ace/widget-core-flamingo": "1.1.120-rc.2",
6
6
  "lit": "^3.0.2"
7
7
  },
8
8
  "main": "./index.js",