igniteui-webcomponents-datasources 6.3.0 → 6.3.1

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.
Files changed (39) hide show
  1. package/esm2015/lib/ODataSchemaProvider.js +2 -1
  2. package/esm2015/lib/ODataVirtualDataSourceDataProvider.js +2 -1
  3. package/esm2015/lib/ODataVirtualDataSourceDataProviderWorker.js +2 -1
  4. package/esm2015/lib/ODataVirtualDataSourceDataProviderWorkerSettings.js +2 -1
  5. package/esm2015/lib/ODataVirtualDataSourceProviderTaskDataHolder.js +2 -1
  6. package/esm2015/lib/RestVirtualDataSourceDataProvider.js +2 -1
  7. package/esm2015/lib/RestVirtualDataSourceDataProviderWorker.js +2 -1
  8. package/esm2015/lib/RestVirtualDataSourceDataProviderWorkerSettings.js +2 -1
  9. package/esm2015/lib/RestVirtualDataSourceProviderTaskDataHolder.js +2 -1
  10. package/esm5/lib/ODataSchemaProvider.js +1 -2
  11. package/esm5/lib/ODataVirtualDataSourceDataProvider.js +1 -2
  12. package/esm5/lib/ODataVirtualDataSourceDataProviderWorker.js +1 -2
  13. package/esm5/lib/ODataVirtualDataSourceDataProviderWorkerSettings.js +1 -2
  14. package/esm5/lib/ODataVirtualDataSourceProviderTaskDataHolder.js +1 -2
  15. package/esm5/lib/RestVirtualDataSourceDataProvider.js +1 -2
  16. package/esm5/lib/RestVirtualDataSourceDataProviderWorker.js +1 -2
  17. package/esm5/lib/RestVirtualDataSourceDataProviderWorkerSettings.js +1 -2
  18. package/esm5/lib/RestVirtualDataSourceProviderTaskDataHolder.js +1 -2
  19. package/igniteui-webcomponents-datasources.d.ts +1 -1
  20. package/lib/Entity.d.ts +14 -14
  21. package/lib/EntityProperty.d.ts +12 -12
  22. package/lib/EntitySet.d.ts +15 -15
  23. package/lib/ODataDataSourcePage.d.ts +19 -19
  24. package/lib/ODataSchemaProvider.d.ts +12 -12
  25. package/lib/ODataVirtualDataSource.d.ts +28 -28
  26. package/lib/ODataVirtualDataSourceDataProvider.d.ts +120 -120
  27. package/lib/ODataVirtualDataSourceDataProviderWorker.d.ts +57 -57
  28. package/lib/ODataVirtualDataSourceDataProviderWorkerSettings.d.ts +42 -42
  29. package/lib/ODataVirtualDataSourceProviderTaskDataHolder.d.ts +5 -5
  30. package/lib/RestVirtualDataSource.d.ts +86 -86
  31. package/lib/RestVirtualDataSourceDataProvider.d.ts +171 -171
  32. package/lib/RestVirtualDataSourceDataProviderWorker.d.ts +70 -70
  33. package/lib/RestVirtualDataSourceDataProviderWorkerSettings.d.ts +93 -93
  34. package/lib/RestVirtualDataSourcePage.d.ts +19 -19
  35. package/lib/RestVirtualDataSourceProviderTaskDataHolder.d.ts +5 -5
  36. package/lib/Schema.d.ts +15 -15
  37. package/lib/util.d.ts +27 -27
  38. package/package.json +2 -2
  39. package/public_api.d.ts +18 -18
