@visactor/vtable 1.11.6-alpha.1 → 1.11.6-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/ListTable.js +3 -2
- package/cjs/ListTable.js.map +1 -1
- package/cjs/PivotTable.js +4 -1
- package/cjs/PivotTable.js.map +1 -1
- package/cjs/core/BaseTable.js +1 -1
- package/cjs/core/BaseTable.js.map +1 -1
- package/cjs/core/tableHelper.js +2 -1
- package/cjs/dataset/dataset-pivot-table.js +1 -2
- package/cjs/edit/edit-manager.js +0 -2
- package/cjs/edit/edit-manager.js.map +1 -1
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/plugins/custom-cell-style.d.ts +1 -1
- package/cjs/plugins/custom-cell-style.js +17 -26
- package/cjs/plugins/custom-cell-style.js.map +1 -1
- package/cjs/scenegraph/group-creater/cell-helper.d.ts +1 -1
- package/cjs/scenegraph/group-creater/cell-helper.js +2 -2
- package/cjs/scenegraph/group-creater/cell-helper.js.map +1 -1
- package/cjs/scenegraph/scenegraph.d.ts +1 -1
- package/cjs/scenegraph/scenegraph.js +2 -2
- package/cjs/scenegraph/scenegraph.js.map +1 -1
- package/cjs/ts-types/column/style.d.ts +0 -1
- package/cjs/ts-types/column/style.js +1 -1
- package/cjs/ts-types/column/style.js.map +1 -1
- package/cjs/vrender.js.map +1 -1
- package/dist/vtable.js +13 -29
- package/dist/vtable.min.js +2 -2
- package/es/ListTable.js +3 -2
- package/es/ListTable.js.map +1 -1
- package/es/PivotTable.js +4 -1
- package/es/PivotTable.js.map +1 -1
- package/es/core/BaseTable.js +1 -1
- package/es/core/BaseTable.js.map +1 -1
- package/es/core/tableHelper.js +2 -1
- package/es/dataset/dataset-pivot-table.js +1 -2
- package/es/edit/edit-manager.js +0 -2
- package/es/edit/edit-manager.js.map +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/es/plugins/custom-cell-style.d.ts +1 -1
- package/es/plugins/custom-cell-style.js +16 -27
- package/es/plugins/custom-cell-style.js.map +1 -1
- package/es/scenegraph/group-creater/cell-helper.d.ts +1 -1
- package/es/scenegraph/group-creater/cell-helper.js +2 -2
- package/es/scenegraph/group-creater/cell-helper.js.map +1 -1
- package/es/scenegraph/scenegraph.d.ts +1 -1
- package/es/scenegraph/scenegraph.js +2 -2
- package/es/scenegraph/scenegraph.js.map +1 -1
- package/es/ts-types/column/style.d.ts +0 -1
- package/es/ts-types/column/style.js +1 -1
- package/es/ts-types/column/style.js.map +1 -1
- package/es/vrender.js.map +1 -1
- package/package.json +4 -4
|
@@ -48,7 +48,6 @@ export interface IStyleOption {
|
|
|
48
48
|
textStickBaseOnAlign?: boolean;
|
|
49
49
|
marked?: MarkedPropertyDefine;
|
|
50
50
|
}
|
|
51
|
-
export declare const cellStyleKeys: string[];
|
|
52
51
|
export interface ITextStyleOption extends IStyleOption {
|
|
53
52
|
autoWrapText?: boolean;
|
|
54
53
|
lineClamp?: LineClamp;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/ts-types/column/style.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/ts-types/column/style.ts"],"names":[],"mappings":"","file":"style.js","sourcesContent":["import type { LineWidthsPropertyDefine } from '..';\nimport { PaddingPropertyDefine } from '..';\nimport type {\n ColorPropertyDefine,\n ColorsPropertyDefine,\n IconPropertyDefine,\n LineClamp,\n LineDashsPropertyDefine,\n TextOverflow,\n UnderlinePropertyDefine,\n LineDashPropertyDefine,\n LineThroughPropertyDefine,\n TagPropertyDefine,\n PaddingsPropertyDefine,\n StylePropertyFunctionArg,\n CursorPropertyDefine,\n MarkedPropertyDefine,\n FontSizePropertyDefine,\n FontFamilyPropertyDefine,\n FontWeightPropertyDefine,\n FontVariantPropertyDefine,\n FontStylePropertyDefine,\n TextAlignType,\n TextBaselineType\n} from '../style-define';\nimport type { ThemeStyle } from '../theme';\n//这个style是在绘制里面的内容时用到的,用不到borderColor和borderLineWidth,所以和IStyleOption有些不一致\nexport interface ColumnStyle {\n padding?: PaddingsPropertyDefine;\n bgColor?: ColorPropertyDefine;\n // eslint-disable-next-line no-undef\n textAlign?: TextAlignType;\n // eslint-disable-next-line no-undef\n textBaseline?: TextBaselineType;\n color?: ColorPropertyDefine;\n\n fontSize?: FontSizePropertyDefine;\n fontFamily?: FontFamilyPropertyDefine;\n fontWeight?: FontWeightPropertyDefine;\n fontVariant?: FontVariantPropertyDefine;\n fontStyle?: FontStylePropertyDefine;\n\n textOverflow?: TextOverflow;\n // doChangeStyle: () => void;\n clone: () => ColumnStyle;\n linkColor?: ColorPropertyDefine;\n}\n\nexport type IHeaderStyle = ColumnStyle;\n\nexport type ISortheaderSyle = IHeaderStyle;\n\nexport interface IStyleOption {\n bgColor?: ColorPropertyDefine;\n padding?: PaddingsPropertyDefine;\n textAlign?: TextAlignType;\n textBaseline?: TextBaselineType;\n color?: ColorPropertyDefine;\n strokeColor?: ColorPropertyDefine;\n\n fontSize?: FontSizePropertyDefine;\n fontFamily?: FontFamilyPropertyDefine;\n fontWeight?: FontWeightPropertyDefine;\n fontVariant?: FontVariantPropertyDefine;\n fontStyle?: FontStylePropertyDefine;\n\n textOverflow?: TextOverflow;\n borderColor?: ColorsPropertyDefine;\n borderLineWidth?: LineWidthsPropertyDefine;\n\n lineHeight?: number;\n underline?: UnderlinePropertyDefine;\n /** TODO */\n underlineColor?: ColorPropertyDefine;\n underlineDash?: LineDashPropertyDefine;\n underlineOffset?: number;\n lineThrough?: LineThroughPropertyDefine;\n /** TODO */\n lineThroughColor?: ColorPropertyDefine;\n /** TODO */\n lineThroughDash?: LineDashPropertyDefine;\n\n borderLineDash?: LineDashsPropertyDefine;\n linkColor?: ColorPropertyDefine;\n\n // tag?: TagPropertyDefine;\n // tagFont?: FontPropertyDefine;\n // tagColor?: ColorPropertyDefine;\n // tagBgColor?: ColorPropertyDefine;\n // tagMargin?: number | string | (number | string)[];\n\n // dropDownIcon?: IconPropertyDefine;\n // dropDownHoverIcon?: IconPropertyDefine;\n cursor?: CursorPropertyDefine;\n\n textStick?: boolean | 'vertical' | 'horizontal';\n textStickBaseOnAlign?: boolean;\n\n marked?: MarkedPropertyDefine;\n}\n\nexport interface ITextStyleOption extends IStyleOption {\n // lineHeight?: string | number;//移入IStyleOption中 单行文本类型也可以有\n autoWrapText?: boolean;\n lineClamp?: LineClamp;\n}\n\nexport interface IImageStyleOption extends IStyleOption {\n // imageSizing?: 'keep-aspect-ratio';\n // imageAutoSizing?: boolean;\n margin?: number;\n}\n// export type ISortHeaderStyleOption = IStyleOption;\n\nexport type ColumnStyleOption =\n | IStyleOption\n | ITextStyleOption\n | IImageStyleOption\n | ProgressBarStyleOption\n | CheckboxStyleOption\n | ((styleArg: StylePropertyFunctionArg) => IStyleOption | ITextStyleOption | IImageStyleOption);\n\nexport type HeaderStyleOption =\n | (IStyleOption & { textStick?: boolean | 'vertical' | 'horizontal' }) //表头可以配置吸附\n | ITextStyleOption\n | IImageStyleOption\n // | ISortHeaderStyleOption\n | ((styleArg: StylePropertyFunctionArg) => IStyleOption | ITextStyleOption | IImageStyleOption);\n// | ISortHeaderStyleOption\n\nexport type FullExtendStyle = HeaderStyleOption & ColumnStyleOption & ThemeStyle;\n\n// export interface BaseStyleOption {\n// bgColor?: ColorPropertyDefine;\n// }\n\n// export interface StdBaseStyleOption extends BaseStyleOption {\n// // eslint-disable-next-line no-undef\n// textAlign?: CanvasTextAlign;\n// // eslint-disable-next-line no-undef\n// textBaseline?: CanvasTextBaseline;\n// }\n// export interface StyleOption extends StdBaseStyleOption {\n// color?: ColorPropertyDefine;\n// font?: FontPropertyDefine;\n// padding?: PaddingsPropertyDefine;\n// textOverflow?: TextOverflow;\n// }\nexport interface ProgressBarStyleOption extends IStyleOption {\n // 是否显示进度条\n showBar?: boolean | ((args: StylePropertyFunctionArg) => boolean);\n // 进度条颜色\n barColor?: ColorPropertyDefine;\n // 进度条背景颜色\n barBgColor?: ColorPropertyDefine;\n // 进度条高度\n barHeight?: number | string;\n // 进度条距单元格底部距离\n barBottom?: number | string;\n // 进度条padding\n barPadding?: (number | string)[];\n // 进度条正向颜色\n barPositiveColor?: ColorPropertyDefine;\n // 进度条负向颜色\n barNegativeColor?: ColorPropertyDefine;\n // 进度条坐标轴轴颜色\n barAxisColor?: ColorPropertyDefine;\n // 进度条方向是否从右到左\n barRightToLeft?: boolean;\n\n // 是否显示进度条标记\n showBarMark?: boolean;\n // 进度条标记正向颜色\n barMarkPositiveColor?: ColorPropertyDefine;\n // 进度条标记负向颜色\n barMarkNegativeColor?: ColorPropertyDefine;\n // 进度条标记宽度\n barMarkWidth?: number;\n // 进度条标记位置\n barMarkPosition?: 'right' | 'bottom';\n}\n\nexport type CheckboxStyleOption = {\n size?: number;\n spaceBetweenTextAndIcon?: number;\n checkboxStyle?: CheckboxStyle;\n} & ITextStyleOption;\n\nexport type RadioStyleOption = {\n size?: number;\n spaceBetweenTextAndIcon?: number;\n spaceBetweenRadio?: number;\n radioStyle?: RadioStyle;\n} & ITextStyleOption;\n\nexport type CheckboxStyle = {\n // 选择框尺寸\n size?: number;\n // 选择框与文字间距\n spaceBetweenTextAndIcon?: number;\n\n // 未选中状态填充颜色\n defaultFill?: string;\n // 未选中状态描边颜色\n defaultStroke?: string;\n // disable状态填充颜色\n disableFill?: string;\n // checked状态填充颜色\n checkedFill?: string;\n // checked状态描边颜色\n checkedStroke?: string;\n // checked状态填充颜色\n disableCheckedFill?: string;\n // checked状态描边颜色\n disableCheckedStroke?: string;\n\n // checked状态图标url\n checkIconImage?: string;\n // indeterminate状态图标url\n indeterminateIconImage?: string;\n};\n\nexport type RadioStyle = {\n // 选择框尺寸\n size?: number;\n // 选择框与文字间距\n spaceBetweenTextAndIcon?: number;\n // 单元格内多个单选框,单选框直接的间距\n spaceBetweenRadio?: number;\n\n // 单选框环形图标外半径(会覆盖size)\n outerRadius?: number;\n // 单选框环形图标内半径\n innerRadius?: number;\n\n // 未选中状态填充颜色\n defaultFill?: string;\n // 未选中状态描边颜色\n defaultStroke?: string;\n // disable状态填充颜色\n disableFill?: string;\n // checked状态填充颜色\n checkedFill?: string;\n // checked状态描边颜色\n checkedStroke?: string;\n // checked状态填充颜色\n disableCheckedFill?: string;\n // checked状态描边颜色\n disableCheckedStroke?: string;\n};\n"]}
|
package/cjs/vrender.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/vrender.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qEAA0D;AAC1D,kCAAgC;AAChC,yDAAwH;AACxH,yDAqBgC;AAIhC,IAAI,QAAQ,GAAG,KAAK,CAAC;AACrB,SAAgB,kBAAkB;IAChC,IAAI,QAAQ,EAAE;QACZ,OAAO;KACR;IACD,QAAQ,GAAG,IAAI,CAAC;IAEhB,IAAA,+BAAgB,GAAE,CAAC;IAEnB,IAAI,IAAA,2BAAY,GAAE,EAAE;QAClB,IAAA,6BAAc,EAAC,wBAAS,CAAC,CAAC;KAC3B;SAAM,IAAI,IAAA,wBAAS,GAAE,EAAE;QACtB,IAAA,0BAAW,EAAC,wBAAS,CAAC,CAAC;KACxB;IACD,IAAA,0BAAW,GAAE,CAAC;IAGd,IAAA,6BAAc,GAAE,CAAC;IAEjB,IAAA,4BAAa,GAAE,CAAC;IAChB,IAAA,4BAAa,GAAE,CAAC;IAChB,IAAA,2BAAY,GAAE,CAAC;IAIf,IAAA,2BAAY,GAAE,CAAC;IAEf,IAAA,+BAAgB,GAAE,CAAC;IACnB,IAAA,iCAAkB,GAAE,CAAC;IACrB,IAAA,6BAAc,GAAE,CAAC;IACjB,IAAA,2BAAY,GAAE,CAAC;IACf,IAAA,uCAAwB,GAAE,CAAC;IAE3B,IAAA,+BAAU,GAAE,CAAC;IAEb,IAAA,uCAAwB,GAAE,CAAC;AAC7B,CAAC;AAnCD,gDAmCC;AAGD,uDAAqD;AAA5C,2GAAA,WAAW,OAAA;AACpB,uDAAsD;AAA7C,4GAAA,YAAY,OAAA;AAErB,yDAAuC;AACvC,yDAAuC;AACvC,+DAA6C","file":"vrender.js","sourcesContent":["import { loadPoptip } from '@visactor/vrender-components';\nimport '@visactor/vrender-core';\nimport { container, isBrowserEnv, isNodeEnv, preLoadAllModule, registerFlexLayoutPlugin } from '@visactor/vrender-core';\nimport {\n loadBrowserEnv,\n loadNodeEnv,\n registerArc,\n registerArc3d,\n registerArea,\n registerCircle,\n registerGlyph,\n registerGroup,\n registerImage,\n registerLine,\n registerPath,\n registerPolygon,\n registerPyramid3d,\n registerRect,\n registerRect3d,\n registerRichtext,\n registerShadowRoot,\n registerSymbol,\n registerText,\n registerWrapText\n} from '@visactor/vrender-kits';\n// 导出版本号\n// export const version = \"1.11.6-alpha.
|
|
1
|
+
{"version":3,"sources":["../src/vrender.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qEAA0D;AAC1D,kCAAgC;AAChC,yDAAwH;AACxH,yDAqBgC;AAIhC,IAAI,QAAQ,GAAG,KAAK,CAAC;AACrB,SAAgB,kBAAkB;IAChC,IAAI,QAAQ,EAAE;QACZ,OAAO;KACR;IACD,QAAQ,GAAG,IAAI,CAAC;IAEhB,IAAA,+BAAgB,GAAE,CAAC;IAEnB,IAAI,IAAA,2BAAY,GAAE,EAAE;QAClB,IAAA,6BAAc,EAAC,wBAAS,CAAC,CAAC;KAC3B;SAAM,IAAI,IAAA,wBAAS,GAAE,EAAE;QACtB,IAAA,0BAAW,EAAC,wBAAS,CAAC,CAAC;KACxB;IACD,IAAA,0BAAW,GAAE,CAAC;IAGd,IAAA,6BAAc,GAAE,CAAC;IAEjB,IAAA,4BAAa,GAAE,CAAC;IAChB,IAAA,4BAAa,GAAE,CAAC;IAChB,IAAA,2BAAY,GAAE,CAAC;IAIf,IAAA,2BAAY,GAAE,CAAC;IAEf,IAAA,+BAAgB,GAAE,CAAC;IACnB,IAAA,iCAAkB,GAAE,CAAC;IACrB,IAAA,6BAAc,GAAE,CAAC;IACjB,IAAA,2BAAY,GAAE,CAAC;IACf,IAAA,uCAAwB,GAAE,CAAC;IAE3B,IAAA,+BAAU,GAAE,CAAC;IAEb,IAAA,uCAAwB,GAAE,CAAC;AAC7B,CAAC;AAnCD,gDAmCC;AAGD,uDAAqD;AAA5C,2GAAA,WAAW,OAAA;AACpB,uDAAsD;AAA7C,4GAAA,YAAY,OAAA;AAErB,yDAAuC;AACvC,yDAAuC;AACvC,+DAA6C","file":"vrender.js","sourcesContent":["import { loadPoptip } from '@visactor/vrender-components';\nimport '@visactor/vrender-core';\nimport { container, isBrowserEnv, isNodeEnv, preLoadAllModule, registerFlexLayoutPlugin } from '@visactor/vrender-core';\nimport {\n loadBrowserEnv,\n loadNodeEnv,\n registerArc,\n registerArc3d,\n registerArea,\n registerCircle,\n registerGlyph,\n registerGroup,\n registerImage,\n registerLine,\n registerPath,\n registerPolygon,\n registerPyramid3d,\n registerRect,\n registerRect3d,\n registerRichtext,\n registerShadowRoot,\n registerSymbol,\n registerText,\n registerWrapText\n} from '@visactor/vrender-kits';\n// 导出版本号\n// export const version = \"1.11.6-alpha.2\";\n\nlet registed = false;\nexport function registerForVrender() {\n if (registed) {\n return;\n }\n registed = true;\n // 注册内置组件\n preLoadAllModule();\n\n if (isBrowserEnv()) {\n loadBrowserEnv(container);\n } else if (isNodeEnv()) {\n loadNodeEnv(container);\n }\n registerArc();\n // registerArc3d();\n // registerArea();\n registerCircle();\n // registerGlyph();\n registerGroup();\n registerImage();\n registerLine();\n // registerPath();\n // registerPolygon();\n // registerPyramid3d();\n registerRect();\n // registerRect3d();\n registerRichtext();\n registerShadowRoot();\n registerSymbol();\n registerText();\n registerFlexLayoutPlugin();\n // registerWrapText();\n loadPoptip();\n\n registerFlexLayoutPlugin();\n}\n\nexport type { Direction, Timeline } from '@visactor/vrender-core';\nexport { GroupFadeIn } from '@visactor/vrender-core';\nexport { GroupFadeOut } from '@visactor/vrender-core';\n\nexport * from '@visactor/vrender-core';\nexport * from '@visactor/vrender-kits';\nexport * from '@visactor/vrender-components';\n"]}
|
package/dist/vtable.js
CHANGED
|
@@ -26808,8 +26808,6 @@
|
|
|
26808
26808
|
HierarchyState["loading"] = "loading";
|
|
26809
26809
|
})(HierarchyState || (HierarchyState = {}));
|
|
26810
26810
|
|
|
26811
|
-
const cellStyleKeys = ['bgColor', 'color', 'strokeColor', 'borderColor', 'linkColor'];
|
|
26812
|
-
|
|
26813
26811
|
var AggregationType;
|
|
26814
26812
|
(function (AggregationType) {
|
|
26815
26813
|
AggregationType["RECORD"] = "RECORD";
|
|
@@ -26882,8 +26880,7 @@
|
|
|
26882
26880
|
get InteractionState () { return InteractionState; },
|
|
26883
26881
|
get InternalIconName () { return InternalIconName; },
|
|
26884
26882
|
get Placement () { return Placement; },
|
|
26885
|
-
get SortType () { return SortType; }
|
|
26886
|
-
cellStyleKeys: cellStyleKeys
|
|
26883
|
+
get SortType () { return SortType; }
|
|
26887
26884
|
});
|
|
26888
26885
|
|
|
26889
26886
|
let idCount$1 = 1;
|
|
@@ -36094,7 +36091,7 @@
|
|
|
36094
36091
|
cellGroup.onBeforeAttributeUpdate = onBeforeAttributeUpdateForInvertHighlight;
|
|
36095
36092
|
return cellGroup;
|
|
36096
36093
|
}
|
|
36097
|
-
function updateCell$1(col, row, table, addNew, isShadow
|
|
36094
|
+
function updateCell$1(col, row, table, addNew, isShadow) {
|
|
36098
36095
|
const oldCellGroup = table.scenegraph.highPerformanceGetCell(col, row, true);
|
|
36099
36096
|
const cellLocation = table.getCellLocation(col, row);
|
|
36100
36097
|
let value = table.getCellValue(col, row);
|
|
@@ -36156,7 +36153,7 @@
|
|
|
36156
36153
|
if (!addNew &&
|
|
36157
36154
|
!isMerge &&
|
|
36158
36155
|
!(define?.customLayout || define?.customRender || define?.headerCustomLayout || define?.headerCustomRender) &&
|
|
36159
|
-
|
|
36156
|
+
canUseFastUpdate(col, row, oldCellGroup, autoWrapText, mayHaveIcon, table)) {
|
|
36160
36157
|
const cellWidth = table.getColWidth(col);
|
|
36161
36158
|
const cellHeight = table.getRowHeight(row);
|
|
36162
36159
|
oldCellGroup.setAttributes({
|
|
@@ -47766,11 +47763,11 @@
|
|
|
47766
47763
|
updateDrill(visible, x, y, drillDown, drillUp) {
|
|
47767
47764
|
this.component.drillIcon.update(visible, x, y, drillDown, drillUp, this);
|
|
47768
47765
|
}
|
|
47769
|
-
updateCellContent(col, row
|
|
47766
|
+
updateCellContent(col, row) {
|
|
47770
47767
|
if (this.clear) {
|
|
47771
47768
|
return undefined;
|
|
47772
47769
|
}
|
|
47773
|
-
return updateCell$1(col, row, this.table
|
|
47770
|
+
return updateCell$1(col, row, this.table);
|
|
47774
47771
|
}
|
|
47775
47772
|
setPixelRatio(pixelRatio) {
|
|
47776
47773
|
this.stage.disableDirtyBounds();
|
|
@@ -57260,31 +57257,20 @@
|
|
|
57260
57257
|
else {
|
|
57261
57258
|
this.customCellStyleArrangement.splice(index, 1);
|
|
57262
57259
|
}
|
|
57263
|
-
const style = this.getCustomCellStyleOption(customStyleId)?.style;
|
|
57264
|
-
let forceFastUpdate;
|
|
57265
|
-
if (style) {
|
|
57266
|
-
forceFastUpdate = true;
|
|
57267
|
-
for (const key in style) {
|
|
57268
|
-
if (cellStyleKeys.indexOf(key) === -1) {
|
|
57269
|
-
forceFastUpdate = false;
|
|
57270
|
-
break;
|
|
57271
|
-
}
|
|
57272
|
-
}
|
|
57273
|
-
}
|
|
57274
57260
|
if (cellPos.range) {
|
|
57275
57261
|
for (let col = Math.max(0, cellPos.range.start.col); col <= Math.min(this.table.colCount - 1, cellPos.range.end.col); col++) {
|
|
57276
57262
|
for (let row = Math.max(0, cellPos.range.start.row); row <= Math.min(this.table.rowCount - 1, cellPos.range.end.row); row++) {
|
|
57277
57263
|
const range = this.table.getCellRange(col, row);
|
|
57278
57264
|
for (let c = range.start.col; c <= range.end.col; c++) {
|
|
57279
57265
|
for (let r = range.start.row; r <= range.end.row; r++) {
|
|
57280
|
-
this.table.scenegraph.updateCellContent(c, r
|
|
57266
|
+
this.table.scenegraph.updateCellContent(c, r);
|
|
57281
57267
|
}
|
|
57282
57268
|
}
|
|
57283
57269
|
}
|
|
57284
57270
|
}
|
|
57285
57271
|
}
|
|
57286
57272
|
else {
|
|
57287
|
-
this.table.scenegraph.updateCellContent(cellPos.col, cellPos.row
|
|
57273
|
+
this.table.scenegraph.updateCellContent(cellPos.col, cellPos.row);
|
|
57288
57274
|
}
|
|
57289
57275
|
this.table.scenegraph.updateNextFrame();
|
|
57290
57276
|
}
|
|
@@ -57573,7 +57559,7 @@
|
|
|
57573
57559
|
return TABLE_EVENT_TYPE;
|
|
57574
57560
|
}
|
|
57575
57561
|
options;
|
|
57576
|
-
version = "1.11.6-alpha.
|
|
57562
|
+
version = "1.11.6-alpha.2";
|
|
57577
57563
|
pagination;
|
|
57578
57564
|
id = `VTable${Date.now()}`;
|
|
57579
57565
|
headerStyleCache;
|
|
@@ -62684,12 +62670,6 @@
|
|
|
62684
62670
|
const dataValue = isValid$1(value) ? value : this.table.getCellOriginValue(col, row);
|
|
62685
62671
|
const rect = this.table.getCellRangeRelativeRect(this.table.getCellRange(col, row));
|
|
62686
62672
|
const referencePosition = { rect: { left: rect.left, top: rect.top, width: rect.width, height: rect.height } };
|
|
62687
|
-
if (col === this.table.colCount - 1) {
|
|
62688
|
-
referencePosition.rect.width = rect.width - 1;
|
|
62689
|
-
}
|
|
62690
|
-
if (row === this.table.rowCount - 1) {
|
|
62691
|
-
referencePosition.rect.height = rect.height - 1;
|
|
62692
|
-
}
|
|
62693
62673
|
editor.beginEditing && (void 0);
|
|
62694
62674
|
editor.beginEditing?.(this.table.getElement(), referencePosition, dataValue);
|
|
62695
62675
|
if (editor.bindSuccessCallback) ;
|
|
@@ -64079,7 +64059,9 @@
|
|
|
64079
64059
|
diffPositions.removeCellPositions = [];
|
|
64080
64060
|
this.scenegraph.proxy.refreshRowCount();
|
|
64081
64061
|
}
|
|
64062
|
+
this.reactCustomLayout?.clearCache();
|
|
64082
64063
|
this.scenegraph.updateRow(diffPositions.removeCellPositions, diffPositions.addCellPositions, updateCells, recalculateColWidths);
|
|
64064
|
+
this.reactCustomLayout?.updateAllCustomCell();
|
|
64083
64065
|
if (checkHasChart) {
|
|
64084
64066
|
if (this.autoFillWidth && !notFillWidth) {
|
|
64085
64067
|
notFillWidth = this.getAllColsWidth() <= this.tableNoFrameWidth;
|
|
@@ -74904,7 +74886,9 @@
|
|
|
74904
74886
|
this.refreshRowColCount();
|
|
74905
74887
|
this.clearCellStyleCache();
|
|
74906
74888
|
this.scenegraph.updateHierarchyIcon(col, row);
|
|
74889
|
+
this.reactCustomLayout?.clearCache();
|
|
74907
74890
|
this.scenegraph.updateRow(result.removeCellPositions, result.addCellPositions, result.updateCellPositions, recalculateColWidths);
|
|
74891
|
+
this.reactCustomLayout?.updateAllCustomCell();
|
|
74908
74892
|
if (checkHasChart) {
|
|
74909
74893
|
if (this.autoFillWidth && !notFillWidth) {
|
|
74910
74894
|
notFillWidth = this.getAllColsWidth() <= this.tableNoFrameWidth;
|
|
@@ -77028,7 +77012,7 @@
|
|
|
77028
77012
|
}
|
|
77029
77013
|
|
|
77030
77014
|
registerForVrender();
|
|
77031
|
-
const version = "1.11.6-alpha.
|
|
77015
|
+
const version = "1.11.6-alpha.2";
|
|
77032
77016
|
function getIcons() {
|
|
77033
77017
|
return get$2();
|
|
77034
77018
|
}
|