forked from fanruan/fineui
Kira
3 years ago
98 changed files with 1641 additions and 884 deletions
Binary file not shown.
Before Width: | Height: | Size: 470 KiB After Width: | Height: | Size: 607 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,57 +1,57 @@
|
||||
//字体库 |
||||
|
||||
@font-cross: "e6d0"; |
||||
@font-cross: "e1ab"; |
||||
|
||||
@font-circle-close: "e6d5"; |
||||
@font-circle-close: "e1a9"; |
||||
|
||||
@font-search: "e6dc"; |
||||
@font-search: "e1c3"; |
||||
|
||||
@font-date: "e733"; |
||||
@font-time: "e6b1"; |
||||
@font-change: "e72f"; |
||||
@font-date: "e1d3"; |
||||
@font-time: "e1ae"; |
||||
@font-change: "e1cd"; |
||||
|
||||
@font-dot: "e762"; |
||||
@font-dot: "e1aa"; |
||||
|
||||
@font-plus: "e75b"; |
||||
@font-minus: "e75a"; |
||||
@font-plus: "e1a0"; |
||||
@font-minus: "e19e"; |
||||
|
||||
@font-right-triangle: "e70c"; |
||||
@font-right-triangle: "e1bd"; |
||||
|
||||
@font-copy: "e6bd"; |
||||
@font-check-mark: "e6cf"; |
||||
@font-copy: "e1ad"; |
||||
@font-check-mark: "e1b0"; |
||||
|
||||
@font-arrow-left: "e70d"; |
||||
@font-arrow-right: "e70c"; |
||||
@font-arrow-left: "e1bc"; |
||||
@font-arrow-right: "e1bd"; |
||||
|
||||
@font-up-triangle: "e70a"; |
||||
@font-down-triangle: "e70b"; |
||||
@font-up-triangle: "e1c6"; |
||||
@font-down-triangle: "e1c9"; |
||||
|
||||
@font-solid-left: "e6d9"; |
||||
@font-solid-right: "e6d8"; |
||||
@font-solid-top: "e6d6"; |
||||
@font-solid-bottom: "e6d7"; |
||||
@font-solid-left: "e1c4"; |
||||
@font-solid-right: "e1a5"; |
||||
@font-solid-top: "e1ac"; |
||||
@font-solid-bottom: "e1c0"; |
||||
|
||||
@font-trigger-triangle: "e64e"; |
||||
@font-trigger-triangle: "e1d5"; |
||||
|
||||
|
||||
@font-less: "e75e"; |
||||
@font-less-equal: "e761"; |
||||
@font-less: "e1d1"; |
||||
@font-less-equal: "e1d2"; |
||||
|
||||
@font-bold: "e697"; |
||||
@font-italic: "e69d"; |
||||
@font-underline: "e69c"; |
||||
@font-color: "e698"; |
||||
@font-background: "e699"; |
||||
@font-color-underline: "e69a"; |
||||
@font-align-left: "e6ca"; |
||||
@font-align-center: "e6bf"; |
||||
@font-align-right: "e6c8"; |
||||
@font-bold: "e19b"; |
||||
@font-italic: "e199"; |
||||
@font-underline: "e1d6"; |
||||
@font-color: "e198"; |
||||
@font-background: "e19a"; |
||||
@font-color-underline: "e19c"; |
||||
@font-align-left: "e1a7"; |
||||
@font-align-center: "e1a2"; |
||||
@font-align-right: "e1af"; |
||||
|
||||
@font-tip-error: "e757"; |
||||
@font-tip-success: "e756"; |
||||
@font-tip-warning: "e755"; |
||||
@font-tip-message: "e74b"; |
||||
@font-tip-error: "e1da"; |
||||
@font-tip-success: "e1db"; |
||||
@font-tip-warning: "e1d7"; |
||||
@font-tip-message: "e1d9"; |
||||
|
||||
@font-key: "e740"; |
||||
@font-key: "e1d0"; |
||||
|
||||
@font-add: "e6dd"; |
||||
@font-add: "e1c7"; |
||||
|
@ -0,0 +1,8 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class Segment extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
setEnabledValue(v: any): void; |
||||
} |
@ -0,0 +1,14 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
|
||||
export declare class Form extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
|
||||
isAllValid(): boolean; |
||||
|
||||
validateWithNoTip(): boolean[]; |
||||
|
||||
validate(): boolean[]; |
||||
|
||||
getValue<T>(): T[]; |
||||
} |
Loading…
Reference in new issue