Browse Source

Pull request #1656: 无JIRA任务 改为相对位置引用

Merge in VISUAL/fineui from ~TELLER/fineui:bugfix to master

* commit '55b14c8a3697edecfb7887353a17dbbc8ba0cbce':
  fix: 改为相对位置引用
es6
Teller 4 years ago
parent
commit
3257a432b6
  1. 2
      typescript/core/wrapper/layout/adapt/adapt.center.ts
  2. 2
      typescript/core/wrapper/layout/adapt/adapt.vertical.ts
  3. 3
      typescript/core/wrapper/layout/layout.tape.ts

2
typescript/core/wrapper/layout/adapt/adapt.center.ts

@ -1,4 +1,4 @@
import { Layout } from "typescript";
import { Layout } from "../../layout";
export declare class CenterAdaptLayout extends Layout {
static xtype: string;

2
typescript/core/wrapper/layout/adapt/adapt.vertical.ts

@ -1,4 +1,4 @@
import { Layout } from "typescript";
import { Layout } from "../../layout";
export declare class VerticalAdaptLayout extends Layout {
static xtype: string;

3
typescript/core/wrapper/layout/layout.tape.ts

@ -1,5 +1,4 @@
import { Layout } from "typescript";
import { _Layout } from "../layout";
import { _Layout, Layout } from "../layout";
export interface _HTapeLayout extends _Layout {
resize(): void;

Loading…
Cancel
Save