rename widget file into Widget

This commit is contained in:
Géry Debongnie
2019-01-22 14:45:49 +01:00
parent 4862496891
commit 5652ef65ad
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { Env } from "../../src/core/widget";
import { Env } from "../../src/core/Widget";
import QWeb from "../../src/core/qweb_vdom";
import Router from "./services/router";
import actions from "./services/actions";
+1 -1
View File
@@ -1,6 +1,6 @@
import CRM from "../widgets/CRM";
import Discuss from "../widgets/Discuss";
import Widget from "../../../src/core/widget";
import Widget from "../../../src/core/Widget";
export interface Action {
id: number;
+1 -1
View File
@@ -1,4 +1,4 @@
import Widget from "../../../src/core/widget";
import Widget from "../../../src/core/Widget";
const template = `
<div class="o_crm">
+1 -1
View File
@@ -1,4 +1,4 @@
import Widget from "../../../src/core/widget";
import Widget from "../../../src/core/Widget";
const template = `
<div>
+1 -1
View File
@@ -1,4 +1,4 @@
import Widget from "../../../src/core/widget";
import Widget from "../../../src/core/Widget";
import Counter from "./Counter";
const template = `
+1 -1
View File
@@ -1,4 +1,4 @@
import Widget from "../../../src/core/widget";
import Widget from "../../../src/core/Widget";
import { Action } from "../services/actions";
const template = `
+1 -1
View File
@@ -1,4 +1,4 @@
import Widget, { Env } from "../../../src/core/widget";
import Widget, { Env } from "../../../src/core/Widget";
import Navbar from "./Navbar";
import { Action } from "../services/actions";
+1 -1
View File
@@ -1,6 +1,6 @@
import QWeb from "../core/qweb_vdom";
import * as utils from "../core/utils";
import Widget from "../core/widget";
import Widget from "../core/Widget";
(<any>window).core = {
+1 -1
View File
@@ -1,4 +1,4 @@
import Widget from "../src/core/widget";
import Widget from "../src/core/Widget";
import QWeb from "../src/core/qweb_vdom";
function makeWidget(W: typeof Widget): Widget {