myrta-ui 17.0.27 → 17.0.29
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/form/radio-group/radio-group.module.mjs +14 -5
- package/esm2022/lib/components/form/select/enums/index.mjs +3 -0
- package/esm2022/lib/components/form/select/enums/select-size.enum.mjs +6 -0
- package/esm2022/lib/components/form/select/enums/select-type.enum.mjs +6 -0
- package/esm2022/lib/components/form/select/select.component.mjs +62 -0
- package/esm2022/lib/components/form/select/select.module.mjs +28 -0
- package/esm2022/lib/components/popup/components/popup/popup.component.mjs +28 -0
- package/esm2022/lib/components/popup/components/popup-item/popup-item.component.mjs +18 -0
- package/esm2022/lib/components/popup/directives/popup-trigger.directive.mjs +104 -0
- package/esm2022/lib/components/popup/popup.module.mjs +39 -0
- package/esm2022/lib/services/modal-service/helpers/modal-ref.mjs +3 -3
- package/esm2022/lib/services/modal-service/modal-service.module.mjs +1 -1
- package/esm2022/public-api.mjs +8 -1
- package/fesm2022/myrta-ui.mjs +301 -33
- package/fesm2022/myrta-ui.mjs.map +1 -1
- package/lib/components/form/radio-group/radio-group.module.d.ts +2 -1
- package/lib/components/form/select/enums/index.d.ts +2 -0
- package/lib/components/form/select/enums/select-size.enum.d.ts +5 -0
- package/lib/components/form/select/enums/select-type.enum.d.ts +5 -0
- package/lib/components/form/select/select.component.d.ts +21 -0
- package/lib/components/form/select/select.module.d.ts +9 -0
- package/lib/components/popup/components/popup/popup.component.d.ts +11 -0
- package/lib/components/popup/components/popup-item/popup-item.component.d.ts +8 -0
- package/lib/components/popup/directives/popup-trigger.directive.d.ts +27 -0
- package/lib/components/popup/popup.module.d.ts +11 -0
- package/package.json +1 -1
- package/public-api.d.ts +7 -0
package/fesm2022/myrta-ui.mjs
CHANGED
|
@@ -10,13 +10,13 @@ import { trigger, state, transition, style, animate, group, keyframes } from '@a
|
|
|
10
10
|
import * as i2 from '@angular/forms';
|
|
11
11
|
import { NG_VALUE_ACCESSOR, FormsModule, Validators, ReactiveFormsModule, NG_VALIDATORS, FormArray, FormControl } from '@angular/forms';
|
|
12
12
|
import { v4 } from 'uuid';
|
|
13
|
-
import { ComponentPortal } from '@angular/cdk/portal';
|
|
13
|
+
import { ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
|
|
14
14
|
import * as i1$3 from '@angular/cdk/overlay';
|
|
15
15
|
import { OverlayModule } from '@angular/cdk/overlay';
|
|
16
16
|
import { createPopper } from '@popperjs/core';
|
|
17
17
|
import * as i6 from '@ng-select/ng-select';
|
|
18
18
|
import { NgSelectModule } from '@ng-select/ng-select';
|
|
19
|
-
import { delay, of, Subject, filter, BehaviorSubject, EMPTY } from 'rxjs';
|
|
19
|
+
import { Subscription, delay, of, Subject, filter, BehaviorSubject, EMPTY } from 'rxjs';
|
|
20
20
|
import * as i2$1 from '@angular/cdk/layout';
|
|
21
21
|
import { Fancybox } from 'mrx-gallery-lib';
|
|
22
22
|
import * as i1$5 from '@angular/common/http';
|
|
@@ -1548,6 +1548,176 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1548
1548
|
}]
|
|
1549
1549
|
}] });
|
|
1550
1550
|
|
|
1551
|
+
class PopupItemComponent {
|
|
1552
|
+
templateRef;
|
|
1553
|
+
clicked = new EventEmitter();
|
|
1554
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1555
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PopupItemComponent, selector: "mrx-popup-item", outputs: { clicked: "clicked" }, viewQueries: [{ propertyName: "templateRef", first: true, predicate: TemplateRef, descendants: true, static: true }], ngImport: i0, template: "<ng-template>\r\n <div class=\"mrx-popup-item\" (click)=\"clicked.emit()\">\r\n <ng-content></ng-content>\r\n </div>\r\n</ng-template>\r\n", styles: [".mrx-popup-item{padding:8px 16px;background-color:transparent;transition:background-color .3s;cursor:pointer}.mrx-popup-item:hover{background-color:var(--brand-bg-tertiary-hover, #EDF5FF)}\n"] });
|
|
1556
|
+
}
|
|
1557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupItemComponent, decorators: [{
|
|
1558
|
+
type: Component,
|
|
1559
|
+
args: [{ selector: 'mrx-popup-item', template: "<ng-template>\r\n <div class=\"mrx-popup-item\" (click)=\"clicked.emit()\">\r\n <ng-content></ng-content>\r\n </div>\r\n</ng-template>\r\n", styles: [".mrx-popup-item{padding:8px 16px;background-color:transparent;transition:background-color .3s;cursor:pointer}.mrx-popup-item:hover{background-color:var(--brand-bg-tertiary-hover, #EDF5FF)}\n"] }]
|
|
1560
|
+
}], propDecorators: { templateRef: [{
|
|
1561
|
+
type: ViewChild,
|
|
1562
|
+
args: [TemplateRef, { static: true }]
|
|
1563
|
+
}], clicked: [{
|
|
1564
|
+
type: Output
|
|
1565
|
+
}] } });
|
|
1566
|
+
|
|
1567
|
+
class PopupComponent {
|
|
1568
|
+
closeAfterClick = true;
|
|
1569
|
+
// @Input() maxWidth: string = '800px';
|
|
1570
|
+
templateRef;
|
|
1571
|
+
popupItemComponents;
|
|
1572
|
+
closed = new EventEmitter();
|
|
1573
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1574
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: PopupComponent, selector: "mrx-popup", inputs: { closeAfterClick: "closeAfterClick" }, outputs: { closed: "closed" }, queries: [{ propertyName: "popupItemComponents", predicate: PopupItemComponent }], viewQueries: [{ propertyName: "templateRef", first: true, predicate: TemplateRef, descendants: true, static: true }], ngImport: i0, template: "<ng-template>\r\n <div class=\"mrx-popup-content\" [style.width]=\"'100%'\">\r\n <ng-container *ngFor=\"let item of popupItemComponents; let index = index; let first = first; let last = last\">\r\n <ng-container *ngTemplateOutlet=\"item.templateRef\"></ng-container>\r\n </ng-container>\r\n </div>\r\n</ng-template>\r\n", styles: [".mrx-popup-content{padding:8px 0;background-color:#fff;border-radius:4px;box-shadow:0 1px 4px #3a3a3a4d}\n"], dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
1575
|
+
}
|
|
1576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupComponent, decorators: [{
|
|
1577
|
+
type: Component,
|
|
1578
|
+
args: [{ selector: 'mrx-popup', template: "<ng-template>\r\n <div class=\"mrx-popup-content\" [style.width]=\"'100%'\">\r\n <ng-container *ngFor=\"let item of popupItemComponents; let index = index; let first = first; let last = last\">\r\n <ng-container *ngTemplateOutlet=\"item.templateRef\"></ng-container>\r\n </ng-container>\r\n </div>\r\n</ng-template>\r\n", styles: [".mrx-popup-content{padding:8px 0;background-color:#fff;border-radius:4px;box-shadow:0 1px 4px #3a3a3a4d}\n"] }]
|
|
1579
|
+
}], propDecorators: { closeAfterClick: [{
|
|
1580
|
+
type: Input
|
|
1581
|
+
}], templateRef: [{
|
|
1582
|
+
type: ViewChild,
|
|
1583
|
+
args: [TemplateRef, { static: true }]
|
|
1584
|
+
}], popupItemComponents: [{
|
|
1585
|
+
type: ContentChildren,
|
|
1586
|
+
args: [PopupItemComponent]
|
|
1587
|
+
}], closed: [{
|
|
1588
|
+
type: Output
|
|
1589
|
+
}] } });
|
|
1590
|
+
|
|
1591
|
+
class PopupTriggerDirective {
|
|
1592
|
+
overlay;
|
|
1593
|
+
elementRef;
|
|
1594
|
+
viewContainerRef;
|
|
1595
|
+
dispatcher;
|
|
1596
|
+
_subscriber$ = new Subscription();
|
|
1597
|
+
_isDropdownOpen = false;
|
|
1598
|
+
_overlayRef;
|
|
1599
|
+
popupPanel;
|
|
1600
|
+
popupPosition = 'bottom-start';
|
|
1601
|
+
constructor(overlay, elementRef, viewContainerRef, dispatcher) {
|
|
1602
|
+
this.overlay = overlay;
|
|
1603
|
+
this.elementRef = elementRef;
|
|
1604
|
+
this.viewContainerRef = viewContainerRef;
|
|
1605
|
+
this.dispatcher = dispatcher;
|
|
1606
|
+
}
|
|
1607
|
+
togglePopup() {
|
|
1608
|
+
this._isDropdownOpen ? this.destroyDropdown() : this.openDropdown();
|
|
1609
|
+
}
|
|
1610
|
+
openDropdown() {
|
|
1611
|
+
this.hideOtherOverlays();
|
|
1612
|
+
this._isDropdownOpen = true;
|
|
1613
|
+
this._overlayRef = this.overlay.create({
|
|
1614
|
+
positionStrategy: this.getPositionStrategy(),
|
|
1615
|
+
hasBackdrop: false,
|
|
1616
|
+
scrollStrategy: this.overlay.scrollStrategies.close(),
|
|
1617
|
+
backdropClass: 'cdk-overlay-transparent-backdrop',
|
|
1618
|
+
panelClass: 'mrx-popup',
|
|
1619
|
+
minWidth: this.elementRef.nativeElement.getBoundingClientRect().width
|
|
1620
|
+
});
|
|
1621
|
+
const templatePortal = new TemplatePortal(this.popupPanel.templateRef, this.viewContainerRef);
|
|
1622
|
+
this._overlayRef.attach(templatePortal);
|
|
1623
|
+
this._subscriber$ = this._overlayRef.detachments().subscribe(_ => {
|
|
1624
|
+
this._isDropdownOpen = false;
|
|
1625
|
+
this.popupPanel.closed.emit();
|
|
1626
|
+
});
|
|
1627
|
+
}
|
|
1628
|
+
close() {
|
|
1629
|
+
this.destroyDropdown();
|
|
1630
|
+
}
|
|
1631
|
+
getPositionStrategy() {
|
|
1632
|
+
return this.overlay
|
|
1633
|
+
.position()
|
|
1634
|
+
.flexibleConnectedTo(this.elementRef)
|
|
1635
|
+
.withPositions(positionStrategy[this.popupPosition]);
|
|
1636
|
+
}
|
|
1637
|
+
destroyDropdown() {
|
|
1638
|
+
if (!this._overlayRef || !this._isDropdownOpen) {
|
|
1639
|
+
return;
|
|
1640
|
+
}
|
|
1641
|
+
this._overlayRef.detach();
|
|
1642
|
+
}
|
|
1643
|
+
hideOtherOverlays() {
|
|
1644
|
+
this.dispatcher._attachedOverlays.forEach((overlay) => {
|
|
1645
|
+
if (overlay.getConfig().panelClass === 'mrx-popup') {
|
|
1646
|
+
overlay.detach();
|
|
1647
|
+
}
|
|
1648
|
+
});
|
|
1649
|
+
}
|
|
1650
|
+
ngOnDestroy() {
|
|
1651
|
+
if (this._overlayRef) {
|
|
1652
|
+
this._overlayRef.dispose();
|
|
1653
|
+
}
|
|
1654
|
+
this._subscriber$.unsubscribe();
|
|
1655
|
+
}
|
|
1656
|
+
handleClick(event) {
|
|
1657
|
+
if (this.elementRef.nativeElement.contains(event.target))
|
|
1658
|
+
return;
|
|
1659
|
+
if (!event.target.closest('.mrx-popup')) {
|
|
1660
|
+
return this.destroyDropdown();
|
|
1661
|
+
}
|
|
1662
|
+
else {
|
|
1663
|
+
if (event.target.closest('.mrx-popup-item') && this.popupPanel.closeAfterClick) {
|
|
1664
|
+
return this.destroyDropdown();
|
|
1665
|
+
}
|
|
1666
|
+
}
|
|
1667
|
+
}
|
|
1668
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupTriggerDirective, deps: [{ token: i1$3.Overlay }, { token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i1$3.OverlayOutsideClickDispatcher }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1669
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: PopupTriggerDirective, selector: "[mrxPopupTrigger]", inputs: { popupPanel: ["mrxPopupTrigger", "popupPanel"], popupPosition: "popupPosition" }, host: { listeners: { "click": "togglePopup()", "document:click": "handleClick($event)" } }, ngImport: i0 });
|
|
1670
|
+
}
|
|
1671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupTriggerDirective, decorators: [{
|
|
1672
|
+
type: Directive,
|
|
1673
|
+
args: [{
|
|
1674
|
+
selector: '[mrxPopupTrigger]',
|
|
1675
|
+
host: {
|
|
1676
|
+
'(click)': 'togglePopup()'
|
|
1677
|
+
}
|
|
1678
|
+
}]
|
|
1679
|
+
}], ctorParameters: () => [{ type: i1$3.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i1$3.OverlayOutsideClickDispatcher }], propDecorators: { popupPanel: [{
|
|
1680
|
+
type: Input,
|
|
1681
|
+
args: ['mrxPopupTrigger']
|
|
1682
|
+
}], popupPosition: [{
|
|
1683
|
+
type: Input
|
|
1684
|
+
}], handleClick: [{
|
|
1685
|
+
type: HostListener,
|
|
1686
|
+
args: ['document:click', ['$event']]
|
|
1687
|
+
}] } });
|
|
1688
|
+
|
|
1689
|
+
class PopupModule {
|
|
1690
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1691
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: PopupModule, declarations: [PopupComponent,
|
|
1692
|
+
PopupItemComponent,
|
|
1693
|
+
PopupTriggerDirective], imports: [CommonModule,
|
|
1694
|
+
OverlayModule], exports: [PopupComponent,
|
|
1695
|
+
PopupItemComponent,
|
|
1696
|
+
PopupTriggerDirective] });
|
|
1697
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupModule, imports: [CommonModule,
|
|
1698
|
+
OverlayModule] });
|
|
1699
|
+
}
|
|
1700
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PopupModule, decorators: [{
|
|
1701
|
+
type: NgModule,
|
|
1702
|
+
args: [{
|
|
1703
|
+
declarations: [
|
|
1704
|
+
PopupComponent,
|
|
1705
|
+
PopupItemComponent,
|
|
1706
|
+
PopupTriggerDirective
|
|
1707
|
+
],
|
|
1708
|
+
imports: [
|
|
1709
|
+
CommonModule,
|
|
1710
|
+
OverlayModule
|
|
1711
|
+
],
|
|
1712
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1713
|
+
exports: [
|
|
1714
|
+
PopupComponent,
|
|
1715
|
+
PopupItemComponent,
|
|
1716
|
+
PopupTriggerDirective
|
|
1717
|
+
]
|
|
1718
|
+
}]
|
|
1719
|
+
}] });
|
|
1720
|
+
|
|
1551
1721
|
class ErrorMessageComponent {
|
|
1552
1722
|
invalid = true;
|
|
1553
1723
|
invalidMessage = '';
|
|
@@ -3537,14 +3707,14 @@ class ModalRef {
|
|
|
3537
3707
|
this.afterClosedSubject.complete();
|
|
3538
3708
|
}
|
|
3539
3709
|
send(result) {
|
|
3710
|
+
console.log('send is ref');
|
|
3540
3711
|
this.afterSendSubject.next(result);
|
|
3541
|
-
this.afterSendSubject.complete();
|
|
3542
3712
|
}
|
|
3543
3713
|
afterClosed() {
|
|
3544
3714
|
return this.afterClosedSubject.asObservable();
|
|
3545
3715
|
}
|
|
3546
3716
|
afterSend() {
|
|
3547
|
-
return this.
|
|
3717
|
+
return this.afterSendSubject.asObservable();
|
|
3548
3718
|
}
|
|
3549
3719
|
}
|
|
3550
3720
|
|
|
@@ -5097,7 +5267,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
5097
5267
|
}]
|
|
5098
5268
|
}] });
|
|
5099
5269
|
|
|
5100
|
-
const maskConfigFunction$
|
|
5270
|
+
const maskConfigFunction$8 = () => {
|
|
5101
5271
|
return {
|
|
5102
5272
|
validation: false,
|
|
5103
5273
|
};
|
|
@@ -5111,7 +5281,7 @@ class InputTextareaModule {
|
|
|
5111
5281
|
SaveStateModule,
|
|
5112
5282
|
NgxMaskDirective,
|
|
5113
5283
|
AutosizeModule], exports: [InputTextareaComponent] });
|
|
5114
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTextareaModule, providers: [provideNgxMask(maskConfigFunction$
|
|
5284
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTextareaModule, providers: [provideNgxMask(maskConfigFunction$8)], imports: [CommonModule,
|
|
5115
5285
|
FormsModule,
|
|
5116
5286
|
CharsLeftModule,
|
|
5117
5287
|
ErrorMessageModule,
|
|
@@ -5131,7 +5301,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
5131
5301
|
NgxMaskDirective,
|
|
5132
5302
|
AutosizeModule
|
|
5133
5303
|
],
|
|
5134
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
5304
|
+
providers: [provideNgxMask(maskConfigFunction$8)],
|
|
5135
5305
|
exports: [InputTextareaComponent],
|
|
5136
5306
|
}]
|
|
5137
5307
|
}] });
|
|
@@ -6042,7 +6212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
6042
6212
|
type: Output
|
|
6043
6213
|
}] } });
|
|
6044
6214
|
|
|
6045
|
-
const maskConfigFunction$
|
|
6215
|
+
const maskConfigFunction$7 = () => {
|
|
6046
6216
|
return {
|
|
6047
6217
|
validation: false,
|
|
6048
6218
|
};
|
|
@@ -6054,7 +6224,7 @@ class InputSearchModule {
|
|
|
6054
6224
|
CharsLeftModule,
|
|
6055
6225
|
ErrorMessageModule,
|
|
6056
6226
|
NgxMaskDirective], exports: [InputSearchComponent] });
|
|
6057
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputSearchModule, providers: [provideNgxMask(maskConfigFunction$
|
|
6227
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputSearchModule, providers: [provideNgxMask(maskConfigFunction$7)], imports: [CommonModule,
|
|
6058
6228
|
FormsModule,
|
|
6059
6229
|
CharsLeftModule,
|
|
6060
6230
|
ErrorMessageModule] });
|
|
@@ -6070,7 +6240,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
6070
6240
|
ErrorMessageModule,
|
|
6071
6241
|
NgxMaskDirective
|
|
6072
6242
|
],
|
|
6073
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
6243
|
+
providers: [provideNgxMask(maskConfigFunction$7)],
|
|
6074
6244
|
exports: [InputSearchComponent],
|
|
6075
6245
|
}]
|
|
6076
6246
|
}] });
|
|
@@ -7140,7 +7310,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
7140
7310
|
type: Output
|
|
7141
7311
|
}] } });
|
|
7142
7312
|
|
|
7143
|
-
const maskConfigFunction$
|
|
7313
|
+
const maskConfigFunction$6 = () => {
|
|
7144
7314
|
return {
|
|
7145
7315
|
validation: false,
|
|
7146
7316
|
};
|
|
@@ -7154,7 +7324,7 @@ class InputTextModule {
|
|
|
7154
7324
|
SaveStateModule,
|
|
7155
7325
|
CdkTooltipModule,
|
|
7156
7326
|
NgxMaskDirective], exports: [InputTextComponent] });
|
|
7157
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTextModule, providers: [provideNgxMask(maskConfigFunction$
|
|
7327
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTextModule, providers: [provideNgxMask(maskConfigFunction$6)], imports: [CommonModule,
|
|
7158
7328
|
FormsModule,
|
|
7159
7329
|
CharsLeftModule,
|
|
7160
7330
|
ErrorMessageModule,
|
|
@@ -7174,7 +7344,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
7174
7344
|
CdkTooltipModule,
|
|
7175
7345
|
NgxMaskDirective
|
|
7176
7346
|
],
|
|
7177
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
7347
|
+
providers: [provideNgxMask(maskConfigFunction$6)],
|
|
7178
7348
|
exports: [InputTextComponent],
|
|
7179
7349
|
}]
|
|
7180
7350
|
}] });
|
|
@@ -7442,7 +7612,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
7442
7612
|
type: Output
|
|
7443
7613
|
}] } });
|
|
7444
7614
|
|
|
7445
|
-
const maskConfigFunction$
|
|
7615
|
+
const maskConfigFunction$5 = () => {
|
|
7446
7616
|
// системный формат числа с дробной частью и группой разраядов (тысячи)
|
|
7447
7617
|
const c = Intl.NumberFormat().formatToParts(1234.5);
|
|
7448
7618
|
const t = c.find(x => x.type === 'group')?.value;
|
|
@@ -7462,7 +7632,7 @@ class InputNumberModule {
|
|
|
7462
7632
|
SaveStateModule,
|
|
7463
7633
|
ErrorMessageModule,
|
|
7464
7634
|
NgxMaskDirective], exports: [InputNumberComponent] });
|
|
7465
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputNumberModule, providers: [provideNgxMask(maskConfigFunction$
|
|
7635
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputNumberModule, providers: [provideNgxMask(maskConfigFunction$5)], imports: [CommonModule,
|
|
7466
7636
|
FormsModule,
|
|
7467
7637
|
ReactiveFormsModule,
|
|
7468
7638
|
CharsLeftModule,
|
|
@@ -7483,7 +7653,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
7483
7653
|
NgxMaskDirective
|
|
7484
7654
|
],
|
|
7485
7655
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
7486
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
7656
|
+
providers: [provideNgxMask(maskConfigFunction$5)],
|
|
7487
7657
|
exports: [InputNumberComponent],
|
|
7488
7658
|
}]
|
|
7489
7659
|
}] });
|
|
@@ -9973,7 +10143,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
9973
10143
|
args: ['phoneInput']
|
|
9974
10144
|
}] } });
|
|
9975
10145
|
|
|
9976
|
-
const maskConfigFunction$
|
|
10146
|
+
const maskConfigFunction$4 = () => {
|
|
9977
10147
|
return {
|
|
9978
10148
|
validation: false,
|
|
9979
10149
|
};
|
|
@@ -9987,7 +10157,7 @@ class InputPhoneModule {
|
|
|
9987
10157
|
SaveStateModule,
|
|
9988
10158
|
ErrorMessageModule,
|
|
9989
10159
|
NgxMaskDirective], exports: [InputPhoneComponent] });
|
|
9990
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputPhoneModule, providers: [provideNgxMask(maskConfigFunction$
|
|
10160
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputPhoneModule, providers: [provideNgxMask(maskConfigFunction$4)], imports: [CommonModule,
|
|
9991
10161
|
FormsModule,
|
|
9992
10162
|
ReactiveFormsModule,
|
|
9993
10163
|
DropdownModule,
|
|
@@ -10008,7 +10178,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
10008
10178
|
ErrorMessageModule,
|
|
10009
10179
|
NgxMaskDirective
|
|
10010
10180
|
],
|
|
10011
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
10181
|
+
providers: [provideNgxMask(maskConfigFunction$4)],
|
|
10012
10182
|
exports: [InputPhoneComponent]
|
|
10013
10183
|
}]
|
|
10014
10184
|
}] });
|
|
@@ -11138,7 +11308,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
11138
11308
|
type: Output
|
|
11139
11309
|
}] } });
|
|
11140
11310
|
|
|
11141
|
-
const maskConfigFunction$
|
|
11311
|
+
const maskConfigFunction$3 = () => {
|
|
11142
11312
|
return {
|
|
11143
11313
|
validation: false,
|
|
11144
11314
|
};
|
|
@@ -11151,7 +11321,7 @@ class InputDatepickerModule {
|
|
|
11151
11321
|
ErrorMessageModule,
|
|
11152
11322
|
LabelModule,
|
|
11153
11323
|
NgxMaskDirective], exports: [InputDatepickerComponent] });
|
|
11154
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputDatepickerModule, providers: [provideNgxMask(maskConfigFunction$
|
|
11324
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputDatepickerModule, providers: [provideNgxMask(maskConfigFunction$3)], imports: [CommonModule,
|
|
11155
11325
|
FormsModule,
|
|
11156
11326
|
SaveStateModule,
|
|
11157
11327
|
ErrorMessageModule,
|
|
@@ -11170,7 +11340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
11170
11340
|
NgxMaskDirective
|
|
11171
11341
|
],
|
|
11172
11342
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
11173
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
11343
|
+
providers: [provideNgxMask(maskConfigFunction$3)],
|
|
11174
11344
|
exports: [InputDatepickerComponent],
|
|
11175
11345
|
}]
|
|
11176
11346
|
}] });
|
|
@@ -11703,7 +11873,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
11703
11873
|
type: Output
|
|
11704
11874
|
}] } });
|
|
11705
11875
|
|
|
11706
|
-
const maskConfigFunction$
|
|
11876
|
+
const maskConfigFunction$2 = () => {
|
|
11707
11877
|
return {
|
|
11708
11878
|
validation: false,
|
|
11709
11879
|
};
|
|
@@ -11716,7 +11886,7 @@ class InputDateTimeModule {
|
|
|
11716
11886
|
ErrorMessageModule,
|
|
11717
11887
|
LabelModule,
|
|
11718
11888
|
NgxMaskDirective], exports: [InputDateTimeComponent] });
|
|
11719
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputDateTimeModule, providers: [provideNgxMask(maskConfigFunction$
|
|
11889
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputDateTimeModule, providers: [provideNgxMask(maskConfigFunction$2)], imports: [CommonModule,
|
|
11720
11890
|
FormsModule,
|
|
11721
11891
|
SaveStateModule,
|
|
11722
11892
|
ErrorMessageModule,
|
|
@@ -11735,7 +11905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
11735
11905
|
NgxMaskDirective
|
|
11736
11906
|
],
|
|
11737
11907
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
11738
|
-
providers: [provideNgxMask(maskConfigFunction$
|
|
11908
|
+
providers: [provideNgxMask(maskConfigFunction$2)],
|
|
11739
11909
|
exports: [InputDateTimeComponent],
|
|
11740
11910
|
}]
|
|
11741
11911
|
}] });
|
|
@@ -12097,7 +12267,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
12097
12267
|
type: Output
|
|
12098
12268
|
}] } });
|
|
12099
12269
|
|
|
12100
|
-
const maskConfigFunction = () => {
|
|
12270
|
+
const maskConfigFunction$1 = () => {
|
|
12101
12271
|
return {
|
|
12102
12272
|
validation: false,
|
|
12103
12273
|
};
|
|
@@ -12110,7 +12280,7 @@ class InputTimepickerModule {
|
|
|
12110
12280
|
ErrorMessageModule,
|
|
12111
12281
|
LabelModule,
|
|
12112
12282
|
NgxMaskDirective], exports: [InputTimepickerComponent] });
|
|
12113
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTimepickerModule, providers: [provideNgxMask(maskConfigFunction)], imports: [CommonModule,
|
|
12283
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: InputTimepickerModule, providers: [provideNgxMask(maskConfigFunction$1)], imports: [CommonModule,
|
|
12114
12284
|
FormsModule,
|
|
12115
12285
|
SaveStateModule,
|
|
12116
12286
|
ErrorMessageModule,
|
|
@@ -12129,7 +12299,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
12129
12299
|
NgxMaskDirective
|
|
12130
12300
|
],
|
|
12131
12301
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
12132
|
-
providers: [provideNgxMask(maskConfigFunction)],
|
|
12302
|
+
providers: [provideNgxMask(maskConfigFunction$1)],
|
|
12133
12303
|
exports: [InputTimepickerComponent],
|
|
12134
12304
|
}]
|
|
12135
12305
|
}] });
|
|
@@ -16006,6 +16176,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
16006
16176
|
type: Output
|
|
16007
16177
|
}] } });
|
|
16008
16178
|
|
|
16179
|
+
const maskConfigFunction = () => {
|
|
16180
|
+
return {
|
|
16181
|
+
validation: false,
|
|
16182
|
+
};
|
|
16183
|
+
};
|
|
16009
16184
|
class RadioGroupModule {
|
|
16010
16185
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RadioGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
16011
16186
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: RadioGroupModule, declarations: [RadioGroupComponent, RadioGroupItemComponent, RadioGroupHeaderComponent], imports: [CommonModule,
|
|
@@ -16014,8 +16189,9 @@ class RadioGroupModule {
|
|
|
16014
16189
|
InputSearchModule,
|
|
16015
16190
|
LabelModule,
|
|
16016
16191
|
ErrorMessageModule,
|
|
16017
|
-
SaveStateModule
|
|
16018
|
-
|
|
16192
|
+
SaveStateModule,
|
|
16193
|
+
NgxMaskDirective], exports: [RadioGroupComponent] });
|
|
16194
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: RadioGroupModule, providers: [provideNgxMask(maskConfigFunction)], imports: [CommonModule,
|
|
16019
16195
|
FormsModule,
|
|
16020
16196
|
RadioModule,
|
|
16021
16197
|
InputSearchModule,
|
|
@@ -16034,10 +16210,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
16034
16210
|
InputSearchModule,
|
|
16035
16211
|
LabelModule,
|
|
16036
16212
|
ErrorMessageModule,
|
|
16037
|
-
SaveStateModule
|
|
16213
|
+
SaveStateModule,
|
|
16214
|
+
NgxMaskDirective
|
|
16038
16215
|
],
|
|
16039
16216
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
16040
|
-
exports: [RadioGroupComponent]
|
|
16217
|
+
exports: [RadioGroupComponent],
|
|
16218
|
+
providers: [provideNgxMask(maskConfigFunction)],
|
|
16041
16219
|
}]
|
|
16042
16220
|
}] });
|
|
16043
16221
|
|
|
@@ -16696,6 +16874,96 @@ var StepperClasses;
|
|
|
16696
16874
|
StepperClasses["success"] = "mrx-stepper-success";
|
|
16697
16875
|
})(StepperClasses || (StepperClasses = {}));
|
|
16698
16876
|
|
|
16877
|
+
var SelectSizeEnum;
|
|
16878
|
+
(function (SelectSizeEnum) {
|
|
16879
|
+
SelectSizeEnum["medium"] = "mrx-select-md";
|
|
16880
|
+
SelectSizeEnum["large"] = "mrx-select-lg";
|
|
16881
|
+
})(SelectSizeEnum || (SelectSizeEnum = {}));
|
|
16882
|
+
|
|
16883
|
+
var SelectTypeEnum;
|
|
16884
|
+
(function (SelectTypeEnum) {
|
|
16885
|
+
SelectTypeEnum["single"] = "mrx-select-single";
|
|
16886
|
+
SelectTypeEnum["multi"] = "mrx-select-multi";
|
|
16887
|
+
})(SelectTypeEnum || (SelectTypeEnum = {}));
|
|
16888
|
+
|
|
16889
|
+
class SelectComponent {
|
|
16890
|
+
value = null;
|
|
16891
|
+
items = [];
|
|
16892
|
+
type = 'single';
|
|
16893
|
+
size = 'large';
|
|
16894
|
+
get getClasses() {
|
|
16895
|
+
return `${SelectTypeEnum[this.type]} ${SelectSizeEnum[this.size]}`;
|
|
16896
|
+
}
|
|
16897
|
+
onChange = (value) => { };
|
|
16898
|
+
onTouched = () => { };
|
|
16899
|
+
registerOnChange(fn) {
|
|
16900
|
+
this.onChange = fn;
|
|
16901
|
+
}
|
|
16902
|
+
registerOnTouched(fn) {
|
|
16903
|
+
this.onTouched = fn;
|
|
16904
|
+
}
|
|
16905
|
+
writeValue(obj) {
|
|
16906
|
+
}
|
|
16907
|
+
updateValue(insideValue) {
|
|
16908
|
+
}
|
|
16909
|
+
logger(value) {
|
|
16910
|
+
console.log(value);
|
|
16911
|
+
}
|
|
16912
|
+
onOpen(event) {
|
|
16913
|
+
event.stopPropagation();
|
|
16914
|
+
}
|
|
16915
|
+
onClear(event) {
|
|
16916
|
+
event.stopPropagation();
|
|
16917
|
+
}
|
|
16918
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
16919
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: SelectComponent, selector: "mrx-select", inputs: { items: "items", type: "type", size: "size" }, providers: [
|
|
16920
|
+
{
|
|
16921
|
+
provide: NG_VALUE_ACCESSOR,
|
|
16922
|
+
useExisting: forwardRef(() => SelectComponent),
|
|
16923
|
+
multi: true,
|
|
16924
|
+
},
|
|
16925
|
+
], ngImport: i0, template: "<div class=\"mrx-select\" [class]=\"getClasses\">\r\n <div class=\"mrx-select__wrapper\">\r\n @switch (type) {\r\n @case ('multi') {\r\n\r\n }\r\n @default {\r\n <div class=\"mrx-select__input\" [mrxPopupTrigger]=\"dropdown\">\r\n <div class=\"mrx-select__input__box\">\r\n @if (value) {\r\n <div class=\"mrx-select__input__value\"></div>\r\n }\r\n @else {\r\n <div class=\"mrx-select__input__placeholder\"></div>\r\n }\r\n </div>\r\n\r\n <div class=\"mrx-select__input__controls\">\r\n <div class=\"mrx-select__input__controls--item\" (click)=\"onClear($event)\">\r\n <span class=\"mrx-icon icon-close icon-font-24\"></span>\r\n </div>\r\n <div class=\"mrx-select__input__controls--item\" (click)=\"onOpen($event)\">\r\n <span class=\"mrx-icon icon-chevron-down icon-font-24\"></span>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <mrx-popup #dropdown (closed)=\"logger('closed')\" [closeAfterClick]=\"true\">\r\n <mrx-popup-item (clicked)=\"logger('clicked')\">Cut</mrx-popup-item>\r\n <mrx-popup-item (clicked)=\"logger('clicked')\">Copy</mrx-popup-item>\r\n <mrx-popup-item (clicked)=\"logger('clicked')\">Paste</mrx-popup-item>\r\n </mrx-popup>\r\n }\r\n }\r\n </div>\r\n</div>\r\n", styles: [".mrx-select.mrx-select-single .mrx-select__input{border:var(--border-width-default) solid var(--neutral-bg-stroke-default);border-radius:var(--border-radius-1);width:100%;outline:none;transition:outline-width .2s,border .2s;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:8px}.mrx-select.mrx-select-single .mrx-select__input:focus,.mrx-select.mrx-select-single .mrx-select__input:active{outline:var(--neutral-bg-island-default) solid var(--border-width-focused)}.mrx-select.mrx-select-single .mrx-select__input:hover{border:var(--border-width-default) solid var(--neutral-bg-stroke-hover)}.mrx-select.mrx-select-single .mrx-select__input__box{flex-grow:1}.mrx-select.mrx-select-single .mrx-select__input__controls{display:flex;align-items:center;gap:8px}.mrx-select.mrx-select-single .mrx-select__input__controls--item{display:flex;align-items:center;justify-content:center;border-radius:4px;background-color:transparent;transition:background-color .2s}.mrx-select.mrx-select-single .mrx-select__input__controls--item:hover{background-color:var(--brand-bg-tertiary-hover, #EDF5FF)}.mrx-select.mrx-select-single.mrx-select-lg .mrx-select__input{font-family:var(--body-md-font-family);font-size:var(--body-md-font-size);font-weight:var(--body-md-font-weight);line-height:var(--body-md-line-height);padding:calc(var(--spacing-3) - var(--border-width-default)) var(--spacing-4)}.mrx-select.mrx-select-single.mrx-select-lg .mrx-select__input__box{min-height:24px}\n"], dependencies: [{ kind: "component", type: PopupComponent, selector: "mrx-popup", inputs: ["closeAfterClick"], outputs: ["closed"] }, { kind: "component", type: PopupItemComponent, selector: "mrx-popup-item", outputs: ["clicked"] }, { kind: "directive", type: PopupTriggerDirective, selector: "[mrxPopupTrigger]", inputs: ["mrxPopupTrigger", "popupPosition"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16926
|
+
}
|
|
16927
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectComponent, decorators: [{
|
|
16928
|
+
type: Component,
|
|
16929
|
+
args: [{ selector: 'mrx-select', changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
16930
|
+
{
|
|
16931
|
+
provide: NG_VALUE_ACCESSOR,
|
|
16932
|
+
useExisting: forwardRef(() => SelectComponent),
|
|
16933
|
+
multi: true,
|
|
16934
|
+
},
|
|
16935
|
+
], template: "<div class=\"mrx-select\" [class]=\"getClasses\">\r\n <div class=\"mrx-select__wrapper\">\r\n @switch (type) {\r\n @case ('multi') {\r\n\r\n }\r\n @default {\r\n <div class=\"mrx-select__input\" [mrxPopupTrigger]=\"dropdown\">\r\n <div class=\"mrx-select__input__box\">\r\n @if (value) {\r\n <div class=\"mrx-select__input__value\"></div>\r\n }\r\n @else {\r\n <div class=\"mrx-select__input__placeholder\"></div>\r\n }\r\n </div>\r\n\r\n <div class=\"mrx-select__input__controls\">\r\n <div class=\"mrx-select__input__controls--item\" (click)=\"onClear($event)\">\r\n <span class=\"mrx-icon icon-close icon-font-24\"></span>\r\n </div>\r\n <div class=\"mrx-select__input__controls--item\" (click)=\"onOpen($event)\">\r\n <span class=\"mrx-icon icon-chevron-down icon-font-24\"></span>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <mrx-popup #dropdown (closed)=\"logger('closed')\" [closeAfterClick]=\"true\">\r\n <mrx-popup-item (clicked)=\"logger('clicked')\">Cut</mrx-popup-item>\r\n <mrx-popup-item (clicked)=\"logger('clicked')\">Copy</mrx-popup-item>\r\n <mrx-popup-item (clicked)=\"logger('clicked')\">Paste</mrx-popup-item>\r\n </mrx-popup>\r\n }\r\n }\r\n </div>\r\n</div>\r\n", styles: [".mrx-select.mrx-select-single .mrx-select__input{border:var(--border-width-default) solid var(--neutral-bg-stroke-default);border-radius:var(--border-radius-1);width:100%;outline:none;transition:outline-width .2s,border .2s;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:8px}.mrx-select.mrx-select-single .mrx-select__input:focus,.mrx-select.mrx-select-single .mrx-select__input:active{outline:var(--neutral-bg-island-default) solid var(--border-width-focused)}.mrx-select.mrx-select-single .mrx-select__input:hover{border:var(--border-width-default) solid var(--neutral-bg-stroke-hover)}.mrx-select.mrx-select-single .mrx-select__input__box{flex-grow:1}.mrx-select.mrx-select-single .mrx-select__input__controls{display:flex;align-items:center;gap:8px}.mrx-select.mrx-select-single .mrx-select__input__controls--item{display:flex;align-items:center;justify-content:center;border-radius:4px;background-color:transparent;transition:background-color .2s}.mrx-select.mrx-select-single .mrx-select__input__controls--item:hover{background-color:var(--brand-bg-tertiary-hover, #EDF5FF)}.mrx-select.mrx-select-single.mrx-select-lg .mrx-select__input{font-family:var(--body-md-font-family);font-size:var(--body-md-font-size);font-weight:var(--body-md-font-weight);line-height:var(--body-md-line-height);padding:calc(var(--spacing-3) - var(--border-width-default)) var(--spacing-4)}.mrx-select.mrx-select-single.mrx-select-lg .mrx-select__input__box{min-height:24px}\n"] }]
|
|
16936
|
+
}], propDecorators: { items: [{
|
|
16937
|
+
type: Input
|
|
16938
|
+
}], type: [{
|
|
16939
|
+
type: Input
|
|
16940
|
+
}], size: [{
|
|
16941
|
+
type: Input
|
|
16942
|
+
}] } });
|
|
16943
|
+
|
|
16944
|
+
class SelectModule {
|
|
16945
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
16946
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: SelectModule, declarations: [SelectComponent], imports: [CommonModule,
|
|
16947
|
+
PopupModule], exports: [SelectComponent] });
|
|
16948
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectModule, imports: [CommonModule,
|
|
16949
|
+
PopupModule] });
|
|
16950
|
+
}
|
|
16951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: SelectModule, decorators: [{
|
|
16952
|
+
type: NgModule,
|
|
16953
|
+
args: [{
|
|
16954
|
+
declarations: [
|
|
16955
|
+
SelectComponent
|
|
16956
|
+
],
|
|
16957
|
+
imports: [
|
|
16958
|
+
CommonModule,
|
|
16959
|
+
PopupModule
|
|
16960
|
+
],
|
|
16961
|
+
exports: [
|
|
16962
|
+
SelectComponent
|
|
16963
|
+
]
|
|
16964
|
+
}]
|
|
16965
|
+
}] });
|
|
16966
|
+
|
|
16699
16967
|
class PdfViewerComponent {
|
|
16700
16968
|
_pdfViewerService;
|
|
16701
16969
|
_renderer;
|
|
@@ -17005,5 +17273,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
17005
17273
|
* Generated bundle index. Do not edit.
|
|
17006
17274
|
*/
|
|
17007
17275
|
|
|
17008
|
-
export { AlertColorClasses, AlertComponent, AlertIconClasses, AlertModule, BadgeColorClassesEnum, BadgeComponent, BadgeGroupComponent, BadgeSizeEnum, BadgeTagTypeClassesEnum, BadgeTargetTypesEnum, BadgeTypeEnum, BadgesModule, BreadcrumbsComponent, BreadcrumbsModule, BreadcrumbsTypeEnum, ButtonColorsEnum, ButtonComponent, ButtonIconPositionEnum, ButtonModule, ButtonSizesEnum, ButtonTypesEnum, CdkTooltipDirective, CdkTooltipModule, CharsLeftComponent, CharsLeftModule, CheckboxComponent, CheckboxGroupComponent, CheckboxGroupModule, CheckboxModule, ColumnComponent, ContentWrapperComponent, ContentWrapperModule, ContentWrapperTypeEnum, ControlsItemComponent, ControlsVisibilityEnum, ControlsWrapperComponent, ControlsWrapperModule, CountryISO$1 as CountryISO, CurrencyModule, CurrencyPipe, DateFormatModule, DateFormatPipe, DateTimeFormatPipe, DefaultPagerSettings, DropdownComponent, DropdownModule, EditorComponent, EditorModule, ErrorMessageComponent, ErrorMessageModule, FileUploadService, GalleryComponent, GalleryModule, HideAfterClickDirective, HintErrorMessageComponent, HintErrorMessageModule, IconButtonComponent, IconButtonModule, IconButtonSizeEnum, IconButtonStateEnum, IconButtonTypeEnum, InputDateSizesEnum$2 as InputDateSizesEnum, InputDateTimeComponent, InputDateTimeModule, InputDatepickerComponent, InputDatepickerModule, InputFileComponent, InputFileImageComponent, InputFileImageModule, InputFileImageTypeEnum, InputFileModule, InputNumberComponent, InputNumberModule, InputNumberSizesEnum, InputOptComponent, InputOptModule, InputPasswordComponent, InputPasswordModule, InputPasswordSizesEnum, InputPhoneComponent, InputPhoneModule, InputSearchComponent, InputSearchModule, InputSearchSizesEnum, InputSelectComponent, InputSelectModule, InputSelectSizeEnum, InputTelComponent, InputTelModule, InputTextComponent, InputTextIconColorEnum, InputTextModule, InputTextSizesEnum, InputTextareaComponent, InputTextareaModule, InputTextareaSizesEnum, InputTimepickerComponent, InputTimepickerModule, JsonEditorComponent, JsonEditorModule, JsonEditorOptions, LabelComponent, LabelModule, LinkComponent, LinkModule, LinkSizesEnum, LinkTargetTypesEnum, LinkTypesEnum, LoaderColorEnum, LoaderComponent, LoaderModule, LoaderSizesEnum, MODAL_CONFIG, MODAL_DATA, ModalAlignButtonsEnum, ModalBackdropTypeClasses, ModalColorEnum, ModalComponent, ModalModule, ModalRef, ModalService, ModalServiceComponent, ModalServiceModule, ModalSizesEnum, ModalType, ModalTypeClasses, MrxAutoSaveActionsEnum, MrxAutosaveService, MrxFormValidator, NgxOtpBehavior, PagesNavComponent, PagesNavEnum, PagesNavModule, PaginatorComponent, PaginatorModule, PaginatorPositionCss, PdfViewerComponent, PdfViewerComponentModule, PhoneFormatModule, PhoneFormatPipe, PreviewEnum, ProgressClasses, ProgressComponent, ProgressModule, RadioComponent, RadioGroupComponent, RadioGroupModule, RadioModule, RadioTypesEnum, RatingComponent, RatingModule, RatingSizesEnum, RatingValueSizesEnum, RatingWrapperSizesEnum, SafeModule, SafePipe, SaveStateComponent, SaveStateModule, SaveStoreModule, SidePageComponent, SidePageHeaderSizesEnum, SidePageModule, SidePagePositionEnum, SidePageSizesEnum, StepperClasses, StepperComponent, StepperModule, SwitchComponent, SwitchModule, SwitchSizeEnum, SwitchTypeEnum, TabComponent, TableComponent, TableModule, TableTypeEnum, TabsClasses, TabsGroupComponent, TabsModule, TabsTypesClasses, Timezone, ToasterPosition, ToasterService, ToasterServiceModule, ToasterType, Tooltip, TooltipComponent, TooltipModule, TooltipService, TooltipTextPositionEnum, TooltipTriggerComponent, TooltipTriggerEnum, TruncateDirective, TruncateDirectiveModule, TruncateModule, TruncatePipe, TruncateTextComponent, TruncateTextModule, ValidationMethodsEnum, ValidationOptionsEnum, ValidationTypesEnum, WarningMessageComponent, WarningMessageModule, WidgetWrapperComponent, WidgetWrapperModule, autosaveAddId, autosaveError, autosaveErrorFor, autosaveStart, autosaveStartFor, autosaveStop, autosaveStopFor, autosaveSuccess, autosaveSuccessFor, convertBase64ToFile, dateTimeFormat, defaultConfig, defaultCustomConfig, formatBytes, formattingDateRange, formattingIsoToString, getBase64FromUrl, getHashCode, innerListToList, sHashCode, selectFields, selectMrxAutoSaveState, sliceDate, toBytes, toDate, toNumberFormat, toastrDefaultConfig, wordForm };
|
|
17276
|
+
export { AlertColorClasses, AlertComponent, AlertIconClasses, AlertModule, BadgeColorClassesEnum, BadgeComponent, BadgeGroupComponent, BadgeSizeEnum, BadgeTagTypeClassesEnum, BadgeTargetTypesEnum, BadgeTypeEnum, BadgesModule, BreadcrumbsComponent, BreadcrumbsModule, BreadcrumbsTypeEnum, ButtonColorsEnum, ButtonComponent, ButtonIconPositionEnum, ButtonModule, ButtonSizesEnum, ButtonTypesEnum, CdkTooltipDirective, CdkTooltipModule, CharsLeftComponent, CharsLeftModule, CheckboxComponent, CheckboxGroupComponent, CheckboxGroupModule, CheckboxModule, ColumnComponent, ContentWrapperComponent, ContentWrapperModule, ContentWrapperTypeEnum, ControlsItemComponent, ControlsVisibilityEnum, ControlsWrapperComponent, ControlsWrapperModule, CountryISO$1 as CountryISO, CurrencyModule, CurrencyPipe, DateFormatModule, DateFormatPipe, DateTimeFormatPipe, DefaultPagerSettings, DropdownComponent, DropdownModule, EditorComponent, EditorModule, ErrorMessageComponent, ErrorMessageModule, FileUploadService, GalleryComponent, GalleryModule, HideAfterClickDirective, HintErrorMessageComponent, HintErrorMessageModule, IconButtonComponent, IconButtonModule, IconButtonSizeEnum, IconButtonStateEnum, IconButtonTypeEnum, InputDateSizesEnum$2 as InputDateSizesEnum, InputDateTimeComponent, InputDateTimeModule, InputDatepickerComponent, InputDatepickerModule, InputFileComponent, InputFileImageComponent, InputFileImageModule, InputFileImageTypeEnum, InputFileModule, InputNumberComponent, InputNumberModule, InputNumberSizesEnum, InputOptComponent, InputOptModule, InputPasswordComponent, InputPasswordModule, InputPasswordSizesEnum, InputPhoneComponent, InputPhoneModule, InputSearchComponent, InputSearchModule, InputSearchSizesEnum, InputSelectComponent, InputSelectModule, InputSelectSizeEnum, InputTelComponent, InputTelModule, InputTextComponent, InputTextIconColorEnum, InputTextModule, InputTextSizesEnum, InputTextareaComponent, InputTextareaModule, InputTextareaSizesEnum, InputTimepickerComponent, InputTimepickerModule, JsonEditorComponent, JsonEditorModule, JsonEditorOptions, LabelComponent, LabelModule, LinkComponent, LinkModule, LinkSizesEnum, LinkTargetTypesEnum, LinkTypesEnum, LoaderColorEnum, LoaderComponent, LoaderModule, LoaderSizesEnum, MODAL_CONFIG, MODAL_DATA, ModalAlignButtonsEnum, ModalBackdropTypeClasses, ModalColorEnum, ModalComponent, ModalModule, ModalRef, ModalService, ModalServiceComponent, ModalServiceModule, ModalSizesEnum, ModalType, ModalTypeClasses, MrxAutoSaveActionsEnum, MrxAutosaveService, MrxFormValidator, NgxOtpBehavior, PagesNavComponent, PagesNavEnum, PagesNavModule, PaginatorComponent, PaginatorModule, PaginatorPositionCss, PdfViewerComponent, PdfViewerComponentModule, PhoneFormatModule, PhoneFormatPipe, PopupComponent, PopupItemComponent, PopupModule, PopupTriggerDirective, PreviewEnum, ProgressClasses, ProgressComponent, ProgressModule, RadioComponent, RadioGroupComponent, RadioGroupModule, RadioModule, RadioTypesEnum, RatingComponent, RatingModule, RatingSizesEnum, RatingValueSizesEnum, RatingWrapperSizesEnum, SafeModule, SafePipe, SaveStateComponent, SaveStateModule, SaveStoreModule, SelectComponent, SelectModule, SelectSizeEnum, SelectTypeEnum, SidePageComponent, SidePageHeaderSizesEnum, SidePageModule, SidePagePositionEnum, SidePageSizesEnum, StepperClasses, StepperComponent, StepperModule, SwitchComponent, SwitchModule, SwitchSizeEnum, SwitchTypeEnum, TabComponent, TableComponent, TableModule, TableTypeEnum, TabsClasses, TabsGroupComponent, TabsModule, TabsTypesClasses, Timezone, ToasterPosition, ToasterService, ToasterServiceModule, ToasterType, Tooltip, TooltipComponent, TooltipModule, TooltipService, TooltipTextPositionEnum, TooltipTriggerComponent, TooltipTriggerEnum, TruncateDirective, TruncateDirectiveModule, TruncateModule, TruncatePipe, TruncateTextComponent, TruncateTextModule, ValidationMethodsEnum, ValidationOptionsEnum, ValidationTypesEnum, WarningMessageComponent, WarningMessageModule, WidgetWrapperComponent, WidgetWrapperModule, autosaveAddId, autosaveError, autosaveErrorFor, autosaveStart, autosaveStartFor, autosaveStop, autosaveStopFor, autosaveSuccess, autosaveSuccessFor, convertBase64ToFile, dateTimeFormat, defaultConfig, defaultCustomConfig, formatBytes, formattingDateRange, formattingIsoToString, getBase64FromUrl, getHashCode, innerListToList, sHashCode, selectFields, selectMrxAutoSaveState, sliceDate, toBytes, toDate, toNumberFormat, toastrDefaultConfig, wordForm };
|
|
17009
17277
|
//# sourceMappingURL=myrta-ui.mjs.map
|