Browse Source

Merge branch 'master' of ssh://code.fineres.com:7999/~dailer/fineui

es6
zsmj 2 years ago
parent
commit
aeef4b9646
  1. 2
      package.json
  2. 12
      src/less/core/utils/common.less
  3. 2
      typescript/base/foundation/message.ts

2
package.json

@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20220613220728",
"version": "2.0.20220614170402",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

12
src/less/core/utils/common.less

@ -175,6 +175,18 @@
}
}
.bi-theme-dark {
.bi-tips {
color: @color-bi-text-tips-theme-dark;
& .bi-input {
color: @color-bi-text-tips-theme-dark;;
}
& .bi-textarea {
color: @color-bi-text-tips-theme-dark;
}
}
}
// 边框
.bi-border {
border: 1px solid @color-bi-border-line;

2
typescript/base/foundation/message.ts

@ -9,5 +9,5 @@ export type _msg = {
alert: (title: string, message?: string | { [key: string]: any }, callback?: (result?: boolean) => void) => void
confirm: (title: string, message?: string | { [key: string]: any }, callback?: (result: boolean) => void) => void
prompt: (title: string, message?: string, value?: any, callback?: (result: string) => void, minWidth?: number) => void
toast: (message: string | Obj, options?: toastOptions | string, context?: HTMLElement) => void
toast: (message: string | Obj, options?: toastOptions | string, context?: HTMLElement) => Function
}

Loading…
Cancel
Save