@ptsecurity/mosaic 17.2.1 → 17.2.3

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.
Files changed (121) hide show
  1. package/autocomplete/autocomplete.scss +0 -2
  2. package/button/_button-theme.scss +3 -3
  3. package/button-toggle/_button-toggle-theme.scss +2 -2
  4. package/checkbox/_checkbox-theme.scss +1 -1
  5. package/code-block/_code-block-theme.scss +2 -2
  6. package/core/form-field/form-field-ref.d.ts +13 -0
  7. package/core/form-field/index.d.ts +1 -0
  8. package/core/forms/_forms-theme.scss +2 -2
  9. package/core/locales/en-US.d.ts +17 -0
  10. package/core/locales/es-LA.d.ts +17 -0
  11. package/core/locales/fa-IR.d.ts +17 -0
  12. package/core/locales/index.d.ts +6 -0
  13. package/core/locales/locale-service.d.ts +102 -0
  14. package/core/locales/pt-BR.d.ts +17 -0
  15. package/core/locales/ru-RU.d.ts +17 -0
  16. package/core/locales/zh-CN.d.ts +17 -0
  17. package/core/option/_optgroup-theme.scss +1 -1
  18. package/core/option/_option-theme.scss +1 -1
  19. package/core/public-api.d.ts +1 -0
  20. package/core/select/common.d.ts +35 -0
  21. package/core/select/index.d.ts +1 -0
  22. package/core/styles/common/_tokens.scss +29 -20
  23. package/core/styles/theming/_alerts.scss +5 -5
  24. package/core/styles/theming/_badges.scss +6 -6
  25. package/core/styles/typography/_typography.scss +26 -26
  26. package/datepicker/_datepicker-theme.scss +4 -4
  27. package/dl/_dl-theme.scss +8 -8
  28. package/dropdown/_dropdown-theme.scss +4 -4
  29. package/esm2022/core/form-field/form-field-ref.mjs +8 -0
  30. package/esm2022/core/form-field/index.mjs +2 -0
  31. package/esm2022/core/locales/en-US.mjs +18 -1
  32. package/esm2022/core/locales/es-LA.mjs +18 -1
  33. package/esm2022/core/locales/fa-IR.mjs +18 -1
  34. package/esm2022/core/locales/index.mjs +7 -1
  35. package/esm2022/core/locales/pt-BR.mjs +18 -1
  36. package/esm2022/core/locales/ru-RU.mjs +18 -1
  37. package/esm2022/core/locales/zh-CN.mjs +18 -1
  38. package/esm2022/core/public-api.mjs +2 -1
  39. package/esm2022/core/select/common.mjs +119 -0
  40. package/esm2022/core/select/index.mjs +2 -1
  41. package/esm2022/core/version.mjs +2 -2
  42. package/esm2022/datepicker/calendar-header.component.mjs +1 -1
  43. package/esm2022/file-upload/multiple-file-upload.component.mjs +49 -26
  44. package/esm2022/file-upload/single-file-upload.component.mjs +38 -14
  45. package/esm2022/form-field/form-field.mjs +5 -11
  46. package/esm2022/form-field/password-hint.mjs +5 -4
  47. package/esm2022/form-field/validate.directive.mjs +5 -2
  48. package/esm2022/modal/modal.component.mjs +3 -3
  49. package/esm2022/modal/modal.directive.mjs +12 -6
  50. package/esm2022/progress-spinner/progress-spinner.component.mjs +2 -2
  51. package/esm2022/select/select.component.mjs +15 -111
  52. package/esm2022/select/select.module.mjs +17 -17
  53. package/esm2022/tags/tag-default-options.mjs +1 -1
  54. package/esm2022/tags/tag-input.mjs +17 -3
  55. package/esm2022/timepicker/timepicker.directive.mjs +10 -2
  56. package/esm2022/timezone/timezone-select.component.mjs +3 -3
  57. package/esm2022/toast/toast.service.mjs +17 -11
  58. package/esm2022/tree-select/tree-select.component.mjs +4 -5
  59. package/fesm2022/ptsecurity-mosaic-core.mjs +227 -4
  60. package/fesm2022/ptsecurity-mosaic-core.mjs.map +1 -1
  61. package/fesm2022/ptsecurity-mosaic-datepicker.mjs +1 -1
  62. package/fesm2022/ptsecurity-mosaic-datepicker.mjs.map +1 -1
  63. package/fesm2022/ptsecurity-mosaic-file-upload.mjs +80 -36
  64. package/fesm2022/ptsecurity-mosaic-file-upload.mjs.map +1 -1
  65. package/fesm2022/ptsecurity-mosaic-form-field.mjs +11 -14
  66. package/fesm2022/ptsecurity-mosaic-form-field.mjs.map +1 -1
  67. package/fesm2022/ptsecurity-mosaic-modal.mjs +11 -6
  68. package/fesm2022/ptsecurity-mosaic-modal.mjs.map +1 -1
  69. package/fesm2022/ptsecurity-mosaic-progress-spinner.mjs +2 -2
  70. package/fesm2022/ptsecurity-mosaic-progress-spinner.mjs.map +1 -1
  71. package/fesm2022/ptsecurity-mosaic-select.mjs +34 -130
  72. package/fesm2022/ptsecurity-mosaic-select.mjs.map +1 -1
  73. package/fesm2022/ptsecurity-mosaic-tags.mjs +17 -4
  74. package/fesm2022/ptsecurity-mosaic-tags.mjs.map +1 -1
  75. package/fesm2022/ptsecurity-mosaic-timepicker.mjs +9 -1
  76. package/fesm2022/ptsecurity-mosaic-timepicker.mjs.map +1 -1
  77. package/fesm2022/ptsecurity-mosaic-timezone.mjs +2 -2
  78. package/fesm2022/ptsecurity-mosaic-timezone.mjs.map +1 -1
  79. package/fesm2022/ptsecurity-mosaic-toast.mjs +15 -9
  80. package/fesm2022/ptsecurity-mosaic-toast.mjs.map +1 -1
  81. package/fesm2022/ptsecurity-mosaic-tree-select.mjs +4 -4
  82. package/fesm2022/ptsecurity-mosaic-tree-select.mjs.map +1 -1
  83. package/file-upload/_file-upload-theme.scss +7 -7
  84. package/file-upload/multiple-file-upload.component.d.ts +17 -6
  85. package/file-upload/single-file-upload.component.d.ts +15 -6
  86. package/form-field/_form-field-theme.scss +7 -5
  87. package/form-field/form-field.d.ts +1 -7
  88. package/form-field/validate.directive.d.ts +5 -2
  89. package/input/_input-theme.scss +4 -4
  90. package/link/_link-theme.scss +2 -2
  91. package/list/_list-theme.scss +1 -1
  92. package/loader-overlay/_loader-overlay-theme.scss +2 -2
  93. package/markdown/_markdown-theme.scss +14 -14
  94. package/modal/_modal-theme.scss +2 -2
  95. package/modal/modal.directive.d.ts +1 -1
  96. package/navbar/_navbar-theme.scss +4 -4
  97. package/package.json +19 -19
  98. package/popover/_popover-theme.scss +3 -3
  99. package/prebuilt-themes/dark-theme.css +1 -1
  100. package/prebuilt-themes/default-theme.css +1 -1
  101. package/progress-spinner/progress-spinner.scss +1 -0
  102. package/radio/_radio-theme.scss +1 -1
  103. package/select/_select-theme.scss +2 -2
  104. package/select/select.component.d.ts +2 -32
  105. package/select/select.module.d.ts +1 -1
  106. package/sidepanel/_sidepanel-theme.scss +3 -3
  107. package/table/_table-theme.scss +2 -2
  108. package/tabs/_tabs-theme.scss +1 -1
  109. package/tags/_tag-theme.scss +5 -5
  110. package/tags/tag-default-options.d.ts +1 -0
  111. package/tags/tag-input.d.ts +7 -1
  112. package/textarea/_textarea-theme.scss +2 -2
  113. package/timezone/_timezone-option-theme.scss +3 -3
  114. package/timezone/timezone-select.component.d.ts +2 -1
  115. package/toast/_toast-theme.scss +3 -3
  116. package/toast/toast.service.d.ts +8 -4
  117. package/toggle/_toggle-theme.scss +2 -2
  118. package/tooltip/_tooltip-theme.scss +3 -3
  119. package/tree/_tree-theme.scss +1 -1
  120. package/tree-select/_tree-select-theme.scss +1 -1
  121. package/tree-select/tree-select.component.d.ts +1 -2
