@gipisistemas/ngx-core 1.0.18 → 1.0.19

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.
@@ -66,7 +66,6 @@
66
66
  align-items: center;
67
67
  justify-content: center;
68
68
  padding: 0.6rem 1.2rem;
69
- max-width: 10rem;
70
69
  border-radius: 0.4rem;
71
70
  font-family: $font-family;
72
71
  font-size: $font-size;
@@ -32,7 +32,7 @@
32
32
  height: 100%;
33
33
  box-sizing: border-box;
34
34
  padding: 1.6rem;
35
- background-color: transparent;
35
+ background-color: #{utils.get-color($theme, white, 100)};
36
36
  transition: transform 0.2s ease;
37
37
  z-index: 4;
38
38
 
@@ -1170,12 +1170,12 @@ class ConfirmDialog {
1170
1170
  mat-dialog-content
1171
1171
  class="g-confirm-dialog-content"
1172
1172
  >
1173
- @if (dialogData.message && !dialogData.listMessage) {
1173
+ @if (!!dialogData.message) {
1174
1174
  <p class="g-confirm-dialog-message">
1175
1175
  {{ dialogData.message }}
1176
1176
  </p>
1177
1177
  }
1178
- @if (!dialogData.message && dialogData.listMessage) {
1178
+ @if (!!dialogData.listMessage) {
1179
1179
  <ul class="g-confirm-dialog-list-message">
1180
1180
  @for (message of dialogData.listMessage; track $index) {
1181
1181
  <li>{{ message }}</li>
@@ -1230,12 +1230,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
1230
1230
  mat-dialog-content
1231
1231
  class="g-confirm-dialog-content"
1232
1232
  >
1233
- @if (dialogData.message && !dialogData.listMessage) {
1233
+ @if (!!dialogData.message) {
1234
1234
  <p class="g-confirm-dialog-message">
1235
1235
  {{ dialogData.message }}
1236
1236
  </p>
1237
1237
  }
1238
- @if (!dialogData.message && dialogData.listMessage) {
1238
+ @if (!!dialogData.listMessage) {
1239
1239
  <ul class="g-confirm-dialog-list-message">
1240
1240
  @for (message of dialogData.listMessage; track $index) {
1241
1241
  <li>{{ message }}</li>
@@ -5923,6 +5923,7 @@ class BaseModel {
5923
5923
  this.id = data?.id ?? null;
5924
5924
  this.integrationIdentifier = data?.integrationIdentifier ?? null;
5925
5925
  this.companyId = data?.companyId ?? null;
5926
+ this.tenantId = data?.tenantId ?? null;
5926
5927
  this.enabled = data?.enabled ?? true;
5927
5928
  this.createdDate = data?.createdDate ?? null;
5928
5929
  this.modifiedDate = data?.modifiedDate ?? null;