forked from fanruan/fineui
Roy.Liu
4 years ago
113 changed files with 287 additions and 1406 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,8 +1,4 @@
|
||||
import { _AbstractLabel, AbstractLabel } from "./abstract.label"; |
||||
export interface _Label extends _AbstractLabel { |
||||
doRedMark(...args: any[]): void; |
||||
unRedMark(...args: any[]): void; |
||||
} |
||||
import { AbstractLabel } from "./abstract.label"; |
||||
export declare class Label extends AbstractLabel { |
||||
static xtype: string; |
||||
} |
||||
|
@ -1,7 +1,4 @@
|
||||
import { _Pane, Pane } from "../../base/pane"; |
||||
export interface _LoadingPane extends _Pane { |
||||
__loaded: (...args: any[]) => void; |
||||
} |
||||
import { Pane } from "../../base/pane"; |
||||
export declare class LoadingPane extends Pane { |
||||
__loaded: (...args: any[]) => void; |
||||
} |
||||
|
@ -1,5 +1,3 @@
|
||||
import { AbstractTreeValueChooser, _AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
export interface _AbstractListTreeValueChooser extends _AbstractTreeValueChooser { |
||||
} |
||||
import { AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
export declare class AbstractListTreeValueChooser extends AbstractTreeValueChooser { |
||||
} |
||||
|
@ -1,5 +1,3 @@
|
||||
import { _Action, Action } from "./action"; |
||||
export interface _ShowAction extends _Action { |
||||
} |
||||
import { Action } from "./action"; |
||||
export declare class ShowAction extends Action { |
||||
} |
||||
|
@ -1,5 +1,3 @@
|
||||
import { _Behavior, Behavior } from "./behavior"; |
||||
export interface _HighlightBehavior extends _Behavior { |
||||
} |
||||
import { Behavior } from "./behavior"; |
||||
export declare class HighlightBehavior extends Behavior { |
||||
} |
||||
|
@ -1,5 +1,3 @@
|
||||
import { _Behavior, Behavior } from "./behavior"; |
||||
export interface _RedMarkBehavior extends _Behavior { |
||||
} |
||||
import { Behavior } from "./behavior"; |
||||
export declare class RedMarkBehavior extends Behavior { |
||||
} |
||||
|
@ -1,9 +1,4 @@
|
||||
import { Layout, _Layout } from "../layout"; |
||||
export interface _AbsoluteLayout extends _Layout { |
||||
resize(): void; |
||||
stroke<T>(items: T[]): void; |
||||
populate<T>(items?: T[]): void; |
||||
} |
||||
import { Layout } from "../layout"; |
||||
export declare class AbsoluteLayout extends Layout { |
||||
static xtype: string; |
||||
} |
||||
|
@ -1,8 +1,4 @@
|
||||
import { Layout, _Layout } from "../layout"; |
||||
export interface _DefaultLayout extends _Layout { |
||||
resize(): void; |
||||
populate<T>(items?: T[]): void; |
||||
} |
||||
import { Layout } from "../layout"; |
||||
export declare class DefaultLayout extends Layout { |
||||
static xtype: string; |
||||
} |
||||
|
@ -1,8 +1,4 @@
|
||||
import { Layout, _Layout } from "../layout"; |
||||
export interface _VerticalLayout extends _Layout { |
||||
resize(): void; |
||||
populate<T>(items?: T[]): void; |
||||
} |
||||
import { Layout } from "../layout"; |
||||
export declare class VerticalLayout extends Layout { |
||||
static xtype: string; |
||||
} |
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,3 @@
|
||||
import { AbstractTreeValueChooser, _AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
|
||||
export interface _AbstractListTreeValueChooser extends _AbstractTreeValueChooser {} |
||||
import { AbstractTreeValueChooser } from "./abstract.treevaluechooser"; |
||||
|
||||
export declare class AbstractListTreeValueChooser extends AbstractTreeValueChooser {} |
||||
|
@ -1,8 +1,5 @@
|
||||
import { _Action, Action } from "./action"; |
||||
import { Action } from "./action"; |
||||
|
||||
export interface _ShowAction extends _Action { |
||||
|
||||
} |
||||
export declare class ShowAction extends Action { |
||||
|
||||
} |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue