valtech-components 4.0.160 → 4.0.162
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.
- package/esm2022/lib/components/organisms/about-view/about-view.component.mjs +2 -7
- package/esm2022/lib/components/organisms/change-email-modal/change-email-modal.component.mjs +4 -4
- package/esm2022/lib/components/organisms/invite-member-modal/invite-member-modal.component.mjs +2 -2
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +6 -11
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/services/firebase/firebase-messaging-sw.js +0 -145
|
@@ -56,7 +56,7 @@ import { BrowserMultiFormatReader } from '@zxing/browser';
|
|
|
56
56
|
* Current version of valtech-components.
|
|
57
57
|
* This is automatically updated during the publish process.
|
|
58
58
|
*/
|
|
59
|
-
const VERSION = '4.0.
|
|
59
|
+
const VERSION = '4.0.162';
|
|
60
60
|
|
|
61
61
|
// Control de estado de refresco (singleton a nivel de módulo)
|
|
62
62
|
let isRefreshing = false;
|
|
@@ -34937,7 +34937,7 @@ class ChangeEmailModalComponent {
|
|
|
34937
34937
|
},
|
|
34938
34938
|
],
|
|
34939
34939
|
actions: {
|
|
34940
|
-
...button({ text: '', type: 'submit', fill: 'solid', expand: 'block' }),
|
|
34940
|
+
...button({ text: '', type: 'submit', fill: 'solid', expand: 'block', shape: 'round' }),
|
|
34941
34941
|
token: 'change-email-initiate',
|
|
34942
34942
|
textKey: 'changeEmailInitiate',
|
|
34943
34943
|
},
|
|
@@ -34970,7 +34970,7 @@ class ChangeEmailModalComponent {
|
|
|
34970
34970
|
},
|
|
34971
34971
|
],
|
|
34972
34972
|
actions: {
|
|
34973
|
-
...button({ text: '', type: 'submit', fill: 'solid', expand: 'block' }),
|
|
34973
|
+
...button({ text: '', type: 'submit', fill: 'solid', expand: 'block', shape: 'round' }),
|
|
34974
34974
|
token: 'change-email-confirm-1',
|
|
34975
34975
|
textKey: 'changeEmailConfirm1',
|
|
34976
34976
|
},
|
|
@@ -35006,7 +35006,7 @@ class ChangeEmailModalComponent {
|
|
|
35006
35006
|
},
|
|
35007
35007
|
],
|
|
35008
35008
|
actions: {
|
|
35009
|
-
...button({ text: '', type: 'submit', fill: 'solid', expand: 'block' }),
|
|
35009
|
+
...button({ text: '', type: 'submit', fill: 'solid', expand: 'block', shape: 'round' }),
|
|
35010
35010
|
token: 'change-email-confirm-2',
|
|
35011
35011
|
textKey: 'changeEmailConfirm2',
|
|
35012
35012
|
},
|
|
@@ -51296,7 +51296,7 @@ class InviteMemberModalComponent {
|
|
|
51296
51296
|
this.sending = signal(false);
|
|
51297
51297
|
this.selectedRole = signal('viewer');
|
|
51298
51298
|
this.availableRoles = signal(SYSTEM_ROLE_DEFAULTS);
|
|
51299
|
-
this.roleControl = new FormControl(
|
|
51299
|
+
this.roleControl = new FormControl(null);
|
|
51300
51300
|
this.roleSelectProps = computed(() => ({
|
|
51301
51301
|
control: this.roleControl,
|
|
51302
51302
|
label: '',
|
|
@@ -58532,12 +58532,7 @@ class AboutViewComponent {
|
|
|
58532
58532
|
await this.modalService.open({
|
|
58533
58533
|
component: ContentReactionComponent,
|
|
58534
58534
|
componentProps: { props: reactionProps },
|
|
58535
|
-
|
|
58536
|
-
initialBreakpoint: 0.9,
|
|
58537
|
-
breakpoints: [0, 0.9, 1],
|
|
58538
|
-
showHandle: true,
|
|
58539
|
-
handleBehavior: 'cycle',
|
|
58540
|
-
},
|
|
58535
|
+
size: 'full',
|
|
58541
58536
|
});
|
|
58542
58537
|
this.resolvedConfig().onRated?.();
|
|
58543
58538
|
}
|