@opentiny/vue-grid
Advanced tools
Comparing version 3.12.0 to 3.12.1
{ | ||
"name": "@opentiny/vue-grid", | ||
"version": "3.12.0", | ||
"version": "3.12.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -242,5 +242,8 @@ /** | ||
tiny_mode_root: boolean; | ||
formatConfig: Record<string, any>; | ||
showIcon: boolean; | ||
group: boolean; | ||
formatConfig: Record<string, any>; | ||
sortable: boolean; | ||
remoteSort: boolean; | ||
treeNode: boolean; | ||
showTip: boolean; | ||
showHeaderTip: boolean; | ||
@@ -250,8 +253,5 @@ resizable: boolean; | ||
showOverflow: string | boolean; | ||
showTip: boolean; | ||
treeNode: boolean; | ||
sortable: boolean; | ||
remoteSort: boolean; | ||
group: boolean; | ||
filterMultiple: boolean; | ||
}, {}>; | ||
export default _default; |
@@ -220,3 +220,2 @@ /** | ||
gcls: (key: any) => any; | ||
m: (...cssClasses: any[]) => string; | ||
}, { | ||
@@ -479,8 +478,9 @@ emitter: { | ||
border: boolean; | ||
loading: boolean; | ||
showHeader: boolean; | ||
showFooter: boolean; | ||
align: string; | ||
tooltipConfig: Record<string, any>; | ||
isBeforePageChange: boolean; | ||
sortable: boolean; | ||
remoteSort: boolean; | ||
startIndex: number; | ||
rowKey: boolean; | ||
viewType: string; | ||
mfShow: string; | ||
highlightCurrentRow: boolean; | ||
highlightCurrentColumn: boolean; | ||
@@ -493,17 +493,15 @@ columnKey: boolean; | ||
headerAlign: string; | ||
align: string; | ||
footerAlign: string; | ||
showOverflow: string | boolean; | ||
startIndex: number; | ||
highlightCurrentRow: boolean; | ||
rowId: string; | ||
rowKey: boolean; | ||
isCenterEmpty: boolean; | ||
loading: boolean; | ||
remoteFilter: boolean; | ||
sortable: boolean; | ||
remoteSort: boolean; | ||
showFooter: boolean; | ||
showHeader: boolean; | ||
fit: boolean; | ||
tooltipConfig: Record<string, any>; | ||
isAsyncColumn: boolean; | ||
isMultipleHistory: boolean; | ||
viewType: string; | ||
mfShow: string; | ||
highlightCell: boolean; | ||
@@ -517,2 +515,3 @@ stripe: boolean; | ||
autoResize: boolean; | ||
isBeforePageChange: boolean; | ||
autoLoad: boolean; | ||
@@ -519,0 +518,0 @@ seqSerial: boolean; |
@@ -13,3 +13,3 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{ | ||
vSize(): any; | ||
}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ | ||
}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ | ||
modelValue: (StringConstructor | NumberConstructor)[]; | ||
@@ -16,0 +16,0 @@ label: (StringConstructor | NumberConstructor)[]; |
declare const _default: { | ||
_validate(rows: any, cb: any): Promise<void>; | ||
_fullValidate(rows: any, cb: any): Promise<void>; | ||
_validate(rows: any, cb: any): Promise<unknown>; | ||
_fullValidate(rows: any, cb: any): Promise<unknown>; | ||
handleValidError(params: any): void; | ||
@@ -11,5 +11,6 @@ validatePromise(row: any, column: any, columnIndex: any, isAll: any, validRest: any): Promise<unknown>; | ||
* 如果只传 callback 否则默认验证整个表格数据 | ||
* isAll: 是否全量校验,如果为true会校验所有并返回所有不通过的列 | ||
* 返回 Promise 对象,或者使用回调方式 | ||
*/ | ||
beginValidate(rows: any, cb: any, isAll: any): Promise<void>; | ||
beginValidate(rows: any, callback: any, isAll: any): Promise<unknown>; | ||
hasCellRules(type: any, row: any, { property }: { | ||
@@ -31,4 +32,8 @@ property: any; | ||
* trigger为blur|change表示触发方式(默认为空就行,除非特殊场景); | ||
* @param {'change' | 'all'} type 校验单元格的触发方式 | ||
* @param { IRow } row 表格的行数据 | ||
* @param { IColumnConfig } column 表格的行数据 | ||
* @param { any } defaultValue 需要校验的默认值 | ||
*/ | ||
validCellRules(type: any, row: any, column: any, defVal: any): Promise<void>; | ||
validCellRules(type: any, row: any, column: any, defaultValue: any): Promise<void>; | ||
_clearValidate(): any; | ||
@@ -35,0 +40,0 @@ triggerValidate(type: any): Promise<void>; |
@@ -5,5 +5,5 @@ export declare function adjustParams(rows: any, cb: any, vaildDatas: any): { | ||
}; | ||
export declare function columnHandler({ _vm, colVailds, editRules, isAll, row, validRest }: { | ||
export declare const columnHandler: ({ _vm, colValidPromiseArr, editRules, isAll, row, validRest }: { | ||
_vm: any; | ||
colVailds: any; | ||
colValidPromiseArr: any; | ||
editRules: any; | ||
@@ -13,5 +13,4 @@ isAll: any; | ||
validRest: any; | ||
}): (column: any, columnIndex: any) => void; | ||
export declare function hasNoEditRules(cb: any, status: any): void; | ||
export declare function realValid({ _vm, editRules, isAll, validRest, treeConfig, hasTreeExpand, vaildDatas, treeOpts }: { | ||
}) => (column: any, columnIndex: any) => void; | ||
export declare const realValid: ({ _vm, editRules, isAll, validRest, treeConfig, hasTreeExpand, vaildDatas, treeOpts }: { | ||
_vm: any; | ||
@@ -25,2 +24,2 @@ editRules: any; | ||
treeOpts: any; | ||
}): never[]; | ||
}) => never[]; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
676047
18674