forked from fanruan/fineui
zsmj
2 years ago
39 changed files with 1781 additions and 1503 deletions
@ -1,7 +1,9 @@
|
||||
import { LayerController } from "../core/controller/controller.layer"; |
||||
import { BroadcastController } from "../core/controller/controller.broadcast"; |
||||
import { StyleLoaderManager } from "../core/loader/loader.style"; |
||||
|
||||
export type Layers = LayerController; |
||||
export const Layers = new LayerController(); |
||||
|
||||
export type Broadcasts = BroadcastController; |
||||
export const Broadcasts = new BroadcastController(); |
||||
|
||||
export const StyleLoaders = new StyleLoaderManager(); |
||||
|
@ -1,410 +1,405 @@
|
||||
import { Widget } from "./widget"; |
||||
|
||||
export interface _base { |
||||
assert: (v: any, is: Function) => Boolean; |
||||
type UnionToIntersection<Union> = ( |
||||
Union extends unknown |
||||
? (x: Union) => void |
||||
: never |
||||
) extends ((x: infer Intersection) => void) |
||||
? Intersection |
||||
: never; |
||||
|
||||
warn: (message: any) => Boolean; |
||||
|
||||
UUID: () => string; |
||||
export declare function assert(v: any, is: Function): Boolean; |
||||
|
||||
isWidget: (widget: any) => widget is Widget; |
||||
export declare function warn(message: any): Boolean; |
||||
|
||||
createWidgets: (items: any, options: any, context: any) => any; |
||||
export declare function UUID(): string; |
||||
|
||||
createItems: <T, U, K>(data: T[], innerAttr?: U, outerAttr?: K) => (U & T & K)[]; |
||||
export declare function isWidget(widget: any): widget is Widget; |
||||
|
||||
packageItems: (items: any[], layouts: any[]) => any[]; |
||||
export declare function createWidgets(items: any, options: any, context: any): any; |
||||
|
||||
formatEL: <T>(obj: T) => { el: T } | T; |
||||
export declare function createItems<T, U, K>(data: T[], innerAttr?: U, outerAttr?: K): (U & T & K)[]; |
||||
|
||||
stripEL: <T>(obj: { el: T } | T) => T; |
||||
export declare function packageItems(items: any[], layouts: any[]): any[]; |
||||
|
||||
trans2Element: (widgets: any[]) => any[]; |
||||
export declare function formatEL<T>(obj: T): { el: T } | T; |
||||
|
||||
// 集合相关方法
|
||||
where: (collection: any[] | object | string, source: object) => any[]; |
||||
export declare function stripEL<T>(obj: { el: T } | T): T; |
||||
|
||||
findWhere: (collection: any[] | object | string, callback?: Function | object | string, thisArg?: any) => object | undefined; |
||||
export declare function trans2Element(widgets: any[]): any[]; |
||||
|
||||
invoke: (collection: any[] | object | string, methodName: Function | string, arg?: any) => any[]; |
||||
// 集合相关方法
|
||||
export declare function where(collection: any[] | object | string, source: object): any[]; |
||||
|
||||
pluck: (collection: any[] | object | string, property: string) => any[]; |
||||
export declare function findWhere(collection: any[] | object | string, callback?: Function | object | string, thisArg?: any): object | undefined; |
||||
|
||||
shuffle: (collection: any[] | object | string) => any[]; |
||||
export declare function invoke(collection: any[] | object | string, methodName: Function | string, arg?: any): any[]; |
||||
|
||||
sample: (collection: any[] | object | string, n?: number) => any[]; |
||||
export declare function pluck(collection: any[] | object | string, property: string): any[]; |
||||
|
||||
toArray: (collection: any[] | object | string) => any[]; |
||||
export declare function shuffle(collection: any[] | object | string): any[]; |
||||
|
||||
size: (collection: any) => number; |
||||
export declare function sample(collection: any[] | object | string, n?: number): any[]; |
||||
|
||||
each<T>(collection: ArrayLike<T>, iteratee?: (index: number, value: T) => void, thisArg?: any): ArrayLike<T>; |
||||
each<T extends object, K extends keyof T>(collection: T, iteratee?: (index: K, value: T[K]) => void, thisArg?: any): T; |
||||
each<T>(collection: T, iteratee?: any, thisArg?: any): T; |
||||
export declare function toArray(collection: any[] | object | string): any[]; |
||||
|
||||
map: <T, U>(collection: T[] | object | string | null | undefined, callback?: ((index: number, value: T) => U) | object | string, thisArg?: any) => U[]; |
||||
export declare function size(collection: any): number; |
||||
|
||||
reduce: <T, U>(collection: T[] | object | string, callback?: ((total: U extends T ? U : T, currentValue: T, currentIndex: number) => U extends T ? U : T) | object | string, initialValue?: U | T) => U extends T ? U : T; |
||||
export declare function each<T>(collection: ArrayLike<T>, iteratee?: (index: number, value: T) => void, thisArg?: any): ArrayLike<T>; |
||||
export declare function each<T extends object, K extends keyof T>(collection: T, iteratee?: (index: K, value: T[K]) => void, thisArg?: any): T; |
||||
export declare function each<T>(collection: T, iteratee?: any, thisArg?: any): T; |
||||
|
||||
reduceRight: <T, U>(collection: T[] | object | string, callback?: ((total: U extends T ? U : T, currentValue: T, currentIndex: number) => U extends T ? U : T) | object | string, initialValue?: U | T) => U extends T ? U : T; |
||||
export declare function map<T, U>(collection: T[] | object | string | null | undefined, callback?: ((index: number, value: T) => U) | object | string, thisArg?: any): U[]; |
||||
|
||||
find: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => T | undefined; |
||||
export declare function reduce<T, U>(collection: T[] | object | string, callback?: ((total: U extends T ? U : T, currentValue: T, currentIndex: number) => U extends T ? U : T) | object | string, initialValue?: U | T): U extends T ? U : T; |
||||
|
||||
filter: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => T[]; |
||||
export declare function reduceRight<T, U>(collection: T[] | object | string, callback?: ((total: U extends T ? U : T, currentValue: T, currentIndex: number) => U extends T ? U : T) | object | string, initialValue?: U | T): U extends T ? U : T; |
||||
|
||||
reject: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => T[]; |
||||
export declare function find<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): T | undefined; |
||||
|
||||
every: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => boolean; |
||||
export declare function filter<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): T[]; |
||||
|
||||
all: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => boolean; |
||||
export declare function reject<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): T[]; |
||||
|
||||
some: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => boolean; |
||||
export declare function every<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): boolean; |
||||
|
||||
any: <T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any) => boolean; |
||||
export declare function all<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): boolean; |
||||
|
||||
max: <T>(collection: T[]) => T; |
||||
export declare function some<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): boolean; |
||||
|
||||
min: <T>(collection: T[]) => T; |
||||
export declare function any<T>(collection: T[] | object | string, callback?: ((index: number, value: T) => boolean) | object | string, thisArg?: any): boolean; |
||||
|
||||
sortBy: <T>(collection: any[] | object | string, callback?: ((index: number, value: T) => number) | object | string, thisArg?: any) => any[]; |
||||
export declare function max<T>(collection: T[]): T; |
||||
|
||||
groupBy: <T>(collection: any[] | object | string, callback?: ((index: number, value: T) => any) | object | string, thisArg?: any) => object; |
||||
export declare function min<T>(collection: T[]): T; |
||||
|
||||
indexBy: <T>(collection: any[] | object | string, callback?: ((index: number, value: T) => any) | object | string, thisArg?: any) => object; |
||||
export declare function sortBy<T>(collection: any[] | object | string, callback?: ((index: number, value: T) => number) | object | string, thisArg?: any): any[]; |
||||
|
||||
countBy: <T>(collection: any[] | object | string, callback?: ((index: number, value: T) => any) | object | string, thisArg?: any) => object; |
||||
export declare function groupBy<T>(collection: any[] | object | string, callback?: ((index: number, value: T) => any) | object | string, thisArg?: any): object; |
||||
|
||||
export declare function indexBy<T>(collection: any[] | object | string, callback?: ((index: number, value: T) => any) | object | string, thisArg?: any): object; |
||||
|
||||
count: (from: number, to: number, predicate: Function) => number; |
||||
export declare function countBy<T>(collection: any[] | object | string, callback?: ((index: number, value: T) => any) | object | string, thisArg?: any): object; |
||||
|
||||
inverse: (from: number, to: number, predicate: Function) => number; |
||||
|
||||
firstKey: (obj: object) => string; |
||||
export declare function count(from: number, to: number, predicate: Function): number; |
||||
|
||||
lastKey: (obj: object) => string; |
||||
export declare function inverse(from: number, to: number, predicate: Function): number; |
||||
|
||||
firstObject: (obj: object) => any; |
||||
export declare function firstKey(obj: object): string; |
||||
|
||||
lastObject: (obj: object) => any; |
||||
export declare function lastKey(obj: object): string; |
||||
|
||||
concat: (obj1: any, obj2: any, ...args: any[]) => any; |
||||
export declare function firstObject(obj: object): any; |
||||
|
||||
backEach: (obj: any, predicate: Function, context?: any) => boolean; |
||||
export declare function lastObject(obj: object): any; |
||||
|
||||
backAny: (obj: any, predicate: Function, context?: any) => boolean; |
||||
export declare function concat(obj1: any, obj2: any, ...args: any[]): any; |
||||
|
||||
backEvery: (obj: any, predicate: Function, context?: any) => boolean; |
||||
export declare function backEach(obj: any, predicate: Function, context?: any): boolean; |
||||
|
||||
backFindKey: (obj: any, predicate: Function, context?: any) => string; |
||||
export declare function backAny(obj: any, predicate: Function, context?: any): boolean; |
||||
|
||||
backFind: (obj: any, predicate: Function, context?: any) => any; |
||||
export declare function backEvery(obj: any, predicate: Function, context?: any): boolean; |
||||
|
||||
remove: (obj: any, predicate: any, context?: any) => void; |
||||
export declare function backFindKey(obj: any, predicate: Function, context?: any): string; |
||||
|
||||
removeAt: (obj: any, index: number | number[]) => void; |
||||
export declare function backFind(obj: any, predicate: Function, context?: any): any; |
||||
|
||||
string2Array: (str: string) => string[]; |
||||
export declare function remove(obj: any, predicate: any, context?: any): void; |
||||
|
||||
array2String: (array: any[]) => string; |
||||
export declare function removeAt(obj: any, index: number | number[]): void; |
||||
|
||||
abc2Int: (str: string) => number; |
||||
export declare function string2Array(str: string): string[]; |
||||
|
||||
int2Abc: (num: number) => string; |
||||
export declare function array2String(array: any[]): string; |
||||
|
||||
// 数组相关的方法
|
||||
first: <T>(array: T[], callback?: Function | object | number | string, thisArg?: any) => T; |
||||
export declare function abc2Int(str: string): number; |
||||
|
||||
initial: <T>(array: T[], callback?: Function | object | number | string, thisArg?: any) => T[]; |
||||
export declare function int2Abc(num: number): string; |
||||
|
||||
last: <T>(array: T[], callback?: Function | object | number | string, thisArg?: any) => T; |
||||
// 数组相关的方法
|
||||
export declare function first<T>(array: T[], callback?: Function | object | number | string, thisArg?: any): T; |
||||
|
||||
rest: <T>(array: T[], callback?: Function | object | number | string, thisArg?: any) => T[]; |
||||
export declare function initial<T>(array: T[], callback?: Function | object | number | string, thisArg?: any): T[]; |
||||
|
||||
compact: (array: any[]) => any[]; |
||||
export declare function last<T>(array: T[], callback?: Function | object | number | string, thisArg?: any): T; |
||||
|
||||
flatten: (array: any[], isShallow?: boolean, callback?: Function | object | string, thisArg?: any) => any[]; |
||||
export declare function rest<T>(array: T[], callback?: Function | object | number | string, thisArg?: any): T[]; |
||||
|
||||
without: (array: any[], value?: any) => any[]; |
||||
export declare function compact(array: any[]): any[]; |
||||
|
||||
union: (...array: any[]) => any[]; |
||||
export declare function flatten(array: any[], isShallow?: boolean, callback?: Function | object | string, thisArg?: any): any[]; |
||||
|
||||
intersection: (...array: any[]) => any[]; |
||||
export declare function without(array: any[], value?: any): any[]; |
||||
|
||||
difference: (...array: any[]) => any[]; |
||||
export declare function union(...array: any[]): any[]; |
||||
|
||||
zip: (...array: any[]) => any[]; |
||||
export declare function intersection(...array: any[]): any[]; |
||||
|
||||
unzip: (...array: any[]) => any[]; |
||||
export declare function difference(...array: any[]): any[]; |
||||
|
||||
object: (keys: string[], values?: any[]) => any[]; |
||||
export declare function zip(...array: any[]): any[]; |
||||
|
||||
indexOf: (array: any[], value: any, fromIndex?: number) => number; |
||||
export declare function unzip(...array: any[]): any[]; |
||||
|
||||
lastIndexOf: (array: any[], value: any, fromIndex?: number) => number; |
||||
export declare function object(keys: string[], values?: any[]): any[]; |
||||
|
||||
sortedIndex: (array: any[], value: any, callback?: Function | object | string, thisArg?: any) => number; |
||||
export declare function indexOf(array: any[], value: any, fromIndex?: number): number; |
||||
|
||||
range: (start: number, end: number, step: number) => number[]; |
||||
export declare function lastIndexOf(array: any[], value: any, fromIndex?: number): number; |
||||
|
||||
take: <T>(array: T[], n: number) => T[]; |
||||
export declare function sortedIndex(array: any[], value: any, callback?: Function | object | string, thisArg?: any): number; |
||||
|
||||
takeRight: <T>(array: T[], n: number) => T[]; |
||||
export declare function range(start: number, end: number, step: number): number[]; |
||||
|
||||
findIndex: <T>(array: T[], predicate?: ((index: number, item: T, array: T[]) => any) | object | string, thisArg?: any) => number; |
||||
export declare function take<T>(array: T[], n: number): T[]; |
||||
|
||||
findLastIndex: <T>(array: T[], predicate?: ((index: number, item: T, array: T[]) => any) | object | string, thisArg?: any) => number; |
||||
export declare function takeRight<T>(array: T[], n: number): T[]; |
||||
|
||||
makeArray: <T>(length: number, value?: T) => number[] | T[]; |
||||
export declare function findIndex<T>(array: T[], predicate?: ((index: number, item: T, array: T[]) => any) | object | string, thisArg?: any): number; |
||||
|
||||
makeObject: (array: any[], value: any) => any; |
||||
export declare function findLastIndex<T>(array: T[], predicate?: ((index: number, item: T, array: T[]) => any) | object | string, thisArg?: any): number; |
||||
|
||||
makeArrayByArray: <T>(array: any[], value: T) => T[]; |
||||
export declare function makeArray<T>(length: number, value?: T): number[] | T[]; |
||||
|
||||
uniq: <T>(array: T[], isSorted?: boolean, iteratee?: any, context?: any) => T[]; |
||||
export declare function makeObject(array: any[], value: any): any; |
||||
|
||||
// 对象相关方法
|
||||
keys: (object: object) => string[]; |
||||
export declare function makeArrayByArray<T>(array: any[], value: T): T[]; |
||||
|
||||
allKeys: (object: object) => string[]; |
||||
export declare function uniq<T>(array: T[], isSorted?: boolean, iteratee?: any, context?: any): T[]; |
||||
|
||||
values: (object: object) => any[]; |
||||
// 对象相关方法
|
||||
export declare function keys(object: object): string[]; |
||||
|
||||
pairs: (object: object) => any[]; |
||||
export declare function allKeys(object: object): string[]; |
||||
|
||||
invert: (object: object, multiValue: boolean) => object; |
||||
export declare function values(object: object): any[]; |
||||
|
||||
create: (prototype: object, properties?: object) => object; |
||||
export declare function pairs(object: object): any[]; |
||||
|
||||
functions: (object: object) => string[]; |
||||
export declare function invert(object: object, multiValue: boolean): object; |
||||
|
||||
extend<T extends object>(object: T): T; |
||||
extend<T extends object, U extends unknown[]>(object: T, ...sources: U): T & UnionToIntersection<NonNullable<U[number]>>; |
||||
export declare function create(prototype: object, properties?: object): object; |
||||
|
||||
defaults: (object: object, ...sources: any[]) => object; |
||||
export declare function functions(object: object): string[]; |
||||
|
||||
clone: <T>(object: T) => T; |
||||
export declare function extend<T extends object>(object: T): T; |
||||
export declare function extend<T extends object, U extends unknown[]>(object: T, ...sources: U): T & UnionToIntersection<NonNullable<U[number]>>; |
||||
|
||||
property: (path: any[] | string) => Function; |
||||
export declare function defaults(object: object, ...sources: any[]): object; |
||||
|
||||
propertyOf: (object: object) => Function; |
||||
export declare function clone<T>(object: T): T; |
||||
|
||||
isEqual: (value: any, other: any, customizer?: Function, thisArg?: any) => boolean; |
||||
export declare function property(path: any[] | string): Function; |
||||
|
||||
isMatch: (object: object, source: object, customizer?: Function, thisArg?: any) => boolean; |
||||
export declare function propertyOf(object: object): Function; |
||||
|
||||
isEmpty: (value: any[] | object | string | null | undefined | number) => boolean; |
||||
export declare function isEqual(value: any, other: any, customizer?: Function, thisArg?: any): boolean; |
||||
|
||||
isElement: (value: any) => boolean; |
||||
export declare function isMatch(object: object, source: object, customizer?: Function, thisArg?: any): boolean; |
||||
|
||||
isNumber: (value: any) => value is number; |
||||
export declare function isEmpty(value: any[] | object | string | null | undefined | number): boolean; |
||||
|
||||
isString: (value: any) => value is string; |
||||
export declare function isElement(value: any): boolean; |
||||
|
||||
isArray: <T>(value: T[] | any) => value is T[]; |
||||
export declare function isNumber(value: any): value is number; |
||||
|
||||
isObject: (value: any) => value is object; |
||||
export declare function isString(value: any): value is string; |
||||
|
||||
isPlainObject: (value: any) => value is object; |
||||
export declare function isArray<T>(value: T[] | any): value is T[]; |
||||
|
||||
isArguments: (value: any) => boolean; |
||||
export declare function isObject(value: any): value is object; |
||||
|
||||
isFunction: (value: any) => value is Function; |
||||
export declare function isPlainObject(value: any): value is object; |
||||
|
||||
isFinite: (value: any) => value is number; |
||||
export declare function isArguments(value: any): boolean; |
||||
|
||||
isBoolean: (value: any) => value is boolean; |
||||
export declare function isFunction(value: any): value is Function; |
||||
|
||||
isDate: (value: any) => value is Date; |
||||
export declare function isFinite(value: any): value is number; |
||||
|
||||
isRegExp: (value: any) => value is RegExp; |
||||
export declare function isBoolean(value: any): value is boolean; |
||||
|
||||
isError: (value: any) => value is Error; |
||||
export declare function isDate(value: any): value is Date; |
||||
|
||||
isNaN: (value: any) => value is number; |
||||
export declare function isRegExp(value: any): value is RegExp; |
||||
|
||||
isUndefined: (value: any) => value is undefined; |
||||
export declare function isError(value: any): value is Error; |
||||
|
||||
zipObject: (props: any[], values?: any[]) => object; |
||||
export declare function isNaN(value: any): value is number; |
||||
|
||||
cloneDeep: <T>(value: T) => T; |
||||
export declare function isUndefined(value: any): value is undefined; |
||||
|
||||
findKey: (object: object, predicate?: Function | object | string, thisArg?: any) => any; |
||||
export declare function zipObject(props: any[], values?: any[]): object; |
||||
|
||||
pick: (object: object, predicate?: Function | string | string[], thisArg?: any) => object; |
||||
export declare function cloneDeep<T>(value: T): T; |
||||
|
||||
omit: (object: object, predicate?: Function | string | string[], thisArg?: any) => object; |
||||
export declare function findKey(object: object, predicate?: Function | object | string, thisArg?: any): any; |
||||
|
||||
tap: (value: any, interceptor: Function, thisArg?: any) => any; |
||||
export declare function pick(object: object, predicate?: Function | string | string[], thisArg?: any): object; |
||||
|
||||
inherit: (sb: any, sp: any, overrides?: any) => any; |
||||
export declare function omit(object: object, predicate?: Function | string | string[], thisArg?: any): object; |
||||
|
||||
init: () => void; |
||||
export declare function tap(value: any, interceptor: Function, thisArg?: any): any; |
||||
|
||||
has: (obj: object, keys: string | string[]) => boolean; |
||||
export declare function inherit(sb: any, sp: any, overrides?: any): any; |
||||
|
||||
freeze: <T>(value: T) => T; |
||||
export declare function init(): void; |
||||
|
||||
isKey: (key: any) => key is (number | string); |
||||
export declare function has(obj: object, keys: string | string[]): boolean; |
||||
|
||||
isCapitalEqual: (a: string | null | undefined, b: string | null | undefined) => boolean; |
||||
export declare function freeze<T>(value: T): T; |
||||
|
||||
isWidthOrHeight: (w: number | string) => boolean; |
||||
export declare function isKey(key: any): key is (number | string); |
||||
|
||||
isNotNull: <T>(obj: T) => obj is NonNullable<T>; |
||||
export declare function isCapitalEqual(a: string | null | undefined, b: string | null | undefined): boolean; |
||||
|
||||
isNull: (obj: any) => obj is (undefined | null); |
||||
export declare function isWidthOrHeight(w: number | string): boolean; |
||||
|
||||
isEmptyArray: <T, U>(arr: T[] | U) => arr is T[] & { length: 0 }; |
||||
export declare function isNotNull<T>(obj: T): obj is NonNullable<T>; |
||||
|
||||
isNotEmptyArray: <T, U>(arr: T[] | U) => arr is [T, ...T[]]; |
||||
export declare function isNull(obj: any): obj is (undefined | null); |
||||
|
||||
isEmptyObject: (obj: any) => boolean; |
||||
export declare function isEmptyArray<T, U>(arr: T[] | U): arr is T[] & { length: 0 }; |
||||
|
||||
isNotEmptyObject: (obj: any) => obj is object; |
||||
export declare function isNotEmptyArray<T, U>(arr: T[] | U): arr is [T, ...T[]]; |
||||
|
||||
isWindow: (obj: any) => obj is Window; |
||||
export declare function isEmptyObject(obj: any): boolean; |
||||
|
||||
deepClone: <T>(obj: T) => T; |
||||
export declare function isNotEmptyObject(obj: any): obj is object; |
||||
|
||||
deepExtend: merge["deepExtend"]; |
||||
export declare function isWindow(obj: any): obj is Window; |
||||
|
||||
isDeepMatch: (object: any, attrs: any) => boolean; |
||||
export declare function deepClone<T>(obj: T): T; |
||||
|
||||
contains: (obj: any[], target: any, fromIndex?: number) => boolean; |
||||
export declare function deepExtend<TObject, TSource>(object: TObject, source: TSource): TObject & TSource; |
||||
|
||||
deepContains: (obj: any[], copy: any) => boolean; |
||||
export declare function deepExtend<TObject, TSource1, TSource2>(object: TObject, source1: TSource1, source2: TSource2): TObject & TSource1 & TSource2; |
||||
|
||||
deepIndexOf: (obj: any[], target: any) => number; |
||||
export declare function deepExtend<TObject, TSource1, TSource2>(object: TObject, source1: TSource1, source2: TSource2): TObject & TSource1 & TSource2; |
||||
|
||||
deepRemove: (obj: any[], target: any) => boolean; |
||||
export declare function deepExtend<TObject, TSource1, TSource2, TSource3>(object: TObject, source1: TSource1, source2: TSource2, source3: TSource3): TObject & TSource1 & TSource2 & TSource3; |
||||
|
||||
deepWithout: (obj: any[], target: any) => any[]; |
||||
export declare function deepExtend<TObject, TSource1, TSource2, TSource3, TSource4>(object: TObject, source1: TSource1, source2: TSource2, source3: TSource3, source4: TSource4): TObject & TSource1 & TSource2 & TSource3 & TSource4; |
||||
|
||||
deepUnique: (array: any[]) => any[]; |
||||
export declare function deepExtend(object: any, ...otherArgs: any[]): any; |
||||
|
||||
deepDiff: (object: any, other: any) => string[]; |
||||
export declare function isDeepMatch(object: any, attrs: any): boolean; |
||||
|
||||
uniqueId: (prefix?: string) => string; |
||||
export declare function contains(obj: any[], target: any, fromIndex?: number): boolean; |
||||
|
||||
result: (object: any, key: string) => any; |
||||
export declare function deepContains(obj: any[], copy: any): boolean; |
||||
|
||||
chain: (value: any) => any; |
||||
export declare function deepIndexOf(obj: any[], target: any): number; |
||||
|
||||
iteratee: (func?: Function, thisArg?: any) => Function; |
||||
export declare function deepRemove(obj: any[], target: any): boolean; |
||||
|
||||
unescape: (str?: string) => string; |
||||
export declare function deepWithout(obj: any[], target: any): any[]; |
||||
|
||||
bind: <T extends Function>(func: T, thisArg: any, ...partials: any) => T; |
||||
export declare function deepUnique(array: any[]): any[]; |
||||
|
||||
once: (func: Function) => Function; |
||||
export declare function deepDiff(object: any, other: any): string[]; |
||||
|
||||
partial: (func: Function, ...partials: any) => Function; |
||||
export declare function uniqueId(prefix?: string): string; |
||||
|
||||
debounce: <T extends Function>(func: T, wait?: number, options?: any) => T; |
||||
export declare function result(object: any, key: string): any; |
||||
|
||||
throttle: <T extends Function>(func: T, wait?: number, options?: any) => T; |
||||
export declare function chain(value: any): any; |
||||
|
||||
delay: (func: Function, wait: number, ...args: any[]) => number; |
||||
export declare function iteratee(func?: Function, thisArg?: any): Function; |
||||
|
||||
defer: (func: Function, ...args: any[]) => number; |
||||
export declare function unescape(str?: string): string; |
||||
|
||||
wrap: (value: any, wrapper: Function) => Function; |
||||
export declare function bind<T extends Function>(func: T, thisArg: any, ...partials: any): T; |
||||
|
||||
nextTick: (func?: Function) => Promise<any>; |
||||
export declare function once(func: Function): Function; |
||||
|
||||
random: (min?: number, max?: number, floating?: boolean) => number; |
||||
export declare function partial(func: Function, ...partials: any): Function; |
||||
|
||||
parseInt: (s: string | number) => number; |
||||
export declare function debounce<T extends Function>(func: T, wait?: number, options?: any): T; |
||||
|
||||
parseSafeInt: (s: string) => number; |
||||
export declare function throttle<T extends Function>(func: T, wait?: number, options?: any): T; |
||||
|
||||
parseFloat: (string: string) => number; |
||||
export declare function delay(func: Function, wait: number, ...args: any[]): number; |
||||
|
||||
isNaturalNumber: (value: string | number) => boolean; |
||||
export declare function defer(func: Function, ...args: any[]): number; |
||||
|
||||
isPositiveInteger: (value: string | number) => boolean; |
||||
export declare function wrap(value: any, wrapper: Function): Function; |
||||
|
||||
isNegativeInteger: (value: string | number) => boolean; |
||||
export declare function nextTick(func?: Function): Promise<any>; |
||||
|
||||
isInteger: (value: string | number) => boolean; |
||||
export declare function random(min?: number, max?: number, floating?: boolean): number; |
||||
|
||||
isNumeric: (value: string | number) => boolean; |
||||
export declare function parseInt(s: string | number): number; |
||||
|
||||
isFloat: (value: string | number) => boolean; |
||||
export declare function parseSafeInt(s: string): number; |
||||
|
||||
isOdd: (value: string | number) => boolean; |
||||
export declare function parseFloat(string: string): number; |
||||
|
||||
isEven: (value: string | number) => boolean; |
||||
export declare function isNaturalNumber(value: string | number): boolean; |
||||
|
||||
sum: (array: any[], iteratee?: Function, context?: any) => number; |
||||
export declare function isPositiveInteger(value: string | number): boolean; |
||||
|
||||
average: (array: any[], iteratee?: Function, context?: any) => number; |
||||
export declare function isNegativeInteger(value: string | number): boolean; |
||||
|
||||
trim: (string?: string, chars?: string) => string; |
||||
export declare function isInteger(value: string | number): boolean; |
||||
|
||||
toUpperCase: (string: string) => string; |
||||
export declare function isNumeric(value: string | number): boolean; |
||||
|
||||
toLowerCase: (string: string) => string; |
||||
export declare function isFloat(value: string | number): boolean; |
||||
|
||||
isEndWithBlank: (string: string) => boolean; |
||||
export declare function isOdd(value: string | number): boolean; |
||||
|
||||
isLiteral: (string: string) => boolean; |
||||
export declare function isEven(value: string | number): boolean; |
||||
|
||||
stripQuotes: (string: string) => string; |
||||
export declare function sum(array: any[], iteratee?: Function, context?: any): number; |
||||
|
||||
camelize: (string: string) => string; |
||||
export declare function average(array: any[], iteratee?: Function, context?: any): number; |
||||
|
||||
hyphenate: (string: string) => string; |
||||
export declare function trim(string?: string, chars?: string): string; |
||||
|
||||
isNotEmptyString: (string: any) => boolean; |
||||
export declare function toUpperCase(string: string): string; |
||||
|
||||
isEmptyString: (str: any) => str is ""; |
||||
export declare function toLowerCase(string: string): string; |
||||
|
||||
encrypt: (type: string, text: string, key: string) => string; |
||||
export declare function isEndWithBlank(string: string): boolean; |
||||
|
||||
escape: (string: string) => string; |
||||
export declare function isLiteral(string: string): boolean; |
||||
|
||||
leftPad: (val: string, size: number, ch: string) => string; |
||||
export declare function stripQuotes(string: string): string; |
||||
|
||||
format: (format: string, ...str: string[]) => string; |
||||
export declare function camelize(string: string): string; |
||||
|
||||
isLeapYear: (year: number) => boolean; |
||||
export declare function hyphenate(string: string): string; |
||||
|
||||
checkDateVoid: (YY: string | number, MM: string | number, DD: string | number, minDate: string, maxDate: string) => (number | string)[]; |
||||
export declare function isNotEmptyString(string: any): boolean; |
||||
|
||||
checkDateLegal: (str: string) => boolean; |
||||
export declare function isEmptyString(str: any): str is ""; |
||||
|
||||
parseDateTime: (str: string, fmt: string) => Date; |
||||
export declare function encrypt(type: string, text: string, key: string): string; |
||||
|
||||
getDate: (...args: (number | string)[]) => Date; |
||||
export declare function escape(string: string): string; |
||||
|
||||
getTime: (...args: any[]) => number; |
||||
export declare function leftPad(val: string, size: number, ch: string): string; |
||||
|
||||
/** |
||||
* 判断一个对象是不是promise |
||||
* @param obj 对象 |
||||
*/ |
||||
isPromise: (obj: any) => obj is Promise<any>; |
||||
} |
||||
export declare function format(format: string, ...str: string[]): string; |
||||
|
||||
type merge = { |
||||
deepExtend<TObject, TSource>(object: TObject, source: TSource): TObject & TSource; |
||||
export declare function isLeapYear(year: number): boolean; |
||||
|
||||
deepExtend<TObject, TSource1, TSource2>(object: TObject, source1: TSource1, source2: TSource2): TObject & TSource1 & TSource2; |
||||
export declare function checkDateVoid(YY: string | number, MM: string | number, DD: string | number, minDate: string, maxDate: string): (number | string)[]; |
||||
|
||||
deepExtend<TObject, TSource1, TSource2>(object: TObject, source1: TSource1, source2: TSource2): TObject & TSource1 & TSource2; |
||||
export declare function checkDateLegal(str: string): boolean; |
||||
|
||||
deepExtend<TObject, TSource1, TSource2, TSource3>(object: TObject, source1: TSource1, source2: TSource2, source3: TSource3): TObject & TSource1 & TSource2 & TSource3; |
||||
export declare function parseDateTime(str: string, fmt: string): Date; |
||||
|
||||
deepExtend<TObject, TSource1, TSource2, TSource3, TSource4>(object: TObject, source1: TSource1, source2: TSource2, source3: TSource3, source4: TSource4): TObject & TSource1 & TSource2 & TSource3 & TSource4; |
||||
export declare function getDate(...args: (number | string)[]): Date; |
||||
|
||||
deepExtend(object: any, ...otherArgs: any[]): any; |
||||
} |
||||
export declare function getTime(...args: any[]): number; |
||||
|
||||
type UnionToIntersection<Union> = ( |
||||
Union extends unknown |
||||
? (x: Union) => void |
||||
: never |
||||
) extends ((x: infer Intersection) => void) |
||||
? Intersection |
||||
: never; |
||||
/** |
||||
* 判断一个对象是不是promise |
||||
* @param obj 对象 |
||||
*/ |
||||
export declare function isPromise(obj: any): obj is Promise<any>; |
||||
|
@ -1,5 +1,6 @@
|
||||
export type _array = { |
||||
pushArray: (sArray: any[], array: any[]) => void; |
||||
pushDistinct: (sArray: any[], obj: any) => void; |
||||
pushDistinctArray: (sArray: any[], array: any[]) => void; |
||||
} |
||||
export declare function pushArray(sArray: any[], array: any[]): void; |
||||
|
||||
export declare function pushDistinct(sArray: any[], obj: any): void; |
||||
|
||||
export declare function pushDistinctArray(sArray: any[], array: any[]): void; |
||||
|
||||
|
@ -1,46 +1,43 @@
|
||||
export type _function = { |
||||
/** |
||||
* 创建唯一的名字 |
||||
* @param array 已有的名字集合 |
||||
* @param name 待生成的名字 |
||||
* @return 生成后的名字 |
||||
*/ |
||||
export declare function createDistinctName(array: any[], name: string): string; |
||||
|
||||
/** |
||||
* 创建唯一的名字 |
||||
* @param array 已有的名字集合 |
||||
* @param name 待生成的名字 |
||||
* @return 生成后的名字 |
||||
*/ |
||||
createDistinctName: (array: any[], name: string) => string; |
||||
/** |
||||
* 获取搜索结果 |
||||
* @param items 待搜索的数据 |
||||
* @param keyword 关键字 |
||||
* @param param 搜索哪个属性 |
||||
*/ |
||||
export declare function getSearchResult(items: any, keyword: any, param?: string): { find: any[], match: any[] }; |
||||
|
||||
/** |
||||
* 获取搜索结果 |
||||
* @param items 待搜索的数据 |
||||
* @param keyword 关键字 |
||||
* @param param 搜索哪个属性 |
||||
*/ |
||||
getSearchResult: (items: any, keyword: any, param?: string) => { find: any[], match: any[] }; |
||||
/** |
||||
* 获取编码后的url |
||||
* @param urlTemplate url模板 |
||||
* @param param 参数 |
||||
*/ |
||||
export declare function getEncodeURL(urlTemplate: string, param: any): string; |
||||
|
||||
/** |
||||
* 获取编码后的url |
||||
* @param urlTemplate url模板 |
||||
* @param param 参数 |
||||
*/ |
||||
getEncodeURL: (urlTemplate: string, param: any) => string; |
||||
/** |
||||
* 获取按GB2312排序的结果 |
||||
* @param items |
||||
* @param key |
||||
*/ |
||||
export declare function getSortedResult<T>(items: T[], key?: string | Function): T[]; |
||||
|
||||
/** |
||||
* 获取按GB2312排序的结果 |
||||
* @param items |
||||
* @param key |
||||
*/ |
||||
getSortedResult: <T>(items: T[], key?: string | Function) => T[]; |
||||
/** |
||||
* 在方法A执行之前执行方法B |
||||
* @param sFunc 方法A |
||||
* @param func 方法B |
||||
*/ |
||||
export declare function beforeFunc(sFunc: Function, func: Function): Function; |
||||
|
||||
/** |
||||
* 在方法A执行之前执行方法B |
||||
* @param sFunc 方法A |
||||
* @param func 方法B |
||||
*/ |
||||
beforeFunc: (sFunc: Function, func: Function) => Function; |
||||
|
||||
/** |
||||
* 在方法A执行之后执行方法B |
||||
* @param sFunc 方法A |
||||
* @param func 方法B |
||||
*/ |
||||
afterFunc: (sFunc: Function, func: Function) => Function; |
||||
} |
||||
/** |
||||
* 在方法A执行之后执行方法B |
||||
* @param sFunc 方法A |
||||
* @param func 方法B |
||||
*/ |
||||
export declare function afterFunc(sFunc: Function, func: Function): Function; |
||||
|
@ -1,10 +1,5 @@
|
||||
import { _array } from "./array"; |
||||
import { _string } from "./string"; |
||||
import { _number } from "./number"; |
||||
import { _function } from "./function"; |
||||
import { _Date, _date } from "./date"; |
||||
|
||||
export interface _func extends _array, _string, _number, _date { |
||||
Date: _Date; |
||||
Func: _function; |
||||
} |
||||
export * from "./array"; |
||||
export * from "./string"; |
||||
export * from "./number"; |
||||
export * from "./function"; |
||||
export * from "./date"; |
||||
|
@ -1,34 +1,31 @@
|
||||
export type _number = { |
||||
/** |
||||
* 加法函数,用来得到精确的加法结果 |
||||
* @param {Number} num 被加数 |
||||
* @param {Number} arg 加数 |
||||
* @return {Number} 两个数字相加后的结果 |
||||
*/ |
||||
export declare function add(num: number, arg: number): number; |
||||
|
||||
/** |
||||
* 加法函数,用来得到精确的加法结果 |
||||
* @param {Number} num 被加数 |
||||
* @param {Number} arg 加数 |
||||
* @return {Number} 两个数字相加后的结果 |
||||
*/ |
||||
add: (num: number, arg: number) => number; |
||||
/** |
||||
* 减法函数,用来得到精确的减法结果 |
||||
* @param {Number} num 被减数 |
||||
* @param {Number} arg 减数 |
||||
* @return {Number} 两个数字相减后的结果 |
||||
*/ |
||||
export declare function sub(num: number, arg: number): number; |
||||
|
||||
/** |
||||
* 减法函数,用来得到精确的减法结果 |
||||
* @param {Number} num 被减数 |
||||
* @param {Number} arg 减数 |
||||
* @return {Number} 两个数字相减后的结果 |
||||
*/ |
||||
sub: (num: number, arg: number) => number; |
||||
/** |
||||
* 乘法函数,用来得到精确的乘法结果 |
||||
* @param {Number} num 被乘数 |
||||
* @param {Number} arg 乘数 |
||||
* @return {Number} 两个数字相乘后的结果 |
||||
*/ |
||||
export declare function mul(num: number, arg: number): number; |
||||
|
||||
/** |
||||
* 乘法函数,用来得到精确的乘法结果 |
||||
* @param {Number} num 被乘数 |
||||
* @param {Number} arg 乘数 |
||||
* @return {Number} 两个数字相乘后的结果 |
||||
*/ |
||||
mul: (num: number, arg: number) => number; |
||||
|
||||
/** |
||||
* 除法函数,用来得到精确的除法结果 |
||||
* @param {Number} num 被除数 |
||||
* @param {Number} arg 除数 |
||||
* @return {Number} 两个数字相除后的结果 |
||||
*/ |
||||
div: (num: number, arg: number) => number; |
||||
} |
||||
/** |
||||
* 除法函数,用来得到精确的除法结果 |
||||
* @param {Number} num 被除数 |
||||
* @param {Number} arg 除数 |
||||
* @return {Number} 两个数字相除后的结果 |
||||
*/ |
||||
export declare function div(num: number, arg: number): number; |
||||
|
@ -1,59 +1,57 @@
|
||||
export type _string = { |
||||
|
||||
/** |
||||
* 判断字符串是否已指定的字符串开始 |
||||
* @param str source字符串 |
||||
* @param {String} startTag 指定的开始字符串 |
||||
* @return {Boolean} 如果字符串以指定字符串开始则返回true,否则返回false |
||||
*/ |
||||
startWith: (str: string, startTag: string) => boolean; |
||||
/** |
||||
* 判断字符串是否已指定的字符串开始 |
||||
* @param str source字符串 |
||||
* @param {String} startTag 指定的开始字符串 |
||||
* @return {Boolean} 如果字符串以指定字符串开始则返回true,否则返回false |
||||
*/ |
||||
export declare function startWith(str: string, startTag: string): boolean; |
||||
|
||||
/** |
||||
* 判断字符串是否以指定的字符串结束 |
||||
* @param str source字符串 |
||||
* @param {String} endTag 指定的字符串 |
||||
* @return {Boolean} 如果字符串以指定字符串结束则返回true,否则返回false |
||||
*/ |
||||
endWith: (str: string, endTag: string) => boolean; |
||||
/** |
||||
* 判断字符串是否以指定的字符串结束 |
||||
* @deprecated 废弃了,用原生的endsWith吧 |
||||
* @param str source字符串 |
||||
* @param {String} endTag 指定的字符串 |
||||
* @return {Boolean} 如果字符串以指定字符串结束则返回true,否则返回false |
||||
*/ |
||||
export declare function endWith(str: string, endTag: string): boolean; |
||||
|
||||
/** |
||||
* 获取url中指定名字的参数 |
||||
* @param str source字符串 |
||||
* @param {String} name 参数的名字 |
||||
* @return {String} 参数的值 |
||||
*/ |
||||
getQuery: (str: string, name: string) => string|null; |
||||
/** |
||||
* 获取url中指定名字的参数 |
||||
* @param str source字符串 |
||||
* @param {String} name 参数的名字 |
||||
* @return {String} 参数的值 |
||||
*/ |
||||
export declare function getQuery(str: string, name: string): string | null; |
||||
|
||||
/** |
||||
* 给url加上给定的参数 |
||||
* @param str source字符串 |
||||
* @param {Object} paras 参数对象,是一个键值对对象 |
||||
* @return {String} 添加了给定参数的url |
||||
*/ |
||||
appendQuery: (str: string, paras: {[key: string]: string|number}) => string; |
||||
/** |
||||
* 给url加上给定的参数 |
||||
* @param str source字符串 |
||||
* @param {Object} paras 参数对象,是一个键值对对象 |
||||
* @return {String} 添加了给定参数的url |
||||
*/ |
||||
export declare function appendQuery(str: string, paras: { [key: string]: string | number }): string; |
||||
|
||||
/** |
||||
* 将所有符合第一个字符串所表示的字符串替换成为第二个字符串 |
||||
* @param str source字符串 |
||||
* @param {String} s1 要替换的字符串的正则表达式 |
||||
* @param {String} s2 替换的结果字符串 |
||||
* @returns {String} 替换后的字符串 |
||||
*/ |
||||
replaceAll: (str: string, s1: string, s2: string) => string; |
||||
/** |
||||
* 将所有符合第一个字符串所表示的字符串替换成为第二个字符串 |
||||
* @param str source字符串 |
||||
* @param {String} s1 要替换的字符串的正则表达式 |
||||
* @param {String} s2 替换的结果字符串 |
||||
* @returns {String} 替换后的字符串 |
||||
*/ |
||||
export declare function replaceAll(str: string, s1: string, s2: string): string; |
||||
|
||||
/** |
||||
* 总是让字符串以指定的字符开头 |
||||
* @param str source字符串 |
||||
* @param {String} start 指定的字符 |
||||
* @returns {String} 以指定字符开头的字符串 |
||||
*/ |
||||
perfectStart: (str: string, start: string) => string; |
||||
/** |
||||
* 总是让字符串以指定的字符开头 |
||||
* @param str source字符串 |
||||
* @param {String} start 指定的字符 |
||||
* @returns {String} 以指定字符开头的字符串 |
||||
*/ |
||||
export declare function perfectStart(str: string, start: string): string; |
||||
|
||||
/** |
||||
* 获取字符串中某字符串的所有项位置数组 |
||||
* @param str source字符串 |
||||
* @param {String} sub 子字符串 |
||||
* @return {Number[]} 子字符串在父字符串中出现的所有位置组成的数组 |
||||
*/ |
||||
allIndexOf: (str: string, sub: string) => number[]; |
||||
} |
||||
/** |
||||
* 获取字符串中某字符串的所有项位置数组 |
||||
* @param str source字符串 |
||||
* @param {String} sub 子字符串 |
||||
* @return {Number[]} 子字符串在父字符串中出现的所有位置组成的数组 |
||||
*/ |
||||
export declare function allIndexOf(str: string, sub: string): number[]; |
||||
|
@ -1,8 +1,3 @@
|
||||
export type _addI18n = (v: string | object) => string; |
||||
export declare function addI18n(v: string | object): string; |
||||
|
||||
export type _i18nText = (key: string, ..._args: any[]) => string; |
||||
|
||||
export type _i18n = { |
||||
addI18n: _addI18n; |
||||
i18nText: _i18nText; |
||||
} |
||||
export declare function i18nText(key: string, ..._args: any[]): string; |
||||
|
@ -1,47 +1,42 @@
|
||||
type _module = (xtype: string, cls: any) => void; |
||||
type _constant = <T>(xtype: string, cls: T) => (() => T); |
||||
type _model = (xtype: string, cls: any) => Function; |
||||
type _store = (xtype: string, cls: any) => Function; |
||||
type _service = (xtype: string, cls: any) => Function; |
||||
type _provider = (xtype: string, cls: any) => Function; |
||||
|
||||
interface _modules { |
||||
getModule: (type: string) => any; |
||||
getAllModules: () => any; |
||||
export declare function module(xtype: string, cls: any): void; |
||||
|
||||
export declare function constant<T>(xtype: string, cls: T): (() => T); |
||||
|
||||
export declare function model(xtype: string, cls: any): Function; |
||||
|
||||
export declare function store(xtype: string, cls: any): Function; |
||||
|
||||
export declare function service(xtype: string, cls: any): Function; |
||||
|
||||
export declare function provider(xtype: string, cls: any): Function; |
||||
|
||||
export declare namespace Modules { |
||||
function getModule(type: string): any; |
||||
|
||||
function getAllModules(): any; |
||||
} |
||||
|
||||
interface _constants { |
||||
getConstant: (type: string) => any; |
||||
export declare namespace Constants { |
||||
function getConstant(type: string): any; |
||||
} |
||||
|
||||
interface _models { |
||||
getModel: (type: string, options?: any) => any; |
||||
export declare namespace Models { |
||||
function getModel(type: string, options?: any): any; |
||||
} |
||||
|
||||
interface _stores { |
||||
getStore: (type: string, options?: any) => any; |
||||
export declare namespace Stores { |
||||
function getStore(type: string, options?: any): any; |
||||
} |
||||
|
||||
interface _providers { |
||||
getProvider: (type: string, options?: any) => any; |
||||
export declare namespace Providers { |
||||
function getProvider(type: string, options?: any): any; |
||||
} |
||||
|
||||
interface _services { |
||||
getService: (type: string, options?: any) => any; |
||||
export declare namespace Services { |
||||
function getService(type: string, options?: any): any; |
||||
} |
||||
|
||||
|
||||
export type _inject = { |
||||
module: _module; |
||||
constant: _constant; |
||||
model: _model; |
||||
store: _store; |
||||
provider: _provider; |
||||
service: _service; |
||||
Modules: _modules; |
||||
Constants: _constants; |
||||
Models: _models; |
||||
Stores: _stores; |
||||
Providers: _providers; |
||||
Services: _services; |
||||
} |
||||
// export declare function shortcut(xtype: string, cls: any): void
|
||||
|
||||
// export declare function component(xtype: string, cls: any): void
|
||||
|
@ -0,0 +1,12 @@
|
||||
import { OB } from "../ob"; |
||||
|
||||
export declare class StyleLoaderManager extends OB { |
||||
|
||||
loadStyle(name: string, styleString: string): void |
||||
|
||||
get(name: string): HTMLElement |
||||
|
||||
has(name: string): boolean |
||||
|
||||
removeStyle(name: string): void |
||||
} |
@ -1,6 +1,5 @@
|
||||
import { Widget } from "../../../core/widget"; |
||||
import { Widget } from "../../widget"; |
||||
|
||||
export type _DetectElementResize = { |
||||
addResizeListener: (widget: Widget, fn: Function) => Function |
||||
removeResizeListener: (widget: Widget, fn?: Function) => void |
||||
} |
||||
export declare function addResizeListener(widget: Widget, fn: Function): Function |
||||
|
||||
export declare function removeResizeListener(widget: Widget, fn?: Function): void |
||||
|
@ -1,58 +1,125 @@
|
||||
import { Widget } from "../../../core/widget"; |
||||
|
||||
|
||||
export type _DOM = { |
||||
ready: (fn: Function) => void |
||||
|
||||
// TODO: 引入jquery描述后处理
|
||||
patchProps: (fromElement: any, toElement: any) => void |
||||
|
||||
hang: (doms: Widget[]) => DocumentFragment |
||||
isExist: (obj: Widget) => boolean |
||||
preloadImages: (srcArray: string[], onload: Function) => void |
||||
getTextSizeWidth: (text: string, fontSize?: number) => number |
||||
getTextSizeHeight: (text: string, fontSize?: number) => number |
||||
getScrollWidth: () => number |
||||
getImage: (param: string, fillStyle?: string, backgroundColor?: string) => { width: number, height: number, src: string, style: string, param: string } |
||||
|
||||
isColor: (color: string) => boolean |
||||
isRGBColor: (color: string) => boolean |
||||
isHexColor: (color: string) => boolean |
||||
isDarkColor: (hex: string) => boolean |
||||
getContrastColor: (color: string) => string |
||||
rgb2hex: (rgbColour: string) => string |
||||
rgb2json: (rgbColour: string) => { r: number, g: number, b: number } |
||||
rgba2json: (rgbColour: string) => { r: number, g: number, b: number, a:number } |
||||
json2rgb: (rgb: { r: number, g: number, b: number }) => string |
||||
json2rgba: (rgba: { r: number, g: number, b: number, a:number }) => string |
||||
int2hex: (strNum: number) => string |
||||
hex2rgb: (color: string) => string |
||||
rgba2rgb: (rgbColor: string, bgColor?:string) => string |
||||
|
||||
getLeftPosition: (combo: Widget, popup: Widget, extraWidth?: number) => { left: number} |
||||
getInnerLeftPosition: (combo: Widget, popup?: Widget, extraWidth?: number) => { left: number} |
||||
getRightPosition: (combo: Widget, popup?: Widget, extraWidth?: number) => { left: number} |
||||
getInnerRightPosition: (combo: Widget, popup: Widget, extraWidth?: number) => { left: number} |
||||
getTopPosition: (combo: Widget, popup: Widget, extraHeight?: number) => { top: number} |
||||
getBottomPosition: (combo: Widget, popup?: Widget, extraHeight?: number) => { top: number} |
||||
isLeftSpaceEnough: (combo: Widget, popup: Widget, extraWidth?: number) => boolean |
||||
isInnerLeftSpaceEnough: (combo: Widget, popup: Widget, extraWidth?: number) => boolean |
||||
isRightSpaceEnough: (combo: Widget, popup: Widget, extraWidth?: number) => boolean |
||||
isInnerRightSpaceEnough: (combo: Widget, popup: Widget, extraWidth?: number) => boolean |
||||
isTopSpaceEnough: (combo: Widget, popup?: Widget, extraHeight?: number) => boolean |
||||
isBottomSpaceEnough: (combo: Widget, popup?: Widget, extraHeight?: number) => boolean |
||||
isRightSpaceLarger: (combo: Widget) => boolean |
||||
isBottomSpaceLarger: (combo: Widget) => boolean |
||||
getLeftAlignPosition: (combo: Widget, popup: Widget, extraWidth?: number) => { left: number} |
||||
getLeftAdaptPosition: (combo: Widget, popup: Widget, extraWidth?: number) => { left: number} |
||||
getRightAlignPosition: (combo: Widget, popup: Widget, extraWidth?: number) => { left: number} |
||||
getRightAdaptPosition: (combo: Widget, popup: Widget, extraWidth?: number) => { left: number} |
||||
getTopAlignPosition: (combo: Widget, popup: Widget, extraHeight?:number, needAdaptHeight?:boolean) => { top: number, adaptHeight?: number} |
||||
getTopAdaptPosition: (combo: Widget, popup: Widget, extraHeight?:number, needAdaptHeight?:boolean) => { top: number, adaptHeight?: number} |
||||
getBottomAlignPosition: (combo: Widget, popup: Widget, extraHeight?:number, needAdaptHeight?:boolean) => { top: number, adaptHeight?: number} |
||||
getBottomAdaptPosition: (combo: Widget, popup: Widget, extraHeight?:number, needAdaptHeight?:boolean) => { top: number, adaptHeight?: number} |
||||
getCenterAdaptPosition: (combo: Widget, popup: Widget) => { left: number } |
||||
getMiddleAdaptPosition: (combo: Widget, popup: Widget) => { top: number } |
||||
getComboPositionByDirections: (combo: Widget, popup: Widget, extraWidth?:number, extraHeight?:number, needAdaptHeight?:number, directions?:number) => { dir: string, left?: number, top?: number, change?: string} |
||||
getComboPosition: (combo: Widget, popup: Widget, extraWidth?:number, extraHeight?:number, needAdaptHeight?:number, directions?:number) => { dir: string, left?: number, top?: number, change?: string} |
||||
} |
||||
import { Widget } from "../../widget"; |
||||
|
||||
export declare function ready(fn: Function): void |
||||
|
||||
export declare function patchProps(fromElement: any, toElement: any): void |
||||
|
||||
export declare function hang(doms: Widget[]): DocumentFragment |
||||
|
||||
export declare function isExist(obj: Widget): boolean |
||||
|
||||
export declare function preloadImages(srcArray: string[], onload: Function): void |
||||
|
||||
export declare function getTextSizeWidth(text: string, fontSize?: number): number |
||||
|
||||
export declare function getTextSizeHeight(text: string, fontSize?: number): number |
||||
|
||||
export declare function getScrollWidth(): number |
||||
|
||||
export declare function getImage(param: string, fillStyle?: string, backgroundColor?: string): { |
||||
width: number, |
||||
height: number, |
||||
src: string, |
||||
style: string, |
||||
param: string |
||||
} |
||||
|
||||
export declare function isColor(color: string): boolean |
||||
|
||||
export declare function isRGBColor(color: string): boolean |
||||
|
||||
export declare function isHexColor(color: string): boolean |
||||
|
||||
export declare function isDarkColor(hex: string): boolean |
||||
|
||||
export declare function getContrastColor(color: string): string |
||||
|
||||
export declare function rgb2hex(rgbColour: string): string |
||||
|
||||
export declare function rgb2json(rgbColour: string): { r: number, g: number, b: number } |
||||
|
||||
export declare function rgba2json(rgbColour: string): { r: number, g: number, b: number, a: number } |
||||
|
||||
export declare function json2rgb(rgb: { r: number, g: number, b: number }): string |
||||
|
||||
export declare function json2rgba(rgba: { r: number, g: number, b: number, a: number }): string |
||||
|
||||
export declare function int2hex(strNum: number): string |
||||
|
||||
export declare function hex2rgb(color: string): string |
||||
|
||||
export declare function rgba2rgb(rgbColor: string, bgColor?: string): string |
||||
|
||||
export declare function getLeftPosition(combo: Widget, popup: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getInnerLeftPosition(combo: Widget, popup?: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getRightPosition(combo: Widget, popup?: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getInnerRightPosition(combo: Widget, popup: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getTopPosition(combo: Widget, popup: Widget, extraHeight?: number): { top: number } |
||||
|
||||
export declare function getBottomPosition(combo: Widget, popup?: Widget, extraHeight?: number): { top: number } |
||||
|
||||
export declare function isLeftSpaceEnough(combo: Widget, popup: Widget, extraWidth?: number): boolean |
||||
|
||||
export declare function isInnerLeftSpaceEnough(combo: Widget, popup: Widget, extraWidth?: number): boolean |
||||
|
||||
export declare function isRightSpaceEnough(combo: Widget, popup: Widget, extraWidth?: number): boolean |
||||
|
||||
export declare function isInnerRightSpaceEnough(combo: Widget, popup: Widget, extraWidth?: number): boolean |
||||
|
||||
export declare function isTopSpaceEnough(combo: Widget, popup?: Widget, extraHeight?: number): boolean |
||||
|
||||
export declare function isBottomSpaceEnough(combo: Widget, popup?: Widget, extraHeight?: number): boolean |
||||
|
||||
export declare function isRightSpaceLarger(combo: Widget): boolean |
||||
|
||||
export declare function isBottomSpaceLarger(combo: Widget): boolean |
||||
|
||||
export declare function getLeftAlignPosition(combo: Widget, popup: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getLeftAdaptPosition(combo: Widget, popup: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getRightAlignPosition(combo: Widget, popup: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getRightAdaptPosition(combo: Widget, popup: Widget, extraWidth?: number): { left: number } |
||||
|
||||
export declare function getTopAlignPosition(combo: Widget, popup: Widget, extraHeight?: number, needAdaptHeight?: boolean): { |
||||
top: number, |
||||
adaptHeight?: number |
||||
} |
||||
|
||||
export declare function getTopAdaptPosition(combo: Widget, popup: Widget, extraHeight?: number, needAdaptHeight?: boolean): { |
||||
top: number, |
||||
adaptHeight?: number |
||||
} |
||||
|
||||
export declare function getBottomAlignPosition(combo: Widget, popup: Widget, extraHeight?: number, needAdaptHeight?: boolean): { |
||||
top: number, |
||||
adaptHeight?: number |
||||
} |
||||
|
||||
export declare function getBottomAdaptPosition(combo: Widget, popup: Widget, extraHeight?: number, needAdaptHeight?: boolean): { |
||||
top: number, |
||||
adaptHeight?: number |
||||
} |
||||
|
||||
export declare function getCenterAdaptPosition(combo: Widget, popup: Widget): { left: number } |
||||
|
||||
export declare function getMiddleAdaptPosition(combo: Widget, popup: Widget): { top: number } |
||||
|
||||
export declare function getComboPositionByDirections(combo: Widget, popup: Widget, extraWidth?: number, extraHeight?: number, needAdaptHeight?: number, directions?: number): { |
||||
dir: string, |
||||
left?: number, |
||||
top?: number, |
||||
change?: string |
||||
} |
||||
|
||||
export declare function getComboPosition(combo: Widget, popup: Widget, extraWidth?: number, extraHeight?: number, needAdaptHeight?: number, directions?: number): { |
||||
dir: string, |
||||
left?: number, |
||||
top?: number, |
||||
change?: string |
||||
} |
||||
|
@ -1,5 +1,5 @@
|
||||
export type _EventListener = { |
||||
listen: (target: EventTarget, eventType: string, callback: Function) => { remove: () => void } |
||||
capture: (target: EventTarget, eventType: string, callback: Function) => { remove: () => void } |
||||
registerDefault: () => void |
||||
} |
||||
export declare function listen(target: EventTarget, eventType: string, callback: Function): { remove: () => void } |
||||
|
||||
export declare function capture(target: EventTarget, eventType: string, callback: Function): { remove: () => void } |
||||
|
||||
export declare function registerDefault(): void |
||||
|
@ -1,13 +1,21 @@
|
||||
export type _function = { |
||||
isIE: () => boolean; |
||||
getIEVersion: () => number; |
||||
isEdge: () => boolean; |
||||
isChrome: () => boolean; |
||||
isFireFox: () => boolean; |
||||
isOpera: () => boolean; |
||||
isSafari: () => boolean; |
||||
isMac: () => boolean; |
||||
isWindows: () => boolean; |
||||
isSupportCss3: (style: any) => boolean; |
||||
getSafariVersion: () => number; |
||||
} |
||||
export declare function isIE(): boolean; |
||||
|
||||
export declare function getIEVersion(): number; |
||||
|
||||
export declare function isEdge(): boolean; |
||||
|
||||
export declare function isChrome(): boolean; |
||||
|
||||
export declare function isFireFox(): boolean; |
||||
|
||||
export declare function isOpera(): boolean; |
||||
|
||||
export declare function isSafari(): boolean; |
||||
|
||||
export declare function isMac(): boolean; |
||||
|
||||
export declare function isWindows(): boolean; |
||||
|
||||
export declare function isSupportCss3(style: any): boolean; |
||||
|
||||
export declare function getSafariVersion(): number; |
||||
|
@ -1,11 +1,5 @@
|
||||
import { _function } from "./function"; |
||||
import { _EventListener } from './eventListener'; |
||||
import { _DetectElementResize } from './detectElementResize'; |
||||
import { _load } from './load'; |
||||
import { _DOM } from './dom'; |
||||
|
||||
export interface _web extends _function, _load { |
||||
EventListener: _EventListener, |
||||
ResizeDetector: _DetectElementResize, |
||||
DOM: _DOM |
||||
} |
||||
export * from "./function"; |
||||
export * as EventListener from "./eventListener"; |
||||
export * as ResizeDetector from "./detectElementResize"; |
||||
export * from "./load"; |
||||
export * as DOM from "./dom"; |
||||
|
@ -1,3 +1 @@
|
||||
export type _load = { |
||||
$import: (src: string, ext?: string, must?: boolean) => void |
||||
} |
||||
export declare function $import(src: string, ext?: string, must?: boolean): void |
||||
|
@ -1,4 +1,3 @@
|
||||
export type _aes = { |
||||
aesEncrypt: (text: string, key:string) => string |
||||
aesDecrypt: (text: string, key:string) => string |
||||
} |
||||
export declare function aesEncrypt(text: string, key: string): string |
||||
|
||||
export declare function aesDecrypt(text: string, key: string): string |
||||
|
@ -1,4 +1,11 @@
|
||||
export type _aspect = { |
||||
before: (target: object, methodName: string, advice: Function) => { advice: Function, index: number, remove: () => void} |
||||
after: (target: object, methodName: string, advice: Function) => { advice: Function, index: number, remove: () => void} |
||||
} |
||||
export declare function before(target: object, methodName: string, advice: Function): { |
||||
advice: Function, |
||||
index: number, |
||||
remove: () => void |
||||
} |
||||
|
||||
export declare function after(target: object, methodName: string, advice: Function): { |
||||
advice: Function, |
||||
index: number, |
||||
remove: () => void |
||||
} |
||||
|
@ -1,4 +1,3 @@
|
||||
export type _base64 = { |
||||
encode: (input: string) => string |
||||
decode: (text: string) => string |
||||
} |
||||
export declare function encode(input: string): string |
||||
|
||||
export declare function decode(text: string): string |
||||
|
@ -1,14 +1,23 @@
|
||||
export type _cache = { |
||||
setUsername: (username: string) => void |
||||
getUsername: () => string |
||||
_getKeyPrefix: () => string |
||||
_generateKey: (key?: string) => void |
||||
getItem: (key?: string) => string |
||||
setItem: (key: string, value: any) => void |
||||
removeItem: (key: string) => void |
||||
clear: () => void |
||||
keys: () => string[] |
||||
addCookie: (name: string, value: any, path?: string, expiresHours?: number) => void |
||||
getCookie: (name: string) => string |
||||
deleteCookie: (name: string, path?: string) => void |
||||
} |
||||
export declare function setUsername(username: string): void |
||||
|
||||
export declare function getUsername(): string |
||||
|
||||
export declare function _getKeyPrefix(): string |
||||
|
||||
export declare function _generateKey(key?: string): void |
||||
|
||||
export declare function getItem(key?: string): string |
||||
|
||||
export declare function setItem(key: string, value: any): void |
||||
|
||||
export declare function removeItem(key: string): void |
||||
|
||||
export declare function clear(): void |
||||
|
||||
export declare function keys(): string[] |
||||
|
||||
export declare function addCookie(name: string, value: any, path?: string, expiresHours?: number): void |
||||
|
||||
export declare function getCookie(name: string): string |
||||
|
||||
export declare function deleteCookie(name: string, path?: string): void |
||||
|
@ -1,3 +1 @@
|
||||
export type _chinesePY = { |
||||
makeFirstPY: (str: string, options?: { ignoreMulti?: boolean, splitChar?: string }) => string |
||||
} |
||||
export declare function makeFirstPY(str: string, options?: { ignoreMulti?: boolean, splitChar?: string }): string |
||||
|
@ -1,34 +1,16 @@
|
||||
import { _aes } from './aes'; |
||||
import { _aspect } from './aspect'; |
||||
import { _base64 } from './base64'; |
||||
import { _cache } from './cache'; |
||||
import { _chinesePY } from './chinesePY'; |
||||
import { MouseMoveTracker } from './events/mousemovetracker'; |
||||
import { WheelHandler } from './events/wheelhandler'; |
||||
import { CellSizeAndPositionManager, ScalingCellSizeAndPositionManager } from './cellSizeAndPositionManager'; |
||||
import { Heap } from './heap'; |
||||
import { LinkedHashMap } from './linkedHashMap'; |
||||
import { LRU } from './lru'; |
||||
import { PrefixIntervalTree } from './prefixIntervalTree'; |
||||
import { Queue } from './queue'; |
||||
import { Section } from './sectionManager'; |
||||
import { Tree } from './tree'; |
||||
import { Vector, Region } from './vector'; |
||||
|
||||
export interface _utils extends _aes, _base64, _chinesePY { |
||||
aspect: _aspect |
||||
Cache: _cache |
||||
MouseMoveTracker: typeof MouseMoveTracker |
||||
WheelHandler: typeof WheelHandler |
||||
CellSizeAndPositionManager: typeof CellSizeAndPositionManager |
||||
ScalingCellSizeAndPositionManager: typeof ScalingCellSizeAndPositionManager |
||||
Heap: typeof Heap |
||||
LinkedHashMap: typeof LinkedHashMap |
||||
LRU: typeof LRU |
||||
PrefixIntervalTree: typeof PrefixIntervalTree |
||||
Queue: typeof Queue |
||||
Section: typeof Section |
||||
Tree: typeof Tree |
||||
Vector: typeof Vector |
||||
Region: typeof Region |
||||
} |
||||
export * from "./aes"; |
||||
export * as aspect from "./aspect"; |
||||
export * from "./base64"; |
||||
export * as Cache from "./cache"; |
||||
export * from "./chinesePY"; |
||||
export * from "./events/mousemovetracker"; |
||||
export * from "./events/wheelhandler"; |
||||
export * from "./cellSizeAndPositionManager"; |
||||
export * from "./heap"; |
||||
export * from "./linkedHashMap"; |
||||
export * from "./lru"; |
||||
export * from "./prefixIntervalTree"; |
||||
export * from "./queue"; |
||||
export * from "./sectionManager"; |
||||
export * from "./tree"; |
||||
export * from "./vector"; |
||||
|
@ -1,133 +1,131 @@
|
||||
export interface _var { |
||||
MAX: number; |
||||
MIN: number; |
||||
EVENT_RESPONSE_TIME: number; |
||||
zIndex_layer: number; |
||||
zIndex_popover: number; |
||||
zIndex_popup: number; |
||||
zIndex_masker: number; |
||||
zIndex_tip: number; |
||||
emptyStr: string; |
||||
emptyFn: Function; |
||||
empty: null, |
||||
Key: { |
||||
48: string; |
||||
49: string; |
||||
50: string; |
||||
51: string; |
||||
52: string; |
||||
53: string; |
||||
54: string; |
||||
55: string; |
||||
56: string; |
||||
57: string; |
||||
65: string; |
||||
66: string; |
||||
67: string; |
||||
68: string; |
||||
69: string; |
||||
70: string; |
||||
71: string; |
||||
72: string; |
||||
73: string; |
||||
74: string; |
||||
75: string; |
||||
76: string; |
||||
77: string; |
||||
78: string; |
||||
79: string; |
||||
80: string; |
||||
81: string; |
||||
82: string; |
||||
83: string; |
||||
84: string; |
||||
85: string; |
||||
86: string; |
||||
87: string; |
||||
88: string; |
||||
89: string; |
||||
90: string; |
||||
96: string; |
||||
97: string; |
||||
98: string; |
||||
99: string; |
||||
100: string; |
||||
101: string; |
||||
102: string; |
||||
103: string; |
||||
104: string; |
||||
105: string; |
||||
106: string; |
||||
107: string; |
||||
109: string; |
||||
110: string; |
||||
111: string; |
||||
}, |
||||
KeyCode: { |
||||
BACKSPACE: number; |
||||
COMMA: number; |
||||
DELETE: number; |
||||
DOWN: number; |
||||
END: number; |
||||
ENTER: number; |
||||
ESCAPE: number; |
||||
HOME: number; |
||||
LEFT: number; |
||||
NUMPAD_ADD: number; |
||||
NUMPAD_DECIMAL: number; |
||||
NUMPAD_DIVIDE: number; |
||||
NUMPAD_ENTER: number; |
||||
NUMPAD_MULTIPLY: number; |
||||
NUMPAD_SUBTRACT: number; |
||||
PAGE_DOWN: number; |
||||
PAGE_UP: number; |
||||
PERIOD: number; |
||||
RIGHT: number; |
||||
SPACE: number; |
||||
TAB: number; |
||||
UP: number; |
||||
}, |
||||
Status: { |
||||
SUCCESS: number; |
||||
WRONG: number; |
||||
START: number; |
||||
END: number; |
||||
WAITING: number; |
||||
READY: number; |
||||
RUNNING: number; |
||||
OUTOFBOUNDS: number; |
||||
NULL: number; |
||||
}, |
||||
Direction: { |
||||
Top: string; |
||||
Bottom: string; |
||||
Left: string; |
||||
Right: string; |
||||
Custom: string; |
||||
}, |
||||
Axis: { |
||||
Vertical: string; |
||||
Horizontal: string; |
||||
}, |
||||
Selection: { |
||||
Default: number; |
||||
None: number; |
||||
Single: number; |
||||
Multi: number; |
||||
All: number; |
||||
}, |
||||
HorizontalAlign: { |
||||
Left: string; |
||||
Right: string; |
||||
Center: string; |
||||
Stretch: string; |
||||
}, |
||||
VerticalAlign: { |
||||
Middle: string; |
||||
Top: string; |
||||
Bottom: string; |
||||
Stretch: string; |
||||
}, |
||||
StartOfWeek: number; |
||||
BlankSplitChar: string; |
||||
} |
||||
export declare const MAX: number; |
||||
export declare const MIN: number; |
||||
export declare const EVENT_RESPONSE_TIME: number; |
||||
export declare const zIndex_layer: number; |
||||
export declare const zIndex_popover: number; |
||||
export declare const zIndex_popup: number; |
||||
export declare const zIndex_masker: number; |
||||
export declare const zIndex_tip: number; |
||||
export declare const emptyStr: string; |
||||
export declare const emptyFn: Function; |
||||
export declare const empty: null; |
||||
export declare const Key: { |
||||
48: string; |
||||
49: string; |
||||
50: string; |
||||
51: string; |
||||
52: string; |
||||
53: string; |
||||
54: string; |
||||
55: string; |
||||
56: string; |
||||
57: string; |
||||
65: string; |
||||
66: string; |
||||
67: string; |
||||
68: string; |
||||
69: string; |
||||
70: string; |
||||
71: string; |
||||
72: string; |
||||
73: string; |
||||
74: string; |
||||
75: string; |
||||
76: string; |
||||
77: string; |
||||
78: string; |
||||
79: string; |
||||
80: string; |
||||
81: string; |
||||
82: string; |
||||
83: string; |
||||
84: string; |
||||
85: string; |
||||
86: string; |
||||
87: string; |
||||
88: string; |
||||
89: string; |
||||
90: string; |
||||
96: string; |
||||
97: string; |
||||
98: string; |
||||
99: string; |
||||
100: string; |
||||
101: string; |
||||
102: string; |
||||
103: string; |
||||
104: string; |
||||
105: string; |
||||
106: string; |
||||
107: string; |
||||
109: string; |
||||
110: string; |
||||
111: string; |
||||
}; |
||||
export declare const KeyCode: { |
||||
BACKSPACE: number; |
||||
COMMA: number; |
||||
DELETE: number; |
||||
DOWN: number; |
||||
END: number; |
||||
ENTER: number; |
||||
ESCAPE: number; |
||||
HOME: number; |
||||
LEFT: number; |
||||
NUMPAD_ADD: number; |
||||
NUMPAD_DECIMAL: number; |
||||
NUMPAD_DIVIDE: number; |
||||
NUMPAD_ENTER: number; |
||||
NUMPAD_MULTIPLY: number; |
||||
NUMPAD_SUBTRACT: number; |
||||
PAGE_DOWN: number; |
||||
PAGE_UP: number; |
||||
PERIOD: number; |
||||
RIGHT: number; |
||||
SPACE: number; |
||||
TAB: number; |
||||
UP: number; |
||||
}; |
||||
export declare const Status: { |
||||
SUCCESS: number; |
||||
WRONG: number; |
||||
START: number; |
||||
END: number; |
||||
WAITING: number; |
||||
READY: number; |
||||
RUNNING: number; |
||||
OUTOFBOUNDS: number; |
||||
NULL: number; |
||||
}; |
||||
export declare const Direction: { |
||||
Top: string; |
||||
Bottom: string; |
||||
Left: string; |
||||
Right: string; |
||||
Custom: string; |
||||
}; |
||||
export declare const Axis: { |
||||
Vertical: string; |
||||
Horizontal: string; |
||||
}; |
||||
export declare const Selection: { |
||||
Default: number; |
||||
None: number; |
||||
Single: number; |
||||
Multi: number; |
||||
All: number; |
||||
}; |
||||
export declare const HorizontalAlign: { |
||||
Left: string; |
||||
Right: string; |
||||
Center: string; |
||||
Stretch: string; |
||||
}; |
||||
export declare const VerticalAlign: { |
||||
Middle: string; |
||||
Top: string; |
||||
Bottom: string; |
||||
Stretch: string; |
||||
}; |
||||
export declare const StartOfWeek: number; |
||||
export declare const BlankSplitChar: string; |
||||
|
@ -0,0 +1,18 @@
|
||||
declare namespace Fix { |
||||
function define(model: any): any |
||||
|
||||
function watch(model: any, expOrFn: string | Function, cb: Function, options: Obj): Function[] |
||||
|
||||
function set(target: any, key: string, val: any): void |
||||
|
||||
function del(target: any, key: string): void |
||||
|
||||
function toJSON(model: any): any |
||||
|
||||
function mixin(xtype: string, mixin: any): void |
||||
|
||||
class Model { |
||||
|
||||
} |
||||
|
||||
} |
@ -0,0 +1,597 @@
|
||||
// import { Combo } from "./base/combination/combo";
|
||||
// import { ButtonGroup } from "./base/combination/group.button";
|
||||
// import { Tab } from "./base/combination/tab";
|
||||
// import { Pane } from "./base/pane";
|
||||
// import { BasicButton } from "./base/single/button/button.basic";
|
||||
// import { NodeButton } from "./base/single/button/button.node";
|
||||
// import { Button } from "./base/single/button/buttons/button";
|
||||
// import { TextButton } from "./base/single/button/buttons/button.text";
|
||||
// import { IconTextItem } from "./base/single/button/listitem/icontextitem";
|
||||
// import { Editor } from "./base/single/editor/editor";
|
||||
// import { Iframe } from "./base/single/iframe/iframe";
|
||||
// import { Checkbox } from "./base/single/input/checkbox";
|
||||
// import { Input } from "./base/single/input/input";
|
||||
// import { AbstractLabel } from "./base/single/label/abstract.label";
|
||||
// import { Label } from "./base/single/label/label";
|
||||
// import { Single } from "./base/single/single";
|
||||
// import { Text } from "./base/single/text";
|
||||
// import { Trigger } from "./base/single/trigger/trigger";
|
||||
// import { IconChangeButton } from "./case/button/icon/icon.change";
|
||||
// import { MultiSelectItem } from "./case/button/item.multiselect";
|
||||
// import { BubbleCombo } from "./case/combo/bubblecombo/combo.bubble";
|
||||
// import { TextValueCombo } from "./case/combo/combo.textvalue";
|
||||
// import { TextValueComboPopup } from "./case/combo/popup.textvalue";
|
||||
// import { SmallTextValueCombo } from "./case/combo/combo.textvaluesmall";
|
||||
// import { SearchTextValueCombo } from "./case/combo/searchtextvaluecombo/combo.searchtextvalue";
|
||||
// import { SignEditor } from "./case/editor/editor.sign";
|
||||
// import { StateEditor } from "./case/editor/editor.state";
|
||||
// import { AllValueMultiTextValueCombo } from "./component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo";
|
||||
// import { Form } from "./component/form/form";
|
||||
// import { AbstractTreeValueChooser } from "./component/treevaluechooser/abstract.treevaluechooser";
|
||||
// import { AbstractListTreeValueChooser } from "./component/treevaluechooser/abstract.treevaluechooser.list";
|
||||
// import { Action, ActionFactory } from "./core/action/action";
|
||||
// import { ShowAction } from "./core/action/action.show";
|
||||
// import { _base } from "./core/base";
|
||||
// import { Behavior, BehaviorFactory } from "./core/behavior/behavior";
|
||||
// import { HighlightBehavior } from "./core/behavior/behavior.highlight";
|
||||
// import { RedMarkBehavior } from "./core/behavior/behavior.redmark";
|
||||
// import * as decorator from "./core/decorator/decorator";
|
||||
// import { _func } from "./core/func";
|
||||
// import { _i18n } from "./core/i18n";
|
||||
// import { _Plugin } from "./core/plugin";
|
||||
// import { _var } from "./core/var";
|
||||
// import { OB } from "./core/ob";
|
||||
// import { Widget } from "./core/widget";
|
||||
// import { _inject } from "./core/inject";
|
||||
// import { Layout } from "./core/wrapper/layout";
|
||||
// import { AbsoluteLayout } from "./core/wrapper/layout/layout.absolute";
|
||||
// import { HTapeLayout, VTapeLayout } from "./core/wrapper/layout/layout.tape";
|
||||
// import { HorizontalFillLayout } from "./core/wrapper/layout/fill/fill.horizontal";
|
||||
// import { VerticalFillLayout } from "./core/wrapper/layout/fill/fill.vertical";
|
||||
// import { VerticalLayout } from "./core/wrapper/layout/layout.vertical";
|
||||
// import { DefaultLayout } from "./core/wrapper/layout/layout.default";
|
||||
// import { DownListCombo } from "./widget/downlist/combo.downlist";
|
||||
// import { DownListPopup } from "./widget/downlist/popup.downlist";
|
||||
// import { Icon } from "./base/single/icon/icon";
|
||||
// import { LeftVerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.leftvertical";
|
||||
// import {
|
||||
// LeftRightVerticalAdaptLayout,
|
||||
// RightVerticalAdaptLayout,
|
||||
// } from "./core/wrapper/layout/adapt/adapt.leftrightvertical";
|
||||
// import { IconTextIconItem } from "./base/single/button/listitem/icontexticonitem";
|
||||
// import { HorizontalAutoLayout } from "./core/wrapper/layout/adapt/auto.horizontal";
|
||||
// import { InlineVerticalAdaptLayout } from "./core/wrapper/layout/adapt/inline.vertical";
|
||||
// import { TableAdaptLayout } from "./core/wrapper/layout/adapt/adapt.table";
|
||||
// import { IconButton } from "./base/single/button/buttons/button.icon";
|
||||
// import { TextEditor } from "./widget/editor/editor.text";
|
||||
// import { IconLabel } from "./base/single/label/icon.label";
|
||||
// import { Popover, BarPopover } from "./base/layer/layer.popover";
|
||||
// import { IconCombo } from "./case/combo/iconcombo/combo.icon";
|
||||
// import { DynamicDateCombo } from "./widget/dynamicdate/dynamicdate.combo";
|
||||
// import { CustomTree } from "./base/tree/customtree";
|
||||
// import { ButtonTree } from "./base/combination/tree.button";
|
||||
// import { IconArrowNode } from "./case/button/node/node.icon.arrow";
|
||||
// import { MidTreeLeafItem } from "./case/button/treeitem/item.mid.treeleaf";
|
||||
// import { FirstTreeLeafItem } from "./case/button/treeitem/item.first.treeleaf";
|
||||
// import { LastTreeLeafItem } from "./case/button/treeitem/item.last.treeleaf";
|
||||
// import { SmallTextEditor } from "./widget/editor/editor.text.small";
|
||||
// import { MultifileEditor } from "./widget/editor/editor.multifile";
|
||||
// import { AbsoluteCenterLayout } from "./core/wrapper/layout/adapt/absolute.center";
|
||||
// import { HorizontalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.horizontal";
|
||||
// import { FloatLeftLayout, FloatRightLayout } from "./core/wrapper/layout/layout.flow";
|
||||
// import { CenterAdaptLayout } from "./core/wrapper/layout/adapt/adapt.center";
|
||||
// import { VerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.vertical";
|
||||
// import { MultiSelectInsertCombo } from "./widget/multiselect/multiselect.insert.combo";
|
||||
// import { MultiSelectCombo } from "./widget/multiselect/multiselect.combo";
|
||||
// import { SearchEditor } from "./widget/editor/editor.search";
|
||||
// import { MultiLayerSingleLevelTree } from "./widget/multilayersingletree/multilayersingletree.leveltree";
|
||||
// import { SimpleColorChooser } from "./case/colorchooser/colorchooser.simple";
|
||||
// import { ColorChooser } from "./case/colorchooser/colorchooser";
|
||||
// import { A } from "./base/a/a";
|
||||
// import { Html } from "./base/single/html/html";
|
||||
// import { Switcher } from "./base/combination/switcher";
|
||||
// import { Expander } from "./base/combination/expander";
|
||||
// import { Loader } from "./base/combination/loader";
|
||||
// import { ListPane } from "./case/layer/pane.list";
|
||||
// import { MultiPopupView } from "./case/layer/layer.multipopup";
|
||||
// import { MultiSelectBar } from "./case/toolbar/toolbar.multiselect";
|
||||
// import { SelectList } from "./case/list/list.select";
|
||||
// import { AbstractAllValueChooser } from "./component/allvaluechooser/abstract.allvaluechooser";
|
||||
// import { AllValueChooserCombo } from "./component/allvaluechooser/combo.allvaluechooser";
|
||||
// import { TextAreaEditor } from "./base/single/editor/editor.textarea";
|
||||
// import { SingleSelectItem } from "./case/button/item.singleselect";
|
||||
// import { DynamicDateTimeCombo } from "./widget/dynamicdatetime/dynamicdatetime.combo";
|
||||
// import { MultiTreeCombo } from "./widget/multitree/multi.tree.combo";
|
||||
// import { CenterLayout } from "./core/wrapper/layout/middle/middle.center";
|
||||
// import { VirtualGroup } from "./base/combination/group.virtual";
|
||||
// import { GridLayout } from "./core/wrapper/layout/layout.grid";
|
||||
// import { TriggerIconButton } from "./case/button/icon/icon.trigger";
|
||||
// import { Searcher } from "./base/combination/searcher";
|
||||
// import { ListTreeValueChooserInsertCombo } from "./component/treevaluechooser/combo.listtreevaluechooser";
|
||||
// import { TreeValueChooserCombo } from "./component/treevaluechooser/combo.treevaluechooser";
|
||||
// import { TreeValueChooserInsertCombo } from "./component/treevaluechooser/combo.treevaluechooser.insert";
|
||||
// import { Radio } from "./base/single/input/radio/radio";
|
||||
// import { MultiLayerSelectTreePopup } from "./widget/multilayerselecttree/multilayerselecttree.popup";
|
||||
// import { MultiLayerSingleTreePopup } from "./widget/multilayersingletree/multilayersingletree.popup";
|
||||
// import { MultiLayerDownListPopup } from "./widget/multilayerdownlist/multilayerdownlist.popup";
|
||||
// import { TreeView } from "./base/tree/ztree/treeview";
|
||||
// import { MultiTreePopup } from "./widget/multitree/multi.tree.popup";
|
||||
// import { SingleSelectRadioItem } from "./case/button/item.singleselect.radio";
|
||||
// import { SingleSelectInsertCombo } from "./widget/singleselect/singleselect.insert.combo";
|
||||
// import { SingleSelectCombo } from "./widget/singleselect/singleselect.combo";
|
||||
// import { CardLayout } from "./core/wrapper/layout/layout.card";
|
||||
// import { DynamicYearMonthCombo } from "./widget/yearmonth/combo.yearmonth";
|
||||
// import { TimeCombo } from "./widget/time/time.combo";
|
||||
// import { ListTreeView } from "./base/tree/ztree/list/listtreeview";
|
||||
// import { ListAsyncTree } from "./base/tree/ztree/list/listasynctree";
|
||||
// import { AsyncTree } from "./base/tree/ztree/asynctree";
|
||||
// import { MultiLayerSingleTreeCombo } from "./widget/multilayersingletree/multilayersingletree.combo";
|
||||
// import { MultiLayerSelectTreeCombo } from "./widget/multilayerselecttree/multilayerselecttree.combo";
|
||||
// import { MultiLayerDownListCombo } from "./widget/multilayerdownlist/multilayerdownlist.combo";
|
||||
// import { MultiTreeListCombo } from "./widget/multitree/multi.tree.list.combo";
|
||||
// import { MultiTreeInsertCombo } from "./widget/multitree/multi.tree.insert.combo";
|
||||
// import { TextValueDownListCombo } from "./widget/textvaluedownlistcombo/combo.textvaluedownlist";
|
||||
// import { Switch } from "./case/button/switch";
|
||||
// import { HorizontalLayout } from "./core/wrapper/layout/layout.horizontal";
|
||||
// import { ShelterEditor } from "./case/editor/editor.shelter";
|
||||
// import { TextTrigger } from "./case/trigger/trigger.text";
|
||||
// import { SelectTextTrigger } from "./case/trigger/trigger.text.select";
|
||||
// import { DateInterval } from "./widget/timeinterval/dateinterval";
|
||||
// import { DynamicDatePane } from "./widget/datepane/datepane";
|
||||
// import { AllCountPager } from "./case/pager/pager.all.count";
|
||||
// import { DirectionPager } from "./case/pager/pager.direction";
|
||||
// import { PopupView } from "./base/layer/layer.popup";
|
||||
// import { BubblePopupView, BubblePopupBarView, TextBubblePopupBarView } from "./case/combo/bubblecombo/popup.bubble";
|
||||
// import { ArrowTreeGroupNodeCheckbox } from "./case/checkbox/check.arrownode";
|
||||
// import { NumberInterval } from "./widget/numberinterval/numberinterval";
|
||||
// import { DynamicYearQuarterCombo } from "./widget/yearquarter/combo.yearquarter";
|
||||
// import { DynamicYearCombo } from "./widget/year/combo.year";
|
||||
// import { DynamicYearPopup } from "./widget/year/popup.year";
|
||||
// import { IntervalSlider } from "./widget/intervalslider/intervalslider";
|
||||
// import { MultiSelectInsertList } from "./widget/multiselectlist/multiselectlist.insert";
|
||||
// import { YearMonthInterval } from "./widget/yearmonthinterval/yearmonthinterval";
|
||||
// import { NumberEditor } from "./widget/numbereditor/numbereditor";
|
||||
// import { TextValueCheckCombo } from "./case/combo/textvaluecheckcombo/combo.textvaluecheck";
|
||||
// import { Segment } from "./case/segment/segment";
|
||||
// import { LinearSegment } from "./case/linersegment/linear.segment";
|
||||
// import { Img } from "./base/single/img/img";
|
||||
// import { EditorIconCheckCombo } from "./case/combo/editoriconcheckcombo/combo.editiconcheck";
|
||||
// import { IconTextValueCombo } from "./case/combo/icontextvaluecombo/combo.icontextvalue";
|
||||
// import { ListView } from "./base/list/listview";
|
||||
// import { VirtualList } from "./base/list/virtuallist";
|
||||
// import { VirtualGroupList } from "./base/list/virtualgrouplist";
|
||||
// import { FloatCenterLayout } from "./core/wrapper/layout/middle/middle.float.center";
|
||||
// import { _msg } from "./base/foundation/message";
|
||||
// import { _web } from "./core/platform/web";
|
||||
// import { DynamicYearMonthPopup } from "./widget/yearmonth/popup.yearmonth";
|
||||
// import { _utils } from "./core/utils";
|
||||
// import { Controller } from "./core/controller/controller";
|
||||
// import { LayerController } from "./core/controller/controller.layer";
|
||||
// import { DateCalendarPopup } from "./widget/date/calendar/popup.calendar.date";
|
||||
// import { Tree, Node } from "./core/utils/tree";
|
||||
// import { TextNode } from "./base/single/button/node/textnode";
|
||||
// import { TextValueCheckComboPopup } from "./case/combo/textvaluecheckcombo/popup.textvaluecheck";
|
||||
// import { ImageButton } from "./base/single/button/buttons/button.image";
|
||||
// import { History, Router } from "./router/router";
|
||||
// import { DateTimeCombo } from "./widget/datetime/datetime.combo";
|
||||
// import { FloatHorizontalLayout } from "./core/wrapper/layout/adapt/float.horizontal";
|
||||
// import { AdaptiveLayout } from "./core/wrapper/layout/layout.adaptive";
|
||||
// import { HexColorChooserPopup } from "./case/colorchooser/colorchooser.popup.hex";
|
||||
// import { BlankIconTextItem } from "./base/single/button/listitem/blankicontextitem";
|
||||
// import { Broadcasts, Layers } from "./base/base";
|
||||
// import { BroadcastController } from "./core/controller/controller.broadcast";
|
||||
// import { Pager } from "./base/pager/pager";
|
||||
// import { TimeInterval } from "./widget/timeinterval/timeinterval";
|
||||
// import { DynamicDateTimePane } from "./widget/datetimepane/datetimepane";
|
||||
// import { SingleSelectInsertList } from "./widget/singleselect/singleselectlist.insert";
|
||||
// import { MultiSelectTree } from "./widget/multiselecttree/multiselecttree";
|
||||
// import { HtmlLabel } from "./base/single/label/html.label";
|
||||
// import { TreeValueChooserPane } from "./component/treevaluechooser/pane.treevaluechooser";
|
||||
// import { TdLayout } from "./core/wrapper/layout/layout.td";
|
||||
// import { MultiLayerSelectLevelTree } from "./widget/multilayerselecttree/multilayerselecttree.leveltree";
|
||||
// import { SelectTreeExpander } from "./widget/selecttree/selecttree.expander";
|
||||
// import { DownListGroupItem } from "./widget/downlist/item.downlistgroup";
|
||||
// import { VerticalStickyLayout } from "./core/wrapper/layout/sticky/sticky.vertical";
|
||||
// import { HorizontalStickyLayout } from "./core/wrapper/layout/sticky/sticky.horizontal";
|
||||
// import { TableLayout } from "./core/wrapper/layout/layout.table";
|
||||
// import "./shims-tsx";
|
||||
// import { Workers } from "./core/worker/workers";
|
||||
//
|
||||
//
|
||||
// export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils {
|
||||
// OB: typeof OB;
|
||||
// Plugin: _Plugin;
|
||||
// Widget: typeof Widget;
|
||||
// Single: typeof Single;
|
||||
// BasicButton: typeof BasicButton;
|
||||
// NodeButton: typeof NodeButton;
|
||||
// Checkbox: typeof Checkbox;
|
||||
// Button: typeof Button;
|
||||
// TextButton: typeof TextButton;
|
||||
// IconChangeButton: typeof IconChangeButton;
|
||||
// Trigger: typeof Trigger;
|
||||
// Action: typeof Action;
|
||||
// ActionFactory: typeof ActionFactory;
|
||||
// ShowAction: typeof ShowAction;
|
||||
// Controller: typeof Controller;
|
||||
// Layers: Layers;
|
||||
// LayerController: typeof LayerController;
|
||||
// Broadcasts: Broadcasts;
|
||||
// BroadcastController: typeof BroadcastController;
|
||||
// Behavior: typeof Behavior;
|
||||
// BehaviorFactory: typeof BehaviorFactory;
|
||||
// HighlightBehavior: typeof HighlightBehavior;
|
||||
// RedMarkBehavior: typeof RedMarkBehavior;
|
||||
// Pane: typeof Pane;
|
||||
// Tab: typeof Tab;
|
||||
// ButtonGroup: typeof ButtonGroup;
|
||||
// Combo: typeof Combo;
|
||||
// TextValueCombo: typeof TextValueCombo;
|
||||
// TextValueComboPopup: typeof TextValueComboPopup;
|
||||
// SmallTextValueCombo: typeof SmallTextValueCombo;
|
||||
// BubbleCombo: typeof BubbleCombo;
|
||||
// AllValueMultiTextValueCombo: typeof AllValueMultiTextValueCombo;
|
||||
// Form: typeof Form;
|
||||
// IconTextItem: typeof IconTextItem;
|
||||
// MultiSelectItem: typeof MultiSelectItem;
|
||||
// AbstractLabel: typeof AbstractLabel;
|
||||
// Label: typeof Label;
|
||||
// Text: typeof Text;
|
||||
// Editor: typeof Editor;
|
||||
// SignEditor: typeof SignEditor;
|
||||
// StateEditor: typeof StateEditor;
|
||||
// Layout: typeof Layout;
|
||||
// HTapeLayout: typeof HTapeLayout;
|
||||
// VTapeLayout: typeof VTapeLayout;
|
||||
// AbstractTreeValueChooser: typeof AbstractTreeValueChooser;
|
||||
// AbstractListTreeValueChooser: typeof AbstractListTreeValueChooser;
|
||||
// ListTreeValueChooserInsertCombo: typeof ListTreeValueChooserInsertCombo;
|
||||
// TreeValueChooserCombo: typeof TreeValueChooserCombo;
|
||||
// TreeValueChooserInsertCombo: typeof TreeValueChooserInsertCombo;
|
||||
// MultiLayerSelectTreePopup: typeof MultiLayerSelectTreePopup;
|
||||
// MultiLayerSingleTreePopup: typeof MultiLayerSingleTreePopup;
|
||||
// MultiLayerDownListPopup: typeof MultiLayerDownListPopup;
|
||||
// TreeView: typeof TreeView;
|
||||
// ListTreeView: typeof ListTreeView;
|
||||
// ListAsyncTree: typeof ListAsyncTree;
|
||||
// AsyncTree: typeof AsyncTree;
|
||||
// MultiLayerSingleTreeCombo: typeof MultiLayerSingleTreeCombo;
|
||||
// MultiLayerSelectTreeCombo: typeof MultiLayerSelectTreeCombo;
|
||||
// MultiLayerDownListCombo: typeof MultiLayerDownListCombo;
|
||||
// MultiTreeListCombo: typeof MultiTreeListCombo;
|
||||
// MultiTreeInsertCombo: typeof MultiTreeInsertCombo;
|
||||
// Decorators: typeof decorator;
|
||||
// DownListCombo: typeof DownListCombo;
|
||||
// DownListPopup: typeof DownListPopup;
|
||||
// Iframe: typeof Iframe;
|
||||
// AbsoluteLayout: typeof AbsoluteLayout;
|
||||
// HorizontalFillLayout: typeof HorizontalFillLayout;
|
||||
// VerticalFillLayout: typeof VerticalFillLayout;
|
||||
// VerticalLayout: typeof VerticalLayout;
|
||||
// DefaultLayout: typeof DefaultLayout;
|
||||
// Input: typeof Input;
|
||||
// SearchTextValueCombo: typeof SearchTextValueCombo;
|
||||
// Icon: typeof Icon;
|
||||
// LeftVerticalAdaptLayout: typeof LeftVerticalAdaptLayout;
|
||||
// LeftRightVerticalAdaptLayout: typeof LeftRightVerticalAdaptLayout;
|
||||
// IconTextIconItem: typeof IconTextIconItem;
|
||||
// HorizontalAutoLayout: typeof HorizontalAutoLayout;
|
||||
// InlineVerticalAdaptLayout: typeof InlineVerticalAdaptLayout;
|
||||
// RightVerticalAdaptLayout: typeof RightVerticalAdaptLayout;
|
||||
// TableAdaptLayout: typeof TableAdaptLayout;
|
||||
// AbsoluteCenterLayout: typeof AbsoluteCenterLayout;
|
||||
// HorizontalAdaptLayout: typeof HorizontalAdaptLayout;
|
||||
// FloatLeftLayout: typeof FloatLeftLayout;
|
||||
// FloatRightLayout: typeof FloatRightLayout;
|
||||
// CenterAdaptLayout: typeof CenterAdaptLayout;
|
||||
// VerticalAdaptLayout: typeof VerticalAdaptLayout;
|
||||
// IconButton: typeof IconButton;
|
||||
// TriggerIconButton: typeof TriggerIconButton;
|
||||
// Searcher: typeof Searcher;
|
||||
// TextEditor: typeof TextEditor;
|
||||
// Radio: typeof Radio;
|
||||
// A: typeof A;
|
||||
// Html: typeof Html;
|
||||
// Switcher: typeof Switcher;
|
||||
// Expander: typeof Expander;
|
||||
// Loader: typeof Loader;
|
||||
// ListPane: typeof ListPane;
|
||||
// MultiPopupView: typeof MultiPopupView;
|
||||
// MultiSelectBar: typeof MultiSelectBar;
|
||||
// SelectList: typeof SelectList;
|
||||
// IconLabel: typeof IconLabel;
|
||||
// Popover: typeof Popover;
|
||||
// BarPopover: typeof BarPopover;
|
||||
// IconCombo: typeof IconCombo;
|
||||
// DynamicDateCombo: typeof DynamicDateCombo;
|
||||
// CustomTree: typeof CustomTree;
|
||||
// ButtonTree: typeof ButtonTree;
|
||||
// IconArrowNode: typeof IconArrowNode;
|
||||
// MidTreeLeafItem: typeof MidTreeLeafItem;
|
||||
// FirstTreeLeafItem: typeof FirstTreeLeafItem;
|
||||
// LastTreeLeafItem: typeof LastTreeLeafItem;
|
||||
// SmallTextEditor: typeof SmallTextEditor;
|
||||
// MultifileEditor: typeof MultifileEditor;
|
||||
// MultiSelectInsertCombo: typeof MultiSelectInsertCombo;
|
||||
// MultiSelectCombo: typeof MultiSelectCombo;
|
||||
// SearchEditor: typeof SearchEditor;
|
||||
// MultiLayerSingleLevelTree: typeof MultiLayerSingleLevelTree;
|
||||
// SimpleColorChooser: typeof SimpleColorChooser;
|
||||
// ColorChooser: typeof ColorChooser;
|
||||
// AbstractAllValueChooser: typeof AbstractAllValueChooser;
|
||||
// AllValueChooserCombo: typeof AllValueChooserCombo;
|
||||
// TextAreaEditor: typeof TextAreaEditor;
|
||||
// SingleSelectItem: typeof SingleSelectItem;
|
||||
// DynamicDateTimeCombo: typeof DynamicDateTimeCombo;
|
||||
// MultiTreeCombo: typeof MultiTreeCombo;
|
||||
// CenterLayout: typeof CenterLayout;
|
||||
// VirtualGroup: typeof VirtualGroup;
|
||||
// GridLayout: typeof GridLayout;
|
||||
// MultiTreePopup: typeof MultiTreePopup;
|
||||
// SingleSelectRadioItem: typeof SingleSelectRadioItem;
|
||||
// SingleSelectInsertCombo: typeof SingleSelectInsertCombo;
|
||||
// SingleSelectCombo: typeof SingleSelectCombo;
|
||||
// CardLayout: typeof CardLayout;
|
||||
// DynamicYearMonthCombo: typeof DynamicYearMonthCombo;
|
||||
// TimeCombo: typeof TimeCombo;
|
||||
// TextValueDownListCombo: typeof TextValueDownListCombo;
|
||||
// Switch: typeof Switch;
|
||||
// HorizontalLayout: typeof HorizontalLayout;
|
||||
// ShelterEditor: typeof ShelterEditor;
|
||||
// TextTrigger: typeof TextTrigger;
|
||||
// SelectTextTrigger: typeof SelectTextTrigger;
|
||||
// DateInterval: typeof DateInterval;
|
||||
// DynamicDatePane: typeof DynamicDatePane;
|
||||
// AllCountPager: typeof AllCountPager;
|
||||
// DirectionPager: typeof DirectionPager;
|
||||
// Pager: typeof Pager;
|
||||
// PopupView: typeof PopupView;
|
||||
// BubblePopupView: typeof BubblePopupView;
|
||||
// BubblePopupBarView: typeof BubblePopupBarView;
|
||||
// TextBubblePopupBarView: typeof TextBubblePopupBarView;
|
||||
// ArrowTreeGroupNodeCheckbox: typeof ArrowTreeGroupNodeCheckbox;
|
||||
// NumberInterval: typeof NumberInterval;
|
||||
// DynamicYearQuarterCombo: typeof DynamicYearQuarterCombo;
|
||||
// DynamicYearCombo: typeof DynamicYearCombo;
|
||||
// DynamicYearPopup: typeof DynamicYearPopup;
|
||||
// IntervalSlider: typeof IntervalSlider;
|
||||
// MultiSelectInsertList: typeof MultiSelectInsertList;
|
||||
// YearMonthInterval: typeof YearMonthInterval;
|
||||
// TextValueCheckCombo: typeof TextValueCheckCombo;
|
||||
// NumberEditor: typeof NumberEditor;
|
||||
// Segment: typeof Segment;
|
||||
// LinearSegment: typeof LinearSegment;
|
||||
// Img: typeof Img;
|
||||
// EditorIconCheckCombo: typeof EditorIconCheckCombo;
|
||||
// IconTextValueCombo: typeof IconTextValueCombo;
|
||||
// ListView: typeof ListView;
|
||||
// VirtualList: typeof VirtualList;
|
||||
// VirtualGroupList: typeof VirtualGroupList;
|
||||
// FloatCenterLayout: typeof FloatCenterLayout;
|
||||
// Msg: _msg;
|
||||
// DynamicYearMonthPopup: typeof DynamicYearMonthPopup;
|
||||
// DateCalendarPopup: typeof DateCalendarPopup;
|
||||
// TextNode: typeof TextNode;
|
||||
// TextValueCheckComboPopup: typeof TextValueCheckComboPopup;
|
||||
// ImageButton: typeof ImageButton;
|
||||
// Router: typeof Router;
|
||||
// history: History,
|
||||
// DateTimeCombo: typeof DateTimeCombo;
|
||||
// FloatHorizontalLayout: typeof FloatHorizontalLayout;
|
||||
// AdaptiveLayout: typeof AdaptiveLayout;
|
||||
// HexColorChooserPopup: typeof HexColorChooserPopup;
|
||||
// BlankIconTextItem: typeof BlankIconTextItem;
|
||||
// TimeInterval: typeof TimeInterval;
|
||||
// DynamicDateTimePane: typeof DynamicDateTimePane;
|
||||
// SingleSelectInsertList: typeof SingleSelectInsertList;
|
||||
// MultiSelectTree: typeof MultiSelectTree;
|
||||
// HtmlLabel: typeof HtmlLabel;
|
||||
// TreeValueChooserPane: typeof TreeValueChooserPane;
|
||||
// TdLayout: typeof TdLayout;
|
||||
// MultiLayerSelectLevelTree: typeof MultiLayerSelectLevelTree;
|
||||
// SelectTreeExpander: typeof SelectTreeExpander;
|
||||
// DownListGroupItem: typeof DownListGroupItem;
|
||||
// VerticalStickyLayout: typeof VerticalStickyLayout;
|
||||
// HorizontalStickyLayout: typeof HorizontalStickyLayout;
|
||||
// TableLayout: typeof TableLayout;
|
||||
// Workers: typeof Workers;
|
||||
// }
|
||||
//
|
||||
// export default {
|
||||
// Decorators: decorator,
|
||||
// Workers,
|
||||
// };
|
||||
// export {
|
||||
// OB,
|
||||
// Widget,
|
||||
// Single,
|
||||
// BasicButton,
|
||||
// Checkbox,
|
||||
// Icon,
|
||||
// LeftVerticalAdaptLayout,
|
||||
// LeftRightVerticalAdaptLayout,
|
||||
// SearchTextValueCombo,
|
||||
// Input,
|
||||
// IconTextItem,
|
||||
// AllValueMultiTextValueCombo,
|
||||
// IconTextIconItem,
|
||||
// Layout,
|
||||
// HorizontalAutoLayout,
|
||||
// InlineVerticalAdaptLayout,
|
||||
// RightVerticalAdaptLayout,
|
||||
// TableAdaptLayout,
|
||||
// AbsoluteCenterLayout,
|
||||
// HorizontalAdaptLayout,
|
||||
// FloatLeftLayout,
|
||||
// FloatRightLayout,
|
||||
// HorizontalFillLayout,
|
||||
// VerticalFillLayout,
|
||||
// VerticalLayout,
|
||||
// AbsoluteLayout,
|
||||
// DefaultLayout,
|
||||
// HTapeLayout,
|
||||
// CenterAdaptLayout,
|
||||
// VTapeLayout,
|
||||
// VerticalAdaptLayout,
|
||||
// IconButton,
|
||||
// Trigger,
|
||||
// TriggerIconButton,
|
||||
// Action,
|
||||
// ActionFactory,
|
||||
// ShowAction,
|
||||
// Controller,
|
||||
// LayerController,
|
||||
// BroadcastController,
|
||||
// Behavior,
|
||||
// BehaviorFactory,
|
||||
// RedMarkBehavior,
|
||||
// HighlightBehavior,
|
||||
// Searcher,
|
||||
// AbstractLabel,
|
||||
// Label,
|
||||
// TextButton,
|
||||
// DownListCombo,
|
||||
// DownListPopup,
|
||||
// IconChangeButton,
|
||||
// Button,
|
||||
// TextEditor,
|
||||
// A,
|
||||
// Html,
|
||||
// Switcher,
|
||||
// Expander,
|
||||
// BubbleCombo,
|
||||
// Loader,
|
||||
// ListPane,
|
||||
// MultiPopupView,
|
||||
// MultiSelectBar,
|
||||
// SelectList,
|
||||
// TextValueCombo,
|
||||
// TextValueComboPopup,
|
||||
// SmallTextValueCombo,
|
||||
// Editor,
|
||||
// IconLabel,
|
||||
// Popover,
|
||||
// BarPopover,
|
||||
// Tab,
|
||||
// AbstractTreeValueChooser,
|
||||
// AbstractListTreeValueChooser,
|
||||
// ListTreeValueChooserInsertCombo,
|
||||
// TreeValueChooserCombo,
|
||||
// TreeValueChooserInsertCombo,
|
||||
// MultiLayerSelectTreePopup,
|
||||
// MultiLayerSingleTreePopup,
|
||||
// MultiLayerDownListPopup,
|
||||
// TreeView,
|
||||
// ListTreeView,
|
||||
// ListAsyncTree,
|
||||
// AsyncTree,
|
||||
// MultiLayerSingleTreeCombo,
|
||||
// MultiLayerSelectTreeCombo,
|
||||
// MultiLayerDownListCombo,
|
||||
// MultiTreeListCombo,
|
||||
// MultiTreeInsertCombo,
|
||||
// Combo,
|
||||
// IconCombo,
|
||||
// DynamicDateCombo,
|
||||
// Radio,
|
||||
// MultiSelectItem,
|
||||
// CustomTree,
|
||||
// ButtonGroup,
|
||||
// ButtonTree,
|
||||
// NodeButton,
|
||||
// IconArrowNode,
|
||||
// MidTreeLeafItem,
|
||||
// FirstTreeLeafItem,
|
||||
// LastTreeLeafItem,
|
||||
// SmallTextEditor,
|
||||
// MultifileEditor,
|
||||
// SignEditor,
|
||||
// StateEditor,
|
||||
// MultiSelectInsertCombo,
|
||||
// MultiSelectCombo,
|
||||
// SearchEditor,
|
||||
// Text,
|
||||
// Pane,
|
||||
// MultiLayerSingleLevelTree,
|
||||
// ColorChooser,
|
||||
// SimpleColorChooser,
|
||||
// AbstractAllValueChooser,
|
||||
// AllValueChooserCombo,
|
||||
// TextAreaEditor,
|
||||
// SingleSelectItem,
|
||||
// DynamicDateTimeCombo,
|
||||
// MultiTreeCombo,
|
||||
// CenterLayout,
|
||||
// VirtualGroup,
|
||||
// GridLayout,
|
||||
// MultiTreePopup,
|
||||
// SingleSelectRadioItem,
|
||||
// SingleSelectInsertCombo,
|
||||
// SingleSelectCombo,
|
||||
// CardLayout,
|
||||
// DynamicYearMonthCombo,
|
||||
// TimeCombo,
|
||||
// Iframe,
|
||||
// TextValueDownListCombo,
|
||||
// Switch,
|
||||
// HorizontalLayout,
|
||||
// ShelterEditor,
|
||||
// Form,
|
||||
// TextTrigger,
|
||||
// SelectTextTrigger,
|
||||
// DateInterval,
|
||||
// DynamicDatePane,
|
||||
// AllCountPager,
|
||||
// Pager,
|
||||
// PopupView,
|
||||
// BubblePopupView,
|
||||
// BubblePopupBarView,
|
||||
// TextBubblePopupBarView,
|
||||
// ArrowTreeGroupNodeCheckbox,
|
||||
// NumberInterval,
|
||||
// DynamicYearQuarterCombo,
|
||||
// DynamicYearCombo,
|
||||
// DynamicYearPopup,
|
||||
// IntervalSlider,
|
||||
// MultiSelectInsertList,
|
||||
// YearMonthInterval,
|
||||
// TextValueCheckCombo,
|
||||
// NumberEditor,
|
||||
// Segment,
|
||||
// LinearSegment,
|
||||
// Img,
|
||||
// EditorIconCheckCombo,
|
||||
// IconTextValueCombo,
|
||||
// ListView,
|
||||
// VirtualList,
|
||||
// VirtualGroupList,
|
||||
// FloatCenterLayout,
|
||||
// DynamicYearMonthPopup,
|
||||
// DateCalendarPopup,
|
||||
// Tree,
|
||||
// Node,
|
||||
// TextNode,
|
||||
// TextValueCheckComboPopup,
|
||||
// ImageButton,
|
||||
// Router,
|
||||
// History,
|
||||
// DateTimeCombo,
|
||||
// FloatHorizontalLayout,
|
||||
// AdaptiveLayout,
|
||||
// HexColorChooserPopup,
|
||||
// BlankIconTextItem,
|
||||
// TimeInterval,
|
||||
// DynamicDateTimePane,
|
||||
// SingleSelectInsertList,
|
||||
// MultiSelectTree,
|
||||
// HtmlLabel,
|
||||
// TreeValueChooserPane,
|
||||
// TdLayout,
|
||||
// MultiLayerSelectLevelTree,
|
||||
// SelectTreeExpander,
|
||||
// DirectionPager,
|
||||
// DownListGroupItem,
|
||||
// HorizontalStickyLayout,
|
||||
// VerticalStickyLayout,
|
||||
// TableLayout,
|
||||
// };
|
@ -1,597 +1,211 @@
|
||||
import { Combo } from "./base/combination/combo"; |
||||
import { ButtonGroup } from "./base/combination/group.button"; |
||||
import { Tab } from "./base/combination/tab"; |
||||
import { Pane } from "./base/pane"; |
||||
import { BasicButton } from "./base/single/button/button.basic"; |
||||
import { NodeButton } from "./base/single/button/button.node"; |
||||
import { Button } from "./base/single/button/buttons/button"; |
||||
import { TextButton } from "./base/single/button/buttons/button.text"; |
||||
import { IconTextItem } from "./base/single/button/listitem/icontextitem"; |
||||
import { Editor } from "./base/single/editor/editor"; |
||||
import { Iframe } from "./base/single/iframe/iframe"; |
||||
import { Checkbox } from "./base/single/input/checkbox"; |
||||
import { Input } from "./base/single/input/input"; |
||||
import { AbstractLabel } from "./base/single/label/abstract.label"; |
||||
import { Label } from "./base/single/label/label"; |
||||
import { Single } from "./base/single/single"; |
||||
import { Text } from "./base/single/text"; |
||||
import { Trigger } from "./base/single/trigger/trigger"; |
||||
import { IconChangeButton } from "./case/button/icon/icon.change"; |
||||
import { MultiSelectItem } from "./case/button/item.multiselect"; |
||||
import { BubbleCombo } from "./case/combo/bubblecombo/combo.bubble"; |
||||
import { TextValueCombo } from "./case/combo/combo.textvalue"; |
||||
import { TextValueComboPopup } from "./case/combo/popup.textvalue"; |
||||
import { SmallTextValueCombo } from "./case/combo/combo.textvaluesmall"; |
||||
import { SearchTextValueCombo } from "./case/combo/searchtextvaluecombo/combo.searchtextvalue"; |
||||
import { SignEditor } from "./case/editor/editor.sign"; |
||||
import { StateEditor } from "./case/editor/editor.state"; |
||||
import { AllValueMultiTextValueCombo } from "./component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo"; |
||||
import { Form } from "./component/form/form"; |
||||
import { AbstractTreeValueChooser } from "./component/treevaluechooser/abstract.treevaluechooser"; |
||||
import { AbstractListTreeValueChooser } from "./component/treevaluechooser/abstract.treevaluechooser.list"; |
||||
import { Action, ActionFactory } from "./core/action/action"; |
||||
import { ShowAction } from "./core/action/action.show"; |
||||
import { _base } from "./core/base"; |
||||
import { Behavior, BehaviorFactory } from "./core/behavior/behavior"; |
||||
import { HighlightBehavior } from "./core/behavior/behavior.highlight"; |
||||
import { RedMarkBehavior } from "./core/behavior/behavior.redmark"; |
||||
import * as decorator from "./core/decorator/decorator"; |
||||
import { _func } from "./core/func"; |
||||
import { _i18n } from "./core/i18n"; |
||||
import { _Plugin } from "./core/plugin"; |
||||
import { _var } from "./core/var"; |
||||
import { OB } from "./core/ob"; |
||||
import { Widget } from "./core/widget"; |
||||
import { _inject } from "./core/inject"; |
||||
import { Layout } from "./core/wrapper/layout"; |
||||
import { AbsoluteLayout } from "./core/wrapper/layout/layout.absolute"; |
||||
import { HTapeLayout, VTapeLayout } from "./core/wrapper/layout/layout.tape"; |
||||
import { HorizontalFillLayout } from "./core/wrapper/layout/fill/fill.horizontal"; |
||||
import { VerticalFillLayout } from "./core/wrapper/layout/fill/fill.vertical"; |
||||
import { VerticalLayout } from "./core/wrapper/layout/layout.vertical"; |
||||
import { DefaultLayout } from "./core/wrapper/layout/layout.default"; |
||||
import { DownListCombo } from "./widget/downlist/combo.downlist"; |
||||
import { DownListPopup } from "./widget/downlist/popup.downlist"; |
||||
import { Icon } from "./base/single/icon/icon"; |
||||
import { LeftVerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.leftvertical"; |
||||
import { |
||||
LeftRightVerticalAdaptLayout, |
||||
RightVerticalAdaptLayout, |
||||
} from "./core/wrapper/layout/adapt/adapt.leftrightvertical"; |
||||
import { IconTextIconItem } from "./base/single/button/listitem/icontexticonitem"; |
||||
import { HorizontalAutoLayout } from "./core/wrapper/layout/adapt/auto.horizontal"; |
||||
import { InlineVerticalAdaptLayout } from "./core/wrapper/layout/adapt/inline.vertical"; |
||||
import { TableAdaptLayout } from "./core/wrapper/layout/adapt/adapt.table"; |
||||
import { IconButton } from "./base/single/button/buttons/button.icon"; |
||||
import { TextEditor } from "./widget/editor/editor.text"; |
||||
import { IconLabel } from "./base/single/label/icon.label"; |
||||
import { Popover, BarPopover } from "./base/layer/layer.popover"; |
||||
import { IconCombo } from "./case/combo/iconcombo/combo.icon"; |
||||
import { DynamicDateCombo } from "./widget/dynamicdate/dynamicdate.combo"; |
||||
import { CustomTree } from "./base/tree/customtree"; |
||||
import { ButtonTree } from "./base/combination/tree.button"; |
||||
import { IconArrowNode } from "./case/button/node/node.icon.arrow"; |
||||
import { MidTreeLeafItem } from "./case/button/treeitem/item.mid.treeleaf"; |
||||
import { FirstTreeLeafItem } from "./case/button/treeitem/item.first.treeleaf"; |
||||
import { LastTreeLeafItem } from "./case/button/treeitem/item.last.treeleaf"; |
||||
import { SmallTextEditor } from "./widget/editor/editor.text.small"; |
||||
import { MultifileEditor } from "./widget/editor/editor.multifile"; |
||||
import { AbsoluteCenterLayout } from "./core/wrapper/layout/adapt/absolute.center"; |
||||
import { HorizontalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.horizontal"; |
||||
import { FloatLeftLayout, FloatRightLayout } from "./core/wrapper/layout/layout.flow"; |
||||
import { CenterAdaptLayout } from "./core/wrapper/layout/adapt/adapt.center"; |
||||
import { VerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.vertical"; |
||||
import { MultiSelectInsertCombo } from "./widget/multiselect/multiselect.insert.combo"; |
||||
import { MultiSelectCombo } from "./widget/multiselect/multiselect.combo"; |
||||
import { SearchEditor } from "./widget/editor/editor.search"; |
||||
import { MultiLayerSingleLevelTree } from "./widget/multilayersingletree/multilayersingletree.leveltree"; |
||||
import { SimpleColorChooser } from "./case/colorchooser/colorchooser.simple"; |
||||
import { ColorChooser } from "./case/colorchooser/colorchooser"; |
||||
import { A } from "./base/a/a"; |
||||
import { Html } from "./base/single/html/html"; |
||||
import { Switcher } from "./base/combination/switcher"; |
||||
import { Expander } from "./base/combination/expander"; |
||||
import { Loader } from "./base/combination/loader"; |
||||
import { ListPane } from "./case/layer/pane.list"; |
||||
import { MultiPopupView } from "./case/layer/layer.multipopup"; |
||||
import { MultiSelectBar } from "./case/toolbar/toolbar.multiselect"; |
||||
import { SelectList } from "./case/list/list.select"; |
||||
import { AbstractAllValueChooser } from "./component/allvaluechooser/abstract.allvaluechooser"; |
||||
import { AllValueChooserCombo } from "./component/allvaluechooser/combo.allvaluechooser"; |
||||
import { TextAreaEditor } from "./base/single/editor/editor.textarea"; |
||||
import { SingleSelectItem } from "./case/button/item.singleselect"; |
||||
import { DynamicDateTimeCombo } from "./widget/dynamicdatetime/dynamicdatetime.combo"; |
||||
import { MultiTreeCombo } from "./widget/multitree/multi.tree.combo"; |
||||
import { CenterLayout } from "./core/wrapper/layout/middle/middle.center"; |
||||
import { VirtualGroup } from "./base/combination/group.virtual"; |
||||
import { GridLayout } from "./core/wrapper/layout/layout.grid"; |
||||
import { TriggerIconButton } from "./case/button/icon/icon.trigger"; |
||||
import { Searcher } from "./base/combination/searcher"; |
||||
import { ListTreeValueChooserInsertCombo } from "./component/treevaluechooser/combo.listtreevaluechooser"; |
||||
import { TreeValueChooserCombo } from "./component/treevaluechooser/combo.treevaluechooser"; |
||||
import { TreeValueChooserInsertCombo } from "./component/treevaluechooser/combo.treevaluechooser.insert"; |
||||
import { Radio } from "./base/single/input/radio/radio"; |
||||
import { MultiLayerSelectTreePopup } from "./widget/multilayerselecttree/multilayerselecttree.popup"; |
||||
import { MultiLayerSingleTreePopup } from "./widget/multilayersingletree/multilayersingletree.popup"; |
||||
import { MultiLayerDownListPopup } from "./widget/multilayerdownlist/multilayerdownlist.popup"; |
||||
import { TreeView } from "./base/tree/ztree/treeview"; |
||||
import { MultiTreePopup } from "./widget/multitree/multi.tree.popup"; |
||||
import { SingleSelectRadioItem } from "./case/button/item.singleselect.radio"; |
||||
import { SingleSelectInsertCombo } from "./widget/singleselect/singleselect.insert.combo"; |
||||
import { SingleSelectCombo } from "./widget/singleselect/singleselect.combo"; |
||||
import { CardLayout } from "./core/wrapper/layout/layout.card"; |
||||
import { DynamicYearMonthCombo } from "./widget/yearmonth/combo.yearmonth"; |
||||
import { TimeCombo } from "./widget/time/time.combo"; |
||||
import { ListTreeView } from "./base/tree/ztree/list/listtreeview"; |
||||
import { ListAsyncTree } from "./base/tree/ztree/list/listasynctree"; |
||||
import { AsyncTree } from "./base/tree/ztree/asynctree"; |
||||
import { MultiLayerSingleTreeCombo } from "./widget/multilayersingletree/multilayersingletree.combo"; |
||||
import { MultiLayerSelectTreeCombo } from "./widget/multilayerselecttree/multilayerselecttree.combo"; |
||||
import { MultiLayerDownListCombo } from "./widget/multilayerdownlist/multilayerdownlist.combo"; |
||||
import { MultiTreeListCombo } from "./widget/multitree/multi.tree.list.combo"; |
||||
import { MultiTreeInsertCombo } from "./widget/multitree/multi.tree.insert.combo"; |
||||
import { TextValueDownListCombo } from "./widget/textvaluedownlistcombo/combo.textvaluedownlist"; |
||||
import { Switch } from "./case/button/switch"; |
||||
import { HorizontalLayout } from "./core/wrapper/layout/layout.horizontal"; |
||||
import { ShelterEditor } from "./case/editor/editor.shelter"; |
||||
import { TextTrigger } from "./case/trigger/trigger.text"; |
||||
import { SelectTextTrigger } from "./case/trigger/trigger.text.select"; |
||||
import { DateInterval } from "./widget/timeinterval/dateinterval"; |
||||
import { DynamicDatePane } from "./widget/datepane/datepane"; |
||||
import { AllCountPager } from "./case/pager/pager.all.count"; |
||||
import { DirectionPager } from "./case/pager/pager.direction"; |
||||
import { PopupView } from "./base/layer/layer.popup"; |
||||
import { BubblePopupView, BubblePopupBarView, TextBubblePopupBarView } from "./case/combo/bubblecombo/popup.bubble"; |
||||
import { ArrowTreeGroupNodeCheckbox } from "./case/checkbox/check.arrownode"; |
||||
import { NumberInterval } from "./widget/numberinterval/numberinterval"; |
||||
import { DynamicYearQuarterCombo } from "./widget/yearquarter/combo.yearquarter"; |
||||
import { DynamicYearCombo } from "./widget/year/combo.year"; |
||||
import { DynamicYearPopup } from "./widget/year/popup.year"; |
||||
import { IntervalSlider } from "./widget/intervalslider/intervalslider"; |
||||
import { MultiSelectInsertList } from "./widget/multiselectlist/multiselectlist.insert"; |
||||
import { YearMonthInterval } from "./widget/yearmonthinterval/yearmonthinterval"; |
||||
import { NumberEditor } from "./widget/numbereditor/numbereditor"; |
||||
import { TextValueCheckCombo } from "./case/combo/textvaluecheckcombo/combo.textvaluecheck"; |
||||
import { Segment } from "./case/segment/segment"; |
||||
import { LinearSegment } from "./case/linersegment/linear.segment"; |
||||
import { Img } from "./base/single/img/img"; |
||||
import { EditorIconCheckCombo } from "./case/combo/editoriconcheckcombo/combo.editiconcheck"; |
||||
import { IconTextValueCombo } from "./case/combo/icontextvaluecombo/combo.icontextvalue"; |
||||
import { ListView } from "./base/list/listview"; |
||||
import { VirtualList } from "./base/list/virtuallist"; |
||||
import { VirtualGroupList } from "./base/list/virtualgrouplist"; |
||||
import { FloatCenterLayout } from "./core/wrapper/layout/middle/middle.float.center"; |
||||
import { _msg } from "./base/foundation/message"; |
||||
import { _web } from "./core/platform/web"; |
||||
import { DynamicYearMonthPopup } from "./widget/yearmonth/popup.yearmonth"; |
||||
import { _utils } from "./core/utils"; |
||||
import { Controller } from "./core/controller/controller"; |
||||
import { LayerController } from "./core/controller/controller.layer"; |
||||
import { DateCalendarPopup } from "./widget/date/calendar/popup.calendar.date"; |
||||
import { Tree, Node } from "./core/utils/tree"; |
||||
import { TextNode } from "./base/single/button/node/textnode"; |
||||
import { TextValueCheckComboPopup } from "./case/combo/textvaluecheckcombo/popup.textvaluecheck"; |
||||
import { ImageButton } from "./base/single/button/buttons/button.image"; |
||||
import { History, Router } from "./router/router"; |
||||
import { DateTimeCombo } from "./widget/datetime/datetime.combo"; |
||||
import { FloatHorizontalLayout } from "./core/wrapper/layout/adapt/float.horizontal"; |
||||
import { AdaptiveLayout } from "./core/wrapper/layout/layout.adaptive"; |
||||
import { HexColorChooserPopup } from "./case/colorchooser/colorchooser.popup.hex"; |
||||
import { BlankIconTextItem } from "./base/single/button/listitem/blankicontextitem"; |
||||
import { Broadcasts, Layers } from "./base/base"; |
||||
import { BroadcastController } from "./core/controller/controller.broadcast"; |
||||
import { Pager } from "./base/pager/pager"; |
||||
import { TimeInterval } from "./widget/timeinterval/timeinterval"; |
||||
import { DynamicDateTimePane } from "./widget/datetimepane/datetimepane"; |
||||
import { SingleSelectInsertList } from "./widget/singleselect/singleselectlist.insert"; |
||||
import { MultiSelectTree } from "./widget/multiselecttree/multiselecttree"; |
||||
import { HtmlLabel } from "./base/single/label/html.label"; |
||||
import { TreeValueChooserPane } from "./component/treevaluechooser/pane.treevaluechooser"; |
||||
import { TdLayout } from "./core/wrapper/layout/layout.td"; |
||||
import { MultiLayerSelectLevelTree } from "./widget/multilayerselecttree/multilayerselecttree.leveltree"; |
||||
import { SelectTreeExpander } from "./widget/selecttree/selecttree.expander"; |
||||
import { DownListGroupItem } from "./widget/downlist/item.downlistgroup"; |
||||
import { VerticalStickyLayout } from "./core/wrapper/layout/sticky/sticky.vertical"; |
||||
import { HorizontalStickyLayout } from "./core/wrapper/layout/sticky/sticky.horizontal"; |
||||
import { TableLayout } from "./core/wrapper/layout/layout.table"; |
||||
import "./shims-tsx"; |
||||
import { Workers } from "./core/worker/workers"; |
||||
|
||||
export * from "./core/action/action.show"; |
||||
export * from "./core/action/action"; |
||||
export * from "./core/behavior/behavior"; |
||||
export * from "./core/behavior/behavior.highlight"; |
||||
export * from "./core/behavior/behavior.redmark"; |
||||
export * from "./core/controller/controller.broadcast"; |
||||
export * from "./core/controller/controller"; |
||||
export * from "./core/controller/controller.layer"; |
||||
export * as Decorators from "./core/decorator/decorator"; |
||||
export * from "./core/base"; |
||||
export * from "./core/i18n"; |
||||
export * from "./core/func"; |
||||
export * from "./core/inject"; |
||||
export * from "./core/ob"; |
||||
export * from "./core/plugin"; |
||||
export * from "./core/var"; |
||||
export * from "./core/widget"; |
||||
export * from "./core/utils"; |
||||
export * from "./core/platform/web"; |
||||
export * from "./core/worker/workers"; |
||||
export { Combo } from "./base/combination/combo"; |
||||
export { ButtonGroup } from "./base/combination/group.button"; |
||||
export { Tab } from "./base/combination/tab"; |
||||
export { Pane } from "./base/pane"; |
||||
export { BasicButton } from "./base/single/button/button.basic"; |
||||
export { NodeButton } from "./base/single/button/button.node"; |
||||
export { Button } from "./base/single/button/buttons/button"; |
||||
export { TextButton } from "./base/single/button/buttons/button.text"; |
||||
export { IconTextItem } from "./base/single/button/listitem/icontextitem"; |
||||
export { Editor } from "./base/single/editor/editor"; |
||||
export { Iframe } from "./base/single/iframe/iframe"; |
||||
export { Checkbox } from "./base/single/input/checkbox"; |
||||
export { Input } from "./base/single/input/input"; |
||||
export { AbstractLabel } from "./base/single/label/abstract.label"; |
||||
export { Label } from "./base/single/label/label"; |
||||
export { Single } from "./base/single/single"; |
||||
export { Text } from "./base/single/text"; |
||||
export { Trigger } from "./base/single/trigger/trigger"; |
||||
export { IconChangeButton } from "./case/button/icon/icon.change"; |
||||
export { MultiSelectItem } from "./case/button/item.multiselect"; |
||||
export { BubbleCombo } from "./case/combo/bubblecombo/combo.bubble"; |
||||
export { TextValueCombo } from "./case/combo/combo.textvalue"; |
||||
export { TextValueComboPopup } from "./case/combo/popup.textvalue"; |
||||
export { SmallTextValueCombo } from "./case/combo/combo.textvaluesmall"; |
||||
export { SearchTextValueCombo } from "./case/combo/searchtextvaluecombo/combo.searchtextvalue"; |
||||
export { SignEditor } from "./case/editor/editor.sign"; |
||||
export { StateEditor } from "./case/editor/editor.state"; |
||||
export { AllValueMultiTextValueCombo } from "./component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo"; |
||||
export { Form } from "./component/form/form"; |
||||
export { AbstractTreeValueChooser } from "./component/treevaluechooser/abstract.treevaluechooser"; |
||||
export { AbstractListTreeValueChooser } from "./component/treevaluechooser/abstract.treevaluechooser.list"; |
||||
export { Action, ActionFactory } from "./core/action/action"; |
||||
export { ShowAction } from "./core/action/action.show"; |
||||
export { Behavior, BehaviorFactory } from "./core/behavior/behavior"; |
||||
export { HighlightBehavior } from "./core/behavior/behavior.highlight"; |
||||
export { RedMarkBehavior } from "./core/behavior/behavior.redmark"; |
||||
|
||||
export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { |
||||
OB: typeof OB; |
||||
Plugin: _Plugin; |
||||
Widget: typeof Widget; |
||||
Single: typeof Single; |
||||
BasicButton: typeof BasicButton; |
||||
NodeButton: typeof NodeButton; |
||||
Checkbox: typeof Checkbox; |
||||
Button: typeof Button; |
||||
TextButton: typeof TextButton; |
||||
IconChangeButton: typeof IconChangeButton; |
||||
Trigger: typeof Trigger; |
||||
Action: typeof Action; |
||||
ActionFactory: typeof ActionFactory; |
||||
ShowAction: typeof ShowAction; |
||||
Controller: typeof Controller; |
||||
Layers: Layers; |
||||
LayerController: typeof LayerController; |
||||
Broadcasts: Broadcasts; |
||||
BroadcastController: typeof BroadcastController; |
||||
Behavior: typeof Behavior; |
||||
BehaviorFactory: typeof BehaviorFactory; |
||||
HighlightBehavior: typeof HighlightBehavior; |
||||
RedMarkBehavior: typeof RedMarkBehavior; |
||||
Pane: typeof Pane; |
||||
Tab: typeof Tab; |
||||
ButtonGroup: typeof ButtonGroup; |
||||
Combo: typeof Combo; |
||||
TextValueCombo: typeof TextValueCombo; |
||||
TextValueComboPopup: typeof TextValueComboPopup; |
||||
SmallTextValueCombo: typeof SmallTextValueCombo; |
||||
BubbleCombo: typeof BubbleCombo; |
||||
AllValueMultiTextValueCombo: typeof AllValueMultiTextValueCombo; |
||||
Form: typeof Form; |
||||
IconTextItem: typeof IconTextItem; |
||||
MultiSelectItem: typeof MultiSelectItem; |
||||
AbstractLabel: typeof AbstractLabel; |
||||
Label: typeof Label; |
||||
Text: typeof Text; |
||||
Editor: typeof Editor; |
||||
SignEditor: typeof SignEditor; |
||||
StateEditor: typeof StateEditor; |
||||
Layout: typeof Layout; |
||||
HTapeLayout: typeof HTapeLayout; |
||||
VTapeLayout: typeof VTapeLayout; |
||||
AbstractTreeValueChooser: typeof AbstractTreeValueChooser; |
||||
AbstractListTreeValueChooser: typeof AbstractListTreeValueChooser; |
||||
ListTreeValueChooserInsertCombo: typeof ListTreeValueChooserInsertCombo; |
||||
TreeValueChooserCombo: typeof TreeValueChooserCombo; |
||||
TreeValueChooserInsertCombo: typeof TreeValueChooserInsertCombo; |
||||
MultiLayerSelectTreePopup: typeof MultiLayerSelectTreePopup; |
||||
MultiLayerSingleTreePopup: typeof MultiLayerSingleTreePopup; |
||||
MultiLayerDownListPopup: typeof MultiLayerDownListPopup; |
||||
TreeView: typeof TreeView; |
||||
ListTreeView: typeof ListTreeView; |
||||
ListAsyncTree: typeof ListAsyncTree; |
||||
AsyncTree: typeof AsyncTree; |
||||
MultiLayerSingleTreeCombo: typeof MultiLayerSingleTreeCombo; |
||||
MultiLayerSelectTreeCombo: typeof MultiLayerSelectTreeCombo; |
||||
MultiLayerDownListCombo: typeof MultiLayerDownListCombo; |
||||
MultiTreeListCombo: typeof MultiTreeListCombo; |
||||
MultiTreeInsertCombo: typeof MultiTreeInsertCombo; |
||||
Decorators: typeof decorator; |
||||
DownListCombo: typeof DownListCombo; |
||||
DownListPopup: typeof DownListPopup; |
||||
Iframe: typeof Iframe; |
||||
AbsoluteLayout: typeof AbsoluteLayout; |
||||
HorizontalFillLayout: typeof HorizontalFillLayout; |
||||
VerticalFillLayout: typeof VerticalFillLayout; |
||||
VerticalLayout: typeof VerticalLayout; |
||||
DefaultLayout: typeof DefaultLayout; |
||||
Input: typeof Input; |
||||
SearchTextValueCombo: typeof SearchTextValueCombo; |
||||
Icon: typeof Icon; |
||||
LeftVerticalAdaptLayout: typeof LeftVerticalAdaptLayout; |
||||
LeftRightVerticalAdaptLayout: typeof LeftRightVerticalAdaptLayout; |
||||
IconTextIconItem: typeof IconTextIconItem; |
||||
HorizontalAutoLayout: typeof HorizontalAutoLayout; |
||||
InlineVerticalAdaptLayout: typeof InlineVerticalAdaptLayout; |
||||
RightVerticalAdaptLayout: typeof RightVerticalAdaptLayout; |
||||
TableAdaptLayout: typeof TableAdaptLayout; |
||||
AbsoluteCenterLayout: typeof AbsoluteCenterLayout; |
||||
HorizontalAdaptLayout: typeof HorizontalAdaptLayout; |
||||
FloatLeftLayout: typeof FloatLeftLayout; |
||||
FloatRightLayout: typeof FloatRightLayout; |
||||
CenterAdaptLayout: typeof CenterAdaptLayout; |
||||
VerticalAdaptLayout: typeof VerticalAdaptLayout; |
||||
IconButton: typeof IconButton; |
||||
TriggerIconButton: typeof TriggerIconButton; |
||||
Searcher: typeof Searcher; |
||||
TextEditor: typeof TextEditor; |
||||
Radio: typeof Radio; |
||||
A: typeof A; |
||||
Html: typeof Html; |
||||
Switcher: typeof Switcher; |
||||
Expander: typeof Expander; |
||||
Loader: typeof Loader; |
||||
ListPane: typeof ListPane; |
||||
MultiPopupView: typeof MultiPopupView; |
||||
MultiSelectBar: typeof MultiSelectBar; |
||||
SelectList: typeof SelectList; |
||||
IconLabel: typeof IconLabel; |
||||
Popover: typeof Popover; |
||||
BarPopover: typeof BarPopover; |
||||
IconCombo: typeof IconCombo; |
||||
DynamicDateCombo: typeof DynamicDateCombo; |
||||
CustomTree: typeof CustomTree; |
||||
ButtonTree: typeof ButtonTree; |
||||
IconArrowNode: typeof IconArrowNode; |
||||
MidTreeLeafItem: typeof MidTreeLeafItem; |
||||
FirstTreeLeafItem: typeof FirstTreeLeafItem; |
||||
LastTreeLeafItem: typeof LastTreeLeafItem; |
||||
SmallTextEditor: typeof SmallTextEditor; |
||||
MultifileEditor: typeof MultifileEditor; |
||||
MultiSelectInsertCombo: typeof MultiSelectInsertCombo; |
||||
MultiSelectCombo: typeof MultiSelectCombo; |
||||
SearchEditor: typeof SearchEditor; |
||||
MultiLayerSingleLevelTree: typeof MultiLayerSingleLevelTree; |
||||
SimpleColorChooser: typeof SimpleColorChooser; |
||||
ColorChooser: typeof ColorChooser; |
||||
AbstractAllValueChooser: typeof AbstractAllValueChooser; |
||||
AllValueChooserCombo: typeof AllValueChooserCombo; |
||||
TextAreaEditor: typeof TextAreaEditor; |
||||
SingleSelectItem: typeof SingleSelectItem; |
||||
DynamicDateTimeCombo: typeof DynamicDateTimeCombo; |
||||
MultiTreeCombo: typeof MultiTreeCombo; |
||||
CenterLayout: typeof CenterLayout; |
||||
VirtualGroup: typeof VirtualGroup; |
||||
GridLayout: typeof GridLayout; |
||||
MultiTreePopup: typeof MultiTreePopup; |
||||
SingleSelectRadioItem: typeof SingleSelectRadioItem; |
||||
SingleSelectInsertCombo: typeof SingleSelectInsertCombo; |
||||
SingleSelectCombo: typeof SingleSelectCombo; |
||||
CardLayout: typeof CardLayout; |
||||
DynamicYearMonthCombo: typeof DynamicYearMonthCombo; |
||||
TimeCombo: typeof TimeCombo; |
||||
TextValueDownListCombo: typeof TextValueDownListCombo; |
||||
Switch: typeof Switch; |
||||
HorizontalLayout: typeof HorizontalLayout; |
||||
ShelterEditor: typeof ShelterEditor; |
||||
TextTrigger: typeof TextTrigger; |
||||
SelectTextTrigger: typeof SelectTextTrigger; |
||||
DateInterval: typeof DateInterval; |
||||
DynamicDatePane: typeof DynamicDatePane; |
||||
AllCountPager: typeof AllCountPager; |
||||
DirectionPager: typeof DirectionPager; |
||||
Pager: typeof Pager; |
||||
PopupView: typeof PopupView; |
||||
BubblePopupView: typeof BubblePopupView; |
||||
BubblePopupBarView: typeof BubblePopupBarView; |
||||
TextBubblePopupBarView: typeof TextBubblePopupBarView; |
||||
ArrowTreeGroupNodeCheckbox: typeof ArrowTreeGroupNodeCheckbox; |
||||
NumberInterval: typeof NumberInterval; |
||||
DynamicYearQuarterCombo: typeof DynamicYearQuarterCombo; |
||||
DynamicYearCombo: typeof DynamicYearCombo; |
||||
DynamicYearPopup: typeof DynamicYearPopup; |
||||
IntervalSlider: typeof IntervalSlider; |
||||
MultiSelectInsertList: typeof MultiSelectInsertList; |
||||
YearMonthInterval: typeof YearMonthInterval; |
||||
TextValueCheckCombo: typeof TextValueCheckCombo; |
||||
NumberEditor: typeof NumberEditor; |
||||
Segment: typeof Segment; |
||||
LinearSegment: typeof LinearSegment; |
||||
Img: typeof Img; |
||||
EditorIconCheckCombo: typeof EditorIconCheckCombo; |
||||
IconTextValueCombo: typeof IconTextValueCombo; |
||||
ListView: typeof ListView; |
||||
VirtualList: typeof VirtualList; |
||||
VirtualGroupList: typeof VirtualGroupList; |
||||
FloatCenterLayout: typeof FloatCenterLayout; |
||||
Msg: _msg; |
||||
DynamicYearMonthPopup: typeof DynamicYearMonthPopup; |
||||
DateCalendarPopup: typeof DateCalendarPopup; |
||||
TextNode: typeof TextNode; |
||||
TextValueCheckComboPopup: typeof TextValueCheckComboPopup; |
||||
ImageButton: typeof ImageButton; |
||||
Router: typeof Router; |
||||
history: History, |
||||
DateTimeCombo: typeof DateTimeCombo; |
||||
FloatHorizontalLayout: typeof FloatHorizontalLayout; |
||||
AdaptiveLayout: typeof AdaptiveLayout; |
||||
HexColorChooserPopup: typeof HexColorChooserPopup; |
||||
BlankIconTextItem: typeof BlankIconTextItem; |
||||
TimeInterval: typeof TimeInterval; |
||||
DynamicDateTimePane: typeof DynamicDateTimePane; |
||||
SingleSelectInsertList: typeof SingleSelectInsertList; |
||||
MultiSelectTree: typeof MultiSelectTree; |
||||
HtmlLabel: typeof HtmlLabel; |
||||
TreeValueChooserPane: typeof TreeValueChooserPane; |
||||
TdLayout: typeof TdLayout; |
||||
MultiLayerSelectLevelTree: typeof MultiLayerSelectLevelTree; |
||||
SelectTreeExpander: typeof SelectTreeExpander; |
||||
DownListGroupItem: typeof DownListGroupItem; |
||||
VerticalStickyLayout: typeof VerticalStickyLayout; |
||||
HorizontalStickyLayout: typeof HorizontalStickyLayout; |
||||
TableLayout: typeof TableLayout; |
||||
Workers: typeof Workers; |
||||
} |
||||
|
||||
export default { |
||||
Decorators: decorator, |
||||
Workers, |
||||
}; |
||||
export { OB } from "./core/ob"; |
||||
export { Widget } from "./core/widget"; |
||||
export { Layout } from "./core/wrapper/layout"; |
||||
export { AbsoluteLayout } from "./core/wrapper/layout/layout.absolute"; |
||||
export { HTapeLayout, VTapeLayout } from "./core/wrapper/layout/layout.tape"; |
||||
export { HorizontalFillLayout } from "./core/wrapper/layout/fill/fill.horizontal"; |
||||
export { VerticalFillLayout } from "./core/wrapper/layout/fill/fill.vertical"; |
||||
export { VerticalLayout } from "./core/wrapper/layout/layout.vertical"; |
||||
export { DefaultLayout } from "./core/wrapper/layout/layout.default"; |
||||
export { DownListCombo } from "./widget/downlist/combo.downlist"; |
||||
export { DownListPopup } from "./widget/downlist/popup.downlist"; |
||||
export { Icon } from "./base/single/icon/icon"; |
||||
export { LeftVerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.leftvertical"; |
||||
export { |
||||
OB, |
||||
Widget, |
||||
Single, |
||||
BasicButton, |
||||
Checkbox, |
||||
Icon, |
||||
LeftVerticalAdaptLayout, |
||||
LeftRightVerticalAdaptLayout, |
||||
SearchTextValueCombo, |
||||
Input, |
||||
IconTextItem, |
||||
AllValueMultiTextValueCombo, |
||||
IconTextIconItem, |
||||
Layout, |
||||
HorizontalAutoLayout, |
||||
InlineVerticalAdaptLayout, |
||||
RightVerticalAdaptLayout, |
||||
TableAdaptLayout, |
||||
AbsoluteCenterLayout, |
||||
HorizontalAdaptLayout, |
||||
FloatLeftLayout, |
||||
FloatRightLayout, |
||||
HorizontalFillLayout, |
||||
VerticalFillLayout, |
||||
VerticalLayout, |
||||
AbsoluteLayout, |
||||
DefaultLayout, |
||||
HTapeLayout, |
||||
CenterAdaptLayout, |
||||
VTapeLayout, |
||||
VerticalAdaptLayout, |
||||
IconButton, |
||||
Trigger, |
||||
TriggerIconButton, |
||||
Action, |
||||
ActionFactory, |
||||
ShowAction, |
||||
Controller, |
||||
LayerController, |
||||
BroadcastController, |
||||
Behavior, |
||||
BehaviorFactory, |
||||
RedMarkBehavior, |
||||
HighlightBehavior, |
||||
Searcher, |
||||
AbstractLabel, |
||||
Label, |
||||
TextButton, |
||||
DownListCombo, |
||||
DownListPopup, |
||||
IconChangeButton, |
||||
Button, |
||||
TextEditor, |
||||
A, |
||||
Html, |
||||
Switcher, |
||||
Expander, |
||||
BubbleCombo, |
||||
Loader, |
||||
ListPane, |
||||
MultiPopupView, |
||||
MultiSelectBar, |
||||
SelectList, |
||||
TextValueCombo, |
||||
TextValueComboPopup, |
||||
SmallTextValueCombo, |
||||
Editor, |
||||
IconLabel, |
||||
Popover, |
||||
BarPopover, |
||||
Tab, |
||||
AbstractTreeValueChooser, |
||||
AbstractListTreeValueChooser, |
||||
ListTreeValueChooserInsertCombo, |
||||
TreeValueChooserCombo, |
||||
TreeValueChooserInsertCombo, |
||||
MultiLayerSelectTreePopup, |
||||
MultiLayerSingleTreePopup, |
||||
MultiLayerDownListPopup, |
||||
TreeView, |
||||
ListTreeView, |
||||
ListAsyncTree, |
||||
AsyncTree, |
||||
MultiLayerSingleTreeCombo, |
||||
MultiLayerSelectTreeCombo, |
||||
MultiLayerDownListCombo, |
||||
MultiTreeListCombo, |
||||
MultiTreeInsertCombo, |
||||
Combo, |
||||
IconCombo, |
||||
DynamicDateCombo, |
||||
Radio, |
||||
MultiSelectItem, |
||||
CustomTree, |
||||
ButtonGroup, |
||||
ButtonTree, |
||||
NodeButton, |
||||
IconArrowNode, |
||||
MidTreeLeafItem, |
||||
FirstTreeLeafItem, |
||||
LastTreeLeafItem, |
||||
SmallTextEditor, |
||||
MultifileEditor, |
||||
SignEditor, |
||||
StateEditor, |
||||
MultiSelectInsertCombo, |
||||
MultiSelectCombo, |
||||
SearchEditor, |
||||
Text, |
||||
Pane, |
||||
MultiLayerSingleLevelTree, |
||||
ColorChooser, |
||||
SimpleColorChooser, |
||||
AbstractAllValueChooser, |
||||
AllValueChooserCombo, |
||||
TextAreaEditor, |
||||
SingleSelectItem, |
||||
DynamicDateTimeCombo, |
||||
MultiTreeCombo, |
||||
CenterLayout, |
||||
VirtualGroup, |
||||
GridLayout, |
||||
MultiTreePopup, |
||||
SingleSelectRadioItem, |
||||
SingleSelectInsertCombo, |
||||
SingleSelectCombo, |
||||
CardLayout, |
||||
DynamicYearMonthCombo, |
||||
TimeCombo, |
||||
Iframe, |
||||
TextValueDownListCombo, |
||||
Switch, |
||||
HorizontalLayout, |
||||
ShelterEditor, |
||||
Form, |
||||
TextTrigger, |
||||
SelectTextTrigger, |
||||
DateInterval, |
||||
DynamicDatePane, |
||||
AllCountPager, |
||||
Pager, |
||||
PopupView, |
||||
BubblePopupView, |
||||
BubblePopupBarView, |
||||
TextBubblePopupBarView, |
||||
ArrowTreeGroupNodeCheckbox, |
||||
NumberInterval, |
||||
DynamicYearQuarterCombo, |
||||
DynamicYearCombo, |
||||
DynamicYearPopup, |
||||
IntervalSlider, |
||||
MultiSelectInsertList, |
||||
YearMonthInterval, |
||||
TextValueCheckCombo, |
||||
NumberEditor, |
||||
Segment, |
||||
LinearSegment, |
||||
Img, |
||||
EditorIconCheckCombo, |
||||
IconTextValueCombo, |
||||
ListView, |
||||
VirtualList, |
||||
VirtualGroupList, |
||||
FloatCenterLayout, |
||||
DynamicYearMonthPopup, |
||||
DateCalendarPopup, |
||||
Tree, |
||||
Node, |
||||
TextNode, |
||||
TextValueCheckComboPopup, |
||||
ImageButton, |
||||
Router, |
||||
History, |
||||
DateTimeCombo, |
||||
FloatHorizontalLayout, |
||||
AdaptiveLayout, |
||||
HexColorChooserPopup, |
||||
BlankIconTextItem, |
||||
TimeInterval, |
||||
DynamicDateTimePane, |
||||
SingleSelectInsertList, |
||||
MultiSelectTree, |
||||
HtmlLabel, |
||||
TreeValueChooserPane, |
||||
TdLayout, |
||||
MultiLayerSelectLevelTree, |
||||
SelectTreeExpander, |
||||
DirectionPager, |
||||
DownListGroupItem, |
||||
HorizontalStickyLayout, |
||||
VerticalStickyLayout, |
||||
TableLayout, |
||||
}; |
||||
RightVerticalAdaptLayout |
||||
} from "./core/wrapper/layout/adapt/adapt.leftrightvertical"; |
||||
export { IconTextIconItem } from "./base/single/button/listitem/icontexticonitem"; |
||||
export { HorizontalAutoLayout } from "./core/wrapper/layout/adapt/auto.horizontal"; |
||||
export { InlineVerticalAdaptLayout } from "./core/wrapper/layout/adapt/inline.vertical"; |
||||
export { TableAdaptLayout } from "./core/wrapper/layout/adapt/adapt.table"; |
||||
export { IconButton } from "./base/single/button/buttons/button.icon"; |
||||
export { TextEditor } from "./widget/editor/editor.text"; |
||||
export { IconLabel } from "./base/single/label/icon.label"; |
||||
export { Popover, BarPopover } from "./base/layer/layer.popover"; |
||||
export { IconCombo } from "./case/combo/iconcombo/combo.icon"; |
||||
export { DynamicDateCombo } from "./widget/dynamicdate/dynamicdate.combo"; |
||||
export { CustomTree } from "./base/tree/customtree"; |
||||
export { ButtonTree } from "./base/combination/tree.button"; |
||||
export { IconArrowNode } from "./case/button/node/node.icon.arrow"; |
||||
export { MidTreeLeafItem } from "./case/button/treeitem/item.mid.treeleaf"; |
||||
export { FirstTreeLeafItem } from "./case/button/treeitem/item.first.treeleaf"; |
||||
export { LastTreeLeafItem } from "./case/button/treeitem/item.last.treeleaf"; |
||||
export { SmallTextEditor } from "./widget/editor/editor.text.small"; |
||||
export { MultifileEditor } from "./widget/editor/editor.multifile"; |
||||
export { AbsoluteCenterLayout } from "./core/wrapper/layout/adapt/absolute.center"; |
||||
export { HorizontalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.horizontal"; |
||||
export { FloatLeftLayout, FloatRightLayout } from "./core/wrapper/layout/layout.flow"; |
||||
export { CenterAdaptLayout } from "./core/wrapper/layout/adapt/adapt.center"; |
||||
export { VerticalAdaptLayout } from "./core/wrapper/layout/adapt/adapt.vertical"; |
||||
export { MultiSelectInsertCombo } from "./widget/multiselect/multiselect.insert.combo"; |
||||
export { MultiSelectCombo } from "./widget/multiselect/multiselect.combo"; |
||||
export { SearchEditor } from "./widget/editor/editor.search"; |
||||
export { MultiLayerSingleLevelTree } from "./widget/multilayersingletree/multilayersingletree.leveltree"; |
||||
export { SimpleColorChooser } from "./case/colorchooser/colorchooser.simple"; |
||||
export { ColorChooser } from "./case/colorchooser/colorchooser"; |
||||
export { A } from "./base/a/a"; |
||||
export { Html } from "./base/single/html/html"; |
||||
export { Switcher } from "./base/combination/switcher"; |
||||
export { Expander } from "./base/combination/expander"; |
||||
export { Loader } from "./base/combination/loader"; |
||||
export { ListPane } from "./case/layer/pane.list"; |
||||
export { MultiPopupView } from "./case/layer/layer.multipopup"; |
||||
export { MultiSelectBar } from "./case/toolbar/toolbar.multiselect"; |
||||
export { SelectList } from "./case/list/list.select"; |
||||
export { AbstractAllValueChooser } from "./component/allvaluechooser/abstract.allvaluechooser"; |
||||
export { AllValueChooserCombo } from "./component/allvaluechooser/combo.allvaluechooser"; |
||||
export { TextAreaEditor } from "./base/single/editor/editor.textarea"; |
||||
export { SingleSelectItem } from "./case/button/item.singleselect"; |
||||
export { DynamicDateTimeCombo } from "./widget/dynamicdatetime/dynamicdatetime.combo"; |
||||
export { MultiTreeCombo } from "./widget/multitree/multi.tree.combo"; |
||||
export { CenterLayout } from "./core/wrapper/layout/middle/middle.center"; |
||||
export { VirtualGroup } from "./base/combination/group.virtual"; |
||||
export { GridLayout } from "./core/wrapper/layout/layout.grid"; |
||||
export { TriggerIconButton } from "./case/button/icon/icon.trigger"; |
||||
export { Searcher } from "./base/combination/searcher"; |
||||
export { ListTreeValueChooserInsertCombo } from "./component/treevaluechooser/combo.listtreevaluechooser"; |
||||
export { TreeValueChooserCombo } from "./component/treevaluechooser/combo.treevaluechooser"; |
||||
export { TreeValueChooserInsertCombo } from "./component/treevaluechooser/combo.treevaluechooser.insert"; |
||||
export { Radio } from "./base/single/input/radio/radio"; |
||||
export { MultiLayerSelectTreePopup } from "./widget/multilayerselecttree/multilayerselecttree.popup"; |
||||
export { MultiLayerSingleTreePopup } from "./widget/multilayersingletree/multilayersingletree.popup"; |
||||
export { MultiLayerDownListPopup } from "./widget/multilayerdownlist/multilayerdownlist.popup"; |
||||
export { TreeView } from "./base/tree/ztree/treeview"; |
||||
export { MultiTreePopup } from "./widget/multitree/multi.tree.popup"; |
||||
export { SingleSelectRadioItem } from "./case/button/item.singleselect.radio"; |
||||
export { SingleSelectInsertCombo } from "./widget/singleselect/singleselect.insert.combo"; |
||||
export { SingleSelectCombo } from "./widget/singleselect/singleselect.combo"; |
||||
export { CardLayout } from "./core/wrapper/layout/layout.card"; |
||||
export { DynamicYearMonthCombo } from "./widget/yearmonth/combo.yearmonth"; |
||||
export { TimeCombo } from "./widget/time/time.combo"; |
||||
export { ListTreeView } from "./base/tree/ztree/list/listtreeview"; |
||||
export { ListAsyncTree } from "./base/tree/ztree/list/listasynctree"; |
||||
export { AsyncTree } from "./base/tree/ztree/asynctree"; |
||||
export { MultiLayerSingleTreeCombo } from "./widget/multilayersingletree/multilayersingletree.combo"; |
||||
export { MultiLayerSelectTreeCombo } from "./widget/multilayerselecttree/multilayerselecttree.combo"; |
||||
export { MultiLayerDownListCombo } from "./widget/multilayerdownlist/multilayerdownlist.combo"; |
||||
export { MultiTreeListCombo } from "./widget/multitree/multi.tree.list.combo"; |
||||
export { MultiTreeInsertCombo } from "./widget/multitree/multi.tree.insert.combo"; |
||||
export { TextValueDownListCombo } from "./widget/textvaluedownlistcombo/combo.textvaluedownlist"; |
||||
export { Switch } from "./case/button/switch"; |
||||
export { HorizontalLayout } from "./core/wrapper/layout/layout.horizontal"; |
||||
export { ShelterEditor } from "./case/editor/editor.shelter"; |
||||
export { TextTrigger } from "./case/trigger/trigger.text"; |
||||
export { SelectTextTrigger } from "./case/trigger/trigger.text.select"; |
||||
export { DateInterval } from "./widget/timeinterval/dateinterval"; |
||||
export { DynamicDatePane } from "./widget/datepane/datepane"; |
||||
export { AllCountPager } from "./case/pager/pager.all.count"; |
||||
export { DirectionPager } from "./case/pager/pager.direction"; |
||||
export { PopupView } from "./base/layer/layer.popup"; |
||||
export { BubblePopupView, BubblePopupBarView, TextBubblePopupBarView } from "./case/combo/bubblecombo/popup.bubble"; |
||||
export { ArrowTreeGroupNodeCheckbox } from "./case/checkbox/check.arrownode"; |
||||
export { NumberInterval } from "./widget/numberinterval/numberinterval"; |
||||
export { DynamicYearQuarterCombo } from "./widget/yearquarter/combo.yearquarter"; |
||||
export { DynamicYearCombo } from "./widget/year/combo.year"; |
||||
export { DynamicYearPopup } from "./widget/year/popup.year"; |
||||
export { IntervalSlider } from "./widget/intervalslider/intervalslider"; |
||||
export { MultiSelectInsertList } from "./widget/multiselectlist/multiselectlist.insert"; |
||||
export { YearMonthInterval } from "./widget/yearmonthinterval/yearmonthinterval"; |
||||
export { NumberEditor } from "./widget/numbereditor/numbereditor"; |
||||
export { TextValueCheckCombo } from "./case/combo/textvaluecheckcombo/combo.textvaluecheck"; |
||||
export { Segment } from "./case/segment/segment"; |
||||
export { LinearSegment } from "./case/linersegment/linear.segment"; |
||||
export { Img } from "./base/single/img/img"; |
||||
export { EditorIconCheckCombo } from "./case/combo/editoriconcheckcombo/combo.editiconcheck"; |
||||
export { IconTextValueCombo } from "./case/combo/icontextvaluecombo/combo.icontextvalue"; |
||||
export { ListView } from "./base/list/listview"; |
||||
export { VirtualList } from "./base/list/virtuallist"; |
||||
export { VirtualGroupList } from "./base/list/virtualgrouplist"; |
||||
export { FloatCenterLayout } from "./core/wrapper/layout/middle/middle.float.center"; |
||||
export { Msg } from "./base/foundation/message"; |
||||
export { DynamicYearMonthPopup } from "./widget/yearmonth/popup.yearmonth"; |
||||
export { Controller } from "./core/controller/controller"; |
||||
export { LayerController } from "./core/controller/controller.layer"; |
||||
export { DateCalendarPopup } from "./widget/date/calendar/popup.calendar.date"; |
||||
export { Tree, Node } from "./core/utils/tree"; |
||||
export { TextNode } from "./base/single/button/node/textnode"; |
||||
export { TextValueCheckComboPopup } from "./case/combo/textvaluecheckcombo/popup.textvaluecheck"; |
||||
export { ImageButton } from "./base/single/button/buttons/button.image"; |
||||
export { History, Router } from "./router/router"; |
||||
export { DateTimeCombo } from "./widget/datetime/datetime.combo"; |
||||
export { FloatHorizontalLayout } from "./core/wrapper/layout/adapt/float.horizontal"; |
||||
export { AdaptiveLayout } from "./core/wrapper/layout/layout.adaptive"; |
||||
export { HexColorChooserPopup } from "./case/colorchooser/colorchooser.popup.hex"; |
||||
export { BlankIconTextItem } from "./base/single/button/listitem/blankicontextitem"; |
||||
export { Broadcasts, Layers, StyleLoaders } from "./base/base"; |
||||
export { BroadcastController } from "./core/controller/controller.broadcast"; |
||||
export { Pager } from "./base/pager/pager"; |
||||
export { TimeInterval } from "./widget/timeinterval/timeinterval"; |
||||
export { DynamicDateTimePane } from "./widget/datetimepane/datetimepane"; |
||||
export { SingleSelectInsertList } from "./widget/singleselect/singleselectlist.insert"; |
||||
export { MultiSelectTree } from "./widget/multiselecttree/multiselecttree"; |
||||
export { HtmlLabel } from "./base/single/label/html.label"; |
||||
export { TreeValueChooserPane } from "./component/treevaluechooser/pane.treevaluechooser"; |
||||
export { TdLayout } from "./core/wrapper/layout/layout.td"; |
||||
export { MultiLayerSelectLevelTree } from "./widget/multilayerselecttree/multilayerselecttree.leveltree"; |
||||
export { SelectTreeExpander } from "./widget/selecttree/selecttree.expander"; |
||||
export { DownListGroupItem } from "./widget/downlist/item.downlistgroup"; |
||||
export { VerticalStickyLayout } from "./core/wrapper/layout/sticky/sticky.vertical"; |
||||
export { HorizontalStickyLayout } from "./core/wrapper/layout/sticky/sticky.horizontal"; |
||||
export { TableLayout } from "./core/wrapper/layout/layout.table"; |
||||
export { Workers } from "./core/worker/workers"; |
||||
|
||||
import "./fix/fix"; |
||||
|
Loading…
Reference in new issue