@@ -1,93 +1,93 @@
1
- import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
2
- import { SortDescriptionCollection } from "igniteui-webcomponents-core";
3
- import { FilterExpressionCollection } from "igniteui-webcomponents-core";
4
- import { Type } from "igniteui-webcomponents-core";
5
- import { SummaryDescriptionCollection } from "igniteui-webcomponents-core";
6
- import { DataSourceSummaryScope } from "igniteui-webcomponents-core";
7
- export declare class RestVirtualDataSourceDataProviderWorkerSettings extends AsyncVirtualDataSourceDataProviderWorkerSettings {
8
- static $t: Type;
9
- private _baseUri;
10
- get baseUri(): string;
11
- set baseUri(value: string);
12
- private _entitySet;
13
- get entitySet(): string;
14
- set entitySet(value: string);
15
- private _sortDescriptions;
16
- get sortDescriptions(): SortDescriptionCollection;
17
- set sortDescriptions(value: SortDescriptionCollection);
18
- private _filterExpressions;
19
- get filterExpressions(): FilterExpressionCollection;
20
- set filterExpressions(value: FilterExpressionCollection);
21
- private _propertiesRequested;
22
- get propertiesRequested(): string[];
23
- set propertiesRequested(value: string[]);
24
- private _schemaIncludedProperties;
25
- get schemaIncludedProperties(): string[];
26
- set schemaIncludedProperties(value: string[]);
27
- private _groupDescriptions;
28
- get groupDescriptions(): SortDescriptionCollection;
29
- set groupDescriptions(value: SortDescriptionCollection);
30
- private _summaryDescriptions;
31
- get summaryDescriptions(): SummaryDescriptionCollection;
32
- set summaryDescriptions(value: SummaryDescriptionCollection);
33
- private _summaryscope;
34
- get summaryScope(): DataSourceSummaryScope;
35
- set summaryScope(value: DataSourceSummaryScope);
36
- private _enableJsonp;
37
- get enableJsonp(): boolean;
38
- set enableJsonp(isEnabled: boolean);
39
- private _isAggregationSupported;
40
- get isAggregationSupported(): boolean;
41
- set isAggregationSupported(isSupported: boolean);
42
- private _fixedFullCount;
43
- get fixedFullCount(): number;
44
- set fixedFullCount(value: number);
45
- private _provideFullCount;
46
- get provideFullCount(): (page: any) => number;
47
- set provideFullCount(value: (page: any) => number);
48
- private _provideOrderByParameter;
49
- get provideOrderByParameter(): (args: any[], orderByString: string, orderBy: SortDescriptionCollection) => any;
50
- set provideOrderByParameter(value: (args: any[], orderByString: string, orderBy: SortDescriptionCollection) => any);
51
- private _provideFilterParameter;
52
- get provideFilterParameter(): (args: any[], filterString: string, filterExpressions: FilterExpressionCollection) => any;
53
- set provideFilterParameter(value: (args: any[], filterString: string, filterExpressions: FilterExpressionCollection) => any);
54
- private _provideAggregationParameter;
55
- get provideAggregationParameter(): (args: any[], fetchCountOnly: boolean, groupByString: string, groupBy: SortDescriptionCollection, summaryString: string, summary: SummaryDescriptionCollection) => any;
56
- set provideAggregationParameter(value: (args: any[], fetchCountOnly: boolean, groupByString: string, groupBy: SortDescriptionCollection, summaryString: string, summary: SummaryDescriptionCollection) => any);
57
- private _provideAggregatedCount;
58
- get provideAggregatedCount(): (item: any) => number;
59
- set provideAggregatedCount(value: (item: any) => number);
60
- private _provideUri;
61
- get provideUri(): (baseUri: string, entitySet: string, args: {
62
- name: string;
63
- value: any;
64
- }[]) => string;
65
- set provideUri(value: (baseUri: string, entitySet: string, args: {
66
- name: string;
67
- value: any;
68
- }[]) => string);
69
- private _providePagingParameter;
70
- get providePagingParameter(): (args: any[], skip: number, take: number) => void;
71
- set providePagingParameter(value: (args: any[], skip: number, take: number) => void);
72
- private _provideDesiredPropertiesParameter;
73
- get provideDesiredPropertiesParameter(): (args: any[], selectString: string, desiredProperties: string[]) => void;
74
- set provideDesiredPropertiesParameter(value: (args: any[], selectString: string, desiredProperties: string[]) => void);
75
- private _provideItems;
76
- get provideItems(): (result: any) => any[];
77
- set provideItems(value: (result: any) => any[]);
78
- private _performFetch;
79
- get performFetch(): (request: {
80
- requestUri: string;
81
- enableJsonpCallback: boolean;
82
- method: 'GET';
83
- headers: any;
84
- data: null;
85
- }, success: (data: any, response: any) => void, failure: (err: any) => void) => void;
86
- set performFetch(value: (request: {
87
- requestUri: string;
88
- enableJsonpCallback: boolean;
89
- method: 'GET';
90
- headers: any;
91
- data: null;
92
- }, success: (data: any, response: any) => void, failure: (err: any) => void) => void);
93
- }
1
+ import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
2
+ import { SortDescriptionCollection } from "igniteui-webcomponents-core";
3
+ import { FilterExpressionCollection } from "igniteui-webcomponents-core";
4
+ import { Type } from "igniteui-webcomponents-core";
5
+ import { SummaryDescriptionCollection } from "igniteui-webcomponents-core";
6
+ import { DataSourceSummaryScope } from "igniteui-webcomponents-core";
7
+ export declare class RestVirtualDataSourceDataProviderWorkerSettings extends AsyncVirtualDataSourceDataProviderWorkerSettings {
8
+ static $t: Type;
9
+ private _baseUri;
10
+ get baseUri(): string;
11
+ set baseUri(value: string);
12
+ private _entitySet;
13
+ get entitySet(): string;
14
+ set entitySet(value: string);
15
+ private _sortDescriptions;
16
+ get sortDescriptions(): SortDescriptionCollection;
17
+ set sortDescriptions(value: SortDescriptionCollection);
18
+ private _filterExpressions;
19
+ get filterExpressions(): FilterExpressionCollection;
20
+ set filterExpressions(value: FilterExpressionCollection);
21
+ private _propertiesRequested;
22
+ get propertiesRequested(): string[];
23
+ set propertiesRequested(value: string[]);
24
+ private _schemaIncludedProperties;
25
+ get schemaIncludedProperties(): string[];
26
+ set schemaIncludedProperties(value: string[]);
27
+ private _groupDescriptions;
28
+ get groupDescriptions(): SortDescriptionCollection;
29
+ set groupDescriptions(value: SortDescriptionCollection);
30
+ private _summaryDescriptions;
31
+ get summaryDescriptions(): SummaryDescriptionCollection;
32
+ set summaryDescriptions(value: SummaryDescriptionCollection);
33
+ private _summaryscope;
34
+ get summaryScope(): DataSourceSummaryScope;
35
+ set summaryScope(value: DataSourceSummaryScope);
36
+ private _enableJsonp;
37
+ get enableJsonp(): boolean;
38
+ set enableJsonp(isEnabled: boolean);
39
+ private _isAggregationSupported;
40
+ get isAggregationSupported(): boolean;
41
+ set isAggregationSupported(isSupported: boolean);
42
+ private _fixedFullCount;
43
+ get fixedFullCount(): number;
44
+ set fixedFullCount(value: number);
45
+ private _provideFullCount;
46
+ get provideFullCount(): (page: any) => number;
47
+ set provideFullCount(value: (page: any) => number);
48
+ private _provideOrderByParameter;
49
+ get provideOrderByParameter(): (args: any[], orderByString: string, orderBy: SortDescriptionCollection) => any;
50
+ set provideOrderByParameter(value: (args: any[], orderByString: string, orderBy: SortDescriptionCollection) => any);
51
+ private _provideFilterParameter;
52
+ get provideFilterParameter(): (args: any[], filterString: string, filterExpressions: FilterExpressionCollection) => any;
53
+ set provideFilterParameter(value: (args: any[], filterString: string, filterExpressions: FilterExpressionCollection) => any);
54
+ private _provideAggregationParameter;
55
+ get provideAggregationParameter(): (args: any[], fetchCountOnly: boolean, groupByString: string, groupBy: SortDescriptionCollection, summaryString: string, summary: SummaryDescriptionCollection) => any;
56
+ set provideAggregationParameter(value: (args: any[], fetchCountOnly: boolean, groupByString: string, groupBy: SortDescriptionCollection, summaryString: string, summary: SummaryDescriptionCollection) => any);
57
+ private _provideAggregatedCount;
58
+ get provideAggregatedCount(): (item: any) => number;
59
+ set provideAggregatedCount(value: (item: any) => number);
60
+ private _provideUri;
61
+ get provideUri(): (baseUri: string, entitySet: string, args: {
62
+ name: string;
63
+ value: any;
64
+ }[]) => string;
65
+ set provideUri(value: (baseUri: string, entitySet: string, args: {
66
+ name: string;
67
+ value: any;
68
+ }[]) => string);
69
+ private _providePagingParameter;
70
+ get providePagingParameter(): (args: any[], skip: number, take: number) => void;
71
+ set providePagingParameter(value: (args: any[], skip: number, take: number) => void);
72
+ private _provideDesiredPropertiesParameter;
73
+ get provideDesiredPropertiesParameter(): (args: any[], selectString: string, desiredProperties: string[]) => void;
74
+ set provideDesiredPropertiesParameter(value: (args: any[], selectString: string, desiredProperties: string[]) => void);
75
+ private _provideItems;
76
+ get provideItems(): (result: any) => any[];
77
+ set provideItems(value: (result: any) => any[]);
78
+ private _performFetch;
79
+ get performFetch(): (request: {
80
+ requestUri: string;
81
+ enableJsonpCallback: boolean;
82
+ method: 'GET';
83
+ headers: any;
84
+ data: null;
85
+ }, success: (data: any, response: any) => void, failure: (err: any) => void) => void;
86
+ set performFetch(value: (request: {
87
+ requestUri: string;
88
+ enableJsonpCallback: boolean;
89
+ method: 'GET';
90
+ headers: any;
91
+ data: null;
92
+ }, success: (data: any, response: any) => void, failure: (err: any) => void) => void);
93
+ }
@@ -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 RestVirtualDataSourcePage 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 RestVirtualDataSourcePage 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,5 +1,5 @@
1
- import { AsyncVirtualDataSourceProviderTaskDataHolder } from "igniteui-webcomponents-core";
2
- import { Type } from "igniteui-webcomponents-core";
3
- export declare class RestVirtualDataSourceProviderTaskDataHolder extends AsyncVirtualDataSourceProviderTaskDataHolder {
4
- static $t: Type;
5
- }
1
+ import { AsyncVirtualDataSourceProviderTaskDataHolder } from "igniteui-webcomponents-core";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ export declare class RestVirtualDataSourceProviderTaskDataHolder extends AsyncVirtualDataSourceProviderTaskDataHolder {
4
+ static $t: Type;
5
+ }
package/lib/Schema.d.ts CHANGED
@@ -1,15 +1,15 @@
1
- import { Entity } from "./Entity";
2
- import { EntitySet } from "./EntitySet";
3
- import { XElement } from "igniteui-webcomponents-core";
4
- export declare class Schema {
5
- private _entities;
6
- private _entitySets;
7
- constructor(namespace: string, entityTypeElements: XElement[], entitySetElements: XElement[]);
8
- get entities(): Map<string, Entity>;
9
- get entitySets(): Map<string, EntitySet>;
10
- private _namespace;
11
- get namespace(): string;
12
- set namespace(value: string);
13
- private loadEntities;
14
- private loadEntitySets;
15
- }
1
+ import { Entity } from "./Entity";
2
+ import { EntitySet } from "./EntitySet";
3
+ import { XElement } from "igniteui-webcomponents-core";
4
+ export declare class Schema {
5
+ private _entities;
6
+ private _entitySets;
7
+ constructor(namespace: string, entityTypeElements: XElement[], entitySetElements: XElement[]);
8
+ get entities(): Map<string, Entity>;
9
+ get entitySets(): Map<string, EntitySet>;
10
+ private _namespace;
11
+ get namespace(): string;
12
+ set namespace(value: string);
13
+ private loadEntities;
14
+ private loadEntitySets;
15
+ }
package/lib/util.d.ts CHANGED
@@ -1,27 +1,27 @@
1
- export declare function toArray<T>(en: any): T[];
2
- export declare function first<T>(iter: Iterable<T>): T;
3
- export declare class LinkedList<T> {
4
- private _first;
5
- get first(): LinkedListNode<T>;
6
- private _last;
7
- get last(): LinkedListNode<T>;
8
- addFirst(item: T): void;
9
- addLast(item: T): void;
10
- removeFirst(): void;
11
- clear(): void;
12
- contains(value: T): boolean;
13
- removeValue(value: T): void;
14
- remove(node: LinkedListNode<T>): void;
15
- }
16
- export declare class LinkedListNode<T> {
17
- private _value;
18
- get value(): T;
19
- set value(value: T);
20
- private _prev;
21
- get prev(): LinkedListNode<T>;
22
- set prev(value: LinkedListNode<T>);
23
- private _next;
24
- get next(): LinkedListNode<T>;
25
- set next(value: LinkedListNode<T>);
26
- constructor(item?: T);
27
- }
1
+ export declare function toArray<T>(en: any): T[];
2
+ export declare function first<T>(iter: Iterable<T>): T;
3
+ export declare class LinkedList<T> {
4
+ private _first;
5
+ get first(): LinkedListNode<T>;
6
+ private _last;
7
+ get last(): LinkedListNode<T>;
8
+ addFirst(item: T): void;
9
+ addLast(item: T): void;
10
+ removeFirst(): void;
11
+ clear(): void;
12
+ contains(value: T): boolean;
13
+ removeValue(value: T): void;
14
+ remove(node: LinkedListNode<T>): void;
15
+ }
16
+ export declare class LinkedListNode<T> {
17
+ private _value;
18
+ get value(): T;
19
+ set value(value: T);
20
+ private _prev;
21
+ get prev(): LinkedListNode<T>;
22
+ set prev(value: LinkedListNode<T>);
23
+ private _next;
24
+ get next(): LinkedListNode<T>;
25
+ set next(value: LinkedListNode<T>);
26
+ constructor(item?: T);
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-webcomponents-datasources",
3
- "version": "6.3.0",
3
+ "version": "6.3.1",
4
4
  "description": "Reference custom data providers for the Ignite UI Web Components data source.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-webcomponents-datasources",
6
6
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  "tslib": "^2.3.1"
19
19
  },
