coer-elements 1.1.23 → 1.1.25

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.
@@ -1,4 +1,4 @@
1
- export interface IGridInputTextbox<T> {
1
+ export interface IGridInput<T> {
2
2
  property: string;
3
3
  row: T;
4
4
  value: any;
@@ -1,4 +1,5 @@
1
1
  export interface IGridItem<T> {
2
+ indexRow: number;
2
3
  property: string;
3
4
  row: T;
4
5
  value: any;
@@ -14,7 +14,6 @@ export * from './lib/coer-grid/grid-header-import-button.interface';
14
14
  export * from './lib/coer-grid/grid-header.interface';
15
15
  export * from './lib/coer-grid/grid-import.interface';
16
16
  export * from './lib/coer-grid/grid-input-checkbox.interface';
17
- export * from './lib/coer-grid/grid-input-switch-change.interface';
18
17
  export * from './lib/coer-grid/grid-input-textbox.interface';
19
18
  export * from './lib/coer-grid/grid-item.interface';
20
19
  export * from './lib/coer-grid/grid-keyup-enter.interface';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "1.1.23",
3
+ "version": "1.1.25",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -25,7 +25,7 @@ export declare class Service {
25
25
  private _PATCH$;
26
26
  private _DELETE$;
27
27
  /** */
28
- ReleaseSubscription(subscription: Subscription): void;
28
+ protected ReleaseSubscription(subscription: Subscription): void;
29
29
  /** HTTP GET */
30
30
  protected HTTP_GET<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<T>>;
31
31
  /** HTTP POST */
@@ -1,5 +0,0 @@
1
- export interface IGridInputSwitchChange<T> {
2
- property: string;
3
- row: T;
4
- value: any;
5
- }