coer-elements 0.0.47 → 0.0.49

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 +1 @@
1
- {"version":3,"file":"coer-elements-interfaces.mjs","sources":["../../../projects/coer-elements/interfaces/public-api.ts","../../../projects/coer-elements/interfaces/coer-elements-interfaces.ts"],"sourcesContent":["//coer-filebox\r\nexport * from './lib/coer-filebox/file-image.interface';\r\nexport * from './lib/coer-filebox/file.interface';\r\n\r\n//coer-grid\r\nexport * from './lib/coer-grid/grid-button-by-row.interface';\r\nexport * from './lib/coer-grid/grid-checkbox.interface';\r\nexport * from './lib/coer-grid/grid-coer-numberbox.interface';\r\nexport * from './lib/coer-grid/grid-coer-selectbox.interface';\r\nexport * from './lib/coer-grid/grid-coer-switch.interface';\r\nexport * from './lib/coer-grid/grid-coer-textbox.interface';\r\nexport * from './lib/coer-grid/grid-column.interface';\r\nexport * from './lib/coer-grid/grid-data-source.interface';\r\nexport * from './lib/coer-grid/grid-header-button.interface';\r\nexport * from './lib/coer-grid/grid-header-export-button.interface';\r\nexport * from './lib/coer-grid/grid-header.interface';\r\nexport * from './lib/coer-grid/grid-import.interface';\r\nexport * from './lib/coer-grid/grid-input-checkbox.interface';\r\nexport * from './lib/coer-grid/grid-input-switch-change.interface';\r\nexport * from './lib/coer-grid/grid-input-textbox.interface';\r\nexport * from './lib/coer-grid/grid-item.interface';\r\nexport * from './lib/coer-grid/grid-keyup-enter.interface';\r\nexport * from './lib/coer-grid/grid-length.interface';\r\nexport * from './lib/coer-grid/grid-search.interface';\r\nexport * from './lib/coer-grid/grid-sort.interface';\r\n\r\n//coer-menu\r\nexport * from './lib/coer-menu/menu-option-selected.interface';\r\nexport * from './lib/coer-menu/menu-selected.interface';\r\nexport * from './lib/coer-menu/menu.interface';\r\n\r\n//page-title\r\nexport * from './lib/page-title/breadcrumb.interface';\r\nexport * from './lib/page-title/go-back.interface';\r\n\r\n//service\r\nexport * from './lib/service/http-request.interface';\r\nexport * from './lib/service/http-response.interface';\r\nexport * from './lib/service/patch.interface';\r\n\r\nexport * from './lib/app-source.interface';\r\nexport * from './lib/coer-ref.interface';\r\nexport * from './lib/screen-size.interface';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;ACAA;;AAEG"}
1
+ {"version":3,"file":"coer-elements-interfaces.mjs","sources":["../../../projects/coer-elements/interfaces/public-api.ts","../../../projects/coer-elements/interfaces/coer-elements-interfaces.ts"],"sourcesContent":["//coer-filebox\r\nexport * from './lib/coer-filebox/file-image.interface';\r\nexport * from './lib/coer-filebox/file.interface';\r\n\r\n//coer-grid\r\nexport * from './lib/coer-grid/grid-button-by-row.interface';\r\nexport * from './lib/coer-grid/grid-checkbox.interface';\r\nexport * from './lib/coer-grid/grid-coer-numberbox.interface';\r\nexport * from './lib/coer-grid/grid-coer-selectbox.interface';\r\nexport * from './lib/coer-grid/grid-coer-switch.interface';\r\nexport * from './lib/coer-grid/grid-coer-textbox.interface';\r\nexport * from './lib/coer-grid/grid-column.interface';\r\nexport * from './lib/coer-grid/grid-data-source.interface';\r\nexport * from './lib/coer-grid/grid-header-button.interface';\r\nexport * from './lib/coer-grid/grid-header-export-button.interface';\r\nexport * from './lib/coer-grid/grid-header.interface';\r\nexport * from './lib/coer-grid/grid-import.interface';\r\nexport * from './lib/coer-grid/grid-input-checkbox.interface';\r\nexport * from './lib/coer-grid/grid-input-switch-change.interface';\r\nexport * from './lib/coer-grid/grid-input-textbox.interface';\r\nexport * from './lib/coer-grid/grid-item.interface';\r\nexport * from './lib/coer-grid/grid-keyup-enter.interface';\r\nexport * from './lib/coer-grid/grid-length.interface';\r\nexport * from './lib/coer-grid/grid-search.interface';\r\nexport * from './lib/coer-grid/grid-sort.interface';\r\n\r\n//coer-menu\r\nexport * from './lib/coer-menu/menu-option-selected.interface';\r\nexport * from './lib/coer-menu/menu-selected.interface';\r\nexport * from './lib/coer-menu/menu.interface';\r\n\r\n//page-title\r\nexport * from './lib/page-title/breadcrumb.interface';\r\nexport * from './lib/page-title/go-back.interface';\r\n\r\n//service\r\nexport * from './lib/service/http-request.interface';\r\nexport * from './lib/service/http-response.interface';\r\nexport * from './lib/service/patch.interface';\r\n\r\nexport * from './lib/app-source.interface';\r\nexport * from './lib/box-button.interface';\r\nexport * from './lib/coer-ref.interface';\r\nexport * from './lib/screen-size.interface';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;;ACAA;;AAEG"}
@@ -0,0 +1,6 @@
1
+ export interface IBoxButton {
2
+ show: boolean;
3
+ position?: 'left' | 'right';
4
+ isDisabled?: boolean;
5
+ icon?: string;
6
+ }
@@ -29,5 +29,6 @@ export * from './lib/service/http-request.interface';
29
29
  export * from './lib/service/http-response.interface';
30
30
  export * from './lib/service/patch.interface';
31
31
  export * from './lib/app-source.interface';
32
+ export * from './lib/box-button.interface';
32
33
  export * from './lib/coer-ref.interface';
33
34
  export * from './lib/screen-size.interface';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -457,6 +457,10 @@ div.coer-button button.navigation-filled {
457
457
  background-color: #fd6031 !important;
458
458
  color: #f5f5f5 !important;
459
459
  }
460
+ div.coer-button button.dark-filled {
461
+ background-color: #252525 !important;
462
+ color: #f5f5f5 !important;
463
+ }
460
464
  div.coer-button button.primary-outline {
461
465
  background-color: white !important;
462
466
  border: 1px solid #0d6efd !important;
@@ -487,6 +491,11 @@ div.coer-button button.navigation-outline {
487
491
  border: 1px solid #fd6031 !important;
488
492
  color: #fd6031 !important;
489
493
  }
494
+ div.coer-button button.dark-outline {
495
+ background-color: white !important;
496
+ border: 1px solid #252525 !important;
497
+ color: #252525 !important;
498
+ }
490
499
  div.coer-button button.primary-filled:not(.readonly):hover, div.coer-button button.primary-filled:not(.readonly):focus,
491
500
  div.coer-button button.primary-outline:not(.readonly):hover, div.coer-button button.primary-outline:not(.readonly):focus,
492
501
  div.coer-button button.secondary-filled:not(.readonly):hover, div.coer-button button.secondary-filled:not(.readonly):focus,
@@ -496,7 +505,11 @@ div.coer-button button.success-outline:not(.readonly):hover, div.coer-button but
496
505
  div.coer-button button.warning-filled:not(.readonly):hover, div.coer-button button.warning-filled:not(.readonly):focus,
497
506
  div.coer-button button.warning-outline:not(.readonly):hover, div.coer-button button.warning-outline:not(.readonly):focus,
498
507
  div.coer-button button.danger-filled:not(.readonly):hover, div.coer-button button.danger-filled:not(.readonly):focus,
499
- div.coer-button button.danger-outline:not(.readonly):hover, div.coer-button button.danger-outline:not(.readonly):focus {
508
+ div.coer-button button.danger-outline:not(.readonly):hover, div.coer-button button.danger-outline:not(.readonly):focus,
509
+ div.coer-button button.navigation-filled:not(.readonly):hover, div.coer-button button.navigation-filled:not(.readonly):focus,
510
+ div.coer-button button.navigation-outline:not(.readonly):hover, div.coer-button button.navigation-outline:not(.readonly):focus,
511
+ div.coer-button button.dark-filled:not(.readonly):hover, div.coer-button button.dark-filled:not(.readonly):focus,
512
+ div.coer-button button.dark-outline:not(.readonly):hover, div.coer-button button.dark-outline:not(.readonly):focus {
500
513
  filter: brightness(1.1) !important;
501
514
  }
502
515
  div.coer-button button.primary-filled:not(.readonly):focus,
@@ -523,6 +536,10 @@ div.coer-button button.navigation-filled:not(.readonly):focus,
523
536
  div.coer-button button.navigation-outline:not(.readonly):focus {
524
537
  box-shadow: 0px 0px 20px #fd6031 !important;
525
538
  }
539
+ div.coer-button button.dark-filled:not(.readonly):focus,
540
+ div.coer-button button.dark-outline:not(.readonly):focus {
541
+ box-shadow: 0px 0px 20px #252525 !important;
542
+ }
526
543
  div.coer-button button.mdc-icon-button.mat-mdc-icon-button {
527
544
  width: 40px !important;
528
545
  height: 40px !important;
@@ -578,6 +595,10 @@ div#coer-tool-bar coer-button * {
578
595
  color: #fd6031 !important;
579
596
  }
580
597
 
598
+ div.coer-text-box {
599
+ display: flex;
600
+ align-items: center;
601
+ }
581
602
  div.coer-text-box * {
582
603
  --blue: #0d6efd;
583
604
  --gray: #6c757d;
@@ -815,6 +836,14 @@ div.coer-text-box mat-form-field .placeholder-glow, div.coer-text-box mat-form-f
815
836
  div.coer-text-box mat-form-field.readonly div.mat-mdc-text-field-wrapper.mdc-text-field {
816
837
  background-color: rgba(187, 187, 187, 0.5137254902) !important;
817
838
  }
839
+ div.coer-text-box div.button-container {
840
+ width: 40px !important;
841
+ height: 40px !important;
842
+ display: flex !important;
843
+ align-items: center !important;
844
+ justify-content: center !important;
845
+ background-color: #e6e7e9 !important;
846
+ }
818
847
 
819
848
  coer-grid table tbody tr td.coer-textbox mat-form-field div.mat-mdc-text-field-wrapper.mdc-text-field {
820
849
  background-color: transparent !important;
@@ -2754,6 +2783,7 @@ div.coer-grid table tbody tr td {
2754
2783
  white-space: break-spaces;
2755
2784
  text-overflow: ellipsis;
2756
2785
  overflow: hidden;
2786
+ min-height: 31px !important;
2757
2787
  }
2758
2788
  div.coer-grid table tbody tr.row-focus td {
2759
2789
  background-color: #cde1ff;
package/styles/index.scss CHANGED
@@ -26,5 +26,5 @@ input[type="file"] {
26
26
  @import "./colors.scss";
27
27
  @import "./containers.scss";
28
28
  @import "./cursores.scss";
29
- @import "./scroll-bar.scss";
29
+ @import "./scroll-bar.scss";
30
30
  @import "./layout.scss";