@ptsecurity/mosaic 15.8.8 → 15.8.10

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 (51) hide show
  1. package/_theming.scss +43 -15
  2. package/_visual.scss +43 -15
  3. package/core/formatters/index.d.ts +1 -1
  4. package/core/formatters/number/formatter.d.ts +30 -0
  5. package/core/locales/en-US.d.ts +12 -0
  6. package/core/locales/es-LA.d.ts +12 -0
  7. package/core/locales/fa-IR.d.ts +13 -0
  8. package/core/locales/locale-service.d.ts +134 -0
  9. package/core/locales/pt-BR.d.ts +12 -0
  10. package/core/locales/ru-RU.d.ts +12 -0
  11. package/core/locales/tk-TM.d.ts +64 -0
  12. package/core/locales/zh-CN.d.ts +11 -0
  13. package/core/pop-up/constants.d.ts +9 -0
  14. package/esm2020/core/formatters/index.mjs +6 -2
  15. package/esm2020/core/formatters/number/formatter.mjs +133 -1
  16. package/esm2020/core/locales/en-US.mjs +13 -1
  17. package/esm2020/core/locales/es-LA.mjs +13 -1
  18. package/esm2020/core/locales/fa-IR.mjs +14 -1
  19. package/esm2020/core/locales/locale-service.mjs +6 -3
  20. package/esm2020/core/locales/pt-BR.mjs +13 -1
  21. package/esm2020/core/locales/ru-RU.mjs +13 -1
  22. package/esm2020/core/locales/tk-TM.mjs +63 -0
  23. package/esm2020/core/locales/zh-CN.mjs +12 -1
  24. package/esm2020/core/pop-up/constants.mjs +6 -1
  25. package/esm2020/core/version.mjs +2 -2
  26. package/esm2020/dropdown/dropdown.component.mjs +2 -2
  27. package/esm2020/select/select.component.mjs +7 -5
  28. package/esm2020/tooltip/tooltip.component.mjs +5 -3
  29. package/esm2020/tree-select/tree-select.component.mjs +7 -5
  30. package/fesm2015/ptsecurity-mosaic-core.mjs +283 -5
  31. package/fesm2015/ptsecurity-mosaic-core.mjs.map +1 -1
  32. package/fesm2015/ptsecurity-mosaic-dropdown.mjs +2 -2
  33. package/fesm2015/ptsecurity-mosaic-select.mjs +6 -4
  34. package/fesm2015/ptsecurity-mosaic-select.mjs.map +1 -1
  35. package/fesm2015/ptsecurity-mosaic-tooltip.mjs +5 -2
  36. package/fesm2015/ptsecurity-mosaic-tooltip.mjs.map +1 -1
  37. package/fesm2015/ptsecurity-mosaic-tree-select.mjs +6 -4
  38. package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +1 -1
  39. package/fesm2020/ptsecurity-mosaic-core.mjs +281 -4
  40. package/fesm2020/ptsecurity-mosaic-core.mjs.map +1 -1
  41. package/fesm2020/ptsecurity-mosaic-dropdown.mjs +2 -2
  42. package/fesm2020/ptsecurity-mosaic-select.mjs +6 -4
  43. package/fesm2020/ptsecurity-mosaic-select.mjs.map +1 -1
  44. package/fesm2020/ptsecurity-mosaic-tooltip.mjs +4 -2
  45. package/fesm2020/ptsecurity-mosaic-tooltip.mjs.map +1 -1
  46. package/fesm2020/ptsecurity-mosaic-tree-select.mjs +6 -4
  47. package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +1 -1
  48. package/package.json +8 -8
  49. package/prebuilt-themes/dark-theme.css +1 -1
  50. package/prebuilt-themes/default-theme.css +1 -1
  51. package/tooltip/tooltip.component.d.ts +2 -1
@@ -521,6 +521,18 @@ const enUSLocaleData = {
521
521
  select: { hiddenItemsText: 'one more' },
522
522
  datepicker: {
523
523
  placeholder: 'dd/mm/yyyy'
524
+ },
525
+ formatters: {
526
+ number: {
527
+ rounding: {
528
+ separator: '',
529
+ groupSeparator: '.',
530
+ thousand: 'K',
531
+ million: 'M',
532
+ billion: 'B',
533
+ trillion: 'T'
534
+ }
535
+ }
524
536
  }
525
537
  }
