ets-fe-ng-sdk 20.0.2 → 20.0.3
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/index.d.ts +7 -7
- package/package.json +10 -30
package/index.d.ts
CHANGED
|
@@ -2195,13 +2195,13 @@ declare class BtnComponent implements OnInit {
|
|
|
2195
2195
|
*/
|
|
2196
2196
|
set customIcon(v: string);
|
|
2197
2197
|
/** Form to bind to the button for validation */
|
|
2198
|
-
readonly form: _angular_core.InputSignal<FormGroup<any> |
|
|
2198
|
+
readonly form: _angular_core.InputSignal<FormGroup<any> | AbstractControl<any, any, any> | FormArray<any> | FormControl<any>>;
|
|
2199
2199
|
/** Subject for form changes */
|
|
2200
2200
|
protected readonly formStateRes: _angular_core.ResourceRef<boolean>;
|
|
2201
2201
|
/** Signal for form validity state */
|
|
2202
2202
|
protected readonly formState: _angular_core.Signal<boolean>;
|
|
2203
2203
|
/** Multiple forms to bind to the button for validation */
|
|
2204
|
-
readonly forms: _angular_core.InputSignal<(FormGroup<any> |
|
|
2204
|
+
readonly forms: _angular_core.InputSignal<(FormGroup<any> | AbstractControl<any, any, any> | FormArray<any> | FormControl<any>)[]>;
|
|
2205
2205
|
/** Signal for multiple forms validity state */
|
|
2206
2206
|
protected readonly formsStateRes: _angular_core.ResourceRef<Omit<IFormState, "status">>;
|
|
2207
2207
|
protected readonly formsState: _angular_core.Signal<boolean>;
|
|
@@ -2950,7 +2950,7 @@ declare class InfoDialogComponent implements OnInit {
|
|
|
2950
2950
|
* @param status Status code (0=danger, 1=success, 2=info, 3=warning)
|
|
2951
2951
|
* @returns CSS class name corresponding to the status
|
|
2952
2952
|
*/
|
|
2953
|
-
cls: (status?: 0 | 1 | 2 | 3) => "
|
|
2953
|
+
cls: (status?: 0 | 1 | 2 | 3) => "" | "danger" | "success" | "info" | "warning";
|
|
2954
2954
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
2955
2955
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2956
2956
|
}
|
|
@@ -7262,7 +7262,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
7262
7262
|
readonly form: FormGroup<{
|
|
7263
7263
|
pageNumber: FormControl<number>;
|
|
7264
7264
|
sortBy: FormControl<keyof TItem>;
|
|
7265
|
-
sortDirection: FormControl<"" | "
|
|
7265
|
+
sortDirection: FormControl<"" | "DESC" | "ASC">;
|
|
7266
7266
|
pageSize: FormControl<number>;
|
|
7267
7267
|
}>;
|
|
7268
7268
|
/**
|
|
@@ -7271,7 +7271,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
7271
7271
|
readonly allQueryData: _angular_core.Signal<{
|
|
7272
7272
|
pageNumber: number;
|
|
7273
7273
|
sortBy: keyof TItem;
|
|
7274
|
-
sortDirection: "" | "
|
|
7274
|
+
sortDirection: "" | "DESC" | "ASC";
|
|
7275
7275
|
pageSize: number;
|
|
7276
7276
|
}>;
|
|
7277
7277
|
/**
|
|
@@ -7280,7 +7280,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
7280
7280
|
readonly formValue: _angular_core.Signal<{
|
|
7281
7281
|
pageNumber: number;
|
|
7282
7282
|
sortBy: keyof TItem;
|
|
7283
|
-
sortDirection: "" | "
|
|
7283
|
+
sortDirection: "" | "DESC" | "ASC";
|
|
7284
7284
|
pageSize: number;
|
|
7285
7285
|
}>;
|
|
7286
7286
|
/**
|
|
@@ -9748,7 +9748,7 @@ declare class ResizeGridPipe implements PipeTransform {
|
|
|
9748
9748
|
*/
|
|
9749
9749
|
declare class IndexCompLayoutComponent {
|
|
9750
9750
|
/** Number of columns in the grid layout */
|
|
9751
|
-
readonly grid: InputSignal<1 |
|
|
9751
|
+
readonly grid: InputSignal<1 | 2 | 3 | 5 | 4 | 6 | "auto">;
|
|
9752
9752
|
/** Whether to show the action buttons */
|
|
9753
9753
|
readonly showButtons: InputSignal<boolean>;
|
|
9754
9754
|
/** Whether to hide the clone button */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ets-fe-ng-sdk",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
|
|
6
6
|
},
|
|
@@ -20,34 +20,14 @@
|
|
|
20
20
|
"@angular/service-worker": "^20.0.0",
|
|
21
21
|
"@evolutics/translation": "^20.0.0",
|
|
22
22
|
"@fortawesome/angular-fontawesome": "^1.0.0",
|
|
23
|
-
"@fortawesome/fontawesome-svg-core": "^
|
|
24
|
-
"@fortawesome/free-brands-svg-icons": "^
|
|
25
|
-
"@fortawesome/free-regular-svg-icons": "^
|
|
26
|
-
"@fortawesome/free-solid-svg-icons": "^
|
|
27
|
-
"@
|
|
28
|
-
"@ngrx/
|
|
29
|
-
"@ngrx/
|
|
30
|
-
"@ngrx/
|
|
31
|
-
"@ngrx/store": "^19.0.0",
|
|
32
|
-
"@sentry/angular": "^8.50.0",
|
|
33
|
-
"@sentry/cli": "^2.40.0",
|
|
34
|
-
"@serene-dev/ng-tel-input": "^20.0.0",
|
|
35
|
-
"@serene-dev/toast-notifications": "20.0.0",
|
|
36
|
-
"crypto-js": "^4.2.0",
|
|
37
|
-
"file-saver": "^2.0.5",
|
|
38
|
-
"intl-tel-input": "^25.3.1",
|
|
39
|
-
"javascript-time-ago": "2.5.11",
|
|
40
|
-
"js-file-download": "^0.4.12",
|
|
41
|
-
"katex": "^0.16.20",
|
|
42
|
-
"lodash-es": "^4.17.21",
|
|
43
|
-
"ngx-quill": "^27.0.0",
|
|
44
|
-
"papaparse": "^5.5.1",
|
|
45
|
-
"perfect-scrollbar": "^1.5.6",
|
|
46
|
-
"quill": "^2.0.3",
|
|
47
|
-
"quill-mention": "^6.0.2",
|
|
48
|
-
"quill-resize-image": "^1.0.5",
|
|
49
|
-
"rxjs": "7.8.1",
|
|
50
|
-
"zone.js": "~0.15.0"
|
|
23
|
+
"@fortawesome/fontawesome-svg-core": "^7.0.0",
|
|
24
|
+
"@fortawesome/free-brands-svg-icons": "^7.0.0",
|
|
25
|
+
"@fortawesome/free-regular-svg-icons": "^7.0.0",
|
|
26
|
+
"@fortawesome/free-solid-svg-icons": "^7.0.0",
|
|
27
|
+
"@ngrx/effects": "^20.0.0",
|
|
28
|
+
"@ngrx/entity": "^20.0.0",
|
|
29
|
+
"@ngrx/operators": "^20.0.0",
|
|
30
|
+
"@ngrx/store": "^20.0.0"
|
|
51
31
|
},
|
|
52
32
|
"private": false,
|
|
53
33
|
"module": "fesm2022/ets-fe-ng-sdk.mjs",
|
|
@@ -63,6 +43,6 @@
|
|
|
63
43
|
},
|
|
64
44
|
"sideEffects": false,
|
|
65
45
|
"dependencies": {
|
|
66
|
-
"tslib": "^2.
|
|
46
|
+
"tslib": "^2.3.0"
|
|
67
47
|
}
|
|
68
48
|
}
|