20
20
  "peerDependencies": {
21
- "igniteui-webcomponents-core": "6.3.0"
21
+ "igniteui-webcomponents-core": "6.3.1"
22
22
  },
23
23
  "sideEffects": false,
24
24
  "typings": "igniteui-webcomponents-datasources.d.ts",
package/public_api.d.ts CHANGED
@@ -1,18 +1,18 @@
1
- export * from './lib/Entity';
2
- export * from './lib/EntityProperty';
3
- export * from './lib/EntitySet';
4
- export * from './lib/ODataDataSourcePage';
5
- export * from './lib/ODataSchemaProvider';
6
- export * from './lib/ODataVirtualDataSource';
7
- export * from './lib/ODataVirtualDataSourceDataProvider';
8
- export * from './lib/ODataVirtualDataSourceDataProviderWorker';
9
- export * from './lib/ODataVirtualDataSourceDataProviderWorkerSettings';
10
- export * from './lib/ODataVirtualDataSourceProviderTaskDataHolder';
11
- export * from './lib/RestVirtualDataSource';
12
- export * from './lib/RestVirtualDataSourceDataProvider';
13
- export * from './lib/RestVirtualDataSourceDataProviderWorker';
14
- export * from './lib/RestVirtualDataSourceDataProviderWorkerSettings';
15
- export * from './lib/RestVirtualDataSourcePage';
16
- export * from './lib/RestVirtualDataSourceProviderTaskDataHolder';
17
- export * from './lib/Schema';
18
- export * from './lib/util';
1
+ export * from './lib/Entity';
2
+ export * from './lib/EntityProperty';
3
+ export * from './lib/EntitySet';
4
+ export * from './lib/ODataDataSourcePage';
5
+ export * from './lib/ODataSchemaProvider';
6
+ export * from './lib/ODataVirtualDataSource';
7
+ export * from './lib/ODataVirtualDataSourceDataProvider';
8
+ export * from './lib/ODataVirtualDataSourceDataProviderWorker';
9
+ export * from './lib/ODataVirtualDataSourceDataProviderWorkerSettings';
10
+ export * from './lib/ODataVirtualDataSourceProviderTaskDataHolder';
11
+ export * from './lib/RestVirtualDataSource';
12
+ export * from './lib/RestVirtualDataSourceDataProvider';
13
+ export * from './lib/RestVirtualDataSourceDataProviderWorker';
14
+ export * from './lib/RestVirtualDataSourceDataProviderWorkerSettings';
15
+ export * from './lib/RestVirtualDataSourcePage';
16
+ export * from './lib/RestVirtualDataSourceProviderTaskDataHolder';
17
+ export * from './lib/Schema';
18
+ export * from './lib/util';