@@ -7,10 +7,10 @@ import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coerci
7
7
  import * as i1 from '@mosaic-design/date-adapter';
8
8
  import { DateAdapter as DateAdapter$1 } from '@mosaic-design/date-adapter';
9
9
  import { DateFormatter as DateFormatter$1 } from '@mosaic-design/date-formatter';
10
- import { BehaviorSubject, Subject } from 'rxjs';
10
+ import { BehaviorSubject, Subject, Subscription } from 'rxjs';
11
11
  import * as i2 from '@angular/common';
12
12
  import { CommonModule, DOCUMENT } from '@angular/common';
13
- import { ENTER, SPACE, TAB, ESCAPE } from '@ptsecurity/cdk/keycodes';
13
+ import { ENTER, SPACE, TAB, ESCAPE, HOME, END } from '@ptsecurity/cdk/keycodes';
14
14
  import * as i1$1 from '@angular/cdk/a11y';
15
15
  import { takeUntil, distinctUntilChanged, delay } from 'rxjs/operators';
16
16
  import * as i1$2 from '@angular/cdk/overlay';
@@ -538,6 +538,23 @@ const enUSLocaleData = {
538
538
  groupSeparator: [','],
539
539
  fractionSeparator: '.'
540
540
  }
541
+ },
542
+ fileUpload: {
543
+ single: {
544
+ captionText: 'Drag file here or {{ browseLink }}',
545
+ browseLink: 'choose'
546
+ },
547
+ multiple: {
548
+ captionText: 'Drag here or {{ browseLink }}',
549
+ captionTextWhenSelected: 'Drag more files or {{ browseLink }}',
550
+ captionTextForCompactSize: 'Drag files or {{ browseLink }}',
551
+ browseLink: 'choose',
552
+ title: 'Upload files',
553
+ gridHeaders: {
554
+ file: 'File',
555
+ size: 'Size'
556
+ }
557
+ }
541
558
  }
