coer-elements 0.0.134 → 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.
Files changed (30) hide show
  1. package/components/lib/coer-accordion/coer-accordion.component.d.ts +2 -2
  2. package/components/lib/coer-button/coer-button.component.d.ts +1 -1
  3. package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
  4. package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +1 -1
  5. package/components/lib/coer-filebox/coer-filebox.component.d.ts +3 -1
  6. package/components/lib/coer-grid/coer-grid.extension.d.ts +4 -4
  7. package/components/lib/coer-modal/coer-modal.component.d.ts +1 -1
  8. package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
  9. package/components/lib/coer-page-title/coer-page-title.component.d.ts +9 -7
  10. package/components/lib/coer-selectbox/coer-selectbox.component.d.ts +3 -1
  11. package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
  12. package/components/lib/coer-textbox/coer-textbox.component.d.ts +16 -15
  13. package/extensions/lib/string.extension.d.ts +2 -0
  14. package/fesm2022/coer-elements-components.mjs +171 -160
  15. package/fesm2022/coer-elements-components.mjs.map +1 -1
  16. package/fesm2022/coer-elements-extensions.mjs +15 -0
  17. package/fesm2022/coer-elements-extensions.mjs.map +1 -1
  18. package/fesm2022/coer-elements-interfaces.mjs.map +1 -1
  19. package/fesm2022/coer-elements-pages.mjs +5 -5
  20. package/fesm2022/coer-elements-pages.mjs.map +1 -1
  21. package/fesm2022/coer-elements-tools.mjs +15 -13
  22. package/fesm2022/coer-elements-tools.mjs.map +1 -1
  23. package/interfaces/lib/page-title/information.interface.d.ts +4 -0
  24. package/interfaces/public-api.d.ts +1 -0
  25. package/package.json +2 -2
  26. package/styles/coer-elements.css +5 -23
  27. package/styles/containers.scss +0 -18
  28. package/tools/lib/page.class.d.ts +2 -2
  29. package/tools/lib/section.class.d.ts +1 -1
  30. package/tools/lib/tools.d.ts +2 -2
@@ -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.134",
3
+ "version": "0.0.136",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -14,7 +14,7 @@
14
14
  "homepage": "https://github.com/Chris19910804/coer-elements",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/Chris19910804/coer-elements"
17
+ "url": ""
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@angular/common": "^19.0.0",
@@ -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;
@@ -1200,7 +1194,6 @@ div.coer-select-box ul.dropdown-menu {
1200
1194
  border-top-left-radius: 0px !important;
1201
1195
  border-top-right-radius: 0px !important;
1202
1196
  max-height: 205px !important;
1203
- width: 100% !important;
1204
1197
  overflow: auto !important;
1205
1198
  padding: 0px !important;
1206
1199
  }
@@ -1257,6 +1250,10 @@ coer-grid table tbody tr td.coer-selectbox div.coer-select-box .btn-group {
1257
1250
  top: 28px !important;
1258
1251
  }
1259
1252
 
1253
+ aside.modal .modal-content ul.dropdown-menu {
1254
+ position: fixed !important;
1255
+ }
1256
+
1260
1257
  mat-drawer-container {
1261
1258
  height: calc(100vh - 45px) !important;
1262
1259
  }
@@ -1809,10 +1806,7 @@ aside.toast-container > * {
1809
1806
  animation-name: fadeIn;
1810
1807
  animation-duration: 1.5s;
1811
1808
  animation-iteration-count: 1;
1812
- animation-fill-mode: both;
1813
1809
  min-height: 60px;
1814
- position: relative;
1815
- z-index: 0;
1816
1810
  }
1817
1811
 
1818
1812
  .coer-container-accordion {
@@ -1824,10 +1818,7 @@ aside.toast-container > * {
1824
1818
  animation-name: fadeIn;
1825
1819
  animation-duration: 1.5s;
1826
1820
  animation-iteration-count: 1;
1827
- animation-fill-mode: both;
1828
1821
  min-height: 60px;
1829
- position: relative;
1830
- z-index: 0;
1831
1822
  min-height: 55px;
1832
1823
  }
1833
1824
 
@@ -1840,10 +1831,7 @@ aside.toast-container > * {
1840
1831
  animation-name: fadeIn;
1841
1832
  animation-duration: 1.5s;
1842
1833
  animation-iteration-count: 1;
1843
- animation-fill-mode: both;
1844
1834
  min-height: 60px;
1845
- position: relative;
1846
- z-index: 0;
1847
1835
  padding: 0px;
1848
1836
  }
1849
1837
  .coer-container-tab .row {
@@ -1859,10 +1847,7 @@ aside.toast-container > * {
1859
1847
  animation-name: fadeIn;
1860
1848
  animation-duration: 1.5s;
1861
1849
  animation-iteration-count: 1;
1862
- animation-fill-mode: both;
1863
1850
  min-height: 60px;
1864
- position: relative;
1865
- z-index: 0;
1866
1851
  padding-bottom: 5px;
1867
1852
  }
1868
1853
 
@@ -1875,10 +1860,7 @@ aside.toast-container > * {
1875
1860
  animation-name: fadeIn;
1876
1861
  animation-duration: 1.5s;
1877
1862
  animation-iteration-count: 1;
1878
- animation-fill-mode: both;
1879
1863
  min-height: 60px;
1880
- position: relative;
1881
- z-index: 0;
1882
1864
  padding: 0px;
1883
1865
  }
1884
1866
 
@@ -12,25 +12,7 @@
12
12
  animation-name: fadeIn;
13
13
  animation-duration: 1.5s;
14
14
  animation-iteration-count: 1;
15
- animation-fill-mode: both;
16
15
  min-height: 60px;
17
- position: relative;
18
- z-index: 0;
19
- }
20
-
21
- @mixin Container() {
22
- margin: 15px 30px 0px 30px;
23
- padding: 10px;
24
- box-shadow: 0px 0px 10px -10px black;
25
- border-radius: 8px;
26
- background-color: white;
27
- animation-name: fadeIn;
28
- animation-duration: 1.5s;
29
- animation-iteration-count: 1;
30
- animation-fill-mode: both;
31
- min-height: 60px;
32
- position: relative;
33
- z-index: 0;
34
16
  }
35
17
 
36
18
  .coer-container {
@@ -34,7 +34,7 @@ export declare class Page implements AfterViewInit, OnDestroy {
34
34
  private _source;
35
35
  private _preventDestroy;
36
36
  constructor(page: string);
37
- ngAfterViewInit(): void;
37
+ ngAfterViewInit(): Promise<void>;
38
38
  ngOnDestroy(): void;
39
39
  /** Main method. Starts after ngAfterViewInit() */
40
40
  protected RunPage(): void;
@@ -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
  };