@syncfusion/ej2-angular-querybuilder 31.2.15 → 31.2.16-ngcc

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 (34) hide show
  1. package/@syncfusion/ej2-angular-querybuilder.es5.js +277 -0
  2. package/@syncfusion/ej2-angular-querybuilder.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-querybuilder.js +249 -0
  4. package/@syncfusion/ej2-angular-querybuilder.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/README.md +2 -9
  7. package/dist/ej2-angular-querybuilder.umd.js +301 -0
  8. package/dist/ej2-angular-querybuilder.umd.js.map +1 -0
  9. package/dist/ej2-angular-querybuilder.umd.min.js +11 -0
  10. package/dist/ej2-angular-querybuilder.umd.min.js.map +1 -0
  11. package/ej2-angular-querybuilder.d.ts +5 -0
  12. package/ej2-angular-querybuilder.metadata.json +1 -0
  13. package/package.json +8 -21
  14. package/public_api.d.ts +1 -1
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/index.d.ts +5 -5
  18. package/src/query-builder/columns.directive.d.ts +94 -99
  19. package/src/query-builder/querybuilder-all.module.d.ts +7 -13
  20. package/src/query-builder/querybuilder.component.d.ts +45 -49
  21. package/src/query-builder/querybuilder.module.d.ts +5 -12
  22. package/CHANGELOG.md +0 -823
  23. package/esm2020/public_api.mjs +0 -2
  24. package/esm2020/src/index.mjs +0 -6
  25. package/esm2020/src/query-builder/columns.directive.mjs +0 -72
  26. package/esm2020/src/query-builder/querybuilder-all.module.mjs +0 -29
  27. package/esm2020/src/query-builder/querybuilder.component.mjs +0 -78
  28. package/esm2020/src/query-builder/querybuilder.module.mjs +0 -34
  29. package/esm2020/syncfusion-ej2-angular-querybuilder.mjs +0 -5
  30. package/fesm2015/syncfusion-ej2-angular-querybuilder.mjs +0 -204
  31. package/fesm2015/syncfusion-ej2-angular-querybuilder.mjs.map +0 -1
  32. package/fesm2020/syncfusion-ej2-angular-querybuilder.mjs +0 -204
  33. package/fesm2020/syncfusion-ej2-angular-querybuilder.mjs.map +0 -1
  34. package/syncfusion-ej2-angular-querybuilder.d.ts +0 -5
