@snteam/amplify-angular-core 1.0.42 → 1.0.44
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
|
@@ -1196,6 +1196,7 @@ declare class ConfigurationsComponent implements OnInit {
|
|
|
1196
1196
|
hasFormView: boolean;
|
|
1197
1197
|
hasListView: boolean;
|
|
1198
1198
|
hasFieldConfig: boolean;
|
|
1199
|
+
hasRelationshipConfig: boolean;
|
|
1199
1200
|
relationshipConfigs: RelationshipSelectionConfigWithId[];
|
|
1200
1201
|
showAddRelationshipConfig: boolean;
|
|
1201
1202
|
editingRelationshipConfig: RelationshipSelectionConfigWithId | null;
|
|
@@ -1224,14 +1225,18 @@ declare class ConfigurationsComponent implements OnInit {
|
|
|
1224
1225
|
onRelationshipModelChange(event: any): void;
|
|
1225
1226
|
private loadAvailableFields;
|
|
1226
1227
|
private loadRelationshipConfigs;
|
|
1228
|
+
private loadRelationshipConfigsFromLocalStorage;
|
|
1227
1229
|
private saveRelationshipConfigsToStorage;
|
|
1228
|
-
|
|
1230
|
+
private updateAmplifyModelService;
|
|
1231
|
+
saveRelationshipConfig(): Promise<void>;
|
|
1232
|
+
private createRelationshipConfig;
|
|
1233
|
+
private updateRelationshipConfig;
|
|
1229
1234
|
editRelationshipConfig(config: RelationshipSelectionConfigWithId): void;
|
|
1230
|
-
deleteRelationshipConfig(config: RelationshipSelectionConfigWithId): void
|
|
1235
|
+
deleteRelationshipConfig(config: RelationshipSelectionConfigWithId): Promise<void>;
|
|
1231
1236
|
private generateId;
|
|
1232
1237
|
cancelRelationshipConfigEdit(): void;
|
|
1233
|
-
loadDefaultRelationshipConfigs(): void
|
|
1234
|
-
clearAllRelationshipConfigs(): void
|
|
1238
|
+
loadDefaultRelationshipConfigs(): Promise<void>;
|
|
1239
|
+
clearAllRelationshipConfigs(): Promise<void>;
|
|
1235
1240
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationsComponent, never>;
|
|
1236
1241
|
static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurationsComponent, "snteam-configurations", never, { "amplifyOutputs": { "alias": "amplifyOutputs"; "required": false; }; }, {}, never, never, true, never>;
|
|
1237
1242
|
}
|