526
538
  };
@@ -536,6 +548,18 @@ const esLALocaleData = {
536
548
  full: 'hh:mm:ss',
537
549
  short: 'hh:mm'
538
550
  }
551
+ },
552
+ formatters: {
553
+ number: {
554
+ rounding: {
555
+ separator: '',
556
+ groupSeparator: ',',
557
+ thousand: 'K',
558
+ million: 'M',
559
+ billion: 'MRD',
560
+ trillion: 'B'
561
+ }
562
+ }
539
563
  }
540
564
  }
541
565
  };
@@ -551,6 +575,19 @@ const faIRLocaleData = {
551
575
  full: 'ثانیه:دقیقه:ساعت',
552
576
  short: 'دقیقه:ساعت'
553
577
  }
578
+ },
579
+ formatters: {
580
+ number: {
581
+ rounding: {
582
+ separator: ' ',
583
+ groupSeparator: '٫',
584
+ thousand: 'هزار',
585
+ million: 'میلیون',
586
+ billion: 'م',
587
+ trillion: 'تریلیون',
588
+ rtl: true
589
+ }
590
+ }
554
591
  }
555
592
  }
556
593
  };
@@ -566,6 +603,18 @@ const ptBRLocaleData = {
566
603
  full: 'hh:mm:ss',
567
604
  short: 'hh:mm'
568
605
  }
606
+ },
607
+ formatters: {
608
+ number: {
609
+ rounding: {
610
+ separator: ' ',
611
+ groupSeparator: ',',
612
+ thousand: 'mil',
613
+ million: 'mi',
614
+ billion: 'bi',
615
+ trillion: 'tri'
616
+ }
617
+ }
569
618
  }
570
619
  }
571
620
  };
@@ -575,6 +624,81 @@ const ruRULocaleData = {
575
624
  select: { hiddenItemsText: 'еще' },
576
625
  datepicker: {
577
626
  placeholder: 'дд.мм.гггг'
627
+ },
628
+ formatters: {
629
+ number: {
630
+ rounding: {
631
+ separator: ' ',
632
+ groupSeparator: ',',
633
+ thousand: 'К',
634
+ million: 'М',
635
+ billion: 'М',
636
+ trillion: 'Т'
637
+ }
638
+ }
639
+ }
640
+ }
641
+ };
642
+
643
+ const tkTMLocaleData = {
644
+ 'tk-TM': {
645
+ select: { hiddenItemsText: 'ýene {{ number }}' },
646
+ datepicker: {
647
+ placeholder: 'gg.aa.ýý.'
648
+ },
649
+ timepicker: {
650
+ placeholder: {
651
+ full: 'ss:mm:seksek',
652
+ short: 'ss:mm'
653
+ }
654
+ },
655
+ formatters: {
656
+ number: {
657
+ rounding: {
658
+ separator: ' ',
659
+ groupSeparator: '',
660
+ thousand: 'M',
661
+ million: 'Mn',
662
+ billion: 'Mr',
663
+ trillion: 'Tn'
664
+ }
665
+ }
666
+ },
667
+ input: {
668
+ number: {
669
+ groupSeparator: [' '],
670
+ fractionSeparator: ','
671
+ }
672
+ },
673
+ codeBlock: {
674
+ softWrapOnTooltip: 'Sözler boýunça geçirmäni işjeňleşdirmek',
675
+ softWrapOffTooltip: 'Sözler boýunça geçirmäni öçürmek',
676
+ downloadTooltip: 'Ýüklemek',
677
+ copiedTooltip: '✓ Göçürildi',
678
+ copyTooltip: 'Göçürmek',
679
+ viewAllText: 'Hemmesini görkezmek',
680
+ viewLessText: 'Ýygyrmak',
681
+ openExternalSystemTooltip: 'Daşarky ulgamda açmak'
682
+ },
683
+ timezone: {
684
+ searchPlaceholder: 'Şäher ýa-da sagat guşagy'
685
+ },
686
+ fileUpload: {
687
+ single: {
688
+ captionText: 'Faýly geçiriň ýa-da {{ browseLink }} ',
689
+ browseLink: 'saýlaň'
690
+ },
691
+ multiple: {
692
+ captionText: 'Şu ýere geçiriň ýa-da {{ browseLink }}',
693
+ captionTextWhenSelected: 'Ýene geçiriň ýa-da {{ browseLink }}',
694
+ captionTextForCompactSize: 'Faýllary geçiriň ýa-da {{ browseLink }}',
695
+ browseLink: 'saýlaň',
696
+ title: 'Faýl ýükläň',
697
+ gridHeaders: {
698
+ file: 'Faýl',
699
+ size: 'Ölçegi'
700
+ }
701
+ }
578
702
  }
579
703
  }
580
704
  };