@@ -1,99 +1,94 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-column` directive represent a column of the Angular QueryBuilder.
6
- * It must be contained in a QueryBuilder component(`ejs-querybuilder`).
7
- * ```html
8
- * <ejs-querybuilder [dataSource]='data'>
9
- * <e-columns>
10
- * <e-column field='ID' label='ID' type='number'></e-column>
11
- * <e-column field='Date' label='Date' type='date' format='dd/MM/yyyy'></e-column>
12
- * </e-columns>
13
- * </ejs-querybuilder>
14
- * ```
15
- */
16
- export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Specifies the types in columns field.
21
- * @default null
22
- */
23
- type: any;
24
- /**
25
- * Specifies the category for columns.
26
- * @default null
27
- */
28
- category: any;
29
- /**
30
- * Specifies the sub fields in columns.
31
- * @default null
32
- */
33
- columns: any;
34
- /**
35
- * Specifies the fields in columns.
36
- * @default null
37
- */
38
- field: any;
39
- /**
40
- * Specifies the date format for columns.
41
- * @asptype string
42
- * @blazortype string
43
- * @default null
44
- */
45
- format: any;
46
- /**
47
- * Specifies the labels name in columns.
48
- * @default null
49
- */
50
- label: any;
51
- /**
52
- * Specifies the operators in columns.
53
- * @default null
54
- */
55
- operators: any;
56
- /**
57
- * Specifies the step value(numeric textbox) for columns.
58
- * @default null
59
- */
60
- step: any;
61
- /**
62
- * Specifies the validation for columns (text, number and date).
63
- * @default { isRequired: true , min: 0, max: Number.MAX_VALUE }
64
- */
65
- validation: any;
66
- /**
67
- * Specifies the default value for columns.
68
- * @default null
69
- */
70
- value: any;
71
- /**
72
- * Specifies the values in columns or bind the values from sub controls.
73
- * @default null
74
- */
75
- values: any;
76
- /**
77
- * Specifies the rule template for the field with any other widgets.
78
- * @default null
79
- * @asptype string
80
- */
81
- ruleTemplate: any;
82
- /**
83
- * Specifies the template for value field such as slider or any other widgets.
84
- * @default null
85
- */
86
- template: any;
87
- constructor(viewContainerRef: ViewContainerRef);
88
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>;
89
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnDirective, "ejs-querybuilder>e-columns>e-column", never, { "category": "category"; "columns": "columns"; "field": "field"; "format": "format"; "label": "label"; "operators": "operators"; "ruleTemplate": "ruleTemplate"; "step": "step"; "template": "template"; "type": "type"; "validation": "validation"; "value": "value"; "values": "values"; }, {}, ["ruleTemplate", "template"]>;
90
- }
91
- /**
92
- * Column Array Directive
93
- * @private
94
- */
95
- export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
96
- constructor();
97
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
98
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-querybuilder>e-columns", never, {}, {}, ["children"]>;
99
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-column` directive represent a column of the Angular QueryBuilder.
5
+ * It must be contained in a QueryBuilder component(`ejs-querybuilder`).
6
+ * ```html
7
+ * <ejs-querybuilder [dataSource]='data'>
8
+ * <e-columns>
9
+ * <e-column field='ID' label='ID' type='number'></e-column>
10
+ * <e-column field='Date' label='Date' type='date' format='dd/MM/yyyy'></e-column>
11
+ * </e-columns>
12
+ * </ejs-querybuilder>
13
+ * ```
14
+ */
15
+ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Specifies the types in columns field.
20
+ * @default null
21
+ */
22
+ type: any;
23
+ /**
24
+ * Specifies the category for columns.
25
+ * @default null
26
+ */
27
+ category: any;
28
+ /**
29
+ * Specifies the sub fields in columns.
30
+ * @default null
31
+ */
32
+ columns: any;
33
+ /**
34
+ * Specifies the fields in columns.
35
+ * @default null
36
+ */
37
+ field: any;
38
+ /**
39
+ * Specifies the date format for columns.
40
+ * @asptype string
41
+ * @blazortype string
42
+ * @default null
43
+ */
44
+ format: any;
45
+ /**
46
+ * Specifies the labels name in columns.
47
+ * @default null
48
+ */
49
+ label: any;
50
+ /**
51
+ * Specifies the operators in columns.
52
+ * @default null
53
+ */
54
+ operators: any;
55
+ /**
56
+ * Specifies the step value(numeric textbox) for columns.
57
+ * @default null
58
+ */
59
+ step: any;
60
+ /**
61
+ * Specifies the validation for columns (text, number and date).
62
+ * @default { isRequired: true , min: 0, max: Number.MAX_VALUE }
63
+ */
64
+ validation: any;
65
+ /**
66
+ * Specifies the default value for columns.
67
+ * @default null
68
+ */
69
+ value: any;
70
+ /**
71
+ * Specifies the values in columns or bind the values from sub controls.
72
+ * @default null
73
+ */
74
+ values: any;
75
+ /**
76
+ * Specifies the rule template for the field with any other widgets.
77
+ * @default null
78
+ * @asptype string
79
+ */
80
+ ruleTemplate: any;
81
+ /**
82
+ * Specifies the template for value field such as slider or any other widgets.
83
+ * @default null
84
+ */
85
+ template: any;
86
+ constructor(viewContainerRef: ViewContainerRef);
87
+ }
88
+ /**
89
+ * Column Array Directive
90
+ * @private
91
+ */
92
+ export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
93
+ constructor();
94
+ }
@@ -1,13 +1,7 @@
1
- import { ValueProvider } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "./querybuilder.module";
5
- export declare const QueryLibraryService: ValueProvider;
6
- /**
7
- * NgModule definition for the QueryBuilder component with providers.
8
- */
9
- export declare class QueryBuilderAllModule {
10
- static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderAllModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<QueryBuilderAllModule, never, [typeof i1.CommonModule, typeof i2.QueryBuilderModule], [typeof i2.QueryBuilderModule]>;
12
- static ɵinj: i0.ɵɵInjectorDeclaration<QueryBuilderAllModule>;
13
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ export declare const QueryLibraryService: ValueProvider;
3
+ /**
4
+ * NgModule definition for the QueryBuilder component with providers.
5
+ */
6
+ export declare class QueryBuilderAllModule {
7
+ }
@@ -1,49 +1,45 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { QueryBuilder } from '@syncfusion/ej2-querybuilder';
4
- import { ColumnsDirective } from './columns.directive';
5
- import * as i0 from "@angular/core";
6
- export declare const inputs: string[];
7
- export declare const outputs: string[];
8
- export declare const twoWays: string[];
9
- /**
10
- * Represents the EJ2 Angular QueryBuilder Component.
11
- * ```html
12
- * <ejs-querybuilder></ejs-querybuilder>
13
- * ```
14
- */
15
- export declare class QueryBuilderComponent extends QueryBuilder implements IComponentBase {
16
- private ngEle;
17
- private srenderer;
18
- private viewContainerRef;
19
- private injector;
20
- context: any;
21
- tagObjects: any;
22
- actionBegin: any;
23
- beforeChange: any;
24
- change: any;
25
- created: any;
26
- dataBound: any;
27
- destroyed: any;
28
- ruleChange: any;
29
- drag: any;
30
- dragStart: any;
31
- drop: any;
32
- childColumns: QueryList<ColumnsDirective>;
33
- tags: string[];
34
- /**
35
- * Specifies the template for the header with any other widgets.
36
- * @default null
37
- * @asptype string
38
- */
39
- headerTemplate: any;
40
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
41
- ngOnInit(): void;
42
- ngAfterViewInit(): void;
43
- ngOnDestroy(): void;
44
- ngAfterContentChecked(): void;
45
- registerEvents: (eventList: string[]) => void;
46
- addTwoWay: (propList: string[]) => void;
47
- static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<QueryBuilderComponent, "ejs-querybuilder", never, { "addRuleToNewGroups": "addRuleToNewGroups"; "allowDragAndDrop": "allowDragAndDrop"; "allowValidation": "allowValidation"; "autoSelectField": "autoSelectField"; "autoSelectOperator": "autoSelectOperator"; "columns": "columns"; "cssClass": "cssClass"; "dataSource": "dataSource"; "displayMode": "displayMode"; "enableNotCondition": "enableNotCondition"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableSeparateConnector": "enableSeparateConnector"; "fieldMode": "fieldMode"; "fieldModel": "fieldModel"; "headerTemplate": "headerTemplate"; "height": "height"; "immediateModeDelay": "immediateModeDelay"; "locale": "locale"; "matchCase": "matchCase"; "maxGroupCount": "maxGroupCount"; "operatorModel": "operatorModel"; "readonly": "readonly"; "rule": "rule"; "separator": "separator"; "showButtons": "showButtons"; "sortDirection": "sortDirection"; "summaryView": "summaryView"; "valueModel": "valueModel"; "width": "width"; }, { "actionBegin": "actionBegin"; "beforeChange": "beforeChange"; "change": "change"; "created": "created"; "dataBound": "dataBound"; "destroyed": "destroyed"; "ruleChange": "ruleChange"; "drag": "drag"; "dragStart": "dragStart"; "drop": "drop"; }, ["headerTemplate", "childColumns"], never>;
49
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { QueryBuilder } from '@syncfusion/ej2-querybuilder';
4
+ import { ColumnsDirective } from './columns.directive';
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular QueryBuilder Component.
10
+ * ```html
11
+ * <ejs-querybuilder></ejs-querybuilder>
12
+ * ```
13
+ */
14
+ export declare class QueryBuilderComponent extends QueryBuilder implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ context: any;
20
+ tagObjects: any;
21
+ actionBegin: any;
22
+ beforeChange: any;
23
+ change: any;
24
+ created: any;
25
+ dataBound: any;
26
+ ruleChange: any;
27
+ drag: any;
28
+ dragStart: any;
29
+ drop: any;
30
+ childColumns: QueryList<ColumnsDirective>;
31
+ tags: string[];
32
+ /**
33
+ * Specifies the template for the header with any other widgets.
34
+ * @default null
35
+ * @asptype string
36
+ */
37
+ headerTemplate: any;
38
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
39
+ ngOnInit(): void;
40
+ ngAfterViewInit(): void;
41
+ ngOnDestroy(): void;
42
+ ngAfterContentChecked(): void;
43
+ registerEvents: (eventList: string[]) => void;
44
+ addTwoWay: (propList: string[]) => void;
45
+ }
@@ -1,12 +1,5 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./querybuilder.component";
3
- import * as i2 from "./columns.directive";
4
- import * as i3 from "@angular/common";
5
- /**
6
- * NgModule definition for the QueryBuilder component.
7
- */
8
- export declare class QueryBuilderModule {
9
- static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<QueryBuilderModule, [typeof i1.QueryBuilderComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective], [typeof i3.CommonModule], [typeof i1.QueryBuilderComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<QueryBuilderModule>;
12
- }
1
+ /**
2
+ * NgModule definition for the QueryBuilder component.
3
+ */
4
+ export declare class QueryBuilderModule {
5
+ }