tickera-angular-components 0.0.1-dev.23 → 0.0.1-dev.25
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.
|
@@ -418,9 +418,11 @@ var CorporateBondStatus;
|
|
|
418
418
|
|
|
419
419
|
var PerformanceStatus;
|
|
420
420
|
(function (PerformanceStatus) {
|
|
421
|
-
PerformanceStatus["
|
|
421
|
+
PerformanceStatus["SCHEDULED"] = "scheduled";
|
|
422
|
+
PerformanceStatus["OPEN"] = "open";
|
|
423
|
+
PerformanceStatus["CLOSED"] = "closed";
|
|
422
424
|
PerformanceStatus["CANCELLED"] = "cancelled";
|
|
423
|
-
PerformanceStatus["
|
|
425
|
+
PerformanceStatus["COMPLETED"] = "completed";
|
|
424
426
|
PerformanceStatus["POSTPONED"] = "postponed";
|
|
425
427
|
})(PerformanceStatus || (PerformanceStatus = {}));
|
|
426
428
|
|
|
@@ -752,23 +754,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
752
754
|
args: [{ providedIn: 'root' }]
|
|
753
755
|
}] });
|
|
754
756
|
|
|
755
|
-
class
|
|
756
|
-
title = signal('', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
757
|
+
class BaseModalService {
|
|
757
758
|
isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
|
|
758
759
|
get modalIsOpen() {
|
|
759
760
|
return this.isOpen;
|
|
760
761
|
}
|
|
761
|
-
open(
|
|
762
|
-
this.title.set(title ?? 'Cargando...');
|
|
762
|
+
open() {
|
|
763
763
|
this.isOpen.set(true);
|
|
764
764
|
}
|
|
765
765
|
close() {
|
|
766
766
|
this.isOpen.set(false);
|
|
767
767
|
}
|
|
768
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: LoadingModalService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
769
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: LoadingModalService, providedIn: 'root' });
|
|
770
768
|
}
|
|
771
|
-
|
|
769
|
+
|
|
770
|
+
class FeedbackModalService extends BaseModalService {
|
|
771
|
+
type = signal('info', ...(ngDevMode ? [{ debugName: "type" }] : []));
|
|
772
|
+
title = signal('', ...(ngDevMode ? [{ debugName: "title" }] : []));
|
|
773
|
+
message = signal('', ...(ngDevMode ? [{ debugName: "message" }] : []));
|
|
774
|
+
openFeedback(type, title, message) {
|
|
775
|
+
this.type.set(type);
|
|
776
|
+
this.title.set(title);
|
|
777
|
+
this.message.set(message);
|
|
778
|
+
super.open();
|
|
779
|
+
}
|
|
780
|
+
close() {
|
|
781
|
+
this.type.set('info');
|
|
782
|
+
this.title.set('');
|
|
783
|
+
this.message.set('');
|
|
784
|
+
super.close();
|
|
785
|
+
}
|
|
786
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: FeedbackModalService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
787
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: FeedbackModalService, providedIn: 'root' });
|
|
788
|
+
}
|
|
789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: FeedbackModalService, decorators: [{
|
|
772
790
|
type: Injectable,
|
|
773
791
|
args: [{ providedIn: 'root' }]
|
|
774
792
|
}] });
|
|
@@ -1542,19 +1560,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1542
1560
|
args: [{ providedIn: 'root' }]
|
|
1543
1561
|
}], ctorParameters: () => [{ type: ApiService }] });
|
|
1544
1562
|
|
|
1545
|
-
class BaseModalService {
|
|
1546
|
-
isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
|
|
1547
|
-
get modalIsOpen() {
|
|
1548
|
-
return this.isOpen;
|
|
1549
|
-
}
|
|
1550
|
-
open() {
|
|
1551
|
-
this.isOpen.set(true);
|
|
1552
|
-
}
|
|
1553
|
-
close() {
|
|
1554
|
-
this.isOpen.set(false);
|
|
1555
|
-
}
|
|
1556
|
-
}
|
|
1557
|
-
|
|
1558
1563
|
const authInterceptor = (req, next) => {
|
|
1559
1564
|
const platformId = inject(PLATFORM_ID);
|
|
1560
1565
|
const config = inject(TICKERA_COMPONENTS_CONFIG);
|
|
@@ -1697,6 +1702,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1697
1702
|
class AppModalComponent {
|
|
1698
1703
|
title = '';
|
|
1699
1704
|
disableClose = false;
|
|
1705
|
+
showHeader = true;
|
|
1706
|
+
showCloseButton = true;
|
|
1707
|
+
showTitle = true;
|
|
1700
1708
|
isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
|
|
1701
1709
|
size = 'md';
|
|
1702
1710
|
closeModal = new EventEmitter();
|
|
@@ -1711,15 +1719,21 @@ class AppModalComponent {
|
|
|
1711
1719
|
}
|
|
1712
1720
|
}
|
|
1713
1721
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: AppModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1714
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: AppModalComponent, isStandalone: true, selector: "app-modal", inputs: { title: "title", disableClose: "disableClose", isOpen: "isOpen", size: "size" }, outputs: { closeModal: "closeModal" }, host: { listeners: { "document:keydown.escape": "onKeydownEscape()" } }, ngImport: i0, template: "@if (isOpen()) {\n <div class=\"modal-overlay\">\n <div class=\"modal-backdrop\" (click)=\"onCloseModal()\"></div>\n\n <div class=\"modal-dialog\" [class]=\"'modal-dialog--' + size\">\n @if (
|
|
1722
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: AppModalComponent, isStandalone: true, selector: "app-modal", inputs: { title: "title", disableClose: "disableClose", showHeader: "showHeader", showCloseButton: "showCloseButton", showTitle: "showTitle", isOpen: "isOpen", size: "size" }, outputs: { closeModal: "closeModal" }, host: { listeners: { "document:keydown.escape": "onKeydownEscape()" } }, ngImport: i0, template: "@if (isOpen()) {\n <div class=\"modal-overlay\">\n <div class=\"modal-backdrop\" (click)=\"onCloseModal()\"></div>\n\n <div class=\"modal-dialog\" [class]=\"'modal-dialog--' + size\">\n @if (showHeader && (showTitle && !!title || showCloseButton && !disableClose)) {\n <div class=\"modal-header\">\n @if (showTitle && !!title) {\n <h3 class=\"modal-title\">{{ title }}</h3>\n }\n\n @if (showCloseButton && !disableClose) {\n <button class=\"modal-close-button\" (click)=\"onCloseModal()\">×</button>\n }\n </div>\n }\n\n <div class=\"modal-body\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n}\n", styles: [".modal-overlay{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;z-index:50}.modal-backdrop{position:absolute;inset:0;background-color:#000;opacity:.5;filter:blur(4px)}.modal-dialog{position:relative;z-index:10;width:100%;background-color:#fff;border-radius:.5rem;max-height:100vh;overflow-y:auto;box-shadow:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a}.modal-dialog--xs{max-width:20rem}.modal-dialog--sm{max-width:24rem}.modal-dialog--md{max-width:28rem}.modal-dialog--lg{max-width:32rem}.modal-dialog--xl{max-width:36rem}.modal-dialog--2xl{max-width:42rem}.modal-dialog--3xl{max-width:48rem}.modal-dialog--4xl{max-width:56rem}.modal-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem;border-bottom:1px solid #e5e7eb}.modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.modal-close-button{background:none;border:none;font-size:1.5rem;cursor:pointer;color:#4b5563;padding:0;width:1.875rem;height:1.875rem;display:flex;align-items:center;justify-content:center}.modal-close-button:hover{color:#1f2937}.modal-body{padding:1.25rem}.modal-body p:first-of-type{margin-top:0}.modal-body p:last-of-type{margin-bottom:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], encapsulation: i0.ViewEncapsulation.None });
|
|
1715
1723
|
}
|
|
1716
1724
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: AppModalComponent, decorators: [{
|
|
1717
1725
|
type: Component,
|
|
1718
|
-
args: [{ selector: 'app-modal', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.None, template: "@if (isOpen()) {\n <div class=\"modal-overlay\">\n <div class=\"modal-backdrop\" (click)=\"onCloseModal()\"></div>\n\n <div class=\"modal-dialog\" [class]=\"'modal-dialog--' + size\">\n @if (
|
|
1726
|
+
args: [{ selector: 'app-modal', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.None, template: "@if (isOpen()) {\n <div class=\"modal-overlay\">\n <div class=\"modal-backdrop\" (click)=\"onCloseModal()\"></div>\n\n <div class=\"modal-dialog\" [class]=\"'modal-dialog--' + size\">\n @if (showHeader && (showTitle && !!title || showCloseButton && !disableClose)) {\n <div class=\"modal-header\">\n @if (showTitle && !!title) {\n <h3 class=\"modal-title\">{{ title }}</h3>\n }\n\n @if (showCloseButton && !disableClose) {\n <button class=\"modal-close-button\" (click)=\"onCloseModal()\">×</button>\n }\n </div>\n }\n\n <div class=\"modal-body\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n}\n", styles: [".modal-overlay{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;z-index:50}.modal-backdrop{position:absolute;inset:0;background-color:#000;opacity:.5;filter:blur(4px)}.modal-dialog{position:relative;z-index:10;width:100%;background-color:#fff;border-radius:.5rem;max-height:100vh;overflow-y:auto;box-shadow:0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a}.modal-dialog--xs{max-width:20rem}.modal-dialog--sm{max-width:24rem}.modal-dialog--md{max-width:28rem}.modal-dialog--lg{max-width:32rem}.modal-dialog--xl{max-width:36rem}.modal-dialog--2xl{max-width:42rem}.modal-dialog--3xl{max-width:48rem}.modal-dialog--4xl{max-width:56rem}.modal-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem;border-bottom:1px solid #e5e7eb}.modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.modal-close-button{background:none;border:none;font-size:1.5rem;cursor:pointer;color:#4b5563;padding:0;width:1.875rem;height:1.875rem;display:flex;align-items:center;justify-content:center}.modal-close-button:hover{color:#1f2937}.modal-body{padding:1.25rem}.modal-body p:first-of-type{margin-top:0}.modal-body p:last-of-type{margin-bottom:0}\n"] }]
|
|
1719
1727
|
}], propDecorators: { title: [{
|
|
1720
1728
|
type: Input
|
|
1721
1729
|
}], disableClose: [{
|
|
1722
1730
|
type: Input
|
|
1731
|
+
}], showHeader: [{
|
|
1732
|
+
type: Input
|
|
1733
|
+
}], showCloseButton: [{
|
|
1734
|
+
type: Input
|
|
1735
|
+
}], showTitle: [{
|
|
1736
|
+
type: Input
|
|
1723
1737
|
}], isOpen: [{
|
|
1724
1738
|
type: Input
|
|
1725
1739
|
}], size: [{
|
|
@@ -1731,30 +1745,315 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1731
1745
|
args: ['document:keydown.escape']
|
|
1732
1746
|
}] } });
|
|
1733
1747
|
|
|
1734
|
-
class
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1748
|
+
class LoadingFeedbackModalComponent {
|
|
1749
|
+
feedbackModalService;
|
|
1750
|
+
autoClose = false;
|
|
1751
|
+
autoCloseDuration = 3000;
|
|
1752
|
+
showHeader = false;
|
|
1753
|
+
showCloseButton = false;
|
|
1754
|
+
showTitle = false;
|
|
1755
|
+
autoCloseTimeout = null;
|
|
1756
|
+
constructor(feedbackModalService) {
|
|
1757
|
+
this.feedbackModalService = feedbackModalService;
|
|
1758
|
+
}
|
|
1759
|
+
get isOpen() {
|
|
1760
|
+
return this.feedbackModalService.isOpen;
|
|
1761
|
+
}
|
|
1762
|
+
get title() {
|
|
1763
|
+
return this.feedbackModalService.title;
|
|
1764
|
+
}
|
|
1765
|
+
get message() {
|
|
1766
|
+
return this.feedbackModalService.message;
|
|
1767
|
+
}
|
|
1768
|
+
ngOnChanges(changes) {
|
|
1769
|
+
if (this.autoClose && this.isOpen()) {
|
|
1770
|
+
this.scheduleAutoClose();
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
ngOnDestroy() {
|
|
1774
|
+
this.clearAutoClose();
|
|
1775
|
+
}
|
|
1776
|
+
closeModal() {
|
|
1777
|
+
this.clearAutoClose();
|
|
1778
|
+
this.feedbackModalService.close();
|
|
1779
|
+
}
|
|
1780
|
+
scheduleAutoClose() {
|
|
1781
|
+
this.clearAutoClose();
|
|
1782
|
+
this.autoCloseTimeout = setTimeout(() => {
|
|
1783
|
+
this.feedbackModalService.close();
|
|
1784
|
+
}, this.autoCloseDuration);
|
|
1785
|
+
}
|
|
1786
|
+
clearAutoClose() {
|
|
1787
|
+
if (this.autoCloseTimeout) {
|
|
1788
|
+
clearTimeout(this.autoCloseTimeout);
|
|
1789
|
+
this.autoCloseTimeout = null;
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: LoadingFeedbackModalComponent, deps: [{ token: FeedbackModalService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1793
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: LoadingFeedbackModalComponent, isStandalone: true, selector: "loading-feedback-modal", inputs: { autoClose: "autoClose", autoCloseDuration: "autoCloseDuration", showHeader: "showHeader", showCloseButton: "showCloseButton", showTitle: "showTitle" }, usesOnChanges: true, ngImport: i0, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--loading\">\n <div class=\"feedback-modal-icon-wrapper\">\n <div class=\"feedback-modal-spinner\"></div>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cancelar\" variant=\"secondary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center}.feedback-modal-spinner{height:3rem;width:3rem;border-radius:9999px;border:6px solid #fecaca;border-top-color:#ef4444;animation:feedback-modal-spin .8s linear infinite}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}@keyframes feedback-modal-spin{to{transform:rotate(360deg)}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1794
|
+
}
|
|
1795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: LoadingFeedbackModalComponent, decorators: [{
|
|
1796
|
+
type: Component,
|
|
1797
|
+
args: [{ selector: 'loading-feedback-modal', standalone: true, imports: [CommonModule, AppModalComponent, AppButtonComponent], encapsulation: ViewEncapsulation.None, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--loading\">\n <div class=\"feedback-modal-icon-wrapper\">\n <div class=\"feedback-modal-spinner\"></div>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cancelar\" variant=\"secondary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center}.feedback-modal-spinner{height:3rem;width:3rem;border-radius:9999px;border:6px solid #fecaca;border-top-color:#ef4444;animation:feedback-modal-spin .8s linear infinite}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}@keyframes feedback-modal-spin{to{transform:rotate(360deg)}}\n"] }]
|
|
1798
|
+
}], ctorParameters: () => [{ type: FeedbackModalService }], propDecorators: { autoClose: [{
|
|
1799
|
+
type: Input
|
|
1800
|
+
}], autoCloseDuration: [{
|
|
1801
|
+
type: Input
|
|
1802
|
+
}], showHeader: [{
|
|
1803
|
+
type: Input
|
|
1804
|
+
}], showCloseButton: [{
|
|
1805
|
+
type: Input
|
|
1806
|
+
}], showTitle: [{
|
|
1807
|
+
type: Input
|
|
1808
|
+
}] } });
|
|
1809
|
+
|
|
1810
|
+
class SuccessFeedbackModalComponent {
|
|
1811
|
+
feedbackModalService;
|
|
1812
|
+
autoClose = false;
|
|
1813
|
+
autoCloseDuration = 3000;
|
|
1814
|
+
showHeader = false;
|
|
1815
|
+
showCloseButton = false;
|
|
1816
|
+
showTitle = false;
|
|
1817
|
+
autoCloseTimeout = null;
|
|
1818
|
+
constructor(feedbackModalService) {
|
|
1819
|
+
this.feedbackModalService = feedbackModalService;
|
|
1738
1820
|
}
|
|
1739
1821
|
get isOpen() {
|
|
1740
|
-
return this.
|
|
1822
|
+
return this.feedbackModalService.isOpen;
|
|
1741
1823
|
}
|
|
1742
1824
|
get title() {
|
|
1743
|
-
return this.
|
|
1825
|
+
return this.feedbackModalService.title;
|
|
1826
|
+
}
|
|
1827
|
+
get message() {
|
|
1828
|
+
return this.feedbackModalService.message;
|
|
1829
|
+
}
|
|
1830
|
+
ngOnChanges(changes) {
|
|
1831
|
+
if (this.autoClose && this.isOpen()) {
|
|
1832
|
+
this.scheduleAutoClose();
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
ngOnDestroy() {
|
|
1836
|
+
this.clearAutoClose();
|
|
1744
1837
|
}
|
|
1745
1838
|
closeModal() {
|
|
1746
|
-
this.
|
|
1839
|
+
this.clearAutoClose();
|
|
1840
|
+
this.feedbackModalService.close();
|
|
1747
1841
|
}
|
|
1748
|
-
|
|
1749
|
-
this.
|
|
1842
|
+
scheduleAutoClose() {
|
|
1843
|
+
this.clearAutoClose();
|
|
1844
|
+
this.autoCloseTimeout = setTimeout(() => {
|
|
1845
|
+
this.feedbackModalService.close();
|
|
1846
|
+
}, this.autoCloseDuration);
|
|
1750
1847
|
}
|
|
1751
|
-
|
|
1752
|
-
|
|
1848
|
+
clearAutoClose() {
|
|
1849
|
+
if (this.autoCloseTimeout) {
|
|
1850
|
+
clearTimeout(this.autoCloseTimeout);
|
|
1851
|
+
this.autoCloseTimeout = null;
|
|
1852
|
+
}
|
|
1853
|
+
}
|
|
1854
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: SuccessFeedbackModalComponent, deps: [{ token: FeedbackModalService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1855
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: SuccessFeedbackModalComponent, isStandalone: true, selector: "success-feedback-modal", inputs: { autoClose: "autoClose", autoCloseDuration: "autoCloseDuration", showHeader: "showHeader", showCloseButton: "showCloseButton", showTitle: "showTitle" }, usesOnChanges: true, ngImport: i0, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--success\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-check-line feedback-modal-icon feedback-modal-icon--success\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#f0fdf4}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--success{color:#22c55e}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1753
1856
|
}
|
|
1754
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type:
|
|
1857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: SuccessFeedbackModalComponent, decorators: [{
|
|
1755
1858
|
type: Component,
|
|
1756
|
-
args: [{ selector: '
|
|
1757
|
-
}], ctorParameters: () => [{ type:
|
|
1859
|
+
args: [{ selector: 'success-feedback-modal', standalone: true, imports: [CommonModule, AppModalComponent, AppButtonComponent], encapsulation: ViewEncapsulation.None, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--success\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-check-line feedback-modal-icon feedback-modal-icon--success\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#f0fdf4}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--success{color:#22c55e}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"] }]
|
|
1860
|
+
}], ctorParameters: () => [{ type: FeedbackModalService }], propDecorators: { autoClose: [{
|
|
1861
|
+
type: Input
|
|
1862
|
+
}], autoCloseDuration: [{
|
|
1863
|
+
type: Input
|
|
1864
|
+
}], showHeader: [{
|
|
1865
|
+
type: Input
|
|
1866
|
+
}], showCloseButton: [{
|
|
1867
|
+
type: Input
|
|
1868
|
+
}], showTitle: [{
|
|
1869
|
+
type: Input
|
|
1870
|
+
}] } });
|
|
1871
|
+
|
|
1872
|
+
class InfoFeedbackModalComponent {
|
|
1873
|
+
feedbackModalService;
|
|
1874
|
+
autoClose = false;
|
|
1875
|
+
autoCloseDuration = 3000;
|
|
1876
|
+
showHeader = false;
|
|
1877
|
+
showCloseButton = false;
|
|
1878
|
+
showTitle = false;
|
|
1879
|
+
autoCloseTimeout = null;
|
|
1880
|
+
constructor(feedbackModalService) {
|
|
1881
|
+
this.feedbackModalService = feedbackModalService;
|
|
1882
|
+
}
|
|
1883
|
+
get isOpen() {
|
|
1884
|
+
return this.feedbackModalService.isOpen;
|
|
1885
|
+
}
|
|
1886
|
+
get title() {
|
|
1887
|
+
return this.feedbackModalService.title;
|
|
1888
|
+
}
|
|
1889
|
+
get message() {
|
|
1890
|
+
return this.feedbackModalService.message;
|
|
1891
|
+
}
|
|
1892
|
+
ngOnChanges(changes) {
|
|
1893
|
+
if (this.autoClose && this.isOpen()) {
|
|
1894
|
+
this.scheduleAutoClose();
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
ngOnDestroy() {
|
|
1898
|
+
this.clearAutoClose();
|
|
1899
|
+
}
|
|
1900
|
+
closeModal() {
|
|
1901
|
+
this.clearAutoClose();
|
|
1902
|
+
this.feedbackModalService.close();
|
|
1903
|
+
}
|
|
1904
|
+
scheduleAutoClose() {
|
|
1905
|
+
this.clearAutoClose();
|
|
1906
|
+
this.autoCloseTimeout = setTimeout(() => {
|
|
1907
|
+
this.feedbackModalService.close();
|
|
1908
|
+
}, this.autoCloseDuration);
|
|
1909
|
+
}
|
|
1910
|
+
clearAutoClose() {
|
|
1911
|
+
if (this.autoCloseTimeout) {
|
|
1912
|
+
clearTimeout(this.autoCloseTimeout);
|
|
1913
|
+
this.autoCloseTimeout = null;
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: InfoFeedbackModalComponent, deps: [{ token: FeedbackModalService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1917
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: InfoFeedbackModalComponent, isStandalone: true, selector: "info-feedback-modal", inputs: { autoClose: "autoClose", autoCloseDuration: "autoCloseDuration", showHeader: "showHeader", showCloseButton: "showCloseButton", showTitle: "showTitle" }, usesOnChanges: true, ngImport: i0, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--info\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-info-i feedback-modal-icon feedback-modal-icon--info\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#eff6ff}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--info{color:#3b82f6}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1918
|
+
}
|
|
1919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: InfoFeedbackModalComponent, decorators: [{
|
|
1920
|
+
type: Component,
|
|
1921
|
+
args: [{ selector: 'info-feedback-modal', standalone: true, imports: [CommonModule, AppModalComponent, AppButtonComponent], encapsulation: ViewEncapsulation.None, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--info\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-info-i feedback-modal-icon feedback-modal-icon--info\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#eff6ff}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--info{color:#3b82f6}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"] }]
|
|
1922
|
+
}], ctorParameters: () => [{ type: FeedbackModalService }], propDecorators: { autoClose: [{
|
|
1923
|
+
type: Input
|
|
1924
|
+
}], autoCloseDuration: [{
|
|
1925
|
+
type: Input
|
|
1926
|
+
}], showHeader: [{
|
|
1927
|
+
type: Input
|
|
1928
|
+
}], showCloseButton: [{
|
|
1929
|
+
type: Input
|
|
1930
|
+
}], showTitle: [{
|
|
1931
|
+
type: Input
|
|
1932
|
+
}] } });
|
|
1933
|
+
|
|
1934
|
+
class WarningFeedbackModalComponent {
|
|
1935
|
+
feedbackModalService;
|
|
1936
|
+
autoClose = false;
|
|
1937
|
+
autoCloseDuration = 3000;
|
|
1938
|
+
showHeader = false;
|
|
1939
|
+
showCloseButton = false;
|
|
1940
|
+
showTitle = false;
|
|
1941
|
+
autoCloseTimeout = null;
|
|
1942
|
+
constructor(feedbackModalService) {
|
|
1943
|
+
this.feedbackModalService = feedbackModalService;
|
|
1944
|
+
}
|
|
1945
|
+
get isOpen() {
|
|
1946
|
+
return this.feedbackModalService.isOpen;
|
|
1947
|
+
}
|
|
1948
|
+
get title() {
|
|
1949
|
+
return this.feedbackModalService.title;
|
|
1950
|
+
}
|
|
1951
|
+
get message() {
|
|
1952
|
+
return this.feedbackModalService.message;
|
|
1953
|
+
}
|
|
1954
|
+
ngOnChanges(changes) {
|
|
1955
|
+
if (this.autoClose && this.isOpen()) {
|
|
1956
|
+
this.scheduleAutoClose();
|
|
1957
|
+
}
|
|
1958
|
+
}
|
|
1959
|
+
ngOnDestroy() {
|
|
1960
|
+
this.clearAutoClose();
|
|
1961
|
+
}
|
|
1962
|
+
closeModal() {
|
|
1963
|
+
this.clearAutoClose();
|
|
1964
|
+
this.feedbackModalService.close();
|
|
1965
|
+
}
|
|
1966
|
+
scheduleAutoClose() {
|
|
1967
|
+
this.clearAutoClose();
|
|
1968
|
+
this.autoCloseTimeout = setTimeout(() => {
|
|
1969
|
+
this.feedbackModalService.close();
|
|
1970
|
+
}, this.autoCloseDuration);
|
|
1971
|
+
}
|
|
1972
|
+
clearAutoClose() {
|
|
1973
|
+
if (this.autoCloseTimeout) {
|
|
1974
|
+
clearTimeout(this.autoCloseTimeout);
|
|
1975
|
+
this.autoCloseTimeout = null;
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: WarningFeedbackModalComponent, deps: [{ token: FeedbackModalService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1979
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: WarningFeedbackModalComponent, isStandalone: true, selector: "warning-feedback-modal", inputs: { autoClose: "autoClose", autoCloseDuration: "autoCloseDuration", showHeader: "showHeader", showCloseButton: "showCloseButton", showTitle: "showTitle" }, usesOnChanges: true, ngImport: i0, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--warning\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-alert-line feedback-modal-icon feedback-modal-icon--warning\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#fefce8}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--warning{color:#eab308}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1980
|
+
}
|
|
1981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: WarningFeedbackModalComponent, decorators: [{
|
|
1982
|
+
type: Component,
|
|
1983
|
+
args: [{ selector: 'warning-feedback-modal', standalone: true, imports: [CommonModule, AppModalComponent, AppButtonComponent], encapsulation: ViewEncapsulation.None, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--warning\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-alert-line feedback-modal-icon feedback-modal-icon--warning\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#fefce8}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--warning{color:#eab308}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"] }]
|
|
1984
|
+
}], ctorParameters: () => [{ type: FeedbackModalService }], propDecorators: { autoClose: [{
|
|
1985
|
+
type: Input
|
|
1986
|
+
}], autoCloseDuration: [{
|
|
1987
|
+
type: Input
|
|
1988
|
+
}], showHeader: [{
|
|
1989
|
+
type: Input
|
|
1990
|
+
}], showCloseButton: [{
|
|
1991
|
+
type: Input
|
|
1992
|
+
}], showTitle: [{
|
|
1993
|
+
type: Input
|
|
1994
|
+
}] } });
|
|
1995
|
+
|
|
1996
|
+
class ErrorFeedbackModalComponent {
|
|
1997
|
+
feedbackModalService;
|
|
1998
|
+
autoClose = false;
|
|
1999
|
+
autoCloseDuration = 3000;
|
|
2000
|
+
showHeader = false;
|
|
2001
|
+
showCloseButton = false;
|
|
2002
|
+
showTitle = false;
|
|
2003
|
+
autoCloseTimeout = null;
|
|
2004
|
+
constructor(feedbackModalService) {
|
|
2005
|
+
this.feedbackModalService = feedbackModalService;
|
|
2006
|
+
}
|
|
2007
|
+
get isOpen() {
|
|
2008
|
+
return this.feedbackModalService.isOpen;
|
|
2009
|
+
}
|
|
2010
|
+
get title() {
|
|
2011
|
+
return this.feedbackModalService.title;
|
|
2012
|
+
}
|
|
2013
|
+
get message() {
|
|
2014
|
+
return this.feedbackModalService.message;
|
|
2015
|
+
}
|
|
2016
|
+
ngOnChanges(changes) {
|
|
2017
|
+
if (this.autoClose && this.isOpen()) {
|
|
2018
|
+
this.scheduleAutoClose();
|
|
2019
|
+
}
|
|
2020
|
+
}
|
|
2021
|
+
ngOnDestroy() {
|
|
2022
|
+
this.clearAutoClose();
|
|
2023
|
+
}
|
|
2024
|
+
closeModal() {
|
|
2025
|
+
this.clearAutoClose();
|
|
2026
|
+
this.feedbackModalService.close();
|
|
2027
|
+
}
|
|
2028
|
+
scheduleAutoClose() {
|
|
2029
|
+
this.clearAutoClose();
|
|
2030
|
+
this.autoCloseTimeout = setTimeout(() => {
|
|
2031
|
+
this.feedbackModalService.close();
|
|
2032
|
+
}, this.autoCloseDuration);
|
|
2033
|
+
}
|
|
2034
|
+
clearAutoClose() {
|
|
2035
|
+
if (this.autoCloseTimeout) {
|
|
2036
|
+
clearTimeout(this.autoCloseTimeout);
|
|
2037
|
+
this.autoCloseTimeout = null;
|
|
2038
|
+
}
|
|
2039
|
+
}
|
|
2040
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ErrorFeedbackModalComponent, deps: [{ token: FeedbackModalService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2041
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: ErrorFeedbackModalComponent, isStandalone: true, selector: "error-feedback-modal", inputs: { autoClose: "autoClose", autoCloseDuration: "autoCloseDuration", showHeader: "showHeader", showCloseButton: "showCloseButton", showTitle: "showTitle" }, usesOnChanges: true, ngImport: i0, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--error\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-error-warning-line feedback-modal-icon feedback-modal-icon--error\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#fef2f2}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--error{color:#ef4444}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2042
|
+
}
|
|
2043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ErrorFeedbackModalComponent, decorators: [{
|
|
2044
|
+
type: Component,
|
|
2045
|
+
args: [{ selector: 'error-feedback-modal', standalone: true, imports: [CommonModule, AppModalComponent, AppButtonComponent], encapsulation: ViewEncapsulation.None, template: "<app-modal\n [showHeader]=\"showHeader\"\n [showCloseButton]=\"showCloseButton\"\n [showTitle]=\"showTitle\"\n [isOpen]=\"isOpen\"\n size=\"sm\"\n (closeModal)=\"closeModal()\"\n>\n <div class=\"feedback-modal-body feedback-modal-body--error\">\n <div class=\"feedback-modal-icon-wrapper\">\n <i class=\"ri-error-warning-line feedback-modal-icon feedback-modal-icon--error\"></i>\n </div>\n <h3 class=\"feedback-modal-title\">{{ title() }}</h3>\n @if (message()) {\n <p class=\"feedback-modal-message\">{{ message() }}</p>\n }\n <app-button text=\"Cerrar\" variant=\"primary\" (clicked)=\"closeModal()\" />\n </div>\n</app-modal>\n", styles: [".feedback-modal-body{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem 0;text-align:center}.feedback-modal-icon-wrapper{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem;border-radius:9999px;background-color:#fef2f2}.feedback-modal-icon{font-size:2.5rem}.feedback-modal-icon--error{color:#ef4444}.feedback-modal-title{font-size:1.125rem;font-weight:600;color:#1f2937;margin:0}.feedback-modal-message{font-size:.875rem;color:#6b7280;margin:0}\n"] }]
|
|
2046
|
+
}], ctorParameters: () => [{ type: FeedbackModalService }], propDecorators: { autoClose: [{
|
|
2047
|
+
type: Input
|
|
2048
|
+
}], autoCloseDuration: [{
|
|
2049
|
+
type: Input
|
|
2050
|
+
}], showHeader: [{
|
|
2051
|
+
type: Input
|
|
2052
|
+
}], showCloseButton: [{
|
|
2053
|
+
type: Input
|
|
2054
|
+
}], showTitle: [{
|
|
2055
|
+
type: Input
|
|
2056
|
+
}] } });
|
|
1758
2057
|
|
|
1759
2058
|
class FormInputComponent {
|
|
1760
2059
|
ngControl;
|
|
@@ -1925,7 +2224,7 @@ class DeleteConfirmationComponent {
|
|
|
1925
2224
|
this.deleteConfirmationService.close();
|
|
1926
2225
|
}
|
|
1927
2226
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: DeleteConfirmationComponent, deps: [{ token: i1$1.FormBuilder }, { token: DeleteConfirmationService }, { token: i2$1.TranslocoService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1928
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: DeleteConfirmationComponent, isStandalone: true, selector: "delete-confirmation", ngImport: i0, template: "@if (isOpen()) {\n <app-modal [title]=\"title\" [isOpen]=\"isOpen\" (closeModal)=\"onCloseModal()\">\n <form\n [formGroup]=\"deleteConfirmationForm\"\n method=\"POST\"\n class=\"delete-confirmation-content\"\n (ngSubmit)=\"onConfirmDelete()\"\n >\n <app-alert\n type=\"warning\"\n [text]=\"'deleteConfirmation.warning' | transloco\"\n size=\"sm\"\n [closeable]=\"false\"\n />\n\n <p class=\"delete-confirmation-instructions\">\n {{ 'deleteConfirmation.instructions' | transloco }}\n\n <span class=\"delete-confirmation-highlight\">\n {{ confirmationText }}\n </span>\n </p>\n\n <form-input\n name=\"confirmationText\"\n type=\"text\"\n class=\"delete-confirmation-field\"\n [required]=\"true\"\n [autocomplete]=\"false\"\n formControlName=\"confirmationText\"\n [placeholder]=\"\n transloco.translate('deleteConfirmation.placeholder', { text: confirmationText })\n \"\n />\n\n <div class=\"delete-confirmation-actions\">\n <app-button\n variant=\"tertiary\"\n [text]=\"'deleteConfirmation.cancel' | transloco\"\n (click)=\"onCloseModal()\"\n size=\"sm\"\n />\n\n <app-button\n type=\"submit\"\n variant=\"primary\"\n [text]=\"'deleteConfirmation.delete' | transloco\"\n [disabled]=\"!isConfirmationValid\"\n size=\"sm\"\n />\n </div>\n </form>\n </app-modal>\n}\n", styles: [".delete-confirmation-content{display:flex;flex-direction:column;gap:1rem;animation:slideUp .3s ease-out}.delete-confirmation-instructions{font-size:.75rem;color:#4b5563;margin:0}@media(prefers-color-scheme:dark){.delete-confirmation-instructions{color:#9ca3af}}.delete-confirmation-highlight{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .5rem;margin-top:.25rem;background-color:#e5e7eb;color:#dc2626;font-weight:600;font-size:.875rem;border-radius:.375rem}@media(prefers-color-scheme:dark){.delete-confirmation-highlight{background-color:#374151}}.delete-confirmation-field{flex:1}.delete-confirmation-actions{display:flex;gap:.75rem}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslocoModule }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }, { kind: "component", type: FormInputComponent, selector: "form-input", inputs: ["label", "type", "name", "id", "placeholder", "required", "readonly", "minlength", "min", "step", "pattern", "fieldGroupClass", "autocomplete"] }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppAlertComponent, selector: "app-alert", inputs: ["type", "text", "closeable", "size"] }, { kind: "pipe", type: i2$1.TranslocoPipe, name: "transloco" }], encapsulation: i0.ViewEncapsulation.None });
|
|
2227
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: DeleteConfirmationComponent, isStandalone: true, selector: "delete-confirmation", ngImport: i0, template: "@if (isOpen()) {\n <app-modal [title]=\"title\" [isOpen]=\"isOpen\" (closeModal)=\"onCloseModal()\">\n <form\n [formGroup]=\"deleteConfirmationForm\"\n method=\"POST\"\n class=\"delete-confirmation-content\"\n (ngSubmit)=\"onConfirmDelete()\"\n >\n <app-alert\n type=\"warning\"\n [text]=\"'deleteConfirmation.warning' | transloco\"\n size=\"sm\"\n [closeable]=\"false\"\n />\n\n <p class=\"delete-confirmation-instructions\">\n {{ 'deleteConfirmation.instructions' | transloco }}\n\n <span class=\"delete-confirmation-highlight\">\n {{ confirmationText }}\n </span>\n </p>\n\n <form-input\n name=\"confirmationText\"\n type=\"text\"\n class=\"delete-confirmation-field\"\n [required]=\"true\"\n [autocomplete]=\"false\"\n formControlName=\"confirmationText\"\n [placeholder]=\"\n transloco.translate('deleteConfirmation.placeholder', { text: confirmationText })\n \"\n />\n\n <div class=\"delete-confirmation-actions\">\n <app-button\n variant=\"tertiary\"\n [text]=\"'deleteConfirmation.cancel' | transloco\"\n (click)=\"onCloseModal()\"\n size=\"sm\"\n />\n\n <app-button\n type=\"submit\"\n variant=\"primary\"\n [text]=\"'deleteConfirmation.delete' | transloco\"\n [disabled]=\"!isConfirmationValid\"\n size=\"sm\"\n />\n </div>\n </form>\n </app-modal>\n}\n", styles: [".delete-confirmation-content{display:flex;flex-direction:column;gap:1rem;animation:slideUp .3s ease-out}.delete-confirmation-instructions{font-size:.75rem;color:#4b5563;margin:0}@media(prefers-color-scheme:dark){.delete-confirmation-instructions{color:#9ca3af}}.delete-confirmation-highlight{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .5rem;margin-top:.25rem;background-color:#e5e7eb;color:#dc2626;font-weight:600;font-size:.875rem;border-radius:.375rem}@media(prefers-color-scheme:dark){.delete-confirmation-highlight{background-color:#374151}}.delete-confirmation-field{flex:1}.delete-confirmation-actions{display:flex;gap:.75rem}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslocoModule }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }, { kind: "component", type: FormInputComponent, selector: "form-input", inputs: ["label", "type", "name", "id", "placeholder", "required", "readonly", "minlength", "min", "step", "pattern", "fieldGroupClass", "autocomplete"] }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "component", type: AppAlertComponent, selector: "app-alert", inputs: ["type", "text", "closeable", "size"] }, { kind: "pipe", type: i2$1.TranslocoPipe, name: "transloco" }], encapsulation: i0.ViewEncapsulation.None });
|
|
1929
2228
|
}
|
|
1930
2229
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: DeleteConfirmationComponent, decorators: [{
|
|
1931
2230
|
type: Component,
|
|
@@ -3360,7 +3659,7 @@ class ChangePasswordFormComponent {
|
|
|
3360
3659
|
});
|
|
3361
3660
|
}
|
|
3362
3661
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ChangePasswordFormComponent, deps: [{ token: i1$1.FormBuilder }, { token: ChangePasswordFormService }, { token: CustomerService }, { token: AdminService }, { token: ToastService }, { token: i2$1.TranslocoService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3363
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: ChangePasswordFormComponent, isStandalone: true, selector: "change-password-form", providers: [AdminService, CustomerService], ngImport: i0, template: "@if (isOpen()) {\n <app-modal\n [title]=\"'changePassword.title' | transloco\"\n [isOpen]=\"isOpen\"\n (closeModal)=\"onCloseModal()\"\n >\n <form\n [formGroup]=\"changePasswordForm\"\n method=\"POST\"\n class=\"change-password-form-body\"\n (ngSubmit)=\"onConfirmDelete()\"\n >\n <form-input\n [label]=\"'changePassword.newPasswordLabel' | transloco\"\n [placeholder]=\"'changePassword.newPasswordPlaceholder' | transloco\"\n name=\"password\"\n type=\"password\"\n class=\"change-password-form-field\"\n [required]=\"true\"\n [autocomplete]=\"false\"\n formControlName=\"password\"\n />\n\n <form-input\n [label]=\"'changePassword.confirmPasswordLabel' | transloco\"\n [placeholder]=\"'changePassword.confirmPasswordPlaceholder' | transloco\"\n name=\"confirm_password\"\n type=\"password\"\n class=\"change-password-form-field\"\n [required]=\"true\"\n [autocomplete]=\"false\"\n formControlName=\"confirm_password\"\n />\n\n <div class=\"change-password-form-actions\">\n <app-button\n variant=\"tertiary\"\n [text]=\"'changePassword.cancel' | transloco\"\n (click)=\"onCloseModal()\"\n size=\"sm\"\n />\n\n <app-button\n [disabled]=\"loading() || changePasswordForm.invalid || changePasswordForm.pristine\"\n [loading]=\"loading()\"\n type=\"submit\"\n variant=\"primary\"\n [text]=\"'changePassword.save' | transloco\"\n [loadingText]=\"'changePassword.saving' | transloco\"\n size=\"sm\"\n />\n </div>\n </form>\n </app-modal>\n}\n", styles: [".change-password-form-body{display:flex;flex-direction:column;gap:1rem}.change-password-form-field{flex:1}.change-password-form-actions{display:flex;gap:.75rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslocoModule }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }, { kind: "component", type: FormInputComponent, selector: "form-input", inputs: ["label", "type", "name", "id", "placeholder", "required", "readonly", "minlength", "min", "step", "pattern", "fieldGroupClass", "autocomplete"] }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "pipe", type: i2$1.TranslocoPipe, name: "transloco" }], encapsulation: i0.ViewEncapsulation.None });
|
|
3662
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: ChangePasswordFormComponent, isStandalone: true, selector: "change-password-form", providers: [AdminService, CustomerService], ngImport: i0, template: "@if (isOpen()) {\n <app-modal\n [title]=\"'changePassword.title' | transloco\"\n [isOpen]=\"isOpen\"\n (closeModal)=\"onCloseModal()\"\n >\n <form\n [formGroup]=\"changePasswordForm\"\n method=\"POST\"\n class=\"change-password-form-body\"\n (ngSubmit)=\"onConfirmDelete()\"\n >\n <form-input\n [label]=\"'changePassword.newPasswordLabel' | transloco\"\n [placeholder]=\"'changePassword.newPasswordPlaceholder' | transloco\"\n name=\"password\"\n type=\"password\"\n class=\"change-password-form-field\"\n [required]=\"true\"\n [autocomplete]=\"false\"\n formControlName=\"password\"\n />\n\n <form-input\n [label]=\"'changePassword.confirmPasswordLabel' | transloco\"\n [placeholder]=\"'changePassword.confirmPasswordPlaceholder' | transloco\"\n name=\"confirm_password\"\n type=\"password\"\n class=\"change-password-form-field\"\n [required]=\"true\"\n [autocomplete]=\"false\"\n formControlName=\"confirm_password\"\n />\n\n <div class=\"change-password-form-actions\">\n <app-button\n variant=\"tertiary\"\n [text]=\"'changePassword.cancel' | transloco\"\n (click)=\"onCloseModal()\"\n size=\"sm\"\n />\n\n <app-button\n [disabled]=\"loading() || changePasswordForm.invalid || changePasswordForm.pristine\"\n [loading]=\"loading()\"\n type=\"submit\"\n variant=\"primary\"\n [text]=\"'changePassword.save' | transloco\"\n [loadingText]=\"'changePassword.saving' | transloco\"\n size=\"sm\"\n />\n </div>\n </form>\n </app-modal>\n}\n", styles: [".change-password-form-body{display:flex;flex-direction:column;gap:1rem}.change-password-form-field{flex:1}.change-password-form-actions{display:flex;gap:.75rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: TranslocoModule }, { kind: "component", type: AppButtonComponent, selector: "app-button", inputs: ["disabled", "loading", "type", "variant", "text", "size", "loadingText", "icon"], outputs: ["clicked"] }, { kind: "component", type: FormInputComponent, selector: "form-input", inputs: ["label", "type", "name", "id", "placeholder", "required", "readonly", "minlength", "min", "step", "pattern", "fieldGroupClass", "autocomplete"] }, { kind: "component", type: AppModalComponent, selector: "app-modal", inputs: ["title", "disableClose", "showHeader", "showCloseButton", "showTitle", "isOpen", "size"], outputs: ["closeModal"] }, { kind: "pipe", type: i2$1.TranslocoPipe, name: "transloco" }], encapsulation: i0.ViewEncapsulation.None });
|
|
3364
3663
|
}
|
|
3365
3664
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ChangePasswordFormComponent, decorators: [{
|
|
3366
3665
|
type: Component,
|
|
@@ -5142,5 +5441,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
5142
5441
|
* Generated bundle index. Do not edit.
|
|
5143
5442
|
*/
|
|
5144
5443
|
|
|
5145
|
-
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CustomerSelectComponent, CustomerService, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus,
|
|
5444
|
+
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CustomerSelectComponent, CustomerService, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, ErrorFeedbackModalComponent, FORM_ERROR_MESSAGES, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus, InfoFeedbackModalComponent, LanguageSwitcherComponent, LoadingFeedbackModalComponent, MinTodayValidator, MustMatchValidator, OrderItemType, OrderStatus, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, SuccessFeedbackModalComponent, TICKERA_COMPONENTS_CONFIG, TickeraTranslocoLoader, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, WarningFeedbackModalComponent, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getBrowserLanguage, getCustomerFullname, getStoredLanguage, parseJsonToFormDataAdvanced, provideTickeraComponents, resolveLanguage, setStoredLanguage, transformImageToFile };
|
|
5146
5445
|
//# sourceMappingURL=tickera-angular-components.mjs.map
|