542
559
  }
543
560
  };
@@ -573,6 +590,23 @@ const esLALocaleData = {
573
590
  groupSeparator: [' ', ' '],
574
591
  fractionSeparator: ','
575
592
  }
593
+ },
594
+ fileUpload: {
595
+ single: {
596
+ captionText: 'Arrastre el archivo aquí o {{ browseLink }}',
597
+ browseLink: 'elija'
598
+ },
599
+ multiple: {
600
+ captionText: 'Arrastre aquí o {{ browseLink }}',
601
+ captionTextWhenSelected: 'Arrastre más archivos aquí o {{ browseLink }}',
602
+ captionTextForCompactSize: 'Arrastre archivos o {{ browseLink }}',
603
+ browseLink: 'elija',
604
+ title: 'Cargue los archivos',
605
+ gridHeaders: {
606
+ file: 'Archivo',
607
+ size: 'Tamaño'
608
+ }
609
+ }
576
610
  }
577
611
  }
578
612
  };
@@ -607,6 +641,23 @@ const faIRLocaleData = {
607
641
  groupSeparator: ['\u066C'],
608
642
  fractionSeparator: '\u066B'
609
643
  }
644
+ },
645
+ fileUpload: {
646
+ single: {
647
+ captionText: 'فایل را به اینجا بکشید یا {{ browseLink }}',
648
+ browseLink: 'انتخاب کنید'
649
+ },
650
+ multiple: {
651
+ captionText: 'به اینجا بکشید یا {{ browseLink }}',
652
+ captionTextWhenSelected: 'فایل های بیشتری را بکشید یا {{ browseLink }}',
653
+ captionTextForCompactSize: 'فایل ها را بکشید یا {{ browseLink }}',
654
+ browseLink: 'انتخاب کنید',
655
+ title: 'فایل ها را آپلود کنید',
656
+ gridHeaders: {
657
+ file: 'فایل',
658
+ size: 'اندازه'
659
+ }
660
+ }
610
661
  }
