@hpcc-js/common 2.68.1 → 2.69.0
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/dist/index.es6.js +8 -2
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +2 -2
- package/src/Widget.ts +8 -0
- package/src/__package__.ts +2 -2
- package/types/Widget.d.ts +2 -0
- package/types/Widget.d.ts.map +1 -1
- package/types/__package__.d.ts +2 -2
- package/types-3.4/Widget.d.ts +2 -0
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.es6.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { classID2Meta, hashSum, isArray } from '@hpcc-js/util';
|
|
2
2
|
|
|
3
3
|
var PKG_NAME = "@hpcc-js/common";
|
|
4
|
-
var PKG_VERSION = "2.
|
|
5
|
-
var BUILD_VERSION = "2.103.
|
|
4
|
+
var PKG_VERSION = "2.69.0";
|
|
5
|
+
var BUILD_VERSION = "2.103.2";
|
|
6
6
|
|
|
7
7
|
/*! *****************************************************************************
|
|
8
8
|
Copyright (c) Microsoft Corporation.
|
|
@@ -8185,6 +8185,12 @@ var Widget = /** @class */ (function (_super) {
|
|
|
8185
8185
|
}
|
|
8186
8186
|
return _this;
|
|
8187
8187
|
}
|
|
8188
|
+
Widget.prototype.columnChecksum = function () {
|
|
8189
|
+
return this._db.fieldsChecksum();
|
|
8190
|
+
};
|
|
8191
|
+
Widget.prototype.dataChecksum = function () {
|
|
8192
|
+
return this._db.dataChecksum();
|
|
8193
|
+
};
|
|
8188
8194
|
Widget.prototype.importJSON = function (_) {
|
|
8189
8195
|
this._db.json(_);
|
|
8190
8196
|
return this;
|