@@ -590,6 +714,17 @@ const znCNLocaleData = {
590
714
  full: '时:分:秒',
591
715
  short: '时:分'
592
716
  }
717
+ },
718
+ formatters: {
719
+ number: {
720
+ rounding: {
721
+ separator: ' ',
722
+ groupSeparator: '.',
723
+ tenThousand: '万',
724
+ oneHundredMillions: '亿',
725
+ trillion: '兆'
726
+ }
727
+ }
593
728
  }
594
729
  }
595
730
  };
@@ -597,14 +732,15 @@ const znCNLocaleData = {
597
732
  const MC_LOCALE_ID = new InjectionToken('McLocaleId');
598
733
  const MC_DEFAULT_LOCALE_ID = 'ru-RU';
599
734
  function MC_DEFAULT_LOCALE_DATA_FACTORY() {
600
- return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({ items: [
735
+ return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({ items: [
601
736
  { id: 'en-US', name: 'English' },
602
737
  { id: 'zh-CN', name: '简体中文' },
603
738
  { id: 'es-LA', name: 'Español' },
604
739
  { id: 'pt-BR', name: 'Português' },
605
740
  { id: 'ru-RU', name: 'Русский' },
606
- { id: 'fa-IR', name: 'فارسی' }
607
- ] }, ruRULocaleData), enUSLocaleData), esLALocaleData), faIRLocaleData), ptBRLocaleData), znCNLocaleData);
741
+ { id: 'fa-IR', name: 'فارسی' },
742
+ { id: 'tk-TM', name: 'Türkmen' }
743
+ ] }, ruRULocaleData), enUSLocaleData), esLALocaleData), faIRLocaleData), ptBRLocaleData), znCNLocaleData), tkTMLocaleData);
608
744
  }
609
745
  const MC_LOCALE_DATA = new InjectionToken('MC_LOCALE_DATA', { providedIn: 'root', factory: MC_DEFAULT_LOCALE_DATA_FACTORY });
610
746
  const MC_LOCALE_SERVICE = new InjectionToken('MC_LOCALE_SERVICE');
@@ -690,6 +826,26 @@ const minIntGroupPosition = 1;
690
826
  const minFractionGroupPosition = 3;
691
827
  const maxFractionGroupPosition = 5;
692
828
  const useGroupingPosition = 7;
829
+ // tslint:disable:no-magic-numbers
830
+ const ROUNDING_UNITS = {
831
+ thousand: 1e3,
832
+ tenThousand: 10 * 1e3,
833
+ million: 1e6,
834
+ oneHundredMillions: 100 * 1e6,
835
+ billion: 1e9,
836
+ trillion: 1e12
837
+ };
838
+ const intervalsConfig = {
839
+ supportedLanguages: ['ru-RU', 'en-US', 'es-LA', 'pt-BR', 'fa-IR'],
840
+ intervals: [
841
+ { startRange: 1, endRange: ROUNDING_UNITS.thousand },
842
+ { startRange: ROUNDING_UNITS.thousand, endRange: ROUNDING_UNITS.tenThousand, precision: 1 },
843
+ { startRange: ROUNDING_UNITS.tenThousand, endRange: ROUNDING_UNITS.million },
844
+ { startRange: ROUNDING_UNITS.million, endRange: ROUNDING_UNITS.million * 10, precision: 1 },
845
+ { startRange: ROUNDING_UNITS.million * 10, endRange: ROUNDING_UNITS.billion }
846
+ ]
847
+ };
848
+ // tslint:enable:no-magic-numbers
693
849
  class ParsedDigitsInfo {
694
850
  }
695
851
  const defaultValueForGroupingInRULocale = 10000;
@@ -876,11 +1032,126 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
876
1032
  args: [MC_NUMBER_FORMATTER_OPTIONS]
877
1033
  }] }];