611
662
  }
612
663
  };
@@ -640,6 +691,23 @@ const ptBRLocaleData = {
640
691
  groupSeparator: ['.'],
641
692
  fractionSeparator: ','
642
693
  }
694
+ },
695
+ fileUpload: {
696
+ single: {
697
+ captionText: 'Arrastar o arquivo aqui ou {{ browseLink }}',
698
+ browseLink: 'escolher'
699
+ },
700
+ multiple: {
701
+ captionText: 'Arrastar aqui ou {{ browseLink }}',
702
+ captionTextWhenSelected: 'Arrastar mais arquivos aqui ou {{ browseLink }}',
703
+ captionTextForCompactSize: 'Arrastar arquivos ou {{ browseLink }}',
704
+ browseLink: 'escolher',
705
+ title: 'Carregar arquivos',
706
+ gridHeaders: {
707
+ file: 'Arquivo',
708
+ size: 'Tamanho'
709
+ }
710
+ }
643
711
  }
644
712
  }
645
713
  };
@@ -671,6 +739,23 @@ const ruRULocaleData = {
671
739
  fractionSeparator: ',',
672
740
  startFormattingFrom: 4
673
741
  }
742
+ },
743
+ fileUpload: {
744
+ single: {
745
+ captionText: 'Перетащите файл или {{ browseLink }}',
746
+ browseLink: 'выберите'
747
+ },
748
+ multiple: {
749
+ captionText: 'Перетащите сюда или {{ browseLink }}',
750
+ captionTextWhenSelected: 'Перетащите еще или {{ browseLink }}',
751
+ captionTextForCompactSize: 'Перетащите файлы или {{ browseLink }}',
752
+ browseLink: 'выберите',
753
+ title: 'Загрузите файлы',
754
+ gridHeaders: {
755
+ file: 'Файл',
756
+ size: 'Размер'
757
+ }
758
+ }
674
759
  }
675
760
  }
676
761
  };
@@ -703,6 +788,23 @@ const znCNLocaleData = {
703
788
  groupSeparator: [','],
704
789
  fractionSeparator: '.'
705
790
  }
791
+ },
792
+ fileUpload: {
793
+ single: {
794
+ captionText: '将文件拖到此处或{{ browseLink }}',
795
+ browseLink: '选择'
796
+ },
797
+ multiple: {
798
+ captionText: '拖到此处或{{ browseLink }}',
799
+ captionTextWhenSelected: '拖动更多文件或{{ browseLink }}',
800
+ captionTextForCompactSize: '拖动文件或{{ browseLink }}',
801
+ browseLink: '选择',
802
+ title: '上传文件',
803
+ gridHeaders: {
804
+ file: '文件',
805
+ size: '大小'
806
+ }
807
+ }
706
808
  }
707
809
  }
708
810
  };
@@ -1293,6 +1395,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImpor
1293
1395
  }]
1294
1396
  }] });
1295
1397
 
