@mintplayer/ng-spark 0.1.0 → 0.1.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mintplayer/ng-spark",
3
3
  "private": false,
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "description": "Angular component library for MintPlayer.Spark CRUD applications",
6
6
  "repository": {
7
7
  "type": "git",
@@ -304,7 +304,10 @@ declare class SparkService {
304
304
  take?: number;
305
305
  search?: string;
306
306
  }): Promise<QueryResult>;
307
- executeQueryByName(queryName: string): Promise<QueryResult>;
307
+ executeQueryByName(queryName: string, options?: {
308
+ parentId?: string;
309
+ parentType?: string;
310
+ }): Promise<QueryResult>;
308
311
  getProgramUnits(): Promise<ProgramUnitsConfiguration>;
309
312
  list(type: string): Promise<PersistentObject[]>;
310
313
  get(type: string, id: string): Promise<PersistentObject>;
@@ -372,6 +375,8 @@ declare class SparkPoFormComponent {
372
375
  validationErrors: _angular_core.InputSignal<ValidationError[]>;
373
376
  showButtons: _angular_core.InputSignal<boolean>;
374
377
  isSaving: _angular_core.InputSignal<boolean>;
378
+ parentId: _angular_core.InputSignal<string>;
379
+ parentType: _angular_core.InputSignal<string>;
375
380
  save: _angular_core.OutputEmitterRef<void>;
376
381
  cancel: _angular_core.OutputEmitterRef<void>;
377
382
  colors: typeof Color;
@@ -434,7 +439,7 @@ declare class SparkPoFormComponent {
434
439
  selectReferenceItem(item: PersistentObject): void;
435
440
  closeReferenceModal(): void;
436
441
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SparkPoFormComponent, never>;
437
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SparkPoFormComponent, "spark-po-form", never, { "entityType": { "alias": "entityType"; "required": false; "isSignal": true; }; "formData": { "alias": "formData"; "required": false; "isSignal": true; }; "validationErrors": { "alias": "validationErrors"; "required": false; "isSignal": true; }; "showButtons": { "alias": "showButtons"; "required": false; "isSignal": true; }; "isSaving": { "alias": "isSaving"; "required": false; "isSignal": true; }; }, { "formData": "formDataChange"; "save": "save"; "cancel": "cancel"; }, never, never, true, never>;
442
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SparkPoFormComponent, "spark-po-form", never, { "entityType": { "alias": "entityType"; "required": false; "isSignal": true; }; "formData": { "alias": "formData"; "required": false; "isSignal": true; }; "validationErrors": { "alias": "validationErrors"; "required": false; "isSignal": true; }; "showButtons": { "alias": "showButtons"; "required": false; "isSignal": true; }; "isSaving": { "alias": "isSaving"; "required": false; "isSignal": true; }; "parentId": { "alias": "parentId"; "required": false; "isSignal": true; }; "parentType": { "alias": "parentType"; "required": false; "isSignal": true; }; }, { "formData": "formDataChange"; "save": "save"; "cancel": "cancel"; }, never, never, true, never>;
438
443
  }
439
444
 
440
445
  declare class SparkPoCreateComponent {