coer-elements 0.0.135 → 0.0.136

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.
@@ -0,0 +1,4 @@
1
+ export interface IInformation {
2
+ show: boolean;
3
+ tooltip?: string | null;
4
+ }
@@ -26,6 +26,7 @@ export * from './lib/coer-menu/menu-selected.interface';
26
26
  export * from './lib/coer-menu/menu.interface';
27
27
  export * from './lib/page-title/breadcrumb.interface';
28
28
  export * from './lib/page-title/go-back.interface';
29
+ export * from './lib/page-title/information.interface';
29
30
  export * from './lib/service/http-request.interface';
30
31
  export * from './lib/service/http-response.interface';
31
32
  export * from './lib/service/patch.interface';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "0.0.135",
3
+ "version": "0.0.136",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -1030,7 +1030,7 @@ header.coer-page-title nav {
1030
1030
  header.coer-page-title nav a.go-back-button {
1031
1031
  min-width: 60px;
1032
1032
  }
1033
- header.coer-page-title ol, header.coer-page-title a, header.coer-page-title .bi-info-circle {
1033
+ header.coer-page-title ol, header.coer-page-title a {
1034
1034
  margin: 0px;
1035
1035
  padding-left: 5px;
1036
1036
  text-decoration: none;
@@ -1047,12 +1047,6 @@ header.coer-page-title li {
1047
1047
  header.coer-page-title li.list-group-item a {
1048
1048
  color: var(--orange) !important;
1049
1049
  }
1050
- header.coer-page-title button {
1051
- border: none;
1052
- outline: none;
1053
- background-color: transparent;
1054
- padding-right: 8px;
1055
- }
1056
1050
 
1057
1051
  div.coer-dropdown {
1058
1052
  position: relative !important;
@@ -76,7 +76,7 @@ export declare class Page implements AfterViewInit, OnDestroy {
76
76
  protected IsNotNull: (value: any) => boolean;
77
77
  protected IsOnlyWhiteSpace: (value: any) => boolean;
78
78
  protected IsNotOnlyWhiteSpace: (value: any) => boolean;
79
- protected Sleep: (milliseconds?: number, reference?: string | null) => Promise<unknown>;
79
+ protected Sleep: (milliseconds?: number, reference?: string | null) => Promise<void>;
80
80
  protected IsInvalidElement: (element: any) => boolean;
81
81
  static ɵfac: i0.ɵɵFactoryDeclaration<Page, never>;
82
82
  static ɵcmp: i0.ɵɵComponentDeclaration<Page, "ng-component", never, {}, {}, never, never, true, never>;
@@ -26,7 +26,7 @@ export declare class Section<T> implements AfterViewInit, OnDestroy {
26
26
  protected IsNotNull: (value: any) => boolean;
27
27
  protected IsOnlyWhiteSpace: (value: any) => boolean;
28
28
  protected IsNotOnlyWhiteSpace: (value: any) => boolean;
29
- protected Sleep: (milliseconds?: number, reference?: string | null) => Promise<unknown>;
29
+ protected Sleep: (milliseconds?: number, reference?: string | null) => Promise<void>;
30
30
  protected IsInvalidElement: (element: any) => boolean;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<Section<any>, never>;
32
32
  static ɵcmp: i0.ɵɵComponentDeclaration<Section<any>, "ng-component", never, { "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isUpdate": { "alias": "isUpdate"; "required": false; "isSignal": true; }; }, { "onReady": "onReady"; "onDestroy": "onDestroy"; "onIsLoading": "onIsLoading"; "onUpdated": "onUpdated"; }, never, never, true, never>;
@@ -18,7 +18,7 @@ export declare const Tools: {
18
18
  /** Clean extra whitespaces */
19
19
  CleanUpBlanks: (text: string | number) => string;
20
20
  /** Get properties of an object */
21
- GetPropertyList: <T>(obj: T | null | undefined) => string[];
21
+ GetPropertyList: <T>(object: T | null | undefined) => string[];
22
22
  /**
23
23
  * Set an index and merge more arrays of the same type
24
24
  * */
@@ -34,7 +34,7 @@ export declare const Tools: {
34
34
  /** Return a string with forman numeric */
35
35
  GetNumericFormat: (value: string | number | null | undefined, decimals?: number) => string;
36
36
  /** Wait the time indicated */
37
- Sleep: (milliseconds?: number, reference?: string | null) => Promise<unknown>;
37
+ Sleep: (milliseconds?: number, reference?: string | null) => Promise<void>;
38
38
  /** */
39
39
  Except: <T>(array: T[], filter: any[], ...properties: string[]) => T[];
40
40
  };