@apipass/schemas 0.2.1-alpha.9 → 0.2.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.
@@ -9,7 +9,7 @@ export declare class SchemaCustomAttributesComponent extends BaseSchemaComponent
9
9
  ngAfterContentInit(): void;
10
10
  saveNewAttribute(newCustomField: any): void;
11
11
  removeCustomAttribute(attributeIndex: any): void;
12
- onDrop($event: any, attribute: any): void;
12
+ onDropAttr($event: any, attribute: any): void;
13
13
  static ɵfac: i0.ɵɵFactoryDef<SchemaCustomAttributesComponent, never>;
14
14
  static ɵcmp: i0.ɵɵComponentDefWithMeta<SchemaCustomAttributesComponent, "schema-custom-attributes", never, { "onDropFunction": "onDropFunction"; }, { "onSaveAttribute": "onSaveAttribute"; "onDropOnAttribute": "onDropOnAttribute"; }, never, never>;
15
15
  }
@@ -1,5 +1,6 @@
1
1
  import { AfterContentInit } from '@angular/core';
2
2
  import { BaseSchemaComponent } from '../../../../base-schema.component';
3
+ import { DndDropEvent } from 'ngx-drag-drop';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class BooleanInputComponent extends BaseSchemaComponent implements AfterContentInit {
5
6
  placeholder: string | undefined;
@@ -7,6 +8,7 @@ export declare class BooleanInputComponent extends BaseSchemaComponent implement
7
8
  maxLength: any;
8
9
  value: string | undefined;
9
10
  ngAfterContentInit(): void;
11
+ onDropCallBack($event: DndDropEvent, value: any): void;
10
12
  changeValue($event: any): void;
11
13
  static ɵfac: i0.ɵɵFactoryDef<BooleanInputComponent, never>;
12
14
  static ɵcmp: i0.ɵɵComponentDefWithMeta<BooleanInputComponent, "boolean-input", never, { "placeholder": "placeholder"; "inputId": "inputId"; "maxLength": "maxLength"; }, {}, never, never>;
@@ -13,6 +13,7 @@ export declare class InputRenderComponent extends BaseSchemaComponent implements
13
13
  }>;
14
14
  value: any;
15
15
  ngAfterContentInit(): void;
16
+ onDropCallBack($event: DndDropEvent, value: any): void;
16
17
  onChange($event: any): void;
17
18
  static ɵfac: i0.ɵɵFactoryDef<InputRenderComponent, never>;
18
19
  static ɵcmp: i0.ɵɵComponentDefWithMeta<InputRenderComponent, "input-render", never, { "schema": "schema"; "modelPropertiesPath": "modelPropertiesPath"; "inputId": "inputId"; "editing": "editing"; }, { "onDropEvent": "onDropEvent"; }, never, never>;
@@ -1,5 +1,6 @@
1
1
  import { AfterContentInit } from '@angular/core';
2
2
  import { BaseSchemaComponent } from '../../../../base-schema.component';
3
+ import { DndDropEvent } from 'ngx-drag-drop';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class NumberInputComponent extends BaseSchemaComponent implements AfterContentInit {
5
6
  placeholder: string | undefined;
@@ -7,6 +8,7 @@ export declare class NumberInputComponent extends BaseSchemaComponent implements
7
8
  maxLength: any;
8
9
  value: string | undefined;
9
10
  ngAfterContentInit(): void;
11
+ onDropCallBack($event: DndDropEvent, value: any): void;
10
12
  changeValue($event: any): void;
11
13
  static ɵfac: i0.ɵɵFactoryDef<NumberInputComponent, never>;
12
14
  static ɵcmp: i0.ɵɵComponentDefWithMeta<NumberInputComponent, "number-input", never, { "placeholder": "placeholder"; "inputId": "inputId"; "maxLength": "maxLength"; }, {}, never, never>;