1398
+ /**
1399
+ * Injection token that can be used to inject an instances of `McFormField`. It serves
1400
+ * as alternative token to the actual `McFormField` class which would cause unnecessary
1401
+ * retention of the `McFormField` class and its component metadata.
1402
+ */
1403
+ const MC_FORM_FIELD_REF = new InjectionToken('McFormFieldRef');
1404
+
1296
1405
  function escapeRegExp(value) {
1297
1406
  if (value) {
1298
1407
  return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
@@ -2598,6 +2707,120 @@ const MC_SELECT_SCROLL_STRATEGY_PROVIDER = {
2598
2707
  useFactory: mcSelectScrollStrategyProviderFactory
2599
2708
  };
2600
2709
 
2710
+ /* tslint:disable:no-empty */
2711
+ class McSelectFooter {
2712
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectFooter, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2713
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: McSelectFooter, isStandalone: true, selector: "mc-select-footer, [mc-select-footer]", host: { classAttribute: "mc-select__footer" }, ngImport: i0 }); }
2714
+ }
2715
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectFooter, decorators: [{
2716
+ type: Directive,
2717
+ args: [{
2718
+ selector: 'mc-select-footer, [mc-select-footer]',
2719
+ standalone: true,
2720
+ host: { class: 'mc-select__footer' }
2721
+ }]
2722
+ }] });
2723
+ class McSelectSearch {
2724
+ get ngControl() {
2725
+ return this.formField.control.ngControl;
2726
+ }
2727
+ constructor(formField) {
2728
+ this.formField = formField;
2729
+ this.searchChangesSubscription = new Subscription();
2730
+ this.isSearchChanged = false;
2731
+ formField.canCleanerClearByEsc = false;
2732
+ }
2733
+ focus() {
2734
+ this.formField.focusViaKeyboard();
2735
+ }
2736
+ reset() {
2737
+ this.ngControl.reset();
2738
+ }
2739
+ value() {
2740
+ return this.formField.control.value;
2741
+ }
2742
+ ngAfterContentInit() {
2743
+ if (this.formField.control.controlType !== 'input') {
2744
+ throw Error('McSelectSearch does not work without mcInput');
2745
+ }
2746
+ if (!this.ngControl) {
2747
+ throw Error('McSelectSearch does not work without ngControl');
2748
+ }
2749
+ Promise.resolve().then(() => {
2750
+ this.searchChangesSubscription = this.ngControl.valueChanges
2751
+ .subscribe(() => this.isSearchChanged = true);
2752
+ });
2753
+ }
2754
+ ngOnDestroy() {
2755
+ this.searchChangesSubscription.unsubscribe();
2756
+ }
2757
+ handleKeydown(event) {
2758
+ // tslint:disable-next-line:deprecation
2759
+ if (event.keyCode === ESCAPE) {
2760
+ if (this.value()) {
2761
+ this.reset();
2762
+ event.stopPropagation();
2763
+ }
2764
+ }
2765
+ // tslint:disable-next-line:deprecation
2766
+ if ([SPACE, HOME, END].includes(event.keyCode)) {
2767
+ event.stopPropagation();
2768
+ }
2769
+ }
2770
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectSearch, deps: [{ token: MC_FORM_FIELD_REF, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
2771
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: McSelectSearch, isStandalone: true, selector: "[mcSelectSearch]", host: { listeners: { "keydown": "handleKeydown($event)" } }, exportAs: ["mcSelectSearch"], ngImport: i0 }); }
2772
+ }
2773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectSearch, decorators: [{
2774
+ type: Directive,
2775
+ args: [{
2776
+ selector: '[mcSelectSearch]',
2777
+ exportAs: 'mcSelectSearch',
2778
+ standalone: true,
2779
+ host: {
2780
+ '(keydown)': 'handleKeydown($event)'
2781
+ }
2782
+ }]
2783
+ }], ctorParameters: () => [{ type: undefined, decorators: [{
2784
+ type: Optional
2785
+ }, {
2786
+ type: Inject,
2787
+ args: [MC_FORM_FIELD_REF]
2788
+ }] }] });
2789
+ class McSelectSearchEmptyResult {
2790
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectSearchEmptyResult, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2791
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: McSelectSearchEmptyResult, isStandalone: true, selector: "[mc-select-search-empty-result]", exportAs: ["mcSelectSearchEmptyResult"], ngImport: i0 }); }
2792
+ }
2793
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectSearchEmptyResult, decorators: [{
2794
+ type: Directive,
2795
+ args: [{
2796
+ selector: '[mc-select-search-empty-result]',
2797
+ exportAs: 'mcSelectSearchEmptyResult',
2798
+ standalone: true
2799
+ }]
2800
+ }] });
2801
+ class McSelectTrigger {
2802
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectTrigger, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2803
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: McSelectTrigger, isStandalone: true, selector: "mc-select-trigger, [mc-select-trigger]", ngImport: i0 }); }
2804
+ }
2805
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectTrigger, decorators: [{
2806
+ type: Directive,
2807
+ args: [{
2808
+ selector: 'mc-select-trigger, [mc-select-trigger]',
2809
+ standalone: true
2810
+ }]
2811
+ }] });
2812
+ class McSelectMatcher {
2813
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectMatcher, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2814
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: McSelectMatcher, isStandalone: true, selector: "mc-select-matcher, [mc-select-matcher]", ngImport: i0 }); }
2815
+ }
2816
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: McSelectMatcher, decorators: [{
2817
+ type: Directive,
2818
+ args: [{
2819
+ selector: 'mc-select-matcher, [mc-select-matcher]',
2820
+ standalone: true
2821
+ }]
2822
+ }] });
2823
+
2601
2824
  class McMeasureScrollbarService {
2602
2825
  get scrollBarWidth() {
2603
2826
  if (this._scrollBarWidth) {
@@ -2751,11 +2974,11 @@ const validationTooltipShowDelay = 10;
2751
2974
  const validationTooltipHideDelay = 3000;
2752
2975
  const MC_VALIDATION = new InjectionToken('McUseValidation', { factory: () => ({ useValidation: true }) });
2753
2976
 
2754
- const VERSION = new Version('17.2.1+sha-b044877');
2977
+ const VERSION = new Version('17.2.3+sha-0b60e9f');
2755
2978
 
2756
2979
  /**
2757
2980
  * Generated bundle index. Do not edit.
2758
2981
  */
2759
2982
 
2760
- export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, LEFT_BOTTOM_POSITION_PRIORITY, LEFT_POSITION_PRIORITY, LEFT_TOP_POSITION_PRIORITY, MC_CUSTOM_SCROLL_STRATEGY_PROVIDER, MC_DATE_FORMATS, MC_DATE_LOCALE, MC_DATE_LOCALE_FACTORY, MC_DEFAULT_LOCALE_DATA_FACTORY, MC_DEFAULT_LOCALE_ID, MC_LABEL_GLOBAL_OPTIONS, MC_LOCALE_DATA, MC_LOCALE_ID, MC_LOCALE_SERVICE, MC_NUMBER_FORMATTER_DEFAULT_OPTIONS, MC_NUMBER_FORMATTER_OPTIONS, MC_OPTION_ACTION_PARENT, MC_OPTION_PARENT_COMPONENT, MC_PARENT_ANIMATION_COMPONENT, MC_SANITY_CHECKS, MC_SELECT_SCROLL_STRATEGY, MC_SELECT_SCROLL_STRATEGY_PROVIDER, MC_TITLE_TEXT_REF, MC_VALIDATION, McCommonModule, McDataSizeModule, McDataSizePipe, McDecimalPipe, McForm, McFormElement, McFormattersModule, McFormsModule, McHighlightModule, McHighlightPipe, McLine, McLineModule, McLineSetter, McLocaleService, McLocaleServiceModule, McMeasureScrollbarService, McOptgroup, McOptgroupBase, McOptgroupMixinBase, McOption, McOptionActionBase, McOptionActionComponent, McOptionActionMixinBase, McOptionBase, McOptionModule, McOptionSelectionChange, McPopUp, McPopUpTrigger, McPseudoCheckbox, McPseudoCheckboxBase, McPseudoCheckboxMixinBase, McPseudoCheckboxModule, McRoundDecimalPipe, McTableNumberPipe, McVirtualOption, MeasurementSystem, MultipleMode, NUMBER_FORMAT_REGEXP, POSITION_MAP, POSITION_PRIORITY_STRATEGY, POSITION_TO_CSS_MAP, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnDirtyErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, VERSION, countGroupLabelsBeforeOption, escapeRegExp, fadeAnimation, formatDataSize, getHumanizedBytes, getMcSelectDynamicMultipleError, getMcSelectNonArrayValueError, getMcSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, mcSelectAnimations, mcSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay };
2983
+ export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, LEFT_BOTTOM_POSITION_PRIORITY, LEFT_POSITION_PRIORITY, LEFT_TOP_POSITION_PRIORITY, MC_CUSTOM_SCROLL_STRATEGY_PROVIDER, MC_DATE_FORMATS, MC_DATE_LOCALE, MC_DATE_LOCALE_FACTORY, MC_DEFAULT_LOCALE_DATA_FACTORY, MC_DEFAULT_LOCALE_ID, MC_FORM_FIELD_REF, MC_LABEL_GLOBAL_OPTIONS, MC_LOCALE_DATA, MC_LOCALE_ID, MC_LOCALE_SERVICE, MC_NUMBER_FORMATTER_DEFAULT_OPTIONS, MC_NUMBER_FORMATTER_OPTIONS, MC_OPTION_ACTION_PARENT, MC_OPTION_PARENT_COMPONENT, MC_PARENT_ANIMATION_COMPONENT, MC_SANITY_CHECKS, MC_SELECT_SCROLL_STRATEGY, MC_SELECT_SCROLL_STRATEGY_PROVIDER, MC_TITLE_TEXT_REF, MC_VALIDATION, McCommonModule, McDataSizeModule, McDataSizePipe, McDecimalPipe, McForm, McFormElement, McFormattersModule, McFormsModule, McHighlightModule, McHighlightPipe, McLine, McLineModule, McLineSetter, McLocaleService, McLocaleServiceModule, McMeasureScrollbarService, McOptgroup, McOptgroupBase, McOptgroupMixinBase, McOption, McOptionActionBase, McOptionActionComponent, McOptionActionMixinBase, McOptionBase, McOptionModule, McOptionSelectionChange, McPopUp, McPopUpTrigger, McPseudoCheckbox, McPseudoCheckboxBase, McPseudoCheckboxMixinBase, McPseudoCheckboxModule, McRoundDecimalPipe, McSelectFooter, McSelectMatcher, McSelectSearch, McSelectSearchEmptyResult, McSelectTrigger, McTableNumberPipe, McVirtualOption, MeasurementSystem, MultipleMode, NUMBER_FORMAT_REGEXP, POSITION_MAP, POSITION_PRIORITY_STRATEGY, POSITION_TO_CSS_MAP, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnDirtyErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, VERSION, countGroupLabelsBeforeOption, enUSLocaleData, esLALocaleData, escapeRegExp, faIRLocaleData, fadeAnimation, formatDataSize, getHumanizedBytes, getMcSelectDynamicMultipleError, getMcSelectNonArrayValueError, getMcSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, mcSelectAnimations, mcSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, ptBRLocaleData, ruRULocaleData, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay, znCNLocaleData };
2761
2984
  //# sourceMappingURL=ptsecurity-mosaic-core.mjs.map