878
1034
  } });
1035
+ function isWithin(startRange, endRange, valueToCheck) {
1036
+ return startRange <= valueToCheck && valueToCheck < endRange;
1037
+ }
1038
+ class McRoundDecimalPipe {
1039
+ constructor(id, localeService) {
1040
+ var _a;
1041
+ this.id = id;
1042
+ this.localeService = localeService;
1043
+ (_a = this.localeService) === null || _a === void 0 ? void 0 : _a.changes.subscribe((newId) => this.id = newId);
1044
+ }
1045
+ transform(value, locale) {
1046
+ if (isEmpty(value)) {
1047
+ return null;
1048
+ }
1049
+ const currentLocale = locale || this.id || MC_DEFAULT_LOCALE_ID;
1050
+ this.roundingOptions = this.localeService.locales[currentLocale].formatters.number.rounding;
1051
+ try {
1052
+ const num = strToNumber(value);
1053
+ const unit = this.calculateUnit(num);
1054
+ if (!unit) {
1055
+ return Intl.NumberFormat.call(this, currentLocale, { useGrouping: false }).format(num);
1056
+ }
1057
+ let parts = {};
1058
+ if (intervalsConfig.supportedLanguages.includes(currentLocale)) {
1059
+ intervalsConfig.intervals
1060
+ .find(({ startRange, endRange, precision }) => {
1061
+ const within = isWithin(startRange, endRange, num);
1062
+ if (within) {
1063
+ if (precision) {
1064
+ parts = unit === 'thousand' ?
1065
+ this.calculatePartsForThousands(num) :
1066
+ {
1067
+ num: Math.trunc(num / ROUNDING_UNITS[unit]),
1068
+ fraction: this.calculateDecimal(num, ROUNDING_UNITS[unit])
1069
+ };
1070
+ }
1071
+ else {
1072
+ parts = { num: Math.round(num / ROUNDING_UNITS[unit]) };
1073
+ }
1074
+ }
1075
+ return within;
1076
+ });
1077
+ }
1078
+ parts = parts.num ? parts : {
1079
+ num: Math.trunc(num / ROUNDING_UNITS[unit]),
1080
+ fraction: this.calculateDecimal(num, ROUNDING_UNITS[unit])
1081
+ };
1082
+ Object.keys(parts).forEach((key) => {
1083
+ parts[key] = Intl.NumberFormat.call(this, currentLocale, { useGrouping: false }).format(parts[key]);
1084
+ });
1085
+ const calculatedValue = parts.fraction
1086
+ ? `${parts.num}${this.roundingOptions.groupSeparator}${parts.fraction}`
1087
+ : `${parts.num}`;
1088
+ return `${calculatedValue}${this.roundingOptions.separator}${this.roundingOptions[unit]}`;
1089
+ }
1090
+ catch (error) {
1091
+ throw Error(`InvalidPipeArgument: McRoundDecimalPipe for pipe '${JSON.stringify(error.message)}'`);
1092
+ }
1093
+ }
1094
+ calculateDecimal(num, divider) {
1095
+ /* tslint:disable-next-line:no-magic-numbers */
1096
+ return Math.round(num / divider % 1 * 10);
1097
+ }
1098
+ /**
1099
+ * 2 * 1000 is a number in the interval of [1500...2500)
1100
+ *
1101
+ * 2,0 * 1000 is a number in the interval of [1950...2050)
1102
+ */
1103
+ calculatePartsForThousands(num) {
1104
+ const dividedValue = num / ROUNDING_UNITS.thousand;
1105
+ const div = Math.round(dividedValue) * ROUNDING_UNITS.thousand;
1106
+ const fifty = 50;
1107
+ return isWithin(div - fifty, div + fifty, num)
1108
+ ? { num: Math.round(dividedValue), fraction: 0 }
1109
+ : { num: Math.round(dividedValue) };
1110
+ }
1111
+ calculateUnit(num) {
1112
+ let currentUnit;
1113
+ const localizedOptions = Object.keys(this.roundingOptions);
1114
+ Object.keys(ROUNDING_UNITS).every((key) => {
1115
+ if (!localizedOptions.includes(key)) {
1116
+ return true;
1117
+ }
1118
+ if (num / ROUNDING_UNITS[key] >= 1) {
1119
+ currentUnit = key;
1120
+ return true;
1121
+ }
1122
+ return false;
1123
+ });
1124
+ return currentUnit;
1125
+ }
1126
+ }
1127
+ /** @nocollapse */ McRoundDecimalPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, deps: [{ token: MC_LOCALE_ID, optional: true }, { token: MC_LOCALE_SERVICE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe });
1128
+ /** @nocollapse */ McRoundDecimalPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, name: "mcRoundNumber", pure: false });
1129
+ /** @nocollapse */ McRoundDecimalPipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, providedIn: 'root' });
1130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, decorators: [{
1131
+ type: Injectable,
1132
+ args: [{ providedIn: 'root' }]
1133
+ }, {
1134
+ type: Pipe,
1135
+ args: [{ name: 'mcRoundNumber', pure: false }]
1136
+ }], ctorParameters: function () {
1137
+ return [{ type: undefined, decorators: [{
1138
+ type: Optional
1139
+ }, {
1140
+ type: Inject,
1141
+ args: [MC_LOCALE_ID]
1142
+ }] }, { type: McLocaleService, decorators: [{
1143
+ type: Optional
1144
+ }, {
1145
+ type: Inject,
1146
+ args: [MC_LOCALE_SERVICE]
1147
+ }] }];
1148
+ } });
879
1149
 
