igniteui-webcomponents-datasources 6.3.0-beta.0 → 6.3.1-beta.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/esm2015/lib/ODataSchemaProvider.js +2 -1
- package/esm2015/lib/ODataVirtualDataSourceDataProvider.js +2 -1
- package/esm2015/lib/ODataVirtualDataSourceDataProviderWorker.js +2 -1
- package/esm2015/lib/ODataVirtualDataSourceDataProviderWorkerSettings.js +2 -1
- package/esm2015/lib/ODataVirtualDataSourceProviderTaskDataHolder.js +2 -1
- package/esm2015/lib/RestVirtualDataSourceDataProvider.js +2 -1
- package/esm2015/lib/RestVirtualDataSourceDataProviderWorker.js +2 -1
- package/esm2015/lib/RestVirtualDataSourceDataProviderWorkerSettings.js +2 -1
- package/esm2015/lib/RestVirtualDataSourceProviderTaskDataHolder.js +2 -1
- package/esm5/lib/ODataSchemaProvider.js +1 -2
- package/esm5/lib/ODataVirtualDataSourceDataProvider.js +1 -2
- package/esm5/lib/ODataVirtualDataSourceDataProviderWorker.js +1 -2
- package/esm5/lib/ODataVirtualDataSourceDataProviderWorkerSettings.js +1 -2
- package/esm5/lib/ODataVirtualDataSourceProviderTaskDataHolder.js +1 -2
- package/esm5/lib/RestVirtualDataSourceDataProvider.js +1 -2
- package/esm5/lib/RestVirtualDataSourceDataProviderWorker.js +1 -2
- package/esm5/lib/RestVirtualDataSourceDataProviderWorkerSettings.js +1 -2
- package/esm5/lib/RestVirtualDataSourceProviderTaskDataHolder.js +1 -2
- package/igniteui-webcomponents-datasources.d.ts +1 -1
- package/lib/Entity.d.ts +14 -14
- package/lib/EntityProperty.d.ts +12 -12
- package/lib/EntitySet.d.ts +15 -15
- package/lib/ODataDataSourcePage.d.ts +19 -19
- package/lib/ODataSchemaProvider.d.ts +12 -12
- package/lib/ODataVirtualDataSource.d.ts +28 -28
- package/lib/ODataVirtualDataSourceDataProvider.d.ts +120 -120
- package/lib/ODataVirtualDataSourceDataProviderWorker.d.ts +57 -57
- package/lib/ODataVirtualDataSourceDataProviderWorkerSettings.d.ts +42 -42
- package/lib/ODataVirtualDataSourceProviderTaskDataHolder.d.ts +5 -5
- package/lib/RestVirtualDataSource.d.ts +86 -86
- package/lib/RestVirtualDataSourceDataProvider.d.ts +171 -171
- package/lib/RestVirtualDataSourceDataProviderWorker.d.ts +70 -70
- package/lib/RestVirtualDataSourceDataProviderWorkerSettings.d.ts +93 -93
- package/lib/RestVirtualDataSourcePage.d.ts +19 -19
- package/lib/RestVirtualDataSourceProviderTaskDataHolder.d.ts +5 -5
- package/lib/Schema.d.ts +15 -15
- package/lib/util.d.ts +27 -27
- package/package.json +2 -2
- package/public_api.d.ts +18 -18
|
@@ -8,7 +8,7 @@ import { ODataDataSourceSchema } from "igniteui-webcomponents-core";
|
|
|
8
8
|
import { XmlNodeType } from "igniteui-webcomponents-core";
|
|
9
9
|
import { toArray, first } from './util';
|
|
10
10
|
import { fromEnum, typeCast } from "igniteui-webcomponents-core";
|
|
11
|
-
|
|
11
|
+
let ODataSchemaProvider = /*@__PURE__*/ (() => {
|
|
12
12
|
class ODataSchemaProvider {
|
|
13
13
|
constructor(metadataDocument) {
|
|
14
14
|
this._entityTypeSchemaNamespace = null;
|
|
@@ -120,3 +120,4 @@ export let ODataSchemaProvider = /*@__PURE__*/ (() => {
|
|
|
120
120
|
ODataSchemaProvider.nS = /*@__PURE__*/ XNamespace.get("http://docs.oasis-open.org/odata/ns/edm");
|
|
121
121
|
return ODataSchemaProvider;
|
|
122
122
|
})();
|
|
123
|
+
export { ODataSchemaProvider };
|
|
@@ -10,7 +10,7 @@ import { DataSourceDataProviderSchemaChangedEventArgs } from "igniteui-webcompon
|
|
|
10
10
|
import { DataSourceSchemaPropertyType } from "igniteui-webcomponents-core";
|
|
11
11
|
import { stringContains } from "igniteui-webcomponents-core";
|
|
12
12
|
import { SummaryDescriptionCollection } from "igniteui-webcomponents-core";
|
|
13
|
-
|
|
13
|
+
let ODataVirtualDataSourceDataProvider = /*@__PURE__*/ (() => {
|
|
14
14
|
class ODataVirtualDataSourceDataProvider extends Base {
|
|
15
15
|
constructor() {
|
|
16
16
|
super();
|
|
@@ -450,3 +450,4 @@ export let ODataVirtualDataSourceDataProvider = /*@__PURE__*/ (() => {
|
|
|
450
450
|
ODataVirtualDataSourceDataProvider.$t = /*@__PURE__*/ markType(ODataVirtualDataSourceDataProvider, 'ODataVirtualDataSourceDataProvider', Base.$type, [IDataSourceVirtualDataProvider_$type]);
|
|
451
451
|
return ODataVirtualDataSourceDataProvider;
|
|
452
452
|
})();
|
|
453
|
+
export { ODataVirtualDataSourceDataProvider };
|
|
@@ -15,7 +15,7 @@ import { DataSourceSummaryScope } from "igniteui-webcomponents-core";
|
|
|
15
15
|
import { DefaultSummaryResult } from "igniteui-webcomponents-core";
|
|
16
16
|
import { TransactionType } from "igniteui-webcomponents-core";
|
|
17
17
|
import { ODataDataSourceSchema } from "igniteui-webcomponents-core";
|
|
18
|
-
|
|
18
|
+
let ODataVirtualDataSourceDataProviderWorker = /*@__PURE__*/ (() => {
|
|
19
19
|
class ODataVirtualDataSourceDataProviderWorker extends AsyncVirtualDataSourceProviderWorker {
|
|
20
20
|
get sortDescriptions() {
|
|
21
21
|
return this._sortDescriptions;
|
|
@@ -710,3 +710,4 @@ export let ODataVirtualDataSourceDataProviderWorker = /*@__PURE__*/ (() => {
|
|
|
710
710
|
ODataVirtualDataSourceDataProviderWorker.schemaRequestIndex = -1;
|
|
711
711
|
return ODataVirtualDataSourceDataProviderWorker;
|
|
712
712
|
})();
|
|
713
|
+
export { ODataVirtualDataSourceDataProviderWorker };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
|
|
2
2
|
import { markType } from "igniteui-webcomponents-core";
|
|
3
|
-
|
|
3
|
+
let ODataVirtualDataSourceDataProviderWorkerSettings = /*@__PURE__*/ (() => {
|
|
4
4
|
class ODataVirtualDataSourceDataProviderWorkerSettings extends AsyncVirtualDataSourceDataProviderWorkerSettings {
|
|
5
5
|
constructor() {
|
|
6
6
|
super(...arguments);
|
|
@@ -83,3 +83,4 @@ export let ODataVirtualDataSourceDataProviderWorkerSettings = /*@__PURE__*/ (()
|
|
|
83
83
|
ODataVirtualDataSourceDataProviderWorkerSettings.$t = /*@__PURE__*/ markType(ODataVirtualDataSourceDataProviderWorkerSettings, 'ODataVirtualDataSourceDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$type);
|
|
84
84
|
return ODataVirtualDataSourceDataProviderWorkerSettings;
|
|
85
85
|
})();
|
|
86
|
+
export { ODataVirtualDataSourceDataProviderWorkerSettings };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AsyncVirtualDataSourceProviderTaskDataHolder } from "igniteui-webcomponents-core";
|
|
2
2
|
import { markType } from "igniteui-webcomponents-core";
|
|
3
|
-
|
|
3
|
+
let ODataVirtualDataSourceProviderTaskDataHolder = /*@__PURE__*/ (() => {
|
|
4
4
|
class ODataVirtualDataSourceProviderTaskDataHolder extends AsyncVirtualDataSourceProviderTaskDataHolder {
|
|
5
5
|
}
|
|
6
6
|
ODataVirtualDataSourceProviderTaskDataHolder.$t = /*@__PURE__*/ markType(ODataVirtualDataSourceProviderTaskDataHolder, 'ODataVirtualDataSourceProviderTaskDataHolder', AsyncVirtualDataSourceProviderTaskDataHolder.$type);
|
|
7
7
|
return ODataVirtualDataSourceProviderTaskDataHolder;
|
|
8
8
|
})();
|
|
9
|
+
export { ODataVirtualDataSourceProviderTaskDataHolder };
|
|
@@ -10,7 +10,7 @@ import { DataSourceDataProviderSchemaChangedEventArgs } from "igniteui-webcompon
|
|
|
10
10
|
import { DataSourceSchemaPropertyType } from "igniteui-webcomponents-core";
|
|
11
11
|
import { stringContains } from "igniteui-webcomponents-core";
|
|
12
12
|
import { SummaryDescriptionCollection } from "igniteui-webcomponents-core";
|
|
13
|
-
|
|
13
|
+
let RestVirtualDataSourceDataProvider = /*@__PURE__*/ (() => {
|
|
14
14
|
class RestVirtualDataSourceDataProvider extends Base {
|
|
15
15
|
constructor() {
|
|
16
16
|
super();
|
|
@@ -535,3 +535,4 @@ export let RestVirtualDataSourceDataProvider = /*@__PURE__*/ (() => {
|
|
|
535
535
|
RestVirtualDataSourceDataProvider.$t = /*@__PURE__*/ markType(RestVirtualDataSourceDataProvider, 'ODataVirtualDataSourceDataProvider', Base.$type, [IDataSourceVirtualDataProvider_$type]);
|
|
536
536
|
return RestVirtualDataSourceDataProvider;
|
|
537
537
|
})();
|
|
538
|
+
export { RestVirtualDataSourceDataProvider };
|
|
@@ -14,7 +14,7 @@ import { DataSourceSummaryScope } from "igniteui-webcomponents-core";
|
|
|
14
14
|
import { DefaultSummaryResult } from "igniteui-webcomponents-core";
|
|
15
15
|
import { LocalDataSource } from "igniteui-webcomponents-core";
|
|
16
16
|
import { DefaultDataSourceSchema } from "igniteui-webcomponents-core";
|
|
17
|
-
|
|
17
|
+
let RestVirtualDataSourceDataProviderWorker = /*@__PURE__*/ (() => {
|
|
18
18
|
class RestVirtualDataSourceDataProviderWorker extends AsyncVirtualDataSourceProviderWorker {
|
|
19
19
|
get sortDescriptions() {
|
|
20
20
|
return this._sortDescriptions;
|
|
@@ -762,3 +762,4 @@ export let RestVirtualDataSourceDataProviderWorker = /*@__PURE__*/ (() => {
|
|
|
762
762
|
RestVirtualDataSourceDataProviderWorker.schemaRequestIndex = -1;
|
|
763
763
|
return RestVirtualDataSourceDataProviderWorker;
|
|
764
764
|
})();
|
|
765
|
+
export { RestVirtualDataSourceDataProviderWorker };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
|
|
2
2
|
import { markType } from "igniteui-webcomponents-core";
|
|
3
|
-
|
|
3
|
+
let RestVirtualDataSourceDataProviderWorkerSettings = /*@__PURE__*/ (() => {
|
|
4
4
|
class RestVirtualDataSourceDataProviderWorkerSettings extends AsyncVirtualDataSourceDataProviderWorkerSettings {
|
|
5
5
|
constructor() {
|
|
6
6
|
super(...arguments);
|
|
@@ -159,3 +159,4 @@ export let RestVirtualDataSourceDataProviderWorkerSettings = /*@__PURE__*/ (() =
|
|
|
159
159
|
RestVirtualDataSourceDataProviderWorkerSettings.$t = /*@__PURE__*/ markType(RestVirtualDataSourceDataProviderWorkerSettings, 'RestVirtualDataSourceDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$type);
|
|
160
160
|
return RestVirtualDataSourceDataProviderWorkerSettings;
|
|
161
161
|
})();
|
|
162
|
+
export { RestVirtualDataSourceDataProviderWorkerSettings };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AsyncVirtualDataSourceProviderTaskDataHolder } from "igniteui-webcomponents-core";
|
|
2
2
|
import { markType } from "igniteui-webcomponents-core";
|
|
3
|
-
|
|
3
|
+
let RestVirtualDataSourceProviderTaskDataHolder = /*@__PURE__*/ (() => {
|
|
4
4
|
class RestVirtualDataSourceProviderTaskDataHolder extends AsyncVirtualDataSourceProviderTaskDataHolder {
|
|
5
5
|
}
|
|
6
6
|
RestVirtualDataSourceProviderTaskDataHolder.$t = /*@__PURE__*/ markType(RestVirtualDataSourceProviderTaskDataHolder, 'ODataVirtualDataSourceProviderTaskDataHolder', AsyncVirtualDataSourceProviderTaskDataHolder.$type);
|
|
7
7
|
return RestVirtualDataSourceProviderTaskDataHolder;
|
|
8
8
|
})();
|
|
9
|
+
export { RestVirtualDataSourceProviderTaskDataHolder };
|
|
@@ -9,7 +9,7 @@ import { ODataDataSourceSchema } from "igniteui-webcomponents-core";
|
|
|
9
9
|
import { XmlNodeType } from "igniteui-webcomponents-core";
|
|
10
10
|
import { toArray, first } from './util';
|
|
11
11
|
import { fromEnum, typeCast } from "igniteui-webcomponents-core";
|
|
12
|
-
var ODataSchemaProvider = /** @class */ /*@__PURE__*/ (function () {
|
|
12
|
+
export var ODataSchemaProvider = /** @class */ /*@__PURE__*/ (function () {
|
|
13
13
|
function ODataSchemaProvider(metadataDocument) {
|
|
14
14
|
this._entityTypeSchemaNamespace = null;
|
|
15
15
|
this._entitySetSchemaNamespace = null;
|
|
@@ -156,4 +156,3 @@ var ODataSchemaProvider = /** @class */ /*@__PURE__*/ (function () {
|
|
|
156
156
|
ODataSchemaProvider.nS = XNamespace.get("http://docs.oasis-open.org/odata/ns/edm");
|
|
157
157
|
return ODataSchemaProvider;
|
|
158
158
|
}());
|
|
159
|
-
export { ODataSchemaProvider };
|
|
@@ -11,7 +11,7 @@ import { DataSourceDataProviderSchemaChangedEventArgs } from "igniteui-webcompon
|
|
|
11
11
|
import { DataSourceSchemaPropertyType } from "igniteui-webcomponents-core";
|
|
12
12
|
import { stringContains } from "igniteui-webcomponents-core";
|
|
13
13
|
import { SummaryDescriptionCollection } from "igniteui-webcomponents-core";
|
|
14
|
-
var ODataVirtualDataSourceDataProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
14
|
+
export var ODataVirtualDataSourceDataProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
15
|
__extends(ODataVirtualDataSourceDataProvider, _super);
|
|
16
16
|
function ODataVirtualDataSourceDataProvider() {
|
|
17
17
|
var _this = _super.call(this) || this;
|
|
@@ -556,4 +556,3 @@ var ODataVirtualDataSourceDataProvider = /** @class */ /*@__PURE__*/ (function (
|
|
|
556
556
|
ODataVirtualDataSourceDataProvider.$t = markType(ODataVirtualDataSourceDataProvider, 'ODataVirtualDataSourceDataProvider', Base.$type, [IDataSourceVirtualDataProvider_$type]);
|
|
557
557
|
return ODataVirtualDataSourceDataProvider;
|
|
558
558
|
}(Base));
|
|
559
|
-
export { ODataVirtualDataSourceDataProvider };
|
|
@@ -16,7 +16,7 @@ import { DataSourceSummaryScope } from "igniteui-webcomponents-core";
|
|
|
16
16
|
import { DefaultSummaryResult } from "igniteui-webcomponents-core";
|
|
17
17
|
import { TransactionType } from "igniteui-webcomponents-core";
|
|
18
18
|
import { ODataDataSourceSchema } from "igniteui-webcomponents-core";
|
|
19
|
-
var ODataVirtualDataSourceDataProviderWorker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
19
|
+
export var ODataVirtualDataSourceDataProviderWorker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
20
20
|
__extends(ODataVirtualDataSourceDataProviderWorker, _super);
|
|
21
21
|
function ODataVirtualDataSourceDataProviderWorker(settings) {
|
|
22
22
|
var e_1, _a;
|
|
@@ -918,4 +918,3 @@ var ODataVirtualDataSourceDataProviderWorker = /** @class */ /*@__PURE__*/ (func
|
|
|
918
918
|
ODataVirtualDataSourceDataProviderWorker.schemaRequestIndex = -1;
|
|
919
919
|
return ODataVirtualDataSourceDataProviderWorker;
|
|
920
920
|
}(AsyncVirtualDataSourceProviderWorker));
|
|
921
|
-
export { ODataVirtualDataSourceDataProviderWorker };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
|
|
3
3
|
import { markType } from "igniteui-webcomponents-core";
|
|
4
|
-
var ODataVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
4
|
+
export var ODataVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
5
5
|
__extends(ODataVirtualDataSourceDataProviderWorkerSettings, _super);
|
|
6
6
|
function ODataVirtualDataSourceDataProviderWorkerSettings() {
|
|
7
7
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -128,4 +128,3 @@ var ODataVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__
|
|
|
128
128
|
ODataVirtualDataSourceDataProviderWorkerSettings.$t = markType(ODataVirtualDataSourceDataProviderWorkerSettings, 'ODataVirtualDataSourceDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$type);
|
|
129
129
|
return ODataVirtualDataSourceDataProviderWorkerSettings;
|
|
130
130
|
}(AsyncVirtualDataSourceDataProviderWorkerSettings));
|
|
131
|
-
export { ODataVirtualDataSourceDataProviderWorkerSettings };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { AsyncVirtualDataSourceProviderTaskDataHolder } from "igniteui-webcomponents-core";
|
|
3
3
|
import { markType } from "igniteui-webcomponents-core";
|
|
4
|
-
var ODataVirtualDataSourceProviderTaskDataHolder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
4
|
+
export var ODataVirtualDataSourceProviderTaskDataHolder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
5
5
|
__extends(ODataVirtualDataSourceProviderTaskDataHolder, _super);
|
|
6
6
|
function ODataVirtualDataSourceProviderTaskDataHolder() {
|
|
7
7
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -9,4 +9,3 @@ var ODataVirtualDataSourceProviderTaskDataHolder = /** @class */ /*@__PURE__*/ (
|
|
|
9
9
|
ODataVirtualDataSourceProviderTaskDataHolder.$t = markType(ODataVirtualDataSourceProviderTaskDataHolder, 'ODataVirtualDataSourceProviderTaskDataHolder', AsyncVirtualDataSourceProviderTaskDataHolder.$type);
|
|
10
10
|
return ODataVirtualDataSourceProviderTaskDataHolder;
|
|
11
11
|
}(AsyncVirtualDataSourceProviderTaskDataHolder));
|
|
12
|
-
export { ODataVirtualDataSourceProviderTaskDataHolder };
|
|
@@ -11,7 +11,7 @@ import { DataSourceDataProviderSchemaChangedEventArgs } from "igniteui-webcompon
|
|
|
11
11
|
import { DataSourceSchemaPropertyType } from "igniteui-webcomponents-core";
|
|
12
12
|
import { stringContains } from "igniteui-webcomponents-core";
|
|
13
13
|
import { SummaryDescriptionCollection } from "igniteui-webcomponents-core";
|
|
14
|
-
var RestVirtualDataSourceDataProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
14
|
+
export var RestVirtualDataSourceDataProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
15
|
__extends(RestVirtualDataSourceDataProvider, _super);
|
|
16
16
|
function RestVirtualDataSourceDataProvider() {
|
|
17
17
|
var _this = _super.call(this) || this;
|
|
@@ -685,4 +685,3 @@ var RestVirtualDataSourceDataProvider = /** @class */ /*@__PURE__*/ (function (_
|
|
|
685
685
|
RestVirtualDataSourceDataProvider.$t = markType(RestVirtualDataSourceDataProvider, 'ODataVirtualDataSourceDataProvider', Base.$type, [IDataSourceVirtualDataProvider_$type]);
|
|
686
686
|
return RestVirtualDataSourceDataProvider;
|
|
687
687
|
}(Base));
|
|
688
|
-
export { RestVirtualDataSourceDataProvider };
|
|
@@ -15,7 +15,7 @@ import { DataSourceSummaryScope } from "igniteui-webcomponents-core";
|
|
|
15
15
|
import { DefaultSummaryResult } from "igniteui-webcomponents-core";
|
|
16
16
|
import { LocalDataSource } from "igniteui-webcomponents-core";
|
|
17
17
|
import { DefaultDataSourceSchema } from "igniteui-webcomponents-core";
|
|
18
|
-
var RestVirtualDataSourceDataProviderWorker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
18
|
+
export var RestVirtualDataSourceDataProviderWorker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
19
19
|
__extends(RestVirtualDataSourceDataProviderWorker, _super);
|
|
20
20
|
function RestVirtualDataSourceDataProviderWorker(settings) {
|
|
21
21
|
var e_1, _a;
|
|
@@ -965,4 +965,3 @@ var RestVirtualDataSourceDataProviderWorker = /** @class */ /*@__PURE__*/ (funct
|
|
|
965
965
|
RestVirtualDataSourceDataProviderWorker.schemaRequestIndex = -1;
|
|
966
966
|
return RestVirtualDataSourceDataProviderWorker;
|
|
967
967
|
}(AsyncVirtualDataSourceProviderWorker));
|
|
968
|
-
export { RestVirtualDataSourceDataProviderWorker };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
|
|
3
3
|
import { markType } from "igniteui-webcomponents-core";
|
|
4
|
-
var RestVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
4
|
+
export var RestVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
5
5
|
__extends(RestVirtualDataSourceDataProviderWorkerSettings, _super);
|
|
6
6
|
function RestVirtualDataSourceDataProviderWorkerSettings() {
|
|
7
7
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -248,4 +248,3 @@ var RestVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__*
|
|
|
248
248
|
RestVirtualDataSourceDataProviderWorkerSettings.$t = markType(RestVirtualDataSourceDataProviderWorkerSettings, 'RestVirtualDataSourceDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$type);
|
|
249
249
|
return RestVirtualDataSourceDataProviderWorkerSettings;
|
|
250
250
|
}(AsyncVirtualDataSourceDataProviderWorkerSettings));
|
|
251
|
-
export { RestVirtualDataSourceDataProviderWorkerSettings };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { AsyncVirtualDataSourceProviderTaskDataHolder } from "igniteui-webcomponents-core";
|
|
3
3
|
import { markType } from "igniteui-webcomponents-core";
|
|
4
|
-
var RestVirtualDataSourceProviderTaskDataHolder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
4
|
+
export var RestVirtualDataSourceProviderTaskDataHolder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
5
5
|
__extends(RestVirtualDataSourceProviderTaskDataHolder, _super);
|
|
6
6
|
function RestVirtualDataSourceProviderTaskDataHolder() {
|
|
7
7
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
@@ -9,4 +9,3 @@ var RestVirtualDataSourceProviderTaskDataHolder = /** @class */ /*@__PURE__*/ (f
|
|
|
9
9
|
RestVirtualDataSourceProviderTaskDataHolder.$t = markType(RestVirtualDataSourceProviderTaskDataHolder, 'ODataVirtualDataSourceProviderTaskDataHolder', AsyncVirtualDataSourceProviderTaskDataHolder.$type);
|
|
10
10
|
return RestVirtualDataSourceProviderTaskDataHolder;
|
|
11
11
|
}(AsyncVirtualDataSourceProviderTaskDataHolder));
|
|
12
|
-
export { RestVirtualDataSourceProviderTaskDataHolder };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './public_api';
|
|
1
|
+
export * from './public_api';
|
package/lib/Entity.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { EntityProperty } from "./EntityProperty";
|
|
2
|
-
import { XElement } from "igniteui-webcomponents-core";
|
|
3
|
-
export declare class Entity {
|
|
4
|
-
private _properties;
|
|
5
|
-
private _primaryKey;
|
|
6
|
-
constructor(name: string, entityNode: XElement);
|
|
7
|
-
private _name;
|
|
8
|
-
get name(): string;
|
|
9
|
-
set name(value: string);
|
|
10
|
-
get properties(): Map<string, EntityProperty>;
|
|
11
|
-
get primaryKey(): string[];
|
|
12
|
-
private loadProperties;
|
|
13
|
-
private loadPrimaryKey;
|
|
14
|
-
}
|
|
1
|
+
import { EntityProperty } from "./EntityProperty";
|
|
2
|
+
import { XElement } from "igniteui-webcomponents-core";
|
|
3
|
+
export declare class Entity {
|
|
4
|
+
private _properties;
|
|
5
|
+
private _primaryKey;
|
|
6
|
+
constructor(name: string, entityNode: XElement);
|
|
7
|
+
private _name;
|
|
8
|
+
get name(): string;
|
|
9
|
+
set name(value: string);
|
|
10
|
+
get properties(): Map<string, EntityProperty>;
|
|
11
|
+
get primaryKey(): string[];
|
|
12
|
+
private loadProperties;
|
|
13
|
+
private loadPrimaryKey;
|
|
14
|
+
}
|
package/lib/EntityProperty.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export declare class EntityProperty {
|
|
2
|
-
constructor(name: string, schemaType: string);
|
|
3
|
-
private _name;
|
|
4
|
-
get name(): string;
|
|
5
|
-
set name(value: string);
|
|
6
|
-
private _isNullable;
|
|
7
|
-
get isNullable(): boolean;
|
|
8
|
-
set isNullable(value: boolean);
|
|
9
|
-
private _type;
|
|
10
|
-
get type(): string;
|
|
11
|
-
set type(value: string);
|
|
12
|
-
}
|
|
1
|
+
export declare class EntityProperty {
|
|
2
|
+
constructor(name: string, schemaType: string);
|
|
3
|
+
private _name;
|
|
4
|
+
get name(): string;
|
|
5
|
+
set name(value: string);
|
|
6
|
+
private _isNullable;
|
|
7
|
+
get isNullable(): boolean;
|
|
8
|
+
set isNullable(value: boolean);
|
|
9
|
+
private _type;
|
|
10
|
+
get type(): string;
|
|
11
|
+
set type(value: string);
|
|
12
|
+
}
|
package/lib/EntitySet.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export declare class EntitySet {
|
|
2
|
-
constructor(name: string, entityType: string);
|
|
3
|
-
private _entityName;
|
|
4
|
-
get entityName(): string;
|
|
5
|
-
set entityName(value: string);
|
|
6
|
-
private _entityNamespace;
|
|
7
|
-
get entityNamespace(): string;
|
|
8
|
-
set entityNamespace(value: string);
|
|
9
|
-
private _entityType;
|
|
10
|
-
get entityType(): string;
|
|
11
|
-
set entityType(value: string);
|
|
12
|
-
private _name;
|
|
13
|
-
get name(): string;
|
|
14
|
-
set name(value: string);
|
|
15
|
-
}
|
|
1
|
+
export declare class EntitySet {
|
|
2
|
+
constructor(name: string, entityType: string);
|
|
3
|
+
private _entityName;
|
|
4
|
+
get entityName(): string;
|
|
5
|
+
set entityName(value: string);
|
|
6
|
+
private _entityNamespace;
|
|
7
|
+
get entityNamespace(): string;
|
|
8
|
+
set entityNamespace(value: string);
|
|
9
|
+
private _entityType;
|
|
10
|
+
get entityType(): string;
|
|
11
|
+
set entityType(value: string);
|
|
12
|
+
private _name;
|
|
13
|
+
get name(): string;
|
|
14
|
+
set name(value: string);
|
|
15
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { IDataSourcePage } from "igniteui-webcomponents-core";
|
|
2
|
-
import { IDataSourceSchema } from "igniteui-webcomponents-core";
|
|
3
|
-
import { ISectionInformation } from "igniteui-webcomponents-core";
|
|
4
|
-
import { ISummaryResult } from "igniteui-webcomponents-core";
|
|
5
|
-
export declare class ODataDataSourcePage implements IDataSourcePage {
|
|
6
|
-
private _actualData;
|
|
7
|
-
private _schema;
|
|
8
|
-
private _pageIndex;
|
|
9
|
-
private _groupInformation;
|
|
10
|
-
private _summaryInformation;
|
|
11
|
-
constructor(sourceData_: any, schema: IDataSourceSchema, groupInformation: ISectionInformation[], summaryInformation: ISummaryResult[], pageIndex: number);
|
|
12
|
-
count(): number;
|
|
13
|
-
getItemAtIndex(index: number): any;
|
|
14
|
-
getItemValueAtIndex(index: number, valueName: string): any;
|
|
15
|
-
pageIndex(): number;
|
|
16
|
-
schema(): IDataSourceSchema;
|
|
17
|
-
getGroupInformation(): ISectionInformation[];
|
|
18
|
-
getSummaryInformation(): ISummaryResult[];
|
|
19
|
-
}
|
|
1
|
+
import { IDataSourcePage } from "igniteui-webcomponents-core";
|
|
2
|
+
import { IDataSourceSchema } from "igniteui-webcomponents-core";
|
|
3
|
+
import { ISectionInformation } from "igniteui-webcomponents-core";
|
|
4
|
+
import { ISummaryResult } from "igniteui-webcomponents-core";
|
|
5
|
+
export declare class ODataDataSourcePage implements IDataSourcePage {
|
|
6
|
+
private _actualData;
|
|
7
|
+
private _schema;
|
|
8
|
+
private _pageIndex;
|
|
9
|
+
private _groupInformation;
|
|
10
|
+
private _summaryInformation;
|
|
11
|
+
constructor(sourceData_: any, schema: IDataSourceSchema, groupInformation: ISectionInformation[], summaryInformation: ISummaryResult[], pageIndex: number);
|
|
12
|
+
count(): number;
|
|
13
|
+
getItemAtIndex(index: number): any;
|
|
14
|
+
getItemValueAtIndex(index: number, valueName: string): any;
|
|
15
|
+
pageIndex(): number;
|
|
16
|
+
schema(): IDataSourceSchema;
|
|
17
|
+
getGroupInformation(): ISectionInformation[];
|
|
18
|
+
getSummaryInformation(): ISummaryResult[];
|
|
19
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { XNamespace } from "igniteui-webcomponents-core";
|
|
2
|
-
import { IDataSourceSchema } from "igniteui-webcomponents-core";
|
|
3
|
-
export declare class ODataSchemaProvider {
|
|
4
|
-
private _entityTypeSchemaNamespace;
|
|
5
|
-
private _entitySetSchemaNamespace;
|
|
6
|
-
static nS: XNamespace;
|
|
7
|
-
constructor(metadataDocument: string);
|
|
8
|
-
private _schema;
|
|
9
|
-
private get schema();
|
|
10
|
-
private set schema(value);
|
|
11
|
-
getODataDataSourceSchema(entitySet: string): IDataSourceSchema;
|
|
12
|
-
}
|
|
1
|
+
import { XNamespace } from "igniteui-webcomponents-core";
|
|
2
|
+
import { IDataSourceSchema } from "igniteui-webcomponents-core";
|
|
3
|
+
export declare class ODataSchemaProvider {
|
|
4
|
+
private _entityTypeSchemaNamespace;
|
|
5
|
+
private _entitySetSchemaNamespace;
|
|
6
|
+
static nS: XNamespace;
|
|
7
|
+
constructor(metadataDocument: string);
|
|
8
|
+
private _schema;
|
|
9
|
+
private get schema();
|
|
10
|
+
private set schema(value);
|
|
11
|
+
getODataDataSourceSchema(entitySet: string): IDataSourceSchema;
|
|
12
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { VirtualDataSource } from "igniteui-webcomponents-core";
|
|
2
|
-
import { IDataSource } from "igniteui-webcomponents-core";
|
|
3
|
-
import { IExternalDataSource } from "igniteui-webcomponents-core";
|
|
4
|
-
export declare class ODataVirtualDataSource extends VirtualDataSource implements IExternalDataSource {
|
|
5
|
-
constructor();
|
|
6
|
-
private onBaseUriChanged;
|
|
7
|
-
private _baseUri;
|
|
8
|
-
get baseUri(): string;
|
|
9
|
-
set baseUri(value: string);
|
|
10
|
-
private onEntitySetChanged;
|
|
11
|
-
private _entitySet;
|
|
12
|
-
get entitySet(): string;
|
|
13
|
-
set entitySet(value: string);
|
|
14
|
-
private onTimeoutMillisecondsChanged;
|
|
15
|
-
private _timeoutMilliseconds;
|
|
16
|
-
get timeoutMilliseconds(): number;
|
|
17
|
-
set timeoutMilliseconds(value: number);
|
|
18
|
-
get isSortingSupportedOverride(): boolean;
|
|
19
|
-
get isFilteringSupportedOverride(): boolean;
|
|
20
|
-
get isGroupingSupportedOverride(): boolean;
|
|
21
|
-
private _isAggregationSupportedByServer;
|
|
22
|
-
get isAggregationSupportedByServer(): boolean;
|
|
23
|
-
set isAggregationSupportedByServer(isSupported: boolean);
|
|
24
|
-
private _enableJsonp;
|
|
25
|
-
get enableJsonp(): boolean;
|
|
26
|
-
set enableJsonp(isEnabled: boolean);
|
|
27
|
-
clone(): IDataSource;
|
|
28
|
-
}
|
|
1
|
+
import { VirtualDataSource } from "igniteui-webcomponents-core";
|
|
2
|
+
import { IDataSource } from "igniteui-webcomponents-core";
|
|
3
|
+
import { IExternalDataSource } from "igniteui-webcomponents-core";
|
|
4
|
+
export declare class ODataVirtualDataSource extends VirtualDataSource implements IExternalDataSource {
|
|
5
|
+
constructor();
|
|
6
|
+
private onBaseUriChanged;
|
|
7
|
+
private _baseUri;
|
|
8
|
+
get baseUri(): string;
|
|
9
|
+
set baseUri(value: string);
|
|
10
|
+
private onEntitySetChanged;
|
|
11
|
+
private _entitySet;
|
|
12
|
+
get entitySet(): string;
|
|
13
|
+
set entitySet(value: string);
|
|
14
|
+
private onTimeoutMillisecondsChanged;
|
|
15
|
+
private _timeoutMilliseconds;
|
|
16
|
+
get timeoutMilliseconds(): number;
|
|
17
|
+
set timeoutMilliseconds(value: number);
|
|
18
|
+
get isSortingSupportedOverride(): boolean;
|
|
19
|
+
get isFilteringSupportedOverride(): boolean;
|
|
20
|
+
get isGroupingSupportedOverride(): boolean;
|
|
21
|
+
private _isAggregationSupportedByServer;
|
|
22
|
+
get isAggregationSupportedByServer(): boolean;
|
|
23
|
+
set isAggregationSupportedByServer(isSupported: boolean);
|
|
24
|
+
private _enableJsonp;
|
|
25
|
+
get enableJsonp(): boolean;
|
|
26
|
+
set enableJsonp(isEnabled: boolean);
|
|
27
|
+
clone(): IDataSource;
|
|
28
|
+
}
|