@visactor/vtable-gantt 1.26.6 → 1.26.7
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/components/MenuElementStyle.js +1 -2
- package/cjs/event/touch.js +1 -0
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/scenegraph/timeline-header.js +1 -2
- package/cjs/state/gantt-table-sync.js +1 -0
- package/dist/vtable-gantt.js +841 -324
- package/dist/vtable-gantt.min.js +1 -1
- package/es/components/MenuElementStyle.js +1 -2
- package/es/event/touch.js +2 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/es/scenegraph/timeline-header.js +1 -2
- package/es/state/gantt-table-sync.js +2 -1
- package/package.json +3 -3
|
@@ -8,5 +8,4 @@ function importStyle() {
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "__esModule", {
|
|
10
10
|
value: !0
|
|
11
|
-
}), exports.importStyle = void 0, exports.importStyle = importStyle;
|
|
12
|
-
//# sourceMappingURL=MenuElementStyle.js.map
|
|
11
|
+
}), exports.importStyle = void 0, exports.importStyle = importStyle;
|
package/cjs/event/touch.js
CHANGED
package/cjs/index.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ import * as tools from './tools';
|
|
|
7
7
|
import * as VRender from './vrender';
|
|
8
8
|
import * as VTable from './vtable';
|
|
9
9
|
import * as plugins from './plugins';
|
|
10
|
-
export declare const version = "1.26.
|
|
10
|
+
export declare const version = "1.26.7";
|
|
11
11
|
export { TYPES, GanttConstructorOptions, Gantt, ColumnsDefine, ColumnDefine, LinkColumnDefine, ChartColumnDefine, ImageColumnDefine, SparklineColumnDefine, ProgressbarColumnDefine, TextColumnDefine, GroupColumnDefine, TextAlignType, TextBaselineType, TABLE_EVENT_TYPE, tools, VRender, VTable, plugins };
|
package/cjs/index.js
CHANGED
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,kDAAoC;AAyBlC,sBAAK;AAXP,6CAAoD;AAyBlD,iGAzBO,yBAAgB,OAyBP;AAxBlB,mCAAgC;AAY9B,sFAZO,aAAK,OAYP;AAXP,+CAAiC;AAwB/B,sBAAK;AAvBP,mDAAqC;AAwBnC,0BAAO;AAvBT,iDAAmC;AAwBjC,wBAAM;AAvBR,mDAAqC;AAwBnC,0BAAO;AAvBI,QAAA,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import type { GanttConstructorOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport type {\n ColumnDefine,\n ColumnsDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType\n} from '@visactor/vtable';\nimport { TABLE_EVENT_TYPE } from '@visactor/vtable';\nimport { Gantt } from './Gantt';\nimport * as tools from './tools';\nimport * as VRender from './vrender';\nimport * as VTable from './vtable';\nimport * as plugins from './plugins';\nexport const version = \"1.26.
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,kDAAoC;AAyBlC,sBAAK;AAXP,6CAAoD;AAyBlD,iGAzBO,yBAAgB,OAyBP;AAxBlB,mCAAgC;AAY9B,sFAZO,aAAK,OAYP;AAXP,+CAAiC;AAwB/B,sBAAK;AAvBP,mDAAqC;AAwBnC,0BAAO;AAvBT,iDAAmC;AAwBjC,wBAAM;AAvBR,mDAAqC;AAwBnC,0BAAO;AAvBI,QAAA,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import type { GanttConstructorOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport type {\n ColumnDefine,\n ColumnsDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType\n} from '@visactor/vtable';\nimport { TABLE_EVENT_TYPE } from '@visactor/vtable';\nimport { Gantt } from './Gantt';\nimport * as tools from './tools';\nimport * as VRender from './vrender';\nimport * as VTable from './vtable';\nimport * as plugins from './plugins';\nexport const version = \"1.26.7\";\n/**\n * @namespace VTableGantt\n */\nexport {\n TYPES,\n GanttConstructorOptions,\n Gantt,\n ColumnsDefine,\n ColumnDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType,\n TABLE_EVENT_TYPE,\n tools,\n VRender,\n VTable,\n plugins\n};\n"]}
|
|
@@ -108,6 +108,7 @@ function _syncTableSize(gantt) {
|
|
|
108
108
|
gantt._updateSize(), (0, gantt_helper_1.updateSplitLineAndResizeLine)(gantt), gantt.zoomScaleManager && gantt.zoomScaleManager.handleTableWidthChange());
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
+
//# sourceMappingURL=gantt-table-sync.js.map
|
|
111
112
|
exports.syncScrollStateToTable = syncScrollStateToTable, exports.syncScrollStateFromTable = syncScrollStateFromTable,
|
|
112
113
|
exports.syncEditCellFromTable = syncEditCellFromTable, exports.syncTreeChangeFromTable = syncTreeChangeFromTable,
|
|
113
114
|
exports.syncSortFromTable = syncSortFromTable, exports.syncDragOrderFromTable = syncDragOrderFromTable,
|