mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
- Change filenames to match classnames
- Change node import syntax
This commit is contained in:
parent
db7828ad1d
commit
243d769d7c
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
import {css, html, LitElement} from "../../../node_modules/@lion/core/index.js";
|
||||
import {Et2Widget} from "./et2_core_webComponent";
|
||||
import {css, html, LitElement} from "@lion/core";
|
||||
import {Et2Widget} from "./Et2Widget";
|
||||
|
||||
export class Et2Box extends Et2Widget(LitElement)
|
||||
{
|
@ -9,10 +9,10 @@
|
||||
*/
|
||||
|
||||
|
||||
import {css, html} from "../../../node_modules/@lion/core/index.js";
|
||||
import {LionButton} from "../../../node_modules/@lion/button/index.js";
|
||||
import {css, html} from "@lion/core/index.js";
|
||||
import {LionButton} from "@lion/button/index.js";
|
||||
import {Et2InputWidget} from "./et2_core_inputWidget";
|
||||
import {Et2Widget} from "./et2_core_webComponent";
|
||||
import {Et2Widget} from "./Et2Widget";
|
||||
|
||||
export class Et2Button extends Et2InputWidget(Et2Widget(LionButton))
|
||||
{
|
@ -9,10 +9,10 @@
|
||||
*/
|
||||
|
||||
|
||||
import {css, html} from "../../../node_modules/@lion/core/index.js";
|
||||
import {LionInput} from "../../../node_modules/@lion/input/index.js";
|
||||
import {css, html} from "@lion/core";
|
||||
import {LionInput} from "@lion/input";
|
||||
import {Et2InputWidget} from "./et2_core_inputWidget";
|
||||
import {Et2Widget} from "./et2_core_webComponent";
|
||||
import {Et2Widget} from "./Et2Widget";
|
||||
|
||||
export class Et2Textbox extends Et2InputWidget(Et2Widget(LionInput))
|
||||
{
|
@ -7,8 +7,7 @@ import {et2_cloneObject, et2_csvSplit} from "./et2_core_common";
|
||||
// @ts-ignore
|
||||
import {IegwAppLocal} from "../jsapi/egw_global";
|
||||
import {ClassWithAttributes, ClassWithInterfaces} from "./et2_core_inheritance";
|
||||
import {LitElement} from "../../../node_modules/lit-element/lit-element.js";
|
||||
import {forEach} from "carbon-web-components/es/globals/internal/collection-helpers";
|
||||
import {LitElement} from "@lion/core";
|
||||
|
||||
/**
|
||||
* This mixin will allow any LitElement to become an Et2Widget
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user