@smallpearl/ngx-helper 0.29.23
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/README.md +230 -0
- package/core/index.d.ts +2 -0
- package/core/src/ngx-helper.d.ts +7 -0
- package/core/src/version.d.ts +1 -0
- package/entity-field/index.d.ts +2 -0
- package/entity-field/src/entity-field-spec.d.ts +69 -0
- package/entity-field/src/provider.d.ts +27 -0
- package/fesm2022/smallpearl-ngx-helper-core.mjs +23 -0
- package/fesm2022/smallpearl-ngx-helper-core.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-entity-field.mjs +112 -0
- package/fesm2022/smallpearl-ngx-helper-entity-field.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-forms.mjs +112 -0
- package/fesm2022/smallpearl-ngx-helper-forms.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-hover-dropdown.mjs +108 -0
- package/fesm2022/smallpearl-ngx-helper-hover-dropdown.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-locale.mjs +296 -0
- package/fesm2022/smallpearl-ngx-helper-locale.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-busy-wheel.mjs +504 -0
- package/fesm2022/smallpearl-ngx-helper-mat-busy-wheel.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-context-menu.mjs +184 -0
- package/fesm2022/smallpearl-ngx-helper-mat-context-menu.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-entity-crud.mjs +1486 -0
- package/fesm2022/smallpearl-ngx-helper-mat-entity-crud.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-entity-list.mjs +800 -0
- package/fesm2022/smallpearl-ngx-helper-mat-entity-list.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-file-input.mjs +328 -0
- package/fesm2022/smallpearl-ngx-helper-mat-file-input.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-form-error.mjs +468 -0
- package/fesm2022/smallpearl-ngx-helper-mat-form-error.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-select-entity.mjs +854 -0
- package/fesm2022/smallpearl-ngx-helper-mat-select-entity.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-side-menu-layout.mjs +930 -0
- package/fesm2022/smallpearl-ngx-helper-mat-side-menu-layout.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-mat-tel-input.mjs +926 -0
- package/fesm2022/smallpearl-ngx-helper-mat-tel-input.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-sideload.mjs +111 -0
- package/fesm2022/smallpearl-ngx-helper-sideload.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper-stationary-with-line-items.mjs +384 -0
- package/fesm2022/smallpearl-ngx-helper-stationary-with-line-items.mjs.map +1 -0
- package/fesm2022/smallpearl-ngx-helper.mjs +13 -0
- package/fesm2022/smallpearl-ngx-helper.mjs.map +1 -0
- package/forms/index.d.ts +1 -0
- package/forms/src/validation-error-handler.d.ts +52 -0
- package/hover-dropdown/index.d.ts +1 -0
- package/hover-dropdown/src/hover-dropdown.directive.d.ts +41 -0
- package/index.d.ts +5 -0
- package/locale/index.d.ts +5 -0
- package/locale/src/currency.pipe.d.ts +14 -0
- package/locale/src/date.pipe.d.ts +14 -0
- package/locale/src/format-currency.d.ts +1 -0
- package/locale/src/format-date.d.ts +2 -0
- package/locale/src/is-empty.d.ts +1 -0
- package/locale/src/providers.d.ts +20 -0
- package/mat-busy-wheel/index.d.ts +4 -0
- package/mat-busy-wheel/src/busy-wheel-op.d.ts +65 -0
- package/mat-busy-wheel/src/busy-wheel.component.d.ts +12 -0
- package/mat-busy-wheel/src/busy-wheel.service.d.ts +42 -0
- package/mat-busy-wheel/src/host-busy-wheel.directive.d.ts +35 -0
- package/mat-context-menu/index.d.ts +1 -0
- package/mat-context-menu/src/mat-context-menu.component.d.ts +54 -0
- package/mat-entity-crud/index.d.ts +5 -0
- package/mat-entity-crud/src/default-config.d.ts +9 -0
- package/mat-entity-crud/src/form-view-host.component.d.ts +34 -0
- package/mat-entity-crud/src/mat-entity-crud-form-base.d.ts +95 -0
- package/mat-entity-crud/src/mat-entity-crud-internal-types.d.ts +66 -0
- package/mat-entity-crud/src/mat-entity-crud-types.d.ts +141 -0
- package/mat-entity-crud/src/mat-entity-crud.component.d.ts +267 -0
- package/mat-entity-crud/src/preview-host.component.d.ts +19 -0
- package/mat-entity-crud/src/preview-pane.component.d.ts +27 -0
- package/mat-entity-crud/src/providers.d.ts +3 -0
- package/mat-entity-list/index.d.ts +3 -0
- package/mat-entity-list/src/config.d.ts +6 -0
- package/mat-entity-list/src/mat-entity-list-types.d.ts +53 -0
- package/mat-entity-list/src/mat-entity-list.component.d.ts +209 -0
- package/mat-entity-list/src/providers.d.ts +3 -0
- package/mat-file-input/README.md +63 -0
- package/mat-file-input/index.d.ts +1 -0
- package/mat-file-input/src/mat-file-input.component.d.ts +58 -0
- package/mat-form-error/README.md +306 -0
- package/mat-form-error/index.d.ts +6 -0
- package/mat-form-error/src/locales/en.d.ts +4 -0
- package/mat-form-error/src/locales/hu.d.ts +4 -0
- package/mat-form-error/src/locales/index.d.ts +3 -0
- package/mat-form-error/src/locales/pt-br.d.ts +4 -0
- package/mat-form-error/src/ngx-error-list.component.d.ts +9 -0
- package/mat-form-error/src/ngx-mat-error-control.d.ts +17 -0
- package/mat-form-error/src/ngx-mat-error-def.directive.d.ts +30 -0
- package/mat-form-error/src/ngx-mat-errors-for-date-range-picker.directive.d.ts +8 -0
- package/mat-form-error/src/ngx-mat-errors.component.d.ts +23 -0
- package/mat-form-error/src/types.d.ts +68 -0
- package/mat-form-error/src/utils/coerce-to-observable.d.ts +3 -0
- package/mat-form-error/src/utils/distinct-until-error-changed.d.ts +2 -0
- package/mat-form-error/src/utils/find-error-for-control.d.ts +9 -0
- package/mat-form-error/src/utils/get-abstract-controls.d.ts +3 -0
- package/mat-form-error/src/utils/get-control-with-error.d.ts +3 -0
- package/mat-select-entity/index.d.ts +2 -0
- package/mat-select-entity/src/mat-select-entity.component.d.ts +207 -0
- package/mat-select-entity/src/providers.d.ts +9 -0
- package/mat-side-menu-layout/index.d.ts +6 -0
- package/mat-side-menu-layout/src/layout.service.d.ts +23 -0
- package/mat-side-menu-layout/src/mat-menu-layout.component.d.ts +39 -0
- package/mat-side-menu-layout/src/mat-menu-layout.module.d.ts +18 -0
- package/mat-side-menu-layout/src/mat-menu-list-item.component.d.ts +36 -0
- package/mat-side-menu-layout/src/mat-menu-pane.component.d.ts +66 -0
- package/mat-side-menu-layout/src/nav-item.d.ts +10 -0
- package/mat-tel-input/README.md +18 -0
- package/mat-tel-input/index.d.ts +2 -0
- package/mat-tel-input/src/country-codes.d.ts +5 -0
- package/mat-tel-input/src/mat-telephone.component.d.ts +129 -0
- package/mat-tel-input/src/providers.d.ts +38 -0
- package/ngx-helper.d.ts +2 -0
- package/package.json +114 -0
- package/public-api.d.ts +1 -0
- package/sideload/index.d.ts +1 -0
- package/sideload/src/sideload.d.ts +17 -0
- package/stationary-with-line-items/index.d.ts +1 -0
- package/stationary-with-line-items/src/stationary-with-line-items.component.d.ts +74 -0
package/package.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@smallpearl/ngx-helper",
|
|
3
|
+
"version": "0.29.23",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^19.1.0",
|
|
6
|
+
"@angular/core": "^19.1.0",
|
|
7
|
+
"@angular/cdk": "^19.1.0",
|
|
8
|
+
"@angular/material": "^19.1.0",
|
|
9
|
+
"@angular/forms": "^19.1.0",
|
|
10
|
+
"@jsverse/transloco": "7.5.1",
|
|
11
|
+
"@ngneat/elf": "^2.5.1",
|
|
12
|
+
"@ngneat/elf-entities": "^5.0.2",
|
|
13
|
+
"angular-split": "^19.0.0",
|
|
14
|
+
"google-libphonenumber": "^3.2.34",
|
|
15
|
+
"lodash": "^4.17.21",
|
|
16
|
+
"pluralize": "^8.0.0",
|
|
17
|
+
"ngx-infinite-scroll": "^19.0.0",
|
|
18
|
+
"ngx-mat-select-search": "^8.0.0",
|
|
19
|
+
"rxjs": "^7.0.0"
|
|
20
|
+
},
|
|
21
|
+
"peerDependenciesMeta": {
|
|
22
|
+
"ngx-infinite-scroll": {
|
|
23
|
+
"optional": true
|
|
24
|
+
},
|
|
25
|
+
"angular-split": {
|
|
26
|
+
"optional": true
|
|
27
|
+
},
|
|
28
|
+
"@ngneat/elf": {
|
|
29
|
+
"optional": true
|
|
30
|
+
},
|
|
31
|
+
"@ngneat/elf-entities": {
|
|
32
|
+
"optional": true
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"tslib": "^2.3.0"
|
|
37
|
+
},
|
|
38
|
+
"sideEffects": false,
|
|
39
|
+
"module": "fesm2022/smallpearl-ngx-helper.mjs",
|
|
40
|
+
"typings": "index.d.ts",
|
|
41
|
+
"exports": {
|
|
42
|
+
"./package.json": {
|
|
43
|
+
"default": "./package.json"
|
|
44
|
+
},
|
|
45
|
+
".": {
|
|
46
|
+
"types": "./index.d.ts",
|
|
47
|
+
"default": "./fesm2022/smallpearl-ngx-helper.mjs"
|
|
48
|
+
},
|
|
49
|
+
"./core": {
|
|
50
|
+
"types": "./core/index.d.ts",
|
|
51
|
+
"default": "./fesm2022/smallpearl-ngx-helper-core.mjs"
|
|
52
|
+
},
|
|
53
|
+
"./entity-field": {
|
|
54
|
+
"types": "./entity-field/index.d.ts",
|
|
55
|
+
"default": "./fesm2022/smallpearl-ngx-helper-entity-field.mjs"
|
|
56
|
+
},
|
|
57
|
+
"./hover-dropdown": {
|
|
58
|
+
"types": "./hover-dropdown/index.d.ts",
|
|
59
|
+
"default": "./fesm2022/smallpearl-ngx-helper-hover-dropdown.mjs"
|
|
60
|
+
},
|
|
61
|
+
"./locale": {
|
|
62
|
+
"types": "./locale/index.d.ts",
|
|
63
|
+
"default": "./fesm2022/smallpearl-ngx-helper-locale.mjs"
|
|
64
|
+
},
|
|
65
|
+
"./mat-busy-wheel": {
|
|
66
|
+
"types": "./mat-busy-wheel/index.d.ts",
|
|
67
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-busy-wheel.mjs"
|
|
68
|
+
},
|
|
69
|
+
"./mat-context-menu": {
|
|
70
|
+
"types": "./mat-context-menu/index.d.ts",
|
|
71
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-context-menu.mjs"
|
|
72
|
+
},
|
|
73
|
+
"./forms": {
|
|
74
|
+
"types": "./forms/index.d.ts",
|
|
75
|
+
"default": "./fesm2022/smallpearl-ngx-helper-forms.mjs"
|
|
76
|
+
},
|
|
77
|
+
"./mat-entity-crud": {
|
|
78
|
+
"types": "./mat-entity-crud/index.d.ts",
|
|
79
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-entity-crud.mjs"
|
|
80
|
+
},
|
|
81
|
+
"./mat-entity-list": {
|
|
82
|
+
"types": "./mat-entity-list/index.d.ts",
|
|
83
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-entity-list.mjs"
|
|
84
|
+
},
|
|
85
|
+
"./mat-file-input": {
|
|
86
|
+
"types": "./mat-file-input/index.d.ts",
|
|
87
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-file-input.mjs"
|
|
88
|
+
},
|
|
89
|
+
"./mat-form-error": {
|
|
90
|
+
"types": "./mat-form-error/index.d.ts",
|
|
91
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-form-error.mjs"
|
|
92
|
+
},
|
|
93
|
+
"./mat-select-entity": {
|
|
94
|
+
"types": "./mat-select-entity/index.d.ts",
|
|
95
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-select-entity.mjs"
|
|
96
|
+
},
|
|
97
|
+
"./mat-side-menu-layout": {
|
|
98
|
+
"types": "./mat-side-menu-layout/index.d.ts",
|
|
99
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-side-menu-layout.mjs"
|
|
100
|
+
},
|
|
101
|
+
"./mat-tel-input": {
|
|
102
|
+
"types": "./mat-tel-input/index.d.ts",
|
|
103
|
+
"default": "./fesm2022/smallpearl-ngx-helper-mat-tel-input.mjs"
|
|
104
|
+
},
|
|
105
|
+
"./sideload": {
|
|
106
|
+
"types": "./sideload/index.d.ts",
|
|
107
|
+
"default": "./fesm2022/smallpearl-ngx-helper-sideload.mjs"
|
|
108
|
+
},
|
|
109
|
+
"./stationary-with-line-items": {
|
|
110
|
+
"types": "./stationary-with-line-items/index.d.ts",
|
|
111
|
+
"default": "./fesm2022/smallpearl-ngx-helper-stationary-with-line-items.mjs"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ngx-helper';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/sideload';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A function merge sideloaded content into the main object thereby returning
|
|
3
|
+
* a composite object.
|
|
4
|
+
* @param resp - the JSON response object, typically received from remote for
|
|
5
|
+
* an HTTP request.
|
|
6
|
+
* @param targetObjKey - the key name of the target object into which the
|
|
7
|
+
* sideloaded data are to be merged.
|
|
8
|
+
* @param idKey - idKey. Function assumes that all the objects use the same
|
|
9
|
+
* key name as the unique object identifier.
|
|
10
|
+
* @param sideloadDataMap: An array of [string, string], where the first
|
|
11
|
+
* element specifies the property name of the target object and the second
|
|
12
|
+
* element the sideload data element's key. This is useful when the the
|
|
13
|
+
* target objet's property name that is to be merged with sideload data do not
|
|
14
|
+
* match.
|
|
15
|
+
* @returns
|
|
16
|
+
*/
|
|
17
|
+
export declare function sideloadToComposite(resp: any, targetObjKey: string, idKey?: string, mergeStrategy?: 'inplace' | 'append', appendObjSuffix?: string, sideloadDataMap?: Array<[string, string, string?]>): any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/stationary-with-line-items.component';
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { SPEntityField, SPEntityFieldSpec } from '@smallpearl/ngx-helper/entity-field';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FieldsRendererComponent<TEntity extends {
|
|
5
|
+
[P in IdKey]: PropertyKey;
|
|
6
|
+
}, IdKey extends string = 'id'> implements OnInit {
|
|
7
|
+
cdr: ChangeDetectorRef;
|
|
8
|
+
entity: import("@angular/core").InputSignal<TEntity>;
|
|
9
|
+
fields: import("@angular/core").InputSignal<SPEntityField<TEntity, IdKey>[]>;
|
|
10
|
+
isString: import("@angular/core").Signal<boolean>;
|
|
11
|
+
stringValue: import("@angular/core").Signal<any>;
|
|
12
|
+
ngxHelperConfig: import("@smallpearl/ngx-helper/core").SPNgxHelperConfig;
|
|
13
|
+
constructor(cdr: ChangeDetectorRef);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldsRendererComponent<any, any>, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldsRendererComponent<any, any>, "sp-fields-renderer", never, { "entity": { "alias": "entity"; "required": true; "isSignal": true; }; "fields": { "alias": "fields"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* A component that renders a stationary with line items, such as invoice,
|
|
20
|
+
* payment receipt, bill, bill payment record, journal entry, etc. All these
|
|
21
|
+
* documents have a uniform format and this component abstracts out the
|
|
22
|
+
* information displayed in this type of document as properties that the client
|
|
23
|
+
* can provide while it takes care of the rendering.
|
|
24
|
+
*
|
|
25
|
+
* Ideally we would declare this as a wrapper class with the actual rendering
|
|
26
|
+
* to be performed by an inner replaceable component. This way the app will be
|
|
27
|
+
* able to support multiple stationary designs, which eventually can be
|
|
28
|
+
* chosen by the user. Perhaps even providing them a feature to design the
|
|
29
|
+
* stationary.
|
|
30
|
+
*
|
|
31
|
+
* This is the first towards that long path ahead.
|
|
32
|
+
*/
|
|
33
|
+
export declare class StationaryWithLineItemsComponent<TEntity extends {
|
|
34
|
+
[P in IdKey]: PropertyKey;
|
|
35
|
+
}, TEntityLineItem extends {
|
|
36
|
+
[P in IdKey]: PropertyKey;
|
|
37
|
+
}, IdKey extends string = 'id'> implements OnInit {
|
|
38
|
+
entity: import("@angular/core").InputSignal<TEntity>;
|
|
39
|
+
title: import("@angular/core").InputSignal<string>;
|
|
40
|
+
number: import("@angular/core").InputSignal<string | number | undefined>;
|
|
41
|
+
leftHeader: import("@angular/core").InputSignal<string | (string | SPEntityFieldSpec<TEntity, IdKey>)[] | undefined>;
|
|
42
|
+
_leftHeaderFields: import("@angular/core").Signal<SPEntityField<TEntity, IdKey>[]>;
|
|
43
|
+
leftHeaderTemplate: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|
|
44
|
+
rightHeader: import("@angular/core").InputSignal<string | (string | SPEntityFieldSpec<TEntity, IdKey>)[] | undefined>;
|
|
45
|
+
_rightHeaderFields: import("@angular/core").Signal<SPEntityField<TEntity, IdKey>[]>;
|
|
46
|
+
rightHeaderTemplate: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|
|
47
|
+
items: import("@angular/core").InputSignal<{
|
|
48
|
+
[key: string]: string;
|
|
49
|
+
}[] | undefined>;
|
|
50
|
+
leftFooter: import("@angular/core").InputSignal<string | (string | SPEntityFieldSpec<TEntity, IdKey>)[] | undefined>;
|
|
51
|
+
_leftFooterFields: import("@angular/core").Signal<SPEntityField<TEntity, IdKey>[]>;
|
|
52
|
+
leftFooterTemplate: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|
|
53
|
+
rightFooter: import("@angular/core").InputSignal<string | (string | SPEntityFieldSpec<TEntity, IdKey>)[] | undefined>;
|
|
54
|
+
_rightFooterFields: import("@angular/core").Signal<SPEntityField<TEntity, IdKey>[]>;
|
|
55
|
+
rightFooterTemplate: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|
|
56
|
+
itemFieldName: import("@angular/core").InputSignal<string>;
|
|
57
|
+
itemColumnFields: import("@angular/core").InputSignal<(string | SPEntityFieldSpec<TEntity, IdKey>)[] | undefined>;
|
|
58
|
+
_itemColumnFields: import("@angular/core").Signal<SPEntityField<TEntity, IdKey>[]>;
|
|
59
|
+
_items: import("@angular/core").Signal<any>;
|
|
60
|
+
ngxHelperConfig: import("@smallpearl/ngx-helper/core").SPNgxHelperConfig;
|
|
61
|
+
ngxEntityFieldConfig: import("@smallpearl/ngx-helper/entity-field").SPEntityFieldConfig;
|
|
62
|
+
constructor();
|
|
63
|
+
ngOnInit(): void;
|
|
64
|
+
isString(value: any): value is string;
|
|
65
|
+
/**
|
|
66
|
+
* Make the method a generic as we'll be using it for both TEntity and its
|
|
67
|
+
* child TEntityLineItem objects.
|
|
68
|
+
* @param fieldSpecs
|
|
69
|
+
* @returns
|
|
70
|
+
*/
|
|
71
|
+
getSPEntityFields<T>(fieldSpecs: Array<SPEntityFieldSpec<TEntity, IdKey> | string> | string | undefined): Array<SPEntityField<TEntity, IdKey>>;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StationaryWithLineItemsComponent<any, any, any>, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StationaryWithLineItemsComponent<any, any, any>, "sp-stationary-with-line-items", never, { "entity": { "alias": "entity"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "number": { "alias": "number"; "required": false; "isSignal": true; }; "leftHeader": { "alias": "leftHeader"; "required": false; "isSignal": true; }; "leftHeaderTemplate": { "alias": "leftHeaderTemplate"; "required": false; "isSignal": true; }; "rightHeader": { "alias": "rightHeader"; "required": false; "isSignal": true; }; "rightHeaderTemplate": { "alias": "rightHeaderTemplate"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "leftFooter": { "alias": "leftFooter"; "required": false; "isSignal": true; }; "leftFooterTemplate": { "alias": "leftFooterTemplate"; "required": false; "isSignal": true; }; "rightFooter": { "alias": "rightFooter"; "required": false; "isSignal": true; }; "rightFooterTemplate": { "alias": "rightFooterTemplate"; "required": false; "isSignal": true; }; "itemFieldName": { "alias": "itemFieldName"; "required": false; "isSignal": true; }; "itemColumnFields": { "alias": "itemColumnFields"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
74
|
+
}
|