880
1150
  class McFormattersModule {
881
1151
  }
882
1152
  /** @nocollapse */ McFormattersModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McFormattersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
883
1153
  /** @nocollapse */ McFormattersModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McFormattersModule, declarations: [McDecimalPipe,
1154
+ McRoundDecimalPipe,
884
1155
  McTableNumberPipe,
885
1156
  AbsoluteDateFormatterPipe,
886
1157
  AbsoluteDateTimeFormatterPipe,
@@ -895,6 +1166,7 @@ class McFormattersModule {
895
1166
  RangeDateTimeFormatterPipe,
896
1167
  RangeShortDateTimeFormatterPipe,
897
1168
  RangeMiddleDateTimeFormatterPipe], exports: [McDecimalPipe,
1169
+ McRoundDecimalPipe,
898
1170
  McTableNumberPipe,
899
1171
  AbsoluteDateFormatterPipe,
900
1172
  AbsoluteDateTimeFormatterPipe,
@@ -915,6 +1187,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
915
1187
  args: [{
916
1188
  declarations: [
917
1189
  McDecimalPipe,
1190
+ McRoundDecimalPipe,
918
1191
  McTableNumberPipe,
919
1192
  AbsoluteDateFormatterPipe,
920
1193
  AbsoluteDateTimeFormatterPipe,
@@ -932,6 +1205,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
932
1205
  ],
933
1206
  exports: [
934
1207
  McDecimalPipe,
1208
+ McRoundDecimalPipe,
935
1209
  McTableNumberPipe,
936
1210
  AbsoluteDateFormatterPipe,
937
1211
  AbsoluteDateTimeFormatterPipe,
@@ -1907,6 +2181,10 @@ function objectValues(object) {
1907
2181
  return object === null ? [] : baseValues(object, Object.keys(object));
1908
2182
  }
1909
2183
 
2184
+ /**
2185
+ * InjectionToken for providing component with popup. Used in select and tree-select for tooltip.
2186
+ */
2187
+ const MC_PARENT_POPUP = new InjectionToken('mc-parent-popup');
1910
2188
  var PopUpPlacements;
1911
2189
  (function (PopUpPlacements) {
1912
2190
  PopUpPlacements["Top"] = "top";
@@ -2475,11 +2753,11 @@ const validationTooltipShowDelay = 10;
2475
2753
  const validationTooltipHideDelay = 3000;
2476
2754
  const MC_VALIDATION = new InjectionToken('McUseValidation', { factory: () => ({ useValidation: true }) });
2477
2755
 
2478
- const VERSION = new Version('15.8.8+sha-f7fce63');
2756
+ const VERSION = new Version('15.8.10+sha-e38d354');
2479
2757
 
2480
2758
  /**
2481
2759
  * Generated bundle index. Do not edit.
2482
2760
  */
2483
2761
 
2484
- 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_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, 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, mcSelectAnimations, mcSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay };
2762
+ 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_POPUP, 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 };
2485
2763
  //# sourceMappingURL=ptsecurity-mosaic-core.mjs.map