@decaf-ts/for-angular 0.0.34 → 0.0.36
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
CHANGED
|
@@ -16,7 +16,6 @@ import { TranslateService, TranslateLoader, TranslationObject, TranslateParser,
|
|
|
16
16
|
import { Title, SafeHtml } from '@angular/platform-browser';
|
|
17
17
|
import { IonAccordionGroup, ItemReorderEventDetail } from '@ionic/angular/standalone';
|
|
18
18
|
import { Subscription, Observable } from 'rxjs';
|
|
19
|
-
import { NgxParentComponentDirective as NgxParentComponentDirective$1 } from 'src/lib/engine/NgxParentComponentDirective';
|
|
20
19
|
import { InjectablesRegistry } from '@decaf-ts/injectable-decorators';
|
|
21
20
|
import { HttpClient } from '@angular/common/http';
|
|
22
21
|
import * as i1 from '@angular/common';
|
|
@@ -1099,10 +1098,10 @@ declare abstract class NgxDecafComponentDirective extends LoggedClass implements
|
|
|
1099
1098
|
* and validation rules for the form fields, and is required for most operations except
|
|
1100
1099
|
* for certain read or delete scenarios.
|
|
1101
1100
|
*
|
|
1102
|
-
* @type {
|
|
1101
|
+
* @type {string | number | undefined}
|
|
1103
1102
|
* @memberOf NgxDecafComponentDirective
|
|
1104
1103
|
*/
|
|
1105
|
-
modelId
|
|
1104
|
+
modelId?: string | number;
|
|
1106
1105
|
/**
|
|
1107
1106
|
* @description Primary key field name for the model.
|
|
1108
1107
|
* @summary Specifies which field in the model should be used as the primary key.
|
|
@@ -6744,7 +6743,7 @@ declare class SearchbarComponent extends NgxDecafComponentDirective implements O
|
|
|
6744
6743
|
* @link {@link SteppedFormComponent}
|
|
6745
6744
|
*/
|
|
6746
6745
|
|
|
6747
|
-
declare class SteppedFormComponent extends NgxParentComponentDirective
|
|
6746
|
+
declare class SteppedFormComponent extends NgxParentComponentDirective implements OnInit, OnDestroy {
|
|
6748
6747
|
/**
|
|
6749
6748
|
* @description Array of UI model metadata for all form fields.
|
|
6750
6749
|
* @summary Contains the complete collection of UI model metadata that defines
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/for-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"author": "Tiago Venceslau and Contributors",
|
|
5
5
|
"license": "MPL-2.0 OR AGPL-3.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"@angular/platform-browser": "^20.2.4",
|
|
21
21
|
"@angular/platform-browser-dynamic": "^20.2.4",
|
|
22
22
|
"@angular/router": "^20.2.4",
|
|
23
|
-
"@decaf-ts/cli": "latest",
|
|
24
23
|
"@decaf-ts/core": "latest",
|
|
25
|
-
"@decaf-ts/db-decorators": "
|
|
24
|
+
"@decaf-ts/db-decorators": "latest",
|
|
25
|
+
"@decaf-ts/decoration": "latest",
|
|
26
26
|
"@decaf-ts/decorator-validation": "latest",
|
|
27
27
|
"@decaf-ts/for-http": "latest",
|
|
28
28
|
"@decaf-ts/injectable-decorators": "latest",
|