Skip to content

Commit 71e6203

Browse files
author
sunlei
committed
updates: import table performance, s3 datasource and fix some issues
- feat: user list show detail info - feat: formTextAreaItem customize size - feat: plugin query & s3 datasource - feat: vika query add raw command - feat: select / table filter ignore case sensitivity - fix: table performance - fix: auto-completion for columns context, table datetime type col ui, table link color and other table issues - fix: audio/video component add default url and fix autoPlay issue - fix: throttle ignore last - fix: js code format error issue - fix: theme not work in AppView
1 parent 4a297e5 commit 71e6203

File tree

114 files changed

+10353
-1057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+10353
-1057
lines changed

client/packages/openblocks-core/lib/index.cjs

Lines changed: 7578 additions & 0 deletions
Large diffs are not rendered by default.

client/packages/openblocks-core/lib/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ declare class RecursivePerfUtil {
329329
private getRecordByStack;
330330
perf<T>(obj: any, info: string, fn: () => T): T;
331331
clear: () => void;
332-
print: (...stack: number[]) => void;
332+
print: (stack: number[], cost_ms_print_thr?: number) => void;
333333
}
334334
declare const evalPerfUtil: RecursivePerfUtil;
335335

@@ -742,7 +742,7 @@ declare type VariableValue = string | number | boolean | Date;
742742
declare class Translator<Messages extends object> {
743743
private readonly messages;
744744
readonly language: string;
745-
constructor(fileData: object, filterLocales?: string);
745+
constructor(fileData: object, filterLocales?: string, locales?: string[]);
746746
trans(
747747
key: NestedKey<Messages> | GlobalMessageKey,
748748
variables?: Record<string, VariableValue>

0 commit comments

Comments
 (0)